hey, luckily the last bug was already fixed...unluckily i just found another one. this time using the latest 1.4.0tla842. using the same setup as in my previous emails, but this time using these commands: (clean everything) start r1 r2 r3 r4 sudo rsync -av --delete-during /etc/a* mount/r1 check #1 (everything ok) stop r3 sudo rm -R mount/r1/* check #2 (everything ok) start r3 check #3 (errors) The results of the checks are given below. The "check" script is attached so you now what the numbers mean. Please correct me if this is due to a bug in my volumes layout, but I'd expect it to work without any problems. r3 is mirrored on r4 which is always alive. So when r3 comes back up, r4 should have all information which r3 needs to recover without any errors. The final "check" can be repeated a lot of times, the error always stays the same. // check #1: 1205 data 341 data/r1 341 data/r2 260 data/r3 260 data/r4 2398 mount 601 mount/r1 601 mount/r2 597 mount/r3 597 mount/r4 710 710 705 705 OK: filesystem clean // // check #2: 276 data 4 data/r1 4 data/r2 260 data/r3 4 data/r4 32 mount 8 mount/r1 8 mount/r2 4 mount/r3 8 mount/r4 1 1 1 1 OK: filesystem clean // check #3: (Zugriff auf ... nicht möglich = Access to ... not possible) 276 data 4 data/r1 4 data/r2 260 data/r3 4 data/r4 du: Zugriff auf „mount/r1/apache2“ nicht möglich: Structure needs cleaning du: Zugriff auf „mount/r1/acpi“ nicht möglich: Structure needs cleaning du: Zugriff auf „mount/r1/apport“ nicht möglich: Structure needs cleaning du: Zugriff auf „mount/r1/apparmor“ nicht möglich: Structure needs cleaning du: Zugriff auf „mount/r1/apparmor.d“ nicht möglich: Structure needs cleaning du: Zugriff auf „mount/r1/apt“ nicht möglich: Structure needs cleaning du: Zugriff auf „mount/r1/alternatives“ nicht möglich: Structure needs cleaning du: Zugriff auf „mount/r1/apm“ nicht möglich: Structure needs cleaning du: Zugriff auf „mount/r1/avahi“ nicht möglich: Structure needs cleaning 989 mount 8 mount/r1 388 mount/r2 202 mount/r3 388 mount/r4 ls: Zugriff auf mount/r1/apache2 nicht möglich: Structure needs cleaning ls: Zugriff auf mount/r1/acpi nicht möglich: Structure needs cleaning ls: Zugriff auf mount/r1/apport nicht möglich: Structure needs cleaning ls: Zugriff auf mount/r1/apparmor nicht möglich: Structure needs cleaning ls: Zugriff auf mount/r1/apparmor.d nicht möglich: Structure needs cleaning ls: Zugriff auf mount/r1/apt nicht möglich: Structure needs cleaning ls: Zugriff auf mount/r1/alternatives nicht möglich: Structure needs cleaning ls: Zugriff auf mount/r1/apm nicht möglich: Structure needs cleaning ls: Zugriff auf mount/r1/avahi nicht möglich: Structure needs cleaning // Corin
#!/bin/bash set -e sudo du --apparent-size --max-depth 1 data | sort -k 2 sudo du --apparent-size --max-depth 1 mount | sort -k 2 sudo ls -lR mount >/dev/null sudo find mount/r1 | wc -l sudo find mount/r2 | wc -l sudo find mount/r3 | wc -l sudo find mount/r4 | wc -l echo "OK: filesystem clean"
Version : glusterfs 1.4.0tla842 built on Jan 9 2009 20:47:07 TLA Revision : glusterfs--mainline--3.0--patch-842 Starting Time: 2009-01-09 21:41:43 Command line : ../bin/sbin/glusterfs --volfile=r1.vol --pid-file=r1.pid --log-file=r1.log --volume-name=client /glusterfs/test/mount/r1 given volfile +----- 1: # volume specification file for server r1 2: 3: # ---- 4: 5: volume storage-posix 6: type storage/posix 7: option directory /usr/local/glusterfs/test/data/r1 8: end-volume 9: 10: volume storage-locks 11: type features/locks 12: subvolumes storage-posix 13: end-volume 14: 15: volume r1 16: type performance/io-threads 17: option thread-count 8 18: subvolumes storage-locks 19: end-volume 20: 21: # ---- 22: 23: volume server 24: type protocol/server 25: option transport-type tcp 26: option bind-address 127.0.0.1 27: option listen-port 6997 28: option auth.addr.r1.allow * 29: subvolumes r1 30: end-volume 31: 32: # ---- 33: 34: 35: volume r2 36: type protocol/client 37: option transport-type tcp 38: option remote-host 127.0.0.1 39: option remote-port 6998 40: option transport-timeout 5 41: option remote-subvolume r2 42: end-volume 43: 44: volume r3 45: type protocol/client 46: option transport-type tcp 47: option remote-host 127.0.0.1 48: option remote-port 6999 49: option transport-timeout 5 50: option remote-subvolume r3 51: end-volume 52: 53: volume r4 54: type protocol/client 55: option transport-type tcp 56: option remote-host 127.0.0.1 57: option remote-port 7000 58: option transport-timeout 5 59: option remote-subvolume r4 60: end-volume 61: 62: 63: # ---- 64: 65: volume afr_r1_r2 66: type cluster/afr 67: option read-subvolume r1 # prefer local volume 68: subvolumes r1 r2 69: end-volume 70: 71: volume afr_r3_r4 72: type cluster/afr 73: subvolumes r3 r4 74: end-volume 75: 76: 77: # ---- 78: 79: volume client-dht 80: type cluster/dht 81: subvolumes afr_r1_r2 afr_r3_r4 82: end-volume 83: 84: volume client 85: type performance/io-cache 86: option cache-size 512MB 87: option page-size 16KB 88: option cache-timeout 3 89: subvolumes client-dht 90: end-volume +----- 2009-01-09 21:41:43 W [xlator.c:382:validate_xlator_volume_options] server: option 'listen-port' is deprecated, preferred is 'transport.socket.listen-port', continuing with correction 2009-01-09 21:41:43 W [xlator.c:382:validate_xlator_volume_options] server: option 'bind-address' is deprecated, preferred is 'transport.socket.bind-address', continuing with correction 2009-01-09 21:41:43 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of / on afr_r3_r4 returned error (Transport endpoint is not connected) 2009-01-09 21:41:43 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /. holes=1 overlaps=0 2009-01-09 21:41:43 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on / 2009-01-09 21:41:43 E [socket.c:708:socket_connect_finish] r3: connection failed (Connection refused) 2009-01-09 21:41:43 E [socket.c:708:socket_connect_finish] r4: connection failed (Connection refused) 2009-01-09 21:41:45 W [dht-common.c:604:dht_lookup] client-dht: incomplete layout failure for path=/ 2009-01-09 21:41:45 W [fuse-bridge.c:297:need_fresh_lookup] fuse-bridge: revalidate of / failed (Resource temporarily unavailable) 2009-01-09 21:42:22 E [socket.c:708:socket_connect_finish] r3: connection failed (Connection refused) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18090: LOOKUP() /apache2 => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18091: LOOKUP() /acpi => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18092: LOOKUP() /apport => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18093: LOOKUP() /apparmor => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18094: LOOKUP() /apparmor.d => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18095: LOOKUP() /apt => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /alternatives. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /alternatives 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18096: LOOKUP() /alternatives => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18097: LOOKUP() /apm => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18098: LOOKUP() /avahi => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18106: LOOKUP() /apache2 => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18107: LOOKUP() /acpi => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18108: LOOKUP() /apport => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18109: LOOKUP() /apparmor => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18110: LOOKUP() /apparmor.d => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18111: LOOKUP() /apt => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /alternatives. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /alternatives 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18112: LOOKUP() /alternatives => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18113: LOOKUP() /apm => -1 (Structure needs cleaning) 2009-01-09 21:42:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi. holes=1 overlaps=0 2009-01-09 21:42:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi 2009-01-09 21:42:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:42:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18114: LOOKUP() /avahi => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18122: LOOKUP() /apache2 => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18123: LOOKUP() /acpi => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18124: LOOKUP() /apport => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18125: LOOKUP() /apparmor => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18126: LOOKUP() /apparmor.d => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18127: LOOKUP() /apt => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /alternatives. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /alternatives 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18128: LOOKUP() /alternatives => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18129: LOOKUP() /apm => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18130: LOOKUP() /avahi => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18138: LOOKUP() /apache2 => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18139: LOOKUP() /acpi => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18140: LOOKUP() /apport => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18141: LOOKUP() /apparmor => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18142: LOOKUP() /apparmor.d => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18143: LOOKUP() /apt => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /alternatives. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /alternatives 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18144: LOOKUP() /alternatives => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18145: LOOKUP() /apm => -1 (Structure needs cleaning) 2009-01-09 21:54:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi. holes=1 overlaps=0 2009-01-09 21:54:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi 2009-01-09 21:54:44 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:44 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18146: LOOKUP() /avahi => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18154: LOOKUP() /apache2 => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18155: LOOKUP() /acpi => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18156: LOOKUP() /apport => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18157: LOOKUP() /apparmor => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18158: LOOKUP() /apparmor.d => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18159: LOOKUP() /apt => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /alternatives. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /alternatives 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18160: LOOKUP() /alternatives => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18161: LOOKUP() /apm => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18162: LOOKUP() /avahi => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18170: LOOKUP() /apache2 => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18171: LOOKUP() /acpi => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18172: LOOKUP() /apport => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18173: LOOKUP() /apparmor => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18174: LOOKUP() /apparmor.d => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18175: LOOKUP() /apt => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /alternatives. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /alternatives 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18176: LOOKUP() /alternatives => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18177: LOOKUP() /apm => -1 (Structure needs cleaning) 2009-01-09 21:54:45 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi. holes=1 overlaps=0 2009-01-09 21:54:45 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi 2009-01-09 21:54:45 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:45 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18178: LOOKUP() /avahi => -1 (Structure needs cleaning) 2009-01-09 21:54:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2. holes=1 overlaps=0 2009-01-09 21:54:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2 2009-01-09 21:54:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18186: LOOKUP() /apache2 => -1 (Structure needs cleaning) 2009-01-09 21:54:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi. holes=1 overlaps=0 2009-01-09 21:54:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi 2009-01-09 21:54:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18187: LOOKUP() /acpi => -1 (Structure needs cleaning) 2009-01-09 21:54:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport. holes=1 overlaps=0 2009-01-09 21:54:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport 2009-01-09 21:54:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18188: LOOKUP() /apport => -1 (Structure needs cleaning) 2009-01-09 21:54:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor. holes=1 overlaps=0 2009-01-09 21:54:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor 2009-01-09 21:54:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18189: LOOKUP() /apparmor => -1 (Structure needs cleaning) 2009-01-09 21:54:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d. holes=1 overlaps=0 2009-01-09 21:54:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d 2009-01-09 21:54:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18190: LOOKUP() /apparmor.d => -1 (Structure needs cleaning) 2009-01-09 21:54:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt. holes=1 overlaps=0 2009-01-09 21:54:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt 2009-01-09 21:54:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18191: LOOKUP() /apt => -1 (Structure needs cleaning) 2009-01-09 21:54:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /alternatives. holes=1 overlaps=0 2009-01-09 21:54:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /alternatives 2009-01-09 21:54:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18192: LOOKUP() /alternatives => -1 (Structure needs cleaning) 2009-01-09 21:54:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm. holes=1 overlaps=0 2009-01-09 21:54:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm 2009-01-09 21:54:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18193: LOOKUP() /apm => -1 (Structure needs cleaning) 2009-01-09 21:54:46 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi. holes=1 overlaps=0 2009-01-09 21:54:46 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi 2009-01-09 21:54:46 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:46 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18194: LOOKUP() /avahi => -1 (Structure needs cleaning) 2009-01-09 21:54:47 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2. holes=1 overlaps=0 2009-01-09 21:54:47 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2 2009-01-09 21:54:47 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:47 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18202: LOOKUP() /apache2 => -1 (Structure needs cleaning) 2009-01-09 21:54:47 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi. holes=1 overlaps=0 2009-01-09 21:54:47 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi 2009-01-09 21:54:47 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:47 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18203: LOOKUP() /acpi => -1 (Structure needs cleaning) 2009-01-09 21:54:47 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport. holes=1 overlaps=0 2009-01-09 21:54:47 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport 2009-01-09 21:54:47 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:47 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18204: LOOKUP() /apport => -1 (Structure needs cleaning) 2009-01-09 21:54:47 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor. holes=1 overlaps=0 2009-01-09 21:54:47 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor 2009-01-09 21:54:47 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:47 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18205: LOOKUP() /apparmor => -1 (Structure needs cleaning) 2009-01-09 21:54:47 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d. holes=1 overlaps=0 2009-01-09 21:54:47 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d 2009-01-09 21:54:47 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:47 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18206: LOOKUP() /apparmor.d => -1 (Structure needs cleaning) 2009-01-09 21:54:47 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt. holes=1 overlaps=0 2009-01-09 21:54:47 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt 2009-01-09 21:54:47 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:47 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18207: LOOKUP() /apt => -1 (Structure needs cleaning) 2009-01-09 21:54:47 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /alternatives. holes=1 overlaps=0 2009-01-09 21:54:47 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /alternatives 2009-01-09 21:54:47 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:47 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18208: LOOKUP() /alternatives => -1 (Structure needs cleaning) 2009-01-09 21:54:47 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm. holes=1 overlaps=0 2009-01-09 21:54:47 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm 2009-01-09 21:54:47 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:47 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18209: LOOKUP() /apm => -1 (Structure needs cleaning) 2009-01-09 21:54:47 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi. holes=1 overlaps=0 2009-01-09 21:54:47 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi 2009-01-09 21:54:47 E [dht-selfheal.c:422:dht_selfheal_directory] client-dht: the directory is not a virgin 2009-01-09 21:54:47 E [fuse-bridge.c:406:fuse_entry_cbk] glusterfs-fuse: 18210: LOOKUP() /avahi => -1 (Structure needs cleaning)
Version : glusterfs 1.4.0tla842 built on Jan 9 2009 20:47:07 TLA Revision : glusterfs--mainline--3.0--patch-842 Starting Time: 2009-01-09 21:41:43 Command line : ../bin/sbin/glusterfs --volfile=r2.vol --pid-file=r2.pid --log-file=r2.log --volume-name=client /glusterfs/test/mount/r2 given volfile +----- 1: # volume specification file for server r2 2: 3: # ---- 4: 5: volume storage-posix 6: type storage/posix 7: option directory /usr/local/glusterfs/test/data/r2 8: end-volume 9: 10: volume storage-locks 11: type features/locks 12: subvolumes storage-posix 13: end-volume 14: 15: volume r2 16: type performance/io-threads 17: option thread-count 8 18: subvolumes storage-locks 19: end-volume 20: 21: # ---- 22: 23: volume server 24: type protocol/server 25: option transport-type tcp 26: option bind-address 127.0.0.1 27: option listen-port 6998 28: option auth.addr.r2.allow * 29: subvolumes r2 30: end-volume 31: 32: # ---- 33: 34: volume r1 35: type protocol/client 36: option transport-type tcp 37: option remote-host 127.0.0.1 38: option remote-port 6997 39: option transport-timeout 5 40: option remote-subvolume r1 41: end-volume 42: 43: 44: volume r3 45: type protocol/client 46: option transport-type tcp 47: option remote-host 127.0.0.1 48: option remote-port 6999 49: option transport-timeout 5 50: option remote-subvolume r3 51: end-volume 52: 53: volume r4 54: type protocol/client 55: option transport-type tcp 56: option remote-host 127.0.0.1 57: option remote-port 7000 58: option transport-timeout 5 59: option remote-subvolume r4 60: end-volume 61: 62: 63: # ---- 64: 65: volume afr_r1_r2 66: type cluster/afr 67: option read-subvolume r2 # prefer local volume 68: subvolumes r2 r1 69: end-volume 70: 71: volume afr_r3_r4 72: type cluster/afr 73: subvolumes r3 r4 74: end-volume 75: 76: 77: # ---- 78: 79: volume client-dht 80: type cluster/dht 81: subvolumes afr_r1_r2 afr_r3_r4 82: end-volume 83: 84: volume client 85: type performance/io-cache 86: option cache-size 512MB 87: option page-size 16KB 88: option cache-timeout 3 89: subvolumes client-dht 90: end-volume +----- 2009-01-09 21:41:43 W [xlator.c:382:validate_xlator_volume_options] server: option 'listen-port' is deprecated, preferred is 'transport.socket.listen-port', continuing with correction 2009-01-09 21:41:43 W [xlator.c:382:validate_xlator_volume_options] server: option 'bind-address' is deprecated, preferred is 'transport.socket.bind-address', continuing with correction 2009-01-09 21:41:43 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of / on afr_r3_r4 returned error (Transport endpoint is not connected) 2009-01-09 21:41:43 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /. holes=1 overlaps=0 2009-01-09 21:41:43 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on / 2009-01-09 21:41:43 E [socket.c:708:socket_connect_finish] r3: connection failed (Connection refused) 2009-01-09 21:41:43 E [socket.c:708:socket_connect_finish] r4: connection failed (Connection refused) 2009-01-09 21:41:45 W [dht-common.c:604:dht_lookup] client-dht: incomplete layout failure for path=/ 2009-01-09 21:41:45 W [fuse-bridge.c:297:need_fresh_lookup] fuse-bridge: revalidate of / failed (Resource temporarily unavailable) 2009-01-09 21:42:22 E [socket.c:708:socket_connect_finish] r3: connection failed (Connection refused) 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/conf.d/1name.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/conf.d/1name.conf from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/conf.d/1main.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/conf.d/1main.conf from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/conf.d/charset on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/conf.d/charset from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/php5.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/status.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/autoindex.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/dir.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/auth_basic.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/alias.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/alias.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/authz_default.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/mime.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-enabled/negotiation.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2schuelerprofile on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2schuelerprofile from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2my-ranking on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2my-ranking from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2streetwar on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2streetwar from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2wgzimmer on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2wgzimmer from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2forumcanarias on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2forumcanarias from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2risch-akademie on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2risch-akademie from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2netskin on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2netskin from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/1default on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/1default from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2corlatec on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2corlatec from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2questoria on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2questoria from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/sites/2praya on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/sites/2praya from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/battery.d/15-anacron.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/battery.d/15-anacron.sh from r3 to other sinks 2009-01-09 21:42:45 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/ac.d/85-anacron.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:45 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/ac.d/85-anacron.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/start.d/60-asus-wireless-led.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/start.d/60-asus-wireless-led.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/start.d/10-save-dmidecode.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/start.d/10-save-dmidecode.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/suspend.d/70-modules-unload.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/suspend.d/70-modules-unload.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/suspend.d/65-services-stop.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/suspend.d/65-services-stop.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/suspend.d/50-irda-stop.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/suspend.d/50-irda-stop.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/suspend.d/50-tosh-save-brightness.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/suspend.d/50-tosh-save-brightness.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/suspend.d/88-time.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/suspend.d/88-time.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/suspend.d/15-anacron.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/suspend.d/15-anacron.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/suspend.d/05-acpi-lock.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/suspend.d/05-acpi-lock.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/suspend.d/60-generate-modules-list.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/suspend.d/60-generate-modules-list.sh from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apport/blacklist.d/apport on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apport/blacklist.d/apport from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apm/event.d/ppp on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apm/event.d/ppp from r3 to other sinks 2009-01-09 21:42:46 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apm/event.d/20hdparm on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:46 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apm/event.d/20hdparm from r3 to other sinks
Version : glusterfs 1.4.0tla842 built on Jan 9 2009 20:47:07 TLA Revision : glusterfs--mainline--3.0--patch-842 Starting Time: 2009-01-09 21:42:37 Command line : ../bin/sbin/glusterfs --volfile=r3.vol --pid-file=r3.pid --log-file=r3.log --volume-name=client /glusterfs/test/mount/r3 given volfile +----- 1: # volume specification file for server r3 2: 3: # ---- 4: 5: volume storage-posix 6: type storage/posix 7: option directory /usr/local/glusterfs/test/data/r3 8: end-volume 9: 10: volume storage-locks 11: type features/locks 12: subvolumes storage-posix 13: end-volume 14: 15: volume r3 16: type performance/io-threads 17: option thread-count 8 18: subvolumes storage-locks 19: end-volume 20: 21: # ---- 22: 23: volume server 24: type protocol/server 25: option transport-type tcp 26: option bind-address 127.0.0.1 27: option listen-port 6999 28: option auth.addr.r3.allow * 29: subvolumes r3 30: end-volume 31: 32: # ---- 33: 34: volume r1 35: type protocol/client 36: option transport-type tcp 37: option remote-host 127.0.0.1 38: option remote-port 6997 39: option transport-timeout 5 40: option remote-subvolume r1 41: end-volume 42: 43: volume r2 44: type protocol/client 45: option transport-type tcp 46: option remote-host 127.0.0.1 47: option remote-port 6998 48: option transport-timeout 5 49: option remote-subvolume r2 50: end-volume 51: 52: 53: volume r4 54: type protocol/client 55: option transport-type tcp 56: option remote-host 127.0.0.1 57: option remote-port 7000 58: option transport-timeout 5 59: option remote-subvolume r4 60: end-volume 61: 62: 63: # ---- 64: 65: volume afr_r1_r2 66: type cluster/afr 67: subvolumes r1 r2 68: end-volume 69: 70: volume afr_r3_r4 71: type cluster/afr 72: option read-subvolume r3 # prefer local volume 73: subvolumes r3 r4 74: end-volume 75: 76: 77: # ---- 78: 79: volume client-dht 80: type cluster/dht 81: subvolumes afr_r1_r2 afr_r3_r4 82: end-volume 83: 84: volume client 85: type performance/io-cache 86: option cache-size 512MB 87: option page-size 16KB 88: option cache-timeout 3 89: subvolumes client-dht 90: end-volume +----- 2009-01-09 21:42:37 W [xlator.c:382:validate_xlator_volume_options] server: option 'listen-port' is deprecated, preferred is 'transport.socket.listen-port', continuing with correction 2009-01-09 21:42:37 W [xlator.c:382:validate_xlator_volume_options] server: option 'bind-address' is deprecated, preferred is 'transport.socket.bind-address', continuing with correction 2009-01-09 21:42:38 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of / on afr_r1_r2 returned error (Transport endpoint is not connected) 2009-01-09 21:42:38 W [afr-self-heal-entry.c:471:afr_sh_entry_expunge_rmdir] afr_r3_r4: removing directory /apache2 on r3 2009-01-09 21:42:38 E [afr-self-heal-entry.c:449:afr_sh_entry_expunge_remove_cbk] afr_r3_r4: removing /apache2 on r3 failed (Directory not empty) 2009-01-09 21:42:38 W [afr-self-heal-entry.c:471:afr_sh_entry_expunge_rmdir] afr_r3_r4: removing directory /acpi on r3 2009-01-09 21:42:38 E [afr-self-heal-entry.c:449:afr_sh_entry_expunge_remove_cbk] afr_r3_r4: removing /acpi on r3 failed (Directory not empty) 2009-01-09 21:42:39 W [afr-self-heal-entry.c:471:afr_sh_entry_expunge_rmdir] afr_r3_r4: removing directory /apport on r3 2009-01-09 21:42:39 E [afr-self-heal-entry.c:449:afr_sh_entry_expunge_remove_cbk] afr_r3_r4: removing /apport on r3 failed (Directory not empty) 2009-01-09 21:42:39 W [afr-self-heal-entry.c:471:afr_sh_entry_expunge_rmdir] afr_r3_r4: removing directory /apparmor on r3 2009-01-09 21:42:39 E [afr-self-heal-entry.c:449:afr_sh_entry_expunge_remove_cbk] afr_r3_r4: removing /apparmor on r3 failed (Directory not empty) 2009-01-09 21:42:39 W [afr-self-heal-entry.c:471:afr_sh_entry_expunge_rmdir] afr_r3_r4: removing directory /apparmor.d on r3 2009-01-09 21:42:39 E [afr-self-heal-entry.c:449:afr_sh_entry_expunge_remove_cbk] afr_r3_r4: removing /apparmor.d on r3 failed (Directory not empty) 2009-01-09 21:42:39 W [afr-self-heal-entry.c:471:afr_sh_entry_expunge_rmdir] afr_r3_r4: removing directory /apt on r3 2009-01-09 21:42:39 E [afr-self-heal-entry.c:449:afr_sh_entry_expunge_remove_cbk] afr_r3_r4: removing /apt on r3 failed (Directory not empty) 2009-01-09 21:42:39 W [afr-self-heal-entry.c:471:afr_sh_entry_expunge_rmdir] afr_r3_r4: removing directory /alternatives on r3 2009-01-09 21:42:39 E [afr-self-heal-entry.c:449:afr_sh_entry_expunge_remove_cbk] afr_r3_r4: removing /alternatives on r3 failed (Directory not empty) 2009-01-09 21:42:39 W [afr-self-heal-entry.c:471:afr_sh_entry_expunge_rmdir] afr_r3_r4: removing directory /apm on r3 2009-01-09 21:42:39 E [afr-self-heal-entry.c:449:afr_sh_entry_expunge_remove_cbk] afr_r3_r4: removing /apm on r3 failed (Directory not empty) 2009-01-09 21:42:39 W [afr-self-heal-entry.c:471:afr_sh_entry_expunge_rmdir] afr_r3_r4: removing directory /avahi on r3 2009-01-09 21:42:39 E [afr-self-heal-entry.c:449:afr_sh_entry_expunge_remove_cbk] afr_r3_r4: removing /avahi on r3 failed (Directory not empty) 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2 on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /apache2/htpasswd mode=0100644 dev=0x0 on r4 2009-01-09 21:42:39 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apache2/conf.d mode=040755 on r4 2009-01-09 21:42:39 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apache2/mods-available mode=040755 on r4 2009-01-09 21:42:39 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apache2/mods-enabled mode=040755 on r4 2009-01-09 21:42:39 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apache2/sites mode=040755 on r4 2009-01-09 21:42:39 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /apache2/ports.conf mode=0100644 dev=0x0 on r4 2009-01-09 21:42:39 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apache2 on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:39 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2. holes=1 overlaps=0 2009-01-09 21:42:39 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/htpasswd from r3 to other sinks 2009-01-09 21:42:39 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apache2/conf.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:39 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2/conf.d. holes=1 overlaps=0 2009-01-09 21:42:39 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2/conf.d 2009-01-09 21:42:39 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apache2/mods-available 2009-01-09 21:42:39 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/apache2/mods-available, checking on all the subvols to see if it is a directory 2009-01-09 21:42:39 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apache2/mods-available on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:39 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2/mods-available. holes=1 overlaps=0 2009-01-09 21:42:39 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2/mods-available 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/dbd.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/dbd.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/autoindex.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/autoindex.conf from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/negotiation.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/negotiation.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/imagemap.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/imagemap.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/proxy.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/proxy.conf from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/ident.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/ident.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/authz_user.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/authz_user.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/proxy_balancer.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/proxy_balancer.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/deflate.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/deflate.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/php5.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/php5.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/proxy_connect.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/proxy_connect.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/rewrite.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/rewrite.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/actions.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/actions.conf from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/authz_host.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/authz_host.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/cgi.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/cgi.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/charset_lite.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/charset_lite.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/mime.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/mime.conf from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/ldap.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/ldap.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/deflate.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/deflate.conf from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/env.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/env.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/authz_dbm.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:39 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/authz_dbm.load from r3 to other sinks 2009-01-09 21:42:39 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/actions.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/actions.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/info.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/info.conf from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/cache.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/cache.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/setenvif.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/setenvif.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/sick-hack-to-update-modules on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/sick-hack-to-update-modules from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/vhost_alias.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/vhost_alias.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/proxy.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/proxy.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/proxy_http.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/proxy_http.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/authn_default.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/authn_default.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/autoindex.conf.dpkg-dist on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/autoindex.conf.dpkg-dist from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/unique_id.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/unique_id.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/dump_io.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/dump_io.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/dav_fs.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/dav_fs.conf from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/headers.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/headers.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/authz_groupfile.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/authz_groupfile.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/authz_owner.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/authz_owner.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/dir.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/dir.load from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/status.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/status.conf from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/setenvif.conf on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/setenvif.conf from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apache2/mods-available/authn_file.load on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/mods-available/authn_file.load from r3 to other sinks 2009-01-09 21:42:40 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apache2/mods-enabled on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:40 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2/mods-enabled. holes=1 overlaps=0 2009-01-09 21:42:40 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2/mods-enabled 2009-01-09 21:42:40 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apache2/sites on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:40 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apache2/sites. holes=1 overlaps=0 2009-01-09 21:42:40 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apache2/sites 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apache2/ports.conf from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/asus-wireless.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/playbtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/sleepbtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/thinkpad-brightness-up.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/prevbtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /acpi/battery.d mode=040755 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/asus-brn-up.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/volupbtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/lid.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/mailbtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/lockbtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/always-mute.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/thinkpad-thinkpad.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/mutebtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /acpi/ac.d mode=040755 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/sleep.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/toshbright.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/sonybright.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /acpi/events mode=040755 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/resume.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/wireless.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /acpi/start.d mode=040755 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/videobtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/mediabtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /acpi/suspend.d mode=040755 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/hibernatebtn.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/thinkpad-thinklight.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/asus-brn-down.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /acpi/resume.d mode=040755 on r4 2009-01-09 21:42:40 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /acpi/hibernate.sh mode=0100755 dev=0x0 on r4 2009-01-09 21:42:40 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /acpi on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:40 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi. holes=1 overlaps=0 2009-01-09 21:42:40 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/asus-wireless.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/playbtn.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/sleepbtn.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/thinkpad-brightness-up.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/prevbtn.sh from r3 to other sinks 2009-01-09 21:42:40 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /acpi/battery.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:40 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi/battery.d. holes=1 overlaps=0 2009-01-09 21:42:40 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi/battery.d 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/asus-brn-up.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/volupbtn.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/lid.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/mailbtn.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/lockbtn.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/always-mute.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/thinkpad-thinkpad.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/mutebtn.sh from r3 to other sinks 2009-01-09 21:42:40 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /acpi/ac.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:40 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi/ac.d. holes=1 overlaps=0 2009-01-09 21:42:40 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi/ac.d 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/sleep.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/toshbright.sh from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/sonybright.sh from r3 to other sinks 2009-01-09 21:42:40 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/events 2009-01-09 21:42:40 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/acpi/events, checking on all the subvols to see if it is a directory 2009-01-09 21:42:40 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /acpi/events on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:40 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi/events. holes=1 overlaps=0 2009-01-09 21:42:40 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi/events 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/asus-media-eject on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:40 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/asus-media-eject from r3 to other sinks 2009-01-09 21:42:40 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/asus-volume-mute on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/asus-volume-mute from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/sony-volume-down on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/sony-volume-down from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/powerbtn on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/powerbtn from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/asus-volume-down on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/asus-volume-down from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/lenovo-touchpad on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/lenovo-touchpad from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/sleepbtn on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/sleepbtn from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/panasonic-brightness-down on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/panasonic-brightness-down from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/tosh-battery on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/tosh-battery from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/tosh-next on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/tosh-next from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/lidbtn on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/lidbtn from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/tosh-prev on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/tosh-prev from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/tosh-sleep on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/tosh-sleep from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/ibm-wireless on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/ibm-wireless from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/video_brightnessup on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/video_brightnessup from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/video_brightnessdown on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/video_brightnessdown from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/tosh-stop on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/tosh-stop from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/thinkpad-thinkpad on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/thinkpad-thinkpad from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/asus-video on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/asus-video from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/ibm-videobtn on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/ibm-videobtn from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/thinkpad-brightness-up on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/thinkpad-brightness-up from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/asus-volume-up on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/asus-volume-up from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/thinkpad-mute on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/thinkpad-mute from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/tosh-mail on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/tosh-mail from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/battery on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/battery from r3 to other sinks 2009-01-09 21:42:41 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/asus-a6u-touchpad on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:41 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/asus-a6u-touchpad from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/asus-internet on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/asus-internet from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/ibm-lockbtn on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/ibm-lockbtn from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/videobtn on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/videobtn from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/sony-brightness-down on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/sony-brightness-down from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/asus-lock on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/asus-lock from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/asus-brightness-down on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/asus-brightness-down from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/tosh-www on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/tosh-www from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/sony-hibernate on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/sony-hibernate from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/events/panasonic-volume-up on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/events/panasonic-volume-up from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/wireless.sh from r3 to other sinks 2009-01-09 21:42:42 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /acpi/start.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:42 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi/start.d. holes=1 overlaps=0 2009-01-09 21:42:42 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi/start.d 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/videobtn.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/mediabtn.sh from r3 to other sinks 2009-01-09 21:42:42 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /acpi/suspend.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:42 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi/suspend.d. holes=1 overlaps=0 2009-01-09 21:42:42 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi/suspend.d 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/hibernatebtn.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/thinkpad-thinklight.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/asus-brn-down.sh from r3 to other sinks 2009-01-09 21:42:42 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/resume.d 2009-01-09 21:42:42 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/acpi/resume.d, checking on all the subvols to see if it is a directory 2009-01-09 21:42:42 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /acpi/resume.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:42 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /acpi/resume.d. holes=1 overlaps=0 2009-01-09 21:42:42 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /acpi/resume.d 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/50-framebuffer-enable.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/50-framebuffer-enable.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/50-tosh-restore-brightness.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/50-tosh-restore-brightness.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/49-855-resolution-set.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/49-855-resolution-set.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/13-855-resolution-set.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/13-855-resolution-set.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/67-sound.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/67-sound.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/35-modules-load.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/35-modules-load.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/90-thinkpad-unstandby-led.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/90-thinkpad-unstandby-led.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/98-acpi-unlock.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/98-acpi-unlock.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/72-acpi-pain.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/72-acpi-pain.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/65-console.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/65-console.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/10-thinkpad-standby-led.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/10-thinkpad-standby-led.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/90-xscreensaver.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/90-xscreensaver.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /acpi/resume.d/55-screen.sh on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/resume.d/55-screen.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /acpi/hibernate.sh from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apport on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:42 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apport/blacklist.d mode=040755 on r4 2009-01-09 21:42:42 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /apport/crashdb.conf mode=0100644 dev=0x0 on r4 2009-01-09 21:42:42 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apport on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:42 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport. holes=1 overlaps=0 2009-01-09 21:42:42 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport 2009-01-09 21:42:42 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apport/blacklist.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:42 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apport/blacklist.d. holes=1 overlaps=0 2009-01-09 21:42:42 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apport/blacklist.d 2009-01-09 21:42:42 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apport/crashdb.conf from r3 to other sinks 2009-01-09 21:42:42 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /apparmor/logprof.conf mode=0100644 dev=0x0 on r4 2009-01-09 21:42:43 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /apparmor/subdomain.conf mode=0100644 dev=0x0 on r4 2009-01-09 21:42:43 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apparmor on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:43 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor. holes=1 overlaps=0 2009-01-09 21:42:43 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor/logprof.conf from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor/subdomain.conf from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apparmor.d/tunables mode=040755 on r4 2009-01-09 21:42:43 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apparmor.d/force-complain mode=040755 on r4 2009-01-09 21:42:43 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apparmor.d/disable mode=040755 on r4 2009-01-09 21:42:43 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /apparmor.d/usr.sbin.cupsd mode=0100644 dev=0x0 on r4 2009-01-09 21:42:43 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apparmor.d/abstractions mode=040755 on r4 2009-01-09 21:42:43 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /apparmor.d/usr.sbin.named mode=0100644 dev=0x0 on r4 2009-01-09 21:42:43 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apparmor.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:43 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d. holes=1 overlaps=0 2009-01-09 21:42:43 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d 2009-01-09 21:42:43 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/tunables 2009-01-09 21:42:43 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/apparmor.d/tunables, checking on all the subvols to see if it is a directory 2009-01-09 21:42:43 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apparmor.d/tunables on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:43 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d/tunables. holes=1 overlaps=0 2009-01-09 21:42:43 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d/tunables 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/tunables/home on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/tunables/home from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/tunables/global on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/tunables/global from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/tunables/proc on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/tunables/proc from r3 to other sinks 2009-01-09 21:42:43 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apparmor.d/force-complain on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:43 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d/force-complain. holes=1 overlaps=0 2009-01-09 21:42:43 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d/force-complain 2009-01-09 21:42:43 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/disable 2009-01-09 21:42:43 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/apparmor.d/disable, checking on all the subvols to see if it is a directory 2009-01-09 21:42:43 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apparmor.d/disable on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:43 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d/disable. holes=1 overlaps=0 2009-01-09 21:42:43 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d/disable 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/usr.sbin.cupsd from r3 to other sinks 2009-01-09 21:42:43 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/abstractions 2009-01-09 21:42:43 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/apparmor.d/abstractions, checking on all the subvols to see if it is a directory 2009-01-09 21:42:43 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apparmor.d/abstractions on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:43 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apparmor.d/abstractions. holes=1 overlaps=0 2009-01-09 21:42:43 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apparmor.d/abstractions 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/wutmp on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/wutmp from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/audio on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/audio from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/kerberosclient on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/kerberosclient from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/ruby on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/ruby from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/svn-repositories on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/svn-repositories from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/nvidia on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/nvidia from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/python on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/python from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/base on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/base from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/php5 on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/php5 from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/aspell on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/aspell from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/freedesktop.org on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/freedesktop.org from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/web-data on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/web-data from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/authentication on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/authentication from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/orbit2 on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/orbit2 from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/kde on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/kde from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/cups-client on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/cups-client from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/mysql on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/mysql from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/xad on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:43 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/xad from r3 to other sinks 2009-01-09 21:42:43 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/likewise on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/likewise from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/video on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/video from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/X on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/X from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/gnome on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/gnome from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apparmor.d/abstractions/user-write on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/abstractions/user-write from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apparmor.d/usr.sbin.named from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apt on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /apt/trustdb.gpg mode=0100600 dev=0x0 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apt/apt.conf.d mode=040755 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apt/sources.list.d mode=040755 on r4 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apt on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apt/trustdb.gpg from r3 to other sinks 2009-01-09 21:42:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/apt.conf.d 2009-01-09 21:42:44 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/apt/apt.conf.d, checking on all the subvols to see if it is a directory 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apt/apt.conf.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt/apt.conf.d. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt/apt.conf.d 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apt/apt.conf.d/00trustcdrom on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apt/apt.conf.d/00trustcdrom from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apt/apt.conf.d/15update-stamp on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apt/apt.conf.d/15update-stamp from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apt/apt.conf.d/10periodic on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apt/apt.conf.d/10periodic from r3 to other sinks 2009-01-09 21:42:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/sources.list.d 2009-01-09 21:42:44 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/apt/sources.list.d, checking on all the subvols to see if it is a directory 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apt/sources.list.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apt/sources.list.d. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apt/sources.list.d 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /alternatives on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/btreannounce -> /usr/bin/btreannounce.bittorrent on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/cc.1.gz -> /usr/share/man/man1/gcc.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jarsigner.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/jarsigner.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/idlj -> /usr/lib/jvm/java-1.5.0-sun/bin/idlj on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/pico -> /bin/nano on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/totem -> /usr/bin/totem-gstreamer on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/mactime.1.gz -> /usr/share/man/man1/mactime-sleuthkit.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/traceroute.sbin -> /usr/bin/traceroute.db on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/firefox-homepage -> /usr/share/ubuntu-artwork/home/firefox-index.html on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /alternatives/README mode=0100644 dev=0x0 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/view -> /usr/bin/mcview-debian on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/tnameserv.1.gz -> /usr/lib/jvm/java-1.5.0-sun/jre/man/man1/tnameserv.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/traceroute.8.gz -> /usr/share/man/man8/traceroute.db.8.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jsadebugd.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/jsadebugd.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/pack200.1.gz -> /usr/lib/jvm/java-1.5.0-sun/jre/man/man1/pack200.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jar.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/jar.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/xulrunner -> /usr/bin/xulrunner-1.9 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/xinput-zh_CN -> /etc/X11/xinit/xinput.d/scim-bridge on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/automake -> /usr/bin/automake-1.10 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/pack200 -> /usr/lib/jvm/java-1.5.0-sun/jre/bin/pack200 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/netcat.1.gz -> /usr/share/man/man1/nc_traditional.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/aclocal -> /usr/bin/aclocal-1.10 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ex.fr.ISO8859-1.1.gz -> /usr/share/man/fr.ISO8859-1/man1/vim.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/traceroute -> /usr/bin/traceroute.db on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/icat -> /usr/bin/icat-sleuthkit on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/tracert -> /usr/bin/tracert.db on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/keytool -> /usr/lib/jvm/java-1.5.0-sun/jre/bin/keytool on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/vncpasswd -> /usr/bin/tightvncpasswd on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/policytool -> /usr/lib/jvm/java-1.5.0-sun/jre/bin/policytool on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/infobrowser.1.gz -> /usr/share/man/man1/info.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ps2pdf -> /usr/bin/ps2pdf14 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rsh -> /usr/bin/ssh on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/pager -> /usr/bin/less on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rmic.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/rmic.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/gconftool.1.gz -> /usr/share/man/man1/gconftool-2.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/vncconnect.1.gz -> /usr/share/man/man1/tightvncconnect.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rlogin.1.gz -> /usr/share/man/man1/slogin.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/builtins.7.gz -> /usr/share/man/man7/bash-builtins.7.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/cc -> /usr/bin/gcc on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/extcheck.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/extcheck.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/x-www-browser -> /usr/bin/opera on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/yacc -> /usr/bin/bison.yacc on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jstack -> /usr/lib/jvm/java-1.5.0-sun/bin/jstack on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/cli.1.gz -> /usr/share/man/man1/mono.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/xvncviewer.1.gz -> /usr/share/man/man1/xtightvncviewer.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/global-assembly-cache-tool -> /usr/bin/gacutil on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/x-session-manager.1.gz -> /usr/share/man/man1/gnome-session.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ex.it.UTF-8.1.gz -> /usr/share/man/it.UTF-8/man1/vim.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/btmakemetafile -> /usr/bin/btmakemetafile.bittorrent on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/lft -> /usr/bin/lft.db on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/x-window-manager.1.gz -> /usr/share/man/man1/metacity.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rvim -> /usr/bin/vim.tiny on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/javah -> /usr/lib/jvm/java-1.5.0-sun/bin/javah on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/traceroute6 -> /usr/bin/traceroute6.iputils on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/de_DE.multi -> /usr/lib/aspell/de_DE-neu.multi on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ex.ru.1.gz -> /usr/share/man/ru/man1/vim.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/btcompletedirgui -> /usr/bin/btcompletedirgui.bittorrent on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/vncconnect -> /usr/bin/tightvncconnect on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jconsole -> /usr/lib/jvm/java-1.5.0-sun/bin/jconsole on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/appletviewer -> /usr/lib/jvm/java-1.5.0-sun/bin/appletviewer on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ex.fr.UTF-8.1.gz -> /usr/share/man/fr.UTF-8/man1/vim.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/iceape-flashplugin -> /var/lib/flashplugin-nonfree/npwrapper.libflashplayer.so on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/traceroute-nanog.8.gz -> /usr/share/man/man8/traceroute-nanog.db.8.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ssh-askpass.1.gz -> /usr/share/man/man1/gnome-ssh-askpass.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/www-browser -> /usr/bin/w3m on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/gnome-text-editor.1.gz -> /usr/share/man/man1/gedit.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ctags.1.gz -> /usr/share/man/man1/ctags-exuberant.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jps.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/jps.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/btdownloadgui -> /usr/bin/btdownloadgui.bittorrent on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/mt.1.gz -> /usr/share/man/man1/mt-gnu.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rmic -> /usr/lib/jvm/java-1.5.0-sun/bin/rmic on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/serialver -> /usr/lib/jvm/java-1.5.0-sun/bin/serialver on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ssh-askpass -> /usr/lib/openssh/gnome-ssh-askpass on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/x-window-manager -> /usr/bin/metacity on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/javah.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/javah.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/traceroute6.8.gz -> /usr/share/man/man8/traceroute6.iputils.8.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jdb -> /usr/lib/jvm/java-1.5.0-sun/bin/jdb on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jps -> /usr/lib/jvm/java-1.5.0-sun/bin/jps on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/orbd -> /usr/lib/jvm/java-1.5.0-sun/jre/bin/orbd on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jmap -> /usr/lib/jvm/java-1.5.0-sun/bin/jmap on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/editor.1.gz -> /usr/share/man/man1/nano.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/tnameserv -> /usr/lib/jvm/java-1.5.0-sun/jre/bin/tnameserv on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/vi.pl.UTF-8.1.gz -> /usr/share/man/pl.UTF-8/man1/vim.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/vi.it.UTF-8.1.gz -> /usr/share/man/it.UTF-8/man1/vim.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/mactime -> /usr/bin/mactime-sleuthkit on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/www-browser.1.gz -> /usr/share/man/man1/w3m.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/write -> /usr/bin/bsd-write on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/x-terminal-emulator.1.gz -> /usr/share/man/man1/gnome-terminal.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ex.it.1.gz -> /usr/share/man/it/man1/vim.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ex.it.ISO8859-1.1.gz -> /usr/share/man/it.ISO8859-1/man1/vim.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/icat.1.gz -> /usr/share/man/man1/icat-sleuthkit.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/unrar.1.gz -> /usr/share/man/man1/unrar-nonfree.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/nc.1.gz -> /usr/share/man/man1/nc_traditional.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/btrename.1.gz -> /usr/share/man/man1/btrename.bittorrent.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rename -> /usr/bin/prename on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/servertool.1.gz -> /usr/lib/jvm/java-1.5.0-sun/jre/man/man1/servertool.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/mozilla-flashplugin -> /var/lib/flashplugin-nonfree/npwrapper.libflashplayer.so on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/xvncviewer -> /usr/bin/xtightvncviewer on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rmt.8.gz -> /usr/share/man/man8/rmt-tar.8.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/btcompletedirgui.1.gz -> /usr/share/man/man1/btcompletedirgui.bittorrent.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/cli-gacutil.1.gz -> /usr/share/man/man1/gacutil.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/w.1.gz -> /usr/share/man/man1/w.procps.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/javac -> /usr/lib/jvm/java-1.5.0-sun/bin/javac on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/unpack200 -> /usr/lib/jvm/java-1.5.0-sun/jre/bin/unpack200 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/x-cursor-theme -> /usr/share/icons/DMZ-White/cursor.theme on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/btcompletedir.1.gz -> /usr/share/man/man1/btcompletedir.bittorrent.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/traceproto.8.gz -> /usr/share/man/man8/traceproto.db.8.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/btshowmetainfo -> /usr/bin/btshowmetainfo.bittorrent on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/gnome-video-thumbnailer -> /usr/bin/totem-gstreamer-video-thumbnailer on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rmid.1.gz -> /usr/lib/jvm/java-1.5.0-sun/jre/man/man1/rmid.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/mt -> /bin/mt-gnu on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ex.pl.UTF-8.1.gz -> /usr/share/man/pl.UTF-8/man1/vim.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/xulrunner-flashplugin -> /var/lib/flashplugin-nonfree/npwrapper.libflashplayer.so on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/serialver.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/serialver.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/totem-video-indexer -> /usr/bin/totem-gstreamer-video-indexer on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/ftp.1.gz -> /usr/share/man/man1/netkit-ftp.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/native2ascii -> /usr/lib/jvm/java-1.5.0-sun/bin/native2ascii on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/infobrowser -> /usr/bin/info on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rcp.1.gz -> /usr/share/man/man1/scp.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/javac.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/javac.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/phpize.1.gz -> /usr/share/man/man1/phpize5.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rmiregistry -> /usr/lib/jvm/java-1.5.0-sun/jre/bin/rmiregistry on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/etags.1.gz -> /usr/share/man/man1/ctags-exuberant.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/jdb.1.gz -> /usr/lib/jvm/java-1.5.0-sun/man/man1/jdb.1.gz on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/rmt -> /usr/sbin/rmt-tar on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1162:afr_sh_entry_impunge_symlink] afr_r3_r4: creating symlink /alternatives/bttrack.1.gz -> /usr/share/man/man1/bttrack.bittorrent.1.gz on r4 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /alternatives on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /alternatives. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /alternatives 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /alternatives/README from r3 to other sinks 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apm on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apm/event.d mode=040755 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apm/scripts.d mode=040755 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apm/suspend.d mode=040755 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /apm/resume.d mode=040755 on r4 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apm on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apm/event.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm/event.d. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm/event.d 2009-01-09 21:42:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/scripts.d 2009-01-09 21:42:44 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/apm/scripts.d, checking on all the subvols to see if it is a directory 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apm/scripts.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm/scripts.d. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm/scripts.d 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /apm/scripts.d/alsa on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /apm/scripts.d/alsa from r3 to other sinks 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apm/suspend.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm/suspend.d. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm/suspend.d 2009-01-09 21:42:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/resume.d 2009-01-09 21:42:44 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/apm/resume.d, checking on all the subvols to see if it is a directory 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /apm/resume.d on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /apm/resume.d. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /apm/resume.d 2009-01-09 21:42:44 W [afr-self-heal-common.c:871:sh_missing_entries_lookup_cbk] afr_r3_r4: path /avahi on subvolume r4 => -1 (No such file or directory) 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1103:afr_sh_entry_impunge_mknod] afr_r3_r4: creating file /avahi/avahi-autoipd.action mode=0100755 dev=0x0 on r4 2009-01-09 21:42:44 W [afr-self-heal-entry.c:1134:afr_sh_entry_impunge_mkdir] afr_r3_r4: creating directory /avahi/services mode=040755 on r4 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /avahi on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi 2009-01-09 21:42:44 W [afr-self-heal-data.c:615:afr_sh_data_open_cbk] afr_r3_r4: sourcing file /avahi/avahi-autoipd.action from r3 to other sinks 2009-01-09 21:42:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/avahi/services 2009-01-09 21:42:44 E [dht-common.c:630:dht_lookup] client-dht: no subvolume in layout for path=/avahi/services, checking on all the subvols to see if it is a directory 2009-01-09 21:42:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of /avahi/services on afr_r1_r2 returned error (No such file or directory) 2009-01-09 21:42:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /avahi/services. holes=1 overlaps=0 2009-01-09 21:42:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on /avahi/services 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/events 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/resume.d 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apache2/mods-available 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/scripts.d 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/resume.d 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/tunables 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/disable 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/abstractions 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/apt.conf.d 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/sources.list.d 2009-01-09 21:42:47 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/avahi/services 2009-01-09 21:54:43 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apache2/mods-available 2009-01-09 21:54:43 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/events 2009-01-09 21:54:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/resume.d 2009-01-09 21:54:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/tunables 2009-01-09 21:54:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/disable 2009-01-09 21:54:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/abstractions 2009-01-09 21:54:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/apt.conf.d 2009-01-09 21:54:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/sources.list.d 2009-01-09 21:54:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/scripts.d 2009-01-09 21:54:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/resume.d 2009-01-09 21:54:44 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/avahi/services 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apache2/mods-available 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/events 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/resume.d 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/tunables 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/disable 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/abstractions 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/apt.conf.d 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/sources.list.d 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/scripts.d 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/resume.d 2009-01-09 21:54:45 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/avahi/services 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apache2/mods-available 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/events 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/acpi/resume.d 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/tunables 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/disable 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apparmor.d/abstractions 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/apt.conf.d 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apt/sources.list.d 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/scripts.d 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/apm/resume.d 2009-01-09 21:54:46 E [dht-helper.c:225:dht_subvol_get_hashed] client-dht: could not find subvolume for path=/avahi/services
Version : glusterfs 1.4.0tla842 built on Jan 9 2009 20:47:07 TLA Revision : glusterfs--mainline--3.0--patch-842 Starting Time: 2009-01-09 21:41:44 Command line : ../bin/sbin/glusterfs --volfile=r4.vol --pid-file=r4.pid --log-file=r4.log --volume-name=client /glusterfs/test/mount/r4 given volfile +----- 1: # volume specification file for server r4 2: 3: # ---- 4: 5: volume storage-posix 6: type storage/posix 7: option directory /usr/local/glusterfs/test/data/r4 8: end-volume 9: 10: volume storage-locks 11: type features/locks 12: subvolumes storage-posix 13: end-volume 14: 15: volume r4 16: type performance/io-threads 17: option thread-count 8 18: subvolumes storage-locks 19: end-volume 20: 21: # ---- 22: 23: volume server 24: type protocol/server 25: option transport-type tcp 26: option bind-address 127.0.0.1 27: option listen-port 7000 28: option auth.addr.r4.allow * 29: subvolumes r4 30: end-volume 31: 32: # ---- 33: 34: volume r1 35: type protocol/client 36: option transport-type tcp 37: option remote-host 127.0.0.1 38: option remote-port 6997 39: option transport-timeout 5 40: option remote-subvolume r1 41: end-volume 42: 43: volume r2 44: type protocol/client 45: option transport-type tcp 46: option remote-host 127.0.0.1 47: option remote-port 6998 48: option transport-timeout 5 49: option remote-subvolume r2 50: end-volume 51: 52: volume r3 53: type protocol/client 54: option transport-type tcp 55: option remote-host 127.0.0.1 56: option remote-port 6999 57: option transport-timeout 5 58: option remote-subvolume r3 59: end-volume 60: 61: 62: 63: # ---- 64: 65: volume afr_r1_r2 66: type cluster/afr 67: subvolumes r1 r2 68: end-volume 69: 70: volume afr_r3_r4 71: type cluster/afr 72: option read-subvolume r4 # prefer local volume 73: subvolumes r4 r3 74: end-volume 75: 76: 77: # ---- 78: 79: volume client-dht 80: type cluster/dht 81: subvolumes afr_r1_r2 afr_r3_r4 82: end-volume 83: 84: volume client 85: type performance/io-cache 86: option cache-size 512MB 87: option page-size 16KB 88: option cache-timeout 3 89: subvolumes client-dht 90: end-volume +----- 2009-01-09 21:41:44 W [xlator.c:382:validate_xlator_volume_options] server: option 'listen-port' is deprecated, preferred is 'transport.socket.listen-port', continuing with correction 2009-01-09 21:41:44 W [xlator.c:382:validate_xlator_volume_options] server: option 'bind-address' is deprecated, preferred is 'transport.socket.bind-address', continuing with correction 2009-01-09 21:41:44 W [dht-common.c:105:dht_lookup_dir_cbk] client-dht: lookup of / on afr_r1_r2 returned error (Transport endpoint is not connected) 2009-01-09 21:41:44 E [dht-layout.c:460:dht_layout_normalize] client-dht: found anomalies in /. holes=1 overlaps=0 2009-01-09 21:41:44 W [dht-common.c:137:dht_lookup_dir_cbk] client-dht: fixing assignment on / 2009-01-09 21:42:23 E [socket.c:708:socket_connect_finish] r3: connection failed (Connection refused)