handle_table.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright 2018 Advanced Micro Devices, Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. */
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include <errno.h>
  26. #include <unistd.h>
  27. #include "handle_table.h"
  28. #include "util_math.h"
  29. drm_private int handle_table_insert(struct handle_table *table, uint32_t key,
  30. void *value)
  31. {
  32. if (key >= table->max_key) {
  33. uint32_t alignment = sysconf(_SC_PAGESIZE) / sizeof(void*);
  34. size_t max_key;
  35. void **values;
  36. if (key >= (1u << 28))
  37. return -EINVAL;
  38. max_key = ALIGN((size_t)key + 1, alignment);
  39. values = realloc(table->values, max_key * sizeof(void *));
  40. if (!values)
  41. return -ENOMEM;
  42. memset(values + table->max_key, 0, (max_key - table->max_key) *
  43. sizeof(void *));
  44. table->max_key = max_key;
  45. table->values = values;
  46. }
  47. table->values[key] = value;
  48. return 0;
  49. }
  50. drm_private void handle_table_remove(struct handle_table *table, uint32_t key)
  51. {
  52. if (key < table->max_key)
  53. table->values[key] = NULL;
  54. }
  55. drm_private void *handle_table_lookup(struct handle_table *table, uint32_t key)
  56. {
  57. if (key < table->max_key)
  58. return table->values[key];
  59. else
  60. return NULL;
  61. }
  62. drm_private void handle_table_fini(struct handle_table *table)
  63. {
  64. free(table->values);
  65. table->max_key = 0;
  66. table->values = NULL;
  67. }