From: Sean Christopherson Date: Fri, 3 Jul 2020 02:26:28 +0000 (-0700) Subject: vfio-ccw: Fix a build error due to missing include of linux/slab.h X-Git-Tag: xarray-5.8~85^2^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=d8ca55addb9315ecd9fc4397f4c94d3f1980161c;p=users%2Fwilly%2Fxarray.git vfio-ccw: Fix a build error due to missing include of linux/slab.h Include linux/slab.h to fix a build error due to kfree() being undefined. Fixes: 3f02cb2fd9d2 ("vfio-ccw: Wire up the CRW irq and CRW region") Signed-off-by: Sean Christopherson Message-Id: <20200703022628.6036-1-sean.j.christopherson@intel.com> Signed-off-by: Cornelia Huck --- diff --git a/drivers/s390/cio/vfio_ccw_chp.c b/drivers/s390/cio/vfio_ccw_chp.c index a646fc81c872..13b26a1c7988 100644 --- a/drivers/s390/cio/vfio_ccw_chp.c +++ b/drivers/s390/cio/vfio_ccw_chp.c @@ -8,6 +8,7 @@ * Eric Farman */ +#include #include #include "vfio_ccw_private.h"