vmci_handle_array.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * VMware VMCI Driver
  3. *
  4. * Copyright (C) 2012 VMware, Inc. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the
  8. * Free Software Foundation version 2 and no later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  13. * for more details.
  14. */
  15. #ifndef _VMCI_HANDLE_ARRAY_H_
  16. #define _VMCI_HANDLE_ARRAY_H_
  17. #include <linux/vmw_vmci_defs.h>
  18. #include <linux/limits.h>
  19. #include <linux/types.h>
  20. struct vmci_handle_arr {
  21. u32 capacity;
  22. u32 max_capacity;
  23. u32 size;
  24. u32 pad;
  25. struct vmci_handle entries[];
  26. };
  27. #define VMCI_HANDLE_ARRAY_HEADER_SIZE \
  28. offsetof(struct vmci_handle_arr, entries)
  29. /* Select a default capacity that results in a 64 byte sized array */
  30. #define VMCI_HANDLE_ARRAY_DEFAULT_CAPACITY 6
  31. /* Make sure that the max array size can be expressed by a u32 */
  32. #define VMCI_HANDLE_ARRAY_MAX_CAPACITY \
  33. ((U32_MAX - VMCI_HANDLE_ARRAY_HEADER_SIZE - 1) / \
  34. sizeof(struct vmci_handle))
  35. struct vmci_handle_arr *vmci_handle_arr_create(u32 capacity, u32 max_capacity);
  36. void vmci_handle_arr_destroy(struct vmci_handle_arr *array);
  37. int vmci_handle_arr_append_entry(struct vmci_handle_arr **array_ptr,
  38. struct vmci_handle handle);
  39. struct vmci_handle vmci_handle_arr_remove_entry(struct vmci_handle_arr *array,
  40. struct vmci_handle
  41. entry_handle);
  42. struct vmci_handle vmci_handle_arr_remove_tail(struct vmci_handle_arr *array);
  43. struct vmci_handle
  44. vmci_handle_arr_get_entry(const struct vmci_handle_arr *array, u32 index);
  45. bool vmci_handle_arr_has_entry(const struct vmci_handle_arr *array,
  46. struct vmci_handle entry_handle);
  47. struct vmci_handle *vmci_handle_arr_get_handles(struct vmci_handle_arr *array);
  48. static inline u32 vmci_handle_arr_get_size(
  49. const struct vmci_handle_arr *array)
  50. {
  51. return array->size;
  52. }
  53. #endif /* _VMCI_HANDLE_ARRAY_H_ */