Hi, It appears that there is a off-by-one bug in map_groups__find_ams(). The upper-bound check in the test below should be >= because end = start + len; The end address is outside the range.
Please confirm. int map_groups__find_ams(struct addr_map_symbol *ams, symbol_filter_t filter) { if (ams->addr < ams->map->start || ams->addr > ams->map->end) { -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/