Message ID | 20191101020450.12948-1-ice_yangxiao@163.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | kselftests/dmabuf-heaps: Fix compiler error in one condition | expand |
Hi, If you fix the issue, kindly add following tag Reported-by: kernel test robot <lkp@intel.com> On 11/1/19 10:04 AM, Xiao Yang wrote: > Compiling dmabuf-heaps cannot locate headers and then gets the following > error when kernel source code instead of system provides headers: > ------------------------------------------- > dmabuf-heap.c:16:10: fatal error: drm/drm.h: No such file or directory > ------------------------------------------- > > Signed-off-by: Xiao Yang <ice_yangxiao@163.com> > --- > tools/testing/selftests/dmabuf-heaps/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/testing/selftests/dmabuf-heaps/Makefile b/tools/testing/selftests/dmabuf-heaps/Makefile > index 8c4c36e2972d..9043e0b5a432 100644 > --- a/tools/testing/selftests/dmabuf-heaps/Makefile > +++ b/tools/testing/selftests/dmabuf-heaps/Makefile > @@ -1,5 +1,5 @@ > # SPDX-License-Identifier: GPL-2.0 > -CFLAGS += -static -O3 -Wl,-no-as-needed -Wall > +CFLAGS += -static -O3 -Wl,-no-as-needed -Wall -I../../../../usr/include > #LDLIBS += -lrt -lpthread -lm > > # these are all "safe" tests that don't modify
On 10/31/19 8:25 PM, Xiao Yang wrote: > Hi, > > If you fix the issue, kindly add following tag > Reported-by: kernel test robot <lkp@intel.com> > Do you plan to send another patch? I don't understand if this meant you think this patch doesn't fix the problem? > On 11/1/19 10:04 AM, Xiao Yang wrote: >> Compiling dmabuf-heaps cannot locate headers and then gets the following >> error when kernel source code instead of system provides headers: >> ------------------------------------------- >> dmabuf-heap.c:16:10: fatal error: drm/drm.h: No such file or directory >> ------------------------------------------- >> >> Signed-off-by: Xiao Yang <ice_yangxiao@163.com> >> --- >> tools/testing/selftests/dmabuf-heaps/Makefile | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/tools/testing/selftests/dmabuf-heaps/Makefile >> b/tools/testing/selftests/dmabuf-heaps/Makefile >> index 8c4c36e2972d..9043e0b5a432 100644 >> --- a/tools/testing/selftests/dmabuf-heaps/Makefile >> +++ b/tools/testing/selftests/dmabuf-heaps/Makefile >> @@ -1,5 +1,5 @@ >> # SPDX-License-Identifier: GPL-2.0 >> -CFLAGS += -static -O3 -Wl,-no-as-needed -Wall >> +CFLAGS += -static -O3 -Wl,-no-as-needed -Wall -I../../../../usr/include >> #LDLIBS += -lrt -lpthread -lm >> # these are all "safe" tests that don't modify > > thanks, -- Shuah
On Thu, Nov 7, 2019 at 12:37 PM shuah <shuah@kernel.org> wrote: > > On 10/31/19 8:25 PM, Xiao Yang wrote: > > Hi, > > > > If you fix the issue, kindly add following tag > > Reported-by: kernel test robot <lkp@intel.com> > > > Do you plan to send another patch? I don't understand > if this meant you think this patch doesn't fix the > problem? I've actually folded in the fix into my patches. thanks -john
On 11/7/19 1:39 PM, John Stultz wrote: > On Thu, Nov 7, 2019 at 12:37 PM shuah <shuah@kernel.org> wrote: >> >> On 10/31/19 8:25 PM, Xiao Yang wrote: >>> Hi, >>> >>> If you fix the issue, kindly add following tag >>> Reported-by: kernel test robot <lkp@intel.com> >>> >> Do you plan to send another patch? I don't understand >> if this meant you think this patch doesn't fix the >> problem? > > I've actually folded in the fix into my patches. > > thanks > -john > Thanks for the clarification. -- Shuah
diff --git a/tools/testing/selftests/dmabuf-heaps/Makefile b/tools/testing/selftests/dmabuf-heaps/Makefile index 8c4c36e2972d..9043e0b5a432 100644 --- a/tools/testing/selftests/dmabuf-heaps/Makefile +++ b/tools/testing/selftests/dmabuf-heaps/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 -CFLAGS += -static -O3 -Wl,-no-as-needed -Wall +CFLAGS += -static -O3 -Wl,-no-as-needed -Wall -I../../../../usr/include #LDLIBS += -lrt -lpthread -lm # these are all "safe" tests that don't modify
Compiling dmabuf-heaps cannot locate headers and then gets the following error when kernel source code instead of system provides headers: ------------------------------------------- dmabuf-heap.c:16:10: fatal error: drm/drm.h: No such file or directory ------------------------------------------- Signed-off-by: Xiao Yang <ice_yangxiao@163.com> --- tools/testing/selftests/dmabuf-heaps/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)