X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=attribute.c;h=f31da53a22c94ec15fd4a6b0f8d2bad439d1e1e3;hb=e469622d99718d49158d5da649eb02180269b4c8;hp=5bb14ed43d813b8dc01498c29541e8410d4262b4;hpb=fe282244d61b83eb1f285259dd1d55992a96288f;p=paraslash.git diff --git a/attribute.c b/attribute.c index 5bb14ed4..f31da53a 100644 --- a/attribute.c +++ b/attribute.c @@ -476,6 +476,58 @@ err: return ret; } +static int att_logical_or(struct osl_row *row, void *data) +{ + uint64_t *att_mask = data; + struct osl_object bitnum_obj; + int ret = osl_get_object(attribute_table, row, ATTCOL_BITNUM, &bitnum_obj); + + if (ret < 0) + return ret; + *att_mask |= 1 << *(unsigned char *)bitnum_obj.data; + return 0; +} + +/** + * Compute the attribute bit mask and check each afs info bitmap. + * + * \param fd Needed for the para buffer. + * \param query Unused. + * + * This iterates over all attributes in the attribute table and computes the + * logical or of 1 << b where b is the bit number of the attribute. The + * resulting bit mask is passed to aft_check_attributes() which performs the + * actual check. + * + * \return Standard. + * + * \sa \ref aft_check_attributes(). + */ +int attribute_check_callback(int fd, __a_unused const struct osl_object *query) +{ + int ret; + uint64_t att_mask = 0; /* bits corresponding to a attributes */ + struct para_buffer pb = { + .max_size = shm_get_shmmax(), + .private_data = &(struct afs_max_size_handler_data) { + .fd = fd, + .band = SBD_OUTPUT + }, + .max_size_handler = afs_max_size_handler, + }; + + ret = osl_rbtree_loop(attribute_table, ATTCOL_BITNUM, &att_mask, + att_logical_or); + if (ret < 0) { + PARA_ERROR_LOG("attribute table loop failed: %s\n", + para_strerror(-ret)); + return ret; + } + ret = aft_check_attributes(att_mask, &pb); + flush_and_free_pb(&pb); + return ret; +} + /** * Close the attribute table. *