From: Randy Dunlap on
On Tue, 22 Jun 2010 16:05:18 +1000 Stephen Rothwell wrote:

> Hi all,
>
> Changes since 20100621:
>
> My fixes tree contains:
> v4l-dvb: update gfp/slab.h includes
> arm: update gfp/slab.h includes
> davinci: update gfp/slab.h includes
> ocfs2: update gfp/slab.h includes
> acpi: update gfp/slab.h includes


drivers/staging/spectra/ffsport.c:307: error: implicit declaration of function 'blk_fs_request'

Where is this function??

---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
From: Randy Dunlap on
On Tue, 22 Jun 2010 08:30:32 -0700 Randy Dunlap wrote:

> On Tue, 22 Jun 2010 16:05:18 +1000 Stephen Rothwell wrote:
>
> > Hi all,
> >
> > Changes since 20100621:
> >
> > My fixes tree contains:
> > v4l-dvb: update gfp/slab.h includes
> > arm: update gfp/slab.h includes
> > davinci: update gfp/slab.h includes
> > ocfs2: update gfp/slab.h includes
> > acpi: update gfp/slab.h includes
>
>
> drivers/staging/spectra/ffsport.c:307: error: implicit declaration of function 'blk_fs_request'
>
> Where is this function??

The macro was deleted from include/linux/blkdev.h. Just change that line to

- if (!blk_fs_request(req))
+ if (req->cmd_type != REQ_TYPE_FS)


---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
From: Greg KH on
On Tue, Jun 22, 2010 at 08:59:03AM -0700, Randy Dunlap wrote:
> On Tue, 22 Jun 2010 08:30:32 -0700 Randy Dunlap wrote:
>
> > On Tue, 22 Jun 2010 16:05:18 +1000 Stephen Rothwell wrote:
> >
> > > Hi all,
> > >
> > > Changes since 20100621:
> > >
> > > My fixes tree contains:
> > > v4l-dvb: update gfp/slab.h includes
> > > arm: update gfp/slab.h includes
> > > davinci: update gfp/slab.h includes
> > > ocfs2: update gfp/slab.h includes
> > > acpi: update gfp/slab.h includes
> >
> >
> > drivers/staging/spectra/ffsport.c:307: error: implicit declaration of function 'blk_fs_request'
> >
> > Where is this function??
>
> The macro was deleted from include/linux/blkdev.h. Just change that line to
>
> - if (!blk_fs_request(req))
> + if (req->cmd_type != REQ_TYPE_FS)

Care to send a patch?

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/