|
@@ -47,9 +47,12 @@ struct map {
|
|
|
refcount_t refcnt;
|
|
|
};
|
|
|
|
|
|
+#define KMAP_NAME_LEN 256
|
|
|
+
|
|
|
struct kmap {
|
|
|
struct ref_reloc_sym *ref_reloc_sym;
|
|
|
struct map_groups *kmaps;
|
|
|
+ char name[KMAP_NAME_LEN];
|
|
|
};
|
|
|
|
|
|
struct maps {
|
|
@@ -76,6 +79,7 @@ static inline struct map_groups *map_groups__get(struct map_groups *mg)
|
|
|
|
|
|
void map_groups__put(struct map_groups *mg);
|
|
|
|
|
|
+struct kmap *__map__kmap(struct map *map);
|
|
|
struct kmap *map__kmap(struct map *map);
|
|
|
struct map_groups *map__kmaps(struct map *map);
|
|
|
|
|
@@ -232,10 +236,11 @@ int map_groups__fixup_overlappings(struct map_groups *mg, struct map *map,
|
|
|
struct map *map_groups__find_by_name(struct map_groups *mg, const char *name);
|
|
|
|
|
|
bool __map__is_kernel(const struct map *map);
|
|
|
+bool __map__is_extra_kernel_map(const struct map *map);
|
|
|
|
|
|
static inline bool __map__is_kmodule(const struct map *map)
|
|
|
{
|
|
|
- return !__map__is_kernel(map);
|
|
|
+ return !__map__is_kernel(map) && !__map__is_extra_kernel_map(map);
|
|
|
}
|
|
|
|
|
|
bool map__has_symbols(const struct map *map);
|