From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 10:47:06 2015 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB3D5A0 for ; Sun, 21 Jun 2015 10:47:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C53242D9 for ; Sun, 21 Jun 2015 10:47:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5LAl56f073393 for ; Sun, 21 Jun 2015 10:47:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201003] forcibly unmounting a filesystem with running binaries results in panic Date: Sun, 21 Jun 2015 10:47:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: trasz@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2015 10:47:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201003 Bug ID: 201003 Summary: forcibly unmounting a filesystem with running binaries results in panic Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: trasz@FreeBSD.org Forcible unmount of a filesystem containing a binary that's executing at that time results in a panic. Note that the binary must have called mlockall(2), otherwise it will simply segfault. Backtrace looks like this: panic: vm_page_unwire: page 0xfffff800b7b8b980's wire count is zero #10 0xffffffff80976903 in panic (fmt=0xffffffff81675540 "\004") at /usr/home/trasz/svn/head/sys/kern/kern_shutdown.c:868 #11 0xffffffff80c25838 in vm_page_unwire (m=, queue=) at /usr/home/trasz/svn/head/sys/vm/vm_page.c:2516 #12 0xffffffff80c21079 in vm_object_unwire (object=0xfffff8012f13ea00, offset=, length=, queue=) at /usr/home/trasz/svn/head/sys/vm/vm_object.c:2273 #13 0xffffffff80c180f7 in vm_map_entry_unwire (map=0xfffff8012f0f5000, entry=0xfffff8012f0cd400) at /usr/home/trasz/svn/head/sys/vm/vm_map.c:2842 #14 0xffffffff80c1628a in vm_map_delete (map=0xfffff8012f0f5000, start=, end=140737488355328) at /usr/home/trasz/svn/head/sys/vm/vm_map.c:3002 #15 0xffffffff80c18fa3 in vm_map_remove (map=0xfffff8012f0f5000, start=140737488355328, end=18446744071579148419) at /usr/home/trasz/svn/head/sys/vm/vm_map.c:3032 #16 0xffffffff80c14349 in vmspace_exit (td=0xfffff80019edb000) at /usr/home/trasz/svn/head/sys/vm/vm_map.c:335 #17 0xffffffff8093817e in exit1 (td=0xfffff80019edb000, rv=) at /usr/home/trasz/svn/head/sys/kern/kern_exit.c:391 #18 0xffffffff80979ee0 in sigexit (td=0xfffff80019edb000, sig=Unhandled dwarf expression opcode 0x93 ) at /usr/home/trasz/svn/head/sys/kern/kern_sig.c:2974 #19 0xffffffff8097a50c in postsig (sig=) at /usr/home/trasz/svn/head/sys/kern/kern_sig.c:2877 #20 0xffffffff809cb2f7 in ast (framep=) at /usr/home/trasz/svn/head/sys/kern/subr_trap.c:274 #21 0xffffffff80d728f9 in doreti_ast () at /usr/home/trasz/svn/head/sys/amd64/amd64/exception.S:681 #22 0x00007fffffffea58 in ?? () Steps to reproduce: # mdconfig -s1g # newfs /dev/md0 # mount /dev/md0 /mnt # cp loop /mnt # /mnt/loop In another terminal: # umount -f /mnt loop.c: #include #include #include #include int main(void) { int error; error = mlockall(MCL_CURRENT | MCL_FUTURE); if (error != 0) err(1, "mlockall"); for (;;) { fprintf(stderr, "."); sleep(1); } } -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 12:15:25 2015 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C62261B2 for ; Sun, 21 Jun 2015 12:15:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B0CE4B62 for ; Sun, 21 Jun 2015 12:15:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5LCFPGL076679 for ; Sun, 21 Jun 2015 12:15:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200958] filemon has insufficient proc locking Date: Sun, 21 Jun 2015 12:15:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gerald@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2015 12:15:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200958 Gerald Pfeifer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gerald@FreeBSD.org --- Comment #2 from Gerald Pfeifer --- Building GCC and then running its testsuite triggered this originally. If anyone wants help on reproducing, let me know. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 19:48:05 2015 Return-Path: Delivered-To: bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06983F04 for ; Sun, 21 Jun 2015 19:48:05 +0000 (UTC) (envelope-from bsues@parolink.net) Received: from mail.parolink.net (mail.parolink.net [162.251.192.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.parolink.net", Issuer "RapidSSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 99648FD4 for ; Sun, 21 Jun 2015 19:48:04 +0000 (UTC) (envelope-from bsues@parolink.net) Received: (qmail 24958 invoked from network); 21 Jun 2015 19:41:20 -0000 Received: from unknown (HELO ?192.168.1.115?) (162.251.196.74) by mail.parolink.net with SMTP; 21 Jun 2015 19:41:20 -0000 From: Bob Sues Subject: [News] June 21, 2015 - The Rise and Fall of the Romerican Empire Message-Id: <58EA19CC-31C8-4F04-9249-7F098C7EE36B@parolink.net> Date: Sun, 21 Jun 2015 15:41:19 -0400 To: bugs@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) X-Mailer: Apple Mail (2.1878.6) Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2015 19:48:05 -0000 THE RISE AND FALL OF THE ROMERICAN EMPIRE For over two decades, a special ministry has sought to propagate the = supernaturally revealed truth that America is the fourth kingdom = described in Daniel 7: =93The fourth beast shall be the fourth kingdom upon earth, which shall = be diverse from all kingdoms, and shall devour the whole earth, and = shall tread it down, and break it in pieces=94 (Daniel 7:23). Utilizing the consistent pattern of prophetic parallels, long ago the = LORD revealed the four kingdoms counting down to the arrival of JESUS = CHRIST, which were allegorized in Nebuchadnezzar=92s dream of the great = statue composed of a golden head, silver arms, brass belly, and iron = legs, were not the same kingdoms as those described as the lion, bear, = leopard, and diverse fourth beast. Unfortunately, there are heavily = vested interests which put forth the idea the head of gold =96 the first = of four kingdoms in Daniel 2, which is clearly identified as Babylon in = the text (Daniel 2:38) =96 is the same as the lion kingdom in Daniel 7, = the first of four kingdoms in Daniel 7, which is not identified in the = text: =93Behold, the four winds of the heaven strove upon the great sea. And = four great beasts came up from the sea, diverse one from another. The = first was like a lion, and had eagle=92s wings: I beheld till the wings = thereof were plucked, and it was lifted up from the earth=85=94 (Daniel = 7:2-4). Whenever a believer examines these illustrative sequences featuring the = two quartets of kingdoms in Daniel 2 (the four part statue dream), and = Daniel 7 (the four part beast vision), they universally focus on the = components themselves (the gold, silver, brass, and iron =96 as well as = the lion, bear, leopard), and breeze past the setting. Thus, most miss = the fact that the first set of four kingdoms =96 symbolically pictured = as the statue -- is plainly constructed on the earth, whereas the beast = kingdoms =93came up from the sea=94 (Daniel 7:2). Further, almost everyone fails to see the significance of how it is =93the= four winds of heaven=94 which stir up the sea =96 the setting of the = beast kingdoms. Revealingly, the book of Daniel is set in the Babylonian era, the same = kingdom in power during the writings of the prophet Ezekiel, whose book = was divinely engineered to immediately precede Daniel=92s epic work. In = the second half of Ezekiel=92s prophecy, towards the end of a lengthy = narrative describing how the LORD will save the =93lost sheep=94 of the = house of Israel (Ezekiel 34:11) by making an =93everlasting covenant=94 = with them, through the prophet, God tells Israel that this life will be = associated with =93the four winds=94 =96 precisely the same metaphor = used by Daniel. These =93four winds=94 occur at the conclusion of the hugely important = prophecy of the =93dry bones,=94 which are clustered together in a deep = valley, and the text clearly states these ancient bones represent the = whole house of Israel. In this epic prophecy, we learn the LORD promises = to re-gather the dry bones, which were scattered during the Babylonian = exile, and to subsequently breathe life into them, under the leadership = of a messianic figure associated with the house of David: =93These bones are the whole house of Israel: behold, they say, Our = bones are dried, and our hope is lost=85Therefore prophesy and say unto = them, Thus saith the Lord God: Behold, O my people, I will open your = graves, and cause you to come up out of your graves=85Then [the LORD] = said unto me, Prophesy unto the wind, prophesy, son of man, and say to = the wind, Thus saith the Lord God; Come from the four winds, O breath, = and breathe upon these slain, that they may live=94 (Ezekiel 37:11, 12, = 9). Having proven a thousand times over the Word of God is divinely = inspired, and subtle shades of detail are embedded throughout, we = recognize the Hebrew word for wind is also rendered Spirit =96 plainly = indicating the Spirit of the LORD is that which raised Israel from their = collective =93graves=94 =96 an epic event which occurs when people are = born again to new life in the Spirit of the LORD. In fact, the allusion to the spiritually =93dead,=94 who received not = Jesus Christ, was applied to the Pharisees, as the LORD described them = as graves: =93Woe unto you, scribes and Pharisees, hypocrites! For ye are as graves = which appear not, and the men that walk over them are not aware of them=94= (Luke 11:44). Conversely, those who received Jesus have been given new life, as = believers were ransomed from the grave: =93Therefore we are buried with him by baptism unto death: that like as = Christ was raised up from the dead by the glory of the Father, even so = we also should walk in newness of life=94 (Romans 6:4). Further, in recognizing that God promised in the Old Testament prophet = Ezekiel=92s writing to bring the =93four winds of heaven,=94 and breathe = new life into Israel, The Apostle Paul conclusively stated this occurred = in his time: =93Has God cast away His people? God forbid=85.for I also am an = Israelite=85[proving that] at this present time also there is a remnant = according to the election of grace=94 (Romans 11:1, 5). Unfortunately, the same false prophets who claim the beast empire is the = fictional =93revived Roman Empire,=94 also tell us the =93dry bones=94 = prophecy was not fulfilled in the generation of Jesus Christ, but will = soon be fulfilled as God has supposedly gathered =93Israel=94 back into = the Middle East. They also tell us the flesh and blood Jews are still = the =93chosen people,=94 and they are gathered as unbelieving =93dry = bones,=94 awaiting the outpouring of the Spirit that God will send from = the =93four winds=94 when, in fact, this has already occurred. Shortly before His ascension, Jesus told the disciples, who were = comprised of the =93lost sheep=94 of the house of Israel, to remain in = Jerusalem to await the fulfillment of the Father=92s promise: =93And there are also many other things which Jesus did=85and, being = assembled together with them, commanded them that they should not depart = from Jerusalem, but wait for the promise of the father=85=94 (John = 21:25, Acts 1:4). That promise, the pouring out of the Spirit of the LORD under the = similitude of the =93four winds of heaven=94 which would indwell the = =93dry bones=94 of Israel, was fulfilled at Pentecost: =93And suddenly there came a sound from heaven as of a rushing mighty = wind, and it filled all the house where they were sitting. And they were = all filled with the Holy Ghost=85.=94 (Acts 2:2, 4). Thus, in Daniel=92s epic prophetic panorama, those who insist the lion, = bear, leopard, and diverse fourth beast are simply a secondary view of = the four ancient kingdoms of Babylon, Persia, Greece, and Rome, have = missed the allusion to the Spirit of the Lord, imaged as the =93four = winds,=94 which arrives before the beast empires emerge. This is yet another indicator the latter four kingdoms were predicted to = manifest themselves in the Christian era. As we have repeatedly shown, = the lion relates to the British Commonwealth, a very significant kingdom = which was profoundly impacted by the Spirit of the LORD, found in the = Gospel of Jesus Christ. The colonial era which the lion also presages, = was personified by the shift away from royalty and dominion of the = nobles, as the era of populism, and increased power to the people was = signified by the revolutions which subsequently occurred. =93The first was like a lion, and had eagle=92s wings: I beheld until = the wings thereof were plucked, and it was lifted up from the earth=85.=94= (Daniel 7:4). As the bear kingdom emerged, we see a colourful image of the Russian = people, who were intensely impacted by the Gospel, even as the godless = communists moved in to =93devour much flesh=94 (Daniel 7:5). The backlash to the Soviet collectivism personified by Russia was the = Third Reich of Germany, yet another perversion of the Gospel mingled = with man=92s wicked ambitions. As the industrial might of Germany was = defeated by the four generals leading the allies of America, England, = France, and Russia, we see the =93four heads=94 (Daniel 7:6) attached to = the leopard. Ultimately, the fourth of four sequential beasts, which was = diverse from its three predecessors, was to assimilate the various = features of the lion, bear, and leopard, until it was transformed into a = much larger beast, which incorporates the characteristics of the feudal = royals, socialist collectivism, and industrial fascism which = characterized each of the previous three: =93I saw a beast rise up out of the sea=85And the beast which I saw was = like unto a leopard, and his feet were as the feet of a bear, and his = mouth as the mouth of a lion: and the dragon gave him his power, and his = seat, and great authority=94 (Revelation 13:1, 2). It can only be America, the final Christian era power, an apostate = kingdom which was profoundly affected by =93the four winds of heaven=94 = (Daniel 7:2). -=96 JL Next: The Precision of the Parallels = __________________________________________________________________________= _____________________________________________________________________ Dear Christian Friend, This prophecy article was sent to you by one of our volunteers =96 a = person who believes the LORD is doing a very special work at the = ministry which produces this writing. People need to receive this = information, but the resistance is fierce in these end times. This letter is but a part of a ministry so controversial that if we put = the ministry name on it, the Internet powers block It! A lot of people = are trying to stop us from what we=92re doing in Bible Prophecy, so if = you=92d like to read more along the lines of the present writing, we = would love to send you this next installment in the future -- but we = need to hear from you, as there are far too many people out there to = continually send it on an unsolicited basis. To get the next installment of this prophecy letter (it=92s all free), = just hit reply and put the word YES! in the subject line, and the person = who forwarded this email to you will arrange for us to send you links on = prophecy and predictions of things you can expect to see in the near = future. Of course you can remove yourself from the distribution list at = any time. We also stream prophecy audio 24/7 and have downloadable video shows as = well, so a YES! response will get you all the links you need to access = these materials. Some are convinced Christians should never send an Email to someone = without permission (Did the Disciples of Jesus ask people for permission = to tell them the Good News?), while others don=92t consider prophecy = important =96 and there are other reasons people don=92t want to receive = our material. If that=92s the case, just reply with the word REMOVE in = the subject line (that part is important as our software looks for that = word), and we will cheerfully delete your name from our database. Thanks for reading this far, and we hope you=92ll respond favorably, = reply with a YES!, and take a look at what the LORD has shown us. =20 = __________________________________________________________________________= ________________ Welcome To The World Of Christian Media! Christian Media PO Box 1414 Medford OR 97501 541/899/8888= From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 00:59:50 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D70E98F2 for ; Mon, 22 Jun 2015 00:59:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0C5FADB for ; Mon, 22 Jun 2015 00:59:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5M0xo1L087712 for ; Mon, 22 Jun 2015 00:59:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200888] CVE-2012-3509 libiberty: integer overflow Date: Mon, 22 Jun 2015 00:59:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: gnu X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 00:59:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200888 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Only Me |Affects Some People Keywords| |patch -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 01:01:57 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3257927 for ; Mon, 22 Jun 2015 01:01:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B59CFD8 for ; Mon, 22 Jun 2015 01:01:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5M11vfF024492 for ; Mon, 22 Jun 2015 01:01:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200919] Support for more counters in snmp_pf for bsnmpd Date: Mon, 22 Jun 2015 01:01:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 01:01:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200919 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 01:05:06 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E55B967 for ; Mon, 22 Jun 2015 01:05:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC1EB869 for ; Mon, 22 Jun 2015 01:05:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5LMWqAS031556 for ; Sun, 21 Jun 2015 22:32:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201026] rtld-elf reaches divide-by-zero in symlook_obj on 11.0-CURRENT Date: Sun, 21 Jun 2015 22:32:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gmbroome@vcu.edu X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 01:05:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201026 --- Comment #1 from gmbroome@vcu.edu --- Created attachment 157959 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=157959&action=edit The culprit binary of x11-fonts/libfontenc -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 01:05:07 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 706E7989 for ; Mon, 22 Jun 2015 01:05:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48B9C8A9 for ; Mon, 22 Jun 2015 01:05:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5LMV1RR027982 for ; Sun, 21 Jun 2015 22:31:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201026] rtld-elf reaches divide-by-zero in symlook_obj on 11.0-CURRENT Date: Sun, 21 Jun 2015 22:31:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gmbroome@vcu.edu X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 01:05:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201026 Bug ID: 201026 Summary: rtld-elf reaches divide-by-zero in symlook_obj on 11.0-CURRENT Product: Base System Version: 11.0-CURRENT Hardware: sparc64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: gmbroome@vcu.edu Created attachment 157958 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=157958&action=edit Arguments passed to symlook_obj Offending line in libexec/rtld-elf/rtld.c: 4143 bucket = obj->buckets_gnu[req->hash_gnu % obj->nbuckets_gnu]; As we're doing a modulo, there seems to be an assumption that obj->nbuckets_gnu is non-zero by the time that we get here. I've run into at least one case where it is zero, triggering a SIGFPE. Running on world and kernel from SVN (r284174) on 11.0-CURRENT sparc64. Model is a Blade 2000 using 2 x USIIICu 1.2GHz. Kernel, world, and indeed entire stack of ports in this case were built with completely empty make.conf; no -O flags or such. The div-by-zero on the above mentioned line is triggered (at least) any time that Xorg attempts to load /usr/local/lib/libfontenc.so.1 from x11-fonts/libfontenc. Expected results: Xorg displays the launched application Actual results: Xorg exits with a SIGFPE N.B. Utilizing libfontenc.so.1 in my own 'dummy' test application results in the same signal, suggesting that this is a linker issue (or possibly a fontenc issue) rather than an Xorg one; Xorg was just first the manifestation here. Backtrace: #0 0x00000000403cc9d8 in symlook_obj (req=0x7fdffffe920, obj=0x403f1c00) at rtld.c:4143 #1 0x00000000403ccb28 in symlook_list (req=0x7fdffffea20, objlist=, dlp=0x7fdffffec70) at rtld.c:3860 #2 0x00000000403ccd80 in symlook_global (req=0x7fdffffed40, donelist=0x7fdffffec70) at rtld.c:3758 #3 0x00000000403cd204 in symlook_default (req=0x7fdffffed40, refobj=0x403e7000) at rtld.c:3811 #4 0x00000000403cd4a8 in find_symdef (symnum=26, refobj=0x403e7000, defobj_out=0x7fdffffee78, flags=1, cache=0x0, lockstate=0x7fdffffee40) at rtld.c:1592 #5 0x00000000403cdb1c in _rtld_bind (obj=0x403e7000, reloff=1872) at rtld.c:713 #6 0x00000000403c60a0 in _rtld_bind_start_1 () at /usr/src/libexec/rtld-elf/sparc64/rtld_start.S:166 Attached items: "obj" and "req", as passed to symlook_obj, and my binary of libfontenc.so.1 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 01:06:03 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5118B70 for ; Mon, 22 Jun 2015 01:06:03 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83BCDF48 for ; Mon, 22 Jun 2015 01:06:03 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5LL0XKK043587 for ; Sun, 21 Jun 2015 21:00:33 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201506212100.t5LL0XKK043587@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: freebsd-bugs@FreeBSD.org Subject: Problem reports for freebsd-bugs@FreeBSD.org that need special attention X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Date: Sun, 21 Jun 2015 21:00:33 +0000 Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 01:06:03 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- In Progress | 196973 | sh(1) broken UTF-8 input New | 197876 | [devfs] an error in devfs leads to data loss and New | 198797 | [PATCH] Added an option to install BSDstats to bs Open | 90114 | [patch] pw(8) takes strings after option -g for G Open | 155028 | init(8): "init q" in single user causes segfault Open | 156481 | [kernel] [patch] kernel incorrectly reports PPS j Open | 165630 | [ndis][panic][patch] IRQL_NOT_GREATER_THAN Open | 167133 | stale files in /usr/share/examples Open | 169471 | [patch] pw(8) deletes group "username" on userdel Open | 171779 | [patch] passwd(1): make option NO_FSCHG incomplet Open | 184681 | A bug of bsdconfig(8) in 10.0 RC1 Open | 191511 | opiepasswd(1) segfaults with a seed length > 12 In Progress | 191348 | [mps] LSI2308 with WD3000FYYZ drives disappears a 13 problems total for which you should take action. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 08:03:18 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 631E073A for ; Mon, 22 Jun 2015 08:03:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D383CA3 for ; Mon, 22 Jun 2015 08:03:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5M83IUt034736 for ; Mon, 22 Jun 2015 08:03:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200993] camcontrol commands results in Periph destroyed on mrsas Date: Mon, 22 Jun 2015 08:03:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sibananda.sahu@avagotech.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 08:03:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200993 Sibananda Sahu changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sibananda.sahu@avagotech.co | |m --- Comment #2 from Sibananda Sahu --- Hi Phil, The driver version that you are using is : dev.mrsas.0.driver_version: 06.704.01.01-fbsd Which is quite old. You can take the latest mrsas(4) driver from http://svn.freebsd.org/base/head/sys/dev/mrsas Driver version : 06.707.04.03-fbsd Revision number is: r284697 Please let me know if you see the same issue on the latest driver. Thanks. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 12:01:57 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E98B40B for ; Mon, 22 Jun 2015 12:01:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8894DBAF for ; Mon, 22 Jun 2015 12:01:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MC1vT7051773 for ; Mon, 22 Jun 2015 12:01:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201026] rtld-elf reaches divide-by-zero in symlook_obj on 11.0-CURRENT Date: Mon, 22 Jun 2015 12:01:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gmbroome@vcu.edu X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 12:01:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201026 gmbroome@vcu.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED --- Comment #2 from gmbroome@vcu.edu --- Relinking libfontenc with newer GNU ld from devel/binutils fixes this behavior -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 20:51:44 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49374894 for ; Mon, 22 Jun 2015 20:51:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 33AA1A5E for ; Mon, 22 Jun 2015 20:51:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MKpikk049626 for ; Mon, 22 Jun 2015 20:51:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201051] Installer doesn't create zfs dataset for non-standard home Date: Mon, 22 Jun 2015 20:51:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: freebsd@schukraft.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 20:51:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201051 Bug ID: 201051 Summary: Installer doesn't create zfs dataset for non-standard home Product: Base System Version: 10.1-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: freebsd@schukraft.org During installation I created a user with a home directory of /usr/home/$USER (for cosmetic reasons in a few tools I use) instead of the standard /home/$USER. This doesn't create a separate ZFS dataset in that directory. Is this intentional? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 20:54:15 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D97793B for ; Mon, 22 Jun 2015 20:54:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77F42C15 for ; Mon, 22 Jun 2015 20:54:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MKsFjN052138 for ; Mon, 22 Jun 2015 20:54:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201052] capsicum: propagate rights on accept / sctp_peeloff Date: Mon, 22 Jun 2015 20:54:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 20:54:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201052 Bug ID: 201052 Summary: capsicum: propagate rights on accept / sctp_peeloff Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: emaste@freebsd.org A new fd generated from accept() or sctp_peeloff() should inherit the rights of the original fd (cf. https://lists.cam.ac.uk/pipermail/cl-capsicum-discuss/2014-February/msg00001.html) Test case available in https://github.com/google/capsicum-test -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 20:56:00 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6888963 for ; Mon, 22 Jun 2015 20:56:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0A76C92 for ; Mon, 22 Jun 2015 20:56:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MKu0XR052929 for ; Mon, 22 Jun 2015 20:56:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201053] capsicum: pdfork() should reject invalid values in its flags field Date: Mon, 22 Jun 2015 20:56:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 20:56:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201053 Bug ID: 201053 Summary: capsicum: pdfork() should reject invalid values in its flags field Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: emaste@freebsd.org Test case Pdfork.InvalidFlag available in https://github.com/google/capsicum-test -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 20:56:32 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24C04989 for ; Mon, 22 Jun 2015 20:56:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0EFADCE3 for ; Mon, 22 Jun 2015 20:56:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MKuVI3053114 for ; Mon, 22 Jun 2015 20:56:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201053] capsicum: pdfork() should reject invalid values in its flags field Date: Mon, 22 Jun 2015 20:56:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jonathan@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 20:56:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201053 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emaste@freebsd.org Assignee|freebsd-bugs@FreeBSD.org |jonathan@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 21:07:42 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D6EAA5D for ; Mon, 22 Jun 2015 21:07:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9C221D9 for ; Mon, 22 Jun 2015 21:07:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5ML7fCG069468 for ; Mon, 22 Jun 2015 21:07:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201054] capsicum: waitpid(-1,..) is seeing pdfork()ed children when it shouldn't Date: Mon, 22 Jun 2015 21:07:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 21:07:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201054 Bug ID: 201054 Summary: capsicum: waitpid(-1,..) is seeing pdfork()ed children when it shouldn't Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: emaste@freebsd.org Test case PipePdfork.WildcardWait available in https://github.com/google/capsicum-test -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 21:34:00 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C844D0B for ; Mon, 22 Jun 2015 21:34:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 46A442E0 for ; Mon, 22 Jun 2015 21:34:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MLY0TF080752 for ; Mon, 22 Jun 2015 21:34:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201052] capsicum: propagate rights on accept / sctp_peeloff Date: Mon, 22 Jun 2015 21:34:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: oshogbo@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: oshogbo@freebsd.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 21:34:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201052 Mariusz Zaborski changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |oshogbo@freebsd.org CC| |oshogbo@freebsd.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 21:34:42 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 751E6D3E for ; Mon, 22 Jun 2015 21:34:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53DCB342 for ; Mon, 22 Jun 2015 21:34:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MLYgB9080991 for ; Mon, 22 Jun 2015 21:34:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201054] capsicum: waitpid(-1,..) is seeing pdfork()ed children when it shouldn't Date: Mon, 22 Jun 2015 21:34:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: oshogbo@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: oshogbo@freebsd.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 21:34:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201054 Mariusz Zaborski changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |oshogbo@freebsd.org Assignee|freebsd-bugs@FreeBSD.org |oshogbo@freebsd.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 23:58:48 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8254E7C0 for ; Mon, 22 Jun 2015 23:58:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 520A1D0B for ; Mon, 22 Jun 2015 23:58:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MNwmX1089544 for ; Mon, 22 Jun 2015 23:58:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201062] Calendar did not show Father's day on June 22, 2015 using calendar.usholiday Date: Mon, 22 Jun 2015 23:58:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: comet.berkeley@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 23:58:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201062 Bug ID: 201062 Summary: Calendar did not show Father's day on June 22, 2015 using calendar.usholiday Product: Base System Version: 10.1-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: comet.berkeley@gmail.com Created attachment 158000 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=158000&action=edit Calendar Father's Day patch The calendar.usholiday file contains 42 lines of which 2 are relevant to June 21, 2015: 06/SunThird Father's Day (3rd Sunday of June) 06/21* Summer Solstice My .calendar/calendar file includes this one line: #include And when calendar runs it should show two lines out, one for Father's Day and one for the Solstice: $calendar -t21.6.2015 Jun 21* Summer Solstice I patched the code (calendar.c and parsedata.c) and the problem seems to be fixed. $calendar -t21.6.2015 Jun 21* Summer Solstice Jun 21* Father's Day (3rd Sunday of June) To debug this it was helpful to set the debug_remember flag in the dates.c code. This flag is a global integer and can be set from calendar.c when the -d option (debug) is set. In parsedata.c, the calculation of the first day of the recurring weekdays is wrong as it is trying to calculate a day of the month but will always return an integer in the range 0-6. 0 is always wrong... It was: d = (idayofweek - dow + 8) % 7; But should be: d = (idayofweek - dow + 7) % 7 + 1; Additionally the variable dow can be -1 and when it is the code should probably stop (continue) so a better patch is this: if (dow < 0) continue; d = (idayofweek - dow + 7) % 7 + 1; -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 02:37:29 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69F08CCB for ; Tue, 23 Jun 2015 02:37:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39BAFB39 for ; Tue, 23 Jun 2015 02:37:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5N2bT44047527 for ; Tue, 23 Jun 2015 02:37:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201066] [fusefs] fuse module possibly blocking ordinary users access glusterfs mounts Date: Tue, 23 Jun 2015 02:37:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: craig001@lerwick.hopto.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 02:37:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201066 Bug ID: 201066 Summary: [fusefs] fuse module possibly blocking ordinary users access glusterfs mounts Product: Base System Version: 10.1-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: craig001@lerwick.hopto.org We are trying to port glusterfs to FreeBSD There is a port candidate WIP; https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194409 Unfortunately we have hit a problem. We don't seem to be allowing ordinary users to access the mounts. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194409#c10 I am experiencing the same with 3.7.2 ##### craig@zbox:/data/brick1> sudo glusterfs --volfile-id=gv0 --volfile-server=zbox /mnt/glusterfs craig@zbox:/data/brick1> mount | grep fuse /dev/fuse on /mnt/glusterfs (fusefs, local, synchronous) craig@zbox:/data/brick1> ls -ld /mnt/glusterfs drwxr-xr-x 4 root wheel 9 23 Jun 02:36 /mnt/glusterfs craig@zbox:/data/brick1> ls /mnt/glusterfs/ ls: /mnt/glusterfs/: Operation not permitted craig@zbox:/data/brick1> id uid=1001(craig) gid=1001(craig) groups=1001(craig),0(wheel),5(operator),145(webcamd),193(cups),194(saned) craig@zbox:/data/brick1> sudo ls /mnt/glusterfs/ .trashcan yahoo ##### Please could we have some help to diagnose the issue to see if we can get it resolved. I can raise a Bugreport to the GlusterFS team if it's their code at fault. Kind Regards Craig Butler -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 02:38:25 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CF12CF3 for ; Tue, 23 Jun 2015 02:38:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77206BA4 for ; Tue, 23 Jun 2015 02:38:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5N2cPPh047934 for ; Tue, 23 Jun 2015 02:38:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201066] [fusefs] fuse module possibly blocking ordinary users access glusterfs mounts Date: Tue, 23 Jun 2015 02:38:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: craig001@lerwick.hopto.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: blocked Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 02:38:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201066 craig001@lerwick.hopto.org changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |194409 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 06:30:53 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE12BADF for ; Tue, 23 Jun 2015 06:30:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A85D8F9 for ; Tue, 23 Jun 2015 06:30:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5N6Urpn098472 for ; Tue, 23 Jun 2015 06:30:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200802] MAXCPU bump to 256 breaks ABI for cpuset_getaffinity/setaffinity Date: Tue, 23 Jun 2015 06:30:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 06:30:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200802 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: kib Date: Tue Jun 23 06:30:37 UTC 2015 New revision: 284720 URL: https://svnweb.freebsd.org/changeset/base/284720 Log: Revert part of the r283303 (by jhb): Revert MFC of r270223, which bumped MAXCPU on amd64 from 64 to 256. The cpuset_getaffinity(2) and cpuset_setaffinity(2) check minimum set size, which now fails for binaries compiled on 10.0 with MAXCPU == 64. Submitted by: jhb PR: 200802 Changes: _U stable/10/ stable/10/sys/amd64/include/param.h stable/10/sys/sys/param.h -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 11:29:51 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED848E67 for ; Tue, 23 Jun 2015 11:29:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD361CCB for ; Tue, 23 Jun 2015 11:29:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NBTpcO089493 for ; Tue, 23 Jun 2015 11:29:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201072] /etc/mtree/BSD.include.dist and /etc/mtree/BSD.usr.dist create various atf directories that are later deleted by 'make delete-old' Date: Tue, 23 Jun 2015 11:29:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kpaasial@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 11:29:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201072 Bug ID: 201072 Summary: /etc/mtree/BSD.include.dist and /etc/mtree/BSD.usr.dist create various atf directories that are later deleted by 'make delete-old' Product: Base System Version: 10.1-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: kpaasial@gmail.com System is: FreeBSD firewall.rdnzl.info 10.2-PRERELEASE FreeBSD 10.2-PRERELEASE #10 r284708: Tue Jun 23 04:38:48 EEST 2015 root@firewall.rdnzl.info:/usr/obj/usr/src/sys/GENERIC amd64 No /etc/src.conf and /etc/make.conf contains nothing that affects buildworld or installworld. Every time I update the system with 'make installworld' the following directories are created and then later deleted when I run 'make delete-old': >>> Removing old files (only deletes safe to delete libs) >>> Old files removed >>> Removing old directories /usr/share/doc/atf /usr/share/atf /usr/include/atf-c++ /usr/include/atf-c >>> Old directories removed To remove old libraries run '/usr/bin/make delete-old-libs'. >>> Removing old libraries Please be sure no application still uses those libraries, else you can not start such an application. Consult UPDATING for more information regarding how to cope with the removal/revision bump of a specific library. >>> Old libraries removed Shouldn't these directories taken away from the mtree(8) database since there is not even a conditional WITH/WITHOUT_ATF anymore in src.conf(5) after r261236? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 11:34:27 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 89D6BE95 for ; Tue, 23 Jun 2015 11:34:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73256F44 for ; Tue, 23 Jun 2015 11:34:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NBYRo2096744 for ; Tue, 23 Jun 2015 11:34:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201072] /etc/mtree/BSD.include.dist and /etc/mtree/BSD.usr.dist create various atf directories that are later deleted by 'make delete-old' Date: Tue, 23 Jun 2015 11:34:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: kpaasial@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 11:34:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201072 kpaasial@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Only Me |Affects Many People -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 11:55:34 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D3149C for ; Tue, 23 Jun 2015 11:55:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BEBD09A7 for ; Tue, 23 Jun 2015 11:55:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NBtXSf015660 for ; Tue, 23 Jun 2015 11:55:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201073] [nfsclient] RPCSEC_GSS principal includes inappropriate directory path Date: Tue, 23 Jun 2015 11:55:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: masato@itc.naist.jp X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 11:55:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201073 Bug ID: 201073 Summary: [nfsclient] RPCSEC_GSS principal includes inappropriate directory path Product: Base System Version: 10.1-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: masato@itc.naist.jp NFS client requests invalid principal name for RPCSEC_GSS security. The man page mount_nfs(8) explains that default principal name is nfs@, but NFS client uses nfs@: which includes inappropriate directory path. Workaround: Explicitly use principal option for mount_nfs command. Fix: =================================================================== --- sys/fs/nfsclient/nfs_clvfsops.c (revision 284717) +++ sys/fs/nfsclient/nfs_clvfsops.c (working copy) @@ -774,7 +774,7 @@ struct thread *td; char hst[MNAMELEN]; u_char nfh[NFSX_FHMAX], krbname[100], dirpath[100], srvkrbname[100]; - char *opt, *name, *secname; + char *opt, *name, *secname, *cp; int nametimeo = NFS_DEFAULT_NAMETIMEO; int negnametimeo = NFS_DEFAULT_NEGNAMETIMEO; int minvers = 0; @@ -1153,8 +1153,13 @@ if (vfs_getopt(mp->mnt_optnew, "principal", (void **)&name, NULL) == 0) strlcpy(srvkrbname, name, sizeof (srvkrbname)); - else + else { snprintf(srvkrbname, sizeof (srvkrbname), "nfs@%s", hst); + cp = strchr(srvkrbname, ':'); + if (cp != NULL) { + *cp = '\0'; + } + } srvkrbnamelen = strlen(srvkrbname); if (vfs_getopt(mp->mnt_optnew, "gssname", (void **)&name, NULL) == 0) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 12:49:42 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 826187A1 for ; Tue, 23 Jun 2015 12:49:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6517A68F for ; Tue, 23 Jun 2015 12:49:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NCngUG031485 for ; Tue, 23 Jun 2015 12:49:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200973] Fatal trap 9: general protection fault while in kernel mode Date: Tue, 23 Jun 2015 12:49:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tatarenko@alpha-it.ru X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 12:49:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200973 --- Comment #1 from Vasily --- Another panic on another machine with same kernel and same hardware: Tue Jun 23 03:04:35 MSK 2015 FreeBSD server.dc5.instatfootball.tv 10.1-RELEASE-p13 FreeBSD 10.1-RELEASE-p13 #2: Thu Jun 18 23:17:06 MSK 2015 root@server.dc5.instatfootball.tv:/usr/obj/usr/src/sys/CORV1 amd64 panic: page fault GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"... Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 fault virtual address = 0x6aeb00000378 fault code = supervisor read data, page not present instruction pointer = 0x20:0xffffffff80934ceb stack pointer = 0x28:0xfffffe085935f050 frame pointer = 0x28:0xfffffe085935f0f0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 22645 (find) trap number = 12 panic: page fault cpuid = 0 KDB: stack backtrace: #0 0xffffffff80967d80 at kdb_backtrace+0x60 #1 0xffffffff8092ca55 at panic+0x155 #2 0xffffffff80d7344f at trap_fatal+0x38f #3 0xffffffff80d73768 at trap_pfault+0x308 #4 0xffffffff80d72dca at trap+0x47a #5 0xffffffff80d58cb2 at calltrap+0x8 #6 0xffffffff8093486d at _sx_xlock+0x5d #7 0xffffffff81a06e59 at dnode_hold_impl+0x2f9 #8 0xffffffff819f746d at dmu_bonus_hold+0x1d #9 0xffffffff81a5a15c at zfs_zget+0xdc #10 0xffffffff81a71054 at zfs_dirent_lock+0x474 #11 0xffffffff81a7130d at zfs_dirlook+0x17d #12 0xffffffff81a86810 at zfs_lookup+0x280 #13 0xffffffff81a86c8d at zfs_freebsd_lookup+0x6d #14 0xffffffff80e90231 at VOP_CACHEDLOOKUP_APV+0xa1 #15 0xffffffff809baef6 at vfs_cache_lookup+0xd6 #16 0xffffffff80e90121 at VOP_LOOKUP_APV+0xa1 #17 0xffffffff809c33fc at lookup+0x59c Uptime: 4d2h53m41s Dumping 4403 out of 32603 MB:..1%..11%..21%..31%..41%..51%..61%..71%..81%..91% Reading symbols from /boot/kernel/zfs.ko.symbols...done. Loaded symbols for /boot/kernel/zfs.ko.symbols Reading symbols from /boot/kernel/opensolaris.ko.symbols...done. Loaded symbols for /boot/kernel/opensolaris.ko.symbols Reading symbols from /boot/kernel/if_re.ko.symbols...done. Loaded symbols for /boot/kernel/if_re.ko.symbols Reading symbols from /boot/kernel/if_lagg.ko.symbols...done. Loaded symbols for /boot/kernel/if_lagg.ko.symbols Reading symbols from /boot/kernel/tmpfs.ko.symbols...done. Loaded symbols for /boot/kernel/tmpfs.ko.symbols Reading symbols from /boot/kernel/fdescfs.ko.symbols...done. Loaded symbols for /boot/kernel/fdescfs.ko.symbols #0 doadump (textdump=) at pcpu.h:219 219 pcpu.h: No such file or directory. in pcpu.h (kgdb) #0 doadump (textdump=) at pcpu.h:219 #1 0xffffffff8092c6d2 in kern_reboot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:452 #2 0xffffffff8092ca94 in panic (fmt=) at /usr/src/sys/kern/kern_shutdown.c:759 #3 0xffffffff80d7344f in trap_fatal (frame=, eva=) at /usr/src/sys/amd64/amd64/trap.c:865 #4 0xffffffff80d73768 in trap_pfault (frame=0xfffffe085935efa0, usermode=) at /usr/src/sys/amd64/amd64/trap.c:676 #5 0xffffffff80d72dca in trap (frame=0xfffffe085935efa0) at /usr/src/sys/amd64/amd64/trap.c:440 #6 0xffffffff80d58cb2 in calltrap () at /usr/src/sys/amd64/amd64/exception.S:232 #7 0xffffffff80934ceb in _sx_xlock_hard (sx=0xfffff800bbb439c8, tid=18446735278531930400, opts=, file=0x0, line=1496707472) at /usr/src/sys/kern/kern_sx.c:556 #8 0xffffffff8093486d in _sx_xlock (sx=0xfffff800368fe920, opts=0, file=, line=0) at sx.h:152 #9 0xffffffff81a06e59 in dnode_hold_impl (os=, object=, flag=1, tag=, dnp=0xfffffe085935f190) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c:1152 #10 0xffffffff819f746d in dmu_bonus_hold (os=0xfffff800bbb439c8, object=18446735278531930400, tag=, dbp=0xfffffe085935f1d0) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c:275 #11 0xffffffff81a5a15c in zfs_zget (zfsvfs=, obj_num=13510, zpp=) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c:1135 #12 0xffffffff81a71054 in zfs_dirent_lock (dlpp=0xfffffe085935f340, dzp=, name=, zpp=0x0, flag=, direntflags=, realpnp=) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c:318 #13 0xffffffff81a7130d in zfs_dirlook (dzp=0xfffff8001bf905c0, name=0xfffffe085935f420 "libcrypt.so", vpp=0xfffffe085935f868, flags=, deflg=0x0, rpnp=0x0) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c:426 #14 0xffffffff81a86810 in zfs_lookup () at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c:1490 #15 0xffffffff81a86c8d in zfs_freebsd_lookup (ap=0xfffffe085935f588) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c:6136 #16 0xffffffff80e90231 in VOP_CACHEDLOOKUP_APV (vop=, a=) at vnode_if.c:197 #17 0xffffffff809baef6 in vfs_cache_lookup (ap=) at vnode_if.h:80 #18 0xffffffff80e90121 in VOP_LOOKUP_APV (vop=, a=) at vnode_if.c:129 #19 0xffffffff809c33fc in lookup (ndp=0xfffffe085935f808) at vnode_if.h:54 #20 0xffffffff809c2b64 in namei (ndp=0xfffffe085935f808) at /usr/src/sys/kern/vfs_lookup.c:302 #21 0xffffffff809d6e5e in kern_statat_vnhook (td=0xfffff800368fe920, flag=, fd=-100, path=0x801093e48
, pathseg=UIO_USERSPACE, sbp=0xfffffe085935f920, hook=0x6aeb00000000) at /usr/src/sys/kern/vfs_syscalls.c:2284 #22 0xffffffff809d6ff0 in sys_lstat (td=0xfffff800bbb439c8, uap=0xfffffe085935fa40) at /usr/src/sys/kern/vfs_syscalls.c:2264 #23 0xffffffff80d73d81 in amd64_syscall (td=0xfffff800368fe920, traced=0) at subr_syscall.c:134 #24 0xffffffff80d58f9b in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:391 #25 0x000000080095b37a in ?? () Previous frame inner to this frame (corrupt stack?) Current language: auto; currently minimal (kgdb) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 13:59:58 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20429B0A for ; Tue, 23 Jun 2015 13:59:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0A84A6B1 for ; Tue, 23 Jun 2015 13:59:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NDxv3L036452 for ; Tue, 23 Jun 2015 13:59:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200802] MAXCPU bump to 256 breaks ABI for cpuset_getaffinity/setaffinity Date: Tue, 23 Jun 2015 13:59:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: adrian@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 13:59:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200802 Adrian Chadd changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adrian@freebsd.org --- Comment #4 from Adrian Chadd --- Shouldn't cpuset users be querying the cpuset size from sysctl and using that as their allocation base? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 15:20:01 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D13F13B for ; Tue, 23 Jun 2015 15:20:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07269E8E for ; Tue, 23 Jun 2015 15:20:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NFK0Ja033640 for ; Tue, 23 Jun 2015 15:20:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195174] bsdinstall(8) does not align partitions at 4k (or more) Date: Tue, 23 Jun 2015 15:19:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: Mark.Martinec@ijs.si X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 15:20:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195174 --- Comment #5 from Mark.Martinec@ijs.si --- Any chance of fixing installer's gpart partition alignment problem in time for 10.2 ? It should do something like: gpart add -t freebsd-boot -a 512k -s 512k da0 gpart add -t freebsd-swap -a 1m -s 2g da0 gpart add -t freebsd-zfs -a 1m da0 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 15:36:55 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1691822B for ; Tue, 23 Jun 2015 15:36:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 009C8860 for ; Tue, 23 Jun 2015 15:36:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NFasL2050294 for ; Tue, 23 Jun 2015 15:36:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195174] bsdinstall(8) does not align partitions at 4k (or more) Date: Tue, 23 Jun 2015 15:36:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: timp87@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 15:36:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195174 --- Comment #6 from timp87@gmail.com --- (In reply to Mark.Martinec from comment #5) Why 1m? I hope it will be fixed before 10.2, but I think it won't -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 16:00:12 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7CB13B7 for ; Tue, 23 Jun 2015 16:00:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 919DC33B for ; Tue, 23 Jun 2015 16:00:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NG0Ckq074489 for ; Tue, 23 Jun 2015 16:00:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195174] bsdinstall(8) does not align partitions at 4k (or more) Date: Tue, 23 Jun 2015 16:00:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 16:00:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195174 --- Comment #7 from Kurt Jaeger --- 1m for the 4k alignment in any corner case, as far as I understand. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 16:36:55 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B9BD5DB for ; Tue, 23 Jun 2015 16:36:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15DF06CF for ; Tue, 23 Jun 2015 16:36:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NGasrf045549 for ; Tue, 23 Jun 2015 16:36:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195174] bsdinstall(8) does not align partitions at 4k (or more) Date: Tue, 23 Jun 2015 16:36:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: Mark.Martinec@ijs.si X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 16:36:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195174 --- Comment #8 from Mark.Martinec@ijs.si --- The only waste when aligning the boot partition at 512k (1024 blocks) instead of 4k (40 blocks) is 492 kilobytes wasted. All partitions that follow will be 1M aligned with no waste (assuming boot partition is 512kB in size, which seems to be a recommended size nowadays). I think that we are way past the times where one would care for a wasted 0.48 MB on a disk (1024-40)*512./1024/1024. Those that build appliances on microcontrollers have other worries anyway and do not care for bsdinstall. 1MB alignment is beneficial for SSD devices, some of which do not care to report physical sector size. Consider also tiny computers that run off an SD card or USB key. And 0.48 MB wasted on a spinning disk seems like a non-issue to me. Even Microsoft is now aligning all partitions at 1MB, regardless of the underlying media (according to Wikipedia). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 17:15:32 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41021740 for ; Tue, 23 Jun 2015 17:15:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B1FEBEC for ; Tue, 23 Jun 2015 17:15:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NHFWde018541 for ; Tue, 23 Jun 2015 17:15:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 195174] bsdinstall(8) does not align partitions at 4k (or more) Date: Tue, 23 Jun 2015 17:15:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 17:15:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195174 --- Comment #9 from Kurt Jaeger --- ping'ed to re to fix for 10.2-REL -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 17:54:53 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F21EF9B0 for ; Tue, 23 Jun 2015 17:54:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC3448D3 for ; Tue, 23 Jun 2015 17:54:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NHsrWk059659 for ; Tue, 23 Jun 2015 17:54:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200863] Added missing '__cxa_deleted_virtual' into libcxxrt Date: Tue, 23 Jun 2015 17:54:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 17:54:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200863 --- Comment #10 from commit-hook@freebsd.org --- A commit references this bug: Author: dim Date: Tue Jun 23 17:54:25 UTC 2015 New revision: 284732 URL: https://svnweb.freebsd.org/changeset/base/284732 Log: Add __cxa_deleted_virtual to libcxxrt's version map. This symbol can sometimes be emitted by clang++, and was not yet exported from libcxxrt. Attempt to be compatible with libsupc++ by using the same CXXABI_1.3.6 symbol version. Reported by: yuri@rawbw.com PR: 200863 Reviewed by: emaste MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D2850 Changes: head/lib/libcxxrt/Version.map -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 20:27:13 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5200E149 for ; Tue, 23 Jun 2015 20:27:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2839E127 for ; Tue, 23 Jun 2015 20:27:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NKRCsP075358 for ; Tue, 23 Jun 2015 20:27:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200836] SR-IOV support should include config option description Date: Tue, 23 Jun 2015 20:27:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: rpokala@panasas.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 20:27:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200836 --- Comment #1 from Ravi Pokala --- rstone@ - you said you wanted to get this fix into 10.2 before the freeze - 10-STABLE is already slushed, so the window is closing... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 21:41:08 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3CA3B67B for ; Tue, 23 Jun 2015 21:41:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 260A5C44 for ; Tue, 23 Jun 2015 21:41:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NLf8HA039448 for ; Tue, 23 Jun 2015 21:41:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201082] gptzfsboot regression, "panic: bd_strategy: 114688 bytes I/O not multiple of block size" Date: Tue, 23 Jun 2015 21:41:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bilbo@hobbiton.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 21:41:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201082 Bug ID: 201082 Summary: gptzfsboot regression, "panic: bd_strategy: 114688 bytes I/O not multiple of block size" Product: Base System Version: 10.1-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: bilbo@hobbiton.org I have a machine (a Dell tower) on which the new gptzfsboot seems to malfunction. The version from 10.0 worked fine, and the version from 10.1 does not. The system has three SATA disks and one USB disk. The symptom is that when the USB disk is connected, gptzfsboot fails to boot. When I disconnect the USB disk, it boots fine. Changing the boot device order in the BIOS does not seem to affect it. The memstick USB image boots fine (although that doesn't use gptzfsboot). Below is the text I see with and without the USB disk attached. == Failed boot with USB drive attached == BTX loader 1.00 BTX version is 1.02 Consoles: internal video/keyboard BIOS drive C: is disk0 BIOS drive D: is disk1 BIOS drive E: is disk2 BIOS drive F: is disk3 BIOS 631kB/2060672kB available memory FreeBSD/x86 ZFS enabled bootstrap loader, Revision 1.1 (root@releng1.nyi.freebsd.org, Tue Nov 11 20:57:26 UTC 2014) Consoles: internal video/keyboard BIOS drive C: is disk0 BIOS drive D: is disk1 BIOS drive E: is disk2 BIOS drive F: is disk3 panic: bd_strategy: 114688 bytes I/O not multiple of block size --> Press a key on the console to reboot <-- == Successful boot without USB drive attached == BTX loader 1.00 BTX version is 1.02 Consoles: internal video/keyboard BIOS drive C: is disk0 BIOS drive D: is disk1 BIOS drive E: is disk2 BIOS 631kB/2060672kB available memory FreeBSD/x86 ZFS enabled bootstrap loader, Revision 1.1 (root@releng1.nyi.freebsd.org, Tue Nov 11 20:57:26 UTC 2014) Loading: /boot/defaults/loader.conf (menu appears) == output of "gpart show" without USB disk == => 34 5860533101 ada0 GPT (2.7T) 34 222 1 freebsd-boot (111K) 256 5836800000 2 freebsd-zfs (2.7T) 5836800256 23732872 3 freebsd-swap (11G) 5860533128 7 - free - (3.5K) => 34 5860533101 ada1 GPT (2.7T) 34 222 1 freebsd-boot (111K) 256 5836800000 2 freebsd-zfs (2.7T) 5836800256 23732872 3 freebsd-swap (11G) 5860533128 7 - free - (3.5K) => 34 1953525101 ada2 GPT (932G) 34 222 1 freebsd-boot (111K) 256 1887436800 2 freebsd-zfs (900G) 1887437056 66088079 - free - (32G) == dmesg after booting without USB disk == Copyright (c) 1992-2014 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 10.1-RELEASE-p10 #0: Wed May 13 06:54:13 UTC 2015 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 CPU: Pentium(R) Dual-Core CPU E5800 @ 3.20GHz (3192.07-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0x1067a Family = 0x6 Model = 0x17 Stepping = 10 Features=0xbfebfbff Features2=0xc00e3bd AMD Features=0x20100800 AMD Features2=0x1 VT-x: HLT,PAUSE TSC: P-state invariant, performance statistics real memory = 2147483648 (2048 MB) avail memory = 2012753920 (1919 MB) Event timer "LAPIC" quality 400 ACPI APIC Table: <120110 APIC1739> FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0 irqs 0-23 on motherboard random: initialized kbd1 at kbdmux0 acpi0: on motherboard acpi0: Power Button (fixed) acpi0: reservation of ffc00000, 300000 (3) failed acpi0: reservation of fee00000, 1000 (3) failed acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 7dd00000 (3) failed cpu0: on acpi0 cpu1: on acpi0 attimer0: port 0x40-0x43 irq 0 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 Event timer "i8254" frequency 1193182 Hz quality 100 atrtc0: port 0x70-0x71 irq 8 on acpi0 Event timer "RTC" frequency 32768 Hz quality 0 hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 950 Event timer "HPET" frequency 14318180 Hz quality 450 Event timer "HPET1" frequency 14318180 Hz quality 440 Event timer "HPET2" frequency 14318180 Hz quality 440 Event timer "HPET3" frequency 14318180 Hz quality 440 Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 vgapci0: port 0xbc00-0xbc07 mem 0xfe400000-0xfe7fffff,0xd0000000-0xdfffffff irq 16 at device 2.0 on pci0 agp0: on vgapci0 agp0: aperture size is 256M, detected 32764k stolen memory vgapci0: Boot video device vgapci1: mem 0xfe200000-0xfe2fffff at device 2.1 on pci0 uhci0: port 0xb880-0xb89f irq 16 at device 26.0 on pci0 uhci0: LegSup = 0x2f00 usbus0 on uhci0 uhci1: port 0xb800-0xb81f irq 21 at device 26.1 on pci0 uhci1: LegSup = 0x2f00 usbus1 on uhci1 ehci0: mem 0xfe3fa000-0xfe3fa3ff irq 18 at device 26.7 on pci0 usbus2: EHCI version 1.0 usbus2 on ehci0 hdac0: mem 0xfe3f4000-0xfe3f7fff irq 22 at device 27.0 on pci0 pcib1: irq 17 at device 28.0 on pci0 pci1: on pcib1 pcib2: irq 18 at device 28.2 on pci0 pci2: on pcib2 re0: port 0xc800-0xc8ff mem 0xfdfff000-0xfdffffff,0xfdff8000-0xfdffbfff irq 18 at device 0.0 on pci2 re0: Using 1 MSI-X message re0: Chip rev. 0x28000000 re0: MAC rev. 0x00100000 miibus0: on re0 rgephy0: PHY 1 on miibus0 rgephy0: none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow re0: Ethernet address: b8:ac:6f:e5:b7:91 uhci2: port 0xb400-0xb41f irq 23 at device 29.0 on pci0 uhci2: LegSup = 0x2f00 usbus3 on uhci2 uhci3: port 0xb080-0xb09f irq 19 at device 29.1 on pci0 uhci3: LegSup = 0x2f00 usbus4 on uhci3 uhci4: port 0xb000-0xb01f irq 18 at device 29.2 on pci0 uhci4: LegSup = 0x2f00 usbus5 on uhci4 ehci1: mem 0xfe3f8000-0xfe3f83ff irq 23 at device 29.7 on pci0 usbus6: EHCI version 1.0 usbus6 on ehci1 pcib3: at device 30.0 on pci0 pci3: on pcib3 pcib4: at device 1.0 on pci3 pci4: on pcib4 sf0: port 0xe800-0xe8ff mem 0xfeb80000-0xfebfffff irq 16 at device 4.0 on pci4 miibus1: on sf0 smcphy0: PHY 1 on miibus1 smcphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto sf0: Ethernet address: 00:00:d1:ee:98:ed sf1: port 0xe400-0xe4ff mem 0xfea80000-0xfeafffff irq 17 at device 5.0 on pci4 miibus2: on sf1 smcphy1: PHY 1 on miibus2 smcphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto sf1: Ethernet address: 00:00:d1:ee:98:ee sf2: port 0xe000-0xe0ff mem 0xfea00000-0xfea7ffff irq 18 at device 6.0 on pci4 miibus3: on sf2 smcphy2: PHY 1 on miibus3 smcphy2: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto sf2: Ethernet address: 00:00:d1:ee:98:ef sf3: port 0xd800-0xd8ff mem 0xfe900000-0xfe97ffff irq 19 at device 7.0 on pci4 miibus4: on sf3 smcphy3: PHY 1 on miibus4 smcphy3: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto sf3: Ethernet address: 00:00:d1:ee:98:f0 isab0: at device 31.0 on pci0 isa0: on isab0 ahci0: port 0xac00-0xac07,0xa880-0xa883,0xa800-0xa807,0xa480-0xa483,0xa400-0xa41f mem 0xfe3f2000-0xfe3f27ff irq 19 at device 31.2 on pci0 ahci0: AHCI v1.20 with 6 3Gbps ports, Port Multiplier not supported ahcich0: at channel 0 on ahci0 ahcich1: at channel 1 on ahci0 ahcich2: at channel 2 on ahci0 ahcich3: at channel 3 on ahci0 ahciem0: on ahci0 acpi_button0: on acpi0 orm0: at iomem 0xcc800-0xcd7ff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] ppc0: cannot reserve I/O port range est0: on cpu0 p4tcc0: on cpu0 est1: on cpu1 p4tcc1: on cpu1 random: unblocking device. usbus0: 12Mbps Full Speed USB v1.0 ZFS NOTICE: Prefetch is disabled by default if less than 4GB of RAM is present; to enable, add "vfs.zfs.prefetch_disable=0" to /boot/loader.conf. ZFS filesystem version: 5 ZFS storage pool version: features support (5000) Timecounters tick every 1.000 msec hdacc0: at cad 0 on hdac0 hdaa0: at nid 1 on hdacc0 pcm0: at nid 20,22,21,23,27 and 24,25,26 on hdaa0 hdacc1: at cad 3 on hdac0 hdaa1: at nid 1 on hdacc1 pcm1: at nid 3 on hdaa1 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 480Mbps High Speed USB v2.0 usbus3: 12Mbps Full Speed USB v1.0 usbus4: 12Mbps Full Speed USB v1.0 usbus5: 12Mbps Full Speed USB v1.0 usbus6: 480Mbps High Speed USB v2.0 ugen0.1: at usbus0 uhub0: on usbus0 ugen3.1: at usbus3 uhub1: on usbus3 ugen2.1: at usbus2 uhub2: on usbus2 ugen1.1: at usbus1 uhub3: on usbus1 ugen5.1: at usbus5 uhub4: on usbus5 ugen4.1: at usbus4 uhub5: on usbus4 ugen6.1: at usbus6 uhub6: on usbus6 ses0 at ahciem0 bus 0 scbus4 target 0 lun 0 ses0: SEMB S-E-S 2.00 device ses0: SEMB SES Device ada0 at ahcich0 bus 0 scbus0 target 0 lun 0 ada0: ATA-9 SATA 3.x device ada0: Serial Number Z1F45C12 ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) ada0: Command Queueing enabled ada0: 2861588MB (5860533168 512 byte sectors: 16H 63S/T 16383C) ada0: quirks=0x1<4K> ada0: Previously was known as ad4 ada1 at ahcich1 bus 0 scbus1 target 0 lun 0 ada1: ATA-9 SATA 3.x device ada1: Serial Number Z1F45BNQ cd0 at ahcich3 bus 0 scbus3 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: Serial Number K11B4DF1521 cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO 8192bytes) cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed ada1: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) ada1: Command Queueing enabled ada1: 2861588MB (5860533168 512 byte sectors: 16H 63S/T 16383C) ada1: quirks=0x1<4K> ada1: Previously was known as ad6 ada2 at ahcich2 bus 0 scbus2 target 0 lun 0 ada2: ATA-8 SATA 3.x device ada2: Serial Number WD-WCATR6856342 ada2: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) ada2: Command Queueing enabled ada2: 953869MB (1953525168 512 byte sectors: 16H 63S/T 16383C) ada2: Previously was known as ad8 SMP: AP CPU #1 Launched! Timecounter "TSC-low" frequency 1596034528 Hz quality 1000 uhub5: 2 ports with 2 removable, self powered uhub4: 2 ports with 2 removable, self powered uhub1: 2 ports with 2 removable, self powered uhub0: 2 ports with 2 removable, self powered uhub3: 2 ports with 2 removable, self powered GEOM_MIRROR: Device mirror/elrond-swap launched (2/2). Root mount waiting for: usbus6 usbus2 Root mount waiting for: usbus6 usbus2 uhub2: 6 ports with 6 removable, self powered uhub6: 6 ports with 6 removable, self powered Trying to mount root from zfs:elrond/_root []... ugen3.2: at usbus3 ukbd0: on usbus3 kbd2 at ukbd0 cryptosoft0: on motherboard GEOM_ELI: Device mirror/elrond-swap.eli created. GEOM_ELI: Encryption: AES-XTS 128 GEOM_ELI: Crypto: software sf1: Tx underrun -- increasing Tx threshold to 384 bytes tun0: link state changed to UP sf0: Tx underrun -- increasing Tx threshold to 384 bytes -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 21:50:04 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 134686BF for ; Tue, 23 Jun 2015 21:50:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D73E3EC for ; Tue, 23 Jun 2015 21:50:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NLo3hn048219 for ; Tue, 23 Jun 2015 21:50:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200993] camcontrol commands results in Periph destroyed on mrsas Date: Tue, 23 Jun 2015 21:50:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: alex.placentra@artemisracing.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 21:50:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200993 Alex P changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alex.placentra@artemisracin | |g.com --- Comment #3 from Alex P --- Hello, I have the same issue happening on a Supermicro X9SAE-V system with LSI 9341-8i card. Issue is present with Phil's mrsas version (from 10.1-RELEASE iso media) and with latest mrsas SVN version r284739. Thanks Alex smartctl -a /dev/da0 # causes da0 to disapper with log: da0 at mrsas0 bus 1 scbus1 target 8 lun 0 da0: s/n Z4602W6GS detached (da0:mrsas0:1:8:0): Periph destroyed # followed by: smartctl -a /dev/da2 # causes: da2 at mrsas0 bus 1 scbus1 target 10 lun 0 da2: s/n Z46Z2NUGS detached (da2:mrsas0:1:10:0): Periph destroyed # uname -a FreeBSD host 10.1-RELEASE FreeBSD 10.1-RELEASE #1: Tue Jun 23 22:05:59 PDT 2015 # sysctl dev.mrsas dev.mrsas.%parent: dev.mrsas.0.%desc: AVAGO Fury SAS Controller dev.mrsas.0.%driver: mrsas dev.mrsas.0.%location: slot=0 function=0 dev.mrsas.0.%pnpinfo: vendor=0x1000 device=0x005f subvendor=0x1000 subdevice=0x9341 class=0x010400 dev.mrsas.0.%parent: pci2 dev.mrsas.0.disable_ocr: 0 dev.mrsas.0.driver_version: 06.707.04.03-fbsd dev.mrsas.0.reset_count: 0 dev.mrsas.0.fw_outstanding: 0 dev.mrsas.0.io_cmds_highwater: 8 dev.mrsas.0.mrsas_debug: 4 dev.mrsas.0.mrsas_io_timeout: 180000 dev.mrsas.0.mrsas_fw_fault_check_delay: 1 dev.mrsas.0.reset_in_progress: 0 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 21:55:03 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F2AD6EA for ; Tue, 23 Jun 2015 21:55:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F21D3F1 for ; Tue, 23 Jun 2015 21:55:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NLt3R5056834 for ; Tue, 23 Jun 2015 21:55:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201083] mv a.c /doesnotexist results in usage message; not user friendly Date: Tue, 23 Jun 2015 21:55:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 21:55:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201083 Bug ID: 201083 Summary: mv a.c /doesnotexist results in usage message; not user friendly Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: ngie@FreeBSD.org FreeBSD punts out a usage message with mv when the target doesn't exist: $ uname -a FreeBSD wkstn-fbsd-ngie 11.0-CURRENT FreeBSD 11.0-CURRENT #3 r275919+fef312b(projects/building-blocks): Thu Dec 18 16:14:11 PST 2014=20= =20=20=20 ngie@wkstn-fbsd-ngie:/usr/obj/usr/src/sys/GENERIC-WITHOUT-WITNESS amd64 $ which mv /bin/mv $ mv src/test_bug_135934.c src/test_bug_149417.sh src/test_bug_151050.sh src/test_new_build.sh idontexist usage: mv [-f | -i | -n] [-hv] source target mv [-f | -i | -n] [-v] source ... directory Fedora Linux 20 on the other hand has a more usable error message: $ cat /etc/redhat-release=20 Fedora release 20 (Heisenbug) $ mv t_gdtoa.c /doesnotexist/ mv: cannot create regular file =E2=80=98/doesnotexist/=E2=80=99: Not a dire= ctory POSIX says nothing about mv behavior, so I think it's safe to say that chan= ging the behavior from a usage message to something more usable is desired for FreeBSD usability: http://pubs.opengroup.org/onlinepubs/009604599/utilities/mv.html --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 21:55:08 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C13CD70E for ; Tue, 23 Jun 2015 21:55:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A86A5611 for ; Tue, 23 Jun 2015 21:55:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NLt8MB056938 for ; Tue, 23 Jun 2015 21:55:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200993] camcontrol commands results in Periph destroyed on mrsas Date: Tue, 23 Jun 2015 21:55:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: phil@dip.host X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 21:55:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200993 --- Comment #4 from Phil Kulin --- Alex, try camcontrol identify /dev/da0 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 21:55:21 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5678734 for ; Tue, 23 Jun 2015 21:55:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BEFAA661 for ; Tue, 23 Jun 2015 21:55:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NLtLGa057140 for ; Tue, 23 Jun 2015 21:55:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201083] mv a.file /doesnotexist results in usage message; not user friendly Date: Tue, 23 Jun 2015 21:55:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 21:55:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201083 Garrett Cooper,425-314-3911 changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|mv a.c /doesnotexist |mv a.file /doesnotexist |results in usage message; |results in usage message; |not user friendly |not user friendly -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 21:58:47 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC1D275E for ; Tue, 23 Jun 2015 21:58:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C5566D0 for ; Tue, 23 Jun 2015 21:58:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NLwlF9058508 for ; Tue, 23 Jun 2015 21:58:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200993] camcontrol commands results in Periph destroyed on mrsas Date: Tue, 23 Jun 2015 21:58:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: alex.placentra@artemisracing.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 21:58:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200993 --- Comment #5 from Alex P --- Also forgot to mention that camcontrol rescan brings back any detached drives (In reply to Phil Kulin from comment #4) # camcontrol identify /dev/da0 pass1: ATA-8 SATA 3.x device camcontrol: get_cpi: error sending Path Inquiry CCB: Device not configured protocol ATA/ATAPI-8 SATA 3.x device model TOSHIBA DT01ACA300 firmware revision MX6OABB0 serial number Z46Z2NUGS WWN 5000039ff4e9dc2b cylinders 16383 heads 16 sectors/track 63 sector size logical 512, physical 4096, offset 0 LBA supported 268435455 sectors LBA48 supported 5860533168 sectors PIO supported PIO4 DMA supported WDMA2 UDMA6 media RPM 7200 Feature Support Enabled Value Vendor read ahead yes yes write cache yes yes flush cache yes yes overlap no Tagged Command Queuing (TCQ) no no Native Command Queuing (NCQ) yes 32 tags NCQ Queue Management no NCQ Streaming no Receive & Send FPDMA Queued no SMART yes yes microcode download yes yes security yes no power management yes yes advanced power management yes no 0/0x00 automatic acoustic management no no media status notification no no power-up in Standby yes no write-read-verify no no unload no no general purpose logging yes yes free-fall no no Data Set Management (DSM/TRIM) no Host Protected Area (HPA) yes no 5860533168/1 HPA - Security no -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 23:01:21 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23BF0AC2 for ; Tue, 23 Jun 2015 23:01:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CCF8FC0 for ; Tue, 23 Jun 2015 23:01:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NN1KiX078177 for ; Tue, 23 Jun 2015 23:01:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201084] [PATCH] Add USB product id for i-tec USB 2.0 Docking Station Date: Tue, 23 Jun 2015 23:01:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: matthias@petermann-it.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 23:01:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201084 Bug ID: 201084 Summary: [PATCH] Add USB product id for i-tec USB 2.0 Docking Station Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: matthias@petermann-it.de Keywords: patch Created attachment 158028 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=158028&action=edit patch to add usb product id and change man page Dear Committers, the attached patch adds the USB product id for the i-tec USB 2.0 Docking Station[1] and adds the device to the list of supported products in the udl man page. The device is tested as working with newcons FB as well as xorg scfb driver. Best regards, Matthias [1] http://www.i-tec-europe.eu/?t=3&v=217 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 00:07:19 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8108ECA9 for ; Wed, 24 Jun 2015 00:07:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AE091B29 for ; Wed, 24 Jun 2015 00:07:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5O07JAg059448 for ; Wed, 24 Jun 2015 00:07:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200993] camcontrol commands results in Periph destroyed on mrsas Date: Wed, 24 Jun 2015 00:07:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: alex.placentra@artemisracing.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 00:07:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200993 --- Comment #6 from Alex P --- UPDATE: upgrading the card firmware to the latest version (package 24.8.0-0020) has resolved this issue with mrsas SVN r284739. Thanks Alex -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 00:53:19 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70DF8E8C for ; Wed, 24 Jun 2015 00:53:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B0DC172 for ; Wed, 24 Jun 2015 00:53:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5O0rJLZ086289 for ; Wed, 24 Jun 2015 00:53:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201087] Bootstrapping pkg(8) could be more LOCALBASE friendly Date: Wed, 24 Jun 2015 00:53:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: lyndon@orthanc.ca X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 00:53:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201087 Bug ID: 201087 Summary: Bootstrapping pkg(8) could be more LOCALBASE friendly Product: Base System Version: 10.1-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: lyndon@orthanc.ca -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 05:56:25 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97B8F141EE28 for ; Wed, 24 Jun 2015 05:56:25 +0000 (UTC) (envelope-from bounce@smtp3.creatunewsletter.com) Received: from smtp3.creatunewsletter.com (smtp3.creatunewsletter.com [69.61.107.53]) by mx1.freebsd.org (Postfix) with ESMTP id 68D219AA for ; Wed, 24 Jun 2015 05:56:25 +0000 (UTC) (envelope-from bounce@smtp3.creatunewsletter.com) Received: from localhost (smtp3 [127.0.0.1]) by smtp3.creatunewsletter.com (Postfix) with ESMTP id 9B79911C16D for ; Wed, 24 Jun 2015 02:56:24 -0300 (ART) Date: Wed, 24 Jun 2015 02:56:24 -0300 To: freebsd-bugs@freebsd.org From: Envios de News Reply-to: Envios de News Subject: =?ISO-8859-1?Q?Queres_vender_m=E1s!!!_Tenemos_la_Soluci=F3n?= Message-ID: X-Priority: 3 X-Mailer: PHPMailer 5.1 (phpmailer.sourceforge.net) Msg-KP: MTIyMjM0MjU0 MIME-Version: 1.0 Content-Type: text/plain; charset = "ISO-8859-1" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 05:56:25 -0000 NO RESPONDA ESTE MAIL Captar Nuevos Clientes??? Te ofrecemos una Campaña Mensual para que Vendas todos los dias 5.000 mails diarios, 20 días hábiles al Mes = 100.000 contactos a enviar, por solo $ 700 10.000 mails diarios, 20 días hábiles al Mes = 200.000 contactos a enviar, por solo $ 1250 20.000 mails diarios, 20 días hábiles al Mes = 400.000 contactos a enviar, por solo $ 1890 La cantidad de contactos a enviar se pueden adaptar a tu necesidad Envios a Mayor Cantidad de Contactos**OFERTA MES JUNIO** 600.000 por solo $ 2.790 800.000 por solo $ 3.490 1 MILLON por solo $ 4.290 Sistema con Reportes, Graficos, Aperturas, etc Nuevas Bases Vip, Premium y Especiales Tenemos bases verificadas, seleccionadas, aperturas, leidos, clicks, interesados, etc plataformas y servicio de envios con servidores dedicados, dominios e ips rotativos, etc Formas de Pago: Transferencia o Deposito Bancario, Pago Facil y Rapi Pago Más informes a: Este mail Enviado por creatunewsletter , sistema de email marketing y publicidad,si desea promocionar su producto contáctemos en este enlaceEste news es enviado en forma legal Ley 26.032, libre de virus y contiene información de interes común. Para desuscripción, Click Aquí Si no desea continuar recibiendo este correo haga click aquí. From owner-freebsd-bugs@freebsd.org Wed Jun 24 05:32:07 2015 Return-Path: Delivered-To: freebsd-bugs@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC7B3141E692 for ; Wed, 24 Jun 2015 05:32:07 +0000 (UTC) (envelope-from 3mjGKVQYPDNcK797K8K797K8.SHST.5HF8K774L6-4N9L8K774L6.HK9@photos-server.bounces.google.com) Received: from mail-ob0-f202.google.com (mail-ob0-f202.google.com [209.85.214.202]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DF22D1241 for ; Wed, 24 Jun 2015 04:27:08 +0000 (UTC) (envelope-from 3mjGKVQYPDNcK797K8K797K8.SHST.5HF8K774L6-4N9L8K774L6.HK9@photos-server.bounces.google.com) Received: by obcwm4 with SMTP id wm4so1948610obc.1 for ; Tue, 23 Jun 2015 21:27:06 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=mime-version:reply-to:message-id:date:subject:from:to:content-type; bh=JxKYjYWwjStVTULVBSNaEAq0Yc73nkkttCG4Z8cz6ks=; b=Jei7C2O/7HmUTNxHA9w1jwuNhHL5sDzk/Ts14YfVH3RIIRVxVDvuIPV1KarQTTD3lq 2IM17X9MLK8Nmnwqi2y7xiGFalHy9W7IL0EiqnwSL5NTbUDAa4PyZLYdDIhM3cJStpe+ aiC9zhBRtQ/7Zi0/N9xfOUkvfLhxTeqzjOvv9pUyQv/UC+PAX7aY6263EfQTyxipD0G3 yg98GY6fGiXKR9l3Yerq6wVpW27QH3hgt/M2QhyvYD3vjfLmfiyjRhb0m9AbT0xsW3bD uRfqLRcdkiTSsSTPAvBekSQq8RYxCXQ4+d3IWElqsEg/vjWPoDIcXUUNxCez6Ib3dC/K jdxg== MIME-Version: 1.0 X-Received: by 10.182.226.169 with SMTP id rt9mr51335120obc.10.1435120026844; Tue, 23 Jun 2015 21:27:06 -0700 (PDT) Reply-To: "Mould making/ Die-casting/ Precision stamping/ Machining parts/CNC Precision Parts" Message-ID: <001a11c32b5668fd7f05193bebd7@google.com> Date: Wed, 24 Jun 2015 04:27:06 +0000 Subject: Mould making/ Die-casting/ Precision stamping/ Machining parts/CNC Precision Parts shared an album with you. From: "Mould making/ Die-casting/ Precision stamping/ Machining parts/CNC Precision Parts" To: freebsd-bugs@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 05:32:08 -0000 Dear Sir/Ms, Good day! As an ISO certified factory, we specialized manufacture Mould making/ Sheet metal process/ Die-casting/ Precision stamping/ Machining parts, with strong competitive price and excellent quality, for more than 20 years. Any questions and enquiries will be highly regarded. Just email us the drawing and detailed requirement, you will get a complete quotation with technical analysis within 24 hours. Your prompt reply is highly appreciated. Best regards sincerely! Michael ________________________________________ Shenzhen, China https://picasaweb.google.com/lh/sredir?uname=115990411808412725314&target=ALBUM&id=6111919598942532641&authkey=Gv1sRgCMntspiDrZ69ZA&invite=CKfKlIgH&feat=email From owner-freebsd-bugs@freebsd.org Wed Jun 24 12:19:14 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D096C91572B for ; Wed, 24 Jun 2015 12:19:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BE3E81E6C for ; Wed, 24 Jun 2015 12:19:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OCJEk8025720 for ; Wed, 24 Jun 2015 12:19:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192651] calendar - Hawaii Admission day was in 1959 not 1984 ... Date: Wed, 24 Jun 2015 12:19:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 12:19:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192651 --- Comment #4 from commit-hook@freebsd.org --- A commit references this bug: Author: brueffer Date: Wed Jun 24 12:19:12 UTC 2015 New revision: 284750 URL: https://svnweb.freebsd.org/changeset/base/284750 Log: MFH: r284249 Correct Hawaii's admission day. PR: 192651 Changes: _U stable/10/ stable/10/usr.bin/calendar/calendars/calendar.holiday -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 12:22:16 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED75B9158DC for ; Wed, 24 Jun 2015 12:22:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB2D0163E for ; Wed, 24 Jun 2015 12:22:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OCMGGg032629 for ; Wed, 24 Jun 2015 12:22:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193496] Inconsistent trailing space in "geli init" output Date: Wed, 24 Jun 2015 12:22:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 12:22:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193496 --- Comment #8 from commit-hook@freebsd.org --- A commit references this bug: Author: brueffer Date: Wed Jun 24 12:21:26 UTC 2015 New revision: 284752 URL: https://svnweb.freebsd.org/changeset/base/284752 Log: MFH: r284250 Consistently use trailing whitespace in passphrase prompts. PR: 193496 Submitted by: Fabian Keil Changes: _U stable/10/ stable/10/sbin/geom/class/eli/geom_eli.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 12:26:22 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8728915906 for ; Wed, 24 Jun 2015 12:26:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BE2D1875 for ; Wed, 24 Jun 2015 12:26:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OCQMW1034170 for ; Wed, 24 Jun 2015 12:26:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192651] calendar - Hawaii Admission day was in 1959 not 1984 ... Date: Wed, 24 Jun 2015 12:26:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: brueffer@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 12:26:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192651 Christian Brueffer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Closed Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 12:49:20 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E3FD915CC0 for ; Wed, 24 Jun 2015 12:49:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C09F10C1 for ; Wed, 24 Jun 2015 12:49:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OCnKfT035928 for ; Wed, 24 Jun 2015 12:49:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193496] Inconsistent trailing space in "geli init" output Date: Wed, 24 Jun 2015 12:49:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 12:49:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193496 --- Comment #9 from commit-hook@freebsd.org --- A commit references this bug: Author: brueffer Date: Wed Jun 24 12:48:56 UTC 2015 New revision: 284753 URL: https://svnweb.freebsd.org/changeset/base/284753 Log: MFH: r284250 Consistently use trailing whitespace in passphrase prompts. PR: 193496 Submitted by: Fabian Keil Changes: _U stable/9/sbin/geom/class/eli/ stable/9/sbin/geom/class/eli/geom_eli.c -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 12:52:11 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2217915DE4 for ; Wed, 24 Jun 2015 12:52:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8FE121456 for ; Wed, 24 Jun 2015 12:52:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OCqBQZ042592 for ; Wed, 24 Jun 2015 12:52:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 193496] Inconsistent trailing space in "geli init" output Date: Wed, 24 Jun 2015 12:52:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: brueffer@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 12:52:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193496 Christian Brueffer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Closed Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 13:18:42 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C4959151AB for ; Wed, 24 Jun 2015 13:18:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A7391E78 for ; Wed, 24 Jun 2015 13:18:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5ODIfc3097033 for ; Wed, 24 Jun 2015 13:18:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201095] arm64 missing fpsetmask Date: Wed, 24 Jun 2015 13:18:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 13:18:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201095 Bug ID: 201095 Summary: arm64 missing fpsetmask Product: Base System Version: 11.0-CURRENT Hardware: arm64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: emaste@freebsd.org arm64 has a prototype: /usr/include/machine/ieeefp.h:extern fp_except_t fpsetmask(fp_except_t); but it is not implemented - e.g., when building the perl port: ===> Building for perl5-5.20.2_4 cc -lpthread -Wl,-E -fstack-protector -L/usr/local/lib -o miniperl perlmini.o opmini.o miniperlmain.o gv.o toke.o perly.o pad.o regcomp.o dump.o util.o mg.o reentr.o mro.o keywords.o hv.o av.o run.o pp_hot.o sv.o pp.o scope.o pp_ctl.o pp_sys.o doop.o doio.o regexec.o utf8.o taint.o deb.o universal.o globals.o perlio.o perlapi.o numeric.o mathoms.o locale.o pp_pack.o pp_sort.o caretx.o -lm -lcrypt -lutil perlmini.o: In function `Perl_sys_init': perlmini.c:(.text+0xc): undefined reference to `fpsetmask' perlmini.o: In function `Perl_sys_init3': perlmini.c:(.text+0x58): undefined reference to `fpsetmask' cc: error: linker command failed with exit code 1 (use -v to see invocation) *** [lib/buildcustomize.pl] Error code 1 make[3]: stopped in /usr/ports/lang/perl5.20/work/perl-5.20.2 1 error make[3]: stopped in /usr/ports/lang/perl5.20/work/perl-5.20.2 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 13:32:25 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8473C915434 for ; Wed, 24 Jun 2015 13:32:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E84C1566 for ; Wed, 24 Jun 2015 13:32:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5ODWPFs013139 for ; Wed, 24 Jun 2015 13:32:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201095] arm64 missing fpsetmask Date: Wed, 24 Jun 2015 13:32:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: Andrew@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: Andrew@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 13:32:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201095 Andrew Turner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Andrew@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |Andrew@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 17:42:20 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2311915E3C for ; Wed, 24 Jun 2015 17:42:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 854861C3F for ; Wed, 24 Jun 2015 17:42:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OHgKqp040575 for ; Wed, 24 Jun 2015 17:42:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 197842] kernel memory leak Date: Wed, 24 Jun 2015 17:42:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: netbsdrat@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 17:42:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197842 John Refling changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |netbsdrat@gmail.com --- Comment #1 from John Refling --- I have this problem NOW on 10.1-RELEASE. I am using memtest to test the RAM. It seems to me that I had this problem a long time ago, and there was bad RAM, and replacing that made the problem go away. That was a different machine from this one. I've made 2 passes of memtest without errors, however I'll let it run for a few more days to try to duplicate the temperature extremes. Anyhow, I have a program that I wrote that copies a lot of files to multiple disks, like 17,000 files. I ran it several days ago, and system crashes with the error in the original poster's post. I ran the program yesterday, and it ran to completion, no problem. Could be a temperature thing + RAM. I also put in some diagnostics on each loop of the program: char *delete = malloc(100); fprintf(stdout, "%p\n", delete); system("sysctl vm.kvm_free vm.kvm_size"); free(delete); The loop enters for each directory on the disk, not for each file, so there might be 900 loop entries. Now the vm.kvm_free and vm.kvm_size remain mostly constant. BUT the pointer to the delete is malloc()ed at 1000 (hex?) bytes greater each time the loop enters !!! I don't do any malloc()s after main(). This is probably not a reliable way to test things, but it looks suspicious. !!! Is there a better way to get the amount of free memory at any instant, probably another sysctl parameter. Anyhow this is just very frustrating and hard to track down. I had another issue that never got sorted out after years, on 9.1: http://lists.freebsd.org/pipermail/freebsd-questions/2013-November/254450.html Thanks, John Refling -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 20:00:54 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0F7D916C06 for ; Wed, 24 Jun 2015 20:00:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DEB82221B for ; Wed, 24 Jun 2015 20:00:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OK0shS003573 for ; Wed, 24 Jun 2015 20:00:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 197164] Zpool with L2ARC hangs whole system Date: Wed, 24 Jun 2015 20:00:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: delphij@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 20:00:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197164 Xin LI changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |delphij@FreeBSD.org --- Comment #4 from Xin LI --- For the record in case someone looks up this bug: this is fixed in FreeBSD-EN-15:07.zfs https://www.freebsd.org/security/advisories/FreeBSD-EN-15:07.zfs.asc . -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 20:33:25 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D97D915902 for ; Wed, 24 Jun 2015 20:33:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 49EFF15F0 for ; Wed, 24 Jun 2015 20:33:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OKXPUQ054067 for ; Wed, 24 Jun 2015 20:33:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201098] packagekernel only supports the default kernel install; being able to install multiple kernels with different names would be nice Date: Wed, 24 Jun 2015 20:33:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 20:33:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201098 Bug ID: 201098 Summary: packagekernel only supports the default kernel install; being able to install multiple kernels with different names would be nice Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: ngie@FreeBSD.org - packagekernel only works if INSTKERNNAME isn't specified in src.conf/make.conf - packagekernel only works with a single KERNCONF (KERNCONF can consist of multiple values). Please extend packagekernel to support multiple kernconfs/INSTKERNNAME so we could build release media with multiple kernels and people can select them from a list/from the bootloader. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 20:37:22 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC6FA9159CF for ; Wed, 24 Jun 2015 20:37:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A88BA1985 for ; Wed, 24 Jun 2015 20:37:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OKbM5K055770 for ; Wed, 24 Jun 2015 20:37:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201098] packagekernel only supports the default kernel install; being able to install multiple kernels with different names would be nice Date: Wed, 24 Jun 2015 20:37:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 20:37:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201098 Glen Barber changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Not A Bug Status|New |Closed --- Comment #1 from Glen Barber --- The 'packagekernel' target works fine, and INSTKERNNAME is not needed in src.conf or make.conf. Try: # make KERNCONF="GENERIC DEBUG" packagekernel The selection from loader(8) is orthogonal to this, as the values need to be set in loader.conf(5), which is an entirely different bug. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 21:06:23 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC160916210 for ; Wed, 24 Jun 2015 21:06:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8A8B1A63 for ; Wed, 24 Jun 2015 21:06:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OL6N4o056319 for ; Wed, 24 Jun 2015 21:06:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201098] packagekernel only supports the default kernel install; being able to install multiple kernels with different names would be nice Date: Wed, 24 Jun 2015 21:06:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: cattelan@thebarn.com X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 21:06:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201098 cattelan@thebarn.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cattelan@thebarn.com --- Comment #2 from cattelan@thebarn.com --- One of issue that the first kernel packaged is kernel.tgz We added a flag to force all the packaged kernels .if !defined(NO_INSTALLKERNEL) into the path that always adds the kernel config name to the tarball. kernel.${_kernel}.txz Basically so it is clear which config was used to build the kernel. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Wed Jun 24 22:05:23 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 903FE9169E1 for ; Wed, 24 Jun 2015 22:05:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D1FB19F2 for ; Wed, 24 Jun 2015 22:05:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OM5NQ6063051 for ; Wed, 24 Jun 2015 22:05:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200973] Fatal trap 9: general protection fault while in kernel mode Date: Wed, 24 Jun 2015 22:05:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tatarenko@alpha-it.ru X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 22:05:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200973 --- Comment #2 from Vasily --- Another panic on another machine with same kernel and same hardware: Wed Jun 24 20:30:56 MSK 2015 FreeBSD server.dc4.instatfootball.tv 10.1-RELEASE-p13 FreeBSD 10.1-RELEASE-p13 #2: Thu Jun 18 23:17:00 MSK 2015 root@server.dc4.instatfootball.tv:/usr/obj/usr/src/sys/CORV1 amd64 panic: general protection fault GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"...kgdb: kvm_read: invalid address (0xffeff80015c45490) Unread portion of the kernel message buffer: Fatal trap 9: general protection fault while in kernel mode cpuid = 4; apic id = 04 instruction pointer = 0x20:0xffffffff80931b40 stack pointer = 0x28:0xfffffe0859465830 frame pointer = 0x28:0xfffffe0859465900 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 44457 (httpd) trap number = 9 panic: general protection fault cpuid = 4 KDB: stack backtrace: #0 0xffffffff80967d80 at kdb_backtrace+0x60 #1 0xffffffff8092ca55 at panic+0x155 #2 0xffffffff80d7344f at trap_fatal+0x38f #3 0xffffffff80d730ac at trap+0x75c #4 0xffffffff80d58cb2 at calltrap+0x8 #5 0xffffffff808f849c at exit1+0x10dc #6 0xffffffff808f73be at sys_sys_exit+0xe #7 0xffffffff80d73d81 at amd64_syscall+0x351 #8 0xffffffff80d58f9b at Xfast_syscall+0xfb Uptime: 5d20h52m14s Dumping 4361 out of 32603 MB:..1%..11%..21%..31%..41%..51%..61%..71%..81%..91% Reading symbols from /boot/kernel/zfs.ko.symbols...done. Loaded symbols for /boot/kernel/zfs.ko.symbols Reading symbols from /boot/kernel/opensolaris.ko.symbols...done. Loaded symbols for /boot/kernel/opensolaris.ko.symbols Reading symbols from /boot/kernel/if_re.ko.symbols...done. Loaded symbols for /boot/kernel/if_re.ko.symbols Reading symbols from /boot/kernel/tmpfs.ko.symbols...done. Loaded symbols for /boot/kernel/tmpfs.ko.symbols Reading symbols from /boot/kernel/fdescfs.ko.symbols...done. Loaded symbols for /boot/kernel/fdescfs.ko.symbols #0 doadump (textdump=) at pcpu.h:219 219 pcpu.h: No such file or directory. in pcpu.h (kgdb) #0 doadump (textdump=) at pcpu.h:219 #1 0xffffffff8092c6d2 in kern_reboot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:452 #2 0xffffffff8092ca94 in panic (fmt=) at /usr/src/sys/kern/kern_shutdown.c:759 #3 0xffffffff80d7344f in trap_fatal (frame=, eva=) at /usr/src/sys/amd64/amd64/trap.c:865 #4 0xffffffff80d730ac in trap (frame=) at /usr/src/sys/amd64/amd64/trap.c:203 #5 0xffffffff80d58cb2 in calltrap () at /usr/src/sys/amd64/amd64/exception.S:232 #6 0xffffffff80931b40 in tdsendsignal (p=0xfffff80015bf44c0, td=, sig=20, ksi=0xfffff8000dfd54d0) at /usr/src/sys/kern/kern_sig.c:1971 #7 0xffffffff808f849c in exit1 (td=0xfffff80248d01920, rv=) at /usr/src/sys/kern/kern_exit.c:566 #8 0xffffffff808f73be in sys_sys_exit (td=0xfffff80015bf4848, uap=) at /usr/src/sys/kern/kern_exit.c:153 #9 0xffffffff80d73d81 in amd64_syscall (td=0xfffff80248d01920, traced=0) at subr_syscall.c:134 #10 0xffffffff80d58f9b in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:391 #11 0x0000000801c511ea in ?? () Previous frame inner to this frame (corrupt stack?) Current language: auto; currently minimal (kgdb) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 05:47:54 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75B9D98CA00 for ; Thu, 25 Jun 2015 05:47:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6328D10A4 for ; Thu, 25 Jun 2015 05:47:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5P5ls4n038858 for ; Thu, 25 Jun 2015 05:47:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201099] feature request: openssl s_client add support IPv6 Date: Thu, 25 Jun 2015 05:47:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: andrey@bsdnir.info X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 05:47:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201099 Bug ID: 201099 Summary: feature request: openssl s_client add support IPv6 Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: andrey@bsdnir.info openssl not work with ipv6 only hosts. % openssl s_client -connect ipv6.google.com:443 -tls1 -tlsextdebug -status gethostbyname failure connect:errno=0 % ncat -6 --ssl -v ipv6.google.com 443 Ncat: Version 6.47 ( http://nmap.org/ncat ) Ncat: SSL connection to 2a00:1450:4013:c01::66:443. Google Inc Ncat: SHA-1 fingerprint: 564B C539 C2A9 5675 EA9E 2803 D2AA 0E74 59B9 7AC0 OpenBSD have long time ago man openssl .... -6 Specify that s_client should attempt connections using IPv6 only. .... FreeBSD only wiki suggestion? In the wiki have https://wiki.freebsd.org/IPv6TODO#openssl_s_client (add WIP with GSoC2012 ) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 07:40:19 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77E2398D9C0 for ; Thu, 25 Jun 2015 07:40:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 65AB71DAA for ; Thu, 25 Jun 2015 07:40:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5P7eJ7e068938 for ; Thu, 25 Jun 2015 07:40:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201102] Realtek 892 recognized but no sound? Date: Thu, 25 Jun 2015 07:40:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: athanasios.kostopoulos@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 07:40:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201102 Bug ID: 201102 Summary: Realtek 892 recognized but no sound? Product: Base System Version: 10.1-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: athanasios.kostopoulos@gmail.com uname -a Code: FreeBSD marquis 10.1-RELEASE-p10 FreeBSD 10.1-RELEASE-p10 #0: Wed May 13 06:54:13 UTC 2015 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 cat /dev/sndstat Code: Installed devices: pcm0: (play) pcm1: (play) pcm2: (play) pcm3: (play/rec) default pcm4: (play/rec) pcm5: (play) pcm6: (play) # dmesg | grep -i hdaa1 Code: hdaa1: at nid 1 on hdacc1 pcm3: at nid 20,22,21,23 and 24,26 on hdaa1 pcm4: at nid 27 and 25 on hdaa1 pcm5: at nid 30 on hdaa1 pcm6: at nid 17 on hdaa1 yet no sound from Firefox, audacious, mpg123. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 10:30:36 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B4CB98C6FA for ; Thu, 25 Jun 2015 10:30:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F5A715E0 for ; Thu, 25 Jun 2015 10:30:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PAUadS085468 for ; Thu, 25 Jun 2015 10:30:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192014] getaddrinfo(3) broken in jail on loopback Date: Thu, 25 Jun 2015 10:30:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: borja@codigo23.net X-Bugzilla-Status: New X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 10:30:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192014 Francisco de Borja Lopez Rio changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |borja@codigo23.net --- Comment #1 from Francisco de Borja Lopez Rio --- I've hit this bug here too, as it causes phantomjs (ports/lang/phantomjs) to not be able to resolve host names. I've tried to run the following snippet on phantomjs: var page = require('webpage').create(); page.open('http://freebsd.org', function(status) { console.log("Status: " + status); if(status === "success") { page.render('freebsd.png'); } phantom.exit(); }); Running it in debug mode in phantomjs: 2015-06-25T12:22:36 [DEBUG] CookieJar - Created but will not store cookies (use option '--cookies-file=' to enable persisten cookie storage) 2015-06-25T12:22:36 [DEBUG] Phantom - execute: Configuration 2015-06-25T12:22:36 [DEBUG] 0 objectName : "" 2015-06-25T12:22:36 [DEBUG] 1 cookiesFile : "" 2015-06-25T12:22:36 [DEBUG] 2 diskCacheEnabled : "false" 2015-06-25T12:22:36 [DEBUG] 3 maxDiskCacheSize : "-1" 2015-06-25T12:22:36 [DEBUG] 4 ignoreSslErrors : "false" 2015-06-25T12:22:36 [DEBUG] 5 localToRemoteUrlAccessEnabled : "false" 2015-06-25T12:22:36 [DEBUG] 6 outputEncoding : "UTF-8" 2015-06-25T12:22:36 [DEBUG] 7 proxyType : "http" 2015-06-25T12:22:36 [DEBUG] 8 proxy : ":1080" 2015-06-25T12:22:36 [DEBUG] 9 proxyAuth : ":" 2015-06-25T12:22:36 [DEBUG] 10 scriptEncoding : "UTF-8" 2015-06-25T12:22:36 [DEBUG] 11 webSecurityEnabled : "true" 2015-06-25T12:22:36 [DEBUG] 12 offlineStoragePath : "" 2015-06-25T12:22:36 [DEBUG] 13 offlineStorageDefaultQuota : "-1" 2015-06-25T12:22:36 [DEBUG] 14 printDebugMessages : "true" 2015-06-25T12:22:36 [DEBUG] 15 javascriptCanOpenWindows : "true" 2015-06-25T12:22:36 [DEBUG] 16 javascriptCanCloseWindows : "true" 2015-06-25T12:22:36 [DEBUG] 17 sslProtocol : "tlsv1" 2015-06-25T12:22:36 [DEBUG] 18 sslCertificatesPath : "" 2015-06-25T12:22:36 [DEBUG] 19 webdriver : ":" 2015-06-25T12:22:36 [DEBUG] 20 webdriverLogFile : "" 2015-06-25T12:22:36 [DEBUG] 21 webdriverLogLevel : "INFO" 2015-06-25T12:22:36 [DEBUG] 22 webdriverSeleniumGridHub : "" 2015-06-25T12:22:36 [DEBUG] Phantom - execute: Script & Arguments 2015-06-25T12:22:36 [DEBUG] script: "example.js" 2015-06-25T12:22:36 [DEBUG] Phantom - execute: Starting normal mode 2015-06-25T12:22:36 [DEBUG] WebPage - setupFrame "" 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/fs.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/system.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/_coffee-script.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/package.json" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/coffee-script.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/./lexer.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/././rewriter.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/././helpers.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/./parser.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/./helpers.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/./nodes.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/././scope.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/./././helpers.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/././lexer.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/../coffee-script/./lib/coffee-script/./././rewriter.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/webpage.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] WebPage - updateLoadingProgress: 10 2015-06-25T12:22:36 [DEBUG] Network - Resource request error: 3 ( "Host codigo23.net not found" ) URL: "http://freebsd.org/" 2015-06-25T12:22:36 [DEBUG] WebPage - updateLoadingProgress: 100 Status: fail 2015-06-25T12:22:36 [DEBUG] WebPage - setupFrame "" 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/fs.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/system.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/_coffee-script.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/webpage.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] WebPage - updateLoadingProgress: 10 2015-06-25T12:22:36 [DEBUG] WebPage - setupFrame "" 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/fs.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/system.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/_coffee-script.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] FileSystem - _open: ":/modules/webpage.js" QMap(("mode", QVariant(QString, "r") ) ) 2015-06-25T12:22:36 [DEBUG] WebPage - updateLoadingProgress: 100 2015-06-25T12:22:36 [DEBUG] WebPage - updateLoadingProgress: 10 2015-06-25T12:22:36 [DEBUG] WebPage - updateLoadingProgress: 100 2015-06-25T12:22:36 [DEBUG] WebPage - setupFrame "" 2015-06-25T12:22:36 [DEBUG] WebPage - setupFrame "" After compiled phantomjs with debug symbols and ran it in a gdb session, I traced the error back to this call to getaddrinfo(): https://github.com/ariya/phantomjs/blob/1.9/src/qt/src/network/kernel/qhostinfo_unix.cpp#L213 which fails in a similar way to the sample code provided by Oleg. This server is running: 10.1-STABLE FreeBSD 10.1-STABLE #4 r280361: Mon Mar 23 16:31:23 CET 2015 built from sources (GENERIC kernel) and the jail.conf file is: # # /etc/jails.conf # # Common configuration options path = "/jails/${name}"; interface = "lo0"; allow.raw_sockets = 0; exec.clean; exec.system_user = "root"; exec.jail_user = "root"; exec.start += "/bin/sh /etc/rc"; exec.stop = "/bin/sh /etc/rc.shutdown"; exec.consolelog = "/var/log/jail_${name}_console.log"; mount.devfs; allow.set_hostname = 0; allow.sysvipc = 1; betabug { host.hostname = "phantomjs.codigo23.net"; ip4.addr += "lo0|127.0.0.2/32"; } I had not tried Oleg fix (this is a production server), so I was wondering if there would be any workaround while a fix gets into the official sources... ? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 10:36:29 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14CED98C874 for ; Thu, 25 Jun 2015 10:36:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01A511B31 for ; Thu, 25 Jun 2015 10:36:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PAaSnZ091690 for ; Thu, 25 Jun 2015 10:36:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192014] getaddrinfo(3) broken in jail on loopback Date: Thu, 25 Jun 2015 10:36:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: oleg@mamontov.net X-Bugzilla-Status: New X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 10:36:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192014 --- Comment #2 from oleg@mamontov.net --- The workaround that helped me was assigning addresses from 192.168.0.0/16 private block (instead of 127.0.0.0/8) for all jails. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 11:03:13 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ECBC998C109 for ; Thu, 25 Jun 2015 11:03:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9B9D167C for ; Thu, 25 Jun 2015 11:03:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PB3Dwv053089 for ; Thu, 25 Jun 2015 11:03:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 199809] libzfs_core has a sneaky dependency on libzfs Date: Thu, 25 Jun 2015 11:03:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: avg@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bapt@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 11:03:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199809 Andriy Gapon changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |In Progress Assignee|freebsd-bugs@FreeBSD.org |bapt@FreeBSD.org --- Comment #1 from Andriy Gapon --- The problem seems to be fixed by the following commit: https://svnweb.freebsd.org/base?view=revision&revision=284409 Not sure if MFC is expected. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 11:09:21 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CDBD98C18C for ; Thu, 25 Jun 2015 11:09:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59DB51891 for ; Thu, 25 Jun 2015 11:09:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PB9Lft055176 for ; Thu, 25 Jun 2015 11:09:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 199811] libnvpair has a sneaky dependency on libzfs Date: Thu, 25 Jun 2015 11:09:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: avg@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 11:09:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199811 --- Comment #1 from Andriy Gapon --- Created attachment 158043 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=158043&action=edit preliminary patch Attached is a patch based on a patch obtained from bapt@FreeBSD.org that I am currently testing. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 11:09:36 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5830F98C1A6 for ; Thu, 25 Jun 2015 11:09:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 457591895 for ; Thu, 25 Jun 2015 11:09:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PB9a66055252 for ; Thu, 25 Jun 2015 11:09:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192014] getaddrinfo(3) broken in jail on loopback Date: Thu, 25 Jun 2015 11:09:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: borja@codigo23.net X-Bugzilla-Status: New X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 11:09:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192014 --- Comment #3 from Francisco de Borja Lopez Rio --- Yes, thanks Oleg, that worked for me here too. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 11:11:05 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8B0298C29B for ; Thu, 25 Jun 2015 11:11:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 95F971A04 for ; Thu, 25 Jun 2015 11:11:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PBB5T6058225 for ; Thu, 25 Jun 2015 11:11:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 199811] libnvpair has a sneaky dependency on libzfs Date: Thu, 25 Jun 2015 11:11:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: avg@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.ispatch Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 11:11:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199811 Andriy Gapon changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #158043|0 |1 is patch| | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 16:32:00 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D695098EAB5 for ; Thu, 25 Jun 2015 16:32:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF65C11DB for ; Thu, 25 Jun 2015 16:32:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PGW0Fd021347 for ; Thu, 25 Jun 2015 16:32:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201083] mv a.file b.file /doesnotexist results in usage message; not user friendly Date: Thu, 25 Jun 2015 16:32:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 16:32:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201083 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|mv a.file /doesnotexist |mv a.file b.file |results in usage message; |/doesnotexist results in |not user friendly |usage message; not user | |friendly CC| |emaste@freebsd.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 16:33:02 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63CD298EAC7 for ; Thu, 25 Jun 2015 16:33:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5087311EA for ; Thu, 25 Jun 2015 16:33:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PGX23w021825 for ; Thu, 25 Jun 2015 16:33:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201083] mv a.file b.file /doesnotexist results in usage message; not user friendly Date: Thu, 25 Jun 2015 16:33:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 16:33:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201083 --- Comment #1 from Ed Maste --- What does Fedora show for the same case? That is, mv file1 file2 directory-that-does-not-exist/ -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 17:51:43 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E37B398C8A9 for ; Thu, 25 Jun 2015 17:51:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D01AD1E13 for ; Thu, 25 Jun 2015 17:51:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PHphv0030351 for ; Thu, 25 Jun 2015 17:51:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 61622] Intel Pro/100 Intelligent Server Adapter unsupported NIC Date: Thu, 25 Jun 2015 17:51:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 17:51:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=61622 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sbruno@FreeBSD.org Keywords| |IntelNetworking -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 17:53:15 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A5CAE98DB09 for ; Thu, 25 Jun 2015 17:53:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9283F1E8E for ; Thu, 25 Jun 2015 17:53:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PHrFLU031627 for ; Thu, 25 Jun 2015 17:53:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 52623] [ex] [patch] IRQ error in driver for the Intel EtherExpress Pro/10 Date: Thu, 25 Jun 2015 17:53:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 4.8-RELEASE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 17:53:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=52623 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |IntelNetworking CC| |sbruno@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 17:55:47 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E5A198DB30 for ; Thu, 25 Jun 2015 17:55:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 363101EB1 for ; Thu, 25 Jun 2015 17:55:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PHtlTI032598 for ; Thu, 25 Jun 2015 17:55:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 128577] [ixgbe] [patch] Send queue stall in ixgbe driver when MSIX interrups are used Date: Thu, 25 Jun 2015 17:55:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 7.1-PRERELEASE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 17:55:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=128577 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sbruno@FreeBSD.org Keywords| |IntelNetworking -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 17:59:06 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1507298DBDA for ; Thu, 25 Jun 2015 17:59:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01C261F37 for ; Thu, 25 Jun 2015 17:59:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PHx5wE034151 for ; Thu, 25 Jun 2015 17:59:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 172840] memory overwrite if configure more than 128 multicast addresses on ixgbe NIC Date: Thu, 25 Jun 2015 17:59:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 17:59:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=172840 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |IntelNetworking CC| |sbruno@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 18:00:59 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41A9E98DD78 for ; Thu, 25 Jun 2015 18:00:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2ED5F1058 for ; Thu, 25 Jun 2015 18:00:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PI0xcm053781 for ; Thu, 25 Jun 2015 18:00:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200987] sys/dev/ixgbe/ixgbe.c:1058: bad if statement ? Date: Thu, 25 Jun 2015 18:00:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 18:00:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200987 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sbruno@FreeBSD.org Keywords| |IntelNetworking -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 18:24:52 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5076998CE49 for ; Thu, 25 Jun 2015 18:24:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3DA2D119D for ; Thu, 25 Jun 2015 18:24:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PIOqGP046966 for ; Thu, 25 Jun 2015 18:24:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 162952] [headers] Problems including netinet/tcp_var.h Date: Thu, 25 Jun 2015 18:24:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 8.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 18:24:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=162952 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|IntelNetworking | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 18:24:46 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2EB3A98CE00 for ; Thu, 25 Jun 2015 18:24:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1B817118F for ; Thu, 25 Jun 2015 18:24:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PIOjvb046929 for ; Thu, 25 Jun 2015 18:24:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 162952] [headers] Problems including netinet/tcp_var.h Date: Thu, 25 Jun 2015 18:24:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 8.2-RELEASE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 18:24:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=162952 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |IntelNetworking CC| |sbruno@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 18:26:37 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23DF798C00D for ; Thu, 25 Jun 2015 18:26:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1095F1543 for ; Thu, 25 Jun 2015 18:26:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PIQa6J047722 for ; Thu, 25 Jun 2015 18:26:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 179644] [panic] worklist_remove: 0xfffffe001b6f6000 pagedep(0x0) not on list Date: Thu, 25 Jun 2015 18:26:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 18:26:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=179644 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |IntelNetworking CC| |sbruno@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 18:44:47 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C2DB98CEF7 for ; Thu, 25 Jun 2015 18:44:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39C831FCC for ; Thu, 25 Jun 2015 18:44:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PIilxZ066814 for ; Thu, 25 Jun 2015 18:44:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200874] freebsd-update failed from 10.1-RELEASE-p10 to p12 Date: Thu, 25 Jun 2015 18:44:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: fenginx@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 18:44:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200874 fenginx@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fenginx@gmail.com --- Comment #1 from fenginx@gmail.com --- I'm having the same issue. Now stuck with 10.1-RELEASE-p10. This is a FreeBSD VM on CloudAtCost: uname -a FreeBSD daemon 10.1-RELEASE-p10 FreeBSD 10.1-RELEASE-p10 #0: Wed May 13 06:54:13 UTC 2015 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 19:39:47 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F99998CA04 for ; Thu, 25 Jun 2015 19:39:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C2571A8F for ; Thu, 25 Jun 2015 19:39:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PJdl02055778 for ; Thu, 25 Jun 2015 19:39:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198822] [PATCH] Lack os support for ICC in sys/cdefs.h header Date: Thu, 25 Jun 2015 19:39:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 19:39:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198822 --- Comment #5 from commit-hook@freebsd.org --- A commit references this bug: Author: tijl Date: Thu Jun 25 19:39:07 UTC 2015 New revision: 284858 URL: https://svnweb.freebsd.org/changeset/base/284858 Log: Enable the use of __builtin_va_* for ICC. PR: 198822 Submitted by: Sergey Melnikov MFC after: 5 days Changes: head/sys/sys/cdefs.h -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 19:42:58 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9C4E98CD52 for ; Thu, 25 Jun 2015 19:42:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A5DC51F3A for ; Thu, 25 Jun 2015 19:42:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PJgw1s062817 for ; Thu, 25 Jun 2015 19:42:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 198822] [PATCH] Lack os support for ICC in sys/cdefs.h header Date: Thu, 25 Jun 2015 19:42:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tijl@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: tijl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: mfc-stable9? mfc-stable10? X-Bugzilla-Changed-Fields: bug_status assigned_to cc flagtypes.name Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 19:42:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198822 Tijl Coosemans changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |In Progress Assignee|freebsd-bugs@FreeBSD.org |tijl@FreeBSD.org CC| |tijl@FreeBSD.org Flags| |mfc-stable9?, mfc-stable10? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 20:30:42 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8783998D4DB for ; Thu, 25 Jun 2015 20:30:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6DE0D1E30 for ; Thu, 25 Jun 2015 20:30:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PKUgjX040460 for ; Thu, 25 Jun 2015 20:30:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201083] mv a.file b.file /doesnotexist results in usage message; not user friendly Date: Thu, 25 Jun 2015 20:30:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: avg@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 20:30:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201083 --- Comment #2 from Andriy Gapon --- (In reply to Ed Maste from comment #1) CentOS 7.1 reports: mv: target =E2=80=98/tmp/foo-bar=E2=80=99 is not a directory --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Jun 25 21:21:59 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF51898CBCF for ; Thu, 25 Jun 2015 21:21:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BCD021059 for ; Thu, 25 Jun 2015 21:21:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PLLxeg077041 for ; Thu, 25 Jun 2015 21:21:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200874] freebsd-update failed from 10.1-RELEASE-p10 to p12 Date: Thu, 25 Jun 2015 21:22:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: fenginx@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 21:21:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200874 --- Comment #2 from fenginx@gmail.com --- After installing /usr/src, update was OK. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 21:42:06 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 295BF98C036 for ; Thu, 25 Jun 2015 21:42:06 +0000 (UTC) (envelope-from johnandsara2@cox.net) Received: from fed1rmfepo103.cox.net (fed1rmfepo103.cox.net [68.230.241.145]) by mx1.freebsd.org (Postfix) with ESMTP id 050671B11 for ; Thu, 25 Jun 2015 21:42:05 +0000 (UTC) (envelope-from johnandsara2@cox.net) Received: from eastrmimpo209 ([68.230.241.224]) by eastrmfepo103.cox.net (InterMail vM.8.01.05.15 201-2260-151-145-20131218) with ESMTP id <20150625213750.SVFW4964.eastrmfepo103.cox.net@eastrmimpo209> for ; Thu, 25 Jun 2015 17:37:50 -0400 Received: from [192.168.3.15] ([72.209.223.190]) by eastrmimpo209 with cox id kldq1q001475ef401ldqqz; Thu, 25 Jun 2015 17:37:50 -0400 X-CT-Class: Clean X-CT-Score: 0.00 X-CT-RefID: str=0001.0A020203.558C74AE.0097,ss=1,re=0.000,fgs=0 X-CT-Spam: 0 X-Authority-Analysis: v=2.0 cv=PZchcFdd c=1 sm=1 a=ZAcaX8x25vLlsS9BSDEb7A==:17 a=9cW_t1CCXrUA:10 a=f5xKl4ys9bwA:10 a=8nJEP1OIZ-IA:10 a=kviXuzpPAAAA:8 a=6I5d2MoRAAAA:8 a=4FE9BM1bBDoH0u3RL1UA:9 a=wPNLvfGTeEIA:10 a=ZAcaX8x25vLlsS9BSDEb7A==:117 X-CM-Score: 0.00 Authentication-Results: cox.net; none Message-ID: <558C7570.20508@cox.net> Date: Thu, 25 Jun 2015 17:41:04 -0400 From: "John D. Hendrickson" User-Agent: Thunderbird 2.0.0.24 (X11/20100228) MIME-Version: 1.0 CC: freebsd-bugs@FreeBSD.org Subject: Re: [Bug 195174] bsdinstall(8) does not align partitions at 4k (or more) References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 21:42:06 -0000 bugzilla-noreply@freebsd.org wrote: > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195174 > > --- Comment #9 from Kurt Jaeger --- > ping'ed to re to fix for 10.2-REL > i dont' see any evidence posted of "incorrect alignment" for example: if one has an imporoperly reported DIFFERENT alignment from the alignment needed to mount/read/write from the unix disk Maxtor EZ-DRIVE were famous for causing a "lost block" drive alignment issue that caused data lost and alignment issues. You didn't install any "drive extension software / drive recognition" disk that came with the drive did you? You'd better be sure it works with BSD you might cause permanent damage to the drive. and these days: they likely aren't going to admit it or offer a fix for you as they did in past. From owner-freebsd-bugs@freebsd.org Thu Jun 25 22:15:10 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9928F98C56A for ; Thu, 25 Jun 2015 22:15:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 863BC1CDB for ; Thu, 25 Jun 2015 22:15:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PMFAud058867 for ; Thu, 25 Jun 2015 22:15:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200663] zfs allow/unallow doesn't show numeric UID when the ID no longer exists in the password file Date: Thu, 25 Jun 2015 22:15:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: delphij@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 22:15:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200663 Xin LI changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |delphij@FreeBSD.org --- Comment #2 from Xin LI --- I have submitted an issue at Illumos: https://www.illumos.org/issues/6037 with a proposed patch against FreeBSD. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Thu Jun 25 22:44:57 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB01898CB6C for ; Thu, 25 Jun 2015 22:44:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C879F104A for ; Thu, 25 Jun 2015 22:44:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PMivEX086771 for ; Thu, 25 Jun 2015 22:44:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192014] getaddrinfo(3) broken in jail on loopback Date: Thu, 25 Jun 2015 22:44:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: bz@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 22:44:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192014 Bjoern A. Zeeb changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bz@FreeBSD.org --- Comment #4 from Bjoern A. Zeeb --- I have a totally different question: is your resolver in /ec/resolv.conf inside said jail also on 127/8 or not? If not, then that's not the jail's fault. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 00:08:40 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C7F098CD45 for ; Fri, 26 Jun 2015 00:08:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E53E911DE for ; Fri, 26 Jun 2015 00:08:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5Q08dBe035934 for ; Fri, 26 Jun 2015 00:08:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201117] sysctl dev.ath.0.diversity causes a panic on the TL-WDR3600 Date: Fri, 26 Jun 2015 00:08:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: darius@dons.net.au X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 00:08:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201117 Bug ID: 201117 Summary: sysctl dev.ath.0.diversity causes a panic on the TL-WDR3600 Product: Base System Version: 11.0-CURRENT Hardware: mips OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: darius@dons.net.au Built from r284780 using freebsd-wifi-build@1fab33ad0059cf65894516a2cbc1bda13b7aac0d Output is.. FreeBSD/mips (freebsd-wifi) (ttyu0) login: root No home directory. Logging in with home = "/". # # sysctl dev.ath.0.diversity ath_hal_reg_read: reg=0x00009fc0, pm=1 Trap cause = 7 (bus error (load or store) - kernel mode) [ thread pid 145 tid 100047 ] Stopped at ath_hal_reg_read+0xc0: move s1,v0 db> bt Tracing pid 145 tid 100047 td 0x80c63000 db_trace_thread+30 (?,?,?,?) ra c042f69000000018 sp 0 sz 0 80087668+114 (0,?,ffffffff,?) ra c042f6a800000020 sp 100000000 sz 1 80086d40+388 (?,?,?,?) ra c042f6c8000000a8 sp 0 sz 0 db_command_loop+70 (?,?,?,?) ra c042f77000000018 sp 0 sz 0 80089948+f4 (?,?,?,?) ra c042f788000001a8 sp 0 sz 0 kdb_trap+100 (?,?,?,?) ra c042f93000000030 sp 0 sz 0 trap+151c (?,?,?,?) ra c042f960000000c8 sp 0 sz 0 MipsKernGenException+ec (0,b8109fc0,9fc0,129038) ra c042fa28000000c8 sp 100000001 sz 1 ath_hal_reg_read+c0 (?,?,?,?) ra c042faf000000030 sp 0 sz 0 pid 145 db> show reg at 0x80530000 cc_cpu+0xa180 v0 0xdeadc0de v1 0x27 _DYNAMIC_LINKING+0x26 a0 0 a1 0xb8109fc0 a2 0x9fc0 _DYNAMIC_LINKING+0x9fbf a3 0x129038 t0 0x4 _DYNAMIC_LINKING+0x3 t1 0 t2 0 t3 0 t4 0x1 _DYNAMIC_LINKING t5 0 t6 0 t7 0 s0 0xc08cc000 s1 0x1 _DYNAMIC_LINKING s2 0x80503134 mips_bus_space_generic+0x4 s3 0xb8100000 s4 0x9fc0 _DYNAMIC_LINKING+0x9fbf s5 0x4 _DYNAMIC_LINKING+0x3 s6 0xc042fd38 s7 0 t8 0x15 _DYNAMIC_LINKING+0x14 t9 0x40582f00 k0 0x804011e8 DELAY+0x3d8 k1 0xc042fb68 gp 0x80519cc0 _gp sp 0xc042faf0 s8 0x7fffede4 ra 0x800b91c0 ath_hal_reg_read+0xc0 sr 0xfc03 _DYNAMIC_LINKING+0xfc02 lo 0x1 _DYNAMIC_LINKING hi 0x3ace _DYNAMIC_LINKING+0x3acd bad 0xc08cc1b4 cs 0x4000801c pc 0x800b91c0 ath_hal_reg_read+0xc0 ath_hal_reg_read+0xc0: move s1,v0 db> -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 00:36:53 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4781998D183 for ; Fri, 26 Jun 2015 00:36:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2BD4A1148 for ; Fri, 26 Jun 2015 00:36:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5Q0arU4002309 for ; Fri, 26 Jun 2015 00:36:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201083] mv a.file b.file /doesnotexist results in usage message; not user friendly Date: Fri, 26 Jun 2015 00:36:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 00:36:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201083 --- Comment #3 from Garrett Cooper,425-314-3911 --- [ngie@wkstn-lnx-ngie ~]$ touch file1 file2 [ngie@wkstn-lnx-ngie ~]$ mv file1 file2 directory-that-does-not-exist/ mv: target =E2=80=98directory-that-does-not-exist/=E2=80=99 is not a direct= ory [ngie@wkstn-lnx-ngie ~]$ cat /etc/redhat-release=20 Fedora release 20 (Heisenbug) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Jun 26 00:38:33 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB8A298D1A5 for ; Fri, 26 Jun 2015 00:38:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D80C9119F for ; Fri, 26 Jun 2015 00:38:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5Q0cXot002828 for ; Fri, 26 Jun 2015 00:38:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200874] freebsd-update failed from 10.1-RELEASE-p10 to p12 Date: Fri, 26 Jun 2015 00:38:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: raycherng@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 00:38:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200874 --- Comment #3 from raycherng@gmail.com --- How to install /usr/src? So is it still a bug? Users usually don't have /usr/src installed... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 01:42:18 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7528598D9D7 for ; Fri, 26 Jun 2015 01:42:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 532C91AEC for ; Fri, 26 Jun 2015 01:42:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5Q1gI9a094887 for ; Fri, 26 Jun 2015 01:42:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201118] A crash when I/O-ing a UFS USB drive and appearing as going through ZFS (which is on the HD /) Date: Fri, 26 Jun 2015 01:42:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: alex-goncharov@outlook.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 01:42:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201118 Bug ID: 201118 Summary: A crash when I/O-ing a UFS USB drive and appearing as going through ZFS (which is on the HD /) Product: Base System Version: 10.1-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: alex-goncharov@outlook.com See the stack trace; the details of what happened -- on demand. All the software built, in a regular manner, from the source: --------------------------- 10.1-STABLE #0 r283831: Sun May 31 13:52:02 EDT 2015 --------------------------- Fatal trap 1: privileged instruction fault while in kernel mode cpuid = 0; apic id = 10 instruction pointer = 0x20:0xffffffff8098fa01 stack pointer = 0x28:0xfffffe0113d1b550 frame pointer = 0x28:0xfffffe0113d1b5a0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 2063 (mplayer) trap number = 1 panic: privileged instruction fault cpuid = 0 KDB: stack backtrace: #0 0xffffffff8097cfe0 at kdb_backtrace+0x60 #1 0xffffffff80940869 at vpanic+0x189 #2 0xffffffff809406d3 at panic+0x43 #3 0xffffffff80d3400f at trap_fatal+0x38f #4 0xffffffff80d33c6c at trap+0x75c #5 0xffffffff80d196a2 at calltrap+0x8 #6 0xffffffff81accb70 at dmu_read_uio_dnode+0xa0 #7 0xffffffff81accaa4 at dmu_read_uio_dbuf+0x34 #8 0xffffffff81b639a3 at zfs_freebsd_read+0x3e3 #9 0xffffffff80e5adb1 at VOP_READ_APV+0xa1 #10 0xffffffff809f3975 at vn_read+0x165 #11 0xffffffff809eff1b at vn_io_fault+0x10b #12 0xffffffff809944d5 at dofileread+0x95 #13 0xffffffff809941f8 at kern_readv+0x68 #14 0xffffffff80994183 at sys_read+0x63 #15 0xffffffff80d34927 at amd64_syscall+0x357 #16 0xffffffff80d1998b at Xfast_syscall+0xfb Uptime: 3h39m2s #0 doadump (textdump=) at pcpu.h:219 219 __asm("movq %%gs:%1,%0" : "=r" (td) (kgdb) bt #0 doadump (textdump=) at pcpu.h:219 #1 0xffffffff80940462 in kern_reboot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:451 #2 0xffffffff809408a8 in vpanic (fmt=, ap=) at /usr/src/sys/kern/kern_shutdown.c:758 #3 0xffffffff809406d3 in panic (fmt=0x0) at /usr/src/sys/kern/kern_shutdown.c:687 #4 0xffffffff80d3400f in trap_fatal (frame=, eva=) at /usr/src/sys/amd64/amd64/trap.c:857 #5 0xffffffff80d33c6c in trap (frame=) at /usr/src/sys/amd64/amd64/trap.c:203 #6 0xffffffff80d196a2 in calltrap () at /usr/src/sys/amd64/amd64/exception.S:236 #7 0xffffffff8098fa01 in uiomove_faultflag (cp=0xfffff80019005600, n=319, uio=0xfffffe0113d1b8e0, nofault=) at proc.h:983 #8 0xffffffff81accb70 in dmu_read_uio_dnode () from /boot/kernel/zfs.ko #9 0xffffffff81accaa4 in dmu_read_uio_dbuf () from /boot/kernel/zfs.ko #10 0xffffffff81b639a3 in zfs_freebsd_read () from /boot/kernel/zfs.ko #11 0xffffffff80e5adb1 in VOP_READ_APV (vop=, a=) at vnode_if.c:932 #12 0xffffffff809f3975 in vn_read (fp=0xfffff8001915e910, uio=0xfffffe0113d1b8e0, active_cred=, flags=, td=0x2d) at vnode_if.h:384 #13 0xffffffff809eff1b in vn_io_fault (fp=0xfffff8001915e910, uio=0xfffffe0113d1b8e0, active_cred=0xfffffe0113d1b8e0, flags=0, td=0x2d) at /usr/src/sys/kern/vfs_vnops.c:1159 #14 0xffffffff809944d5 in dofileread (td=0xfffff8001748f490, fd=5, fp=0xfffff8001915e910, auio=0xfffffe0113d1b8e0, offset=, flags=0) at file.h:296 #15 0xffffffff809941f8 in kern_readv (td=0xfffff8001748f490, fd=5, auio=0xfffffe0113d1b8e0) at /usr/src/sys/kern/sys_generic.c:270 #16 0xffffffff80994183 in sys_read (td=, uap=) at /usr/src/sys/kern/sys_generic.c:185 #17 0xffffffff80d34927 in amd64_syscall (td=0xfffff8001748f490, traced=0) at subr_syscall.c:134 #18 0xffffffff80d1998b in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:396 #19 0x00000008074abe8a in ?? () Previous frame inner to this frame (corrupt stack?) Cu -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 05:20:36 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9DCE998D866 for ; Fri, 26 Jun 2015 05:20:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 86B5A1972 for ; Fri, 26 Jun 2015 05:20:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5Q5KaE0075389 for ; Fri, 26 Jun 2015 05:20:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200874] freebsd-update failed from 10.1-RELEASE-p10 to p12 Date: Fri, 26 Jun 2015 05:20:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: fenginx@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 05:20:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200874 --- Comment #4 from fenginx@gmail.com --- (In reply to raycherng from comment #3) I used svn to update. I guess the svn version of src doesn't make any sense on 10.1-RELEASE... But anyways by installing src the problem was solved. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 05:46:11 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E803898DAAF for ; Fri, 26 Jun 2015 05:46:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CADAF1593 for ; Fri, 26 Jun 2015 05:46:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5Q5kB16000650 for ; Fri, 26 Jun 2015 05:46:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192014] getaddrinfo(3) broken in jail on loopback Date: Fri, 26 Jun 2015 05:46:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: borja@codigo23.net X-Bugzilla-Status: New X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 05:46:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192014 --- Comment #5 from Francisco de Borja Lopez Rio --- > cat /etc/resolv.conf search your-server.de nameserver 213.133.98.98 nameserver 213.133.99.99 nameserver 213.133.100.100 > That's currently the resolv.conf on that jail. I tried setting up the local unbound resolver too, but did not change anything (it was failing too) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 08:23:25 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57AD898D739 for ; Fri, 26 Jun 2015 08:23:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C9561675 for ; Fri, 26 Jun 2015 08:23:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5Q8NPbF097202 for ; Fri, 26 Jun 2015 08:23:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192014] getaddrinfo(3) broken in jail on loopback Date: Fri, 26 Jun 2015 08:23:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 9.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: oleg@mamontov.net X-Bugzilla-Status: New X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 08:23:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192014 --- Comment #6 from oleg@mamontov.net --- It doesn't matter whether resolver from 127/8 or not. The getaddrinfo wouldn't work anyway. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 14:54:22 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2AA698C80D for ; Fri, 26 Jun 2015 14:54:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF5801652 for ; Fri, 26 Jun 2015 14:54:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5QEsMLF052461 for ; Fri, 26 Jun 2015 14:54:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 61622] Intel Pro/100 Intelligent Server Adapter unsupported NIC Date: Fri, 26 Jun 2015 14:54:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 14:54:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=61622 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Overcome By Events Status|In Progress |Closed --- Comment #3 from Sean Bruno --- The 82555 and 82557 are supported by fxp(4). This should be working on all supported releases. The i960 isn't a known intel ethernet card as far as pci-ids is concerned. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 14:59:44 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 747F698C871 for ; Fri, 26 Jun 2015 14:59:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60D94195A for ; Fri, 26 Jun 2015 14:59:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5QExiLm056323 for ; Fri, 26 Jun 2015 14:59:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 52623] [ex] [patch] IRQ error in driver for the Intel EtherExpress Pro/10 Date: Fri, 26 Jun 2015 14:59:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 4.8-RELEASE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sbruno@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 14:59:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=52623 Sean Bruno changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Overcome By Events Status|In Progress |Closed --- Comment #1 from Sean Bruno --- This was not applied to head at any point in the last 10+ years. I doubt that anyone is still using this adapter. If someone would like to test this patch, please reopen with a diff to head and let me know the results in *this* ticket. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 16:03:02 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 704BE98D468 for ; Fri, 26 Jun 2015 16:03:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C6DD12AA for ; Fri, 26 Jun 2015 16:03:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5QG321i040557 for ; Fri, 26 Jun 2015 16:03:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201083] mv a.file b.file /doesnotexist results in usage message; not user friendly Date: Fri, 26 Jun 2015 16:03:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jilles@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 16:03:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201083 Jilles Tjoelker changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jilles@FreeBSD.org --- Comment #4 from Jilles Tjoelker --- This was already fixed for cp a while ago. It should be easy to port over. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Fri Jun 26 22:38:27 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EAF598C501 for ; Fri, 26 Jun 2015 22:38:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C2B01CE6 for ; Fri, 26 Jun 2015 22:38:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5QMcRuI050016 for ; Fri, 26 Jun 2015 22:38:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 194744] [PATCH] allow to specify custom keymap when kbdmux used Date: Fri, 26 Jun 2015 22:38:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: op@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.ispatch attachments.mimetype Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 22:38:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194744 Oliver Pinter changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #148901|0 |1 is patch| | Attachment #148901|application/mbox |text/plain mime type| | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Sat Jun 27 03:28:20 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6088698E301 for ; Sat, 27 Jun 2015 03:28:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31BB71B52 for ; Sat, 27 Jun 2015 03:28:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5R3SKMP077208 for ; Sat, 27 Jun 2015 03:28:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201141] System Crashes on access to certain files on a dataset. ZFS Data set Refers to impossibly large size. Date: Sat, 27 Jun 2015 03:28:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: brad@heightman.net X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2015 03:28:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201141 Bug ID: 201141 Summary: System Crashes on access to certain files on a dataset. ZFS Data set Refers to impossibly large size. Product: Base System Version: 10.1-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: brad@heightman.net Created attachment 158088 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=158088&action=edit Picture of last second before reboot while pool was still able to be mounted I have a 6 disk RaidZ2 pool that lists one data set as 16E in size. Their are 4 files that crash the server on access (Open, Move, Delete, Rename, ect). Even trying to destroy the data set crashes the machine. zfs destroy -r / causes instant reboot with same assert. On all listed OS's Assert is as follows. panic: solaris assert: rs == NULL, file: /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/range_tree.c, line: 186 cpuid = 0 This pool was created with FreeNAS 9.0.x, migrated to Nas4Free 9.3 then Nas4Free 10.1 when noticed stability problem arose. Problem has been replicated on import of same pool on FreeBSD 10.1 Live USB, FreeBSD 11 Live USB, Debian Linux w/ ZFS on Linux, Ubuntu Linux w/ ZoL in attempts to rescue data from disks. Last attempt to rescue data while also running zdb -b -AAA caused fault (same assert as above) and reboot, now even importing pool, or booting OS that expects pool to exist causes instant reboot with same Assert Below are links to some screen shots, and a video (Tool large to upload them all) https://youtu.be/pKp3PyZLISQ https://www.dropbox.com/sc/gulc0vaecn3m5zh/AADEhZeOgdUKPVT8DYpBTxSfa https://www.dropbox.com/sc/tssj647exm3pa8c/AAA7N1kY_tp3PCd1qkg2ST2ia https://www.dropbox.com/s/ghekuaywxd6ixbm/Capture1.PNG?dl=0 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Sat Jun 27 03:31:54 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0ED4B98E3E2 for ; Sat, 27 Jun 2015 03:31:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EF0A01DCE for ; Sat, 27 Jun 2015 03:31:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5R3Vr8m086089 for ; Sat, 27 Jun 2015 03:31:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201141] System Crashes on access to certain files on a dataset. ZFS Data set Refers to impossibly large size. Date: Sat, 27 Jun 2015 03:31:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: brad@heightman.net X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2015 03:31:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201141 --- Comment #1 from Brad Heightman --- Created attachment 158089 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=158089&action=edit Picture showing data set sizes in pool, hpool2/jails is one in question, files / folders on right are ones that crash system -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Sat Jun 27 09:12:43 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E942798D4FB for ; Sat, 27 Jun 2015 09:12:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D601A1A90 for ; Sat, 27 Jun 2015 09:12:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5R9ChYM032095 for ; Sat, 27 Jun 2015 09:12:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 190884] freebsd-update(8) fetch keeps wanting to update to 9.2-RELEASE-p8 Date: Sat, 27 Jun 2015 09:12:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 9.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: grembo@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2015 09:12:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190884 Michael Gmelin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |Overcome By Events --- Comment #2 from Michael Gmelin --- 9.2 is EoL -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Sat Jun 27 09:22:25 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBECF98D6D1 for ; Sat, 27 Jun 2015 09:22:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D45E61EB0 for ; Sat, 27 Jun 2015 09:22:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5R9MPPe030330 for ; Sat, 27 Jun 2015 09:22:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201144] [ixgbe] [xl] 82599es-based card Supermicro AOC-STGN-i2S is not working Date: Sat, 27 Jun 2015 09:22:25 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dvm.avgoor@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2015 09:22:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201144 Bug ID: 201144 Summary: [ixgbe] [xl] 82599es-based card Supermicro AOC-STGN-i2S is not working Product: Base System Version: 11.0-CURRENT Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: dvm.avgoor@gmail.com Created attachment 158093 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=158093&action=edit patch to support 0x0001 product_id I have 3 NICs marked as Supermicro AOC-STGN-i2S, these are actually 82599es-based cards with two SFP+ onboard. Driver `xgbe` doesn't recognise them, although it should. I've made a small patch to the driver and those card are working now. Please review the change and if it makes sence please add the corresponding product_id to the driver. pciconf: ix0@pci0:2:0:0: class=0x020000 card=0x10fb1b52 chip=0x00018086 rev=0x01 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Sat Jun 27 09:35:59 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8245798D941 for ; Sat, 27 Jun 2015 09:35:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5501E23DD for ; Sat, 27 Jun 2015 09:35:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5R9ZxBv040708 for ; Sat, 27 Jun 2015 09:35:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201144] [ixgbe] [xl] 82599es-based card Supermicro AOC-STGN-i2S is not working Date: Sat, 27 Jun 2015 09:35:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dvm.avgoor@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2015 09:35:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201144 --- Comment #1 from Denis V. Meltsaykin --- The tests with iperf were successful, but in dmesg there is a strange message: lock order reversal: 1st 0xfffff80004a16320 ix0:rx(3) (ix0:rx(3)) @ /usr/src/sys/dev/ixgbe/ix_txrx.c:1759 2nd 0xfffff8002345ef08 vlan (vlan) @ /usr/src/sys/net/if_vlan.c:1155 KDB: stack backtrace: db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe03e4b2c5d0 kdb_backtrace() at kdb_backtrace+0x39/frame 0xfffffe03e4b2c680 witness_checkorder() at witness_checkorder+0xea5/frame 0xfffffe03e4b2c710 _rm_rlock_debug() at _rm_rlock_debug+0x114/frame 0xfffffe03e4b2c750 vlan_input() at vlan_input+0xc8/frame 0xfffffe03e4b2c7d0 ether_demux() at ether_demux+0xb3/frame 0xfffffe03e4b2c800 ether_nh_input() at ether_nh_input+0x340/frame 0xfffffe03e4b2c830 netisr_dispatch_src() at netisr_dispatch_src+0x86/frame 0xfffffe03e4b2c8a0 ether_input() at ether_input+0x4f/frame 0xfffffe03e4b2c8d0 tcp_lro_flush() at tcp_lro_flush+0x198/frame 0xfffffe03e4b2c8f0 ixgbe_rxeof() at ixgbe_rxeof+0x732/frame 0xfffffe03e4b2c9a0 ixgbe_msix_que() at ixgbe_msix_que+0xb6/frame 0xfffffe03e4b2c9f0 intr_event_execute_handlers() at intr_event_execute_handlers+0x93/frame 0xfffffe03e4b2ca30 ithread_loop() at ithread_loop+0xa6/frame 0xfffffe03e4b2ca70 fork_exit() at fork_exit+0x84/frame 0xfffffe03e4b2cab0 fork_trampoline() at fork_trampoline+0xe/frame 0xfffffe03e4b2cab0 --- trap 0, rip = 0, rsp = 0xfffffe03e4b2cb70, rbp = 0 --- -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Sat Jun 27 10:07:08 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E44398DE7C for ; Sat, 27 Jun 2015 10:07:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 843512F1F for ; Sat, 27 Jun 2015 10:07:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5RA78UL002178 for ; Sat, 27 Jun 2015 10:07:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201072] /etc/mtree/BSD.include.dist and /etc/mtree/BSD.usr.dist create various atf directories that are later deleted by 'make delete-old' Date: Sat, 27 Jun 2015 10:07:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: kpaasial@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2015 10:07:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201072 --- Comment #1 from kpaasial@gmail.com --- Created attachment 158094 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=158094&action=edit Patch for /etc/mtree/* to address the issue. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Sat Jun 27 19:59:04 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52B2998EA18 for ; Sat, 27 Jun 2015 19:59:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3FF491115 for ; Sat, 27 Jun 2015 19:59:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5RJx42E020622 for ; Sat, 27 Jun 2015 19:59:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201153] bsd.man.mk: make buildworld is broken since r284685 when WITHOUT_MANCOMPRESS is set Date: Sat, 27 Jun 2015 19:59:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: s3erios@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2015 19:59:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201153 Bug ID: 201153 Summary: bsd.man.mk: make buildworld is broken since r284685 when WITHOUT_MANCOMPRESS is set Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: s3erios@gmail.com make: "/usr/src/share/mk/bsd.man.mk" line 189: missing `in' in for make: "/usr/src/share/mk/bsd.man.mk" line 193: for-less endfor make: Fatal errors encountered -- cannot continue make: stopped in /usr/src/usr.bin/bmake -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-bugs@freebsd.org Sat Jun 27 23:14:52 2015 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E190C98EA43 for ; Sat, 27 Jun 2015 23:14:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA55B19BD for ; Sat, 27 Jun 2015 23:14:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5RNEqV0099265 for ; Sat, 27 Jun 2015 23:14:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201155] NFS4 exports are blocked when NIS master server is unreachable Date: Sat, 27 Jun 2015 23:14:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: email.ahmedkamal@googlemail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2015 23:14:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201155 Bug ID: 201155 Summary: NFS4 exports are blocked when NIS master server is unreachable Product: Base System Version: 10.1-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: email.ahmedkamal@googlemail.com My Setup is: * A FreeBSD 10.1 with ZFS exporting NFS4 to a Linux server * That Linux server is a NIS master for the FreeBSD box The issue is: * Upon power failure .. Both servers starting fresh * FreeBSD boots faster (grin) * FreeBSD doesn't find NIS master and bombards logs with hundreds of thousands of messages!! like Jun 27 13:47:53 nas /usr/sbin/ypbind[827]: NIS server [192.168.10.254] for domain "SIVISION" not responding Jun 27 13:48:24 nas last message repeated 51704 times Jun 27 13:49:26 nas last message repeated 104381 times * In this state, FreeBSD does not allow any other machine to NFS4 mount its shares. This includes the NIS master Linux box * Linux boot hangs waiting for the NFS share to allow it to mount it * We are in a deadlock. Linux waiting for the NFS share to mount, while FreeBSD is waiting for the NIS server on Linux to start -- You are receiving this mail because: You are the assignee for the bug.