Aligh mbufs to sizeof(long), not 4

This commit is contained in:
Brian Somers 1999-08-26 06:37:53 +00:00
parent cbc20d30a5
commit 6fd578c435
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: mbuf.c,v 1.28 1999/08/09 22:56:18 brian Exp $
* $Id: mbuf.c,v 1.29 1999/08/19 18:15:50 brian Exp $
*
*/
#include <sys/types.h>
@ -300,7 +300,7 @@ mbuf_Contiguous(struct mbuf *bp)
bp = nbp;
}
#ifndef __i386__ /* Do any other archs not care about alignment ? */
else if ((bp->offset & 0x03) != 0) {
else if ((bp->offset & (sizeof(long) - 1)) != 0) {
bcopy(MBUF_CTOP(bp), bp + 1, bp->cnt);
bp->offset = 0;
}