* linux-3.14 nfsd regression @ 2014-04-03 16:33 Mark Lord 2014-04-03 16:44 ` Mark Lord 2014-04-03 17:16 ` J. Bruce Fields 0 siblings, 2 replies; 19+ messages in thread From: Mark Lord @ 2014-04-03 16:33 UTC (permalink / raw) To: Albert Fluegel, J. Bruce Fields; +Cc: linux-nfs, linux-kernel [-- Attachment #1: Type: text/plain, Size: 771 bytes --] This commit from linux-3.14 breaks our NFS-root clients here: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 - *p++ = htonl((u32) stat->mode); + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); Reverting the one-liner above (on the server) fixes it for us, as does reverting back to linux-3.13.8 on the server. The NFS-root clients are on PowerPC (big-endian) architecture, running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. ACL is completely disabled on server and client, and we're using NFSv2/v3. No support for v4. I instrumented the function to see what other bits were being cleared by the (stat->mode & S_IALLUGO) masking. The results are attached. Cheers Mark [-- Attachment #2: 11_revert_nfsxdr_to_fix_nfsroot.trace --] [-- Type: text/plain, Size: 194602 bytes --] --- linux-3.14/fs/nfsd/nfsxdr.c.orig 2014-04-03 11:54:17.530971880 -0400 +++ linux/fs/nfsd/nfsxdr.c 2014-04-03 12:11:45.090974990 -0400 @@ -152,7 +152,8 @@ type = (stat->mode & S_IFMT); *p++ = htonl(nfs_ftypes[type >> 12]); - *p++ = htonl((u32) (stat->mode & S_IALLUGO)); + printk(KERN_INFO "%s: mode=0x%08x mask=0x%08x\n", __func__, stat->mode, S_IALLUGO); //DEBUG + *p++ = htonl((u32) stat->mode); *p++ = htonl((u32) stat->nlink); *p++ = htonl((u32) from_kuid(&init_user_ns, stat->uid)); *p++ = htonl((u32) from_kgid(&init_user_ns, stat->gid)); [ 2733.823753] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.824217] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.838769] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.839175] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2733.839895] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.840388] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.840431] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.841256] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.841659] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2733.842379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.842825] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.842879] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.843876] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.843924] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.843974] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.844505] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.844841] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.845057] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.845132] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.846048] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.846129] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.846193] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.846254] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.846658] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.846878] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.847000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.847332] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.848565] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.848633] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.848754] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.848879] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.849060] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.849255] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.849449] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.849637] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.849753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.851379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.851437] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.851500] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.851548] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.851597] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.851646] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.852012] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.852394] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.852617] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.852805] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.852899] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.853254] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.853628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.855001] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.855877] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.856425] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.856472] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.856520] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.856572] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.856633] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.856683] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.856754] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.857004] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.858878] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2733.859628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.860247] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.860251] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.861298] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.861380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.861427] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.861479] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.861526] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.861574] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.861626] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.861675] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.862087] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.862378] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.862625] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.864397] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.864443] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.864500] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.864548] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.864610] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.864649] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.864760] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.864808] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.865059] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.865375] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.865629] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.866000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.866156] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.866253] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.866504] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.868641] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.868693] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.868757] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.868802] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.868855] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.868900] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.868949] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.869000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.869047] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.869381] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.869628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.869905] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.870211] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.870526] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.871836] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.871893] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.872010] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.872102] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.872400] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.872402] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.872418] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.872439] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.872754] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.872878] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.873208] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.873462] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.873754] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.874128] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.874375] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.875379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.875503] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.875629] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.875754] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.875875] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.875924] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.876250] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.876502] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.876571] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.876764] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.876935] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.877212] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.877504] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.877874] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.878124] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.879753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.879878] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.879926] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.880009] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.880323] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.880330] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.880343] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.880353] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.880374] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.880754] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.881004] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.881120] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.881257] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.881530] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.881838] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.883905] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884132] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884275] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884278] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884376] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884424] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884512] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884684] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884759] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884879] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.884996] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.885049] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.885379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.885427] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.885624] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.887317] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.887381] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.887630] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.887753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.887804] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.888010] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.888101] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.888134] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.888250] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.888297] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.888374] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.888750] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.888794] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.889087] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.889379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.891385] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.891506] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.891629] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.891759] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.891807] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.891882] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.892000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.892086] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.892126] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.892248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.892370] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.892753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.893008] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.893250] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.893298] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.895384] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.895500] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.895565] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.895632] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.895681] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.895875] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.895923] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.896073] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.896131] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.896173] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.896250] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.896562] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.896632] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.896934] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.897212] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.899259] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.899380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.899428] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.901509] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.901553] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.901602] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.901651] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.901698] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.901750] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.901799] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.901879] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.901927] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.902004] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.902052] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.902128] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.902259] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.902307] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.902629] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.904504] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.904644] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.904753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.904875] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.904924] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.904999] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.905049] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.907749] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.907798] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.907846] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.907897] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.907945] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.907994] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.908049] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.908095] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.908144] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.908191] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.908247] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.908297] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.908377] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.910753] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.910879] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.911082] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.911259] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.911330] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.911380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.911452] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.911503] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.911627] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.912033] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.912249] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.912503] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.912631] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.912691] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.912761] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.912878] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.914575] encode_fattr: mode=0x00002180 mask=0x00000fff [ 2733.916298] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.916378] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.916428] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.916506] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.916546] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.916631] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.916710] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.916772] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.916877] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.916999] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919516] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919566] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919626] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919670] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919725] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919774] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919821] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919875] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919923] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.919972] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.920036] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.920091] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.920144] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.920253] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.920625] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.922746] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.923946] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2733.924629] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.925003] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.925390] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.977632] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.978190] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.978686] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.978757] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.978804] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.978854] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.978903] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.978952] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.979000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.979048] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.979127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.979174] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.979251] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.983393] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2733.984127] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.985127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.985175] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.985252] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.985336] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.985397] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.985628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.985748] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.986127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.986377] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.986751] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.987655] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.988242] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.988621] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.989126] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.989515] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2733.990265] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.990697] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.990769] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.991499] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.992268] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.992323] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.992380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.992508] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.992627] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.992752] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.993127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.993377] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.995141] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.995248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.995309] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.995376] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.995532] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.995683] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.996032] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.996379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.996701] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.996780] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.997252] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.997372] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.997423] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.997502] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.997623] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.998254] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2733.999745] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.000141] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.000501] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.001251] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.001748] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.001796] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.002752] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.002800] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.002848] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.002900] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.002950] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.002976] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.003044] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.003068] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.005379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.005424] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.005475] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.005524] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.005798] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.005873] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.005921] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.005970] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.006019] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.006067] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.006123] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.006170] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.006219] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.006626] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.009641] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.010123] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.010170] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.011060] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.011126] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.012028] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.012812] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.012883] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.012932] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.012980] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013026] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013075] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013126] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013174] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013250] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013300] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013377] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013425] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013583] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013755] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.013876] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.014252] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.014454] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.016878] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.017001] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.017292] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020008] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020067] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020132] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020176] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020223] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020272] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020322] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020371] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020422] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020471] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020518] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020626] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020757] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.020877] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.021002] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.021128] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.021376] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.021505] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.021955] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.022251] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.022502] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.022655] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.022901] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.023247] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.023501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.023832] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.024028] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.024118] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.024247] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.024557] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.024874] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.025050] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.025454] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.028503] encode_fattr: mode=0x00002180 mask=0x00000fff [ 2734.029498] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.029899] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.029946] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.029995] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030048] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030064] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030100] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030142] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030191] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030295] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030345] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030395] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030442] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.030492] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.032782] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.032878] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.033002] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.033127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.033248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.033541] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.033588] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.033642] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.033690] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.033748] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.033877] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.034169] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036009] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036166] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036247] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036377] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036502] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036565] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036634] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036751] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036800] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.036875] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.037126] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040166] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040252] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040300] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040348] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040398] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040445] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040498] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040552] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040594] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040645] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040748] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040795] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040880] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.040998] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.041045] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.044122] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.044377] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.044447] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.044502] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.044624] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.044708] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.044766] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.044878] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.045001] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.045150] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.045250] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.045319] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.045500] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.045652] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.045784] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.045926] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.046000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.046127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.046174] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.046382] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.048956] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049004] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049128] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049297] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049384] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049550] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049626] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049750] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.049877] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.050125] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.050255] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.050377] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.052752] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.052998] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.053049] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.053129] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.053247] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.053295] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.053372] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.053422] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.053501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.053621] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.056421] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.056505] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.056560] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.056603] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.057960] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058008] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058059] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058126] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058182] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058222] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058273] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058320] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058371] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058423] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058497] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058546] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058637] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.058751] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061158] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061424] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061502] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061623] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061670] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061746] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061797] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061879] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.061996] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.063870] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.065698] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.065751] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.065827] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.065876] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.067321] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.067375] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.067501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.067629] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.067678] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.067755] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.067802] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.067876] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.068001] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.068072] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.069830] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.072418] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.073125] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.074651] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.075126] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.075185] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.075997] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.076810] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.076880] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.077005] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.077125] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.077253] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.077527] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.078001] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.078252] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.078624] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.079805] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.080268] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.081001] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.081388] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.081435] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.082309] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.082380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.082505] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.082625] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.082753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.083000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.083308] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.083746] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.083896] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085069] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085126] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085191] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085252] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085300] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085376] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085552] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085625] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085674] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085751] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085871] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085920] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.085998] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.086048] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.086124] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.087249] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.089905] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.090373] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.090419] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.091373] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.091421] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.091469] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.092921] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.092967] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.093017] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.093067] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.093131] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.093174] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.093251] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.093334] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.093396] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.093499] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.093622] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.093671] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.093747] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.093797] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.093889] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.093999] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.094124] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.094373] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.096000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.096450] encode_fattr: mode=0x00002180 mask=0x00000fff [ 2734.098871] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.098922] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.098997] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099044] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099124] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099253] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099301] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099381] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099428] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099500] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099626] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099674] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099750] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099800] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.099900] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.100997] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.106013] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.107195] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.107570] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.108000] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.110058] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.110517] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.110563] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.111200] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.111567] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.112873] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.113402] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.113956] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.114430] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.117623] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.119027] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.122668] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.123376] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.124998] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.125510] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.128072] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.128088] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.129367] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.129415] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.129492] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.129554] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.129625] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.129992] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.130120] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.130376] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.130676] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.132218] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.132648] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.133495] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.134620] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.134667] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.139150] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.140134] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.143328] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.144130] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.144890] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.147247] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.147766] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.152014] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.152523] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.153578] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.154022] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.154577] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.155117] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.158664] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.159371] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.160765] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.161257] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.161303] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.162181] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.163179] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.163195] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.163264] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.163377] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.163445] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.163512] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.163757] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.165370] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.165777] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.168074] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.168752] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.170124] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.170627] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.170701] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.171528] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.172283] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.172377] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.172461] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.172515] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.172746] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.172796] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.173075] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.173323] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.173649] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.175246] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.175777] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.176628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.176674] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.176752] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.179294] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.180155] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.180876] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.182247] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.182752] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.182809] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.183621] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.184411] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.184501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.184557] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.184625] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.184872] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.184998] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.185285] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.185626] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.185875] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.187622] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.188243] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.189127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.189210] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.189264] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.189379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.189499] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.189625] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.190000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.190250] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.190562] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.190870] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.191176] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.191541] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.192383] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.192500] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.192625] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.192751] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.192880] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.192996] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.193046] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.193123] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.193171] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.193260] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.193376] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.193424] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.193500] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.193753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.194002] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.194127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.196503] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.196630] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.196751] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.196798] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.196874] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.196923] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.197000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.197125] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.201373] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.201902] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.202996] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.203525] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.204156] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.204747] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.208874] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.209639] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.211761] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.212253] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.215264] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.216107] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.217870] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.218376] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.218867] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.219191] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.220247] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.220762] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.221332] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.221867] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.224997] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.227694] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.228382] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.230246] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.230779] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.230875] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.231745] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.232561] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.232628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.232753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.232874] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.232999] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.233249] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.233625] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.233874] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.234028] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.235617] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.236235] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.236996] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.237051] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.237123] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.237248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.237368] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.237618] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.237994] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.238369] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.238618] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.238773] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.239114] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.239365] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.240248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.240501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.240569] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.240620] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.240740] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.240789] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.240869] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.242946] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.243075] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.243124] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.243252] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.243373] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.243869] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.244257] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.244401] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.357499] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.361637] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.362026] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.362752] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.364206] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.364626] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.364696] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.365494] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.366278] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.366372] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.366429] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.366496] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.366669] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.366776] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.367122] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.367528] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.367824] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.368345] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.369494] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.370009] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.370622] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.370744] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.370792] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.370872] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.371002] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.371123] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.371374] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.371743] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.372290] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.372377] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.373872] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.373920] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.373971] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.374080] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.374129] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.374173] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.374248] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.374370] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.374747] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.374921] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.375123] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.375372] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.375701] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.375934] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.376000] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.376415] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.376418] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.376680] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.376958] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.377248] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.377654] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.377873] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.378123] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.378247] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.378372] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.378574] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.378831] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.379121] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.379451] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.379746] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.379992] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.380154] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.380368] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.382872] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.382921] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.382997] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383046] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383095] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383144] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383193] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383248] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383336] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383391] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383496] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383619] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.383940] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.384180] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.384493] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.386153] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.386369] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.386419] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.386500] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.386788] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.386836] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.386888] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.386936] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.386996] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.387178] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.387539] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.387749] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.390076] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.390125] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.390274] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.391568] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.391622] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.391671] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.391742] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.391792] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.391839] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.391890] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.391937] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.391993] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.392040] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.392114] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.392274] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.392618] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.392794] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.395872] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.396433] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.397065] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.399882] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.400373] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.401123] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.401568] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.401621] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.402582] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.402631] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.402694] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.402748] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.402796] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.402845] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.402892] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.402943] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.405306] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.405428] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.405478] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.406123] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.406296] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.408127] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.408873] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.409246] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.409620] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.410122] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.412572] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.413261] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.415445] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.415885] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.416955] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.418899] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.423872] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.424622] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.426368] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.426872] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.426930] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.427867] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.428917] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.428998] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.429121] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.429243] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.430367] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.430883] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.431453] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.431993] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.433370] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.438615] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.439051] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.440120] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.440647] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.441203] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.441743] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.443189] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.446288] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.446661] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.448066] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.448554] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.448898] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.450367] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.450794] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.451146] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.454493] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.454916] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.455628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.457864] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.458306] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.459193] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.459523] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.461914] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.463618] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.464146] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.465244] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.465775] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.466132] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.466617] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.467246] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.467646] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.469067] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.469760] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.471287] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.471648] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.475815] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.476497] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.477911] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.478372] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.478429] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.479271] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.480249] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.480304] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.480373] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.480498] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.480621] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.480746] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.481124] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.481371] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.481705] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.483113] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.483520] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.484384] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.484493] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.484578] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.487037] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.487745] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.489150] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.489622] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.489678] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.490523] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.491510] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.491621] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.491684] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.491746] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.491946] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.492263] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.493492] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.494011] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.496194] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.496622] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.498271] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.498772] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.499827] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.500259] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.500828] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.501368] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.502741] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.505371] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.506135] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.507911] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.508389] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.508870] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.509272] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.509659] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.510742] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.511274] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.511646] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.512244] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.512647] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.513178] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.516370] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.518025] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.518691] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.520374] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.521136] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.523286] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.523761] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.523818] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.524995] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.533879] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.535988] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.536426] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.537508] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.538021] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.538576] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.539077] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.542384] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.542930] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.544413] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.544761] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.546117] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.546646] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.547742] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.548272] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.550689] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.551370] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.552757] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.553247] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.553320] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.554117] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.554928] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.555001] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.555126] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.555246] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.555372] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.555620] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.555994] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.556273] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.556580] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.557867] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.558380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.559245] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.559304] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.559373] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.559498] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.559620] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.561278] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.561371] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.561455] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.561619] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.561741] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.561991] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.562370] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.562619] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.562818] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.564234] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.564741] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.565492] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.565994] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.566745] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.567192] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.567261] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.568192] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.568248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.568326] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.568500] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.568621] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.568745] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.570040] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.570746] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.571191] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.571244] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.572243] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.572262] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.572302] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.572372] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.572491] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.572541] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.572775] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.572996] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.573120] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.574927] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.574997] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.575125] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.575242] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.575371] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.575495] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.575869] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.576351] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.577535] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.577620] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.577667] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.577718] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.578620] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.579370] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.579815] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.579871] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.580777] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.580869] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.580927] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.580996] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.581124] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.581246] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.581620] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.581869] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.583149] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.583367] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.583865] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.584763] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.585367] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.586063] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.586773] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.587260] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.589317] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.589995] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.591381] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.591871] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.591928] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.592742] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.593747] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.593818] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.593874] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.593997] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.594119] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.594248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.594620] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.594869] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.595126] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.596524] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.597005] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.597885] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.597956] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.600658] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.601161] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.602175] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.602635] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.605521] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.606021] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.607077] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.607549] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.608938] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.609617] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.610115] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.610741] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.611686] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.612176] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.612741] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.613617] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.614365] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.615131] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.617661] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.618147] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.619237] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.619660] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.622492] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.623021] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.624094] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.624536] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.627366] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.627909] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.628952] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.629382] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.630812] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.631520] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.631990] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.632616] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.633563] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.633991] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.634615] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.635491] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.636243] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.636946] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.639380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.639895] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.640925] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.641396] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.644242] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.644770] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.645825] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.646255] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.649162] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.649645] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.650700] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.651145] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.652578] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.653241] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.653739] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.654366] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.655283] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.655740] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.656367] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.657241] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.657990] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.658770] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.661242] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.661770] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.662798] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.663255] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.666118] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.666674] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.667740] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.668257] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.671122] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.671646] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.672661] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.673131] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.674577] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.675240] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.675740] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.676367] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.677315] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.677740] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.678365] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.679240] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.679989] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.680771] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.683189] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.683644] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.684660] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.685132] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.688035] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.688521] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.689534] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.690018] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.691258] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.693680] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.694146] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.695200] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.695655] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.697063] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.697771] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.698240] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.698864] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.699784] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.700246] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.700865] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.701739] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.702490] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.703254] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.705741] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.706271] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.707299] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.707768] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.710191] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.710869] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.712257] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.712746] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.712803] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.713614] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.714398] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.714493] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.714550] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.714617] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.714819] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.715149] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.715369] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.715743] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.715994] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.717325] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.717774] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.718494] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.718940] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.718993] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.719912] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.719994] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.720114] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.720159] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.720274] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.720419] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.720749] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.722114] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.722759] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.723494] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.723939] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.723992] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.724917] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.724994] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.725079] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.725139] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.725364] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.725435] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.725744] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.726267] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.726614] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.727661] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728065] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728094] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728120] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728158] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728176] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728205] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728254] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728309] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728358] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728406] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728453] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.728504] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.731564] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.731646] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.731744] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.731872] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.731993] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.733554] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.735702] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.736146] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.737241] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.737768] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.739187] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.739864] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.740376] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.740994] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.741909] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.742366] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.742988] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.743880] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.744616] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.745381] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.747864] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.748398] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.749490] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.750019] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.752868] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.753394] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.754486] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.754907] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.755450] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.755991] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.759242] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.759674] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.760739] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.761159] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.762562] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.763240] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.763740] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.764367] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.765314] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.765741] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.766365] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.767240] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.767990] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.768758] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.771236] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.771701] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.772738] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.773160] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.775244] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.777272] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.777769] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.778826] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.779254] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.779825] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.780367] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.783536] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.784025] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.785077] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.785519] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.786936] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.787658] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.788116] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.788741] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.789688] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.790114] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.790739] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.791614] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.792366] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.793144] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.795615] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.796147] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.797200] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.797674] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.800522] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.801018] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.802110] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.802533] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.803074] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.803613] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.806773] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.807284] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.808300] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.808755] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.810114] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.810864] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.811364] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.811988] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.812937] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.813366] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.813989] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.814865] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.815614] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.816381] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.818895] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.819394] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.820409] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.820907] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.823741] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.824269] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.825307] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.825768] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.826988] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.829489] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.830021] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.831033] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.831502] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.832867] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.833614] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.834114] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.834738] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.835657] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.836153] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.836737] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.837562] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.838238] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.839004] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.841492] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.842033] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.843074] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.843519] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.846380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.846895] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.847990] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.848520] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.851380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.851892] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.852954] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.853380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.854810] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.855503] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.855988] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.856614] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.857615] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.858113] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.858738] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.859613] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.860366] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.861132] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.863620] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.864142] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.865159] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.865628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.868619] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.869145] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.870171] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.870628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.873490] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.874018] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.875074] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.875517] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.876950] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.877659] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.878113] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.878745] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.879659] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.880156] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.880736] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.881487] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.882239] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.883017] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.885491] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.886019] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.887047] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.887547] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.891364] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.891907] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.892987] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.893409] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.896496] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.897257] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.899406] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.899898] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.900788] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.901244] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.902783] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.903131] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.904561] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.905033] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.906073] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.906517] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.910020] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.910520] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.911613] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.912134] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.915882] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.916634] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.918865] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.919367] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.920367] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.921270] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.921993] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.923407] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.923868] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.923939] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.924756] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.925538] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.926488] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.927002] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.928268] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.928786] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.930992] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.931756] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.933504] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.934008] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.934517] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.934909] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.935988] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.936505] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.937075] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.937611] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.940866] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.942271] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.942992] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.944993] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.945768] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.947752] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.948268] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.949323] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.949754] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.951006] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.951409] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.951906] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.952865] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.953379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.954308] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.954752] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.955322] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.955823] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.958741] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.959450] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.959862] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.960486] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.961324] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.961736] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.962362] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.963251] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.965894] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.966629] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.966989] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2734.967901] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.968364] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.969734] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.970156] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.971313] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.971421] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.971491] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.971619] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.971912] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.972182] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.972492] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.972742] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.972865] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.973120] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.973491] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.973740] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.973940] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.974189] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.974740] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.974991] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2734.975698] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2734.977813] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.978407] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.978867] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.979361] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.979782] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.980685] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.981144] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.981698] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.982197] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.985060] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.985685] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.986111] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.986735] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.987738] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.988239] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.988863] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.989766] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.990933] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.993239] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.993753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.994655] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.995127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.995696] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.996166] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2734.999121] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2734.999808] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.000239] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.000862] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.001808] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.002236] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.002861] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.003737] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.005659] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.006382] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.006946] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.007367] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.007439] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.008239] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.009241] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.009299] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.009366] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.009490] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.009615] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.009746] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.009986] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.010241] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.010495] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.012364] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.012895] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.013742] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.013797] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.014136] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.015298] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.015368] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.015495] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.015616] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.015744] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.016058] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.016427] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.016698] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.018487] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.019001] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.019906] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.020394] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.020951] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.021448] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.024310] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.024932] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.025361] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.025986] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.026932] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.027362] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.027985] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.028880] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.030612] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2735.031127] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.032484] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.032920] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.034114] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.034572] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.038021] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.038755] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.040488] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.040991] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.041529] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.041932] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.042946] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.043391] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.043946] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.044448] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.047627] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.049020] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.050938] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.052864] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2735.053393] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.054487] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.055000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.056254] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.058111] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.058617] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.058664] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.059485] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.060258] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.060366] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.060427] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.061642] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.062114] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.062864] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.063311] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.063393] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.064271] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.064365] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.064428] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.064490] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.064618] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.064740] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.065115] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.066482] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.069867] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.070686] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.070990] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.072286] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.072370] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.072495] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.072615] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.072740] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.073114] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.073364] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.073563] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.076533] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.076991] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.077986] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.082186] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.087364] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2735.087905] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.088988] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.089530] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.090070] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.090611] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.092059] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.093144] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.094060] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.094862] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.095365] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.095413] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.096237] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.096991] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.097046] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.097116] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.097240] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.097364] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.097693] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.097990] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.098296] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.098613] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.100062] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.100516] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.101130] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.101506] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.101554] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.101603] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.101655] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.101769] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.101941] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.102171] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.102443] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.102740] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.103045] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.103365] encode_fattr: mode=0x00008949 mask=0x00000fff [ 2735.105490] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.105538] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.106905] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.107612] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.108163] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.108880] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.109382] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.109989] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.110532] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.111640] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.114547] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.114991] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.115611] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.116198] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.116752] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.117630] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.118366] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.118423] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.118493] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.120180] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.122680] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.123311] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.123937] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.125488] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.127149] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.127664] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.128382] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.137506] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.138254] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.140402] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.140860] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.141856] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.144485] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.145180] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.145874] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.147356] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.147763] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.147855] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.148733] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.149765] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.149859] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.150606] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.151038] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.151480] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.151528] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.152420] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.152551] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.152609] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.152736] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.152859] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.153235] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.153485] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.153740] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.155028] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.155108] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.155233] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.155282] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.155432] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.155538] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.155858] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.156279] encode_fattr: mode=0x0000816d mask=0x00000fff [ 2735.156669] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.159179] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.159667] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.162125] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.163730] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.164154] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.165093] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.165604] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.166623] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.167313] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.167998] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.168701] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.171808] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.174897] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.177060] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.180015] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.181480] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.181875] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.181984] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.182856] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.183653] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.183733] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.183858] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.183983] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.184106] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.184363] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.184733] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.184983] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.185240] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.186606] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.187120] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.187748] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.188365] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.189443] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.189490] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.189615] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.189740] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.189859] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.191493] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.191887] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.194429] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.194996] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.198003] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.198753] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.200251] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.200741] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.200797] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.201640] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.202644] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.202739] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.202823] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.202883] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.203111] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.203239] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.203613] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.203936] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.203989] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.205319] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.205755] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.206489] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.206935] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.206989] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.207987] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.208037] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.208204] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.208400] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.208448] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.208496] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.208766] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.209109] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.209414] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.210738] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.210787] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.210836] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.210886] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.210933] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.210983] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.211032] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.211045] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.211131] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.211196] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.211258] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.211364] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.211484] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.212866] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215236] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215284] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215338] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215340] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215387] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215430] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215484] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215533] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215614] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215662] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.215742] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.218520] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.218610] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.218661] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.218707] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.218756] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.218806] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.218860] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.218908] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.218957] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.219007] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.219057] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.219114] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.221617] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.221741] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.221864] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.221990] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.222110] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.222158] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.222207] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.222256] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.222305] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.222364] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.222485] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.222779] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.222994] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.223043] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.223384] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226255] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226303] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226351] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226658] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226734] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226783] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226832] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226882] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226930] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.226986] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.227034] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.227083] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.227133] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.227184] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.227669] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.227865] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.228303] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.228313] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.228499] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.228655] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.228865] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.229195] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.229447] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.231489] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.231609] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.231682] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.231744] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.231864] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.236915] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.237629] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.239375] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.239879] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.240363] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.240806] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.241859] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.242375] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.242868] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.243481] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.246630] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.248066] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.253423] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.253808] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.309485] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.310000] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.310403] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.311388] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.311876] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.312445] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.312917] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.316248] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.317610] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.321391] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.321752] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.323360] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.323888] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.324949] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.325390] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.330485] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.331484] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.333361] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.334172] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.334875] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.335612] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.337559] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.338004] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.338654] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.339054] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.340155] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.340639] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.341234] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.341818] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.345143] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.352614] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.353153] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.354233] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.354748] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.356798] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.357532] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.357929] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.358363] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.361615] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2735.362138] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.363233] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.363935] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.365235] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.365862] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.366363] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.366410] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.367233] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.368165] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.368183] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.368242] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.368365] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.368487] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.368608] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.368767] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.370567] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.371012] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.373736] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.374542] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.375232] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.375732] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.376570] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.377484] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.378484] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.381250] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2735.381776] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.382858] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.383386] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.384988] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.385736] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.386196] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.386312] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.387107] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.387919] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.387991] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.388112] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.388237] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.388361] encode_fattr: mode=0x00008140 mask=0x00000fff [ 2735.389852] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.390276] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.393106] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.394106] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.395901] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.396250] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.397015] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.397427] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.398170] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.398241] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.399610] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.399682] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.399740] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.399864] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.400158] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.400366] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.400611] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.402168] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.402238] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.402365] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.402486] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.402616] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.402857] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.403110] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.403435] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.406572] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.406682] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.406737] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.406858] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.406906] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.407163] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.407362] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.407740] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.408112] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.408435] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.408516] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.408860] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.409168] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.409444] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.409736] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.417560] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.417612] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.417689] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.417739] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.417787] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.417861] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.417926] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.417985] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.418053] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.418235] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.418282] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.418359] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.418409] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.418486] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.418606] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.425318] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.425365] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.425486] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.425613] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.425734] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.426110] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.426438] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.426810] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.427110] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.427356] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.427736] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.428023] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.428321] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.428611] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.437487] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.437611] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.437660] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.437707] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.437756] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.437806] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.437857] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.437904] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.437986] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.438032] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.438109] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.438159] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.438314] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.438361] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.438489] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.438865] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.447316] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.447377] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.447486] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.447731] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.447859] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.448236] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.448486] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.448611] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.449046] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.449316] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.449666] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.449986] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.450236] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.457487] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.457533] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.458606] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.458654] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.458705] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.458786] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.458862] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.458990] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.459109] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.459484] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.459761] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.460277] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.460487] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.460818] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.461110] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.461235] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.461611] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.469609] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.469656] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.469736] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.469822] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.469879] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.470105] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.470235] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.470609] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.470933] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.471190] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.471485] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.471859] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.472212] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.472423] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.477486] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.480751] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.480819] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.480916] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.480985] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.481111] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.481236] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.481610] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.481885] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.482195] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.482485] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.482611] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.482996] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.483356] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.483666] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.483984] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.491614] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.491682] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.491741] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.491865] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.491986] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.492166] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.492362] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.492736] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.493011] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.493319] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.493609] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.493734] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.494170] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.497488] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.497533] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.501487] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.501542] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.501615] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.501739] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.501861] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.501986] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.502262] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.502610] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.502886] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.503193] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.503507] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.503682] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.504232] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.504360] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.504737] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.511433] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.511539] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.511611] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.511739] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.511860] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.512238] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.512509] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.512819] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.513110] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.513236] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.513609] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.513979] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.514235] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.514363] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.517488] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.521308] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.521359] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.521482] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.521610] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.521736] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.521860] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.522234] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.522484] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.522609] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.522885] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.523235] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.523605] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.523932] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.524184] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.527484] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.531190] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.531277] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.531364] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.531427] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.531485] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.531731] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.531860] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.532230] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.532486] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.532605] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.532984] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.533260] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.533605] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.533734] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.534039] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.540905] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.540989] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.541111] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.541171] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.541356] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.541485] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.541815] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.542159] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.542263] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.542609] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.542938] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.543231] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.543534] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.543610] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.547488] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.551808] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.551859] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.551985] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.733874] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.734982] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.742009] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.743856] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.746318] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.747228] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.749106] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.750400] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.751688] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.752732] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.756871] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.763433] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.768605] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.769118] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.769398] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.769728] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.770674] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.771618] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.771977] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.772188] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.774983] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.775476] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.775873] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.778912] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2735.779384] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.780478] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.781007] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.782228] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.786109] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.786353] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.786884] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.787002] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.787103] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.788855] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.789731] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.789777] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.789857] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.789918] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.789981] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.790109] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.790259] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.790675] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.790982] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.792854] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.793105] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.793478] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.793672] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.794357] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.794406] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.794482] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.794545] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.795771] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.795820] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.796289] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.796308] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.796325] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.796340] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.796356] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.796403] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.796667] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.796692] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.796709] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.798056] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.798635] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.798858] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.798906] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.799104] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.799152] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.799362] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.799478] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.799527] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.799606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.800432] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.803242] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.804619] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.805260] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.805852] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.805978] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.809371] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.809901] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.810976] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.811742] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.816365] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.817228] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.817603] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.817798] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.817856] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.818728] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.819535] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.820235] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.820281] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.820357] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.820440] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.820606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.820727] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.820926] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.821236] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.821852] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.822849] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.823535] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.825432] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.825857] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.825903] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.826857] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.826905] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.826981] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.827066] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.827126] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.827352] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.827476] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.827851] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.828262] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.829678] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830016] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830070] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830117] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830166] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830214] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830262] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830312] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830360] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830409] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830457] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830509] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830511] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830556] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.830857] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.833234] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.833357] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.833482] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.833605] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.833651] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.833728] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.833777] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.833857] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.833977] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.834027] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.834107] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.834357] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.834485] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.834606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.834732] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.836640] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.838511] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.838979] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.839026] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.839927] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.840623] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.841357] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.841803] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.842115] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.842858] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.842906] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.842954] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.843005] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.843052] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.843102] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.843153] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.843157] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.843249] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.845555] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.846231] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.846733] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.846780] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.847760] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.848184] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.848195] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.848221] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.848266] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.848277] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.848318] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.850162] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.850728] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851482] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851530] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851579] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851629] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851678] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851727] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851778] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851781] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851874] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.851987] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.852032] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.852452] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.852459] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.855353] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.855403] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.855454] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.855458] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.855502] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.855549] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.855891] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856265] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856284] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856305] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856322] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856361] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856480] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856527] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856674] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.856981] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.857029] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.857358] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.857732] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.857982] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.858052] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.858364] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.858728] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.858977] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.859138] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.859358] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.859722] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.859981] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.860421] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.860604] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.860733] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.860983] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.861103] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.861439] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.861731] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.861881] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.862106] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.862477] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.862634] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.865565] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.865613] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.865855] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.865906] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.865984] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.866034] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.866108] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.866232] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.866282] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.866358] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.866486] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.866886] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.866977] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.867029] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.867106] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.869689] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.869738] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.869984] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870033] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870106] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870229] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870278] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870353] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870403] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870482] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870610] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870930] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.870985] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.871111] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.871230] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.873734] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.873856] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.873981] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.874102] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.874228] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.874316] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.874371] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.874483] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.874607] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.874732] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.874780] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.875104] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.875152] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.875232] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.875278] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.878762] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.878811] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.878861] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.878910] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.878958] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.885665] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.886732] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2735.887275] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2735.887747] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2735.890025] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.890521] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.891600] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.892033] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.895354] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.895883] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.896942] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.897370] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.900356] encode_fattr: mode=0x000089ed mask=0x00000fff [ 2735.900887] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.901995] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.902507] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.903729] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.905317] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.905768] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.906852] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.907383] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.908038] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.908606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.909187] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.909687] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.910226] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.912104] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.912145] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.912231] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.912314] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.912483] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.912606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.912861] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.913226] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.913561] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.913851] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.914179] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.914500] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.915649] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.915734] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.915797] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.915863] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.915905] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.915981] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.916042] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.916107] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.916150] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.916277] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.916351] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.916480] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.916531] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.916605] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.916855] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.917102] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.917152] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.917231] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.917361] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.917727] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.917976] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.918106] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.918410] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.918725] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.918938] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.918995] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.919357] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.919610] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.919858] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.920108] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.920354] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.920616] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.924380] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.924551] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.924607] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.924657] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.924731] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.924861] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.924926] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.925007] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.925112] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.925235] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.925352] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.925652] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.925726] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.925775] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.925862] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.925976] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.926025] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.926103] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.926150] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.929857] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.929905] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.929954] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930004] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930051] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930101] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930152] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930157] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930261] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930359] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930426] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930491] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930652] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.930729] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.933920] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.934110] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.934158] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.934231] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.934280] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.934364] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.934481] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.934601] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.936568] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.936615] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.936678] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.936731] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.936780] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.936828] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.936877] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.936927] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.936984] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.937102] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.937150] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.937230] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.937352] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.939728] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.940608] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.941602] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.941993] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.942042] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.942090] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.942140] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.942760] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.942980] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943029] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943105] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943227] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943275] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943352] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943400] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943605] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943734] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943846] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.943901] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.947480] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2735.948233] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.948731] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.948778] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.949601] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.950479] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.950528] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.950606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.950730] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.950858] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.950984] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.951350] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.951604] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.951917] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.953190] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.953616] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.954480] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.954537] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.954608] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.958300] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.958633] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2735.958979] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.959481] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.960146] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.960606] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.961231] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.961730] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.963132] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.963851] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.964354] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.964977] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.965677] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.965730] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.965855] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.965984] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.966105] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.966510] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.966985] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.967179] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.967660] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968358] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968404] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968452] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968550] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968599] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968648] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968697] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968754] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968795] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968850] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.968904] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.969107] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.969153] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.969244] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.971229] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.973563] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.973977] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.974601] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2735.975520] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2735.976242] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2735.976746] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2736.057483] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.058190] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.058262] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.058358] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.058479] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.058854] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.058979] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.059151] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.059229] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.059354] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.059404] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.059609] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.059654] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.059983] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.060308] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.060410] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.061939] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.061989] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.062100] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.062156] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.062351] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.062399] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.062483] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.062531] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.062604] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.062979] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.063103] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.063379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.063725] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.063980] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.064351] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.065559] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.065609] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.065855] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.065901] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.065978] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.066041] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.066184] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.066481] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.066630] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.066730] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.066909] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.069111] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.069229] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.069479] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.069528] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.069578] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.069628] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.069688] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.069808] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.070354] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072220] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072229] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072280] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072356] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072403] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072452] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072555] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072608] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.072648] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.073057] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.073354] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.073603] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.073734] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.073979] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.076850] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.076899] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.076952] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.076956] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.076998] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.077068] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.077120] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.077168] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.077229] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.077277] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.077355] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.077606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.077979] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.078228] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.078384] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.078603] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.078975] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.079225] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.079558] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.079853] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.080356] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.080363] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.080480] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.080600] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.080975] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.088601] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.088649] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.088731] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.088793] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.088854] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.089101] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.089229] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.092097] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2736.092482] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2736.093173] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2736.093603] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2736.103276] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2736.104034] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.105353] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.105399] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.105447] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.105554] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.105610] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.105856] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.106101] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.106475] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.108549] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.110395] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.110600] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.111009] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.111224] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.115521] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.116016] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.117727] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.118380] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.118975] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.139235] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2736.139995] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.140478] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.140523] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.141352] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.142102] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.142160] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.142229] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.142356] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.142478] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.142606] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.142852] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.143228] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.143479] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.145146] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.145616] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.146185] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.146745] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.146849] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.146911] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.149053] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.149538] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.149609] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.150730] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.152256] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.152922] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.153350] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.153975] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.154922] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.155349] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.155976] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.156852] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.157600] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.158227] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.158729] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.160602] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.161725] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.162367] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2736.162757] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2736.163224] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.163730] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.164352] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.165477] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.166130] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.167100] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.167658] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.174452] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.174972] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.175664] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.176195] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.178970] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.179665] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.180097] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.180720] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.181720] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.182219] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.182846] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.183736] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.185247] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.185745] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.187897] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2736.188411] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2736.189604] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.190103] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.192033] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.192481] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.193281] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.193750] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.194238] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.196381] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2736.197128] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.197613] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.197671] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.198486] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.199345] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.199393] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.199470] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.200613] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.201114] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2736.201849] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.202295] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.202349] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.203268] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.203349] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.203437] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.203493] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.203720] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.203845] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.204287] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.204471] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.204601] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206080] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206151] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206175] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206232] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206291] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206355] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206603] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206728] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206856] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.206980] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.207101] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.207150] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.207226] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.208015] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.210173] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.210856] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.210913] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.210980] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.211103] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.211229] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.213479] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.213545] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.213605] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.214600] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2736.215101] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2736.215492] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.215970] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.216402] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.238156] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238227] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238275] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238323] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238374] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238427] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238478] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238603] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238653] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238807] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.238856] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.241617] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.242728] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.242775] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.242855] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.242905] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.242952] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.242999] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.243050] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.243100] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.243147] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.243198] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.243245] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.243353] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.243507] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.250603] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.251142] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.251604] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.255301] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2736.255979] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.257728] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.258228] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.258303] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.259102] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.260230] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.260276] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.260355] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.260439] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.260501] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.260726] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.260852] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.262490] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.262988] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.269798] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2736.270478] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.272097] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.272508] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.272603] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.273393] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.274517] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.274988] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.276361] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.277116] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.277629] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.278224] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.279143] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.279599] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.280225] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.281100] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.281795] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.282977] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2736.283478] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2736.284031] encode_fattr: mode=0x00008180 mask=0x00000fff [ 2736.285100] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.285149] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.285228] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.285292] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.285352] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2736.287472] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.287893] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2736.288351] encode_fattr: mode=0x000081a4 mask=0x00000fff [ 2766.167100] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2826.226209] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2886.280388] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2946.334451] encode_fattr: mode=0x000041ed mask=0x00000fff ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 16:33 linux-3.14 nfsd regression Mark Lord @ 2014-04-03 16:44 ` Mark Lord 2014-04-03 16:53 ` Mark Lord 2014-04-03 17:16 ` J. Bruce Fields 1 sibling, 1 reply; 19+ messages in thread From: Mark Lord @ 2014-04-03 16:44 UTC (permalink / raw) To: Albert Fluegel, J. Bruce Fields; +Cc: linux-nfs, linux-kernel On 14-04-03 12:33 PM, Mark Lord wrote: > This commit from linux-3.14 breaks our NFS-root clients here: > > https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 > > > - *p++ = htonl((u32) stat->mode); > + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > > > Reverting the one-liner above (on the server) fixes it for us, > as does reverting back to linux-3.13.8 on the server. > > The NFS-root clients are on PowerPC (big-endian) architecture, > running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. > > ACL is completely disabled on server and client, > and we're using NFSv2/v3. No support for v4. > > I instrumented the function to see what other bits were being cleared > by the (stat->mode & S_IALLUGO) masking. The results are attached. .. Looking into the (previously attached) trace, the bits that seem to be getting chopped most often are S_IFREG (0x8000) and S_IFDIR (0x4000). It appears that one/both of those are needed for mounting nfsroot. [ 2733.823753] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.824217] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.838769] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.839175] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2733.839895] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.840388] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.840431] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.841256] encode_fattr: mode=0x000041ed mask=0x00000fff [ 2733.841659] encode_fattr: mode=0x0000a1ff mask=0x00000fff [ 2733.842379] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.842825] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.842879] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.843876] encode_fattr: mode=0x000081ed mask=0x00000fff [ 2733.843924] encode_fattr: mode=0x000081ed mask=0x00000fff ... ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 16:44 ` Mark Lord @ 2014-04-03 16:53 ` Mark Lord 0 siblings, 0 replies; 19+ messages in thread From: Mark Lord @ 2014-04-03 16:53 UTC (permalink / raw) To: Albert Fluegel, J. Bruce Fields; +Cc: linux-nfs, linux-kernel Mark Lord wrote: > On 14-04-03 12:33 PM, Mark Lord wrote: >> This commit from linux-3.14 breaks our NFS-root clients here: >> >> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 >> >> >> - *p++ = htonl((u32) stat->mode); >> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); >> >> >> Reverting the one-liner above (on the server) fixes it for us, >> as does reverting back to linux-3.13.8 on the server. >> >> The NFS-root clients are on PowerPC (big-endian) architecture, >> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. >> >> ACL is completely disabled on server and client, >> and we're using NFSv2/v3. No support for v4. >> >> I instrumented the function to see what other bits were being cleared >> by the (stat->mode & S_IALLUGO) masking. The results are attached. > .. > > > Looking into the (previously attached) trace, the bits that seem to be > getting chopped most often are S_IFREG (0x8000) and S_IFDIR (0x4000). > It appears that one/both of those are needed for mounting nfsroot. > > > [ 2733.823753] encode_fattr: mode=0x000041ed mask=0x00000fff > [ 2733.824217] encode_fattr: mode=0x000041ed mask=0x00000fff > [ 2733.838769] encode_fattr: mode=0x000041ed mask=0x00000fff > [ 2733.839175] encode_fattr: mode=0x0000a1ff mask=0x00000fff > [ 2733.839895] encode_fattr: mode=0x000081ed mask=0x00000fff ... Okay, the NFS root filesystem mounts and appears to work if I use this: *p++ = htonl((u32) (stat->mode & (S_IALLUGO | S_IFDIR | S_IFREG | S_IFCHR))); But I suspect it may also need S_IFBLK for block device accesses as well. Cheers ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 16:33 linux-3.14 nfsd regression Mark Lord 2014-04-03 16:44 ` Mark Lord @ 2014-04-03 17:16 ` J. Bruce Fields 2014-04-03 17:51 ` Mark Lord 1 sibling, 1 reply; 19+ messages in thread From: J. Bruce Fields @ 2014-04-03 17:16 UTC (permalink / raw) To: Mark Lord; +Cc: Albert Fluegel, linux-nfs, linux-kernel On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: > This commit from linux-3.14 breaks our NFS-root clients here: > > https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 > > > - *p++ = htonl((u32) stat->mode); > + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > > > Reverting the one-liner above (on the server) fixes it for us, > as does reverting back to linux-3.13.8 on the server. > > The NFS-root clients are on PowerPC (big-endian) architecture, > running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. > > ACL is completely disabled on server and client, > and we're using NFSv2/v3. No support for v4. > > I instrumented the function to see what other bits were being cleared > by the (stat->mode & S_IALLUGO) masking. The results are attached. Hm, it sounds like a bug in the client if it's depending on those high bits. The original behavior was in practice harmless and changing it broke something, so I think we should definitely just revert this patch. But the client may need fixing too. --b. ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 17:16 ` J. Bruce Fields @ 2014-04-03 17:51 ` Mark Lord 2014-04-03 18:55 ` Jeff Layton ` (2 more replies) 0 siblings, 3 replies; 19+ messages in thread From: Mark Lord @ 2014-04-03 17:51 UTC (permalink / raw) To: J. Bruce Fields; +Cc: Albert Fluegel, linux-nfs, linux-kernel On 14-04-03 01:16 PM, J. Bruce Fields wrote: > On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: >> This commit from linux-3.14 breaks our NFS-root clients here: >> >> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 >> >> >> - *p++ = htonl((u32) stat->mode); >> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); >> >> >> Reverting the one-liner above (on the server) fixes it for us, >> as does reverting back to linux-3.13.8 on the server. >> >> The NFS-root clients are on PowerPC (big-endian) architecture, >> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. >> >> ACL is completely disabled on server and client, >> and we're using NFSv2/v3. No support for v4. >> >> I instrumented the function to see what other bits were being cleared >> by the (stat->mode & S_IALLUGO) masking. The results are attached. > > Hm, it sounds like a bug in the client if it's depending on those high > bits. But only for mounting / starting up from the nfsroot, it seems. I wonder if there's an unusual code path for that in there? The regular stuff looks mostly fine: p = xdr_decode_ftype3(p, &fmode); fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; Except perhaps that second line ought to use the same mask as the server side is using, just in case there are some other stray high (higher than S_IFMT) bits in there now/someday. > The original behavior was in practice harmless and changing it broke > something, so I think we should definitely just revert this patch. Yup. Who? > But the client may need fixing too. Probably a good thing in the longer term, for better compatibility with non-Linux servers. But we'll still have to keep the revert on the server (nfsd) code for backward compatibility, I think. Cheers ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 17:51 ` Mark Lord @ 2014-04-03 18:55 ` Jeff Layton 2014-04-03 20:16 ` J. Bruce Fields 2014-04-03 19:30 ` J. Bruce Fields 2014-04-03 20:15 ` J. Bruce Fields 2 siblings, 1 reply; 19+ messages in thread From: Jeff Layton @ 2014-04-03 18:55 UTC (permalink / raw) To: Mark Lord; +Cc: J. Bruce Fields, Albert Fluegel, linux-nfs, linux-kernel On Thu, 03 Apr 2014 13:51:06 -0400 Mark Lord <mlord@pobox.com> wrote: > On 14-04-03 01:16 PM, J. Bruce Fields wrote: > > On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: > >> This commit from linux-3.14 breaks our NFS-root clients here: > >> > >> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 > >> > >> > >> - *p++ = htonl((u32) stat->mode); > >> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > >> > >> > >> Reverting the one-liner above (on the server) fixes it for us, > >> as does reverting back to linux-3.13.8 on the server. > >> > >> The NFS-root clients are on PowerPC (big-endian) architecture, > >> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. > >> > >> ACL is completely disabled on server and client, > >> and we're using NFSv2/v3. No support for v4. > >> > >> I instrumented the function to see what other bits were being cleared > >> by the (stat->mode & S_IALLUGO) masking. The results are attached. > > > > Hm, it sounds like a bug in the client if it's depending on those high > > bits. > > But only for mounting / starting up from the nfsroot, it seems. > I wonder if there's an unusual code path for that in there? > The regular stuff looks mostly fine: > > p = xdr_decode_ftype3(p, &fmode); > fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; > > Except perhaps that second line ought to use the same mask > as the server side is using, just in case there are some other > stray high (higher than S_IFMT) bits in there now/someday. > > > The original behavior was in practice harmless and changing it broke > > something, so I think we should definitely just revert this patch. > > Yup. Who? > > > But the client may need fixing too. > > Probably a good thing in the longer term, for better compatibility > with non-Linux servers. But we'll still have to keep the revert > on the server (nfsd) code for backward compatibility, I think. > > Cheers > It would be good to understand where this is broken in the client. It's incorrect for the client to interpret those bits, as I think that there's no guarantee that other OS's implement the type bits in the same way that Linux does. So if you end up mounting a different OS, it's possible that the client will get that wrong... -- Jeff Layton <jlayton@redhat.com> ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 18:55 ` Jeff Layton @ 2014-04-03 20:16 ` J. Bruce Fields 2014-04-03 23:21 ` Jeff Layton 0 siblings, 1 reply; 19+ messages in thread From: J. Bruce Fields @ 2014-04-03 20:16 UTC (permalink / raw) To: Jeff Layton Cc: Mark Lord, J. Bruce Fields, Albert Fluegel, linux-nfs, linux-kernel On Thu, Apr 03, 2014 at 02:55:04PM -0400, Jeff Layton wrote: > On Thu, 03 Apr 2014 13:51:06 -0400 > Mark Lord <mlord@pobox.com> wrote: > > > On 14-04-03 01:16 PM, J. Bruce Fields wrote: > > > On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: > > >> This commit from linux-3.14 breaks our NFS-root clients here: > > >> > > >> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 > > >> > > >> > > >> - *p++ = htonl((u32) stat->mode); > > >> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > > >> > > >> > > >> Reverting the one-liner above (on the server) fixes it for us, > > >> as does reverting back to linux-3.13.8 on the server. > > >> > > >> The NFS-root clients are on PowerPC (big-endian) architecture, > > >> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. > > >> > > >> ACL is completely disabled on server and client, > > >> and we're using NFSv2/v3. No support for v4. > > >> > > >> I instrumented the function to see what other bits were being cleared > > >> by the (stat->mode & S_IALLUGO) masking. The results are attached. > > > > > > Hm, it sounds like a bug in the client if it's depending on those high > > > bits. > > > > But only for mounting / starting up from the nfsroot, it seems. > > I wonder if there's an unusual code path for that in there? > > The regular stuff looks mostly fine: > > > > p = xdr_decode_ftype3(p, &fmode); > > fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; > > > > Except perhaps that second line ought to use the same mask > > as the server side is using, just in case there are some other > > stray high (higher than S_IFMT) bits in there now/someday. > > > > > The original behavior was in practice harmless and changing it broke > > > something, so I think we should definitely just revert this patch. > > > > Yup. Who? > > > > > But the client may need fixing too. > > > > Probably a good thing in the longer term, for better compatibility > > with non-Linux servers. But we'll still have to keep the revert > > on the server (nfsd) code for backward compatibility, I think. > > > > Cheers > > > > It would be good to understand where this is broken in the client. > > It's incorrect for the client to interpret those bits, as I think that > there's no guarantee that other OS's implement the type bits in the > same way that Linux does. So if you end up mounting a different OS, > it's possible that the client will get that wrong... It turns out these bits actually are defined in rfc 1094, so this is just an odd NFSv2-specific wart, and the nfsd change was just flat-out wrong. --b. ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 20:16 ` J. Bruce Fields @ 2014-04-03 23:21 ` Jeff Layton 2014-04-04 13:58 ` J. Bruce Fields 0 siblings, 1 reply; 19+ messages in thread From: Jeff Layton @ 2014-04-03 23:21 UTC (permalink / raw) To: J. Bruce Fields Cc: Mark Lord, J. Bruce Fields, Albert Fluegel, linux-nfs, linux-kernel On Thu, 3 Apr 2014 16:16:27 -0400 "J. Bruce Fields" <bfields@fieldses.org> wrote: > On Thu, Apr 03, 2014 at 02:55:04PM -0400, Jeff Layton wrote: > > On Thu, 03 Apr 2014 13:51:06 -0400 > > Mark Lord <mlord@pobox.com> wrote: > > > > > On 14-04-03 01:16 PM, J. Bruce Fields wrote: > > > > On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: > > > >> This commit from linux-3.14 breaks our NFS-root clients here: > > > >> > > > >> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 > > > >> > > > >> > > > >> - *p++ = htonl((u32) stat->mode); > > > >> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > > > >> > > > >> > > > >> Reverting the one-liner above (on the server) fixes it for us, > > > >> as does reverting back to linux-3.13.8 on the server. > > > >> > > > >> The NFS-root clients are on PowerPC (big-endian) architecture, > > > >> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. > > > >> > > > >> ACL is completely disabled on server and client, > > > >> and we're using NFSv2/v3. No support for v4. > > > >> > > > >> I instrumented the function to see what other bits were being cleared > > > >> by the (stat->mode & S_IALLUGO) masking. The results are attached. > > > > > > > > Hm, it sounds like a bug in the client if it's depending on those high > > > > bits. > > > > > > But only for mounting / starting up from the nfsroot, it seems. > > > I wonder if there's an unusual code path for that in there? > > > The regular stuff looks mostly fine: > > > > > > p = xdr_decode_ftype3(p, &fmode); > > > fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; > > > > > > Except perhaps that second line ought to use the same mask > > > as the server side is using, just in case there are some other > > > stray high (higher than S_IFMT) bits in there now/someday. > > > > > > > The original behavior was in practice harmless and changing it broke > > > > something, so I think we should definitely just revert this patch. > > > > > > Yup. Who? > > > > > > > But the client may need fixing too. > > > > > > Probably a good thing in the longer term, for better compatibility > > > with non-Linux servers. But we'll still have to keep the revert > > > on the server (nfsd) code for backward compatibility, I think. > > > > > > Cheers > > > > > > > It would be good to understand where this is broken in the client. > > > > It's incorrect for the client to interpret those bits, as I think that > > there's no guarantee that other OS's implement the type bits in the > > same way that Linux does. So if you end up mounting a different OS, > > it's possible that the client will get that wrong... > > It turns out these bits actually are defined in rfc 1094, so this is > just an odd NFSv2-specific wart, and the nfsd change was just flat-out > wrong. > > --b. Ahh right -- I remember seeing that long ago. So according to the RFC you have to encode both the mode bits and the ftype for v2. The type bits seem to be removed from the mode in NFSv3 though, so perhaps we should only be doing that masking in versions above v2? With a quick check, it looks like the v3 code doesn't rely on those bits and I imagine v4 doesn't either. It might also be nice to have the client v2 decode_fattr function to throw a warning if the server sends us mismatched type bits and ftype values. That would have helped us catch this sooner... -- Jeff Layton <jlayton@redhat.com> ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 23:21 ` Jeff Layton @ 2014-04-04 13:58 ` J. Bruce Fields 2014-04-04 14:07 ` Jeff Layton 2014-05-01 11:50 ` Mark Lord 0 siblings, 2 replies; 19+ messages in thread From: J. Bruce Fields @ 2014-04-04 13:58 UTC (permalink / raw) To: Jeff Layton Cc: Mark Lord, J. Bruce Fields, Albert Fluegel, linux-nfs, linux-kernel On Thu, Apr 03, 2014 at 07:21:46PM -0400, Jeff Layton wrote: > So according to the RFC you have to encode both the mode bits and the > ftype for v2. The type bits seem to be removed from the mode in NFSv3 > though, so perhaps we should only be doing that masking in versions > above v2? Right, the problematic patch applied the same mask in both v2 and v3 cases, so I'm reverting just the v2 part (see below). > With a quick check, it looks like the v3 code doesn't rely on those bits > and I imagine v4 doesn't either. > > It might also be nice to have the client v2 decode_fattr function to > throw a warning if the server sends us mismatched type bits and ftype > values. That would have helped us catch this sooner... Yes, that might be a reasonable thing to do, though I don't know if it's worth it. --b. commit 35a8dff14e76c00e5b52140290cfb498dc2454a0 Author: J. Bruce Fields <bfields@redhat.com> Date: Thu Apr 3 15:10:35 2014 -0400 nfsd: revert v2 half of "nfsd: don't return high mode bits" This reverts the part of commit 6e14b46b91fee8a049b0940333ce13a820beaaa5 that changes NFSv2 behavior. Mark Lord found that it broke nfs-root for Linux clients, because it broke NFSv2. In fact, from RFC 1094: "Notice that the file type is specified both in the mode bits and in the file type. This is really a bug in the protocol and will be fixed in future versions." So NFSv2 clients really are expected to depend on the high bits of the mode. Cc: stable@kernel.org Reported-by: Mark Lord <mlord@pobox.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com> diff --git a/fs/nfsd/nfsxdr.c b/fs/nfsd/nfsxdr.c index b17d932..9c769a4 100644 --- a/fs/nfsd/nfsxdr.c +++ b/fs/nfsd/nfsxdr.c @@ -152,7 +152,7 @@ encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, type = (stat->mode & S_IFMT); *p++ = htonl(nfs_ftypes[type >> 12]); - *p++ = htonl((u32) (stat->mode & S_IALLUGO)); + *p++ = htonl((u32) stat->mode); *p++ = htonl((u32) stat->nlink); *p++ = htonl((u32) from_kuid(&init_user_ns, stat->uid)); *p++ = htonl((u32) from_kgid(&init_user_ns, stat->gid)); ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-04 13:58 ` J. Bruce Fields @ 2014-04-04 14:07 ` Jeff Layton 2014-05-01 11:50 ` Mark Lord 1 sibling, 0 replies; 19+ messages in thread From: Jeff Layton @ 2014-04-04 14:07 UTC (permalink / raw) To: J. Bruce Fields Cc: Mark Lord, J. Bruce Fields, Albert Fluegel, linux-nfs, linux-kernel On Fri, 4 Apr 2014 09:58:43 -0400 "J. Bruce Fields" <bfields@fieldses.org> wrote: > On Thu, Apr 03, 2014 at 07:21:46PM -0400, Jeff Layton wrote: > > So according to the RFC you have to encode both the mode bits and the > > ftype for v2. The type bits seem to be removed from the mode in NFSv3 > > though, so perhaps we should only be doing that masking in versions > > above v2? > > Right, the problematic patch applied the same mask in both v2 and v3 > cases, so I'm reverting just the v2 part (see below). > > > With a quick check, it looks like the v3 code doesn't rely on those bits > > and I imagine v4 doesn't either. > > > > It might also be nice to have the client v2 decode_fattr function to > > throw a warning if the server sends us mismatched type bits and ftype > > values. That would have helped us catch this sooner... > > Yes, that might be a reasonable thing to do, though I don't know if it's > worth it. > > --b. > > commit 35a8dff14e76c00e5b52140290cfb498dc2454a0 > Author: J. Bruce Fields <bfields@redhat.com> > Date: Thu Apr 3 15:10:35 2014 -0400 > > nfsd: revert v2 half of "nfsd: don't return high mode bits" > > This reverts the part of commit 6e14b46b91fee8a049b0940333ce13a820beaaa5 > that changes NFSv2 behavior. > > Mark Lord found that it broke nfs-root for Linux clients, because it > broke NFSv2. > > In fact, from RFC 1094: > > "Notice that the file type is specified both in the mode bits > and in the file type. This is really a bug in the protocol and > will be fixed in future versions." > > So NFSv2 clients really are expected to depend on the high bits of the > mode. > > Cc: stable@kernel.org > Reported-by: Mark Lord <mlord@pobox.com> > Signed-off-by: J. Bruce Fields <bfields@redhat.com> > > diff --git a/fs/nfsd/nfsxdr.c b/fs/nfsd/nfsxdr.c > index b17d932..9c769a4 100644 > --- a/fs/nfsd/nfsxdr.c > +++ b/fs/nfsd/nfsxdr.c > @@ -152,7 +152,7 @@ encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, > type = (stat->mode & S_IFMT); > > *p++ = htonl(nfs_ftypes[type >> 12]); > - *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > + *p++ = htonl((u32) stat->mode); > *p++ = htonl((u32) stat->nlink); > *p++ = htonl((u32) from_kuid(&init_user_ns, stat->uid)); > *p++ = htonl((u32) from_kgid(&init_user_ns, stat->gid)); Looks right... Reviewed-by: Jeff Layton <jlayton@redhat.com> ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-04 13:58 ` J. Bruce Fields 2014-04-04 14:07 ` Jeff Layton @ 2014-05-01 11:50 ` Mark Lord 2014-05-01 19:59 ` J. Bruce Fields 1 sibling, 1 reply; 19+ messages in thread From: Mark Lord @ 2014-05-01 11:50 UTC (permalink / raw) To: J. Bruce Fields, Jeff Layton Cc: J. Bruce Fields, Albert Fluegel, linux-nfs, linux-kernel On 14-04-04 09:58 AM, J. Bruce Fields wrote: > On Thu, Apr 03, 2014 at 07:21:46PM -0400, Jeff Layton wrote: >> So according to the RFC you have to encode both the mode bits and the >> ftype for v2. The type bits seem to be removed from the mode in NFSv3 >> though, so perhaps we should only be doing that masking in versions >> above v2? > > Right, the problematic patch applied the same mask in both v2 and v3 > cases, so I'm reverting just the v2 part (see below). > >> With a quick check, it looks like the v3 code doesn't rely on those bits >> and I imagine v4 doesn't either. >> >> It might also be nice to have the client v2 decode_fattr function to >> throw a warning if the server sends us mismatched type bits and ftype >> values. That would have helped us catch this sooner... > > Yes, that might be a reasonable thing to do, though I don't know if it's > worth it. > > --b. > > commit 35a8dff14e76c00e5b52140290cfb498dc2454a0 > Author: J. Bruce Fields <bfields@redhat.com> > Date: Thu Apr 3 15:10:35 2014 -0400 > > nfsd: revert v2 half of "nfsd: don't return high mode bits" > > This reverts the part of commit 6e14b46b91fee8a049b0940333ce13a820beaaa5 > that changes NFSv2 behavior. > > Mark Lord found that it broke nfs-root for Linux clients, because it > broke NFSv2. > > In fact, from RFC 1094: > > "Notice that the file type is specified both in the mode bits > and in the file type. This is really a bug in the protocol and > will be fixed in future versions." > > So NFSv2 clients really are expected to depend on the high bits of the > mode. > > Cc: stable@kernel.org > Reported-by: Mark Lord <mlord@pobox.com> > Signed-off-by: J. Bruce Fields <bfields@redhat.com> > > diff --git a/fs/nfsd/nfsxdr.c b/fs/nfsd/nfsxdr.c > index b17d932..9c769a4 100644 > --- a/fs/nfsd/nfsxdr.c > +++ b/fs/nfsd/nfsxdr.c > @@ -152,7 +152,7 @@ encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, > type = (stat->mode & S_IFMT); > > *p++ = htonl(nfs_ftypes[type >> 12]); > - *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > + *p++ = htonl((u32) stat->mode); > *p++ = htonl((u32) stat->nlink); > *p++ = htonl((u32) from_kuid(&init_user_ns, stat->uid)); > *p++ = htonl((u32) from_kgid(&init_user_ns, stat->gid)); > Still a regression in 3.14.2 now. Anyone got plans to push this patch out to mainline, as well as +stable ? -- Mark Lord Real-Time Remedies Inc. mlord@pobox.com ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-05-01 11:50 ` Mark Lord @ 2014-05-01 19:59 ` J. Bruce Fields 0 siblings, 0 replies; 19+ messages in thread From: J. Bruce Fields @ 2014-05-01 19:59 UTC (permalink / raw) To: Mark Lord Cc: Jeff Layton, J. Bruce Fields, Albert Fluegel, linux-nfs, linux-kernel On Thu, May 01, 2014 at 07:50:34AM -0400, Mark Lord wrote: > Still a regression in 3.14.2 now. > Anyone got plans to push this patch out to mainline, as well as +stable ? This is upstream as 082f31a2169bd639785e45bf252f3d5bce0303c6 "nfsd: revert v2 half of "nfsd: don't return high mode bits"", with a cc to stable@kernel.org, so I assume it's just taking a little time for stable to pick it up. --b. ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 17:51 ` Mark Lord 2014-04-03 18:55 ` Jeff Layton @ 2014-04-03 19:30 ` J. Bruce Fields 2014-04-03 20:11 ` J. Bruce Fields 2014-04-03 20:48 ` Mark Lord 2014-04-03 20:15 ` J. Bruce Fields 2 siblings, 2 replies; 19+ messages in thread From: J. Bruce Fields @ 2014-04-03 19:30 UTC (permalink / raw) To: Mark Lord; +Cc: Albert Fluegel, linux-nfs, linux-kernel On Thu, Apr 03, 2014 at 01:51:06PM -0400, Mark Lord wrote: > On 14-04-03 01:16 PM, J. Bruce Fields wrote: > > On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: > >> This commit from linux-3.14 breaks our NFS-root clients here: > >> > >> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 > >> > >> > >> - *p++ = htonl((u32) stat->mode); > >> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > >> > >> > >> Reverting the one-liner above (on the server) fixes it for us, > >> as does reverting back to linux-3.13.8 on the server. > >> > >> The NFS-root clients are on PowerPC (big-endian) architecture, > >> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. > >> > >> ACL is completely disabled on server and client, > >> and we're using NFSv2/v3. No support for v4. > >> > >> I instrumented the function to see what other bits were being cleared > >> by the (stat->mode & S_IALLUGO) masking. The results are attached. > > > > Hm, it sounds like a bug in the client if it's depending on those high > > bits. > > But only for mounting / starting up from the nfsroot, it seems. > I wonder if there's an unusual code path for that in there? > The regular stuff looks mostly fine: > > p = xdr_decode_ftype3(p, &fmode); > fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; Hm, but that's in nfs3xdr.c; in nfs2xdr.c we have just fattr->mode = be32_to_cpup(p+); and NFSv2 is the default for nfsroot. Do you have some reason to believe you're not using NFSv2? --b. > > Except perhaps that second line ought to use the same mask > as the server side is using, just in case there are some other > stray high (higher than S_IFMT) bits in there now/someday. > > > The original behavior was in practice harmless and changing it broke > > something, so I think we should definitely just revert this patch. > > Yup. Who? > > > But the client may need fixing too. > > Probably a good thing in the longer term, for better compatibility > with non-Linux servers. But we'll still have to keep the revert > on the server (nfsd) code for backward compatibility, I think. > > Cheers > > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 19:30 ` J. Bruce Fields @ 2014-04-03 20:11 ` J. Bruce Fields 2014-04-03 20:48 ` Mark Lord 1 sibling, 0 replies; 19+ messages in thread From: J. Bruce Fields @ 2014-04-03 20:11 UTC (permalink / raw) To: Mark Lord; +Cc: Albert Fluegel, linux-nfs, linux-kernel On Thu, Apr 03, 2014 at 03:30:24PM -0400, J. Bruce Fields wrote: > On Thu, Apr 03, 2014 at 01:51:06PM -0400, Mark Lord wrote: > > On 14-04-03 01:16 PM, J. Bruce Fields wrote: > > > On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: > > >> This commit from linux-3.14 breaks our NFS-root clients here: > > >> > > >> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 > > >> > > >> > > >> - *p++ = htonl((u32) stat->mode); > > >> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > > >> > > >> > > >> Reverting the one-liner above (on the server) fixes it for us, > > >> as does reverting back to linux-3.13.8 on the server. > > >> > > >> The NFS-root clients are on PowerPC (big-endian) architecture, > > >> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. > > >> > > >> ACL is completely disabled on server and client, > > >> and we're using NFSv2/v3. No support for v4. > > >> > > >> I instrumented the function to see what other bits were being cleared > > >> by the (stat->mode & S_IALLUGO) masking. The results are attached. > > > > > > Hm, it sounds like a bug in the client if it's depending on those high > > > bits. > > > > But only for mounting / starting up from the nfsroot, it seems. > > I wonder if there's an unusual code path for that in there? > > The regular stuff looks mostly fine: > > > > p = xdr_decode_ftype3(p, &fmode); > > fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; > > Hm, but that's in nfs3xdr.c; in nfs2xdr.c we have just > > fattr->mode = be32_to_cpup(p+); > > and NFSv2 is the default for nfsroot. Do you have some reason to > believe you're not using NFSv2? Oh, bah, after actually writing a patch for this I thought to check the rfc's and in fact rfc 1094 2.3.5 says that v2 *does* encode the file type both in the type and mode fields of the attributes, though it describes this as "a bug in the protocol". So I think the nfsd patch was just flat-out wrong in the v2 case, and that it probably just isn't worth "fixing" the client. But patch included below anyway for amusement value. --b. commit 86706287828aa5b4deed6b6b1478e89d2e2c9707 Author: J. Bruce Fields <bfields@redhat.com> Date: Thu Apr 3 16:04:59 2014 -0400 nfs: nfsv2 client shouldn't get ftype from mode The NFSv2 client is using the high bits of the mode to determine the file type; use the "type" field instead. XXX: rfc 1094 actually says this behavior is correct for NFSv2, though this is described as "a bug in the protocol". So probably this isn't worth changing. Signed-off-by: J. Bruce Fields <bfields@redhat.com> diff --git a/fs/nfs/nfs2xdr.c b/fs/nfs/nfs2xdr.c index 62db136..40fb021 100644 --- a/fs/nfs/nfs2xdr.c +++ b/fs/nfs/nfs2xdr.c @@ -166,23 +166,28 @@ out_overflow: } /* - * 2.3.2. ftype - * - * enum ftype { - * NFNON = 0, - * NFREG = 1, - * NFDIR = 2, - * NFBLK = 3, - * NFCHR = 4, - * NFLNK = 5 - * }; - * + * Map file type to S_IFMT bits */ -static __be32 *xdr_decode_ftype(__be32 *p, u32 *type) +static const umode_t nfs2_type2fmt[] = { + [NFNON] = 0, + [NFREG] = S_IFREG, + [NFDIR] = S_IFDIR, + [NFBLK] = S_IFBLK, + [NFCHR] = S_IFCHR, + [NFLNK] = S_IFLNK, + [NFSOCK] = S_IFSOCK, + [NFBAD] = 0, + [NFFIFO] = S_IFIFO, +}; + +static __be32 *xdr_decode_ftype(__be32 *p, umode_t *mode) { - *type = be32_to_cpup(p++); - if (unlikely(*type > NF2FIFO)) - *type = NFBAD; + u32 type; + + type = be32_to_cpup(p++); + if (unlikely(type > NF2FIFO)) + type = NFBAD; + *mode = nfs2_type2fmt[type]; return p; } @@ -277,7 +282,8 @@ static __be32 *xdr_decode_time(__be32 *p, struct timespec *timep) */ static int decode_fattr(struct xdr_stream *xdr, struct nfs_fattr *fattr) { - u32 rdev, type; + umode_t fmode; + u32 rdev; __be32 *p; p = xdr_inline_decode(xdr, NFS_fattr_sz << 2); @@ -286,9 +292,9 @@ static int decode_fattr(struct xdr_stream *xdr, struct nfs_fattr *fattr) fattr->valid |= NFS_ATTR_FATTR_V2; - p = xdr_decode_ftype(p, &type); + p = xdr_decode_ftype(p, &fmode); - fattr->mode = be32_to_cpup(p++); + fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; fattr->nlink = be32_to_cpup(p++); fattr->uid = make_kuid(&init_user_ns, be32_to_cpup(p++)); if (!uid_valid(fattr->uid)) @@ -302,7 +308,7 @@ static int decode_fattr(struct xdr_stream *xdr, struct nfs_fattr *fattr) rdev = be32_to_cpup(p++); fattr->rdev = new_decode_dev(rdev); - if (type == (u32)NFCHR && rdev == (u32)NFS2_FIFO_DEV) { + if (fmode == S_IFCHR && rdev == (u32)NFS2_FIFO_DEV) { fattr->mode = (fattr->mode & ~S_IFMT) | S_IFIFO; fattr->rdev = 0; } ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 19:30 ` J. Bruce Fields 2014-04-03 20:11 ` J. Bruce Fields @ 2014-04-03 20:48 ` Mark Lord 2014-04-03 21:28 ` J. Bruce Fields 1 sibling, 1 reply; 19+ messages in thread From: Mark Lord @ 2014-04-03 20:48 UTC (permalink / raw) To: J. Bruce Fields; +Cc: Albert Fluegel, linux-nfs, linux-kernel On 14-04-03 03:30 PM, J. Bruce Fields wrote: > On Thu, Apr 03, 2014 at 01:51:06PM -0400, Mark Lord wrote: >> On 14-04-03 01:16 PM, J. Bruce Fields wrote: >>> On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: >>>> This commit from linux-3.14 breaks our NFS-root clients here: >>>> >>>> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 >>>> >>>> >>>> - *p++ = htonl((u32) stat->mode); >>>> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); >>>> >>>> >>>> Reverting the one-liner above (on the server) fixes it for us, >>>> as does reverting back to linux-3.13.8 on the server. >>>> >>>> The NFS-root clients are on PowerPC (big-endian) architecture, >>>> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. >>>> >>>> ACL is completely disabled on server and client, >>>> and we're using NFSv2/v3. No support for v4. >>>> >>>> I instrumented the function to see what other bits were being cleared >>>> by the (stat->mode & S_IALLUGO) masking. The results are attached. >>> >>> Hm, it sounds like a bug in the client if it's depending on those high >>> bits. >> >> But only for mounting / starting up from the nfsroot, it seems. >> I wonder if there's an unusual code path for that in there? >> The regular stuff looks mostly fine: >> >> p = xdr_decode_ftype3(p, &fmode); >> fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; > > Hm, but that's in nfs3xdr.c; in nfs2xdr.c we have just > > fattr->mode = be32_to_cpup(p+); > > and NFSv2 is the default for nfsroot. Do you have some reason to > believe you're not using NFSv2? Oh, the client here was using NFS2, absolutely. I just don't know my way around the code very well yet. :) But that mask in nfs3xdr.c (client) doesn't match what the server side is using. -- Mark Lord Real-Time Remedies Inc. mlord@pobox.com ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 20:48 ` Mark Lord @ 2014-04-03 21:28 ` J. Bruce Fields 2014-04-03 21:32 ` Mark Lord 0 siblings, 1 reply; 19+ messages in thread From: J. Bruce Fields @ 2014-04-03 21:28 UTC (permalink / raw) To: Mark Lord; +Cc: Albert Fluegel, linux-nfs, linux-kernel On Thu, Apr 03, 2014 at 04:48:11PM -0400, Mark Lord wrote: > On 14-04-03 03:30 PM, J. Bruce Fields wrote: > > On Thu, Apr 03, 2014 at 01:51:06PM -0400, Mark Lord wrote: > >> On 14-04-03 01:16 PM, J. Bruce Fields wrote: > >>> On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: > >>>> This commit from linux-3.14 breaks our NFS-root clients here: > >>>> > >>>> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 > >>>> > >>>> > >>>> - *p++ = htonl((u32) stat->mode); > >>>> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); > >>>> > >>>> > >>>> Reverting the one-liner above (on the server) fixes it for us, > >>>> as does reverting back to linux-3.13.8 on the server. > >>>> > >>>> The NFS-root clients are on PowerPC (big-endian) architecture, > >>>> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. > >>>> > >>>> ACL is completely disabled on server and client, > >>>> and we're using NFSv2/v3. No support for v4. > >>>> > >>>> I instrumented the function to see what other bits were being cleared > >>>> by the (stat->mode & S_IALLUGO) masking. The results are attached. > >>> > >>> Hm, it sounds like a bug in the client if it's depending on those high > >>> bits. > >> > >> But only for mounting / starting up from the nfsroot, it seems. > >> I wonder if there's an unusual code path for that in there? > >> The regular stuff looks mostly fine: > >> > >> p = xdr_decode_ftype3(p, &fmode); > >> fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; > > > > Hm, but that's in nfs3xdr.c; in nfs2xdr.c we have just > > > > fattr->mode = be32_to_cpup(p+); > > > > and NFSv2 is the default for nfsroot. Do you have some reason to > > believe you're not using NFSv2? > > Oh, the client here was using NFS2, absolutely. > I just don't know my way around the code very well yet. :) > > But that mask in nfs3xdr.c (client) doesn't match what the server side is using. Not sure there's anything to see there. Looking at include/uapi/linux/stat.h and include/linux/stat.h, if I'm doing this right... S_ISFMT is 0170000 S_IALLUGO is 0007777 So they're 16-bit complements. And we're storing the result in a short? --b. ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 21:28 ` J. Bruce Fields @ 2014-04-03 21:32 ` Mark Lord 0 siblings, 0 replies; 19+ messages in thread From: Mark Lord @ 2014-04-03 21:32 UTC (permalink / raw) To: J. Bruce Fields; +Cc: Albert Fluegel, linux-nfs, linux-kernel On 14-04-03 05:28 PM, J. Bruce Fields wrote: > On Thu, Apr 03, 2014 at 04:48:11PM -0400, Mark Lord wrote: >> On 14-04-03 03:30 PM, J. Bruce Fields wrote: >>> On Thu, Apr 03, 2014 at 01:51:06PM -0400, Mark Lord wrote: >>>> On 14-04-03 01:16 PM, J. Bruce Fields wrote: >>>>> On Thu, Apr 03, 2014 at 12:33:55PM -0400, Mark Lord wrote: >>>>>> This commit from linux-3.14 breaks our NFS-root clients here: >>>>>> >>>>>> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e14b46b91fee8a049b0940333ce13a820beaaa5 >>>>>> >>>>>> >>>>>> - *p++ = htonl((u32) stat->mode); >>>>>> + *p++ = htonl((u32) (stat->mode & S_IALLUGO)); >>>>>> >>>>>> >>>>>> Reverting the one-liner above (on the server) fixes it for us, >>>>>> as does reverting back to linux-3.13.8 on the server. >>>>>> >>>>>> The NFS-root clients are on PowerPC (big-endian) architecture, >>>>>> running linux-3.12.16. The NFS server is on an Intel PC running linux-3.14. >>>>>> >>>>>> ACL is completely disabled on server and client, >>>>>> and we're using NFSv2/v3. No support for v4. >>>>>> >>>>>> I instrumented the function to see what other bits were being cleared >>>>>> by the (stat->mode & S_IALLUGO) masking. The results are attached. >>>>> >>>>> Hm, it sounds like a bug in the client if it's depending on those high >>>>> bits. >>>> >>>> But only for mounting / starting up from the nfsroot, it seems. >>>> I wonder if there's an unusual code path for that in there? >>>> The regular stuff looks mostly fine: >>>> >>>> p = xdr_decode_ftype3(p, &fmode); >>>> fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode; >>> >>> Hm, but that's in nfs3xdr.c; in nfs2xdr.c we have just >>> >>> fattr->mode = be32_to_cpup(p+); >>> >>> and NFSv2 is the default for nfsroot. Do you have some reason to >>> believe you're not using NFSv2? >> >> Oh, the client here was using NFS2, absolutely. >> I just don't know my way around the code very well yet. :) >> >> But that mask in nfs3xdr.c (client) doesn't match what the server side is using. > > Not sure there's anything to see there. > > Looking at include/uapi/linux/stat.h and include/linux/stat.h, if I'm > doing this right... > > S_ISFMT is 0170000 > S_IALLUGO is 0007777 > > So they're 16-bit complements. And we're storing the result in a short? Oh, is it a short? I was just going by the be32_to_cpup() macro (not a short). But if the target field is, then okay for now, until someone expands it. Cheers -- Mark Lord Real-Time Remedies Inc. mlord@pobox.com ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 17:51 ` Mark Lord 2014-04-03 18:55 ` Jeff Layton 2014-04-03 19:30 ` J. Bruce Fields @ 2014-04-03 20:15 ` J. Bruce Fields 2014-04-03 20:51 ` Mark Lord 2 siblings, 1 reply; 19+ messages in thread From: J. Bruce Fields @ 2014-04-03 20:15 UTC (permalink / raw) To: Mark Lord; +Cc: J. Bruce Fields, Albert Fluegel, linux-nfs, linux-kernel On Thu, Apr 03, 2014 at 01:51:06PM -0400, Mark Lord wrote: > On 14-04-03 01:16 PM, J. Bruce Fields wrote: > > The original behavior was in practice harmless and changing it broke > > something, so I think we should definitely just revert this patch. > > Yup. Who? I'll submit this soon. --b. Author: J. Bruce Fields <bfields@redhat.com> Date: Thu Apr 3 15:10:35 2014 -0400 nfsd: revert v2 half of "nfsd: don't return high mode bits" This reverts the part of commit 6e14b46b91fee8a049b0940333ce13a820beaaa5 that changes NFSv2 behavior. Mark Lord found that it broke nfs-root for Linux clients, because it broke NFSv2. In fact, from RFC 1094: "Notice that the file type is specified both in the mode bits and in the file type. This is really a bug in the protocol and will be fixed in future versions." So NFSv2 clients really are expected to depend on the high bits of the mode. Cc: stable@kernel.org Reported-by: Mark Lord <mlord@pobox.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com> diff --git a/fs/nfsd/nfsxdr.c b/fs/nfsd/nfsxdr.c index b17d932..9c769a4 100644 --- a/fs/nfsd/nfsxdr.c +++ b/fs/nfsd/nfsxdr.c @@ -152,7 +152,7 @@ encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, type = (stat->mode & S_IFMT); *p++ = htonl(nfs_ftypes[type >> 12]); - *p++ = htonl((u32) (stat->mode & S_IALLUGO)); + *p++ = htonl((u32) stat->mode); *p++ = htonl((u32) stat->nlink); *p++ = htonl((u32) from_kuid(&init_user_ns, stat->uid)); *p++ = htonl((u32) from_kgid(&init_user_ns, stat->gid)); ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: linux-3.14 nfsd regression 2014-04-03 20:15 ` J. Bruce Fields @ 2014-04-03 20:51 ` Mark Lord 0 siblings, 0 replies; 19+ messages in thread From: Mark Lord @ 2014-04-03 20:51 UTC (permalink / raw) To: J. Bruce Fields; +Cc: J. Bruce Fields, Albert Fluegel, linux-nfs, linux-kernel On 14-04-03 04:15 PM, J. Bruce Fields wrote: > On Thu, Apr 03, 2014 at 01:51:06PM -0400, Mark Lord wrote: >> On 14-04-03 01:16 PM, J. Bruce Fields wrote: >>> The original behavior was in practice harmless and changing it broke >>> something, so I think we should definitely just revert this patch. >> >> Yup. Who? > > I'll submit this soon. .. Thanks, Bruce! -- Mark Lord Real-Time Remedies Inc. mlord@pobox.com ^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2014-05-01 19:59 UTC | newest] Thread overview: 19+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-04-03 16:33 linux-3.14 nfsd regression Mark Lord 2014-04-03 16:44 ` Mark Lord 2014-04-03 16:53 ` Mark Lord 2014-04-03 17:16 ` J. Bruce Fields 2014-04-03 17:51 ` Mark Lord 2014-04-03 18:55 ` Jeff Layton 2014-04-03 20:16 ` J. Bruce Fields 2014-04-03 23:21 ` Jeff Layton 2014-04-04 13:58 ` J. Bruce Fields 2014-04-04 14:07 ` Jeff Layton 2014-05-01 11:50 ` Mark Lord 2014-05-01 19:59 ` J. Bruce Fields 2014-04-03 19:30 ` J. Bruce Fields 2014-04-03 20:11 ` J. Bruce Fields 2014-04-03 20:48 ` Mark Lord 2014-04-03 21:28 ` J. Bruce Fields 2014-04-03 21:32 ` Mark Lord 2014-04-03 20:15 ` J. Bruce Fields 2014-04-03 20:51 ` Mark Lord
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).