* [PATCH] drm: drm_gem.h: Add explicit includes for DEFINE_DRM_GEM_FOPS @ 2022-04-29 19:55 ` Jeffrey Hugo 0 siblings, 0 replies; 8+ messages in thread From: Jeffrey Hugo @ 2022-04-29 19:55 UTC (permalink / raw) To: maarten.lankhorst, mripard, tzimmermann, airlied, daniel Cc: Jeffrey Hugo, linux-kernel, dri-devel DEFINE_DRM_GEM_FOPS() references drm functions from other headers. For example drm_open() is defined in drm_file.h and drm_ioctl() is defined in drm_ioctl.h. Since drm_gem.h doesn't include these headers, it relies on an implicit include from the .c file to have included these required headers before DEFINE_DRM_GEM_FOPS() gets used. Relying on these implicit includes can cause build failures for new code that doesn't know about these requirements, and can lead to future problems if the headers ever get restructured as there will be a need to update every downstream file that includes drm_gem.h. Lets fix this explicitly including the required headers in drm_gem.h so that code that includes drm_gem.h does not need to worry about these implicit dependencies. Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> --- include/drm/drm_gem.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h index 9d7c61a..1cbe3d8 100644 --- a/include/drm/drm_gem.h +++ b/include/drm/drm_gem.h @@ -37,6 +37,8 @@ #include <linux/kref.h> #include <linux/dma-resv.h> +#include <drm/drm_file.h> +#include <drm/drm_ioctl.h> #include <drm/drm_vma_manager.h> struct iosys_map; -- 2.7.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH] drm: drm_gem.h: Add explicit includes for DEFINE_DRM_GEM_FOPS @ 2022-04-29 19:55 ` Jeffrey Hugo 0 siblings, 0 replies; 8+ messages in thread From: Jeffrey Hugo @ 2022-04-29 19:55 UTC (permalink / raw) To: maarten.lankhorst, mripard, tzimmermann, airlied, daniel Cc: dri-devel, linux-kernel, Jeffrey Hugo DEFINE_DRM_GEM_FOPS() references drm functions from other headers. For example drm_open() is defined in drm_file.h and drm_ioctl() is defined in drm_ioctl.h. Since drm_gem.h doesn't include these headers, it relies on an implicit include from the .c file to have included these required headers before DEFINE_DRM_GEM_FOPS() gets used. Relying on these implicit includes can cause build failures for new code that doesn't know about these requirements, and can lead to future problems if the headers ever get restructured as there will be a need to update every downstream file that includes drm_gem.h. Lets fix this explicitly including the required headers in drm_gem.h so that code that includes drm_gem.h does not need to worry about these implicit dependencies. Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> --- include/drm/drm_gem.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h index 9d7c61a..1cbe3d8 100644 --- a/include/drm/drm_gem.h +++ b/include/drm/drm_gem.h @@ -37,6 +37,8 @@ #include <linux/kref.h> #include <linux/dma-resv.h> +#include <drm/drm_file.h> +#include <drm/drm_ioctl.h> #include <drm/drm_vma_manager.h> struct iosys_map; -- 2.7.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] drm: drm_gem.h: Add explicit includes for DEFINE_DRM_GEM_FOPS 2022-04-29 19:55 ` Jeffrey Hugo (?) @ 2022-05-02 15:41 ` Jani Nikula 2022-05-04 9:38 ` Daniel Vetter -1 siblings, 1 reply; 8+ messages in thread From: Jani Nikula @ 2022-05-02 15:41 UTC (permalink / raw) To: Jeffrey Hugo, maarten.lankhorst, mripard, tzimmermann, airlied, daniel Cc: Jeffrey Hugo, linux-kernel, dri-devel On Fri, 29 Apr 2022, Jeffrey Hugo <quic_jhugo@quicinc.com> wrote: > DEFINE_DRM_GEM_FOPS() references drm functions from other headers. For > example drm_open() is defined in drm_file.h and drm_ioctl() is defined > in drm_ioctl.h. Since drm_gem.h doesn't include these headers, it > relies on an implicit include from the .c file to have included these > required headers before DEFINE_DRM_GEM_FOPS() gets used. Relying on > these implicit includes can cause build failures for new code that > doesn't know about these requirements, and can lead to future problems > if the headers ever get restructured as there will be a need to update > every downstream file that includes drm_gem.h. > > Lets fix this explicitly including the required headers in drm_gem.h so > that code that includes drm_gem.h does not need to worry about these > implicit dependencies. In the general case, I tend to agree, but in this specific instance I think I'd err on the side of fewer includes. I think the more likely outcome here is accumulating implicit dependencies on symbols from drm_file.h and drm_ioctl.h by including drm_gem.h only! I do think headers need to be self-contained, and we actually enforce this in i915 (see HDRTEST in drivers/gpu/drm/i915/Makefile), but not to the point of macro expansions. BR, Jani. > > Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> > --- > include/drm/drm_gem.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h > index 9d7c61a..1cbe3d8 100644 > --- a/include/drm/drm_gem.h > +++ b/include/drm/drm_gem.h > @@ -37,6 +37,8 @@ > #include <linux/kref.h> > #include <linux/dma-resv.h> > > +#include <drm/drm_file.h> > +#include <drm/drm_ioctl.h> > #include <drm/drm_vma_manager.h> > > struct iosys_map; -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm: drm_gem.h: Add explicit includes for DEFINE_DRM_GEM_FOPS 2022-05-02 15:41 ` Jani Nikula @ 2022-05-04 9:38 ` Daniel Vetter 0 siblings, 0 replies; 8+ messages in thread From: Daniel Vetter @ 2022-05-04 9:38 UTC (permalink / raw) To: Jani Nikula; +Cc: Jeffrey Hugo, tzimmermann, airlied, linux-kernel, dri-devel On Mon, May 02, 2022 at 06:41:39PM +0300, Jani Nikula wrote: > On Fri, 29 Apr 2022, Jeffrey Hugo <quic_jhugo@quicinc.com> wrote: > > DEFINE_DRM_GEM_FOPS() references drm functions from other headers. For > > example drm_open() is defined in drm_file.h and drm_ioctl() is defined > > in drm_ioctl.h. Since drm_gem.h doesn't include these headers, it > > relies on an implicit include from the .c file to have included these > > required headers before DEFINE_DRM_GEM_FOPS() gets used. Relying on > > these implicit includes can cause build failures for new code that > > doesn't know about these requirements, and can lead to future problems > > if the headers ever get restructured as there will be a need to update > > every downstream file that includes drm_gem.h. > > > > Lets fix this explicitly including the required headers in drm_gem.h so > > that code that includes drm_gem.h does not need to worry about these > > implicit dependencies. > > In the general case, I tend to agree, but in this specific instance I > think I'd err on the side of fewer includes. I think the more likely > outcome here is accumulating implicit dependencies on symbols from > drm_file.h and drm_ioctl.h by including drm_gem.h only! > > I do think headers need to be self-contained, and we actually enforce > this in i915 (see HDRTEST in drivers/gpu/drm/i915/Makefile), but not to > the point of macro expansions. Yeah we abuse macros in a bunch of places to untangle header dependencies, so then going back and pulling in all the headers back in feels a bit silly and defeats the point. iow, I concur. -Daniel > > BR, > Jani. > > > > > > > Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> > > --- > > include/drm/drm_gem.h | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h > > index 9d7c61a..1cbe3d8 100644 > > --- a/include/drm/drm_gem.h > > +++ b/include/drm/drm_gem.h > > @@ -37,6 +37,8 @@ > > #include <linux/kref.h> > > #include <linux/dma-resv.h> > > > > +#include <drm/drm_file.h> > > +#include <drm/drm_ioctl.h> > > #include <drm/drm_vma_manager.h> > > > > struct iosys_map; > > -- > Jani Nikula, Intel Open Source Graphics Center -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm: drm_gem.h: Add explicit includes for DEFINE_DRM_GEM_FOPS @ 2022-05-04 9:38 ` Daniel Vetter 0 siblings, 0 replies; 8+ messages in thread From: Daniel Vetter @ 2022-05-04 9:38 UTC (permalink / raw) To: Jani Nikula Cc: Jeffrey Hugo, maarten.lankhorst, mripard, tzimmermann, airlied, daniel, linux-kernel, dri-devel On Mon, May 02, 2022 at 06:41:39PM +0300, Jani Nikula wrote: > On Fri, 29 Apr 2022, Jeffrey Hugo <quic_jhugo@quicinc.com> wrote: > > DEFINE_DRM_GEM_FOPS() references drm functions from other headers. For > > example drm_open() is defined in drm_file.h and drm_ioctl() is defined > > in drm_ioctl.h. Since drm_gem.h doesn't include these headers, it > > relies on an implicit include from the .c file to have included these > > required headers before DEFINE_DRM_GEM_FOPS() gets used. Relying on > > these implicit includes can cause build failures for new code that > > doesn't know about these requirements, and can lead to future problems > > if the headers ever get restructured as there will be a need to update > > every downstream file that includes drm_gem.h. > > > > Lets fix this explicitly including the required headers in drm_gem.h so > > that code that includes drm_gem.h does not need to worry about these > > implicit dependencies. > > In the general case, I tend to agree, but in this specific instance I > think I'd err on the side of fewer includes. I think the more likely > outcome here is accumulating implicit dependencies on symbols from > drm_file.h and drm_ioctl.h by including drm_gem.h only! > > I do think headers need to be self-contained, and we actually enforce > this in i915 (see HDRTEST in drivers/gpu/drm/i915/Makefile), but not to > the point of macro expansions. Yeah we abuse macros in a bunch of places to untangle header dependencies, so then going back and pulling in all the headers back in feels a bit silly and defeats the point. iow, I concur. -Daniel > > BR, > Jani. > > > > > > > Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> > > --- > > include/drm/drm_gem.h | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h > > index 9d7c61a..1cbe3d8 100644 > > --- a/include/drm/drm_gem.h > > +++ b/include/drm/drm_gem.h > > @@ -37,6 +37,8 @@ > > #include <linux/kref.h> > > #include <linux/dma-resv.h> > > > > +#include <drm/drm_file.h> > > +#include <drm/drm_ioctl.h> > > #include <drm/drm_vma_manager.h> > > > > struct iosys_map; > > -- > Jani Nikula, Intel Open Source Graphics Center -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm: drm_gem.h: Add explicit includes for DEFINE_DRM_GEM_FOPS 2022-05-04 9:38 ` Daniel Vetter (?) @ 2022-05-04 13:58 ` Jeffrey Hugo 2022-05-05 8:28 ` Daniel Vetter -1 siblings, 1 reply; 8+ messages in thread From: Jeffrey Hugo @ 2022-05-04 13:58 UTC (permalink / raw) To: Jani Nikula, maarten.lankhorst, mripard, tzimmermann, airlied, linux-kernel, dri-devel On 5/4/2022 3:38 AM, Daniel Vetter wrote: > On Mon, May 02, 2022 at 06:41:39PM +0300, Jani Nikula wrote: >> On Fri, 29 Apr 2022, Jeffrey Hugo <quic_jhugo@quicinc.com> wrote: >>> DEFINE_DRM_GEM_FOPS() references drm functions from other headers. For >>> example drm_open() is defined in drm_file.h and drm_ioctl() is defined >>> in drm_ioctl.h. Since drm_gem.h doesn't include these headers, it >>> relies on an implicit include from the .c file to have included these >>> required headers before DEFINE_DRM_GEM_FOPS() gets used. Relying on >>> these implicit includes can cause build failures for new code that >>> doesn't know about these requirements, and can lead to future problems >>> if the headers ever get restructured as there will be a need to update >>> every downstream file that includes drm_gem.h. >>> >>> Lets fix this explicitly including the required headers in drm_gem.h so >>> that code that includes drm_gem.h does not need to worry about these >>> implicit dependencies. >> >> In the general case, I tend to agree, but in this specific instance I >> think I'd err on the side of fewer includes. I think the more likely >> outcome here is accumulating implicit dependencies on symbols from >> drm_file.h and drm_ioctl.h by including drm_gem.h only! >> >> I do think headers need to be self-contained, and we actually enforce >> this in i915 (see HDRTEST in drivers/gpu/drm/i915/Makefile), but not to >> the point of macro expansions. > > Yeah we abuse macros in a bunch of places to untangle header dependencies, > so then going back and pulling in all the headers back in feels a bit > silly and defeats the point. Fair enough. I'll consider this NAK'd I've been pondering alternate solutions, but haven't come up with any. I guess, for now, the status quo will remain. > > iow, I concur. > -Daniel > >> >> BR, >> Jani. >> >> >> >>> >>> Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> >>> --- >>> include/drm/drm_gem.h | 2 ++ >>> 1 file changed, 2 insertions(+) >>> >>> diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h >>> index 9d7c61a..1cbe3d8 100644 >>> --- a/include/drm/drm_gem.h >>> +++ b/include/drm/drm_gem.h >>> @@ -37,6 +37,8 @@ >>> #include <linux/kref.h> >>> #include <linux/dma-resv.h> >>> >>> +#include <drm/drm_file.h> >>> +#include <drm/drm_ioctl.h> >>> #include <drm/drm_vma_manager.h> >>> >>> struct iosys_map; >> >> -- >> Jani Nikula, Intel Open Source Graphics Center > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm: drm_gem.h: Add explicit includes for DEFINE_DRM_GEM_FOPS 2022-05-04 13:58 ` Jeffrey Hugo @ 2022-05-05 8:28 ` Daniel Vetter 0 siblings, 0 replies; 8+ messages in thread From: Daniel Vetter @ 2022-05-05 8:28 UTC (permalink / raw) To: Jeffrey Hugo; +Cc: airlied, dri-devel, linux-kernel, tzimmermann On Wed, May 04, 2022 at 07:58:38AM -0600, Jeffrey Hugo wrote: > On 5/4/2022 3:38 AM, Daniel Vetter wrote: > > On Mon, May 02, 2022 at 06:41:39PM +0300, Jani Nikula wrote: > > > On Fri, 29 Apr 2022, Jeffrey Hugo <quic_jhugo@quicinc.com> wrote: > > > > DEFINE_DRM_GEM_FOPS() references drm functions from other headers. For > > > > example drm_open() is defined in drm_file.h and drm_ioctl() is defined > > > > in drm_ioctl.h. Since drm_gem.h doesn't include these headers, it > > > > relies on an implicit include from the .c file to have included these > > > > required headers before DEFINE_DRM_GEM_FOPS() gets used. Relying on > > > > these implicit includes can cause build failures for new code that > > > > doesn't know about these requirements, and can lead to future problems > > > > if the headers ever get restructured as there will be a need to update > > > > every downstream file that includes drm_gem.h. > > > > > > > > Lets fix this explicitly including the required headers in drm_gem.h so > > > > that code that includes drm_gem.h does not need to worry about these > > > > implicit dependencies. > > > > > > In the general case, I tend to agree, but in this specific instance I > > > think I'd err on the side of fewer includes. I think the more likely > > > outcome here is accumulating implicit dependencies on symbols from > > > drm_file.h and drm_ioctl.h by including drm_gem.h only! > > > > > > I do think headers need to be self-contained, and we actually enforce > > > this in i915 (see HDRTEST in drivers/gpu/drm/i915/Makefile), but not to > > > the point of macro expansions. > > > > Yeah we abuse macros in a bunch of places to untangle header dependencies, > > so then going back and pulling in all the headers back in feels a bit > > silly and defeats the point. > > Fair enough. I'll consider this NAK'd > > I've been pondering alternate solutions, but haven't come up with any. I > guess, for now, the status quo will remain. I think a standalone header for gem fops or so might be an option. We also have some macro iirc for standard stuff in drm_driver (or at least had in the past, maybe that's cleaned up now better). That would allow drivers to include this monster header that pulls in a lot of things in the one place they define their file ops, and nowhere else. I think that would cover everything we'd want to achieve? But would be a bit of churn to roll out everywhere. -Daniel > > > > > iow, I concur. > > -Daniel > > > > > > > > BR, > > > Jani. > > > > > > > > > > > > > > > > > Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> > > > > --- > > > > include/drm/drm_gem.h | 2 ++ > > > > 1 file changed, 2 insertions(+) > > > > > > > > diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h > > > > index 9d7c61a..1cbe3d8 100644 > > > > --- a/include/drm/drm_gem.h > > > > +++ b/include/drm/drm_gem.h > > > > @@ -37,6 +37,8 @@ > > > > #include <linux/kref.h> > > > > #include <linux/dma-resv.h> > > > > +#include <drm/drm_file.h> > > > > +#include <drm/drm_ioctl.h> > > > > #include <drm/drm_vma_manager.h> > > > > struct iosys_map; > > > > > > -- > > > Jani Nikula, Intel Open Source Graphics Center > > > -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm: drm_gem.h: Add explicit includes for DEFINE_DRM_GEM_FOPS @ 2022-05-05 8:28 ` Daniel Vetter 0 siblings, 0 replies; 8+ messages in thread From: Daniel Vetter @ 2022-05-05 8:28 UTC (permalink / raw) To: Jeffrey Hugo Cc: Jani Nikula, maarten.lankhorst, mripard, tzimmermann, airlied, linux-kernel, dri-devel On Wed, May 04, 2022 at 07:58:38AM -0600, Jeffrey Hugo wrote: > On 5/4/2022 3:38 AM, Daniel Vetter wrote: > > On Mon, May 02, 2022 at 06:41:39PM +0300, Jani Nikula wrote: > > > On Fri, 29 Apr 2022, Jeffrey Hugo <quic_jhugo@quicinc.com> wrote: > > > > DEFINE_DRM_GEM_FOPS() references drm functions from other headers. For > > > > example drm_open() is defined in drm_file.h and drm_ioctl() is defined > > > > in drm_ioctl.h. Since drm_gem.h doesn't include these headers, it > > > > relies on an implicit include from the .c file to have included these > > > > required headers before DEFINE_DRM_GEM_FOPS() gets used. Relying on > > > > these implicit includes can cause build failures for new code that > > > > doesn't know about these requirements, and can lead to future problems > > > > if the headers ever get restructured as there will be a need to update > > > > every downstream file that includes drm_gem.h. > > > > > > > > Lets fix this explicitly including the required headers in drm_gem.h so > > > > that code that includes drm_gem.h does not need to worry about these > > > > implicit dependencies. > > > > > > In the general case, I tend to agree, but in this specific instance I > > > think I'd err on the side of fewer includes. I think the more likely > > > outcome here is accumulating implicit dependencies on symbols from > > > drm_file.h and drm_ioctl.h by including drm_gem.h only! > > > > > > I do think headers need to be self-contained, and we actually enforce > > > this in i915 (see HDRTEST in drivers/gpu/drm/i915/Makefile), but not to > > > the point of macro expansions. > > > > Yeah we abuse macros in a bunch of places to untangle header dependencies, > > so then going back and pulling in all the headers back in feels a bit > > silly and defeats the point. > > Fair enough. I'll consider this NAK'd > > I've been pondering alternate solutions, but haven't come up with any. I > guess, for now, the status quo will remain. I think a standalone header for gem fops or so might be an option. We also have some macro iirc for standard stuff in drm_driver (or at least had in the past, maybe that's cleaned up now better). That would allow drivers to include this monster header that pulls in a lot of things in the one place they define their file ops, and nowhere else. I think that would cover everything we'd want to achieve? But would be a bit of churn to roll out everywhere. -Daniel > > > > > iow, I concur. > > -Daniel > > > > > > > > BR, > > > Jani. > > > > > > > > > > > > > > > > > Signed-off-by: Jeffrey Hugo <quic_jhugo@quicinc.com> > > > > --- > > > > include/drm/drm_gem.h | 2 ++ > > > > 1 file changed, 2 insertions(+) > > > > > > > > diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h > > > > index 9d7c61a..1cbe3d8 100644 > > > > --- a/include/drm/drm_gem.h > > > > +++ b/include/drm/drm_gem.h > > > > @@ -37,6 +37,8 @@ > > > > #include <linux/kref.h> > > > > #include <linux/dma-resv.h> > > > > +#include <drm/drm_file.h> > > > > +#include <drm/drm_ioctl.h> > > > > #include <drm/drm_vma_manager.h> > > > > struct iosys_map; > > > > > > -- > > > Jani Nikula, Intel Open Source Graphics Center > > > -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2022-05-05 8:28 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-04-29 19:55 [PATCH] drm: drm_gem.h: Add explicit includes for DEFINE_DRM_GEM_FOPS Jeffrey Hugo 2022-04-29 19:55 ` Jeffrey Hugo 2022-05-02 15:41 ` Jani Nikula 2022-05-04 9:38 ` Daniel Vetter 2022-05-04 9:38 ` Daniel Vetter 2022-05-04 13:58 ` Jeffrey Hugo 2022-05-05 8:28 ` Daniel Vetter 2022-05-05 8:28 ` Daniel Vetter
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.