crc32.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * crc32.h for early Linux 2.4.19pre kernel inclusion
  3.  * This defines ether_crc_le() and ether_crc() as inline functions
  4.  * This is slated to change to using the library crc32 functions
  5.  * as kernel 2.5.2 included at some future date.
  6.  */
  7. #ifndef _LINUX_CRC32_H
  8. #define _LINUX_CRC32_H
  9. #include <linux/types.h>
  10. /* The little-endian AUTODIN II ethernet CRC calculation.
  11.    N.B. Do not use for bulk data, use a table-based routine instead.
  12.    This is common code and should be moved to net/core/crc.c */
  13. static unsigned const ethernet_polynomial_le = 0xedb88320U;
  14. static inline unsigned ether_crc_le(int length, unsigned char *data)
  15. {
  16. unsigned int crc = 0xffffffff; /* Initial value. */
  17. while(--length >= 0) {
  18. unsigned char current_octet = *data++;
  19. int bit;
  20. for (bit = 8; --bit >= 0; current_octet >>= 1) {
  21. if ((crc ^ current_octet) & 1) {
  22. crc >>= 1;
  23. crc ^= ethernet_polynomial_le;
  24. } else
  25. crc >>= 1;
  26. }
  27. }
  28. return crc;
  29. }
  30. static unsigned const ethernet_polynomial = 0x04c11db7U;
  31. static inline u32 ether_crc(int length, unsigned char *data)
  32. {
  33. int crc = -1;
  34. while (--length >= 0) {
  35. unsigned char current_octet = *data++;
  36. int bit;
  37. for (bit = 0; bit < 8; bit++, current_octet >>= 1) {
  38. crc = (crc << 1) ^
  39. ((crc < 0) ^ (current_octet & 1) ?
  40.  ethernet_polynomial : 0);
  41. }
  42. }
  43. return crc;
  44. }
  45. #endif /* _LINUX_CRC32_H */