Deleted Added
full compact
31c31
< __FBSDID("$FreeBSD: head/sys/cam/cam_periph.c 142157 2005-02-20 23:45:49Z scottl $");
---
> __FBSDID("$FreeBSD: head/sys/cam/cam_periph.c 147723 2005-07-01 15:21:30Z avatar $");
36a37
> #include <sys/kernel.h>
85a87,88
> MALLOC_DEFINE(M_CAMPERIPH, "CAM periph", "CAM peripheral buffers");
>
147c150
< periph = (struct cam_periph *)malloc(sizeof(*periph), M_DEVBUF,
---
> periph = (struct cam_periph *)malloc(sizeof(*periph), M_CAMPERIPH,
223c226
< free(periph, M_DEVBUF);
---
> free(periph, M_CAMPERIPH);
488c491
< free(periph, M_DEVBUF);
---
> free(periph, M_CAMPERIPH);