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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. FILE_LICENCE ( GPL2_OR_LATER );
  19. /**
  20. * @file
  21. *
  22. * I/O buffer padding
  23. *
  24. */
  25. #include <string.h>
  26. #include <gpxe/iobuf.h>
  27. /**
  28. * Pad I/O buffer
  29. *
  30. * @v iobuf I/O buffer
  31. * @v min_len Minimum length
  32. *
  33. * This function pads and aligns I/O buffers, for devices that
  34. * aren't capable of padding in hardware, or that require specific
  35. * alignment in TX buffers. The packet data will end up aligned to a
  36. * multiple of @c IOB_ALIGN.
  37. *
  38. * @c min_len must not exceed @v IOB_ZLEN.
  39. */
  40. void iob_pad ( struct io_buffer *iobuf, size_t min_len ) {
  41. void *data;
  42. size_t len;
  43. size_t headroom;
  44. signed int pad_len;
  45. assert ( min_len <= IOB_ZLEN );
  46. /* Move packet data to start of I/O buffer. This will both
  47. * align the data (since I/O buffers are aligned to
  48. * IOB_ALIGN) and give us sufficient space for the
  49. * zero-padding
  50. */
  51. data = iobuf->data;
  52. len = iob_len ( iobuf );
  53. headroom = iob_headroom ( iobuf );
  54. iob_push ( iobuf, headroom );
  55. memmove ( iobuf->data, data, len );
  56. iob_unput ( iobuf, headroom );
  57. /* Pad to minimum packet length */
  58. pad_len = ( min_len - iob_len ( iobuf ) );
  59. if ( pad_len > 0 )
  60. memset ( iob_put ( iobuf, pad_len ), 0, pad_len );
  61. }