1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
272.
273.
274.
275.
276.
277.
278.
279.
280.
281.
282.
283.
284.
285.
286.
287.
288.
289.
290.
291.
292.
293.
294.
295.
296.
297.
298.
299.
300.
301.
302.
303.
304.
305.
306.
307.
308.
309.
310.
311.
312.
313.
314.
315.
316.
317.
318.
319.
320.
321.
322.
323.
324.
325.
326.
327.
328.
329.
330.
331.
332.
333.
334.
335.
336.
337.
338.
339.
340.
341.
342.
343.
344.
345.
346.
347.
348.
349.
350.
351.
352.
353.
354.
355.
356.
357.
358.
359.
360.
361.
362.
363.
364.
365.
366.
367.
368.
369.
370.
371.
372.
373.
374.
375.
376.
377.
378.
379.
380.
381.
382.
383.
384.
385.
386.
387.
388.
389.
390.
391.
392.
393.
394.
395.
396.
397.
398.
399.
400.
401.
402.
403.
404.
405.
406.
407.
408.
409.
410.
411.
412.
413.
414.
415.
416.
417.
418.
419.
420.
421.
422.
423.
424.
425.
426.
427.
428.
429.
430.
431.
432.
433.
434.
435.
436.
437.
438.
439.
440.
441.
442.
443.
444.
445.
446.
447.
448.
449.
450.
451.
452.
453.
454.
455.
456.
457.
458.
459.
460.
461.
462.
463.
464.
465.
466.
467.
468.
469.
470.
471.
472.
473.
474.
475.
476.
477.
478.
479.
480.
481.
482.
483.
484.
485.
486.
487.
488.
489.
490.
491.
492.
493.
494.
495.
496.
497.
498.
499.
500.
501.
502.
503.
504.
505.
506.
507.
508.
509.
510.
511.
512.
513.
514.
515.
516.
517.
518.
519.
520.
521.
522.
523.
524.
525.
526.
527.
528.
529.
530.
531.
532.
533.
534.
535.
536.
537.
538.
539.
540.
541.
542.
543.
544.
545.
546.
547.
548.
549.
550.
551.
552.
553.
554.
555.
556.
557.
558.
559.
560.
561.
562.
563.
564.
565.
566.
567.
568.
569.
570.
571.
572.
573.
574.
575.
576.
577.
578.
579.
580.
581.
582.
583.
584.
585.
586.
587.
588.
589.
590.
591.
592.
593.
594.
595.
596.
597.
598.
599.
600.
601.
602.
603.
604.
605.
606.
607.
608.
609.
610.
611.
612.
613.
614.
615.
616.
617.
618.
619.
620.
621.
622.
623.
624.
625.
626.
627.
628.
629.
630.
631.
632.
633.
634.
635.
636.
637.
638.
639.
640.
641.
642.
643.
644.
645.
646.
647.
648.
649.
650.
651.
652.
653.
654.
655.
656.
657.
658.
659.
660.
661.
662.
663.
664.
665.
666.
667.
668.
669.
670.
671.
672.
673.
674.
675.
676.
677.
678.
679.
680.
681.
682.
683.
684.
685.
686.
687.
688.
689.
690.
691.
692.
693.
694.
695.
696.
697.
698.
699.
700.
701.
702.
703.
704.
705.
706.
707.
708.
709.
710.
711.
712.
713.
714.
715.
716.
717.
718.
719.
720.
721.
722.
723.
724.
725.
726.
727.
728.
729.
730.
731.
732.
733.
734.
735.
736.
737.
738.
739.
740.
741.
742.
743.
744.
745.
746.
747.
748.
749.
750.
751.
752.
753.
754.
755.
756.
757.
758.
759.
760.
761.
762.
763.
764.
765.
766.
767.
768.
769.
770.
771.
772.
773.
774.
775.
776.
777.
778.
779.
780.
781.
782.
783.
784.
785.
786.
787.
788.
789.
790.
791.
792.
793.
794.
795.
796.
797.
798.
799.
800.
801.
802.
803.
804.
805.
806.
807.
808.
809.
810.
811.
812.
813.
814.
815.
816.
817.
818.
819.
820.
821.
822.
823.
824.
825.
826.
827.
828.
829.
830.
831.
832.
833.
834.
835.
836.
837.
838.
839.
840.
841.
842.
843.
844.
845.
846.
847.
848.
849.
850.
851.
852.
853.
854.
855.
856.
857.
858.
859.
860.
861.
862.
863.
864.
865.
866.
867.
868.
869.
870.
871.
872.
873.
874.
875.
876.
877.
878.
879.
880.
881.
882.
883.
884.
885.
886.
887.
888.
889.
890.
891.
892.
893.
894.
895.
896.
897.
898.
899.
900.
901.
902.
903.
904.
905.
906.
907.
908.
909.
910.
911.
912.
913.
914.
915.
916.
917.
918.
919.
920.
921.
922.
923.
924.
925.
926.
927.
928.
929.
930.
931.
932.
933.
934.
935.
936.
937.
938.
939.
940.
941.
942.
943.
944.
945.
946.
947.
948.
949.
950.
951.
952.
953.
954.
955.
956.
957.
958.
959.
960.
961.
962.
963.
964.
965.
966.
967.
968.
969.
970.
971.
972.
973.
974.
975.
976.
977.
978.
979.
980.
981.
982.
983.
984.
985.
986.
987.
988.
989.
990.
991.
992.
993.
994.
995.
996.
997.
998.
999.
1000.
1001.
1002.
1003.
1004.
1005.
1006.
1007.
1008.
1009.
1010.
1011.
1012.
1013.
1014.
1015.
1016.
1017.
1018.
1019.
1020.
1021.
1022.
1023.
1024.
1025.
1026.
1027.
1028.
1029.
1030.
1031.
1032.
1033.
1034.
1035.
1036.
1037.
1038.
1039.
1040.
1041.
1042.
1043.
1044.
1045.
1046.
1047.
1048.
1049.
1050.
1051.
1052.
1053.
1054.
1055.
1056.
1057.
1058.
1059.
1060.
1061.
1062.
1063.
1064.
1065.
1066.
1067.
1068.
1069.
1070.
1071.
1072.
1073.
1074.
1075.
1076.
1077.
1078.
1079.
1080.
1081.
1082.
1083.
1084.
1085.
1086.
1087.
1088.
1089.
1090.
1091.
1092.
1093.
1094.
1095.
1096.
1097.
1098.
1099.
1100.
1101.
1102.
1103.
1104.
1105.
1106.
1107.
1108.
1109.
1110.
1111. | nvidia-installer log file '/var/log/nvidia-installer.log'
creation time: Sun Aug 2 10:41:51 2020
installer version: 340.108
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
nvidia-installer command line:
./nvidia-installer
Using: nvidia-installer ncurses v6 user interface
-> License accepted.
-> Installing NVIDIA driver version 340.108.
-> Performing CC sanity check with CC="/usr/bin/cc".
-> Kernel source path: '/lib/modules/4.19.0-10-amd64/source'
-> Kernel output path: '/lib/modules/4.19.0-10-amd64/build'
-> Performing rivafb check.
-> Performing nvidiafb check.
-> Performing Xen check.
-> Performing PREEMPT_RT check.
-> Cleaning kernel module build directory.
executing: 'cd ./kernel; /usr/bin/make clean'...
-> Building NVIDIA kernel module:
executing: 'cd ./kernel; /usr/bin/make module SYSSRC=/lib/modules/4.19.0-10-amd64/source SYSOUT=/lib/modules/4.19.0-10-amd64/build NV_BUILD_MODULE_INSTANCES='...
NVIDIA: calling KBUILD...
make[1]: Entering directory '/usr/src/linux-headers-4.19.0-10-common'
/usr/bin/make -C /lib/modules/4.19.0-10-amd64/build KBUILD_SRC=/usr/src/linux-headers-4.19.0-10-common \
-f /usr/src/linux-headers-4.19.0-10-common/Makefile modules
make[2]: Entering directory '/usr/src/linux-headers-4.19.0-10-amd64'
test -e include/generated/autoconf.h -a -e include/config/auto.conf || ( \
echo >&2; \
echo >&2 " ERROR: Kernel configuration is invalid."; \
echo >&2 " include/generated/autoconf.h or include/config/auto.conf are missing.";\
echo >&2 " Run 'make oldconfig && make prepare' on kernel src to fix it."; \
echo >&2 ; \
/bin/false)
mkdir -p /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.tmp_versions ; rm -f /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.tmp_versions/*
/usr/bin/make -f /usr/src/linux-headers-4.19.0-10-common/scripts/Makefile.build obj=/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel
(cat /dev/null; echo kernel//tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nvidia.ko;) > /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/modules.order
cc -Wp,-MD,/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.nv.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/8/include -I/usr/src/linux-headers-4.19.0-10-common/arch/x86/include -I./arch/x86/include/generated -I/usr/src/linux-headers-4.19.0-10-common/include -I./include -I/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/uapi -I./arch/x86/include/generated/uapi -I/usr/src/linux-headers-4.19.0-10-common/include/uapi -I./include/generated/uapi -include /usr/src/linux-headers-4.19.0-10-common/include/linux/kconfig.h -include /usr/src/linux-headers-4.19.0-10-common/include/linux/compiler_types.h -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -fshort-wchar -Werror-implicit-function-declaration -Wno-format-security -std=gnu89 -fno-PIE -mno-ss
e -mno-mmx -mno-sse2 -mno-3dnow -mno-avx -m64 -falign-jumps=1 -falign-loops=1 -mno-80387 -mno-fp-ret-in-387 -mpreferred-stack-boundary=3 -mskip-rax-setup -mtune=generic -mno-red-zone -mcmodel=kernel -funit-at-a-time -DCONFIG_X86_X32_ABI -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -DCONFIG_AS_CFI_SECTIONS=1 -DCONFIG_AS_FXSAVEQ=1 -DCONFIG_AS_SSSE3=1 -DCONFIG_AS_CRC32=1 -DCONFIG_AS_AVX=1 -DCONFIG_AS_AVX2=1 -DCONFIG_AS_AVX512=1 -DCONFIG_AS_SHA1_NI=1 -DCONFIG_AS_SHA256_NI=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mindirect-branch=thunk-extern -mindirect-branch-register -fno-jump-tables -fno-delete-null-pointer-checks -Wno-frame-address -Wno-format-truncation -Wno-format-overflow -Wno-int-in-bool-context -O2 --param=allow-store-data-races=0 -Wframe-larger-than=2048 -fstack-protector-strong -Wno-unused-but-set-variable -Wno-unused-const-variable -fno-var-tracking-assignments -g -pg -mrecord-mcount -mfentry -DCC_USING_FENTRY -Wdeclaration-after-statement -Wno-pointer-sign -Wno-stringop-truncatio
n -Wno-array-bounds -Wno-stringop-overflow -Wno-restrict -Wno-maybe-uninitialized -fno-strict-overflow -fno-merge-all-constants -fmerge-constants -fno-stack-check -fconserve-stack -Werror=implicit-int -Werror=strict-prototypes -Werror=date-time -Werror=incompatible-pointer-types -Werror=designated-init -fmacro-prefix-map=/usr/src/linux-headers-4.19.0-10-common/= -fcf-protection=none -Wno-packed-not-aligned -DNV_MODULE_INSTANCE=0 -DNV_BUILD_MODULE_INSTANCES=0 -UDEBUG -U_DEBUG -DNDEBUG -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -Wall -MD -Wsign-compare -Wno-cast-qual -Wno-error -D__KERNEL__ -DMODULE -DNVRM -DNV_VERSION_STRING=\"340.108\" -Wno-unused-function -Wuninitialized -fno-strict-aliasing -mno-red-zone -mcmodel=kernel -DNV_UVM_ENABLE -D__linux__ -DNV_DEV_NAME=\"nvidia\" -DMODULE -DKBUILD_BASENAME='"nv"' -DKBUILD_MODNAME='"nvidia"' -c -o /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.tmp_nv.o /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv.c
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/little_endian.h:11,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/uapi/asm/byteorder.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/asm-generic/bitops/le.h:6,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/bitops.h:510,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/bitops.h:19,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/kernel.h:11,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:45,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv.c:13:
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h: In function 'cpu_to_be32_array':
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h:195:16: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
for (i = 0; i < len; i++)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h: In function 'be32_to_cpu_array':
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h:203:16: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
for (i = 0; i < len; i++)
^
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv.c:13:
/usr/src/linux-headers-4.19.0-10-common/include/linux/thread_info.h: In function 'check_copy_size':
/usr/src/linux-headers-4.19.0-10-common/include/linux/thread_info.h:141:29: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
if (unlikely(sz >= 0 && sz < bytes)) {
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:77:42: note: in definition of macro 'unlikely'
# define unlikely(x) __builtin_expect(!!(x), 0)
^
/usr/src/linux-headers-4.19.0-10-common/include/asm-generic/qrwlock.h: In function 'queued_write_trylock':
/usr/src/linux-headers-4.19.0-10-common/include/asm-generic/qrwlock.h:75:36: warning: comparison of integer expressions of different signedness: 'int' and 'u32' {aka 'unsigned int'} [-Wsign-compare]
cnts, cnts | _QW_LOCKED) == cnts);
^~
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:76:40: note: in definition of macro 'likely'
# define likely(x) __builtin_expect(!!(x), 1)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/mmzone.h: In function 'next_zones_zonelist':
/usr/src/linux-headers-4.19.0-10-common/include/linux/mmzone.h:985:44: warning: comparison of integer expressions of different signedness: 'int' and 'enum zone_type' [-Wsign-compare]
if (likely(!nodes && zonelist_zone_idx(z) <= highest_zoneidx))
^~
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:76:40: note: in definition of macro 'likely'
# define likely(x) __builtin_expect(!!(x), 1)
^
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv.c:13:
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h: In function 'percpu_ref_get_many':
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:420:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_1(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:378:11: note: in expansion of macro 'this_cpu_add_1'
case 1: stem##1(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:421:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_2(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:379:11: note: in expansion of macro 'this_cpu_add_2'
case 2: stem##2(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:422:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_4(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:380:11: note: in expansion of macro 'this_cpu_add_4'
case 4: stem##4(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:480:35: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_8(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:381:11: note: in expansion of macro 'this_cpu_add_8'
case 8: stem##8(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h: In function 'percpu_ref_put_many':
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:420:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_1(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:378:11: note: in expansion of macro 'this_cpu_add_1'
case 1: stem##1(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:421:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_2(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:379:11: note: in expansion of macro 'this_cpu_add_2'
case 2: stem##2(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:422:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_4(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:380:11: note: in expansion of macro 'this_cpu_add_4'
case 4: stem##4(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:480:35: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_8(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:381:11: note: in expansion of macro 'this_cpu_add_8'
case 8: stem##8(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/page_ref.h:7,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/mm.h:26,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:68,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv.c:13:
/usr/src/linux-headers-4.19.0-10-common/include/linux/page-flags.h: In function 'PagePoisoned':
/usr/src/linux-headers-4.19.0-10-common/include/linux/page-flags.h:162:21: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'long int' [-Wsign-compare]
return page->flags == PAGE_POISON_PATTERN;
^~
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv.c:13:
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h: In function 'percpu_up_read_preempt_enable':
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:401:34: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_1(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:378:11: note: in expansion of macro 'raw_cpu_add_1'
case 1: stem##1(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:402:34: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_2(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:379:11: note: in expansion of macro 'raw_cpu_add_2'
case 2: stem##2(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:403:34: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_4(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:380:11: note: in expansion of macro 'raw_cpu_add_4'
case 4: stem##4(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:471:35: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_8(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:381:11: note: in expansion of macro 'raw_cpu_add_8'
case 8: stem##8(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/paravirt.h:17,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/irqflags.h:72,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/irqflags.h:16,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/rcupdate.h:39,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/rculist.h:11,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/pid.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:14,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv.c:13:
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h: In function 'zone_numa_state_snapshot':
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:243:9: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
(cpu) < nr_cpu_ids;)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:778:36: note: in expansion of macro 'for_each_cpu'
#define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask)
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h:156:2: note: in expansion of macro 'for_each_online_cpu'
for_each_online_cpu(cpu)
^~~~~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h: In function 'zone_page_state_snapshot':
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:243:9: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
(cpu) < nr_cpu_ids;)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:778:36: note: in expansion of macro 'for_each_cpu'
#define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask)
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h:221:2: note: in expansion of macro 'for_each_online_cpu'
for_each_online_cpu(cpu)
^~~~~~~~~~~~~~~~~~~
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/efi.h:20,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:173,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv.c:13:
/usr/src/linux-headers-4.19.0-10-common/include/linux/rtc.h: In function 'rtc_tv_nsec_ok':
/usr/src/linux-headers-4.19.0-10-common/include/linux/rtc.h:245:22: warning: comparison of integer expressions of different signedness: 'long int' and 'long unsigned int' [-Wsign-compare]
if (to_set->tv_nsec < TIME_SET_NSEC_FUZZ) {
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/rtc.h:250:22: warning: comparison of integer expressions of different signedness: 'long int' and 'long unsigned int' [-Wsign-compare]
if (to_set->tv_nsec > NSEC_PER_SEC - TIME_SET_NSEC_FUZZ) {
^
./tools/objtool/objtool orc generate --module --no-fp --retpoline "/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.tmp_nv.o";
cc -Wp,-MD,/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.nv-acpi.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/8/include -I/usr/src/linux-headers-4.19.0-10-common/arch/x86/include -I./arch/x86/include/generated -I/usr/src/linux-headers-4.19.0-10-common/include -I./include -I/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/uapi -I./arch/x86/include/generated/uapi -I/usr/src/linux-headers-4.19.0-10-common/include/uapi -I./include/generated/uapi -include /usr/src/linux-headers-4.19.0-10-common/include/linux/kconfig.h -include /usr/src
/linux-headers-4.19.0-10-common/include/linux/compiler_types.h -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -fshort-wchar -Werror-implicit-function-declaration -Wno-format-security -std=gnu89 -fno-PIE -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx -m64 -falign-jumps=1 -falign-loops=1 -mno-80387 -mno-fp-ret-in-387 -mpreferred-stack-boundary=3 -mskip-rax-setup -mtune=generic -mno-red-zone -mcmodel=kernel -funit-at-a-time -DCONFIG_X86_X32_ABI -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -DCONFIG_AS_CFI_SECTIONS=1 -DCONFIG_AS_FXSAVEQ=1 -DCONFIG_AS_SSSE3=1 -DCONFIG_AS_CRC32=1 -DCONFIG_AS_AVX=1 -DCONFIG_AS_AVX2=1 -DCONFIG_AS_AVX512=1 -DCONFIG_AS_SHA1_NI=1 -DCONFIG_AS_SHA256_NI=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mindirect-branch=thunk-extern -mindirect-branch-register -fno-jump-tables -fno-delete-null-pointer-checks -Wno-frame-address
-Wno-format-truncation -Wno-format-overflow -Wno-int-in-bool-context -O2 --param=allow-store-data-races=0 -Wframe-larger-than=2048 -fstack-protector-strong -Wno-unused-but-set-variable -Wno-unused-const-variable -fno-var-tracking-assignments -g -pg -mrecord-mcount -mfentry -DCC_USING_FENTRY -Wdeclaration-after-statement -Wno-pointer-sign -Wno-stringop-truncation -Wno-array-bounds -Wno-stringop-overflow -Wno-restrict -Wno-maybe-uninitialized -fno-strict-overflow -fno-merge-all-constants -fmerge-constants -fno-stack-check -fconserve-stack -Werror=implicit-int -Werror=strict-prototypes -Werror=date-time -Werror=incompatible-pointer-types -Werror=designated-init -fmacro-prefix-map=/usr/src/linux-headers-4.19.0-10-common/= -fcf-protection=none -Wno-packed-not-aligned -DNV_MODULE_INSTANCE=0 -DNV_BUILD_MODULE_INSTANCES=0 -UDEBUG -U_DEBUG -DNDEBUG -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -Wall -MD -Wsign-compare -Wno-cast-qual -Wno-error -D__KERNEL__ -DMODULE -DNVRM -DNV_VERSION_STRING=\"340.108\" -Wno-un
used-function -Wuninitialized -fno-strict-aliasing -mno-red-zone -mcmodel=kernel -DNV_UVM_ENABLE -D__linux__ -DNV_DEV_NAME=\"nvidia\" -DMODULE -DKBUILD_BASENAME='"nv_acpi"' -DKBUILD_MODNAME='"nvidia"' -c -o /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.tmp_nv-acpi.o /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-acpi.c
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/little_endian.h:11,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/uapi/asm/byteorder.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/asm-generic/bitops/le.h:6,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/bitops.h:510,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/bitops.h:19,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/kernel.h:11,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:45,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-acpi.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h: In function 'cpu_to_be32_array':
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h:195:16: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
for (i = 0; i < len; i++)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h: In function 'be32_to_cpu_array':
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h:203:16: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
for (i = 0; i < len; i++)
^
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-acpi.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/thread_info.h: In function 'check_copy_size':
/usr/src/linux-headers-4.19.0-10-common/include/linux/thread_info.h:141:29: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
if (unlikely(sz >= 0 && sz < bytes)) {
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:77:42: note: in definition of macro 'unlikely'
# define unlikely(x) __builtin_expect(!!(x), 0)
^
/usr/src/linux-headers-4.19.0-10-common/include/asm-generic/qrwlock.h: In function 'queued_write_trylock':
/usr/src/linux-headers-4.19.0-10-common/include/asm-generic/qrwlock.h:75:36: warning: comparison of integer expressions of different signedness: 'int' and 'u32' {aka 'unsigned int'} [-Wsign-compare]
cnts, cnts | _QW_LOCKED) == cnts);
^~
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:76:40: note: in definition of macro 'likely'
# define likely(x) __builtin_expect(!!(x), 1)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/mmzone.h: In function 'next_zones_zonelist':
/usr/src/linux-headers-4.19.0-10-common/include/linux/mmzone.h:985:44: warning: comparison of integer expressions of different signedness: 'int' and 'enum zone_type' [-Wsign-compare]
if (likely(!nodes && zonelist_zone_idx(z) <= highest_zoneidx))
^~
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:76:40: note: in definition of macro 'likely'
# define likely(x) __builtin_expect(!!(x), 1)
^
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-acpi.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h: In function 'percpu_ref_get_many':
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:420:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_1(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:378:11: note: in expansion of macro 'this_cpu_add_1'
case 1: stem##1(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:421:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_2(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:379:11: note: in expansion of macro 'this_cpu_add_2'
case 2: stem##2(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:422:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_4(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:380:11: note: in expansion of macro 'this_cpu_add_4'
case 4: stem##4(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:480:35: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_8(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:381:11: note: in expansion of macro 'this_cpu_add_8'
case 8: stem##8(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h: In function 'percpu_ref_put_many':
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:420:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_1(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:378:11: note: in expansion of macro 'this_cpu_add_1'
case 1: stem##1(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:421:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_2(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:379:11: note: in expansion of macro 'this_cpu_add_2'
case 2: stem##2(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:422:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_4(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:380:11: note: in expansion of macro 'this_cpu_add_4'
case 4: stem##4(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:480:35: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_8(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:381:11: note: in expansion of macro 'this_cpu_add_8'
case 8: stem##8(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/page_ref.h:7,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/mm.h:26,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:68,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-acpi.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/page-flags.h: In function 'PagePoisoned':
/usr/src/linux-headers-4.19.0-10-common/include/linux/page-flags.h:162:21: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'long int' [-Wsign-compare]
return page->flags == PAGE_POISON_PATTERN;
^~
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-acpi.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h: In function 'percpu_up_read_preempt_enable':
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:401:34: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_1(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:378:11: note: in expansion of macro 'raw_cpu_add_1'
case 1: stem##1(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:402:34: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_2(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:379:11: note: in expansion of macro 'raw_cpu_add_2'
case 2: stem##2(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:403:34: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_4(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:380:11: note: in expansion of macro 'raw_cpu_add_4'
case 4: stem##4(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:471:35: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_8(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:381:11: note: in expansion of macro 'raw_cpu_add_8'
case 8: stem##8(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/paravirt.h:17,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/irqflags.h:72,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/irqflags.h:16,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/rcupdate.h:39,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/rculist.h:11,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/pid.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:14,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-acpi.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h: In function 'zone_numa_state_snapshot':
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:243:9: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
(cpu) < nr_cpu_ids;)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:778:36: note: in expansion of macro 'for_each_cpu'
#define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask)
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h:156:2: note: in expansion of macro 'for_each_online_cpu'
for_each_online_cpu(cpu)
^~~~~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h: In function 'zone_page_state_snapshot':
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:243:9: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
(cpu) < nr_cpu_ids;)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:778:36: note: in expansion of macro 'for_each_cpu'
#define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask)
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h:221:2: note: in expansion of macro 'for_each_online_cpu'
for_each_online_cpu(cpu)
^~~~~~~~~~~~~~~~~~~
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/efi.h:20,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:173,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-acpi.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/rtc.h: In function 'rtc_tv_nsec_ok':
/usr/src/linux-headers-4.19.0-10-common/include/linux/rtc.h:245:22: warning: comparison of integer expressions of different signedness: 'long int' and 'long unsigned int' [-Wsign-compare]
if (to_set->tv_nsec < TIME_SET_NSEC_FUZZ) {
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/rtc.h:250:22: warning: comparison of integer expressions of different signedness: 'long int' and 'long unsigned int' [-Wsign-compare]
if (to_set->tv_nsec > NSEC_PER_SEC - TIME_SET_NSEC_FUZZ) {
^
./tools/objtool/objtool orc generate --module --no-fp --retpoline "/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.tmp_nv-acpi.o";
cc -Wp,-MD,/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.nv-chrdev.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/8/include -I/usr/src/linux-headers-4.19.0-10-common/arch/x86/include -I./arch/x86/include/generated -I/usr/src/linux-headers-4.19.0-10-common/include -I./include -I/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/uapi -I./arch/x86/include/generated/uapi -I/usr/src/linux-headers-4.19.0-10-common/include/uapi -I./include/generated/uapi -include /usr/src/linux-headers-4.19.0-10-common/include/linux/kconfig.h -include /usr/src/linux-headers-4.19.0-10-common/include/linux/compiler_types.h -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -fshort-wchar -Werror-implicit-function-declaration -Wno-format-security -std=gnu89 -fno-PIE -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx -m64 -falign-jumps=1 -falign-loops=1 -mno-80387 -mno-fp-ret-in-387 -mpreferred-stack-boundary=3 -mskip-rax-setup -mtune=generic -mno-red-zone -mcmodel=kernel -funit-at-a-time -DCONFIG_X86_X32_ABI -DCO
NFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -DCONFIG_AS_CFI_SECTIONS=1 -DCONFIG_AS_FXSAVEQ=1 -DCONFIG_AS_SSSE3=1 -DCONFIG_AS_CRC32=1 -DCONFIG_AS_AVX=1 -DCONFIG_AS_AVX2=1 -DCONFIG_AS_AVX512=1 -DCONFIG_AS_SHA1_NI=1 -DCONFIG_AS_SHA256_NI=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mindirect-branch=thunk-extern -mindirect-branch-register -fno-jump-tables -fno-delete-null-pointer-checks -Wno-frame-address -Wno-format-truncation -Wno-format-overflow -Wno-int-in-bool-context -O2 --param=allow-store-data-races=0 -Wframe-larger-than=2048 -fstack-protector-strong -Wno-unused-but-set-variable -Wno-unused-const-variable -fno-var-tracking-assignments -g -pg -mrecord-mcount -mfentry -DCC_USING_FENTRY -Wdeclaration-after-statement -Wno-pointer-sign -Wno-stringop-truncation -Wno-array-bounds -Wno-stringop-overflow -Wno-restrict -Wno-maybe-uninitialized -fno-strict-overflow -fno-merge-all-constants -fmerge-constants -fno-stack-check -fconserve-stack -Werror=implicit-int -Werror=strict-prototypes -Werror=date-t
ime -Werror=incompatible-pointer-types -Werror=designated-init -fmacro-prefix-map=/usr/src/linux-headers-4.19.0-10-common/= -fcf-protection=none -Wno-packed-not-aligned -DNV_MODULE_INSTANCE=0 -DNV_BUILD_MODULE_INSTANCES=0 -UDEBUG -U_DEBUG -DNDEBUG -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -Wall -MD -Wsign-compare -Wno-cast-qual -Wno-error -D__KERNEL__ -DMODULE -DNVRM -DNV_VERSION_STRING=\"340.108\" -Wno-unused-function -Wuninitialized -fno-strict-aliasing -mno-red-zone -mcmodel=kernel -DNV_UVM_ENABLE -D__linux__ -DNV_DEV_NAME=\"nvidia\" -DMODULE -DKBUILD_BASENAME='"nv_chrdev"' -DKBUILD_MODNAME='"nvidia"' -c -o /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.tmp_nv-chrdev.o /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-chrdev.c
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/little_endian.h:11,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/uapi/asm/byteorder.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/asm-generic/bitops/le.h:6,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/bitops.h:510,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/bitops.h:19,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/kernel.h:11,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:45,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-chrdev.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h: In function 'cpu_to_be32_array':
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h:195:16: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
for (i = 0; i < len; i++)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h: In function 'be32_to_cpu_array':
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h:203:16: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
for (i = 0; i < len; i++)
^
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-chrdev.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/thread_info.h: In function 'check_copy_size':
/usr/src/linux-headers-4.19.0-10-common/include/linux/thread_info.h:141:29: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
if (unlikely(sz >= 0 && sz < bytes)) {
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:77:42: note: in definition of macro 'unlikely'
# define unlikely(x) __builtin_expect(!!(x), 0)
^
/usr/src/linux-headers-4.19.0-10-common/include/asm-generic/qrwlock.h: In function 'queued_write_trylock':
/usr/src/linux-headers-4.19.0-10-common/include/asm-generic/qrwlock.h:75:36: warning: comparison of integer expressions of different signedness: 'int' and 'u32' {aka 'unsigned int'} [-Wsign-compare]
cnts, cnts | _QW_LOCKED) == cnts);
^~
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:76:40: note: in definition of macro 'likely'
# define likely(x) __builtin_expect(!!(x), 1)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/mmzone.h: In function 'next_zones_zonelist':
/usr/src/linux-headers-4.19.0-10-common/include/linux/mmzone.h:985:44: warning: comparison of integer expressions of different signedness: 'int' and 'enum zone_type' [-Wsign-compare]
if (likely(!nodes && zonelist_zone_idx(z) <= highest_zoneidx))
^~
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:76:40: note: in definition of macro 'likely'
# define likely(x) __builtin_expect(!!(x), 1)
^
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-chrdev.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h: In function 'percpu_ref_get_many':
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:420:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_1(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:378:11: note: in expansion of macro 'this_cpu_add_1'
case 1: stem##1(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:421:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_2(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:379:11: note: in expansion of macro 'this_cpu_add_2'
case 2: stem##2(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:422:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_4(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:380:11: note: in expansion of macro 'this_cpu_add_4'
case 4: stem##4(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:480:35: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_8(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:381:11: note: in expansion of macro 'this_cpu_add_8'
case 8: stem##8(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:183:3: note: in expansion of macro 'this_cpu_add'
this_cpu_add(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h: In function 'percpu_ref_put_many':
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:420:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_1(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:378:11: note: in expansion of macro 'this_cpu_add_1'
case 1: stem##1(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:421:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_2(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:379:11: note: in expansion of macro 'this_cpu_add_2'
case 2: stem##2(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:422:34: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_4(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:380:11: note: in expansion of macro 'this_cpu_add_4'
case 4: stem##4(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:480:35: note: in expansion of macro 'percpu_add_op'
#define this_cpu_add_8(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:381:11: note: in expansion of macro 'this_cpu_add_8'
case 8: stem##8(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:510:33: note: in expansion of macro '__pcpu_size_call'
#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:520:33: note: in expansion of macro 'this_cpu_add'
#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-refcount.h:282:3: note: in expansion of macro 'this_cpu_sub'
this_cpu_sub(*percpu_count, nr);
^~~~~~~~~~~~
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/page_ref.h:7,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/mm.h:26,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:68,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-chrdev.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/page-flags.h: In function 'PagePoisoned':
/usr/src/linux-headers-4.19.0-10-common/include/linux/page-flags.h:162:21: warning: comparison of integer expressions of different signedness: 'long unsigned int' and 'long int' [-Wsign-compare]
return page->flags == PAGE_POISON_PATTERN;
^~
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-chrdev.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h: In function 'percpu_up_read_preempt_enable':
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:401:34: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_1(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:378:11: note: in expansion of macro 'raw_cpu_add_1'
case 1: stem##1(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:402:34: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_2(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:379:11: note: in expansion of macro 'raw_cpu_add_2'
case 2: stem##2(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:403:34: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_4(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:380:11: note: in expansion of macro 'raw_cpu_add_4'
case 4: stem##4(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:131:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
((val) == 1 || (val) == -1)) ? \
^~
/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:471:35: note: in expansion of macro 'percpu_add_op'
#define raw_cpu_add_8(pcp, val) percpu_add_op((pcp), val)
^~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:381:11: note: in expansion of macro 'raw_cpu_add_8'
case 8: stem##8(variable, __VA_ARGS__);break; \
^~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:423:32: note: in expansion of macro '__pcpu_size_call'
#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
^~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:459:2: note: in expansion of macro 'raw_cpu_add'
raw_cpu_add(pcp, val); \
^~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:497:34: note: in expansion of macro '__this_cpu_add'
#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-defs.h:499:30: note: in expansion of macro '__this_cpu_sub'
#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
^~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/percpu-rwsem.h:97:3: note: in expansion of macro '__this_cpu_dec'
__this_cpu_dec(*sem->read_count);
^~~~~~~~~~~~~~
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/paravirt.h:17,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/irqflags.h:72,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/irqflags.h:16,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/rcupdate.h:39,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/rculist.h:11,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/pid.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:14,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-chrdev.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h: In function 'zone_numa_state_snapshot':
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:243:9: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
(cpu) < nr_cpu_ids;)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:778:36: note: in expansion of macro 'for_each_cpu'
#define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask)
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h:156:2: note: in expansion of macro 'for_each_online_cpu'
for_each_online_cpu(cpu)
^~~~~~~~~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h: In function 'zone_page_state_snapshot':
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:243:9: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
(cpu) < nr_cpu_ids;)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/cpumask.h:778:36: note: in expansion of macro 'for_each_cpu'
#define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask)
^~~~~~~~~~~~
/usr/src/linux-headers-4.19.0-10-common/include/linux/vmstat.h:221:2: note: in expansion of macro 'for_each_online_cpu'
for_each_online_cpu(cpu)
^~~~~~~~~~~~~~~~~~~
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/efi.h:20,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:173,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-chrdev.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/rtc.h: In function 'rtc_tv_nsec_ok':
/usr/src/linux-headers-4.19.0-10-common/include/linux/rtc.h:245:22: warning: comparison of integer expressions of different signedness: 'long int' and 'long unsigned int' [-Wsign-compare]
if (to_set->tv_nsec < TIME_SET_NSEC_FUZZ) {
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/rtc.h:250:22: warning: comparison of integer expressions of different signedness: 'long int' and 'long unsigned int' [-Wsign-compare]
if (to_set->tv_nsec > NSEC_PER_SEC - TIME_SET_NSEC_FUZZ) {
^
./tools/objtool/objtool orc generate --module --no-fp --retpoline "/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.tmp_nv-chrdev.o";
cc -Wp,-MD,/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.nv-cray.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/8/include -I/usr/src/linux-headers-4.19.0-10-common/arch/x86/include -I./arch/x86/include/generated -I/usr/src/linux-headers-4.19.0-10-common/include -I./include -I/usr/src/linux-headers-4.19.0-10-common/arch/x86/include/uapi -I./arch/x86/include/generated/uapi -I/usr/src/linux-headers-4.19.0-10-common/include/uapi -I./include/generated/uapi -include /usr/src/linux-headers-4.19.0-10-common/include/linux/kconfig.h -include /usr/src/linux-headers-4.19.0-10-common/include/linux/compiler_types.h -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/ker
nel -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -fshort-wchar -Werror-implicit-function-declaration -Wno-format-security -std=gnu89 -fno-PIE -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx -m64 -falign-jumps=1 -falign-loops=1 -mno-80387 -mno-fp-ret-in-387 -mpreferred-stack-boundary=3 -mskip-rax-setup -mtune=generic -mno-red-zone -mcmodel=kernel -funit-at-a-time -DCONFIG_X86_X32_ABI -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -DCONFIG_AS_CFI_SECTIONS=1 -DCONFIG_AS_FXSAVEQ=1 -DCONFIG_AS_SSSE3=1 -DCONFIG_AS_CRC32=1 -DCONFIG_AS_AVX=1 -DCONFIG_AS_AVX2=1 -DCONFIG_AS_AVX512=1 -DCONFIG_AS_SHA1_NI=1 -DCONFIG_AS_SHA256_NI=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mindirect-branch=thunk-extern -mindirect-branch-register -fno-jump-tables -fno-delete-null-pointer-checks -Wno-frame-address -Wno-format-truncation -Wno-format-overflow -Wno-int-in-bool-context -O2 --param=allow-store-data-races=0 -Wframe-larger-than=2048 -fstack-protector-strong -Wno-unu
sed-but-set-variable -Wno-unused-const-variable -fno-var-tracking-assignments -g -pg -mrecord-mcount -mfentry -DCC_USING_FENTRY -Wdeclaration-after-statement -Wno-pointer-sign -Wno-stringop-truncation -Wno-array-bounds -Wno-stringop-overflow -Wno-restrict -Wno-maybe-uninitialized -fno-strict-overflow -fno-merge-all-constants -fmerge-constants -fno-stack-check -fconserve-stack -Werror=implicit-int -Werror=strict-prototypes -Werror=date-time -Werror=incompatible-pointer-types -Werror=designated-init -fmacro-prefix-map=/usr/src/linux-headers-4.19.0-10-common/= -fcf-protection=none -Wno-packed-not-aligned -DNV_MODULE_INSTANCE=0 -DNV_BUILD_MODULE_INSTANCES=0 -UDEBUG -U_DEBUG -DNDEBUG -I/tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel -Wall -MD -Wsign-compare -Wno-cast-qual -Wno-error -D__KERNEL__ -DMODULE -DNVRM -DNV_VERSION_STRING=\"340.108\" -Wno-unused-function -Wuninitialized -fno-strict-aliasing -mno-red-zone -mcmodel=kernel -DNV_UVM_ENABLE -D__linux__ -DNV_DEV_NAME=\"nvidia\" -DMODULE -DKBUILD_BASENAME='
"nv_cray"' -DKBUILD_MODNAME='"nvidia"' -c -o /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/.tmp_nv-cray.o /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-cray.c
In file included from /usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/little_endian.h:11,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/uapi/asm/byteorder.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/asm-generic/bitops/le.h:6,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/bitops.h:510,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/bitops.h:19,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/kernel.h:11,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/percpu.h:45,
from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-cray.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h: In function 'cpu_to_be32_array':
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h:195:16: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
for (i = 0; i < len; i++)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h: In function 'be32_to_cpu_array':
/usr/src/linux-headers-4.19.0-10-common/include/linux/byteorder/generic.h:203:16: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
for (i = 0; i < len; i++)
^
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:5,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-cray.c:15:
/usr/src/linux-headers-4.19.0-10-common/include/linux/thread_info.h: In function 'check_copy_size':
/usr/src/linux-headers-4.19.0-10-common/include/linux/thread_info.h:141:29: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
if (unlikely(sz >= 0 && sz < bytes)) {
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:77:42: note: in definition of macro 'unlikely'
# define unlikely(x) __builtin_expect(!!(x), 0)
^
/usr/src/linux-headers-4.19.0-10-common/include/asm-generic/qrwlock.h: In function 'queued_write_trylock':
/usr/src/linux-headers-4.19.0-10-common/include/asm-generic/qrwlock.h:75:36: warning: comparison of integer expressions of different signedness: 'int' and 'u32' {aka 'unsigned int'} [-Wsign-compare]
cnts, cnts | _QW_LOCKED) == cnts);
^~
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:76:40: note: in definition of macro 'likely'
# define likely(x) __builtin_expect(!!(x), 1)
^
/usr/src/linux-headers-4.19.0-10-common/include/linux/mmzone.h: In function 'next_zones_zonelist':
/usr/src/linux-headers-4.19.0-10-common/include/linux/mmzone.h:985:44: warning: comparison of integer expressions of different signedness: 'int' and 'enum zone_type' [-Wsign-compare]
if (likely(!nodes && zonelist_zone_idx(z) <= highest_zoneidx))
^~
/usr/src/linux-headers-4.19.0-10-common/include/linux/compiler.h:76:40: note: in definition of macro 'likely'
# define likely(x) __builtin_expect(!!(x), 1)
^
In file included from /usr/src/linux-headers-4.19.0-10-common/arch/x86/include/asm/current.h:6,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/sched.h:12,
from /usr/src/linux-headers-4.19.0-10-common/include/linux/utsname.h:6,
from /tmp/selfgz560/NVIDIA-Linux-x86_64-340.108/kernel/nv-linux.h:44,
from /tmp/selfgz560/NVIDIA-Li |