<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src">
    <title>gmane.os.freebsd.devel.cvs.src</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150118"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150117"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150116"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150115"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150114"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150113"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150112"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150111"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150110"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150109"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150108"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150107"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150106"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150105"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150104"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150103"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150102"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150101"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150100"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150099"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150118">
    <title>svn commit: r235872 - stable/8/sys/geom/raid</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150118</link>
    <description>&lt;pre&gt;Author: mav
Date: Thu May 24 01:43:08 2012
New Revision: 235872
URL: http://svn.freebsd.org/changeset/base/235872

Log:
  MFC r235270:
  - Prevent error status leak if write to some of the RAID1/1E volume disks
  failed while write to some other succeeded. Instead mark disk as failed.
  - Make RAID1E less aggressive in failing disks to avoid volume breakage.

Modified:
  stable/8/sys/geom/raid/tr_raid1.c
  stable/8/sys/geom/raid/tr_raid1e.c
Directory Properties:
  stable/8/sys/   (props changed)

Modified: stable/8/sys/geom/raid/tr_raid1.c
==============================================================================
--- stable/8/sys/geom/raid/tr_raid1.cThu May 24 01:41:54 2012(r235871)
+++ stable/8/sys/geom/raid/tr_raid1.cThu May 24 01:43:08 2012(r235872)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -893,7 +893,16 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; rebuild_round_done:
 g_raid_unlock_range(sd-&amp;gt;sd_volume, bp-&amp;gt;bio_offset,
     bp-&amp;gt;bio_length);
 }
-error = bp-&amp;gt;bio_error;
+if (pbp-&amp;gt;bio_cmd != BIO_READ) {
+if (pbp-&amp;gt;bio_inbed == 1 || pbp-&amp;gt;bio_error != 0)
+pbp-&amp;gt;bio_error &lt;/pre&gt;</description>
    <dc:creator>Alexander Motin</dc:creator>
    <dc:date>2012-05-24T01:43:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150117">
    <title>svn commit: r235871 - stable/9/sys/geom/raid</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150117</link>
    <description>&lt;pre&gt;Author: mav
Date: Thu May 24 01:41:54 2012
New Revision: 235871
URL: http://svn.freebsd.org/changeset/base/235871

Log:
  MFC r235270:
  - Prevent error status leak if write to some of the RAID1/1E volume disks
  failed while write to some other succeeded. Instead mark disk as failed.
  - Make RAID1E less aggressive in failing disks to avoid volume breakage.

Modified:
  stable/9/sys/geom/raid/tr_raid1.c
  stable/9/sys/geom/raid/tr_raid1e.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/geom/raid/tr_raid1.c
==============================================================================
--- stable/9/sys/geom/raid/tr_raid1.cThu May 24 01:31:10 2012(r235870)
+++ stable/9/sys/geom/raid/tr_raid1.cThu May 24 01:41:54 2012(r235871)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -893,7 +893,16 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; rebuild_round_done:
 g_raid_unlock_range(sd-&amp;gt;sd_volume, bp-&amp;gt;bio_offset,
     bp-&amp;gt;bio_length);
 }
