2 * tracing_map - lock-free map for tracing
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * Copyright (C) 2015 Tom Zanussi <tom.zanussi@linux.intel.com>
16 * tracing_map implementation inspired by lock-free map algorithms
17 * originated by Dr. Cliff Click:
19 * http://www.azulsystems.com/blog/cliff/2007-03-26-non-blocking-hashtable
20 * http://www.azulsystems.com/events/javaone_2007/2007_LockFreeHash.pdf
23 #include <linux/vmalloc.h>
24 #include <linux/jhash.h>
25 #include <linux/slab.h>
26 #include <linux/sort.h>
28 #include "tracing_map.h"
32 * NOTE: For a detailed description of the data structures used by
33 * these functions (such as tracing_map_elt) please see the overview
34 * of tracing_map data structures at the beginning of tracing_map.h.
38 * tracing_map_update_sum - Add a value to a tracing_map_elt's sum field
39 * @elt: The tracing_map_elt
40 * @i: The index of the given sum associated with the tracing_map_elt
41 * @n: The value to add to the sum
43 * Add n to sum i associated with the specified tracing_map_elt
44 * instance. The index i is the index returned by the call to
45 * tracing_map_add_sum_field() when the tracing map was set up.
47 void tracing_map_update_sum(struct tracing_map_elt
*elt
, unsigned int i
, u64 n
)
49 atomic64_add(n
, &elt
->fields
[i
].sum
);
53 * tracing_map_read_sum - Return the value of a tracing_map_elt's sum field
54 * @elt: The tracing_map_elt
55 * @i: The index of the given sum associated with the tracing_map_elt
57 * Retrieve the value of the sum i associated with the specified
58 * tracing_map_elt instance. The index i is the index returned by the
59 * call to tracing_map_add_sum_field() when the tracing map was set
62 * Return: The sum associated with field i for elt.
64 u64
tracing_map_read_sum(struct tracing_map_elt
*elt
, unsigned int i
)
66 return (u64
)atomic64_read(&elt
->fields
[i
].sum
);
69 int tracing_map_cmp_string(void *val_a
, void *val_b
)
77 int tracing_map_cmp_none(void *val_a
, void *val_b
)
82 static int tracing_map_cmp_atomic64(void *val_a
, void *val_b
)
84 u64 a
= atomic64_read((atomic64_t
*)val_a
);
85 u64 b
= atomic64_read((atomic64_t
*)val_b
);
87 return (a
> b
) ? 1 : ((a
< b
) ? -1 : 0);
90 #define DEFINE_TRACING_MAP_CMP_FN(type) \
91 static int tracing_map_cmp_##type(void *val_a, void *val_b) \
93 type a = *(type *)val_a; \
94 type b = *(type *)val_b; \
96 return (a > b) ? 1 : ((a < b) ? -1 : 0); \
99 DEFINE_TRACING_MAP_CMP_FN(s64
);
100 DEFINE_TRACING_MAP_CMP_FN(u64
);
101 DEFINE_TRACING_MAP_CMP_FN(s32
);
102 DEFINE_TRACING_MAP_CMP_FN(u32
);
103 DEFINE_TRACING_MAP_CMP_FN(s16
);
104 DEFINE_TRACING_MAP_CMP_FN(u16
);
105 DEFINE_TRACING_MAP_CMP_FN(s8
);
106 DEFINE_TRACING_MAP_CMP_FN(u8
);
108 tracing_map_cmp_fn_t
tracing_map_cmp_num(int field_size
,
111 tracing_map_cmp_fn_t fn
= tracing_map_cmp_none
;
113 switch (field_size
) {
116 fn
= tracing_map_cmp_s64
;
118 fn
= tracing_map_cmp_u64
;
122 fn
= tracing_map_cmp_s32
;
124 fn
= tracing_map_cmp_u32
;
128 fn
= tracing_map_cmp_s16
;
130 fn
= tracing_map_cmp_u16
;
134 fn
= tracing_map_cmp_s8
;
136 fn
= tracing_map_cmp_u8
;
143 static int tracing_map_add_field(struct tracing_map
*map
,
144 tracing_map_cmp_fn_t cmp_fn
)
148 if (map
->n_fields
< TRACING_MAP_FIELDS_MAX
) {
150 map
->fields
[map
->n_fields
++].cmp_fn
= cmp_fn
;
157 * tracing_map_add_sum_field - Add a field describing a tracing_map sum
158 * @map: The tracing_map
160 * Add a sum field to the key and return the index identifying it in
161 * the map and associated tracing_map_elts. This is the index used
162 * for instance to update a sum for a particular tracing_map_elt using
163 * tracing_map_update_sum() or reading it via tracing_map_read_sum().
165 * Return: The index identifying the field in the map and associated
166 * tracing_map_elts, or -EINVAL on error.
168 int tracing_map_add_sum_field(struct tracing_map
*map
)
170 return tracing_map_add_field(map
, tracing_map_cmp_atomic64
);
174 * tracing_map_add_key_field - Add a field describing a tracing_map key
175 * @map: The tracing_map
176 * @offset: The offset within the key
177 * @cmp_fn: The comparison function that will be used to sort on the key
179 * Let the map know there is a key and that if it's used as a sort key
182 * A key can be a subset of a compound key; for that purpose, the
183 * offset param is used to describe where within the the compound key
184 * the key referenced by this key field resides.
186 * Return: The index identifying the field in the map and associated
187 * tracing_map_elts, or -EINVAL on error.
189 int tracing_map_add_key_field(struct tracing_map
*map
,
191 tracing_map_cmp_fn_t cmp_fn
)
194 int idx
= tracing_map_add_field(map
, cmp_fn
);
199 map
->fields
[idx
].offset
= offset
;
201 map
->key_idx
[map
->n_keys
++] = idx
;
206 void tracing_map_array_clear(struct tracing_map_array
*a
)
213 for (i
= 0; i
< a
->n_pages
; i
++)
214 memset(a
->pages
[i
], 0, PAGE_SIZE
);
217 void tracing_map_array_free(struct tracing_map_array
*a
)
227 for (i
= 0; i
< a
->n_pages
; i
++) {
230 free_page((unsigned long)a
->pages
[i
]);
239 struct tracing_map_array
*tracing_map_array_alloc(unsigned int n_elts
,
240 unsigned int entry_size
)
242 struct tracing_map_array
*a
;
245 a
= kzalloc(sizeof(*a
), GFP_KERNEL
);
249 a
->entry_size_shift
= fls(roundup_pow_of_two(entry_size
) - 1);
250 a
->entries_per_page
= PAGE_SIZE
/ (1 << a
->entry_size_shift
);
251 a
->n_pages
= n_elts
/ a
->entries_per_page
;
254 a
->entry_shift
= fls(a
->entries_per_page
) - 1;
255 a
->entry_mask
= (1 << a
->entry_shift
) - 1;
257 a
->pages
= kcalloc(a
->n_pages
, sizeof(void *), GFP_KERNEL
);
261 for (i
= 0; i
< a
->n_pages
; i
++) {
262 a
->pages
[i
] = (void *)get_zeroed_page(GFP_KERNEL
);
269 tracing_map_array_free(a
);
275 static void tracing_map_elt_clear(struct tracing_map_elt
*elt
)
279 for (i
= 0; i
< elt
->map
->n_fields
; i
++)
280 if (elt
->fields
[i
].cmp_fn
== tracing_map_cmp_atomic64
)
281 atomic64_set(&elt
->fields
[i
].sum
, 0);
283 if (elt
->map
->ops
&& elt
->map
->ops
->elt_clear
)
284 elt
->map
->ops
->elt_clear(elt
);
287 static void tracing_map_elt_init_fields(struct tracing_map_elt
*elt
)
291 tracing_map_elt_clear(elt
);
293 for (i
= 0; i
< elt
->map
->n_fields
; i
++) {
294 elt
->fields
[i
].cmp_fn
= elt
->map
->fields
[i
].cmp_fn
;
296 if (elt
->fields
[i
].cmp_fn
!= tracing_map_cmp_atomic64
)
297 elt
->fields
[i
].offset
= elt
->map
->fields
[i
].offset
;
301 static void tracing_map_elt_free(struct tracing_map_elt
*elt
)
306 if (elt
->map
->ops
&& elt
->map
->ops
->elt_free
)
307 elt
->map
->ops
->elt_free(elt
);
313 static struct tracing_map_elt
*tracing_map_elt_alloc(struct tracing_map
*map
)
315 struct tracing_map_elt
*elt
;
318 elt
= kzalloc(sizeof(*elt
), GFP_KERNEL
);
320 return ERR_PTR(-ENOMEM
);
324 elt
->key
= kzalloc(map
->key_size
, GFP_KERNEL
);
330 elt
->fields
= kcalloc(map
->n_fields
, sizeof(*elt
->fields
), GFP_KERNEL
);
336 tracing_map_elt_init_fields(elt
);
338 if (map
->ops
&& map
->ops
->elt_alloc
) {
339 err
= map
->ops
->elt_alloc(elt
);
345 tracing_map_elt_free(elt
);
350 static struct tracing_map_elt
*get_free_elt(struct tracing_map
*map
)
352 struct tracing_map_elt
*elt
= NULL
;
355 idx
= atomic_inc_return(&map
->next_elt
);
356 if (idx
< map
->max_elts
) {
357 elt
= *(TRACING_MAP_ELT(map
->elts
, idx
));
358 if (map
->ops
&& map
->ops
->elt_init
)
359 map
->ops
->elt_init(elt
);
365 static void tracing_map_free_elts(struct tracing_map
*map
)
372 for (i
= 0; i
< map
->max_elts
; i
++) {
373 tracing_map_elt_free(*(TRACING_MAP_ELT(map
->elts
, i
)));
374 *(TRACING_MAP_ELT(map
->elts
, i
)) = NULL
;
377 tracing_map_array_free(map
->elts
);
381 static int tracing_map_alloc_elts(struct tracing_map
*map
)
385 map
->elts
= tracing_map_array_alloc(map
->max_elts
,
386 sizeof(struct tracing_map_elt
*));
390 for (i
= 0; i
< map
->max_elts
; i
++) {
391 *(TRACING_MAP_ELT(map
->elts
, i
)) = tracing_map_elt_alloc(map
);
392 if (IS_ERR(*(TRACING_MAP_ELT(map
->elts
, i
)))) {
393 *(TRACING_MAP_ELT(map
->elts
, i
)) = NULL
;
394 tracing_map_free_elts(map
);
403 static inline bool keys_match(void *key
, void *test_key
, unsigned key_size
)
407 if (memcmp(key
, test_key
, key_size
))
413 static inline struct tracing_map_elt
*
414 __tracing_map_insert(struct tracing_map
*map
, void *key
, bool lookup_only
)
416 u32 idx
, key_hash
, test_key
;
417 struct tracing_map_entry
*entry
;
419 key_hash
= jhash(key
, map
->key_size
, 0);
422 idx
= key_hash
>> (32 - (map
->map_bits
+ 1));
425 idx
&= (map
->map_size
- 1);
426 entry
= TRACING_MAP_ENTRY(map
->map
, idx
);
427 test_key
= entry
->key
;
429 if (test_key
&& test_key
== key_hash
&& entry
->val
&&
430 keys_match(key
, entry
->val
->key
, map
->key_size
)) {
431 atomic64_inc(&map
->hits
);
439 if (!cmpxchg(&entry
->key
, 0, key_hash
)) {
440 struct tracing_map_elt
*elt
;
442 elt
= get_free_elt(map
);
444 atomic64_inc(&map
->drops
);
449 memcpy(elt
->key
, key
, map
->key_size
);
451 atomic64_inc(&map
->hits
);
464 * tracing_map_insert - Insert key and/or retrieve val from a tracing_map
465 * @map: The tracing_map to insert into
466 * @key: The key to insert
468 * Inserts a key into a tracing_map and creates and returns a new
469 * tracing_map_elt for it, or if the key has already been inserted by
470 * a previous call, returns the tracing_map_elt already associated
471 * with it. When the map was created, the number of elements to be
472 * allocated for the map was specified (internally maintained as
473 * 'max_elts' in struct tracing_map), and that number of
474 * tracing_map_elts was created by tracing_map_init(). This is the
475 * pre-allocated pool of tracing_map_elts that tracing_map_insert()
476 * will allocate from when adding new keys. Once that pool is
477 * exhausted, tracing_map_insert() is useless and will return NULL to
478 * signal that state. There are two user-visible tracing_map
479 * variables, 'hits' and 'drops', which are updated by this function.
480 * Every time an element is either successfully inserted or retrieved,
481 * the 'hits' value is incrememented. Every time an element insertion
482 * fails, the 'drops' value is incremented.
484 * This is a lock-free tracing map insertion function implementing a
485 * modified form of Cliff Click's basic insertion algorithm. It
486 * requires the table size be a power of two. To prevent any
487 * possibility of an infinite loop we always make the internal table
488 * size double the size of the requested table size (max_elts * 2).
489 * Likewise, we never reuse a slot or resize or delete elements - when
490 * we've reached max_elts entries, we simply return NULL once we've
491 * run out of entries. Readers can at any point in time traverse the
492 * tracing map and safely access the key/val pairs.
494 * Return: the tracing_map_elt pointer val associated with the key.
495 * If this was a newly inserted key, the val will be a newly allocated
496 * and associated tracing_map_elt pointer val. If the key wasn't
497 * found and the pool of tracing_map_elts has been exhausted, NULL is
498 * returned and no further insertions will succeed.
500 struct tracing_map_elt
*tracing_map_insert(struct tracing_map
*map
, void *key
)
502 return __tracing_map_insert(map
, key
, false);
506 * tracing_map_lookup - Retrieve val from a tracing_map
507 * @map: The tracing_map to perform the lookup on
508 * @key: The key to look up
510 * Looks up key in tracing_map and if found returns the matching
511 * tracing_map_elt. This is a lock-free lookup; see
512 * tracing_map_insert() for details on tracing_map and how it works.
513 * Every time an element is retrieved, the 'hits' value is
514 * incrememented. There is one user-visible tracing_map variable,
515 * 'hits', which is updated by this function. Every time an element
516 * is successfully retrieved, the 'hits' value is incrememented. The
517 * 'drops' value is never updated by this function.
519 * Return: the tracing_map_elt pointer val associated with the key.
520 * If the key wasn't found, NULL is returned.
522 struct tracing_map_elt
*tracing_map_lookup(struct tracing_map
*map
, void *key
)
524 return __tracing_map_insert(map
, key
, true);
528 * tracing_map_destroy - Destroy a tracing_map
529 * @map: The tracing_map to destroy
531 * Frees a tracing_map along with its associated array of
534 * Callers should make sure there are no readers or writers actively
535 * reading or inserting into the map before calling this.
537 void tracing_map_destroy(struct tracing_map
*map
)
542 tracing_map_free_elts(map
);
544 tracing_map_array_free(map
->map
);
549 * tracing_map_clear - Clear a tracing_map
550 * @map: The tracing_map to clear
552 * Resets the tracing map to a cleared or initial state. The
553 * tracing_map_elts are all cleared, and the array of struct
554 * tracing_map_entry is reset to an initialized state.
556 * Callers should make sure there are no writers actively inserting
557 * into the map before calling this.
559 void tracing_map_clear(struct tracing_map
*map
)
563 atomic_set(&map
->next_elt
, -1);
564 atomic64_set(&map
->hits
, 0);
565 atomic64_set(&map
->drops
, 0);
567 tracing_map_array_clear(map
->map
);
569 for (i
= 0; i
< map
->max_elts
; i
++)
570 tracing_map_elt_clear(*(TRACING_MAP_ELT(map
->elts
, i
)));
573 static void set_sort_key(struct tracing_map
*map
,
574 struct tracing_map_sort_key
*sort_key
)
576 map
->sort_key
= *sort_key
;
580 * tracing_map_create - Create a lock-free map and element pool
581 * @map_bits: The size of the map (2 ** map_bits)
582 * @key_size: The size of the key for the map in bytes
583 * @ops: Optional client-defined tracing_map_ops instance
584 * @private_data: Client data associated with the map
586 * Creates and sets up a map to contain 2 ** map_bits number of
587 * elements (internally maintained as 'max_elts' in struct
588 * tracing_map). Before using, map fields should be added to the map
589 * with tracing_map_add_sum_field() and tracing_map_add_key_field().
590 * tracing_map_init() should then be called to allocate the array of
591 * tracing_map_elts, in order to avoid allocating anything in the map
592 * insertion path. The user-specified map size reflects the maximum
593 * number of elements that can be contained in the table requested by
594 * the user - internally we double that in order to keep the table
595 * sparse and keep collisions manageable.
597 * A tracing_map is a special-purpose map designed to aggregate or
598 * 'sum' one or more values associated with a specific object of type
599 * tracing_map_elt, which is attached by the map to a given key.
601 * tracing_map_create() sets up the map itself, and provides
602 * operations for inserting tracing_map_elts, but doesn't allocate the
603 * tracing_map_elts themselves, or provide a means for describing the
604 * keys or sums associated with the tracing_map_elts. All
605 * tracing_map_elts for a given map have the same set of sums and
606 * keys, which are defined by the client using the functions
607 * tracing_map_add_key_field() and tracing_map_add_sum_field(). Once
608 * the fields are defined, the pool of elements allocated for the map
609 * can be created, which occurs when the client code calls
610 * tracing_map_init().
612 * When tracing_map_init() returns, tracing_map_elt elements can be
613 * inserted into the map using tracing_map_insert(). When called,
614 * tracing_map_insert() grabs a free tracing_map_elt from the pool, or
615 * finds an existing match in the map and in either case returns it.
616 * The client can then use tracing_map_update_sum() and
617 * tracing_map_read_sum() to update or read a given sum field for the
620 * The client can at any point retrieve and traverse the current set
621 * of inserted tracing_map_elts in a tracing_map, via
622 * tracing_map_sort_entries(). Sorting can be done on any field,
625 * See tracing_map.h for a description of tracing_map_ops.
627 * Return: the tracing_map pointer if successful, ERR_PTR if not.
629 struct tracing_map
*tracing_map_create(unsigned int map_bits
,
630 unsigned int key_size
,
631 const struct tracing_map_ops
*ops
,
634 struct tracing_map
*map
;
637 if (map_bits
< TRACING_MAP_BITS_MIN
||
638 map_bits
> TRACING_MAP_BITS_MAX
)
639 return ERR_PTR(-EINVAL
);
641 map
= kzalloc(sizeof(*map
), GFP_KERNEL
);
643 return ERR_PTR(-ENOMEM
);
645 map
->map_bits
= map_bits
;
646 map
->max_elts
= (1 << map_bits
);
647 atomic_set(&map
->next_elt
, -1);
649 map
->map_size
= (1 << (map_bits
+ 1));
652 map
->private_data
= private_data
;
654 map
->map
= tracing_map_array_alloc(map
->map_size
,
655 sizeof(struct tracing_map_entry
));
659 map
->key_size
= key_size
;
660 for (i
= 0; i
< TRACING_MAP_KEYS_MAX
; i
++)
661 map
->key_idx
[i
] = -1;
665 tracing_map_destroy(map
);
666 map
= ERR_PTR(-ENOMEM
);
672 * tracing_map_init - Allocate and clear a map's tracing_map_elts
673 * @map: The tracing_map to initialize
675 * Allocates a clears a pool of tracing_map_elts equal to the
676 * user-specified size of 2 ** map_bits (internally maintained as
677 * 'max_elts' in struct tracing_map). Before using, the map fields
678 * should be added to the map with tracing_map_add_sum_field() and
679 * tracing_map_add_key_field(). tracing_map_init() should then be
680 * called to allocate the array of tracing_map_elts, in order to avoid
681 * allocating anything in the map insertion path. The user-specified
682 * map size reflects the max number of elements requested by the user
683 * - internally we double that in order to keep the table sparse and
684 * keep collisions manageable.
686 * See tracing_map.h for a description of tracing_map_ops.
688 * Return: the tracing_map pointer if successful, ERR_PTR if not.
690 int tracing_map_init(struct tracing_map
*map
)
694 if (map
->n_fields
< 2)
695 return -EINVAL
; /* need at least 1 key and 1 val */
697 err
= tracing_map_alloc_elts(map
);
701 tracing_map_clear(map
);
706 static int cmp_entries_dup(const struct tracing_map_sort_entry
**a
,
707 const struct tracing_map_sort_entry
**b
)
711 if (memcmp((*a
)->key
, (*b
)->key
, (*a
)->elt
->map
->key_size
))
717 static int cmp_entries_sum(const struct tracing_map_sort_entry
**a
,
718 const struct tracing_map_sort_entry
**b
)
720 const struct tracing_map_elt
*elt_a
, *elt_b
;
721 struct tracing_map_sort_key
*sort_key
;
722 struct tracing_map_field
*field
;
723 tracing_map_cmp_fn_t cmp_fn
;
730 sort_key
= &elt_a
->map
->sort_key
;
732 field
= &elt_a
->fields
[sort_key
->field_idx
];
733 cmp_fn
= field
->cmp_fn
;
735 val_a
= &elt_a
->fields
[sort_key
->field_idx
].sum
;
736 val_b
= &elt_b
->fields
[sort_key
->field_idx
].sum
;
738 ret
= cmp_fn(val_a
, val_b
);
739 if (sort_key
->descending
)
745 static int cmp_entries_key(const struct tracing_map_sort_entry
**a
,
746 const struct tracing_map_sort_entry
**b
)
748 const struct tracing_map_elt
*elt_a
, *elt_b
;
749 struct tracing_map_sort_key
*sort_key
;
750 struct tracing_map_field
*field
;
751 tracing_map_cmp_fn_t cmp_fn
;
758 sort_key
= &elt_a
->map
->sort_key
;
760 field
= &elt_a
->fields
[sort_key
->field_idx
];
762 cmp_fn
= field
->cmp_fn
;
764 val_a
= elt_a
->key
+ field
->offset
;
765 val_b
= elt_b
->key
+ field
->offset
;
767 ret
= cmp_fn(val_a
, val_b
);
768 if (sort_key
->descending
)
774 static void destroy_sort_entry(struct tracing_map_sort_entry
*entry
)
779 if (entry
->elt_copied
)
780 tracing_map_elt_free(entry
->elt
);
786 * tracing_map_destroy_sort_entries - Destroy an array of sort entries
787 * @entries: The entries to destroy
788 * @n_entries: The number of entries in the array
790 * Destroy the elements returned by a tracing_map_sort_entries() call.
792 void tracing_map_destroy_sort_entries(struct tracing_map_sort_entry
**entries
,
793 unsigned int n_entries
)
797 for (i
= 0; i
< n_entries
; i
++)
798 destroy_sort_entry(entries
[i
]);
803 static struct tracing_map_sort_entry
*
804 create_sort_entry(void *key
, struct tracing_map_elt
*elt
)
806 struct tracing_map_sort_entry
*sort_entry
;
808 sort_entry
= kzalloc(sizeof(*sort_entry
), GFP_KERNEL
);
812 sort_entry
->key
= key
;
813 sort_entry
->elt
= elt
;
818 static struct tracing_map_elt
*copy_elt(struct tracing_map_elt
*elt
)
820 struct tracing_map_elt
*dup_elt
;
823 dup_elt
= tracing_map_elt_alloc(elt
->map
);
827 if (elt
->map
->ops
&& elt
->map
->ops
->elt_copy
)
828 elt
->map
->ops
->elt_copy(dup_elt
, elt
);
830 dup_elt
->private_data
= elt
->private_data
;
831 memcpy(dup_elt
->key
, elt
->key
, elt
->map
->key_size
);
833 for (i
= 0; i
< elt
->map
->n_fields
; i
++) {
834 atomic64_set(&dup_elt
->fields
[i
].sum
,
835 atomic64_read(&elt
->fields
[i
].sum
));
836 dup_elt
->fields
[i
].cmp_fn
= elt
->fields
[i
].cmp_fn
;
842 static int merge_dup(struct tracing_map_sort_entry
**sort_entries
,
843 unsigned int target
, unsigned int dup
)
845 struct tracing_map_elt
*target_elt
, *elt
;
846 bool first_dup
= (target
- dup
) == 1;
850 elt
= sort_entries
[target
]->elt
;
851 target_elt
= copy_elt(elt
);
854 sort_entries
[target
]->elt
= target_elt
;
855 sort_entries
[target
]->elt_copied
= true;
857 target_elt
= sort_entries
[target
]->elt
;
859 elt
= sort_entries
[dup
]->elt
;
861 for (i
= 0; i
< elt
->map
->n_fields
; i
++)
862 atomic64_add(atomic64_read(&elt
->fields
[i
].sum
),
863 &target_elt
->fields
[i
].sum
);
865 sort_entries
[dup
]->dup
= true;
870 static int merge_dups(struct tracing_map_sort_entry
**sort_entries
,
871 int n_entries
, unsigned int key_size
)
873 unsigned int dups
= 0, total_dups
= 0;
880 sort(sort_entries
, n_entries
, sizeof(struct tracing_map_sort_entry
*),
881 (int (*)(const void *, const void *))cmp_entries_dup
, NULL
);
883 key
= sort_entries
[0]->key
;
884 for (i
= 1; i
< n_entries
; i
++) {
885 if (!memcmp(sort_entries
[i
]->key
, key
, key_size
)) {
886 dups
++; total_dups
++;
887 err
= merge_dup(sort_entries
, i
- dups
, i
);
892 key
= sort_entries
[i
]->key
;
899 for (i
= 0, j
= 0; i
< n_entries
; i
++) {
900 if (!sort_entries
[i
]->dup
) {
901 sort_entries
[j
] = sort_entries
[i
];
903 sort_entries
[i
] = NULL
;
905 destroy_sort_entry(sort_entries
[i
]);
906 sort_entries
[i
] = NULL
;
913 static bool is_key(struct tracing_map
*map
, unsigned int field_idx
)
917 for (i
= 0; i
< map
->n_keys
; i
++)
918 if (map
->key_idx
[i
] == field_idx
)
923 static void sort_secondary(struct tracing_map
*map
,
924 const struct tracing_map_sort_entry
**entries
,
925 unsigned int n_entries
,
926 struct tracing_map_sort_key
*primary_key
,
927 struct tracing_map_sort_key
*secondary_key
)
929 int (*primary_fn
)(const struct tracing_map_sort_entry
**,
930 const struct tracing_map_sort_entry
**);
931 int (*secondary_fn
)(const struct tracing_map_sort_entry
**,
932 const struct tracing_map_sort_entry
**);
933 unsigned i
, start
= 0, n_sub
= 1;
935 if (is_key(map
, primary_key
->field_idx
))
936 primary_fn
= cmp_entries_key
;
938 primary_fn
= cmp_entries_sum
;
940 if (is_key(map
, secondary_key
->field_idx
))
941 secondary_fn
= cmp_entries_key
;
943 secondary_fn
= cmp_entries_sum
;
945 for (i
= 0; i
< n_entries
- 1; i
++) {
946 const struct tracing_map_sort_entry
**a
= &entries
[i
];
947 const struct tracing_map_sort_entry
**b
= &entries
[i
+ 1];
949 if (primary_fn(a
, b
) == 0) {
951 if (i
< n_entries
- 2)
961 set_sort_key(map
, secondary_key
);
962 sort(&entries
[start
], n_sub
,
963 sizeof(struct tracing_map_sort_entry
*),
964 (int (*)(const void *, const void *))secondary_fn
, NULL
);
965 set_sort_key(map
, primary_key
);
973 * tracing_map_sort_entries - Sort the current set of tracing_map_elts in a map
974 * @map: The tracing_map
975 * @sort_key: The sort key to use for sorting
976 * @sort_entries: outval: pointer to allocated and sorted array of entries
978 * tracing_map_sort_entries() sorts the current set of entries in the
979 * map and returns the list of tracing_map_sort_entries containing
980 * them to the client in the sort_entries param. The client can
981 * access the struct tracing_map_elt element of interest directly as
982 * the 'elt' field of a returned struct tracing_map_sort_entry object.
984 * The sort_key has only two fields: idx and descending. 'idx' refers
985 * to the index of the field added via tracing_map_add_sum_field() or
986 * tracing_map_add_key_field() when the tracing_map was initialized.
987 * 'descending' is a flag that if set reverses the sort order, which
988 * by default is ascending.
990 * The client should not hold on to the returned array but should use
991 * it and call tracing_map_destroy_sort_entries() when done.
993 * Return: the number of sort_entries in the struct tracing_map_sort_entry
994 * array, negative on error
996 int tracing_map_sort_entries(struct tracing_map
*map
,
997 struct tracing_map_sort_key
*sort_keys
,
998 unsigned int n_sort_keys
,
999 struct tracing_map_sort_entry
***sort_entries
)
1001 int (*cmp_entries_fn
)(const struct tracing_map_sort_entry
**,
1002 const struct tracing_map_sort_entry
**);
1003 struct tracing_map_sort_entry
*sort_entry
, **entries
;
1004 int i
, n_entries
, ret
;
1006 entries
= vmalloc(map
->max_elts
* sizeof(sort_entry
));
1010 for (i
= 0, n_entries
= 0; i
< map
->map_size
; i
++) {
1011 struct tracing_map_entry
*entry
;
1013 entry
= TRACING_MAP_ENTRY(map
->map
, i
);
1015 if (!entry
->key
|| !entry
->val
)
1018 entries
[n_entries
] = create_sort_entry(entry
->val
->key
,
1020 if (!entries
[n_entries
++]) {
1026 if (n_entries
== 0) {
1031 if (n_entries
== 1) {
1032 *sort_entries
= entries
;
1036 ret
= merge_dups(entries
, n_entries
, map
->key_size
);
1041 if (is_key(map
, sort_keys
[0].field_idx
))
1042 cmp_entries_fn
= cmp_entries_key
;
1044 cmp_entries_fn
= cmp_entries_sum
;
1046 set_sort_key(map
, &sort_keys
[0]);
1048 sort(entries
, n_entries
, sizeof(struct tracing_map_sort_entry
*),
1049 (int (*)(const void *, const void *))cmp_entries_fn
, NULL
);
1051 if (n_sort_keys
> 1)
1053 (const struct tracing_map_sort_entry
**)entries
,
1058 *sort_entries
= entries
;
1062 tracing_map_destroy_sort_entries(entries
, n_entries
);