From owner-freebsd-amd64@FreeBSD.ORG Sun May 5 22:50:01 2013 Return-Path: Delivered-To: freebsd-amd64@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 60963FE3 for ; Sun, 5 May 2013 22:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 422B5ED for ; Sun, 5 May 2013 22:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r45Mo0Zh073970 for ; Sun, 5 May 2013 22:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r45Mo04k073969; Sun, 5 May 2013 22:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 5 May 2013 22:50:00 GMT Resent-Message-Id: <201305052250.r45Mo04k073969@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-amd64@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sofian Brabez Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9AE70F30 for ; Sun, 5 May 2013 22:43:56 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-we0-x230.google.com (mail-we0-x230.google.com [IPv6:2a00:1450:400c:c03::230]) by mx1.freebsd.org (Postfix) with ESMTP id 36D7A99 for ; Sun, 5 May 2013 22:43:56 +0000 (UTC) Received: by mail-we0-f176.google.com with SMTP id r6so2605963wey.35 for ; Sun, 05 May 2013 15:43:55 -0700 (PDT) Received: from localhost ([2a01:e35:2ee4:8db0:a11:96ff:fe8c:77ec]) by mx.google.com with ESMTPSA id g8sm11606019wiy.4.2013.05.05.15.43.54 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 05 May 2013 15:43:54 -0700 (PDT) Message-Id: <5186e0aa.4852b40a.6e3e.43a7@mx.google.com> Date: Sun, 05 May 2013 15:43:54 -0700 (PDT) From: Sofian Brabez Sender: Sofian Brabez To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: amd64/178357: [patch] export CPU physical and virtual address sizes in sysctl oids using do_cpuid X-Mailman-Approved-At: Sun, 05 May 2013 23:29:16 +0000 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Sofian Brabez List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 May 2013 22:50:01 -0000 >Number: 178357 >Category: amd64 >Synopsis: [patch] export CPU physical and virtual address sizes in sysctl oids using do_cpuid >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 05 22:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD ogoshi.lan 10.0-CURRENT FreeBSD 10.0-CURRENT #3 r250287M: Sun May 5 21:59:15 CEST 2013 root@ogoshi.lan:/usr/obj/usr/home/sbz/freebsd/svn/src/sys/GENERIC amd64 >Description: This patch export CPU Physical and Virtual address sizes through the sysctl interface using do_cpuid function. It also patch the sys/modules/linprocfs module add this information in the /usr/compat/linux/proc/cpuinfo output like it's done in Linux /proc/cpuinfo. More details can be found here: http://people.freebsd.org/~sbz/cpu/ >How-To-Repeat: >Fix: Apply the given patch. --- address_sizes.diff begins here --- Index: amd64/amd64/identcpu.c =================================================================== --- amd64/amd64/identcpu.c (revision 250287) +++ amd64/amd64/identcpu.c (working copy) @@ -109,6 +109,12 @@ SYSCTL_INT(_hw, OID_AUTO, clockrate, CTLFLAG_RD, &hw_clockrate, 0, "CPU instruction clock rate"); +SYSCTL_UINT(_machdep, OID_AUTO, cpu_physical_address_bits, CTLFLAG_RD, + &cpu_pma_bits, 0, "CPU physical address bits"); + +SYSCTL_UINT(_machdep, OID_AUTO, cpu_virtual_address_bits, CTLFLAG_RD, + &cpu_vma_bits, 0, "CPU virtual address bits"); + static eventhandler_tag tsc_post_tag; static char cpu_brand[48]; @@ -516,6 +522,16 @@ cpu_feature = regs[3]; cpu_feature2 = regs[2]; + /* Intel CPUID Specification chapter 5.2.7 + * eax=0x80000008 + * */ + do_cpuid(0x80000008, regs); + + /* upper bits are virtual size */ + cpu_vma_bits = ((regs[0] >> 8) & 0xFF); + /* lower bits are physical size */ + cpu_pma_bits = (regs[0] & 0xFF); + /* * Clear "Limit CPUID Maxval" bit and get the largest standard CPUID * function number again if it is set from BIOS. It is necessary Index: amd64/amd64/initcpu.c =================================================================== --- amd64/amd64/initcpu.c (revision 250287) +++ amd64/amd64/initcpu.c (working copy) @@ -66,10 +66,12 @@ u_int cpu_high; /* Highest arg to CPUID */ u_int cpu_exthigh; /* Highest arg to extended CPUID */ u_int cpu_id; /* Stepping ID */ +u_int cpu_pma_bits; /* CPU physical address bits */ u_int cpu_procinfo; /* HyperThreading Info / Brand Index / CLFUSH */ u_int cpu_procinfo2; /* Multicore info */ char cpu_vendor[20]; /* CPU Origin code */ u_int cpu_vendor_id; /* CPU vendor ID */ +u_int cpu_vma_bits; /* CPU virtual address bits */ u_int cpu_fxsr; /* SSE enabled */ u_int cpu_mxcsr_mask; /* Valid bits in mxcsr */ u_int cpu_clflush_line_size = 32; Index: amd64/include/md_var.h =================================================================== --- amd64/include/md_var.h (revision 250287) +++ amd64/include/md_var.h (working copy) @@ -54,10 +54,12 @@ extern u_int cpu_id; extern u_int cpu_max_ext_state_size; extern u_int cpu_mxcsr_mask; +extern u_int cpu_pma_bits; extern u_int cpu_procinfo; extern u_int cpu_procinfo2; extern char cpu_vendor[]; extern u_int cpu_vendor_id; +extern u_int cpu_vma_bits; extern char ctx_switch_xsave[]; extern char kstack[]; extern char sigcode[]; Index: compat/linprocfs/linprocfs.c =================================================================== --- compat/linprocfs/linprocfs.c (revision 250287) +++ compat/linprocfs/linprocfs.c (working copy) @@ -310,6 +310,12 @@ fqmhz, fqkhz, fqmhz, fqkhz); } + if (cpu_vma_bits != 0 && cpu_vma_bits != 0) { + sbuf_printf(sb, + "address sizes\t: %u bits physical, %u bits virtual\n", + cpu_pma_bits, cpu_vma_bits); + } + return (0); } #endif /* __i386__ || __amd64__ */ --- address_sizes.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-amd64@FreeBSD.ORG Mon May 6 11:06:41 2013 Return-Path: Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 828328F7 for ; Mon, 6 May 2013 11:06:41 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 6378A9EE for ; Mon, 6 May 2013 11:06:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r46B6fJE023696 for ; Mon, 6 May 2013 11:06:41 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r46B6erF023694 for freebsd-amd64@FreeBSD.org; Mon, 6 May 2013 11:06:40 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 6 May 2013 11:06:40 GMT Message-Id: <201305061106.r46B6erF023694@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-amd64@FreeBSD.org Subject: Current problem reports assigned to freebsd-amd64@FreeBSD.org X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 May 2013 11:06:41 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/178357 amd64 [patch] export CPU physical and virtual address sizes o amd64/178247 amd64 linker.hints erroneously included in 9.1-RELEASE-p3 bi o amd64/176835 amd64 Fatal trap 12: page fault while in kernel mode o amd64/176474 amd64 kernel panic o amd64/175725 amd64 Audio through USB has not as good hi quality as it has o amd64/175655 amd64 When enabled tty console OS hang during boot o amd64/175370 amd64 kernel panic the rebuild kernel with vimage options in o amd64/175282 amd64 Freebsd 9.1 release amd64, mb Intel D525MW, not worked o amd64/175129 amd64 laptop won't suspend on lid close o amd64/174679 amd64 Intel i5 laptop overheats and shuts down [regression] o amd64/173869 amd64 buildworld breaks with clang o amd64/173680 amd64 9.1rc3 installer hangs at "rootpass" o amd64/173502 amd64 Patch inhibition of warnings that appear in the combin o amd64/173465 amd64 FreeBSD 9.1 restarts in random fashion after upgrade t o amd64/173311 amd64 FreeBSD 9.1 RC2 , 12 servers restart in random fashion o amd64/173235 amd64 Have received two crashes within 1 day after installin o amd64/172926 amd64 [boot] booting hangs after 9.1-RC2 install in 2nd (MBR o amd64/171835 amd64 bsdinstall abort on Dell PowerEdge R420 with PERC H310 o amd64/171814 amd64 [panic] bioq_init or bioq_remove (unsure which) o amd64/171701 amd64 [install] 9.0-rel amd64 installer 'guided' or 'manual' o amd64/171250 amd64 ldd32 cannot find some i386 libraries o amd64/171110 amd64 Upgrade 9.1-BETA1 > RC1 issue o amd64/170487 amd64 [boot] Thinkpad X61s cannot boot 9.1-BETA1 o amd64/170351 amd64 [kernel] [patch] amd64: 64-bit process can't always ge o amd64/170115 amd64 Serial boot broken in 9.0 o amd64/168659 amd64 [boot] FreeBSD 9 - Crash upon booting off install CD ( o amd64/167582 amd64 Compile of MySQL NDB Cluster Fails 8.2 AMD64 o amd64/167543 amd64 [kernel] Install FreeBSD can show error message with c o amd64/167393 amd64 [boot] MacBook4,1 hangs on SMP boot o amd64/166639 amd64 [boot] Syscons issue Intel D2700 o amd64/166229 amd64 [boot] Unable to install FreeBSD 9 on Acer Extensa 522 o amd64/165850 amd64 [build] 8.3-RC1 (amd64): world doesn't build with CPUT o amd64/165845 amd64 [build] Unable to build kernel on 8.2-STABLE o amd64/165351 amd64 [boot] Error while installing or booting the freeBSD O o amd64/164773 amd64 [boot] 9.0 amd64 fails to boot on HP DL145 G3 [regress o amd64/164707 amd64 FreeBSD 9 installer does not work with IBM uefi o amd64/164643 amd64 Kernel Panic at 9.0-RELEASE o amd64/164619 amd64 when logged in as root the user and group applications o amd64/164457 amd64 [install] Can't install FreeBSD 9.0 (amd64) on HP Blad o amd64/164301 amd64 [install] 9.0 - Can't install, no DHCP lease o amd64/164136 amd64 after fresh install 8.1 release or 8.2 release the har o amd64/164116 amd64 [boot] FreeBSD 9.0-RELEASE installations mediums fails o amd64/164089 amd64 FreeBSD-9.0-RELEASE-amd64-memstick.img does not boot o amd64/164073 amd64 /etc/rc warning after booting o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o amd64/163736 amd64 Freebsd 8.2 with MPD5 and about 100 PPPoE clients pani o amd64/163710 amd64 setjump in userboot.so causes stack corruption o amd64/163625 amd64 Install problems of RC3 amd64 on ASRock N68 GE3 UCC o amd64/163568 amd64 hard drive naming o amd64/163285 amd64 when installing gnome2-lite not all dependent packages o amd64/163284 amd64 print manager failed to install correctly o amd64/163114 amd64 no boot on Via Nanao netbook Samsung NC20 o amd64/163092 amd64 FreeBSD 9.0-RC2 fails to boot from raid-z2 if AHCI is o amd64/163048 amd64 normal user cant mount ntfs-3g o amd64/162936 amd64 fails boot and destabilizes other OSes on FreeBSD 9 RC o amd64/162489 amd64 After some time X blanks the screen and does not respo o amd64/162314 amd64 not able to install FreeBSD-8.2-RELEASE-amd64-dvd1 as o amd64/162170 amd64 Unable to install due to freeze at "run_interrupt_driv o amd64/161974 amd64 FreeBSD 9 new installer installs succesful, renders ma o kern/160833 amd64 Keyboard USB doesn't work o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I o amd64/156106 amd64 [boot] boot0 fails to start o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o amd64/154957 amd64 [boot] Install boot CD won't boot up - keeps rebooting o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o amd64/153935 amd64 [hang] system hangs while trying to do 'shutdown -h no o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o amd64/153372 amd64 [panic] kernel panic o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o amd64/152430 amd64 [boot] HP ProLiant Microserver n36l cannot boot into i o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' p amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c 79 problems total. From owner-freebsd-amd64@FreeBSD.ORG Wed May 8 07:10:07 2013 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C20F3F2F; Wed, 8 May 2013 07:10:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 8FE87A18; Wed, 8 May 2013 07:10:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id r487A6df078969; Wed, 8 May 2013 03:10:06 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id r487A6cO078965; Wed, 8 May 2013 07:10:06 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 8 May 2013 07:10:06 GMT Message-Id: <201305080710.r487A6cO078965@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 May 2013 07:10:07 -0000 TB --- 2013-05-08 03:10:19 - tinderbox 2.10 running on freebsd-current.sentex.ca TB --- 2013-05-08 03:10:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2013-05-08 03:10:19 - starting HEAD tinderbox run for amd64/amd64 TB --- 2013-05-08 03:10:19 - cleaning the object tree TB --- 2013-05-08 03:10:19 - /usr/local/bin/svn stat /src TB --- 2013-05-08 03:10:24 - At svn revision 250347 TB --- 2013-05-08 03:10:25 - building world TB --- 2013-05-08 03:10:25 - CROSS_BUILD_TESTING=YES TB --- 2013-05-08 03:10:25 - MAKEOBJDIRPREFIX=/obj TB --- 2013-05-08 03:10:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-05-08 03:10:25 - SRCCONF=/dev/null TB --- 2013-05-08 03:10:25 - TARGET=amd64 TB --- 2013-05-08 03:10:25 - TARGET_ARCH=amd64 TB --- 2013-05-08 03:10:25 - TZ=UTC TB --- 2013-05-08 03:10:25 - __MAKE_CONF=/dev/null TB --- 2013-05-08 03:10:25 - cd /src TB --- 2013-05-08 03:10:25 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed May 8 03:10:29 UTC 2013 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed May 8 06:51:30 UTC 2013 TB --- 2013-05-08 06:51:30 - generating LINT kernel config TB --- 2013-05-08 06:51:30 - cd /src/sys/amd64/conf TB --- 2013-05-08 06:51:30 - /usr/bin/make -B LINT TB --- 2013-05-08 06:51:31 - cd /src/sys/amd64/conf TB --- 2013-05-08 06:51:31 - /usr/sbin/config -m LINT TB --- 2013-05-08 06:51:31 - building LINT kernel TB --- 2013-05-08 06:51:31 - CROSS_BUILD_TESTING=YES TB --- 2013-05-08 06:51:31 - MAKEOBJDIRPREFIX=/obj TB --- 2013-05-08 06:51:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-05-08 06:51:31 - SRCCONF=/dev/null TB --- 2013-05-08 06:51:31 - TARGET=amd64 TB --- 2013-05-08 06:51:31 - TARGET_ARCH=amd64 TB --- 2013-05-08 06:51:31 - TZ=UTC TB --- 2013-05-08 06:51:31 - __MAKE_CONF=/dev/null TB --- 2013-05-08 06:51:31 - cd /src TB --- 2013-05-08 06:51:31 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed May 8 06:51:31 UTC 2013 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -DGPROF -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mno-aes -mno-avx -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg /src/sys/vm/vm_phys.c /src/sys/vm/vm_phys.c:467:5: error: 'VM_NDOMAIN' is not defined, evaluates to 0 [-Werror,-Wundef] #if VM_NDOMAIN > 1 ^ /src/sys/vm/vm_phys.c:480:5: error: 'VM_NDOMAIN' is not defined, evaluates to 0 [-Werror,-Wundef] #if VM_NDOMAIN > 1 ^ 2 errors generated. *** [vm_phys.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2013-05-08 07:10:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-05-08 07:10:06 - ERROR: failed to build LINT kernel TB --- 2013-05-08 07:10:06 - 11471.62 user 2025.79 system 14386.74 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Fri May 10 23:48:22 2013 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E73E0458; Fri, 10 May 2013 23:48:22 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 9C211EA4; Fri, 10 May 2013 23:48:22 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id r4ANmMVZ043292; Fri, 10 May 2013 23:48:22 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id r4ANmMCJ043281; Fri, 10 May 2013 23:48:22 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 10 May 2013 23:48:22 GMT Message-Id: <201305102348.r4ANmMCJ043281@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_8 tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 May 2013 23:48:23 -0000 TB --- 2013-05-10 23:05:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca TB --- 2013-05-10 23:05:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2013-05-10 23:05:12 - starting RELENG_8 tinderbox run for amd64/amd64 TB --- 2013-05-10 23:05:12 - cleaning the object tree TB --- 2013-05-10 23:05:12 - /usr/local/bin/svn stat /src TB --- 2013-05-10 23:05:15 - At svn revision 250487 TB --- 2013-05-10 23:05:16 - building world TB --- 2013-05-10 23:05:16 - CROSS_BUILD_TESTING=YES TB --- 2013-05-10 23:05:16 - MAKEOBJDIRPREFIX=/obj TB --- 2013-05-10 23:05:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-05-10 23:05:16 - SRCCONF=/dev/null TB --- 2013-05-10 23:05:16 - TARGET=amd64 TB --- 2013-05-10 23:05:16 - TARGET_ARCH=amd64 TB --- 2013-05-10 23:05:16 - TZ=UTC TB --- 2013-05-10 23:05:16 - __MAKE_CONF=/dev/null TB --- 2013-05-10 23:05:16 - cd /src TB --- 2013-05-10 23:05:16 - /usr/bin/make -B buildworld >>> World build started on Fri May 10 23:05:17 UTC 2013 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I. -I/src/usr.sbin/ndp -I/src/usr.sbin/ndp/../../contrib/tcpdump -D_U_="" -std=gnu99 -fstack-protector -c /src/usr.sbin/ndp/../../contrib/tcpdump/gmt2local.c cc -O2 -pipe -I. -I/src/usr.sbin/ndp -I/src/usr.sbin/ndp/../../contrib/tcpdump -D_U_="" -std=gnu99 -fstack-protector -o ndp ndp.o gmt2local.o gzip -cn /src/usr.sbin/ndp/ndp.8 > ndp.8.gz ===> usr.sbin/newsyslog (all) cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/newsyslog/newsyslog.c cc1: warnings being treated as errors /src/usr.sbin/newsyslog/newsyslog.c: In function 'delete_oldest_timelog': /src/usr.sbin/newsyslog/newsyslog.c:1511: warning: unused variable 'valid' *** [newsyslog.o] Error code 1 Stop in /src/usr.sbin/newsyslog. *** [all] Error code 1 Stop in /src/usr.sbin. *** [usr.sbin.all__D] Error code 1 Stop in /src. *** [everything] Error code 1 Stop in /src. *** [buildworld] Error code 1 Stop in /src. TB --- 2013-05-10 23:48:22 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-05-10 23:48:22 - ERROR: failed to build world TB --- 2013-05-10 23:48:22 - 2162.48 user 393.04 system 2590.05 real http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Sat May 11 09:27:19 2013 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6005BF32 for ; Sat, 11 May 2013 09:27:19 +0000 (UTC) (envelope-from comnetboy@gmail.com) Received: from mail-ob0-x242.google.com (mail-ob0-x242.google.com [IPv6:2607:f8b0:4003:c01::242]) by mx1.freebsd.org (Postfix) with ESMTP id 3251CFF2 for ; Sat, 11 May 2013 09:27:19 +0000 (UTC) Received: by mail-ob0-f194.google.com with SMTP id wc20so827935obb.1 for ; Sat, 11 May 2013 02:27:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=hgTCmk2FPiSYFCMCfUGgz8JapCpKGAvnFjNoKjBSUo0=; b=OpV0EbvK/v/yfSgTyjbn4vmx95dD85NJLQDdwWZVAt6BpH9kvxa+l2J+z+LL4am90w 1pm8fewrcuMlxDEELJyE0G3JXHglQF407P2kTfxRiGVbsOeOL8yW/umzqgTljn80NFkg jvuzkC86T6g8j6ryxl8/wvY5JjolskaVmUI7uHRt+iQWSbEp1mf6+wUTuQbEZOTTZE9z 0S15CPfZ3OXM4qBrAX+ImKHOaEL05y+rKSBIJ44BT+fTGsw/doKFqmQC4KPvojqgfQTP qur+NffsbR2DK8T5MQUKjGEY4qk4V+DYyTh5B09hQmlzp/uIOcOuSKeAwX8WP/AEBTYO mvEw== MIME-Version: 1.0 X-Received: by 10.182.138.4 with SMTP id qm4mr8990297obb.101.1368264438872; Sat, 11 May 2013 02:27:18 -0700 (PDT) Received: by 10.182.103.5 with HTTP; Sat, 11 May 2013 02:27:18 -0700 (PDT) Date: Sat, 11 May 2013 13:57:18 +0430 Message-ID: Subject: alq module kldload and unload and after that init 0 causes panic! From: Computer Network Man To: freebsd-amd64@freebsd.org X-Mailman-Approved-At: Sat, 11 May 2013 12:03:56 +0000 Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 May 2013 09:27:19 -0000 Dear Guys; When we kldload alq module, after that kldunload alq and after that init 0, system crashes! we are using FreeBSD 9. Could anybody help in this regard? thanks in advance