You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

iobpad.c 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  17. * 02110-1301, USA.
  18. */
  19. FILE_LICENCE ( GPL2_OR_LATER );
  20. /**
  21. * @file
  22. *
  23. * I/O buffer padding
  24. *
  25. */
  26. #include <string.h>
  27. #include <ipxe/iobuf.h>
  28. /**
  29. * Pad I/O buffer
  30. *
  31. * @v iobuf I/O buffer
  32. * @v min_len Minimum length
  33. *
  34. * This function pads and aligns I/O buffers, for devices that
  35. * aren't capable of padding in hardware, or that require specific
  36. * alignment in TX buffers. The packet data will end up aligned to a
  37. * multiple of @c IOB_ALIGN.
  38. *
  39. * @c min_len must not exceed @v IOB_ZLEN.
  40. */
  41. void iob_pad ( struct io_buffer *iobuf, size_t min_len ) {
  42. void *data;
  43. size_t len;
  44. size_t headroom;
  45. signed int pad_len;
  46. assert ( min_len <= IOB_ZLEN );
  47. /* Move packet data to start of I/O buffer. This will both
  48. * align the data (since I/O buffers are aligned to
  49. * IOB_ALIGN) and give us sufficient space for the
  50. * zero-padding
  51. */
  52. data = iobuf->data;
  53. len = iob_len ( iobuf );
  54. headroom = iob_headroom ( iobuf );
  55. iob_push ( iobuf, headroom );
  56. memmove ( iobuf->data, data, len );
  57. iob_unput ( iobuf, headroom );
  58. /* Pad to minimum packet length */
  59. pad_len = ( min_len - iob_len ( iobuf ) );
  60. if ( pad_len > 0 )
  61. memset ( iob_put ( iobuf, pad_len ), 0, pad_len );
  62. }