public static boolean canAllRead(FsPermission p) {
   FsAction otherAction = p.getOtherAction();
   switch (otherAction) {
     case ALL:
     case READ:
     case READ_EXECUTE:
     case READ_WRITE:
       return true;
     default:
       return false;
   }
 }