-error = bp-&amp;gt;bio_error;
+if (pbp-&amp;gt;bio_cmd != BIO_READ) {
+if (pbp-&amp;gt;bio_inbed == 1 || pbp-&amp;gt;bio_error != 0)
+pbp-&amp;gt;bio_error &lt;/pre&gt;</description>
    <dc:creator>Alexander Motin</dc:creator>
    <dc:date>2012-05-24T01:41:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150116">
    <title>svn commit: r235870 - head/usr.bin/sockstat</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150116</link>
    <description>&lt;pre&gt;Author: thompsa
Date: Thu May 24 01:31:10 2012
New Revision: 235870
URL: http://svn.freebsd.org/changeset/base/235870

Log:
  Allow the socket list to be limited to a specific jail id.
  
  No objections:current&amp;lt; at &amp;gt;

Modified:
  head/usr.bin/sockstat/sockstat.1
  head/usr.bin/sockstat/sockstat.c

Modified: head/usr.bin/sockstat/sockstat.1
==============================================================================
--- head/usr.bin/sockstat/sockstat.1Thu May 24 01:30:17 2012(r235869)
+++ head/usr.bin/sockstat/sockstat.1Thu May 24 01:31:10 2012(r235870)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -27,7 +27,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 .\"
 .\" $FreeBSD$
 .\"
-.Dd January 24, 2012
+.Dd May 16, 2012
 .Dt SOCKSTAT 1
 .Os
 .Sh NAME
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -36,6 +36,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 .Sh SYNOPSIS
 .Nm
 .Op Fl 46cLlu
+.Op Fl j Ar jid
 .Op Fl p Ar ports
 .Op Fl P Ar protocols
 .Sh DESCRIPTION
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -57,6 +58,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Show
 (IPv6) sockets.
 .It Fl c
 Show connected sockets.
+.It Fl j Ar jid
+Show only sockets belonging to the specified jail ID.
 .It Fl L
 Only show Internet sockets if the local or foreign addresses &lt;/pre&gt;</description>
    <dc:creator>Andrew Thompson</dc:creator>
    <dc:date>2012-05-24T01:31:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150115">
    <title>svn commit: r235869 - stable/8/sys/dev/usb/input</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150115</link>
    <description>&lt;pre&gt;Author: mav
Date: Thu May 24 01:30:17 2012
New Revision: 235869
URL: http://svn.freebsd.org/changeset/base/235869

Log:
  MFC r235558, r235569:
  Add support for writing to HID devices through the interrupt output pipe.
  Supermicro LCD screen modules seem to not support accessing reports through
  the control pipes, but working fine with the interrupt pipes.

Modified:
  stable/8/sys/dev/usb/input/uhid.c
Directory Properties:
  stable/8/sys/   (props changed)

Modified: stable/8/sys/dev/usb/input/uhid.c
==============================================================================
--- stable/8/sys/dev/usb/input/uhid.cThu May 24 01:28:58 2012(r235868)
+++ stable/8/sys/dev/usb/input/uhid.cThu May 24 01:30:17 2012(r235869)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -87,6 +87,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; SYSCTL_INT(_hw_usb_uhid, OID_AUTO, debug
 #defineUHID_FRAME_NUM   50/* bytes, frame number */
 
 enum {
+UHID_INTR_DT_WR,
 UHID_INTR_DT_RD,
 UHID_CTRL_DT_WR,
 UHID_CTRL_DT_RD,
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -128,7 +129,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static device_probe_t uhid_probe;
 static device_attach_t uhid_att&lt;/pre&gt;</description>
    <dc:creator>Alexander Motin</dc:creator>
    <dc:date>2012-05-24T01:30:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150114">
    <title>svn commit: r235868 - stable/9/sys/dev/usb/input</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150114</link>
    <description>&lt;pre&gt;Author: mav
Date: Thu May 24 01:28:58 2012
New Revision: 235868
URL: http://svn.freebsd.org/changeset/base/235868

Log:
  MFC r235558, r235569:
  Add support for writing to HID devices through the interrupt output pipe.
  Supermicro LCD screen modules seem to not support accessing reports through
  the control pipes, but working fine with the interrupt pipes.

Modified:
  stable/9/sys/dev/usb/input/uhid.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/usb/input/uhid.c
==============================================================================
--- stable/9/sys/dev/usb/input/uhid.cThu May 24 01:24:49 2012(r235867)
+++ stable/9/sys/dev/usb/input/uhid.cThu May 24 01:28:58 2012(r235868)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -87,6 +87,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; SYSCTL_INT(_hw_usb_uhid, OID_AUTO, debug
 #defineUHID_FRAME_NUM   50/* bytes, frame number */
 
 enum {
+UHID_INTR_DT_WR,
 UHID_INTR_DT_RD,
 UHID_CTRL_DT_WR,
 UHID_CTRL_DT_RD,
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -128,7 +129,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static device_probe_t uhid_p&lt;/pre&gt;</description>
    <dc:creator>Alexander Motin</dc:creator>
    <dc:date>2012-05-24T01:28:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150113">
    <title>svn commit: r235867 - in stable/8: lib/libusbhid sys/dev/usb</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150113</link>
    <description>&lt;pre&gt;Author: mav
Date: Thu May 24 01:24:49 2012
New Revision: 235867
URL: http://svn.freebsd.org/changeset/base/235867

Log:
  MFC r235510:
  HID Report ID is unsigned value, so clear the rest of bits from possible
  sign expansion.

Modified:
  stable/8/lib/libusbhid/parse.c
  stable/8/sys/dev/usb/usb_hid.c
Directory Properties:
  stable/8/lib/libusbhid/   (props changed)
  stable/8/sys/   (props changed)

Modified: stable/8/lib/libusbhid/parse.c
==============================================================================
--- stable/8/lib/libusbhid/parse.cThu May 24 01:23:30 2012(r235866)
+++ stable/8/lib/libusbhid/parse.cThu May 24 01:24:49 2012(r235867)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -392,7 +392,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; hid_get_item(hid_data_t s, hid_item_t *h
 s-&amp;gt;loc_size = dval &amp;amp; mask;
 break;
 case 8:
-hid_switch_rid(s, c, dval);
+hid_switch_rid(s, c, dval &amp;amp; mask);
 break;
 case 9:
 /* mask because value is unsigned */

Modified: stable/8/sys/dev/usb/usb_hid.c
===========================================================&lt;/pre&gt;</description>
    <dc:creator>Alexander Motin</dc:creator>
    <dc:date>2012-05-24T01:24:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150112">
    <title>svn commit: r235866 - in stable/9: lib/libusbhid sys/dev/usb</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150112</link>
    <description>&lt;pre&gt;Author: mav
Date: Thu May 24 01:23:30 2012
New Revision: 235866
URL: http://svn.freebsd.org/changeset/base/235866

Log:
  MFC r235510:
  HID Report ID is unsigned value, so clear the rest of bits from possible
  sign expansion.

Modified:
  stable/9/lib/libusbhid/parse.c
  stable/9/sys/dev/usb/usb_hid.c
Directory Properties:
  stable/9/lib/libusbhid/   (props changed)
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/lib/libusbhid/parse.c
==============================================================================
--- stable/9/lib/libusbhid/parse.cWed May 23 23:43:55 2012(r235865)
+++ stable/9/lib/libusbhid/parse.cThu May 24 01:23:30 2012(r235866)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -392,7 +392,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; hid_get_item(hid_data_t s, hid_item_t *h
 s-&amp;gt;loc_size = dval &amp;amp; mask;
 break;
 case 8:
-hid_switch_rid(s, c, dval);
+hid_switch_rid(s, c, dval &amp;amp; mask);
 break;
 case 9:
 /* mask because value is unsigned */

Modified: stable/9/sys/dev/usb/usb_hid.c
=====================&lt;/pre&gt;</description>
    <dc:creator>Alexander Motin</dc:creator>
    <dc:date>2012-05-24T01:23:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150111">
    <title>Re: svn commit: r235746 - head/sys/net</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150111</link>
    <description>&lt;pre&gt;-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 2012-05-21 18:19:20 -0400, Alexander V. Chernikov wrote:
- --- head/sys/net/bpf.cMon May 21 22:17:29 2012(r235745)
...
...

This is completely wrong.  First, fcode has not been initialized with
copyin().  Second, you must not compile random filter code without
validation, i.e., bpf_validate().

Jung-uk Kim
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.19 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk+9fmUACgkQmlay1b9qnVOlBACgtljVNwOiFb7Ds7GgeoQMyRRr
jU4An3b43yEND8yPs8GSn20ZeCRrI9pu
=z4sw
-----END PGP SIGNATURE-----
_______________________________________________
svn-src-all&amp;lt; at &amp;gt;freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe&amp;lt; at &amp;gt;freebsd.org"

&lt;/pre&gt;</description>
    <dc:creator>Jung-uk Kim</dc:creator>
    <dc:date>2012-05-24T00:18:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150110">
    <title>Re: svn commit: r235797 - head/contrib/gcc</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150110</link>
    <description>&lt;pre&gt;... 

Unfortunately I don't like this change -- it promotes type sloppiness
that flies in the face of ISO/IEC 9899:1999 (E).

the mixed definition of [u]_?int64_t as it catches improper code -- such
as assuming you can printf an int64_t with "%lld" when that is against
the standard.

&lt;/pre&gt;</description>
    <dc:creator>David O'Brien</dc:creator>
    <dc:date>2012-05-23T23:47:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150109">
    <title>svn commit: r235865 - head/contrib/gcc</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150109</link>
    <description>&lt;pre&gt;Author: obrien
Date: Wed May 23 23:43:55 2012
New Revision: 235865
URL: http://svn.freebsd.org/changeset/base/235865

Log:
  Revert r235797.  GCC's mis-assumptions has led to incorrect usage of
  "%q[diouxX]" within FreeBSD sources.

Modified:
  head/contrib/gcc/c-format.c

Modified: head/contrib/gcc/c-format.c
==============================================================================
--- head/contrib/gcc/c-format.cWed May 23 21:48:49 2012(r235864)
+++ head/contrib/gcc/c-format.cWed May 23 23:43:55 2012(r235865)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -287,11 +287,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static const format_length_info printf_l
 {
   { "h", FMT_LEN_h, STD_C89, "hh", FMT_LEN_hh, STD_C99 },
   { "l", FMT_LEN_l, STD_C89, "ll", FMT_LEN_ll, STD_C9L },
-#ifdef __LP64__
-  { "q", FMT_LEN_l, STD_EXT, NULL, 0, 0 },
-#else
   { "q", FMT_LEN_ll, STD_EXT, NULL, 0, 0 },
-#endif
   { "L", FMT_LEN_L, STD_C89, NULL, 0, 0 },
   { "z", FMT_LEN_z, STD_C99, NULL, 0, 0 },
   { "Z", FMT_LEN_z, STD_EXT, NULL, 0, 0 },
_______________________________________________
svn-src-all&amp;lt; at &amp;gt;f&lt;/pre&gt;</description>
    <dc:creator>David E. O'Brien</dc:creator>
    <dc:date>2012-05-23T23:43:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150108">
    <title>Re: svn commit: r235797 - head/contrib/gcc</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150108</link>
    <description>&lt;pre&gt;...

Yes.  I cannot believe we've been abusing "%q" this badly.

&lt;/pre&gt;</description>
    <dc:creator>David O'Brien</dc:creator>
    <dc:date>2012-05-23T23:41:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150107">
    <title>svn commit: r235864 - in head: contrib/llvm/lib/CodeGen/SelectionDAGcontrib/llvm/tools/clang/include/clang/ASTcontrib/llvm/tools/clang/include/clang/Basiccontrib/llvm/tools/clang/include/clang/P...</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150107</link>
    <description>&lt;pre&gt;Author: dim
Date: Wed May 23 21:48:49 2012
New Revision: 235864
URL: http://svn.freebsd.org/changeset/base/235864

Log:
  Upgrade our copy of llvm/clang to 3.1 release.  Release notes can be
  found at: http://llvm.org/releases/3.1/docs/ReleaseNotes.html
  
  MFC after:3 days

Modified:
  head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
  head/contrib/llvm/tools/clang/include/clang/AST/Decl.h
  head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
  head/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
  head/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
  head/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
  head/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
  head/contrib/llvm/tools/clang/include/clang/Sema/Sema.h
  head/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
  head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
  head/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
  head/contrib/llvm/to&lt;/pre&gt;</description>
    <dc:creator>Dimitry Andric</dc:creator>
    <dc:date>2012-05-23T21:48:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150106">
    <title>Re: svn commit: r235859 - in head/sys: i386/conf modules</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150106</link>
    <description>&lt;pre&gt;
Hi!
Thank you very much for all your work!
With this commit, is there any need for any patches from you, or have 
they all been incorporated by now? Perhaps a note in UPDATING would be 
good, at least to make people more aware of the fact that GEM/KMS 
finally has come to FreeBSD as well.  An update to the wiki might be 
good as well.  I can help you with patches and updating the wiki, just 
let me know.
Once again, a big thank you!

Regards!
&lt;/pre&gt;</description>
    <dc:creator>Niclas Zeising</dc:creator>
    <dc:date>2012-05-23T21:37:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150105">
    <title>svn commit: r235863 - vendor/clang/clang-release_31-r156863</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150105</link>
    <description>&lt;pre&gt;Author: dim
Date: Wed May 23 21:39:39 2012
New Revision: 235863
URL: http://svn.freebsd.org/changeset/base/235863

Log:
  Tag clang release_31 r156863 (the actual 3.1 release).

Added:
  vendor/clang/clang-release_31-r156863/
     - copied from r235862, vendor/clang/dist/
_______________________________________________
svn-src-all&amp;lt; at &amp;gt;freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe&amp;lt; at &amp;gt;freebsd.org"

&lt;/pre&gt;</description>
    <dc:creator>Dimitry Andric</dc:creator>
    <dc:date>2012-05-23T21:39:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150104">
    <title>svn commit: r235862 - in vendor/clang/dist: docs lib/Basic</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150104</link>
    <description>&lt;pre&gt;Author: dim
Date: Wed May 23 21:39:13 2012
New Revision: 235862
URL: http://svn.freebsd.org/changeset/base/235862

Log:
  Vendor import of clang release_31 r156863 (the actual 3.1 release):
  http://llvm.org/svn/llvm-project/cfe/branches/release_31&amp;lt; at &amp;gt;156863

Modified:
  vendor/clang/dist/docs/ReleaseNotes.html
  vendor/clang/dist/lib/Basic/Version.cpp

Modified: vendor/clang/dist/docs/ReleaseNotes.html
==============================================================================
--- vendor/clang/dist/docs/ReleaseNotes.htmlWed May 23 21:38:26 2012(r235861)
+++ vendor/clang/dist/docs/ReleaseNotes.htmlWed May 23 21:39:13 2012(r235862)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -26,14 +26,12 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; td {
   &amp;lt;li&amp;gt;&amp;lt;a href="#intro"&amp;gt;Introduction&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
   &amp;lt;li&amp;gt;&amp;lt;a href="#whatsnew"&amp;gt;What's New in Clang 3.1?&amp;lt;/a&amp;gt;
     &amp;lt;ul&amp;gt;
-      &amp;lt;li&amp;gt;&amp;lt;a href="#majorfeatures"&amp;gt;Major New Features&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
       &amp;lt;li&amp;gt;&amp;lt;a href="#cchanges"&amp;gt;C Language Changes&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
       &amp;lt;li&amp;gt;&amp;lt;a href="#cxxchanges"&amp;gt;C++ Language Changes&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
       &amp;lt;li&amp;gt;&amp;lt;a href="#objcchanges"&amp;gt;Objective-C Language Ch&lt;/pre&gt;</description>
    <dc:creator>Dimitry Andric</dc:creator>
    <dc:date>2012-05-23T21:39:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150103">
    <title>svn commit: r235861 - vendor/llvm/llvm-release_31-r156863</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150103</link>
    <description>&lt;pre&gt;Author: dim
Date: Wed May 23 21:38:26 2012
New Revision: 235861
URL: http://svn.freebsd.org/changeset/base/235861

Log:
  Tag llvm release_31 r156863 (the actual 3.1 release).

Added:
  vendor/llvm/llvm-release_31-r156863/
     - copied from r235860, vendor/llvm/dist/
_______________________________________________
svn-src-all&amp;lt; at &amp;gt;freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe&amp;lt; at &amp;gt;freebsd.org"

&lt;/pre&gt;</description>
    <dc:creator>Dimitry Andric</dc:creator>
    <dc:date>2012-05-23T21:38:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150102">
    <title>svn commit: r235860 - in vendor/llvm/dist: . docslib/ExecutionEngine/IntelJITEventslib/ExecutionEngine/OProfileJIT tools/llvm-configutils/llvm-build/llvmbuild utils/unittest</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150102</link>
    <description>&lt;pre&gt;Author: dim
Date: Wed May 23 21:37:39 2012
New Revision: 235860
URL: http://svn.freebsd.org/changeset/base/235860

Log:
  Vendor import of llvm release_31 r156863 (the actual 3.1 release):
  http://llvm.org/svn/llvm-project/llvm/branches/release_31&amp;lt; at &amp;gt;156863

Modified:
  vendor/llvm/dist/CMakeLists.txt
  vendor/llvm/dist/Makefile.config.in
  vendor/llvm/dist/Makefile.rules
  vendor/llvm/dist/docs/LLVMBuild.html
  vendor/llvm/dist/docs/ReleaseNotes.html
  vendor/llvm/dist/lib/ExecutionEngine/IntelJITEvents/LLVMBuild.txt
  vendor/llvm/dist/lib/ExecutionEngine/OProfileJIT/LLVMBuild.txt
  vendor/llvm/dist/tools/llvm-config/llvm-config.cpp
  vendor/llvm/dist/utils/llvm-build/llvmbuild/componentinfo.py
  vendor/llvm/dist/utils/llvm-build/llvmbuild/main.py
  vendor/llvm/dist/utils/unittest/LLVMBuild.txt

Modified: vendor/llvm/dist/CMakeLists.txt
==============================================================================
--- vendor/llvm/dist/CMakeLists.txtWed May 23 21:07:01 2012(r235859)
+++ vendor/llvm/dist/CMak&lt;/pre&gt;</description>
    <dc:creator>Dimitry Andric</dc:creator>
    <dc:date>2012-05-23T21:37:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150101">
    <title>svn commit: r235859 - in head/sys: i386/conf modules</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150101</link>
    <description>&lt;pre&gt;Author: kib
Date: Wed May 23 21:07:01 2012
New Revision: 235859
URL: http://svn.freebsd.org/changeset/base/235859

Log:
  Enable drm2 modules build.
  
  Sponsored by:The FreeBSD Foundation
  MFC after:1 month

Modified:
  head/sys/i386/conf/XEN
  head/sys/modules/Makefile

Modified: head/sys/i386/conf/XEN
==============================================================================
--- head/sys/i386/conf/XENWed May 23 20:51:21 2012(r235858)
+++ head/sys/i386/conf/XENWed May 23 21:07:01 2012(r235859)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -7,7 +7,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; cpuI686_CPU
 identXEN
 
 makeoptionsDEBUG=-g# Build kernel with gdb(1) debug symbols
-makeoptionsWITHOUT_MODULES="aha ahb amd cxgb dpt drm hptmv ida malo mps mwl nve sound sym trm xfs"
+makeoptionsWITHOUT_MODULES="aha ahb amd cxgb dpt drm drm2 hptmv ida malo mps mwl nve sound sym trm xfs"
 
 options SCHED_ULE# ULE scheduler
 options PREEMPTION# Enable kernel thread preemption

Modified: head/sys/modules/Makefile
===============================================================&lt;/pre&gt;</description>
    <dc:creator>Konstantin Belousov</dc:creator>
    <dc:date>2012-05-23T21:07:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150100">
    <title>svn commit: r235858 - head/sys/geom</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150100</link>
    <description>&lt;pre&gt;Author: delphij
Date: Wed May 23 20:51:21 2012
New Revision: 235858
URL: http://svn.freebsd.org/changeset/base/235858

Log:
   - Correct signedness for casts;
   - Wrap long line while I'm there.
  
  Noticed by:pjd, avg

Modified:
  head/sys/geom/geom_flashmap.c

Modified: head/sys/geom/geom_flashmap.c
==============================================================================
--- head/sys/geom/geom_flashmap.cWed May 23 20:29:16 2012(r235857)
+++ head/sys/geom/geom_flashmap.cWed May 23 20:51:21 2012(r235858)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -78,8 +78,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static void
 g_flashmap_print(struct g_flashmap_slice *slice)
 {
 
-printf("%08jx-%08jx: %s (%juKB)\n", (intmax_t)slice-&amp;gt;sl_start, (intmax_t)slice-&amp;gt;sl_end,
-    slice-&amp;gt;sl_name, (uintmax_t)(slice-&amp;gt;sl_end - slice-&amp;gt;sl_start) / 1024);
+printf("%08jx-%08jx: %s (%juKB)\n", (uintmax_t)slice-&amp;gt;sl_start,
+    (uintmax_t)slice-&amp;gt;sl_end, slice-&amp;gt;sl_name,
+    (uintmax_t)(slice-&amp;gt;sl_end - slice-&amp;gt;sl_start) / 1024);
 }
 
 static int
_______________________________________________
svn-src-al&lt;/pre&gt;</description>
    <dc:creator>Xin LI</dc:creator>
    <dc:date>2012-05-23T20:51:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150099">
    <title>svn commit: r235857 - head/libexec/tftpd</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150099</link>
    <description>&lt;pre&gt;Author: joel (doc committer)
Date: Wed May 23 20:29:16 2012
New Revision: 235857
URL: http://svn.freebsd.org/changeset/base/235857

Log:
  mdoc: Only use macros inside a reference block.

Modified:
  head/libexec/tftpd/tftpd.8

Modified: head/libexec/tftpd/tftpd.8
==============================================================================
--- head/libexec/tftpd/tftpd.8Wed May 23 20:22:09 2012(r235856)
+++ head/libexec/tftpd/tftpd.8Wed May 23 20:29:16 2012(r235857)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -238,20 +238,16 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; option.
 .Pp
 The following RFC's are supported:
 .Rs
-RFC 1350
-.%T The TFTP Protocol (Revision 2)
+.%T RFC 1350: The TFTP Protocol (Revision 2)
 .Re
 .Rs
-RFC 2347
-.%T TFTP Option Extension
+.%T RFC 2347: TFTP Option Extension
 .Re
 .Rs
-RFC 2348
-.%T TFTP Blocksize Option
+.%T RFC 2348: TFTP Blocksize Option
 .Re
 .Rs
-RFC 2349
-.%T TFTP Timeout Interval and Transfer Size Options
+.%T RFC 2349: TFTP Timeout Interval and Transfer Size Options
 .Re
 .Pp
 The non-standard
_______________________________________________&lt;/pre&gt;</description>
    <dc:creator>Joel Dahl</dc:creator>
    <dc:date>2012-05-23T20:29:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150098">
    <title>svn commit: r235856 - head/libexec/rbootd</title>
    <link>http://permalink.gmane.org/gmane.os.freebsd.devel.cvs.src/150098</link>
    <description>&lt;pre&gt;Author: joel (doc committer)
Date: Wed May 23 20:22:09 2012
New Revision: 235856
URL: http://svn.freebsd.org/changeset/base/235856

Log:
  mdoc: fix .Bl -offset.

Modified:
  head/libexec/rbootd/rbootd.8

Modified: head/libexec/rbootd/rbootd.8
==============================================================================
--- head/libexec/rbootd/rbootd.8Wed May 23 19:25:46 2012(r235855)
+++ head/libexec/rbootd/rbootd.8Wed May 23 20:22:09 2012(r235856)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -126,7 +126,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; The following signals have the specified
 process using the
 .Xr kill 1
 command:
-.Bl -tag -width SIGUSR1 -offset -compact
+.Bl -tag -width SIGUSR1 -offset xxxxxxxx
 .It SIGHUP
 Drop all active connections and reconfigure.
 .It SIGUSR1
_______________________________________________
svn-src-all&amp;lt; at &amp;gt;freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe&amp;lt; at &amp;gt;freebsd.org"

&lt;/pre&gt;</description>
    <dc:creator>Joel Dahl</dc:creator>
    <dc:date>2012-05-23T20:22:09</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.os.freebsd.devel.cvs.src">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.os.freebsd.devel.cvs.src</link>
  </textinput>
</rdf:RDF>

