From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 04:29:43 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 259D1106566B; Sun, 18 Jan 2009 04:29:43 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 146288FC0C; Sun, 18 Jan 2009 04:29:43 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0I4Tgdm060872; Sun, 18 Jan 2009 04:29:42 GMT (envelope-from keramida@svn.freebsd.org) Received: (from keramida@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0I4TgUP060871; Sun, 18 Jan 2009 04:29:42 GMT (envelope-from keramida@svn.freebsd.org) Message-Id: <200901180429.n0I4TgUP060871@svn.freebsd.org> From: Giorgos Keramidas Date: Sun, 18 Jan 2009 04:29:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187375 - head/sys/dev/sound/pci X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 04:29:43 -0000 Author: keramida (doc committer) Date: Sun Jan 18 04:29:42 2009 New Revision: 187375 URL: http://svn.freebsd.org/changeset/base/187375 Log: Add support for CMedia CMI120. PR: kern/123640 Approved by: ariff MFC after: 2 weeks Modified: head/sys/dev/sound/pci/cmi.c Modified: head/sys/dev/sound/pci/cmi.c ============================================================================== --- head/sys/dev/sound/pci/cmi.c Sat Jan 17 23:01:40 2009 (r187374) +++ head/sys/dev/sound/pci/cmi.c Sun Jan 18 04:29:42 2009 (r187375) @@ -60,6 +60,7 @@ SND_DECLARE_FILE("$FreeBSD$"); #define CMI8338B_PCI_ID 0x010113f6 #define CMI8738_PCI_ID 0x011113f6 #define CMI8738B_PCI_ID 0x011213f6 +#define CMI120_USB_ID 0x01030d8c /* Buffer size max is 64k for permitted DMA boundaries */ #define CMI_DEFAULT_BUFSZ 16384 @@ -916,6 +917,9 @@ cmi_probe(device_t dev) case CMI8738B_PCI_ID: device_set_desc(dev, "CMedia CMI8738B"); return BUS_PROBE_DEFAULT; + case CMI120_USB_ID: + device_set_desc(dev, "CMedia CMI120"); + return BUS_PROBE_DEFAULT; default: return ENXIO; } From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 04:49:02 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 092251065672; Sun, 18 Jan 2009 04:49:02 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EA2B68FC0C; Sun, 18 Jan 2009 04:49:01 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0I4n1cv061370; Sun, 18 Jan 2009 04:49:01 GMT (envelope-from jeff@svn.freebsd.org) Received: (from jeff@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0I4n14m061369; Sun, 18 Jan 2009 04:49:01 GMT (envelope-from jeff@svn.freebsd.org) Message-Id: <200901180449.n0I4n14m061369@svn.freebsd.org> From: Jeff Roberson Date: Sun, 18 Jan 2009 04:49:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187376 - head/tools/sched X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 04:49:02 -0000 Author: jeff Date: Sun Jan 18 04:49:01 2009 New Revision: 187376 URL: http://svn.freebsd.org/changeset/base/187376 Log: - Significantly speedup hiding and displaying multiple rows by writing an optimized single pass function for each. This reduces the number of tkinter calls required to the minimum. - Add a right-click context menu for sources. Supported commands hide the source, hide the whole group the source is in, and bring up a stat window. - Add a source stat frame that gives an event frequency table as well as the total duration for each event type that has a duration. This can be used to see, for example, the total time a thread spent running or blocked by a wchan or lock. Modified: head/tools/sched/schedgraph.py Modified: head/tools/sched/schedgraph.py ============================================================================== --- head/tools/sched/schedgraph.py Sun Jan 18 04:29:42 2009 (r187375) +++ head/tools/sched/schedgraph.py Sun Jan 18 04:49:01 2009 (r187376) @@ -315,17 +315,13 @@ class SourceConf(Frame): self.checkbox.grid(row=0, column=1) self.columnconfigure(0, weight=1) - def apply(self): - echange = 0 + def changed(self): if (self.enabled_current != self.enabled.get()): - echange = 1 + return 1 + return 0 + + def apply(self): self.enabled_current = self.enabled.get() - if (echange != 0): - if (self.enabled_current): - graph.sourceshow(self.source) - else: - graph.sourcehide(self.source) - return def revert(self): self.enabled.set(self.enabled_default) @@ -389,6 +385,21 @@ class SourceConfigure(Toplevel): self.buttons.columnconfigure(3, weight=1) def apress(self): + disable_sources = [] + enable_sources = [] + for item in self.sconfig: + if (item.changed() == 0): + continue + if (item.enabled.get() == 1): + enable_sources.append(item.source) + else: + disable_sources.append(item.source) + + if (len(disable_sources)): + graph.sourcehidelist(disable_sources) + if (len(enable_sources)): + graph.sourceshowlist(enable_sources) + for item in self.sconfig: item.apply() @@ -404,6 +415,77 @@ class SourceConfigure(Toplevel): for item in self.sconfig: item.uncheck() +# Reverse compare of second member of the tuple +def cmp_counts(x, y): + return y[1] - x[1] + +class SourceStats(Toplevel): + def __init__(self, source): + self.source = source + Toplevel.__init__(self) + self.resizable(0, 0) + self.title(source.name + " statistics") + self.evframe = LabelFrame(self, + text="Event Frequency and Duration") + self.evframe.grid(row=0, column=0, sticky=E+W) + eventtypes={} + for event in self.source.events: + if (event.type == "pad"): + continue + duration = event.duration + if (eventtypes.has_key(event.name)): + (c, d) = eventtypes[event.name] + c += 1 + d += duration + eventtypes[event.name] = (c, d) + else: + eventtypes[event.name] = (1, duration) + events = [] + for k, v in eventtypes.iteritems(): + (c, d) = v + events.append((k, c, d)) + events.sort(cmp=cmp_counts) + + ypos = 0 + for event in events: + (name, c, d) = event + l = Label(self.evframe, text=name, bd=1, + relief=SUNKEN, anchor=W, width=30) + m = Label(self.evframe, text=str(c), bd=1, + relief=SUNKEN, anchor=W, width=10) + r = Label(self.evframe, text=ticks2sec(d), + bd=1, relief=SUNKEN, width=10) + l.grid(row=ypos, column=0, sticky=E+W) + m.grid(row=ypos, column=1, sticky=E+W) + r.grid(row=ypos, column=2, sticky=E+W) + ypos += 1 + + +class SourceContext(Menu): + def __init__(self, event, source): + self.source = source + Menu.__init__(self, tearoff=0, takefocus=0) + self.add_command(label="hide", command=self.hide) + self.add_command(label="hide group", command=self.hidegroup) + self.add_command(label="stats", command=self.stats) + self.tk_popup(event.x_root-3, event.y_root+3) + + def hide(self): + graph.sourcehide(self.source) + + def hidegroup(self): + grouplist = [] + for source in sources: + if (source.group == self.source.group): + grouplist.append(source) + graph.sourcehidelist(grouplist) + + def show(self): + graph.sourceshow(self.source) + + def stats(self): + SourceStats(self.source) + class EventView(Toplevel): def __init__(self, event, canvas): Toplevel.__init__(self) @@ -510,6 +592,7 @@ class Event: self.idx = None self.item = None self.dispcnt = 0 + self.duration = 0 self.recno = lineno def status(self): @@ -592,8 +675,8 @@ class PointEvent(Event): def draw(self, canvas, xpos, ypos): color = colormap.lookup(self.name) l = canvas.create_oval(xpos - 6, ypos + 1, xpos + 6, ypos - 11, - fill=color, tags=("all", "point", "event", self.name), - width=0) + fill=color, width=0, + tags=("all", "point", "event", self.name, self.source.tag)) Event.draw(self, canvas, xpos, ypos, l) return xpos @@ -607,7 +690,7 @@ class StateEvent(Event): next = self.nexttype("state") if (next == None): return (xpos) - duration = next.timestamp - self.timestamp + self.duration = duration = next.timestamp - self.timestamp self.attrs.insert(0, ("duration", ticks2sec(duration))) color = colormap.lookup(self.name) if (duration < 0): @@ -618,7 +701,7 @@ class StateEvent(Event): delta = duration / canvas.ratio l = canvas.create_rectangle(xpos, ypos, xpos + delta, ypos - 10, fill=color, width=0, - tags=("all", "state", "event", self.name)) + tags=("all", "state", "event", self.name, self.source.tag)) Event.draw(self, canvas, xpos, ypos, l) return (xpos + delta) @@ -635,14 +718,14 @@ class CountEvent(Event): if (next == None): return (xpos) color = colormap.lookup("count") - duration = next.timestamp - self.timestamp + self.duration = duration = next.timestamp - self.timestamp self.attrs.insert(0, ("count", self.count)) self.attrs.insert(1, ("duration", ticks2sec(duration))) delta = duration / canvas.ratio yhight = self.source.yscale() * self.count l = canvas.create_rectangle(xpos, ypos - yhight, xpos + delta, ypos, fill=color, width=0, - tags=("all", "count", "event", self.name)) + tags=("all", "count", "event", self.name, self.source.tag)) Event.draw(self, canvas, xpos, ypos, l) return (xpos + delta) @@ -663,6 +746,10 @@ class PadEvent(StateEvent): Event.draw(self, canvas, xpos, ypos, None) return (xpos + delta) +# Sort function for start y address +def source_cmp_start(x, y): + return x.y - y.y + class EventSource: def __init__(self, group, id): self.name = id @@ -672,6 +759,7 @@ class EventSource: self.y = 0 self.item = None self.hidden = 0 + self.tag = group + id def __cmp__(self, other): if (other == None): @@ -719,14 +807,11 @@ class EventSource: l = canvas.create_rectangle(fromx, ypos - self.ysize() - canvas.bdheight, tox, ypos + canvas.bdheight, fill=color, width=0, - tags=("all", "cpuinfo", cpu), state="hidden") + tags=("all", "cpuinfo", cpu, self.tag), state="hidden") self.cpuitems.append(l) def move(self, canvas, xpos, ypos): - for event in self.events: - event.move(canvas, xpos, ypos) - for item in self.cpuitems: - canvas.move(item, xpos, ypos) + canvas.move(self.tag, xpos, ypos) def movename(self, canvas, xpos, ypos): self.y += ypos @@ -1008,6 +1093,7 @@ class SchedNames(Canvas): self.create_line(0, ypos, self["width"], ypos, width=1, fill="black", tags=("all",)) self.bind("", self.master.mousepress); + self.bind("", self.master.mousepressright); self.bind("", self.master.mouserelease); self.bind("", self.master.mousemotion); @@ -1056,6 +1142,7 @@ class SchedDisplay(Canvas): self.tag_bind("event", "", self.mouseenter) self.tag_bind("event", "", self.mouseexit) self.bind("", self.mousepress) + self.bind("", self.master.mousepressright); self.bind("", self.wheelup) self.bind("", self.wheeldown) self.bind("", self.master.mouserelease); @@ -1146,16 +1233,16 @@ class SchedDisplay(Canvas): class GraphMenu(Frame): def __init__(self, master): Frame.__init__(self, master, bd=2, relief=RAISED) - self.view = Menubutton(self, text="Configure") - self.viewmenu = Menu(self.view, tearoff=0) - self.viewmenu.add_command(label="Event Colors", + self.conf = Menubutton(self, text="Configure") + self.confmenu = Menu(self.conf, tearoff=0) + self.confmenu.add_command(label="Event Colors", command=self.econf) - self.viewmenu.add_command(label="CPU Colors", + self.confmenu.add_command(label="CPU Colors", command=self.cconf) - self.viewmenu.add_command(label="Source Configure", + self.confmenu.add_command(label="Source Configure", command=self.sconf) - self.view["menu"] = self.viewmenu - self.view.pack(side=LEFT) + self.conf["menu"] = self.confmenu + self.conf.pack(side=LEFT) def econf(self): ColorConfigure(eventcolors, "Event Display Configuration") @@ -1166,7 +1253,6 @@ class GraphMenu(Frame): def sconf(self): SourceConfigure() - class SchedGraph(Frame): def __init__(self, master): Frame.__init__(self, master) @@ -1221,6 +1307,12 @@ class SchedGraph(Frame): def mousepress(self, event): self.clicksource = self.sourceat(event.y) + def mousepressright(self, event): + source = self.sourceat(event.y) + if (source == None): + return + SourceContext(event, source) + def mouserelease(self, event): if (self.clicksource == None): return @@ -1287,9 +1379,11 @@ class SchedGraph(Frame): source1.movename(self.names, 0, y1targ - y1) source2.movename(self.names, 0, y2targ - y2) - def sourceshow(self, source): + def sourcepicky(self, source): if (source.hidden == 0): - return; + return self.sourcestart(source) + # Revert to group based sort + sources.sort() prev = None for s in sources: if (s == source): @@ -1300,12 +1394,103 @@ class SchedGraph(Frame): newy = 0 else: newy = self.sourcestart(prev) + self.sourcesize(prev) - self.sourceshiftall(newy-1, self.sourcesize(source)) + return newy + + def sourceshow(self, source): + if (source.hidden == 0): + return; + newy = self.sourcepicky(source) off = newy - self.sourcestart(source) + self.sourceshiftall(newy-1, self.sourcesize(source)) self.sourceshift(source, off) source.hidden = 0 + # + # Optimized source show of multiple entries that only moves each + # existing entry once. Doing sourceshow() iteratively is too + # expensive due to python's canvas.move(). + # + def sourceshowlist(self, srclist): + srclist.sort(cmp=source_cmp_start) + startsize = [] + for source in srclist: + if (source.hidden == 0): + srclist.remove(source) + startsize.append((self.sourcepicky(source), + self.sourcesize(source))) + + sources.sort(cmp=source_cmp_start, reverse=True) + self.status.startup("Updating display..."); + for source in sources: + if (source.hidden == 1): + continue + nstart = self.sourcestart(source) + size = 0 + for hidden in startsize: + (start, sz) = hidden + if (start <= nstart or start+sz <= nstart): + size += sz + self.sourceshift(source, size) + idx = 0 + size = 0 + for source in srclist: + (newy, sz) = startsize[idx] + off = (newy + size) - self.sourcestart(source) + self.sourceshift(source, off) + source.hidden = 0 + size += sz + idx += 1 + self.names.updatescroll() + self.display.updatescroll() + self.status.set("") + + # + # Optimized source hide of multiple entries that only moves each + # remaining entry once. Doing sourcehide() iteratively is too + # expensive due to python's canvas.move(). + # + def sourcehidelist(self, srclist): + srclist.sort(cmp=source_cmp_start) + sources.sort(cmp=source_cmp_start) + startsize = [] + off = len(sources) * 100 + self.status.startup("Updating display..."); + for source in srclist: + if (source.hidden == 1): + srclist.remove(source) + # + # Remember our old position so we can sort things + # below us when we're done. + # + startsize.append((self.sourcestart(source), + self.sourcesize(source))) + self.sourceshift(source, off) + source.hidden = 1 + + idx = 0 + size = 0 + for hidden in startsize: + (start, sz) = hidden + size += sz + if (idx + 1 < len(startsize)): + (stop, sz) = startsize[idx+1] + else: + stop = self.display.ysize() + idx += 1 + for source in sources: + nstart = self.sourcestart(source) + if (nstart < start or source.hidden == 1): + continue + if (nstart >= stop): + break; + self.sourceshift(source, -size) + self.names.updatescroll() + self.display.updatescroll() + self.status.set("") + def sourcehide(self, source): + if (source.hidden == 1): + return; # Move it out of the visible area off = len(sources) * 100 start = self.sourcestart(source) @@ -1319,8 +1504,15 @@ class SchedGraph(Frame): source.movename(self.names, 0, off) self.names.moveline(start, off); self.display.moveline(start, off) + # + # We update the idle tasks to shrink the dirtied area so + # it does not always include the entire screen. + # + self.names.update_idletasks() + self.display.update_idletasks() def sourceshiftall(self, start, off): + self.status.startup("Updating display..."); for source in sources: nstart = self.sourcestart(source) if (nstart < start): @@ -1328,6 +1520,7 @@ class SchedGraph(Frame): self.sourceshift(source, off) self.names.updatescroll() self.display.updatescroll() + self.status.set("") def sourceat(self, ypos): (start, end) = self.names.yview() From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 05:35:59 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A99A81065673; Sun, 18 Jan 2009 05:35:59 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 971498FC16; Sun, 18 Jan 2009 05:35:59 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0I5ZxQ6062520; Sun, 18 Jan 2009 05:35:59 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0I5Zwxr062500; Sun, 18 Jan 2009 05:35:58 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200901180535.n0I5Zwxr062500@svn.freebsd.org> From: Andrew Thompson Date: Sun, 18 Jan 2009 05:35:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187378 - in head/sys/dev/usb2: ethernet wlan X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 05:36:00 -0000 Author: thompsa Date: Sun Jan 18 05:35:58 2009 New Revision: 187378 URL: http://svn.freebsd.org/changeset/base/187378 Log: Just put the ifnet pointer first in the softc like it needs to be rather than adding another deliciously evil pointer. Modified: head/sys/dev/usb2/ethernet/if_aue2.c head/sys/dev/usb2/ethernet/if_auereg.h head/sys/dev/usb2/ethernet/if_axe2.c head/sys/dev/usb2/ethernet/if_axereg.h head/sys/dev/usb2/ethernet/if_cdce2.c head/sys/dev/usb2/ethernet/if_cdcereg.h head/sys/dev/usb2/ethernet/if_cue2.c head/sys/dev/usb2/ethernet/if_cuereg.h head/sys/dev/usb2/ethernet/if_kue2.c head/sys/dev/usb2/ethernet/if_kuereg.h head/sys/dev/usb2/ethernet/if_rue2.c head/sys/dev/usb2/ethernet/if_ruereg.h head/sys/dev/usb2/ethernet/if_udav2.c head/sys/dev/usb2/ethernet/if_udavreg.h head/sys/dev/usb2/wlan/if_rum2.c head/sys/dev/usb2/wlan/if_rumvar.h head/sys/dev/usb2/wlan/if_ural2.c head/sys/dev/usb2/wlan/if_uralvar.h head/sys/dev/usb2/wlan/if_zyd2.c head/sys/dev/usb2/wlan/if_zydreg.h Modified: head/sys/dev/usb2/ethernet/if_aue2.c ============================================================================== --- head/sys/dev/usb2/ethernet/if_aue2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_aue2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -834,7 +834,6 @@ aue_cfg_first_time_setup(struct aue_soft sc->sc_name); goto done; } - sc->sc_evilhack = ifp; ifp->if_softc = sc; if_initname(ifp, "aue", sc->sc_unit); Modified: head/sys/dev/usb2/ethernet/if_auereg.h ============================================================================== --- head/sys/dev/usb2/ethernet/if_auereg.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_auereg.h Sun Jan 18 05:35:58 2009 (r187378) @@ -205,14 +205,13 @@ struct aue_rxpkt { } __packed; struct aue_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; struct usb2_config_td sc_config_td; struct usb2_callout sc_watchdog; struct mtx sc_mtx; struct aue_rxpkt sc_rxpkt; - struct ifnet *sc_ifp; struct usb2_device *sc_udev; struct usb2_xfer *sc_xfer[AUE_N_TRANSFER]; device_t sc_miibus; Modified: head/sys/dev/usb2/ethernet/if_axe2.c ============================================================================== --- head/sys/dev/usb2/ethernet/if_axe2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_axe2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -843,7 +843,6 @@ axe_cfg_first_time_setup(struct axe_soft sc->sc_name); goto done; } - sc->sc_evilhack = ifp; ifp->if_softc = sc; if_initname(ifp, "axe", sc->sc_unit); Modified: head/sys/dev/usb2/ethernet/if_axereg.h ============================================================================== --- head/sys/dev/usb2/ethernet/if_axereg.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_axereg.h Sun Jan 18 05:35:58 2009 (r187378) @@ -181,13 +181,12 @@ enum { }; struct axe_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; struct usb2_config_td sc_config_td; struct usb2_callout sc_watchdog; struct mtx sc_mtx; - struct ifnet *sc_ifp; struct usb2_device *sc_udev; struct usb2_xfer *sc_xfer[AXE_N_TRANSFER]; device_t sc_miibus; Modified: head/sys/dev/usb2/ethernet/if_cdce2.c ============================================================================== --- head/sys/dev/usb2/ethernet/if_cdce2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_cdce2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -444,7 +444,6 @@ alloc_transfers: device_printf(dev, "cannot if_alloc()\n"); goto detach; } - sc->sc_evilhack = ifp; ifp->if_softc = sc; if_initname(ifp, "cdce", sc->sc_unit); Modified: head/sys/dev/usb2/ethernet/if_cdcereg.h ============================================================================== --- head/sys/dev/usb2/ethernet/if_cdcereg.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_cdcereg.h Sun Jan 18 05:35:58 2009 (r187378) @@ -61,7 +61,7 @@ enum { }; struct cdce_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; union cdce_eth_tx sc_tx; union cdce_eth_rx sc_rx; @@ -70,7 +70,6 @@ struct cdce_softc { struct cdce_mq sc_rx_mq; struct cdce_mq sc_tx_mq; - struct ifnet *sc_ifp; struct usb2_xfer *sc_xfer[CDCE_N_TRANSFER]; struct usb2_device *sc_udev; device_t sc_dev; Modified: head/sys/dev/usb2/ethernet/if_cue2.c ============================================================================== --- head/sys/dev/usb2/ethernet/if_cue2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_cue2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -468,7 +468,6 @@ cue_cfg_first_time_setup(struct cue_soft sc->sc_unit); goto done; } - sc->sc_evilhack = ifp; ifp->if_softc = sc; if_initname(ifp, "cue", sc->sc_unit); Modified: head/sys/dev/usb2/ethernet/if_cuereg.h ============================================================================== --- head/sys/dev/usb2/ethernet/if_cuereg.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_cuereg.h Sun Jan 18 05:35:58 2009 (r187378) @@ -122,13 +122,12 @@ enum { }; struct cue_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; struct usb2_config_td sc_config_td; struct usb2_callout sc_watchdog; struct mtx sc_mtx; - struct ifnet *sc_ifp; device_t sc_dev; struct usb2_device *sc_udev; struct usb2_xfer *sc_xfer[CUE_N_TRANSFER]; Modified: head/sys/dev/usb2/ethernet/if_kue2.c ============================================================================== --- head/sys/dev/usb2/ethernet/if_kue2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_kue2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -536,7 +536,6 @@ kue_cfg_first_time_setup(struct kue_soft sc->sc_unit); goto done; } - sc->sc_evilhack = ifp; ifp->if_softc = sc; if_initname(ifp, "kue", sc->sc_unit); Modified: head/sys/dev/usb2/ethernet/if_kuereg.h ============================================================================== --- head/sys/dev/usb2/ethernet/if_kuereg.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_kuereg.h Sun Jan 18 05:35:58 2009 (r187378) @@ -125,14 +125,13 @@ enum { }; struct kue_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; struct usb2_config_td sc_config_td; struct usb2_callout sc_watchdog; struct mtx sc_mtx; struct kue_ether_desc sc_desc; - struct ifnet *sc_ifp; device_t sc_dev; struct usb2_device *sc_udev; struct usb2_xfer *sc_xfer[KUE_N_TRANSFER]; Modified: head/sys/dev/usb2/ethernet/if_rue2.c ============================================================================== --- head/sys/dev/usb2/ethernet/if_rue2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_rue2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -713,7 +713,6 @@ rue_cfg_first_time_setup(struct rue_soft sc->sc_name); goto done; } - sc->sc_evilhack = ifp; ifp->if_softc = sc; if_initname(ifp, "rue", sc->sc_unit); Modified: head/sys/dev/usb2/ethernet/if_ruereg.h ============================================================================== --- head/sys/dev/usb2/ethernet/if_ruereg.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_ruereg.h Sun Jan 18 05:35:58 2009 (r187378) @@ -174,13 +174,12 @@ enum { }; struct rue_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; struct usb2_config_td sc_config_td; struct usb2_callout sc_watchdog; struct mtx sc_mtx; - struct ifnet *sc_ifp; struct usb2_device *sc_udev; struct usb2_xfer *sc_xfer[RUE_N_TRANSFER]; device_t sc_miibus; Modified: head/sys/dev/usb2/ethernet/if_udav2.c ============================================================================== --- head/sys/dev/usb2/ethernet/if_udav2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_udav2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -344,7 +344,6 @@ udav_cfg_first_time_setup(struct udav_so sc->sc_name); goto done; } - sc->sc_evilhack = ifp; ifp->if_softc = sc; if_initname(ifp, "udav", sc->sc_unit); Modified: head/sys/dev/usb2/ethernet/if_udavreg.h ============================================================================== --- head/sys/dev/usb2/ethernet/if_udavreg.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/ethernet/if_udavreg.h Sun Jan 18 05:35:58 2009 (r187378) @@ -145,13 +145,12 @@ enum { }; struct udav_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; struct usb2_config_td sc_config_td; struct usb2_callout sc_watchdog; struct mtx sc_mtx; - struct ifnet *sc_ifp; struct usb2_device *sc_udev; struct usb2_xfer *sc_xfer[UDAV_N_TRANSFER]; device_t sc_miibus; Modified: head/sys/dev/usb2/wlan/if_rum2.c ============================================================================== --- head/sys/dev/usb2/wlan/if_rum2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/wlan/if_rum2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -789,7 +789,6 @@ rum_cfg_first_time_setup(struct rum_soft DPRINTFN(0, "could not if_alloc()!\n"); goto done; } - sc->sc_evilhack = ifp; sc->sc_ifp = ifp; ic = ifp->if_l2com; Modified: head/sys/dev/usb2/wlan/if_rumvar.h ============================================================================== --- head/sys/dev/usb2/wlan/if_rumvar.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/wlan/if_rumvar.h Sun Jan 18 05:35:58 2009 (r187378) @@ -120,7 +120,7 @@ enum { }; struct rum_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; struct rum_ifq sc_tx_queue; struct usb2_config_td sc_config_td; @@ -133,7 +133,6 @@ struct rum_softc { struct rum_tx_radiotap_header sc_txtap; struct usb2_xfer *sc_xfer[RUM_N_TRANSFER]; - struct ifnet *sc_ifp; struct usb2_device *sc_udev; const struct ieee80211_rate_table *sc_rates; Modified: head/sys/dev/usb2/wlan/if_ural2.c ============================================================================== --- head/sys/dev/usb2/wlan/if_ural2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/wlan/if_ural2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -800,7 +800,6 @@ ural_cfg_first_time_setup(struct ural_so DPRINTFN(0, "could not if_alloc()!\n"); goto done; } - sc->sc_evilhack = ifp; sc->sc_ifp = ifp; ic = ifp->if_l2com; Modified: head/sys/dev/usb2/wlan/if_uralvar.h ============================================================================== --- head/sys/dev/usb2/wlan/if_uralvar.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/wlan/if_uralvar.h Sun Jan 18 05:35:58 2009 (r187378) @@ -120,7 +120,7 @@ enum { }; struct ural_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; struct ural_ifq sc_tx_queue; struct usb2_config_td sc_config_td; @@ -133,7 +133,6 @@ struct ural_softc { struct ural_tx_radiotap_header sc_txtap; struct usb2_xfer *sc_xfer[URAL_N_TRANSFER]; - struct ifnet *sc_ifp; struct usb2_device *sc_udev; const struct ieee80211_rate_table *sc_rates; Modified: head/sys/dev/usb2/wlan/if_zyd2.c ============================================================================== --- head/sys/dev/usb2/wlan/if_zyd2.c Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/wlan/if_zyd2.c Sun Jan 18 05:35:58 2009 (r187378) @@ -2078,7 +2078,6 @@ zyd_cfg_first_time_setup(struct zyd_soft sc->sc_name); goto done; } - sc->sc_evilhack = ifp; sc->sc_ifp = ifp; ic = ifp->if_l2com; Modified: head/sys/dev/usb2/wlan/if_zydreg.h ============================================================================== --- head/sys/dev/usb2/wlan/if_zydreg.h Sun Jan 18 05:23:26 2009 (r187377) +++ head/sys/dev/usb2/wlan/if_zydreg.h Sun Jan 18 05:35:58 2009 (r187378) @@ -1285,7 +1285,7 @@ enum { }; struct zyd_softc { - void *sc_evilhack; /* XXX this pointer must be first */ + struct ifnet *sc_ifp; struct zyd_rf sc_rf; struct usb2_callout sc_watchdog; @@ -1299,7 +1299,6 @@ struct zyd_softc { struct zyd_ifq sc_tx_queue; struct cv sc_intr_cv; - struct ifnet *sc_ifp; struct usb2_device *sc_udev; struct usb2_xfer *sc_xfer[ZYD_N_TRANSFER]; const struct ieee80211_rate_table *sc_rates; From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 05:44:32 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 621F01065675; Sun, 18 Jan 2009 05:44:32 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3B17A8FC8D; Sun, 18 Jan 2009 05:44:32 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0I5iWeU062744; Sun, 18 Jan 2009 05:44:32 GMT (envelope-from jeff@svn.freebsd.org) Received: (from jeff@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0I5iWl2062743; Sun, 18 Jan 2009 05:44:32 GMT (envelope-from jeff@svn.freebsd.org) Message-Id: <200901180544.n0I5iWl2062743@svn.freebsd.org> From: Jeff Roberson Date: Sun, 18 Jan 2009 05:44:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187379 - head/tools/sched X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 05:44:35 -0000 Author: jeff Date: Sun Jan 18 05:44:31 2009 New Revision: 187379 URL: http://svn.freebsd.org/changeset/base/187379 Log: - Add summary information to the title once the file is parsed rather than printing it to the terminal. Now only parse errors go to the terminal. - Speedup drawing by raising and lowering tags only once everything has been drawn. Surprisingly, it now takes a little longer to parse than it does to draw. - Parameterize the layout with X_ and Y_ defines that determine the sizes of various things. - Remove unnecessary tags. Modified: head/tools/sched/schedgraph.py Modified: head/tools/sched/schedgraph.py ============================================================================== --- head/tools/sched/schedgraph.py Sun Jan 18 05:35:58 2009 (r187378) +++ head/tools/sched/schedgraph.py Sun Jan 18 05:44:31 2009 (r187379) @@ -86,7 +86,7 @@ eventcolors = [ ("lock contest", "purple"), ("failed lock try", "red"), ("lock release", "grey"), - ("tick", "black"), + ("statclock", "black"), ("prio", "black"), ("lend prio", "black"), ("wokeup", "black") @@ -125,6 +125,12 @@ clockfreq = None sources = [] lineno = -1 +Y_BORDER = 10 +X_BORDER = 10 +Y_COUNTER = 80 +Y_EVENTSOURCE = 10 +XY_POINT = 4 + class Colormap: def __init__(self, table): self.table = table @@ -674,9 +680,10 @@ class PointEvent(Event): def draw(self, canvas, xpos, ypos): color = colormap.lookup(self.name) - l = canvas.create_oval(xpos - 6, ypos + 1, xpos + 6, ypos - 11, + l = canvas.create_oval(xpos - XY_POINT, ypos, + xpos + XY_POINT, ypos - (XY_POINT * 2), fill=color, width=0, - tags=("all", "point", "event", self.name, self.source.tag)) + tags=("event", self.type, self.name, self.source.tag)) Event.draw(self, canvas, xpos, ypos, l) return xpos @@ -701,7 +708,7 @@ class StateEvent(Event): delta = duration / canvas.ratio l = canvas.create_rectangle(xpos, ypos, xpos + delta, ypos - 10, fill=color, width=0, - tags=("all", "state", "event", self.name, self.source.tag)) + tags=("event", self.type, self.name, self.source.tag)) Event.draw(self, canvas, xpos, ypos, l) return (xpos + delta) @@ -725,7 +732,7 @@ class CountEvent(Event): yhight = self.source.yscale() * self.count l = canvas.create_rectangle(xpos, ypos - yhight, xpos + delta, ypos, fill=color, width=0, - tags=("all", "count", "event", self.name, self.source.tag)) + tags=("event", self.type, self.name, self.source.tag)) Event.draw(self, canvas, xpos, ypos, l) return (xpos + delta) @@ -797,7 +804,8 @@ class EventSource: def drawname(self, canvas, ypos): self.y = ypos ypos = ypos - (self.ysize() / 2) - self.item = canvas.create_text(10, ypos, anchor="w", text=self.name) + self.item = canvas.create_text(X_BORDER, ypos, anchor="w", + text=self.name) return (self.item) def drawcpu(self, canvas, cpu, fromx, tox, ypos): @@ -807,7 +815,7 @@ class EventSource: l = canvas.create_rectangle(fromx, ypos - self.ysize() - canvas.bdheight, tox, ypos + canvas.bdheight, fill=color, width=0, - tags=("all", "cpuinfo", cpu, self.tag), state="hidden") + tags=("cpubg", cpu, self.tag), state="hidden") self.cpuitems.append(l) def move(self, canvas, xpos, ypos): @@ -818,7 +826,7 @@ class EventSource: canvas.move(self.item, xpos, ypos) def ysize(self): - return (10) + return (Y_EVENTSOURCE) def eventat(self, i): if (i >= len(self.events)): @@ -858,7 +866,7 @@ class Counter(EventSource): return (Counter.groups[self.group]) def ysize(self): - return (80) + return (Y_COUNTER) def yscale(self): return (self.ysize() / self.ymax()) @@ -873,16 +881,22 @@ class KTRFile: self.load = {} self.crit = {} self.stathz = 0 + self.eventcnt = 0 self.parse(file) self.fixup() global ticksps ticksps = self.ticksps() - timespan = self.timespan() - print "first tick", self.timestamp_f, - print "last tick", self.timestamp_l - print "Ticks per second", ticksps - print "time span", timespan, "ticks", ticks2sec(timespan) + span = self.timespan() + ghz = float(ticksps) / 1000000000.0 + # + # Update the title with some stats from the file + # + titlestr = "SchedGraph: " + titlestr += ticks2sec(span) + " at %.3f ghz, " % ghz + titlestr += str(len(sources)) + " event sources, " + titlestr += str(self.eventcnt) + " events" + root.title(titlestr) def parse(self, file): try: @@ -990,6 +1004,7 @@ class KTRFile: elif (type == "point"): e = PointEvent(source, *args) if (e != None): + self.eventcnt += 1 source.addevent(e); return e @@ -1132,13 +1147,10 @@ class SchedDisplay(Canvas): ypos += source.ysize() source.draw(self, ypos) ypos += self.bdheight - try: - self.tag_raise("point", "state") - self.tag_lower("cpuinfo", "all") - except: - pass + self.tag_raise("point", "state") + self.tag_lower("cpubg", ALL) self.create_line(0, ypos, xsize, ypos, - width=1, fill="black", tags=("all",)) + width=1, fill="black", tags=("lines",)) self.tag_bind("event", "", self.mouseenter) self.tag_bind("event", "", self.mouseexit) self.bind("", self.mousepress) @@ -1187,7 +1199,7 @@ class SchedDisplay(Canvas): self.parent.display_yview("scroll", -1, "units") def xsize(self): - return ((ktrfile.timespan() / self.ratio) + 20) + return ((ktrfile.timespan() / self.ratio) + (X_BORDER * 2)) def ysize(self): ysize = 0 @@ -1206,7 +1218,7 @@ class SchedDisplay(Canvas): self.ratio = ratio self.updatescroll() - self.scale("all", 0, 0, float(oldratio) / ratio, 1) + self.scale(ALL, 0, 0, float(oldratio) / ratio, 1) xstart, xend = self.xview() xsize = (xend - xstart) / 2 @@ -1261,7 +1273,7 @@ class SchedGraph(Frame): self.display = None self.scale = None self.status = None - self.bdheight = 10 + self.bdheight = Y_BORDER self.clicksource = None self.lastsource = None self.pack(expand=1, fill="both") @@ -1559,7 +1571,7 @@ if (len(sys.argv) > 2): clockfreq = float(sys.argv[2]) root = Tk() -root.title("Scheduler Graph") +root.title("SchedGraph") colormap = Colormap(eventcolors) cpucolormap = Colormap(cpucolors) graph = SchedGraph(root) From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 07:20:03 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BD2910656D5; Sun, 18 Jan 2009 07:20:03 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EF5968FC16; Sun, 18 Jan 2009 07:20:02 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0I7K23T064627; Sun, 18 Jan 2009 07:20:02 GMT (envelope-from sam@svn.freebsd.org) Received: (from sam@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0I7K2oR064625; Sun, 18 Jan 2009 07:20:02 GMT (envelope-from sam@svn.freebsd.org) Message-Id: <200901180720.n0I7K2oR064625@svn.freebsd.org> From: Sam Leffler Date: Sun, 18 Jan 2009 07:20:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187380 - in head/sys: netinet netinet6 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 07:20:03 -0000 Author: sam Date: Sun Jan 18 07:20:02 2009 New Revision: 187380 URL: http://svn.freebsd.org/changeset/base/187380 Log: remove too noisy DIAGNOSTIC code Reviewed by: qingli Modified: head/sys/netinet/in.c head/sys/netinet6/in6_ifattach.c Modified: head/sys/netinet/in.c ============================================================================== --- head/sys/netinet/in.c Sun Jan 18 05:44:31 2009 (r187379) +++ head/sys/netinet/in.c Sun Jan 18 07:20:02 2009 (r187380) @@ -1003,9 +1003,6 @@ in_purgemaddrs(struct ifnet *ifp) struct in_multi *inm; struct in_multi *oinm; -#ifdef DIAGNOSTIC - printf("%s: purging ifp %p\n", __func__, ifp); -#endif IFF_LOCKGIANT(ifp); IN_MULTI_LOCK(); LIST_FOREACH_SAFE(inm, &V_in_multihead, inm_link, oinm) { Modified: head/sys/netinet6/in6_ifattach.c ============================================================================== --- head/sys/netinet6/in6_ifattach.c Sun Jan 18 05:44:31 2009 (r187379) +++ head/sys/netinet6/in6_ifattach.c Sun Jan 18 07:20:02 2009 (r187380) @@ -904,10 +904,6 @@ in6_purgemaddrs(struct ifnet *ifp) struct in6_multi *in6m; struct in6_multi *oin6m; -#ifdef DIAGNOSTIC - printf("%s: purging ifp %p\n", __func__, ifp); -#endif - IFF_LOCKGIANT(ifp); LIST_FOREACH_SAFE(in6m, &in6_multihead, in6m_entry, oin6m) { if (in6m->in6m_ifp == ifp) From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 08:00:55 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB3831065673; Sun, 18 Jan 2009 08:00:55 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9A83A8FC12; Sun, 18 Jan 2009 08:00:55 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0I80tTg065480; Sun, 18 Jan 2009 08:00:55 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0I80tdw065479; Sun, 18 Jan 2009 08:00:55 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901180800.n0I80tdw065479@svn.freebsd.org> From: Alan Cox Date: Sun, 18 Jan 2009 08:00:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187381 - head/sys/ia64/ia64 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 08:00:56 -0000 Author: alc Date: Sun Jan 18 08:00:55 2009 New Revision: 187381 URL: http://svn.freebsd.org/changeset/base/187381 Log: Correct an error in revision 1.170 of this file. When get_pv_entry() is forced to reclaim pv entries, the one pv entry that it returns should not be freed. Modified: head/sys/ia64/ia64/pmap.c Modified: head/sys/ia64/ia64/pmap.c ============================================================================== --- head/sys/ia64/ia64/pmap.c Sun Jan 18 07:20:02 2009 (r187380) +++ head/sys/ia64/ia64/pmap.c Sun Jan 18 08:00:55 2009 (r187381) @@ -239,9 +239,11 @@ static pv_entry_t get_pv_entry(pmap_t lo static void pmap_enter_quick_locked(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot); +static void pmap_free_pte(struct ia64_lpte *pte, vm_offset_t va); static void pmap_invalidate_all(pmap_t pmap); static int pmap_remove_pte(pmap_t pmap, struct ia64_lpte *pte, vm_offset_t va, pv_entry_t pv, int freepte); +static int pmap_remove_vhpt(vm_offset_t va); static boolean_t pmap_try_insert_pv_entry(pmap_t pmap, vm_offset_t va, vm_page_t m); @@ -799,11 +801,23 @@ retry: PMAP_LOCK(pmap); else if (pmap != locked_pmap && !PMAP_TRYLOCK(pmap)) continue; + pmap->pm_stats.resident_count--; oldpmap = pmap_switch(pmap); pte = pmap_find_vhpt(va); KASSERT(pte != NULL, ("pte")); - pmap_remove_pte(pmap, pte, va, pv, 1); + pmap_remove_vhpt(va); + pmap_invalidate_page(pmap, va); pmap_switch(oldpmap); + if (pmap_accessed(pte)) + vm_page_flag_set(m, PG_REFERENCED); + if (pmap_dirty(pte)) + vm_page_dirty(m); + pmap_free_pte(pte, va); + TAILQ_REMOVE(&pmap->pm_pvlist, pv, pv_plist); + m->md.pv_list_count--; + TAILQ_REMOVE(&m->md.pv_list, pv, pv_list); + if (TAILQ_EMPTY(&m->md.pv_list)) + vm_page_flag_clear(m, PG_WRITEABLE); if (pmap != locked_pmap) PMAP_UNLOCK(pmap); if (allocated_pv == NULL) From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 09:44:33 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C150B1065673; Sun, 18 Jan 2009 09:44:33 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AFBF98FC1C; Sun, 18 Jan 2009 09:44:33 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0I9iXCr067555; Sun, 18 Jan 2009 09:44:33 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0I9iXOC067554; Sun, 18 Jan 2009 09:44:33 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <200901180944.n0I9iXOC067554@svn.freebsd.org> From: Ed Schouten Date: Sun, 18 Jan 2009 09:44:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187382 - head/sys/dev/syscons/teken X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 09:44:34 -0000 Author: ed Date: Sun Jan 18 09:44:33 2009 New Revision: 187382 URL: http://svn.freebsd.org/changeset/base/187382 Log: Don't forget to mark the color translation array as const. Spotted by: Christoph Mallon Modified: head/sys/dev/syscons/teken/teken_subr_compat.h Modified: head/sys/dev/syscons/teken/teken_subr_compat.h ============================================================================== --- head/sys/dev/syscons/teken/teken_subr_compat.h Sun Jan 18 08:00:55 2009 (r187381) +++ head/sys/dev/syscons/teken/teken_subr_compat.h Sun Jan 18 09:44:33 2009 (r187382) @@ -33,8 +33,8 @@ teken_subr_cons25_set_cursor_type(teken_ teken_funcs_param(t, TP_SHOWCURSOR, type != 1); } -static teken_color_t cons25_colors[8] = { TC_BLACK, TC_BLUE, TC_GREEN, - TC_CYAN, TC_RED, TC_MAGENTA, TC_BROWN, TC_WHITE }; +static const teken_color_t cons25_colors[8] = { TC_BLACK, TC_BLUE, + TC_GREEN, TC_CYAN, TC_RED, TC_MAGENTA, TC_BROWN, TC_WHITE }; static void teken_subr_cons25_set_adapter_background(teken_t *t, unsigned int c) From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 09:47:51 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B42221065676; Sun, 18 Jan 2009 09:47:51 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from mail-bw0-f16.google.com (mail-bw0-f16.google.com [209.85.218.16]) by mx1.freebsd.org (Postfix) with ESMTP id A70AC8FC08; Sun, 18 Jan 2009 09:47:50 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by bwz9 with SMTP id 9so10185bwz.19 for ; Sun, 18 Jan 2009 01:47:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=qsL2PiNGet4aA1v6u3P/il6yFcSYu3ubUiH211OBTOk=; b=OmK0rlYkLMo32sYmX/LPXLPMoGxNHSsThM8/Gm+dugzYM2LpcfA5vnhJ886JjulxSX MM22wjRcRBgMCVTnie1kXRT9IbGyQ2ivMMwNHn9+MHlYAH+vE6ZKKW2i9y/axEkYwvVM rxOUzM51O8F6yq4TNeYhuABS9HM23h/ziCduM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=TvHhlR/fGCIz2IkQGKWiG1k/pF40hMNbnGOf+IOtF0iZCwprRvhmLFHaPjTkxZQiYy RRTnDYa3QCJMoJJV9H+Bfm9rDkv6Z4jH/QxTrZsMW2kwQiYjrgYx77w+rASW0HYUNzvg Yk3ngN9OnqVKMVVERk2vOp6aQs2SBSsVANp2Q= MIME-Version: 1.0 Received: by 10.180.224.4 with SMTP id w4mr1598571bkg.174.1232272007318; Sun, 18 Jan 2009 01:46:47 -0800 (PST) In-Reply-To: <200901172301.n0HN1ePm054707@svn.freebsd.org> References: <200901172301.n0HN1ePm054707@svn.freebsd.org> Date: Sun, 18 Jan 2009 01:46:47 -0800 Message-ID: <7d6fde3d0901180146v4fe098abmd526e2a2c869282b@mail.gmail.com> From: Garrett Cooper To: Ed Schouten Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187374 - head/sys/dev/syscons/teken X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 09:47:52 -0000 On Sat, Jan 17, 2009 at 3:01 PM, Ed Schouten wrote: [...] > Modified: > head/sys/dev/syscons/teken/teken_subr_compat.h > > Modified: head/sys/dev/syscons/teken/teken_subr_compat.h > ============================================================================== > --- head/sys/dev/syscons/teken/teken_subr_compat.h Sat Jan 17 22:53:53 2009 (r187373) > +++ head/sys/dev/syscons/teken/teken_subr_compat.h Sat Jan 17 23:01:40 2009 (r187374) > @@ -33,20 +33,23 @@ teken_subr_cons25_set_cursor_type(teken_ > teken_funcs_param(t, TP_SHOWCURSOR, type != 1); > } [...] Dumb question: Why are C function definitions in a .h file? I know it's legal, but at least from what I've been coached on in the past, it isn't necessarily the most kosher way of solving the issue. Macros are a different point. Thanks, -Garrett From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 10:11:49 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FB691065675 for ; Sun, 18 Jan 2009 10:11:49 +0000 (UTC) (envelope-from christoph.mallon@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id E02258FC14 for ; Sun, 18 Jan 2009 10:11:48 +0000 (UTC) (envelope-from christoph.mallon@gmx.de) Received: (qmail invoked by alias); 18 Jan 2009 10:11:47 -0000 Received: from p54A3EF46.dip.t-dialin.net (EHLO tron.homeunix.org) [84.163.239.70] by mail.gmx.net (mp015) with SMTP; 18 Jan 2009 11:11:47 +0100 X-Authenticated: #1673122 X-Provags-ID: V01U2FsdGVkX1/zoXt63iHzubKtbb6Wabbc68qGezfkVzKXSwTKmq I98VV78zDHLOCD Message-ID: <49730062.2010900@gmx.de> Date: Sun, 18 Jan 2009 11:11:46 +0100 From: Christoph Mallon User-Agent: Thunderbird 2.0.0.19 (X11/20090103) MIME-Version: 1.0 To: Garrett Cooper References: <200901172301.n0HN1ePm054707@svn.freebsd.org> <7d6fde3d0901180146v4fe098abmd526e2a2c869282b@mail.gmail.com> In-Reply-To: <7d6fde3d0901180146v4fe098abmd526e2a2c869282b@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.57 Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Ed Schouten Subject: Re: svn commit: r187374 - head/sys/dev/syscons/teken X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 10:11:50 -0000 Garrett Cooper schrieb: > On Sat, Jan 17, 2009 at 3:01 PM, Ed Schouten wrote: > > [...] > >> Modified: >> head/sys/dev/syscons/teken/teken_subr_compat.h >> >> Modified: head/sys/dev/syscons/teken/teken_subr_compat.h >> ============================================================================== >> --- head/sys/dev/syscons/teken/teken_subr_compat.h Sat Jan 17 22:53:53 2009 (r187373) >> +++ head/sys/dev/syscons/teken/teken_subr_compat.h Sat Jan 17 23:01:40 2009 (r187374) >> @@ -33,20 +33,23 @@ teken_subr_cons25_set_cursor_type(teken_ >> teken_funcs_param(t, TP_SHOWCURSOR, type != 1); >> } > > [...] > > Dumb question: > > Why are C function definitions in a .h file? I know it's legal, but at > least from what I've been coached on in the past, it isn't necessarily > the most kosher way of solving the issue. > > Macros are a different point. This is just a one-time include. I guess Ed used the .h suffix so his $EDITOR chooses the right syntax highlighting. There is some magic going on to call these functions (you probably noticed he didn't add any obvious callers): The callers are generated by a script. The differnt parts are then all included in teken.c. From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 10:58:27 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCFEA106564A; Sun, 18 Jan 2009 10:58:27 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [IPv6:2001:7b8:613:100::211]) by mx1.freebsd.org (Postfix) with ESMTP id 66B068FC0A; Sun, 18 Jan 2009 10:58:27 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id E49111CC46; Sun, 18 Jan 2009 11:58:25 +0100 (CET) Date: Sun, 18 Jan 2009 11:58:25 +0100 From: Ed Schouten To: Garrett Cooper Message-ID: <20090118105825.GR1247@hoeg.nl> References: <200901172301.n0HN1ePm054707@svn.freebsd.org> <7d6fde3d0901180146v4fe098abmd526e2a2c869282b@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0iexB5Bk8cF8G6DP" Content-Disposition: inline In-Reply-To: <7d6fde3d0901180146v4fe098abmd526e2a2c869282b@mail.gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187374 - head/sys/dev/syscons/teken X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 10:58:28 -0000 --0iexB5Bk8cF8G6DP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello Garrett, * Garrett Cooper wrote: > Dumb question: >=20 > Why are C function definitions in a .h file? I know it's legal, but at > least from what I've been coached on in the past, it isn't necessarily > the most kosher way of solving the issue. >=20 > Macros are a different point. The reason why the file ends with .h, is because it is included from teken.c. I could have named it teken_subr_compat.c, but I used the .h extension to make it more clear this file is included somewhere else, it doesn't live on its own. The reason why everything is included in teken.c, is because libteken has a very large amount of small functions. Right now almost all the functions in teken_subr* are inlined into the state machine itself, having a dramatic effect on the binary size. So yes, it's not as elegant/traditional as what we normally have, but there is a reason why I did it. --=20 Ed Schouten WWW: http://80386.nl/ --0iexB5Bk8cF8G6DP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAklzC1EACgkQ52SDGA2eCwWyzgCfUQm00z3QLDOkG7s0mAvF+rKv tZAAnjx1lOYr1jPjaRQUuJ8pn+bJKvLf =LTby -----END PGP SIGNATURE----- --0iexB5Bk8cF8G6DP-- From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 11:17:47 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CB89106566B; Sun, 18 Jan 2009 11:17:47 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 398228FC1A; Sun, 18 Jan 2009 11:17:47 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IBHklQ071632; Sun, 18 Jan 2009 11:17:46 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IBHkRc071630; Sun, 18 Jan 2009 11:17:46 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181117.n0IBHkRc071630@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 11:17:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187383 - stable/7/sys/dev/ae X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 11:17:48 -0000 Author: stas Date: Sun Jan 18 11:17:46 2009 New Revision: 187383 URL: http://svn.freebsd.org/changeset/base/187383 Log: - MFC r185707: - Eliminate unused variable. [1] - Check for runt frames entering the stack. [2] Suggested by: ganbold[1], yongari[2] Modified: stable/7/sys/dev/ae/if_ae.c Modified: stable/7/sys/dev/ae/if_ae.c ============================================================================== --- stable/7/sys/dev/ae/if_ae.c Sun Jan 18 09:44:33 2009 (r187382) +++ stable/7/sys/dev/ae/if_ae.c Sun Jan 18 11:17:46 2009 (r187383) @@ -1103,12 +1103,9 @@ ae_dmamap_cb(void *arg, bus_dma_segment_ static int ae_alloc_rings(ae_softc_t *sc) { - bus_dma_tag_t bustag; bus_addr_t busaddr; int error; - bustag = bus_get_dma_tag(sc->dev); - /* * Create parent DMA tag. */ @@ -1865,8 +1862,8 @@ ae_rxeof(ae_softc_t *sc, ae_rxd_t *rxd) if_printf(ifp, "Rx interrupt occuried.\n"); #endif size = le16toh(rxd->len) - ETHER_CRC_LEN; - if (size < 0) { - if_printf(ifp, "Negative length packet received."); + if (size < (ETHER_MIN_LEN - ETHER_CRC_LEN - ETHER_VLAN_ENCAP_LEN)) { + if_printf(ifp, "Runt frame received."); return (EIO); } From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 11:38:35 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA4A21065675; Sun, 18 Jan 2009 11:38:35 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C8B138FC16; Sun, 18 Jan 2009 11:38:35 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IBcZNK072049; Sun, 18 Jan 2009 11:38:35 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IBcZSB072048; Sun, 18 Jan 2009 11:38:35 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <200901181138.n0IBcZSB072048@svn.freebsd.org> From: Alexander Motin Date: Sun, 18 Jan 2009 11:38:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187384 - head/sbin/route X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 11:38:36 -0000 Author: mav Date: Sun Jan 18 11:38:35 2009 New Revision: 187384 URL: http://svn.freebsd.org/changeset/base/187384 Log: Fix regression introduced in rev. 173124: 0.0.0.0/1 is not the same as 0.0.0.0/0. MFC after: 1 month Modified: head/sbin/route/route.c Modified: head/sbin/route/route.c ============================================================================== --- head/sbin/route/route.c Sun Jan 18 11:17:46 2009 (r187383) +++ head/sbin/route/route.c Sun Jan 18 11:38:35 2009 (r187384) @@ -791,33 +791,34 @@ inet_makenetandmask(net, sin, bits) char *cp; rtm_addrs |= RTA_NETMASK; - if (net == 0) - mask = addr = 0; - else { - if (net <= 0xff) - addr = net << IN_CLASSA_NSHIFT; - else if (net <= 0xffff) - addr = net << IN_CLASSB_NSHIFT; - else if (net <= 0xffffff) - addr = net << IN_CLASSC_NSHIFT; - else - addr = net; + /* + * XXX: This approach unable to handle 0.0.0.1/32 correctly + * as inet_network() converts 0.0.0.1 and 1 equally. + */ + if (net <= 0xff) + addr = net << IN_CLASSA_NSHIFT; + else if (net <= 0xffff) + addr = net << IN_CLASSB_NSHIFT; + else if (net <= 0xffffff) + addr = net << IN_CLASSC_NSHIFT; + else + addr = net; + + if (bits != 0) + mask = 0xffffffff << (32 - bits); + else if (net == 0) + mask = 0; + else if (IN_CLASSA(addr)) + mask = IN_CLASSA_NET; + else if (IN_CLASSB(addr)) + mask = IN_CLASSB_NET; + else if (IN_CLASSC(addr)) + mask = IN_CLASSC_NET; + else if (IN_MULTICAST(addr)) + mask = IN_CLASSD_NET; + else + mask = 0xffffffff; - if (bits != 0) - mask = 0xffffffff << (32 - bits); - else { - if (IN_CLASSA(addr)) - mask = IN_CLASSA_NET; - else if (IN_CLASSB(addr)) - mask = IN_CLASSB_NET; - else if (IN_CLASSC(addr)) - mask = IN_CLASSC_NET; - else if (IN_MULTICAST(addr)) - mask = IN_CLASSD_NET; - else - mask = 0xffffffff; - } - } sin->sin_addr.s_addr = htonl(addr); sin = &so_mask.sin; sin->sin_addr.s_addr = htonl(mask); From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 11:43:24 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36828106567B; Sun, 18 Jan 2009 11:43:24 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 239838FC1A; Sun, 18 Jan 2009 11:43:24 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IBhO8a072186; Sun, 18 Jan 2009 11:43:24 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IBhOOH072185; Sun, 18 Jan 2009 11:43:24 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181143.n0IBhOOH072185@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 11:43:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187385 - in stable/7/sys: . arm/arm contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 11:43:25 -0000 Author: stas Date: Sun Jan 18 11:43:23 2009 New Revision: 187385 URL: http://svn.freebsd.org/changeset/base/187385 Log: - Merge r185494: Get rid of unused variable in KTR checks. This allows ktr(4) enabled ARM kernel to compile. PR: rm/128897 Submitted by: Pankov Pavel Modified: stable/7/sys/ (props changed) stable/7/sys/arm/arm/busdma_machdep.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/arm/arm/busdma_machdep.c ============================================================================== --- stable/7/sys/arm/arm/busdma_machdep.c Sun Jan 18 11:38:35 2009 (r187384) +++ stable/7/sys/arm/arm/busdma_machdep.c Sun Jan 18 11:43:23 2009 (r187385) @@ -671,9 +671,8 @@ _bus_dmamap_count_pages(bus_dma_tag_t dm bus_addr_t paddr; if ((map->pagesneeded == 0)) { - CTR4(KTR_BUSDMA, "lowaddr= %d Maxmem= %d, boundary= %d, " - "alignment= %d", dmat->lowaddr, ptoa((vm_paddr_t)Maxmem), - dmat->boundary, dmat->alignment); + CTR3(KTR_BUSDMA, "lowaddr= %d, boundary= %d, alignment= %d", + dmat->lowaddr, dmat->boundary, dmat->alignment); CTR2(KTR_BUSDMA, "map= %p, pagesneeded= %d", map, map->pagesneeded); /* From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 11:47:40 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F94C1065703; Sun, 18 Jan 2009 11:47:40 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1C6098FC1C; Sun, 18 Jan 2009 11:47:40 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IBle8J072347; Sun, 18 Jan 2009 11:47:40 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IBleOi072346; Sun, 18 Jan 2009 11:47:40 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200901181147.n0IBleOi072346@svn.freebsd.org> From: Konstantin Belousov Date: Sun, 18 Jan 2009 11:47:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187386 - in stable/7/sys: . contrib/pf dev/cxgb gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 11:47:40 -0000 Author: kib Date: Sun Jan 18 11:47:39 2009 New Revision: 187386 URL: http://svn.freebsd.org/changeset/base/187386 Log: MFC r186740: Do not incorrectly add the low 5 bits of the offset to the resulting position of the found zero bit. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/gnu/fs/ext2fs/ext2_bitops.h Modified: stable/7/sys/gnu/fs/ext2fs/ext2_bitops.h ============================================================================== --- stable/7/sys/gnu/fs/ext2fs/ext2_bitops.h Sun Jan 18 11:43:23 2009 (r187385) +++ stable/7/sys/gnu/fs/ext2fs/ext2_bitops.h Sun Jan 18 11:47:39 2009 (r187386) @@ -84,7 +84,7 @@ find_next_zero_bit(void *data, size_t sz mask = ~0U << (ofs & 31); bit = *p | ~mask; if (bit != ~0U) - return (ffs(~bit) + ofs - 1); + return (ffs(~bit) + (ofs & ~31U) - 1); p++; ofs = (ofs + 31U) & ~31U; } From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 12:03:43 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B912C10656C7; Sun, 18 Jan 2009 12:03:43 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A4B958FC0C; Sun, 18 Jan 2009 12:03:43 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IC3hS1072722; Sun, 18 Jan 2009 12:03:43 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IC3h1X072721; Sun, 18 Jan 2009 12:03:43 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <200901181203.n0IC3h1X072721@svn.freebsd.org> From: Alexander Motin Date: Sun, 18 Jan 2009 12:03:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187387 - head/sys/netgraph X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 12:03:47 -0000 Author: mav Date: Sun Jan 18 12:03:43 2009 New Revision: 187387 URL: http://svn.freebsd.org/changeset/base/187387 Log: Remove strict limitation on minimal multilink MRRU. RFC claims that MRRU of 1500 must be supported, but allows smaller values to be negotiated. Enforce specified MRRU for outgoing frames. MFC after: 2 weeks Modified: head/sys/netgraph/ng_ppp.c Modified: head/sys/netgraph/ng_ppp.c ============================================================================== --- head/sys/netgraph/ng_ppp.c Sun Jan 18 11:47:39 2009 (r187386) +++ head/sys/netgraph/ng_ppp.c Sun Jan 18 12:03:43 2009 (r187387) @@ -128,7 +128,6 @@ MALLOC_DEFINE(M_NETGRAPH_PPP, "netgraph_ #define PROT_VJUNCOMP 0x002f /* Multilink PPP definitions */ -#define MP_MIN_MRRU 1500 /* per RFC 1990 */ #define MP_INITIAL_SEQ 0 /* per RFC 1990 */ #define MP_MIN_LINK_MRU 32 @@ -1985,6 +1984,12 @@ ng_ppp_mp_xmit(node_p node, item_p item, priv->activeLinks[0], plen)); } + /* Check peer's MRRU for this bundle. */ + if (plen > priv->conf.mrru) { + NG_FREE_ITEM(item); + return (EMSGSIZE); + } + /* Extract mbuf. */ NGI_GET_M(item, m); @@ -2540,10 +2545,6 @@ ng_ppp_config_valid(node_p node, const s return (0); } - /* Check bundle parameters */ - if (newConf->bund.enableMultilink && newConf->bund.mrru < MP_MIN_MRRU) - return (0); - /* Disallow changes to multi-link configuration while MP is active */ if (priv->numActiveLinks > 0 && newNumLinksActive > 0) { if (!priv->conf.enableMultilink From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 12:09:24 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 962301065672; Sun, 18 Jan 2009 12:09:24 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 831718FC1B; Sun, 18 Jan 2009 12:09:24 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IC9O3h072872; Sun, 18 Jan 2009 12:09:24 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IC9OTL072871; Sun, 18 Jan 2009 12:09:24 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181209.n0IC9OTL072871@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 12:09:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187388 - in stable/7/sys: . arm/at91 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 12:09:25 -0000 Author: stas Date: Sun Jan 18 12:09:24 2009 New Revision: 187388 URL: http://svn.freebsd.org/changeset/base/187388 Log: - Merge r184310: Add stream bus_space operations. Modified: stable/7/sys/ (props changed) stable/7/sys/arm/at91/at91.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/arm/at91/at91.c ============================================================================== --- stable/7/sys/arm/at91/at91.c Sun Jan 18 12:03:43 2009 (r187387) +++ stable/7/sys/arm/at91/at91.c Sun Jan 18 12:09:24 2009 (r187388) @@ -166,6 +166,42 @@ struct bus_space at91_bs_tag = { generic_armv4_bs_c_2, NULL, NULL, + + /* read (single) stream */ + generic_bs_r_1, + generic_armv4_bs_r_2, + generic_bs_r_4, + NULL, + + /* read multiple stream */ + generic_bs_rm_1, + generic_armv4_bs_rm_2, + generic_bs_rm_4, + NULL, + + /* read region stream */ + generic_bs_rr_1, + generic_armv4_bs_rr_2, + generic_bs_rr_4, + NULL, + + /* write (single) stream */ + generic_bs_w_1, + generic_armv4_bs_w_2, + generic_bs_w_4, + NULL, + + /* write multiple stream */ + generic_bs_wm_1, + generic_armv4_bs_wm_2, + generic_bs_wm_4, + NULL, + + /* write region stream */ + NULL, + generic_armv4_bs_wr_2, + generic_bs_wr_4, + NULL, }; static int From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 12:12:38 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A72681065670; Sun, 18 Jan 2009 12:12:38 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 946508FC14; Sun, 18 Jan 2009 12:12:38 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ICCcwO073048; Sun, 18 Jan 2009 12:12:38 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ICCcRa073047; Sun, 18 Jan 2009 12:12:38 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181212.n0ICCcRa073047@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 12:12:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187389 - in stable/7/sys: . arm/at91 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 12:12:39 -0000 Author: stas Date: Sun Jan 18 12:12:38 2009 New Revision: 187389 URL: http://svn.freebsd.org/changeset/base/187389 Log: - Merge r184309: Add a missing NULL-pointer check. Modified: stable/7/sys/ (props changed) stable/7/sys/arm/at91/at91.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/arm/at91/at91.c ============================================================================== --- stable/7/sys/arm/at91/at91.c Sun Jan 18 12:09:24 2009 (r187388) +++ stable/7/sys/arm/at91/at91.c Sun Jan 18 12:12:38 2009 (r187389) @@ -577,8 +577,10 @@ at91_alloc_resource(device_t dev, device #endif rle->res = rman_reserve_resource(&sc->sc_mem_rman, start, end, count, flags, child); - rman_set_bustag(rle->res, &at91_bs_tag); - rman_set_bushandle(rle->res, start); + if (rle->res != NULL) { + rman_set_bustag(rle->res, &at91_bs_tag); + rman_set_bushandle(rle->res, start); + } break; } if (rle->res) { From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 12:16:45 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D791106566B; Sun, 18 Jan 2009 12:16:45 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8A5B18FC16; Sun, 18 Jan 2009 12:16:45 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ICGjFN073166; Sun, 18 Jan 2009 12:16:45 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ICGjwc073164; Sun, 18 Jan 2009 12:16:45 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181216.n0ICGjwc073164@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 12:16:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187390 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb i386/i386 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 12:16:46 -0000 Author: stas Date: Sun Jan 18 12:16:45 2009 New Revision: 187390 URL: http://svn.freebsd.org/changeset/base/187390 Log: - Merge r183151: Recognize SAVE and OSXSAVE extended processor features. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/identcpu.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/i386/identcpu.c Modified: stable/7/sys/amd64/amd64/identcpu.c ============================================================================== --- stable/7/sys/amd64/amd64/identcpu.c Sun Jan 18 12:12:38 2009 (r187389) +++ stable/7/sys/amd64/amd64/identcpu.c Sun Jan 18 12:16:45 2009 (r187390) @@ -247,8 +247,8 @@ printcpuinfo(void) "\030" "\031" "\032" - "\033" - "\034" + "\033XSAVE" + "\034OSXSAVE" "\035" "\036" "\037" Modified: stable/7/sys/i386/i386/identcpu.c ============================================================================== --- stable/7/sys/i386/i386/identcpu.c Sun Jan 18 12:12:38 2009 (r187389) +++ stable/7/sys/i386/i386/identcpu.c Sun Jan 18 12:16:45 2009 (r187390) @@ -744,8 +744,8 @@ printcpuinfo(void) "\030POPCNT" "\031" "\032" - "\033" - "\034" + "\033XSAVE" + "\034OSXSAVE" "\035" "\036" "\037" From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 12:28:46 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EC29106566B; Sun, 18 Jan 2009 12:28:46 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 11EB38FC18; Sun, 18 Jan 2009 12:28:46 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ICSjnX073458; Sun, 18 Jan 2009 12:28:45 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ICSjnT073457; Sun, 18 Jan 2009 12:28:45 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181228.n0ICSjnT073457@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 12:28:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187391 - in stable/7/sys: . arm/at91 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 12:28:46 -0000 Author: stas Date: Sun Jan 18 12:28:45 2009 New Revision: 187391 URL: http://svn.freebsd.org/changeset/base/187391 Log: - Merge r182477: Try to look for MAC address in all SA registers, not only in the first one. U-boot, for example, uses the second register to store MAC.[1] Use random MAC address if none configured instead of failing. Submitted by: Bjorn Konig [1] Modified: stable/7/sys/ (props changed) stable/7/sys/arm/at91/if_ate.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/arm/at91/if_ate.c ============================================================================== --- stable/7/sys/arm/at91/if_ate.c Sun Jan 18 12:16:45 2009 (r187390) +++ stable/7/sys/arm/at91/if_ate.c Sun Jan 18 12:28:45 2009 (r187391) @@ -170,7 +170,8 @@ ate_attach(device_t dev) struct sysctl_ctx_list *sctx; struct sysctl_oid *soid; int err; - u_char eaddr[6]; + u_char eaddr[ETHER_ADDR_LEN]; + uint32_t rnd; sc->dev = dev; err = ate_activate(dev); @@ -191,8 +192,23 @@ ate_attach(device_t dev) callout_init_mtx(&sc->tick_ch, &sc->sc_mtx, 0); if ((err = ate_get_mac(sc, eaddr)) != 0) { - device_printf(dev, "No MAC address set\n"); - goto out; + /* + * No MAC address configured. Generate the fake one. + */ + if (bootverbose) + device_printf(dev, + "Generating fake ethernet address.\n"); + rnd = arc4random(); + + /* + * Set OUI to Atmel. + */ + eaddr[0] = 0x00; + eaddr[1] = 0x04; + eaddr[2] = 0x25; + eaddr[3] = (rnd >> 16) & 0xff; + eaddr[4] = (rnd >> 8) & 0xff; + eaddr[5] = rnd & 0xff; } ate_set_mac(sc, eaddr); @@ -586,24 +602,29 @@ ate_set_mac(struct ate_softc *sc, u_char static int ate_get_mac(struct ate_softc *sc, u_char *eaddr) { + bus_size_t sa_low_reg[] = { ETH_SA1L, ETH_SA2L, ETH_SA3L, ETH_SA4L }; + bus_size_t sa_high_reg[] = { ETH_SA1H, ETH_SA2H, ETH_SA3H, ETH_SA4H }; uint32_t low, high; + int i; /* * The boot loader setup the MAC with an address, if one is set in - * the loader. The TSC loader will also set the MAC address in a - * similar way. Grab the MAC address from the SA1[HL] registers. + * the loader. Grab one MAC address from the SA[1-4][HL] registers. */ - low = RD4(sc, ETH_SA1L); - high = RD4(sc, ETH_SA1H); - if ((low | (high & 0xffff)) == 0) - return (ENXIO); - eaddr[0] = low & 0xff; - eaddr[1] = (low >> 8) & 0xff; - eaddr[2] = (low >> 16) & 0xff; - eaddr[3] = (low >> 24) & 0xff; - eaddr[4] = high & 0xff; - eaddr[5] = (high >> 8) & 0xff; - return (0); + for (i = 0; i < 4; i++) { + low = RD4(sc, sa_low_reg[i]); + high = RD4(sc, sa_high_reg[i]); + if ((low | (high & 0xffff)) != 0) { + eaddr[0] = low & 0xff; + eaddr[1] = (low >> 8) & 0xff; + eaddr[2] = (low >> 16) & 0xff; + eaddr[3] = (low >> 24) & 0xff; + eaddr[4] = high & 0xff; + eaddr[5] = (high >> 8) & 0xff; + return (0); + } + } + return (ENXIO); } static void From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 12:35:12 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D88C5106566B; Sun, 18 Jan 2009 12:35:11 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C5E3D8FC12; Sun, 18 Jan 2009 12:35:11 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ICZBIF073651; Sun, 18 Jan 2009 12:35:11 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ICZB8D073650; Sun, 18 Jan 2009 12:35:11 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181235.n0ICZB8D073650@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 12:35:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187392 - in stable/7/sys: . arm/at91 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 12:35:13 -0000 Author: stas Date: Sun Jan 18 12:35:11 2009 New Revision: 187392 URL: http://svn.freebsd.org/changeset/base/187392 Log: - MFC r182476: style fix. Modified: stable/7/sys/ (props changed) stable/7/sys/arm/at91/if_ate.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/arm/at91/if_ate.c ============================================================================== --- stable/7/sys/arm/at91/if_ate.c Sun Jan 18 12:28:45 2009 (r187391) +++ stable/7/sys/arm/at91/if_ate.c Sun Jan 18 12:35:11 2009 (r187392) @@ -180,7 +180,7 @@ ate_attach(device_t dev) sc->use_rmii = (RD4(sc, ETH_CFG) & ETH_CFG_RMII) == ETH_CFG_RMII; - /*Sysctls*/ + /* Sysctls */ sctx = device_get_sysctl_ctx(dev); soid = device_get_sysctl_tree(dev); SYSCTL_ADD_UINT(sctx, SYSCTL_CHILDREN(soid), OID_AUTO, "rmii", From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 12:59:37 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C82D1065676; Sun, 18 Jan 2009 12:59:37 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 69E4F8FC14; Sun, 18 Jan 2009 12:59:37 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ICxbfZ074198; Sun, 18 Jan 2009 12:59:37 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ICxbqe074197; Sun, 18 Jan 2009 12:59:37 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181259.n0ICxbqe074197@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 12:59:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187393 - in stable/6/sys: . dev/usb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 12:59:38 -0000 Author: stas Date: Sun Jan 18 12:59:37 2009 New Revision: 187393 URL: http://svn.freebsd.org/changeset/base/187393 Log: - MFC r174660: Add quirk for the TrendNet TU-S9 adapter, which uses new version of PL2303 chip (revision 0x400). This allows it to be correctly identified as PL2303X. PR: usb/128115 Submitted by: Borodin Oleg Modified: stable/6/sys/ (props changed) stable/6/sys/dev/usb/uplcom.c Modified: stable/6/sys/dev/usb/uplcom.c ============================================================================== --- stable/6/sys/dev/usb/uplcom.c Sun Jan 18 12:35:11 2009 (r187392) +++ stable/6/sys/dev/usb/uplcom.c Sun Jan 18 12:59:37 2009 (r187393) @@ -240,6 +240,9 @@ static const struct uplcom_product { { USB_VENDOR_PROLIFIC2, USB_PRODUCT_PROLIFIC2_WSIM, -1, TYPE_PL2303X}, /* PLANEX USB-RS232 URS-03 */ { USB_VENDOR_ATEN, USB_PRODUCT_ATEN_UC232A, -1, TYPE_PL2303 }, + /* TrendNet TU-S9 */ + { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303, + 0x400, TYPE_PL2303X }, /* ST Lab USB-SERIAL-4 */ { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303, 0x300, TYPE_PL2303X }, From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 13:04:38 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAA2A1065672; Sun, 18 Jan 2009 13:04:38 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B8B2A8FC13; Sun, 18 Jan 2009 13:04:38 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ID4cpi074356; Sun, 18 Jan 2009 13:04:38 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ID4cYV074355; Sun, 18 Jan 2009 13:04:38 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <200901181304.n0ID4cYV074355@svn.freebsd.org> From: Marius Strobl Date: Sun, 18 Jan 2009 13:04:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187394 - head/sys/sun4v/include X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 13:04:39 -0000 Author: marius Date: Sun Jan 18 13:04:38 2009 New Revision: 187394 URL: http://svn.freebsd.org/changeset/base/187394 Log: Adjust the padding of struct pcpu to r187357. Modified: head/sys/sun4v/include/pcpu.h Modified: head/sys/sun4v/include/pcpu.h ============================================================================== --- head/sys/sun4v/include/pcpu.h Sun Jan 18 12:59:37 2009 (r187393) +++ head/sys/sun4v/include/pcpu.h Sun Jan 18 13:04:38 2009 (r187394) @@ -38,6 +38,12 @@ struct pmap; +#ifdef KTR +#define PCPU_MD_FIELDS_PAD (4 - (PCPU_NAME_LEN + 7) / 8) +#else +#define PCPU_MD_FIELDS_PAD 4 +#endif + /* * Inside the kernel, the globally reserved register g7 is used to * point at the globaldata structure. @@ -72,7 +78,7 @@ struct pmap; u_int pc_kwbuf_full; \ struct rwindow pc_tsbwbuf[2]; \ uint16_t pc_cpulist[MAXCPU]; \ - uint64_t pad[4]; + uint64_t pad[PCPU_MD_FIELDS_PAD]; /* XXX SUN4V_FIXME - as we access the *_ra and *_size fields in quick * succession we _really_ want them to be L1 cache line size aligned From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 14:04:57 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C6F51065670; Sun, 18 Jan 2009 14:04:57 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2A4F18FC0A; Sun, 18 Jan 2009 14:04:57 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IE4vQw075703; Sun, 18 Jan 2009 14:04:57 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IE4uXw075698; Sun, 18 Jan 2009 14:04:56 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181404.n0IE4uXw075698@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 14:04:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187395 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 14:04:57 -0000 Author: stas Date: Sun Jan 18 14:04:56 2009 New Revision: 187395 URL: http://svn.freebsd.org/changeset/base/187395 Log: - Obtain inode sizes and location of the first inode based on the contents of superblock rather than using hardcoded values. This fixes ext2fs on filesystems with inode sized other than 128. Submitted by: Alex Lyashkov (based on) MFC after: 2 weeks Modified: head/sys/gnu/fs/ext2fs/ext2_fs.h head/sys/gnu/fs/ext2fs/ext2_fs_sb.h head/sys/gnu/fs/ext2fs/ext2_inode.c head/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c head/sys/gnu/fs/ext2fs/ext2_vfsops.c Modified: head/sys/gnu/fs/ext2fs/ext2_fs.h ============================================================================== --- head/sys/gnu/fs/ext2fs/ext2_fs.h Sun Jan 18 13:04:38 2009 (r187394) +++ head/sys/gnu/fs/ext2fs/ext2_fs.h Sun Jan 18 14:04:56 2009 (r187395) @@ -150,8 +150,8 @@ #else /* !notyet */ #define EXT2_INODES_PER_BLOCK(s) ((s)->s_inodes_per_block) /* Should be sizeof(struct ext2_inode): */ -#define EXT2_INODE_SIZE 128 -#define EXT2_FIRST_INO 11 +#define EXT2_INODE_SIZE(s) ((s)->s_inode_size) +#define EXT2_FIRST_INO(s) ((s)->s_first_inode) #endif /* notyet */ /* Modified: head/sys/gnu/fs/ext2fs/ext2_fs_sb.h ============================================================================== --- head/sys/gnu/fs/ext2fs/ext2_fs_sb.h Sun Jan 18 13:04:38 2009 (r187394) +++ head/sys/gnu/fs/ext2fs/ext2_fs_sb.h Sun Jan 18 14:04:56 2009 (r187395) @@ -63,6 +63,8 @@ struct ext2_sb_info { unsigned long s_db_per_group; /* Number of descriptor blocks per group */ unsigned long s_desc_per_block; /* Number of group descriptors per block */ unsigned long s_groups_count; /* Number of groups in the fs */ + unsigned long s_first_inode; /* First inode on fs */ + unsigned int s_inode_size; /* Size for inode with extra data */ struct buffer_head * s_sbh; /* Buffer containing the super block */ struct ext2_super_block * s_es; /* Pointer to the super block in the buffer */ struct buffer_head ** s_group_desc; Modified: head/sys/gnu/fs/ext2fs/ext2_inode.c ============================================================================== --- head/sys/gnu/fs/ext2fs/ext2_inode.c Sun Jan 18 13:04:38 2009 (r187394) +++ head/sys/gnu/fs/ext2fs/ext2_inode.c Sun Jan 18 14:04:56 2009 (r187395) @@ -91,7 +91,7 @@ ext2_update(vp, waitfor) return (error); } ext2_i2ei(ip, (struct ext2_inode *)((char *)bp->b_data + - EXT2_INODE_SIZE * ino_to_fsbo(fs, ip->i_number))); + EXT2_INODE_SIZE(fs) * ino_to_fsbo(fs, ip->i_number))); if (waitfor && (vp->v_mount->mnt_kern_flag & MNTK_ASYNC) == 0) return (bwrite(bp)); else { Modified: head/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c ============================================================================== --- head/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c Sun Jan 18 13:04:38 2009 (r187394) +++ head/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c Sun Jan 18 14:04:56 2009 (r187395) @@ -225,7 +225,7 @@ void ext2_free_inode (struct inode * ino sb = inode->i_e2fs; lock_super (DEVVP(inode)); - if (inode->i_number < EXT2_FIRST_INO || + if (inode->i_number < EXT2_FIRST_INO(sb) || inode->i_number > sb->s_es->s_inodes_count) { printf ("free_inode reserved inode or nonexistent inode"); unlock_super (DEVVP(inode)); @@ -435,7 +435,7 @@ repeat: goto repeat; } j += i * EXT2_INODES_PER_GROUP(sb) + 1; - if (j < EXT2_FIRST_INO || j > es->s_inodes_count) { + if (j < EXT2_FIRST_INO(sb) || j > es->s_inodes_count) { printf ( "ext2_new_inode:" "reserved inode or inode > inodes count - " "block_group = %d,inode=%d", i, j); Modified: head/sys/gnu/fs/ext2fs/ext2_vfsops.c ============================================================================== --- head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 13:04:38 2009 (r187394) +++ head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:04:56 2009 (r187395) @@ -424,7 +424,11 @@ static int compute_sb_data(devvp, es, fs V(s_frags_per_group) fs->s_inodes_per_group = es->s_inodes_per_group; V(s_inodes_per_group) - fs->s_inodes_per_block = fs->s_blocksize / EXT2_INODE_SIZE; + fs->s_inode_size = es->s_inode_size; + V(s_inode_size) + fs->s_first_inode = es->s_first_ino; + V(s_first_inode); + fs->s_inodes_per_block = fs->s_blocksize / EXT2_INODE_SIZE(fs); V(s_inodes_per_block) fs->s_itb_per_group = fs->s_inodes_per_group /fs->s_inodes_per_block; V(s_itb_per_group) @@ -578,7 +582,7 @@ loop: return (error); } ext2_ei2i((struct ext2_inode *) ((char *)bp->b_data + - EXT2_INODE_SIZE * ino_to_fsbo(fs, ip->i_number)), ip); + EXT2_INODE_SIZE(fs) * ino_to_fsbo(fs, ip->i_number)), ip); brelse(bp); VOP_UNLOCK(vp, 0); vrele(vp); @@ -1012,7 +1016,7 @@ printf("ext2_vget(%d) dbn= %d ", ino, fs return (error); } /* convert ext2 inode to dinode */ - ext2_ei2i((struct ext2_inode *) ((char *)bp->b_data + EXT2_INODE_SIZE * + ext2_ei2i((struct ext2_inode *) ((char *)bp->b_data + EXT2_INODE_SIZE(fs) * ino_to_fsbo(fs, ino)), ip); ip->i_block_group = ino_to_cg(fs, ino); ip->i_next_alloc_block = 0; From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 14:06:48 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E79DF1065673; Sun, 18 Jan 2009 14:06:48 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.terabit.net.ua (mail.terabit.net.ua [195.137.202.147]) by mx1.freebsd.org (Postfix) with ESMTP id 7E9898FC14; Sun, 18 Jan 2009 14:06:48 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from skuns.zoral.com.ua ([91.193.166.194] helo=mail.zoral.com.ua) by mail.terabit.net.ua with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1LOYIZ-000MBf-GD; Sun, 18 Jan 2009 16:06:47 +0200 Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id n0IE6inh087721 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 18 Jan 2009 16:06:44 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3) with ESMTP id n0IE6if5086356; Sun, 18 Jan 2009 16:06:44 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3/Submit) id n0IE6igK086355; Sun, 18 Jan 2009 16:06:44 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 18 Jan 2009 16:06:44 +0200 From: Kostik Belousov To: Stanislav Sedov Message-ID: <20090118140644.GT48057@deviant.kiev.zoral.com.ua> References: <200901181404.n0IE4uXw075698@svn.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Ayym4vmyMU9P4uDb" Content-Disposition: inline In-Reply-To: <200901181404.n0IE4uXw075698@svn.freebsd.org> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua X-Virus-Scanned: mail.terabit.net.ua 1LOYIZ-000MBf-GD a0a5832a7a3dbbabd32e125895202e50 X-Terabit: YES Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187395 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 14:06:49 -0000 --Ayym4vmyMU9P4uDb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 18, 2009 at 02:04:56PM +0000, Stanislav Sedov wrote: > Author: stas > Date: Sun Jan 18 14:04:56 2009 > New Revision: 187395 > URL: http://svn.freebsd.org/changeset/base/187395 >=20 > Log: > - Obtain inode sizes and location of the first inode based on the conte= nts > of superblock rather than using hardcoded values. This fixes ext2fs on > filesystems with inode sized other than 128. > =20 > Submitted by: Alex Lyashkov (based on) > MFC after: 2 weeks >=20 > Modified: > head/sys/gnu/fs/ext2fs/ext2_fs.h > head/sys/gnu/fs/ext2fs/ext2_fs_sb.h > head/sys/gnu/fs/ext2fs/ext2_inode.c > head/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c > head/sys/gnu/fs/ext2fs/ext2_vfsops.c >=20 > Modified: head/sys/gnu/fs/ext2fs/ext2_fs.h > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/sys/gnu/fs/ext2fs/ext2_fs.h Sun Jan 18 13:04:38 2009 (r187394) > +++ head/sys/gnu/fs/ext2fs/ext2_fs.h Sun Jan 18 14:04:56 2009 (r187395) > @@ -150,8 +150,8 @@ > #else /* !notyet */ > #define EXT2_INODES_PER_BLOCK(s) ((s)->s_inodes_per_block) > /* Should be sizeof(struct ext2_inode): */ > -#define EXT2_INODE_SIZE 128 > -#define EXT2_FIRST_INO 11 > +#define EXT2_INODE_SIZE(s) ((s)->s_inode_size) > +#define EXT2_FIRST_INO(s) ((s)->s_first_inode) > #endif /* notyet */ > =20 > /* >=20 > Modified: head/sys/gnu/fs/ext2fs/ext2_fs_sb.h > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/sys/gnu/fs/ext2fs/ext2_fs_sb.h Sun Jan 18 13:04:38 2009 (r187394) > +++ head/sys/gnu/fs/ext2fs/ext2_fs_sb.h Sun Jan 18 14:04:56 2009 (r187395) > @@ -63,6 +63,8 @@ struct ext2_sb_info { > unsigned long s_db_per_group; /* Number of descriptor blocks per group = */ > unsigned long s_desc_per_block; /* Number of group descriptors per bloc= k */ > unsigned long s_groups_count; /* Number of groups in the fs */ > + unsigned long s_first_inode; /* First inode on fs */ > + unsigned int s_inode_size; /* Size for inode with extra data */ > struct buffer_head * s_sbh; /* Buffer containing the super block */ > struct ext2_super_block * s_es; /* Pointer to the super block in the bu= ffer */ > struct buffer_head ** s_group_desc; >=20 > Modified: head/sys/gnu/fs/ext2fs/ext2_inode.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/sys/gnu/fs/ext2fs/ext2_inode.c Sun Jan 18 13:04:38 2009 (r187394) > +++ head/sys/gnu/fs/ext2fs/ext2_inode.c Sun Jan 18 14:04:56 2009 (r187395) > @@ -91,7 +91,7 @@ ext2_update(vp, waitfor) > return (error); > } > ext2_i2ei(ip, (struct ext2_inode *)((char *)bp->b_data + > - EXT2_INODE_SIZE * ino_to_fsbo(fs, ip->i_number))); > + EXT2_INODE_SIZE(fs) * ino_to_fsbo(fs, ip->i_number))); > if (waitfor && (vp->v_mount->mnt_kern_flag & MNTK_ASYNC) =3D=3D 0) > return (bwrite(bp)); > else { >=20 > Modified: head/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c Sun Jan 18 13:04:38 2009 (= r187394) > +++ head/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c Sun Jan 18 14:04:56 2009 (= r187395) > @@ -225,7 +225,7 @@ void ext2_free_inode (struct inode * ino > =20 > sb =3D inode->i_e2fs; > lock_super (DEVVP(inode)); > - if (inode->i_number < EXT2_FIRST_INO || > + if (inode->i_number < EXT2_FIRST_INO(sb) || > inode->i_number > sb->s_es->s_inodes_count) { > printf ("free_inode reserved inode or nonexistent inode"); > unlock_super (DEVVP(inode)); > @@ -435,7 +435,7 @@ repeat: > goto repeat; > } > j +=3D i * EXT2_INODES_PER_GROUP(sb) + 1; > - if (j < EXT2_FIRST_INO || j > es->s_inodes_count) { > + if (j < EXT2_FIRST_INO(sb) || j > es->s_inodes_count) { > printf ( "ext2_new_inode:" > "reserved inode or inode > inodes count - " > "block_group =3D %d,inode=3D%d", i, j); >=20 > Modified: head/sys/gnu/fs/ext2fs/ext2_vfsops.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 13:04:38 2009 (r18739= 4) > +++ head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:04:56 2009 (r18739= 5) > @@ -424,7 +424,11 @@ static int compute_sb_data(devvp, es, fs > V(s_frags_per_group) > fs->s_inodes_per_group =3D es->s_inodes_per_group; > V(s_inodes_per_group) > - fs->s_inodes_per_block =3D fs->s_blocksize / EXT2_INODE_SIZE; > + fs->s_inode_size =3D es->s_inode_size; > + V(s_inode_size) > + fs->s_first_inode =3D es->s_first_ino; > + V(s_first_inode); > + fs->s_inodes_per_block =3D fs->s_blocksize / EXT2_INODE_SIZE(fs); > V(s_inodes_per_block) > fs->s_itb_per_group =3D fs->s_inodes_per_group /fs->s_inodes_per_blo= ck; > V(s_itb_per_group) > @@ -578,7 +582,7 @@ loop: > return (error); > } > ext2_ei2i((struct ext2_inode *) ((char *)bp->b_data + > - EXT2_INODE_SIZE * ino_to_fsbo(fs, ip->i_number)), ip); > + EXT2_INODE_SIZE(fs) * ino_to_fsbo(fs, ip->i_number)), ip); > brelse(bp); > VOP_UNLOCK(vp, 0); > vrele(vp); > @@ -1012,7 +1016,7 @@ printf("ext2_vget(%d) dbn=3D %d ", ino, fs > return (error); > } > /* convert ext2 inode to dinode */ > - ext2_ei2i((struct ext2_inode *) ((char *)bp->b_data + EXT2_INODE_SIZE * > + ext2_ei2i((struct ext2_inode *) ((char *)bp->b_data + EXT2_INODE_SIZE(f= s) * > ino_to_fsbo(fs, ino)), ip); > ip->i_block_group =3D ino_to_cg(fs, ino); > ip->i_next_alloc_block =3D 0; Please see a discussion on the fs@ and reasoning why I declined to commit the similar patch. --Ayym4vmyMU9P4uDb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAklzN3MACgkQC3+MBN1Mb4i13QCgy52qspLplFQyfZL/0HY6b4vk 0iQAoIVa2IbBUbjUF5/KFqVSHTQLALDN =Kg6Z -----END PGP SIGNATURE----- --Ayym4vmyMU9P4uDb-- From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 14:49:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D3291065672; Sun, 18 Jan 2009 14:49:18 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.terabit.net.ua (mail.terabit.net.ua [195.137.202.147]) by mx1.freebsd.org (Postfix) with ESMTP id E27A68FC25; Sun, 18 Jan 2009 14:49:17 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from skuns.zoral.com.ua ([91.193.166.194] helo=mail.zoral.com.ua) by mail.terabit.net.ua with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1LOYxg-000Oru-5c; Sun, 18 Jan 2009 16:49:16 +0200 Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id n0IEnD9S089982 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 18 Jan 2009 16:49:13 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3) with ESMTP id n0IEnD5d088915; Sun, 18 Jan 2009 16:49:13 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3/Submit) id n0IEnDmZ088914; Sun, 18 Jan 2009 16:49:13 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 18 Jan 2009 16:49:13 +0200 From: Kostik Belousov To: Stanislav Sedov Message-ID: <20090118144913.GU48057@deviant.kiev.zoral.com.ua> References: <200901181404.n0IE4uXw075698@svn.freebsd.org> <20090118140644.GT48057@deviant.kiev.zoral.com.ua> <20090118174357.3ed1459d.stas@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PhxIMoEr374zxJm2" Content-Disposition: inline In-Reply-To: <20090118174357.3ed1459d.stas@FreeBSD.org> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua X-Virus-Scanned: mail.terabit.net.ua 1LOYxg-000Oru-5c 9b513c07f8f0f33d16434a4855b12a18 X-Terabit: YES Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187395 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 14:49:18 -0000 --PhxIMoEr374zxJm2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 18, 2009 at 05:43:57PM +0300, Stanislav Sedov wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 >=20 > On Sun, 18 Jan 2009 16:06:44 +0200 > Kostik Belousov mentioned: >=20 > >=20 > > Please see a discussion on the fs@ and reasoning why I declined to comm= it > > the similar patch. > >=20 >=20 > I'm sorry I've missed that discussion entirely, but I can admit I had all= the > same concerns while reviewing the patch, and Alex's comments and Linux co= de > reading made me fully confident that the modifications are safe and corre= ct. > Let me explain why I think so. >=20 > The extra size added in inodes are used to store additional info like ext= ended > attributes, ACLs and so on. Each inode now has a field just after the leg= acy > inode format struct that shows hom much additional space has been added to > this particular inode. By analyzing this field the operating system can i= nterpret > additional data located in inode, if it understand its format (there migh= t be > application and/or OS specific data too). >=20 > Our implementation just ignore this additional fields after sizeof(ext2fs= _inode), > both while reading and writing. Thus we don't interet this data yet we do= n't > overwrite it. =20 Then, it is ok if you did read the code and became assured that ignoring the additional inode data is safe. In any case, consider yourself an appointed ext2fs maintainer onward. --PhxIMoEr374zxJm2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAklzQWgACgkQC3+MBN1Mb4hvgwCeLfZnxjThRBzNLf5IPCOu8AFH HQUAnR4R3/wHWRa4G3KKmwWLFzjCfKxb =lPTr -----END PGP SIGNATURE----- --PhxIMoEr374zxJm2-- From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 14:49:30 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22A401065725 for ; Sun, 18 Jan 2009 14:49:29 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from mx0.deglitch.com (backbone.deglitch.com [78.110.53.255]) by mx1.freebsd.org (Postfix) with ESMTP id D99E58FC29 for ; Sun, 18 Jan 2009 14:49:28 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from DSPAM-Daemon (localhost [127.0.0.1]) by mx0.deglitch.com (Postfix) with SMTP id AF3D58FC4F for ; Sun, 18 Jan 2009 17:44:01 +0300 (MSK) Received: from orion.SpringDaemons.com (drsun1.dialup.corbina.ru [85.21.245.235]) by mx0.deglitch.com (Postfix) with ESMTPA id D93FD8FC18; Sun, 18 Jan 2009 17:43:59 +0300 (MSK) Received: from orion (localhost [127.0.0.1]) by orion.SpringDaemons.com (Postfix) with SMTP id CBF4A398F3; Sun, 18 Jan 2009 17:44:02 +0300 (MSK) Date: Sun, 18 Jan 2009 17:43:57 +0300 From: Stanislav Sedov To: Kostik Belousov Message-Id: <20090118174357.3ed1459d.stas@FreeBSD.org> In-Reply-To: <20090118140644.GT48057@deviant.kiev.zoral.com.ua> References: <200901181404.n0IE4uXw075698@svn.freebsd.org> <20090118140644.GT48057@deviant.kiev.zoral.com.ua> Organization: The FreeBSD Project X-XMPP: ssedov@jabber.ru X-Voice: +7 916 849 20 23 X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-DSPAM-Result: Whitelisted X-DSPAM-Processed: Sun Jan 18 17:44:01 2009 X-DSPAM-Confidence: 0.9899 X-DSPAM-Improbability: 1 in 9809 chance of being spam X-DSPAM-Probability: 0.0000 X-DSPAM-Signature: 49734031967003085517798 Cc: Stanislav Sedov , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187395 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 14:49:30 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sun, 18 Jan 2009 16:06:44 +0200 Kostik Belousov mentioned: > > Please see a discussion on the fs@ and reasoning why I declined to commit > the similar patch. > I'm sorry I've missed that discussion entirely, but I can admit I had all the same concerns while reviewing the patch, and Alex's comments and Linux code reading made me fully confident that the modifications are safe and correct. Let me explain why I think so. The extra size added in inodes are used to store additional info like extended attributes, ACLs and so on. Each inode now has a field just after the legacy inode format struct that shows hom much additional space has been added to this particular inode. By analyzing this field the operating system can interpret additional data located in inode, if it understand its format (there might be application and/or OS specific data too). Our implementation just ignore this additional fields after sizeof(ext2fs_inode), both while reading and writing. Thus we don't interet this data yet we don't overwrite it. - -- Stanislav Sedov ST4096-RIPE -----BEGIN PGP SIGNATURE----- iEYEARECAAYFAklzQDIACgkQK/VZk+smlYE6TQCcCe7yDdJYU2cxYwiosHjYmK6s NT8An0+9Jom3CgHFhVy4PrvztjNXgpT9 =Cxan -----END PGP SIGNATURE----- !DSPAM:49734031967003085517798! From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 14:54:46 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55CD21065675; Sun, 18 Jan 2009 14:54:46 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 435508FC14; Sun, 18 Jan 2009 14:54:46 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IEskWO077046; Sun, 18 Jan 2009 14:54:46 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IEskw4077045; Sun, 18 Jan 2009 14:54:46 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181454.n0IEskw4077045@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 14:54:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187396 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 14:54:46 -0000 Author: stas Date: Sun Jan 18 14:54:46 2009 New Revision: 187396 URL: http://svn.freebsd.org/changeset/base/187396 Log: - Whitespace fixes. - s_bmask field doesn't exist. - Use correct flags in debug printf. Modified: head/sys/gnu/fs/ext2fs/ext2_vfsops.c Modified: head/sys/gnu/fs/ext2fs/ext2_vfsops.c ============================================================================== --- head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:04:56 2009 (r187395) +++ head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:54:46 2009 (r187396) @@ -5,7 +5,7 @@ * University of Utah, Department of Computer Science */ /*- - * Copyright (c) 1989, 1991, 1993, 1994 + * Copyright (c) 1989, 1991, 1993, 1994 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -120,7 +120,7 @@ static int compute_sb_data(struct vnode static const char *ext2_opts[] = { "from", "export", "acls", "noexec", "noatime", "union", "suiddir", "multilabel", "nosymfollow", "noclusterr", "noclusterw", "force", NULL }; - + /* * VFS Operations. * @@ -318,7 +318,7 @@ static int ext2_check_descriptors (struc { /* examine next descriptor block */ if ((i % EXT2_DESC_PER_BLOCK(sb)) == 0) - gdp = (struct ext2_group_desc *) + gdp = (struct ext2_group_desc *) sb->s_group_desc[desc_block++]->b_data; if (gdp->bg_block_bitmap < block || gdp->bg_block_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb)) @@ -398,19 +398,19 @@ static int compute_sb_data(devvp, es, fs int logic_sb_block = 1; /* XXX for now */ #if 1 -#define V(v) +#define V(v) #else #define V(v) printf(#v"= %d\n", fs->v); #endif - fs->s_blocksize = EXT2_MIN_BLOCK_SIZE << es->s_log_block_size; + fs->s_blocksize = EXT2_MIN_BLOCK_SIZE << es->s_log_block_size; V(s_blocksize) fs->s_bshift = EXT2_MIN_BLOCK_LOG_SIZE + es->s_log_block_size; V(s_bshift) fs->s_fsbtodb = es->s_log_block_size + 1; V(s_fsbtodb) fs->s_qbmask = fs->s_blocksize - 1; - V(s_bmask) + V(s_qbmask) fs->s_blocksize_bits = EXT2_BLOCK_SIZE_BITS(es); V(s_blocksize_bits) fs->s_frag_size = EXT2_MIN_FRAG_SIZE << es->s_log_frag_size; @@ -449,14 +449,14 @@ static int compute_sb_data(devvp, es, fs M_EXT2MNT, M_WAITOK); /* adjust logic_sb_block */ - if(fs->s_blocksize > SBSIZE) + if(fs->s_blocksize > SBSIZE) /* Godmar thinks: if the blocksize is greater than 1024, then - the superblock is logically part of block zero. + the superblock is logically part of block zero. */ logic_sb_block = 0; - + for (i = 0; i < db_count; i++) { - error = bread(devvp , fsbtodb(fs, logic_sb_block + i + 1), + error = bread(devvp , fsbtodb(fs, logic_sb_block + i + 1), fs->s_blocksize, NOCRED, &fs->s_group_desc[i]); if(error) { for (j = 0; j < i; j++) @@ -667,9 +667,9 @@ ext2_mountfs(devvp, mp) we dynamically allocate both an ext2_sb_info and an ext2_super_block while Linux keeps the super block in a locked buffer */ - ump->um_e2fs = bsd_malloc(sizeof(struct ext2_sb_info), + ump->um_e2fs = bsd_malloc(sizeof(struct ext2_sb_info), M_EXT2MNT, M_WAITOK); - ump->um_e2fs->s_es = bsd_malloc(sizeof(struct ext2_super_block), + ump->um_e2fs->s_es = bsd_malloc(sizeof(struct ext2_super_block), M_EXT2MNT, M_WAITOK); bcopy(es, ump->um_e2fs->s_es, (u_int)sizeof(struct ext2_super_block)); if ((error = compute_sb_data(devvp, ump->um_e2fs->s_es, ump->um_e2fs))) @@ -682,7 +682,7 @@ ext2_mountfs(devvp, mp) bp = NULL; fs = ump->um_e2fs; fs->s_rd_only = ronly; /* ronly is set according to mnt_flags */ - /* if the fs is not mounted read-only, make sure the super block is + /* if the fs is not mounted read-only, make sure the super block is always written back on a sync() */ fs->s_wasvalid = fs->s_es->s_state & EXT2_VALID_FS ? 1 : 0; @@ -708,7 +708,7 @@ ext2_mountfs(devvp, mp) ump->um_nindir = EXT2_ADDR_PER_BLOCK(fs); ump->um_bptrtodb = fs->s_es->s_log_block_size + 1; ump->um_seqinc = EXT2_FRAGS_PER_BLOCK(fs); - if (ronly == 0) + if (ronly == 0) ext2_sbupdate(ump, MNT_WAIT); return (0); out: @@ -761,7 +761,7 @@ ext2_unmount(mp, mntflags, td) } /* release buffers containing group descriptors */ - for(i = 0; i < fs->s_db_per_group; i++) + for(i = 0; i < fs->s_db_per_group; i++) ULCK_BUF(fs->s_group_desc[i]) bsd_free(fs->s_group_desc, M_EXT2MNT); @@ -838,19 +838,19 @@ ext2_statfs(mp, sbp, td) nsb++; } else nsb = fs->s_groups_count; - overhead = es->s_first_data_block + + overhead = es->s_first_data_block + /* Superblocks and block group descriptors: */ nsb * (1 + fs->s_db_per_group) + /* Inode bitmap, block bitmap, and inode table: */ fs->s_groups_count * (1 + 1 + fs->s_itb_per_group); - sbp->f_bsize = EXT2_FRAG_SIZE(fs); + sbp->f_bsize = EXT2_FRAG_SIZE(fs); sbp->f_iosize = EXT2_BLOCK_SIZE(fs); sbp->f_blocks = es->s_blocks_count - overhead; - sbp->f_bfree = es->s_free_blocks_count; - sbp->f_bavail = sbp->f_bfree - es->s_r_blocks_count; - sbp->f_files = es->s_inodes_count; - sbp->f_ffree = es->s_free_inodes_count; + sbp->f_bfree = es->s_free_blocks_count; + sbp->f_bavail = sbp->f_bfree - es->s_r_blocks_count; + sbp->f_files = es->s_inodes_count; + sbp->f_ffree = es->s_free_inodes_count; return (0); } @@ -1000,7 +1000,7 @@ ext2_vget(mp, ino, flags, vpp) /* Read in the disk contents for the inode, copy into the inode. */ #if 0 -printf("ext2_vget(%d) dbn= %d ", ino, fsbtodb(fs, ino_to_fsba(fs, ino))); +printf("ext2_vget(%d) dbn= %lu ", ino, fsbtodb(fs, ino_to_fsba(fs, ino))); #endif if ((error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)), (int)fs->s_blocksize, NOCRED, &bp)) != 0) { @@ -1024,7 +1024,7 @@ printf("ext2_vget(%d) dbn= %d ", ino, fs ip->i_prealloc_count = 0; ip->i_prealloc_block = 0; /* now we want to make sure that block pointers for unused - blocks are zeroed out - ext2_balloc depends on this + blocks are zeroed out - ext2_balloc depends on this although for regular files and directories only */ if(S_ISDIR(ip->i_mode) || S_ISREG(ip->i_mode)) { From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 15:10:47 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26EA21065676; Sun, 18 Jan 2009 15:10:47 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 14E8A8FC1D; Sun, 18 Jan 2009 15:10:47 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IFAkrr077404; Sun, 18 Jan 2009 15:10:46 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IFAkbt077403; Sun, 18 Jan 2009 15:10:46 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181510.n0IFAkbt077403@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 15:10:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187397 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 15:10:48 -0000 Author: stas Date: Sun Jan 18 15:10:46 2009 New Revision: 187397 URL: http://svn.freebsd.org/changeset/base/187397 Log: - Eliminate warnings in debug print macros by explicitly converting all field to unsigned long. Modified: head/sys/gnu/fs/ext2fs/ext2_vfsops.c Modified: head/sys/gnu/fs/ext2fs/ext2_vfsops.c ============================================================================== --- head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:54:46 2009 (r187396) +++ head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 15:10:46 2009 (r187397) @@ -400,7 +400,7 @@ static int compute_sb_data(devvp, es, fs #if 1 #define V(v) #else -#define V(v) printf(#v"= %d\n", fs->v); +#define V(v) printf(#v"= %lu\n", (unsigned long)fs->v); #endif fs->s_blocksize = EXT2_MIN_BLOCK_SIZE << es->s_log_block_size; From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 16:42:59 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B03CD106567F; Sun, 18 Jan 2009 16:42:59 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from mail-gw2.york.ac.uk (mail-gw2.york.ac.uk [144.32.128.247]) by mx1.freebsd.org (Postfix) with ESMTP id 41C458FC1A; Sun, 18 Jan 2009 16:42:58 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from mail-gw7.york.ac.uk (mail-gw7.york.ac.uk [144.32.129.30]) by mail-gw2.york.ac.uk (8.13.6/8.13.6) with ESMTP id n0IGgqgN017236; Sun, 18 Jan 2009 16:42:52 GMT Received: from ury.york.ac.uk ([144.32.108.81]) by mail-gw7.york.ac.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1LOajc-0000UE-Jr; Sun, 18 Jan 2009 16:42:52 +0000 Received: from ury.york.ac.uk (localhost.york.ac.uk [127.0.0.1]) by ury.york.ac.uk (8.14.3/8.14.3) with ESMTP id n0IGgqWZ009990; Sun, 18 Jan 2009 16:42:52 GMT (envelope-from gavin@FreeBSD.org) Received: from localhost (gavin@localhost) by ury.york.ac.uk (8.14.3/8.14.3/Submit) with ESMTP id n0IGgq9P009987; Sun, 18 Jan 2009 16:42:52 GMT (envelope-from gavin@FreeBSD.org) X-Authentication-Warning: ury.york.ac.uk: gavin owned process doing -bs Date: Sun, 18 Jan 2009 16:42:52 +0000 (GMT) From: Gavin Atkinson X-X-Sender: gavin@ury.york.ac.uk To: Stanislav Sedov In-Reply-To: <200901181228.n0ICSjnT073457@svn.freebsd.org> Message-ID: <20090118163938.G24894@ury.york.ac.uk> References: <200901181228.n0ICSjnT073457@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-York-MailScanner: Found to be clean X-York-MailScanner-From: gavin@freebsd.org Cc: svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, svn-src-stable-7@FreeBSD.org Subject: Re: svn commit: r187391 - in stable/7/sys: . arm/at91 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 16:43:00 -0000 On Sun, 18 Jan 2009, Stanislav Sedov wrote: > Author: stas > Date: Sun Jan 18 12:28:45 2009 > New Revision: 187391 > URL: http://svn.freebsd.org/changeset/base/187391 > > Log: > - Merge r182477: [snip] > Use random MAC address if none configured instead of failing. Connected with this, I wonder if you could also merge r182524 and r182555? These changes fix up the merged comments, and make the random MAC address a locally assigned one, and not simply stolen from the range that Atmel own. Thanks, Gavin From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 17:07:48 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B19ED106568B; Sun, 18 Jan 2009 17:07:48 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9E3ED8FC14; Sun, 18 Jan 2009 17:07:48 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IH7mU2080978; Sun, 18 Jan 2009 17:07:48 GMT (envelope-from stas@svn.freebsd.org) Received: (from stas@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IH7mHB080977; Sun, 18 Jan 2009 17:07:48 GMT (envelope-from stas@svn.freebsd.org) Message-Id: <200901181707.n0IH7mHB080977@svn.freebsd.org> From: Stanislav Sedov Date: Sun, 18 Jan 2009 17:07:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187398 - in stable/7/sys: . arm/at91 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 17:07:49 -0000 Author: stas Date: Sun Jan 18 17:07:48 2009 New Revision: 187398 URL: http://svn.freebsd.org/changeset/base/187398 Log: - MFC r182524 and r182555: - Set U/L bit in generate MAC address. - Use our specific OUI instead of Atmel one. Modified: stable/7/sys/ (props changed) stable/7/sys/arm/at91/if_ate.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/arm/at91/if_ate.c ============================================================================== --- stable/7/sys/arm/at91/if_ate.c Sun Jan 18 15:10:46 2009 (r187397) +++ stable/7/sys/arm/at91/if_ate.c Sun Jan 18 17:07:48 2009 (r187398) @@ -193,19 +193,21 @@ ate_attach(device_t dev) if ((err = ate_get_mac(sc, eaddr)) != 0) { /* - * No MAC address configured. Generate the fake one. + * No MAC address configured. Generate the random one. */ if (bootverbose) device_printf(dev, - "Generating fake ethernet address.\n"); + "Generating random ethernet address.\n"); rnd = arc4random(); /* - * Set OUI to Atmel. + * Set OUI to convenient locally assigned address. 'b' + * is 0x62, which has the locally assigned bit set, and + * the broadcast/multicast bit clear. */ - eaddr[0] = 0x00; - eaddr[1] = 0x04; - eaddr[2] = 0x25; + eaddr[0] = 'b'; + eaddr[1] = 's'; + eaddr[2] = 'd'; eaddr[3] = (rnd >> 16) & 0xff; eaddr[4] = (rnd >> 8) & 0xff; eaddr[5] = rnd & 0xff; From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 17:14:11 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B8F11065692 for ; Sun, 18 Jan 2009 17:14:11 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from mx0.deglitch.com (backbone.deglitch.com [78.110.53.255]) by mx1.freebsd.org (Postfix) with ESMTP id 3762B8FC0A for ; Sun, 18 Jan 2009 17:14:11 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from DSPAM-Daemon (localhost [127.0.0.1]) by mx0.deglitch.com (Postfix) with SMTP id 02B158FC4F for ; Sun, 18 Jan 2009 20:08:45 +0300 (MSK) Received: from orion.SpringDaemons.com (drsun1.dialup.corbina.ru [85.21.245.235]) by mx0.deglitch.com (Postfix) with ESMTPA id 3B2148FC18; Sun, 18 Jan 2009 20:08:44 +0300 (MSK) Received: from orion (localhost [127.0.0.1]) by orion.SpringDaemons.com (Postfix) with SMTP id E2AB3398F3; Sun, 18 Jan 2009 20:08:45 +0300 (MSK) Date: Sun, 18 Jan 2009 20:08:41 +0300 From: Stanislav Sedov To: Gavin Atkinson Message-Id: <20090118200841.3c9123bc.stas@FreeBSD.org> In-Reply-To: <20090118163938.G24894@ury.york.ac.uk> References: <200901181228.n0ICSjnT073457@svn.freebsd.org> <20090118163938.G24894@ury.york.ac.uk> Organization: The FreeBSD Project X-XMPP: ssedov@jabber.ru X-Voice: +7 916 849 20 23 X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-DSPAM-Result: Innocent X-DSPAM-Processed: Sun Jan 18 20:08:45 2009 X-DSPAM-Confidence: 1.0000 X-DSPAM-Improbability: 1 in 98689409 chance of being spam X-DSPAM-Probability: 0.0023 X-DSPAM-Signature: 4973621d967005591655106 Cc: svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, svn-src-stable-7@FreeBSD.org Subject: Re: svn commit: r187391 - in stable/7/sys: . arm/at91 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 17:14:11 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sun, 18 Jan 2009 16:42:52 +0000 (GMT) Gavin Atkinson mentioned: > On Sun, 18 Jan 2009, Stanislav Sedov wrote: > > > Author: stas > > Date: Sun Jan 18 12:28:45 2009 > > New Revision: 187391 > > URL: http://svn.freebsd.org/changeset/base/187391 > > > > Log: > > - Merge r182477: > [snip] > > Use random MAC address if none configured instead of failing. > > Connected with this, I wonder if you could also merge r182524 and r182555? > These changes fix up the merged comments, and make the random MAC address > a locally assigned one, and not simply stolen from the range that Atmel > own. > Thanks for notice! I've forgot about them. - -- Stanislav Sedov ST4096-RIPE -----BEGIN PGP SIGNATURE----- iEYEARECAAYFAklzYh0ACgkQK/VZk+smlYHLvwCfY3bRBFZYZbL4L/BHgVxpXsqb MOwAniE6wkKaK7sf5l5Di7fnzNfakZIB =+SVo -----END PGP SIGNATURE----- !DSPAM:4973621d967005591655106! From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 17:42:55 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 124B5106566B; Sun, 18 Jan 2009 17:42:55 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id C59C18FC13; Sun, 18 Jan 2009 17:42:54 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0IHfLs7048688; Sun, 18 Jan 2009 10:41:21 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sun, 18 Jan 2009 10:41:53 -0700 (MST) Message-Id: <20090118.104153.1631915192.imp@bsdimp.com> To: gavin@freebsd.org From: "M. Warner Losh" In-Reply-To: <20090118163938.G24894@ury.york.ac.uk> References: <200901181228.n0ICSjnT073457@svn.freebsd.org> <20090118163938.G24894@ury.york.ac.uk> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: stas@freebsd.org, svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-7@freebsd.org Subject: Re: svn commit: r187391 - in stable/7/sys: . arm/at91 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 17:42:55 -0000 In message: <20090118163938.G24894@ury.york.ac.uk> Gavin Atkinson writes: : On Sun, 18 Jan 2009, Stanislav Sedov wrote: : : > Author: stas : > Date: Sun Jan 18 12:28:45 2009 : > New Revision: 187391 : > URL: http://svn.freebsd.org/changeset/base/187391 : > : > Log: : > - Merge r182477: : [snip] : > Use random MAC address if none configured instead of failing. : : Connected with this, I wonder if you could also merge r182524 and r182555? : These changes fix up the merged comments, and make the random MAC address : a locally assigned one, and not simply stolen from the range that Atmel : own. In general, all the at91 changes from head should be safe to merge to releng_7. Warner From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 18:26:52 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBA1A10656C2; Sun, 18 Jan 2009 18:26:52 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A941E8FC17; Sun, 18 Jan 2009 18:26:52 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IIQqXJ082848; Sun, 18 Jan 2009 18:26:52 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IIQqed082847; Sun, 18 Jan 2009 18:26:52 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901181826.n0IIQqed082847@svn.freebsd.org> From: Alan Cox Date: Sun, 18 Jan 2009 18:26:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187400 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 18:26:53 -0000 Author: alc Date: Sun Jan 18 18:26:52 2009 New Revision: 187400 URL: http://svn.freebsd.org/changeset/base/187400 Log: MFC rev 179887 Enforce the mapping of kernel loadable modules in the uppermost 2GB of the kernel virtual address space on amd64. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/kern/link_elf_obj.c Modified: stable/7/sys/kern/link_elf_obj.c ============================================================================== --- stable/7/sys/kern/link_elf_obj.c Sun Jan 18 17:54:03 2009 (r187399) +++ stable/7/sys/kern/link_elf_obj.c Sun Jan 18 18:26:52 2009 (r187400) @@ -667,6 +667,13 @@ link_elf_load_file(linker_class_t cls, c goto out; } ef->address = (caddr_t) vm_map_min(kernel_map); + + /* + * In order to satisfy amd64's architectural requirements on the + * location of code and data in the kernel's address space, request a + * mapping that is above the kernel. + */ + mapbase = KERNBASE; error = vm_map_find(kernel_map, ef->object, 0, &mapbase, round_page(mapsize), TRUE, VM_PROT_ALL, VM_PROT_ALL, FALSE); if (error) { From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 18:50:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D48CB1065678; Sun, 18 Jan 2009 18:50:18 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C34DF8FC1B; Sun, 18 Jan 2009 18:50:18 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IIoIFu083425; Sun, 18 Jan 2009 18:50:18 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IIoIIV083424; Sun, 18 Jan 2009 18:50:18 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200901181850.n0IIoIIV083424@svn.freebsd.org> From: Nick Hibma Date: Sun, 18 Jan 2009 18:50:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187401 - stable/7/sys/dev/ata X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 18:50:19 -0000 Author: n_hibma Date: Sun Jan 18 18:50:18 2009 New Revision: 187401 URL: http://svn.freebsd.org/changeset/base/187401 Log: Speling mistake. Modified: stable/7/sys/dev/ata/ata-all.c Modified: stable/7/sys/dev/ata/ata-all.c ============================================================================== --- stable/7/sys/dev/ata/ata-all.c Sun Jan 18 18:26:52 2009 (r187400) +++ stable/7/sys/dev/ata/ata-all.c Sun Jan 18 18:50:18 2009 (r187401) @@ -127,7 +127,7 @@ ata_attach(device_t dev) /* reset the controller HW, the channel and device(s) */ while (ATA_LOCKING(dev, ATA_LF_LOCK) != ch->unit) - pause("ataatch", 1); + pause("attach", 1); ATA_RESET(dev); ATA_LOCKING(dev, ATA_LF_UNLOCK); From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 18:53:27 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7073A1065672; Sun, 18 Jan 2009 18:53:27 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5E3988FC1B; Sun, 18 Jan 2009 18:53:27 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IIrRsc083516; Sun, 18 Jan 2009 18:53:27 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IIrRiQ083515; Sun, 18 Jan 2009 18:53:27 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200901181853.n0IIrRiQ083515@svn.freebsd.org> From: Nick Hibma Date: Sun, 18 Jan 2009 18:53:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187402 - stable/7/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 18:53:28 -0000 Author: n_hibma Date: Sun Jan 18 18:53:27 2009 New Revision: 187402 URL: http://svn.freebsd.org/changeset/base/187402 Log: Speling mistake. Modified: stable/7/share/man/man4/textdump.4 Modified: stable/7/share/man/man4/textdump.4 ============================================================================== --- stable/7/share/man/man4/textdump.4 Sun Jan 18 18:50:18 2009 (r187401) +++ stable/7/share/man/man4/textdump.4 Sun Jan 18 18:53:27 2009 (r187402) @@ -93,7 +93,7 @@ sysctl. .It Pa version.txt Kernel version string. My be disabled by clearing the -.Dv dbeug.ddb.textdump.do_panic +.Dv debug.ddb.textdump.do_panic sysctl. .El .Pp From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 18:54:41 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9BFB1065670; Sun, 18 Jan 2009 18:54:41 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 984D48FC1F; Sun, 18 Jan 2009 18:54:41 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IIsf3D083580; Sun, 18 Jan 2009 18:54:41 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IIsfgD083579; Sun, 18 Jan 2009 18:54:41 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200901181854.n0IIsfgD083579@svn.freebsd.org> From: Nick Hibma Date: Sun, 18 Jan 2009 18:54:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187403 - stable/7/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 18:54:42 -0000 Author: n_hibma Date: Sun Jan 18 18:54:41 2009 New Revision: 187403 URL: http://svn.freebsd.org/changeset/base/187403 Log: Remark on the fact that a phone is supported by this driver. Just to give people a hint. Modified: stable/7/share/man/man4/umodem.4 Modified: stable/7/share/man/man4/umodem.4 ============================================================================== --- stable/7/share/man/man4/umodem.4 Sun Jan 18 18:53:27 2009 (r187402) +++ stable/7/share/man/man4/umodem.4 Sun Jan 18 18:54:41 2009 (r187403) @@ -96,6 +96,8 @@ Sierra MC5720 Wireless Modem Yamaha Broadband Wireless Router RTW65b .It ELSA MicroLink 56k USB modem +.It +Sony Ericsson W810i phone .El .Sh SEE ALSO .Xr tty 4 , From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 19:20:10 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6B0A1065676; Sun, 18 Jan 2009 19:20:10 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A4DA98FC1F; Sun, 18 Jan 2009 19:20:10 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IJKA2W084159; Sun, 18 Jan 2009 19:20:10 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IJKA6Z084158; Sun, 18 Jan 2009 19:20:10 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901181920.n0IJKA6Z084158@svn.freebsd.org> From: Alan Cox Date: Sun, 18 Jan 2009 19:20:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187404 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb vm X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 19:20:11 -0000 Author: alc Date: Sun Jan 18 19:20:10 2009 New Revision: 187404 URL: http://svn.freebsd.org/changeset/base/187404 Log: MFC rev 179921 KERNBASE is not necessarily an address within the kernel map, e.g., PowerPC/AIM. Consequently, it should not be used to determine the maximum number of kernel map entries. Instead, use VM_MIN_KERNEL_ADDRESS, which marks the start of the kernel map on all architectures. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/vm/vm_map.c Modified: stable/7/sys/vm/vm_map.c ============================================================================== --- stable/7/sys/vm/vm_map.c Sun Jan 18 18:54:41 2009 (r187403) +++ stable/7/sys/vm/vm_map.c Sun Jan 18 19:20:10 2009 (r187404) @@ -294,7 +294,7 @@ void vm_init2(void) { uma_zone_set_obj(kmapentzone, &kmapentobj, lmin(cnt.v_page_count, - (VM_MAX_KERNEL_ADDRESS - KERNBASE) / PAGE_SIZE) / 8 + + (VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS) / PAGE_SIZE) / 8 + maxproc * 2 + maxfiles); vmspace_zone = uma_zcreate("VMSPACE", sizeof(struct vmspace), NULL, #ifdef INVARIANTS From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 19:25:36 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EC1A106564A; Sun, 18 Jan 2009 19:25:36 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7CEA48FC19; Sun, 18 Jan 2009 19:25:36 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IJPaYQ084313; Sun, 18 Jan 2009 19:25:36 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IJPaC5084310; Sun, 18 Jan 2009 19:25:36 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <200901181925.n0IJPaC5084310@svn.freebsd.org> From: Alexander Motin Date: Sun, 18 Jan 2009 19:25:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187405 - head/sys/netgraph X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 19:25:37 -0000 Author: mav Date: Sun Jan 18 19:25:36 2009 New Revision: 187405 URL: http://svn.freebsd.org/changeset/base/187405 Log: Use m_unshare()+m_copyback() instead of m_freem()+m_devget() to keep original mbuf chain headers. It can be less efficient in some cases, but it looks better then mess of copying headers into the nonempty chain. Modified: head/sys/netgraph/ng_deflate.c head/sys/netgraph/ng_mppc.c head/sys/netgraph/ng_pred1.c Modified: head/sys/netgraph/ng_deflate.c ============================================================================== --- head/sys/netgraph/ng_deflate.c Sun Jan 18 19:20:10 2009 (r187404) +++ head/sys/netgraph/ng_deflate.c Sun Jan 18 19:25:36 2009 (r187405) @@ -459,6 +459,13 @@ ng_deflate_compress(node_p node, struct return (ENOMEM); } + /* We must own the mbuf chain exclusively to modify it. */ + m = m_unshare(m, M_DONTWAIT); + if (m == NULL) { + priv->stats.Errors++; + return (ENOMEM); + } + /* Work with contiguous regions of memory. */ m_copydata(m, 0, inlen, (caddr_t)priv->inbuf); outlen = DEFLATE_BUF_SIZE; @@ -497,19 +504,19 @@ ng_deflate_compress(node_p node, struct priv->stats.FramesUncomp++; priv->stats.OutOctets+=inlen; } else { - NG_FREE_M(m); - /* Install header. */ ((u_int16_t *)priv->outbuf)[0] = htons(PROT_COMPD); ((u_int16_t *)priv->outbuf)[1] = htons(priv->seqnum); /* Return packet in an mbuf. */ - *resultp = m_devget((caddr_t)priv->outbuf, outlen, 0, NULL, - NULL); - if (*resultp == NULL) { + m_copyback(m, 0, outlen, (caddr_t)priv->outbuf); + if (m->m_pkthdr.len < outlen) { + m_freem(m); priv->stats.Errors++; return (ENOMEM); - }; + } else if (outlen < m->m_pkthdr.len) + m_adj(m, outlen - m->m_pkthdr.len); + *resultp = m; priv->stats.FramesComp++; priv->stats.OutOctets+=outlen; } @@ -546,6 +553,13 @@ ng_deflate_decompress(node_p node, struc return (ENOMEM); } + /* We must own the mbuf chain exclusively to modify it. */ + m = m_unshare(m, M_DONTWAIT); + if (m == NULL) { + priv->stats.Errors++; + return (ENOMEM); + } + /* Work with contiguous regions of memory. */ m_copydata(m, 0, inlen, (caddr_t)priv->inbuf); @@ -610,25 +624,24 @@ ng_deflate_decompress(node_p node, struc /* Calculate resulting size. */ outlen -= priv->cx.avail_out; - NG_FREE_M(m); - /* Decompress protocol. */ if ((priv->outbuf[1] & 0x01) != 0) { priv->outbuf[0] = 0; /* Return packet in an mbuf. */ - *resultp = m_devget((caddr_t)priv->outbuf, outlen, 0, - NULL, NULL); + m_copyback(m, 0, outlen, (caddr_t)priv->outbuf); } else { outlen--; /* Return packet in an mbuf. */ - *resultp = m_devget((caddr_t)(priv->outbuf + 1), - outlen, 0, NULL, NULL); + m_copyback(m, 0, outlen, (caddr_t)(priv->outbuf + 1)); } - if (*resultp == NULL) { + if (m->m_pkthdr.len < outlen) { + m_freem(m); priv->stats.Errors++; priv->seqnum = 0; return (ENOMEM); - }; + } else if (outlen < m->m_pkthdr.len) + m_adj(m, outlen - m->m_pkthdr.len); + *resultp = m; priv->stats.FramesPlain++; priv->stats.OutOctets+=outlen; Modified: head/sys/netgraph/ng_mppc.c ============================================================================== --- head/sys/netgraph/ng_mppc.c Sun Jan 18 19:20:10 2009 (r187404) +++ head/sys/netgraph/ng_mppc.c Sun Jan 18 19:25:36 2009 (r187405) @@ -470,6 +470,11 @@ ng_mppc_compress(node_p node, struct mbu u_int16_t header; struct mbuf *m = *datap; + /* We must own the mbuf chain exclusively to modify it. */ + m = m_unshare(m, M_DONTWAIT); + if (m == NULL) + return (ENOMEM); + /* Initialize */ header = d->cc; @@ -529,8 +534,12 @@ err1: header |= MPPC_FLAG_RESTART; /* Replace m by the compresed one. */ - m_freem(m); - m = m_devget((caddr_t)outbuf, outlen, 0, NULL, NULL); + m_copyback(m, 0, outlen, (caddr_t)outbuf); + if (m->m_pkthdr.len < outlen) { + m_freem(m); + m = NULL; + } else if (outlen < m->m_pkthdr.len) + m_adj(m, outlen - m->m_pkthdr.len); } d->flushed = (rtn & MPPC_EXPANDED) != 0 || (flags & MPPC_SAVE_HISTORY) == 0; @@ -538,7 +547,7 @@ err1: free(inbuf, M_NETGRAPH_MPPC); free(outbuf, M_NETGRAPH_MPPC); - /* Check m_devget() result. */ + /* Check mbuf chain reload result. */ if (m == NULL) { if (!d->flushed) { MPPC_InitCompressionHistory(d->history); @@ -557,18 +566,6 @@ err1: /* Set header bits */ header |= MPPC_FLAG_ENCRYPTED; - /* We must own the mbuf chain exclusively to modify it. */ - m = m_unshare(m, M_DONTWAIT); - if (m == NULL) { - if (!d->flushed) { -#ifdef NETGRAPH_MPPC_COMPRESSION - MPPC_InitCompressionHistory(d->history); -#endif - d->flushed = 1; - } - return (ENOMEM); - } - /* Update key if it's time */ if ((d->cfg.bits & MPPE_STATELESS) != 0 || (d->cc & MPPE_UPDATE_MASK) == MPPE_UPDATE_FLAG) { @@ -615,6 +612,11 @@ ng_mppc_decompress(node_p node, struct m u_int numLost; struct mbuf *m = *datap; + /* We must own the mbuf chain exclusively to modify it. */ + m = m_unshare(m, M_DONTWAIT); + if (m == NULL) + return (ENOMEM); + /* Pull off header */ if (m->m_pkthdr.len < MPPC_HDRLEN) { m_freem(m); @@ -694,11 +696,6 @@ ng_mppc_decompress(node_p node, struct m d->cfg.startkey, d->key, &d->rc4); } - /* We must own the mbuf chain exclusively to modify it. */ - m = m_unshare(m, M_DONTWAIT); - if (m == NULL) - return (ENOMEM); - /* Decrypt packet */ m1 = m; while (m1 != NULL) { @@ -786,8 +783,12 @@ failed: free(buf, M_NETGRAPH_MPPC); len = decomplen - destCnt; - m_freem(m); - m = m_devget((caddr_t)decompbuf, len, 0, NULL, NULL); + m_copyback(m, 0, len, (caddr_t)decompbuf); + if (m->m_pkthdr.len < len) { + m_freem(m); + m = NULL; + } else if (len < m->m_pkthdr.len) + m_adj(m, len - m->m_pkthdr.len); free(decompbuf, M_NETGRAPH_MPPC); } #endif Modified: head/sys/netgraph/ng_pred1.c ============================================================================== --- head/sys/netgraph/ng_pred1.c Sun Jan 18 19:20:10 2009 (r187404) +++ head/sys/netgraph/ng_pred1.c Sun Jan 18 19:25:36 2009 (r187405) @@ -400,11 +400,16 @@ ng_pred1_compress(node_p node, struct mb return (ENOMEM); } + /* We must own the mbuf chain exclusively to modify it. */ + m = m_unshare(m, M_DONTWAIT); + if (m == NULL) { + priv->stats.Errors++; + return (ENOMEM); + } + /* Work with contiguous regions of memory. */ m_copydata(m, 0, inlen, (caddr_t)(priv->inbuf + 2)); - NG_FREE_M(m); - lenn = htons(inlen & 0x7FFF); /* Compute FCS. */ @@ -437,12 +442,14 @@ ng_pred1_compress(node_p node, struct mb outlen += 2; /* Return packet in an mbuf. */ - *resultp = m_devget((caddr_t)out, outlen, 0, NULL, NULL); - if (*resultp == NULL) { - priv->stats.Errors++; - return (ENOMEM); - }; - + m_copyback(m, 0, outlen, (caddr_t)out); + if (m->m_pkthdr.len < outlen) { + m_freem(m); + priv->stats.Errors++; + return (ENOMEM); + } else if (outlen < m->m_pkthdr.len) + m_adj(m, outlen - m->m_pkthdr.len); + *resultp = m; priv->stats.OutOctets += outlen; return (0); @@ -471,6 +478,13 @@ ng_pred1_decompress(node_p node, struct return (ENOMEM); } + /* We must own the mbuf chain exclusively to modify it. */ + m = m_unshare(m, M_DONTWAIT); + if (m == NULL) { + priv->stats.Errors++; + return (ENOMEM); + } + /* Work with contiguous regions of memory. */ m_copydata(m, 0, inlen, (caddr_t)priv->inbuf); @@ -485,13 +499,12 @@ ng_pred1_decompress(node_p node, struct /* Is data compressed or not really? */ if (cf) { - NG_FREE_M(m); - priv->stats.FramesComp++; len1 = Pred1Decompress(node, priv->inbuf + 2, priv->outbuf, inlen - 4, PRED1_BUF_SIZE); if (len != len1) { /* Error is detected. Send reset request */ + m_freem(m); priv->stats.Errors++; log(LOG_NOTICE, "ng_pred1: Comp length error (%d) " "--> len (%d)\n", len, len1); @@ -510,17 +523,21 @@ ng_pred1_decompress(node_p node, struct fcs = Crc16(fcs, priv->inbuf + inlen - 2, 2); if (fcs != PPP_GOODFCS) { + m_freem(m); priv->stats.Errors++; log(LOG_NOTICE, "ng_pred1: Pred1: Bad CRC-16\n"); return (EIO); } /* Return packet in an mbuf. */ - *resultp = m_devget((caddr_t)priv->outbuf, len, 0, NULL, NULL); - if (*resultp == NULL) { + m_copyback(m, 0, len, (caddr_t)priv->outbuf); + if (m->m_pkthdr.len < len) { + m_freem(m); priv->stats.Errors++; return (ENOMEM); - }; + } else if (len < m->m_pkthdr.len) + m_adj(m, len - m->m_pkthdr.len); + *resultp = m; } else { priv->stats.FramesUncomp++; From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 19:33:55 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C182D1065674; Sun, 18 Jan 2009 19:33:55 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AFE328FC25; Sun, 18 Jan 2009 19:33:55 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IJXtS2084548; Sun, 18 Jan 2009 19:33:55 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IJXthp084547; Sun, 18 Jan 2009 19:33:55 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901181933.n0IJXthp084547@svn.freebsd.org> From: Alan Cox Date: Sun, 18 Jan 2009 19:33:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187406 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb vm X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 19:33:56 -0000 Author: alc Date: Sun Jan 18 19:33:55 2009 New Revision: 187406 URL: http://svn.freebsd.org/changeset/base/187406 Log: MFC rev 179923 Make preparations for increasing the size of the kernel virtual address space on the amd64 architecture. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/vm/vm_kern.c Modified: stable/7/sys/vm/vm_kern.c ============================================================================== --- stable/7/sys/vm/vm_kern.c Sun Jan 18 19:25:36 2009 (r187405) +++ stable/7/sys/vm/vm_kern.c Sun Jan 18 19:33:55 2009 (r187406) @@ -502,8 +502,12 @@ kmem_init(start, end) /* N.B.: cannot use kgdb to debug, starting with this assignment ... */ kernel_map = m; (void) vm_map_insert(m, NULL, (vm_ooffset_t) 0, - VM_MIN_KERNEL_ADDRESS, start, VM_PROT_ALL, VM_PROT_ALL, - MAP_NOFAULT); +#ifdef __amd64__ + KERNBASE, +#else + VM_MIN_KERNEL_ADDRESS, +#endif + start, VM_PROT_ALL, VM_PROT_ALL, MAP_NOFAULT); /* ... and ending with the completion of the above `insert' */ vm_map_unlock(m); } From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 19:37:37 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 548141065680; Sun, 18 Jan 2009 19:37:37 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3E2C78FC1C; Sun, 18 Jan 2009 19:37:37 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IJbbVD084666; Sun, 18 Jan 2009 19:37:37 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IJbbYL084665; Sun, 18 Jan 2009 19:37:37 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901181937.n0IJbbYL084665@svn.freebsd.org> From: Alan Cox Date: Sun, 18 Jan 2009 19:37:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187407 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb vm X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 19:37:39 -0000 Author: alc Date: Sun Jan 18 19:37:36 2009 New Revision: 187407 URL: http://svn.freebsd.org/changeset/base/187407 Log: MFC rev 180598 Eliminate stale comments from kmem_malloc(). Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/vm/vm_kern.c Modified: stable/7/sys/vm/vm_kern.c ============================================================================== --- stable/7/sys/vm/vm_kern.c Sun Jan 18 19:33:55 2009 (r187406) +++ stable/7/sys/vm/vm_kern.c Sun Jan 18 19:37:36 2009 (r187407) @@ -267,9 +267,6 @@ kmem_suballoc(parent, min, max, size) * We don't worry about expanding the map (adding entries) since entries * for wired maps are statically allocated. * - * NOTE: This routine is not supposed to block if M_NOWAIT is set, but - * I have not verified that it actually does not block. - * * `map' is ONLY allowed to be kmem_map or one of the mbuf submaps to * which we never free. */ @@ -321,15 +318,6 @@ kmem_malloc(map, size, flags) vm_map_insert(map, kmem_object, offset, addr, addr + size, VM_PROT_ALL, VM_PROT_ALL, 0); - /* - * Note: if M_NOWAIT specified alone, allocate from - * interrupt-safe queues only (just the free list). If - * M_USE_RESERVE is also specified, we can also - * allocate from the cache. Neither of the latter two - * flags may be specified from an interrupt since interrupts - * are not allowed to mess with the cache queue. - */ - if ((flags & (M_NOWAIT|M_USE_RESERVE)) == M_NOWAIT) pflags = VM_ALLOC_INTERRUPT | VM_ALLOC_WIRED; else From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 19:56:13 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A38341065672; Sun, 18 Jan 2009 19:56:13 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 91B1A8FC16; Sun, 18 Jan 2009 19:56:13 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IJuDkO085143; Sun, 18 Jan 2009 19:56:13 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IJuDWF085142; Sun, 18 Jan 2009 19:56:13 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901181956.n0IJuDWF085142@svn.freebsd.org> From: Alan Cox Date: Sun, 18 Jan 2009 19:56:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187408 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 19:56:14 -0000 Author: alc Date: Sun Jan 18 19:56:13 2009 New Revision: 187408 URL: http://svn.freebsd.org/changeset/base/187408 Log: MFC rev 179898 Make preparations for increasing the size of the kernel virtual address space on the amd64 architecture. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/minidump_machdep.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/amd64/amd64/minidump_machdep.c ============================================================================== --- stable/7/sys/amd64/amd64/minidump_machdep.c Sun Jan 18 19:37:36 2009 (r187407) +++ stable/7/sys/amd64/amd64/minidump_machdep.c Sun Jan 18 19:56:13 2009 (r187408) @@ -202,7 +202,7 @@ minidumpsys(struct dumperinfo *di) /* Walk page table pages, set bits in vm_page_dump */ ptesize = 0; pdp = (uint64_t *)PHYS_TO_DMAP(KPDPphys); - for (va = KERNBASE; va < kernel_vm_end; va += NBPDR) { + for (va = VM_MIN_KERNEL_ADDRESS; va < kernel_vm_end; va += NBPDR) { i = (va >> PDPSHIFT) & ((1ul << NPDPEPGSHIFT) - 1); /* * We always write a page, even if it is zero. Each @@ -274,7 +274,7 @@ minidumpsys(struct dumperinfo *di) mdhdr.msgbufsize = msgbufp->msg_size; mdhdr.bitmapsize = vm_page_dump_size; mdhdr.ptesize = ptesize; - mdhdr.kernbase = KERNBASE; + mdhdr.kernbase = VM_MIN_KERNEL_ADDRESS; mdhdr.dmapbase = DMAP_MIN_ADDRESS; mdhdr.dmapend = DMAP_MAX_ADDRESS; @@ -308,7 +308,7 @@ minidumpsys(struct dumperinfo *di) /* Dump kernel page table pages */ pdp = (uint64_t *)PHYS_TO_DMAP(KPDPphys); - for (va = KERNBASE; va < kernel_vm_end; va += NBPDR) { + for (va = VM_MIN_KERNEL_ADDRESS; va < kernel_vm_end; va += NBPDR) { i = (va >> PDPSHIFT) & ((1ul << NPDPEPGSHIFT) - 1); /* We always write a page, even if it is zero */ if ((pdp[i] & PG_V) == 0) { From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 20:19:55 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C7DE10656F4; Sun, 18 Jan 2009 20:19:55 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8BFD68FC1E; Sun, 18 Jan 2009 20:19:55 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IKJt8W086223; Sun, 18 Jan 2009 20:19:55 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IKJtIQ086222; Sun, 18 Jan 2009 20:19:55 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <200901182019.n0IKJtIQ086222@svn.freebsd.org> From: Alexander Motin Date: Sun, 18 Jan 2009 20:19:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187409 - head/sys/kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 20:19:56 -0000 Author: mav Date: Sun Jan 18 20:19:55 2009 New Revision: 187409 URL: http://svn.freebsd.org/changeset/base/187409 Log: Teach m_copyback() to use trailing space of the last mbuf in chain. Modified: head/sys/kern/uipc_mbuf.c Modified: head/sys/kern/uipc_mbuf.c ============================================================================== --- head/sys/kern/uipc_mbuf.c Sun Jan 18 19:56:13 2009 (r187408) +++ head/sys/kern/uipc_mbuf.c Sun Jan 18 20:19:55 2009 (r187409) @@ -1271,6 +1271,10 @@ m_copyback(struct mbuf *m0, int off, int m = m->m_next; } while (len > 0) { + if (m->m_next == NULL && (len > m->m_len - off)) { + m->m_len += min(len - (m->m_len - off), + M_TRAILINGSPACE(m)); + } mlen = min (m->m_len - off, len); bcopy(cp, off + mtod(m, caddr_t), (u_int)mlen); cp += mlen; From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 21:09:34 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE44C1065674; Sun, 18 Jan 2009 21:09:34 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AC7B38FC12; Sun, 18 Jan 2009 21:09:34 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0IL9YYg087256; Sun, 18 Jan 2009 21:09:34 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0IL9YHY087255; Sun, 18 Jan 2009 21:09:34 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <200901182109.n0IL9YHY087255@svn.freebsd.org> From: Alexander Motin Date: Sun, 18 Jan 2009 21:09:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187410 - head/sys/netgraph X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 21:09:36 -0000 Author: mav Date: Sun Jan 18 21:09:34 2009 New Revision: 187410 URL: http://svn.freebsd.org/changeset/base/187410 Log: If source mbuf chain consists of only one mbuf, use it directly as source buffer to avoid extra copying. Modified: head/sys/netgraph/ng_mppc.c Modified: head/sys/netgraph/ng_mppc.c ============================================================================== --- head/sys/netgraph/ng_mppc.c Sun Jan 18 20:19:55 2009 (r187409) +++ head/sys/netgraph/ng_mppc.c Sun Jan 18 21:09:34 2009 (r187410) @@ -489,22 +489,29 @@ ng_mppc_compress(node_p node, struct mbu if ((d->cfg.bits & MPPC_BIT) != 0) { u_short flags = MPPC_MANDATORY_COMPRESS_FLAGS; u_char *inbuf, *outbuf; - int outlen, inlen; + int outlen, inlen, ina; u_char *source, *dest; u_long sourceCnt, destCnt; int rtn; /* Work with contiguous regions of memory. */ inlen = m->m_pkthdr.len; - inbuf = malloc(inlen, M_NETGRAPH_MPPC, M_NOWAIT); - if (inbuf == NULL) - goto err1; - m_copydata(m, 0, inlen, (caddr_t)inbuf); + if (m->m_next == NULL) { + inbuf = mtod(m, u_char *); + ina = 0; + } else { + inbuf = malloc(inlen, M_NETGRAPH_MPPC, M_NOWAIT); + if (inbuf == NULL) + goto err1; + m_copydata(m, 0, inlen, (caddr_t)inbuf); + ina = 1; + } outlen = MPPC_MAX_BLOWUP(inlen); outbuf = malloc(outlen, M_NETGRAPH_MPPC, M_NOWAIT); if (outbuf == NULL) { - free(inbuf, M_NETGRAPH_MPPC); + if (ina) + free(inbuf, M_NETGRAPH_MPPC); err1: m_freem(m); MPPC_InitCompressionHistory(d->history); @@ -544,7 +551,8 @@ err1: d->flushed = (rtn & MPPC_EXPANDED) != 0 || (flags & MPPC_SAVE_HISTORY) == 0; - free(inbuf, M_NETGRAPH_MPPC); + if (ina) + free(inbuf, M_NETGRAPH_MPPC); free(outbuf, M_NETGRAPH_MPPC); /* Check mbuf chain reload result. */ @@ -731,36 +739,43 @@ failed: /* Decompress packet */ if ((header & MPPC_FLAG_COMPRESSED) != 0) { int flags = MPPC_MANDATORY_DECOMPRESS_FLAGS; - u_char *decompbuf, *source, *dest; + u_char *inbuf, *outbuf; + int inlen, outlen, ina; + u_char *source, *dest; u_long sourceCnt, destCnt; - int decomplen, rtn; - u_char *buf; - int len; + int rtn; /* Copy payload into a contiguous region of memory. */ - len = m->m_pkthdr.len; - buf = malloc(len, M_NETGRAPH_MPPC, M_NOWAIT); - if (buf == NULL) { - m_freem(m); - return (ENOMEM); + inlen = m->m_pkthdr.len; + if (m->m_next == NULL) { + inbuf = mtod(m, u_char *); + ina = 0; + } else { + inbuf = malloc(inlen, M_NETGRAPH_MPPC, M_NOWAIT); + if (inbuf == NULL) { + m_freem(m); + return (ENOMEM); + } + m_copydata(m, 0, inlen, (caddr_t)inbuf); + ina = 1; } - m_copydata(m, 0, len, (caddr_t)buf); /* Allocate a buffer for decompressed data */ - decompbuf = malloc(MPPC_DECOMP_BUFSIZE + MPPC_DECOMP_SAFETY, + outbuf = malloc(MPPC_DECOMP_BUFSIZE + MPPC_DECOMP_SAFETY, M_NETGRAPH_MPPC, M_NOWAIT); - if (decompbuf == NULL) { + if (outbuf == NULL) { m_freem(m); - free(buf, M_NETGRAPH_MPPC); + if (ina) + free(inbuf, M_NETGRAPH_MPPC); return (ENOMEM); } - decomplen = MPPC_DECOMP_BUFSIZE; + outlen = MPPC_DECOMP_BUFSIZE; /* Prepare to decompress */ - source = buf; - sourceCnt = len; - dest = decompbuf; - destCnt = decomplen; + source = inbuf; + sourceCnt = inlen; + dest = outbuf; + destCnt = outlen; if ((header & MPPC_FLAG_RESTART) != 0) flags |= MPPC_RESTART_HISTORY; @@ -774,22 +789,24 @@ failed: || (rtn & MPPC_DECOMP_OK) != MPPC_DECOMP_OK) { log(LOG_ERR, "%s: decomp returned 0x%x", __func__, rtn); - free(buf, M_NETGRAPH_MPPC); - free(decompbuf, M_NETGRAPH_MPPC); + if (ina) + free(inbuf, M_NETGRAPH_MPPC); + free(outbuf, M_NETGRAPH_MPPC); goto failed; } /* Replace compressed data with decompressed data */ - free(buf, M_NETGRAPH_MPPC); - len = decomplen - destCnt; + if (ina) + free(inbuf, M_NETGRAPH_MPPC); + outlen -= destCnt; - m_copyback(m, 0, len, (caddr_t)decompbuf); - if (m->m_pkthdr.len < len) { + m_copyback(m, 0, outlen, (caddr_t)outbuf); + if (m->m_pkthdr.len < outlen) { m_freem(m); m = NULL; - } else if (len < m->m_pkthdr.len) - m_adj(m, len - m->m_pkthdr.len); - free(decompbuf, M_NETGRAPH_MPPC); + } else if (outlen < m->m_pkthdr.len) + m_adj(m, outlen - m->m_pkthdr.len); + free(outbuf, M_NETGRAPH_MPPC); } #endif From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 21:40:17 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D580410656F5; Sun, 18 Jan 2009 21:40:15 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C42AB8FC17; Sun, 18 Jan 2009 21:40:15 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ILeF1w088006; Sun, 18 Jan 2009 21:40:15 GMT (envelope-from danger@svn.freebsd.org) Received: (from danger@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ILeFr4088005; Sun, 18 Jan 2009 21:40:15 GMT (envelope-from danger@svn.freebsd.org) Message-Id: <200901182140.n0ILeFr4088005@svn.freebsd.org> From: Daniel Gerzo Date: Sun, 18 Jan 2009 21:40:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187411 - in stable/7/lib/libc: . string sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 21:40:19 -0000 Author: danger (doc committer) Date: Sun Jan 18 21:40:15 2009 New Revision: 187411 URL: http://svn.freebsd.org/changeset/base/187411 Log: MFC r187098: - add missing include [2] - fix struct memeber's name [1] PR: docs/130413 [1] Submitted by: Thomas Mueller [1], rink@ [2] Modified: stable/7/lib/libc/ (props changed) stable/7/lib/libc/string/ffsll.c (props changed) stable/7/lib/libc/string/flsll.c (props changed) stable/7/lib/libc/sys/timer_create.2 Modified: stable/7/lib/libc/sys/timer_create.2 ============================================================================== --- stable/7/lib/libc/sys/timer_create.2 Sun Jan 18 21:09:34 2009 (r187410) +++ stable/7/lib/libc/sys/timer_create.2 Sun Jan 18 21:40:15 2009 (r187411) @@ -27,7 +27,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 11, 2000 +.Dd January 12, 2009 .Dt TIMER_CREATE 2 .Os .Sh NAME @@ -37,6 +37,7 @@ .Lb librt .Sh SYNOPSIS .In time.h +.In signal.h .Ft int .Fo timer_create .Fa "clockid_t clockid" "struct sigevent *restrict evp" @@ -100,7 +101,7 @@ or .Dv CLOCK_MONOTONIC . .Pp If -.Fa evp->sigev_sigev_notify +.Fa evp->sigev_notify is .Dv SIGEV_THREAD and From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 21:52:02 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA1F81065675; Sun, 18 Jan 2009 21:52:02 +0000 (UTC) (envelope-from lulf@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A811F8FC1D; Sun, 18 Jan 2009 21:52:02 +0000 (UTC) (envelope-from lulf@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ILq27H088299; Sun, 18 Jan 2009 21:52:02 GMT (envelope-from lulf@svn.freebsd.org) Received: (from lulf@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ILq2B8088298; Sun, 18 Jan 2009 21:52:02 GMT (envelope-from lulf@svn.freebsd.org) Message-Id: <200901182152.n0ILq2B8088298@svn.freebsd.org> From: Ulf Lilleengen Date: Sun, 18 Jan 2009 21:52:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187412 - in stable/7/sys: . contrib/pf dev/cxgb geom/vinum X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 21:52:03 -0000 Author: lulf Date: Sun Jan 18 21:52:01 2009 New Revision: 187412 URL: http://svn.freebsd.org/changeset/base/187412 Log: MFC r186517: - Fix an issue with access permissions to underlying disks used by a gvinum plex. If the plex is a raid5 plex, and is being written to, parity data might have to be read from the underlying disks, requiring them to be opened for reading as well as writing. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/geom/vinum/geom_vinum_plex.c Modified: stable/7/sys/geom/vinum/geom_vinum_plex.c ============================================================================== --- stable/7/sys/geom/vinum/geom_vinum_plex.c Sun Jan 18 21:40:15 2009 (r187411) +++ stable/7/sys/geom/vinum/geom_vinum_plex.c Sun Jan 18 21:52:01 2009 (r187412) @@ -667,11 +667,21 @@ gv_plex_normal_request(struct gv_plex *p static int gv_plex_access(struct g_provider *pp, int dr, int dw, int de) { + struct gv_plex *p; struct g_geom *gp; struct g_consumer *cp, *cp2; int error; gp = pp->geom; + p = gp->softc; + KASSERT(p != NULL, ("NULL p")); + + if (p->org == GV_PLEX_RAID5) { + if (dw > 0 && dr == 0) + dr = 1; + else if (dw < 0 && dr == 0) + dr = -1; + } LIST_FOREACH(cp, &gp->consumer, consumer) { error = g_access(cp, dr, dw, de); From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 23:21:04 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 922371065670; Sun, 18 Jan 2009 23:21:04 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 822978FC12; Sun, 18 Jan 2009 23:21:04 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0INL4VM091018; Sun, 18 Jan 2009 23:21:04 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0INL4BI091017; Sun, 18 Jan 2009 23:21:04 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200901182321.n0INL4BI091017@svn.freebsd.org> From: Andrew Thompson Date: Sun, 18 Jan 2009 23:21:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187413 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 23:21:05 -0000 Author: thompsa Date: Sun Jan 18 23:21:04 2009 New Revision: 187413 URL: http://svn.freebsd.org/changeset/base/187413 Log: Also strip the machine arch from SRCDIR in case it is a cross build so svnversion works. Modified: head/sys/conf/newvers.sh Modified: head/sys/conf/newvers.sh ============================================================================== --- head/sys/conf/newvers.sh Sun Jan 18 21:52:01 2009 (r187412) +++ head/sys/conf/newvers.sh Sun Jan 18 23:21:04 2009 (r187413) @@ -91,6 +91,7 @@ for dir in /bin /usr/bin /usr/local/bin; if [ -x "${dir}/svnversion" ]; then svnversion=${dir}/svnversion SRCDIR=${d##*obj} + SRCDIR=${SRCDIR##/$MACHINE} SRCDIR=${SRCDIR%%/sys/*} break fi From owner-svn-src-all@FreeBSD.ORG Sun Jan 18 23:34:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A2211065672; Sun, 18 Jan 2009 23:34:18 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3EF178FC1A; Sun, 18 Jan 2009 23:34:18 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0INYInP091316; Sun, 18 Jan 2009 23:34:18 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0INYIFD091315; Sun, 18 Jan 2009 23:34:18 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901182334.n0INYIFD091315@svn.freebsd.org> From: Alan Cox Date: Sun, 18 Jan 2009 23:34:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187414 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 23:34:19 -0000 Author: alc Date: Sun Jan 18 23:34:17 2009 New Revision: 187414 URL: http://svn.freebsd.org/changeset/base/187414 Log: MFC rev 180362 Make preparations for increasing the size of the kernel virtual address space on the amd64 architecture: Rev 180333, ``Change create_pagetables() and pmap_init() so that many fewer page table pages have to be preallocated ...'', violates an assumption made by minidumpsys(): kernel_vm_end is the highest virtual address that has ever been used by the kernel. Now, however, the kernel code, data, and bss may reside at addresses beyond kernel_vm_end. This revision modifies the upper bound on minidumpsys()'s two page table traversals to account for this possibility. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/minidump_machdep.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/amd64/amd64/minidump_machdep.c ============================================================================== --- stable/7/sys/amd64/amd64/minidump_machdep.c Sun Jan 18 23:21:04 2009 (r187413) +++ stable/7/sys/amd64/amd64/minidump_machdep.c Sun Jan 18 23:34:17 2009 (r187414) @@ -202,7 +202,8 @@ minidumpsys(struct dumperinfo *di) /* Walk page table pages, set bits in vm_page_dump */ ptesize = 0; pdp = (uint64_t *)PHYS_TO_DMAP(KPDPphys); - for (va = VM_MIN_KERNEL_ADDRESS; va < kernel_vm_end; va += NBPDR) { + for (va = VM_MIN_KERNEL_ADDRESS; va < MAX(KERNBASE + NKPT * NBPDR, + kernel_vm_end); va += NBPDR) { i = (va >> PDPSHIFT) & ((1ul << NPDPEPGSHIFT) - 1); /* * We always write a page, even if it is zero. Each @@ -308,7 +309,8 @@ minidumpsys(struct dumperinfo *di) /* Dump kernel page table pages */ pdp = (uint64_t *)PHYS_TO_DMAP(KPDPphys); - for (va = VM_MIN_KERNEL_ADDRESS; va < kernel_vm_end; va += NBPDR) { + for (va = VM_MIN_KERNEL_ADDRESS; va < MAX(KERNBASE + NKPT * NBPDR, + kernel_vm_end); va += NBPDR) { i = (va >> PDPSHIFT) & ((1ul << NPDPEPGSHIFT) - 1); /* We always write a page, even if it is zero */ if ((pdp[i] & PG_V) == 0) { From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 01:03:43 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 387AC106564A; Mon, 19 Jan 2009 01:03:43 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 27A5E8FC19; Mon, 19 Jan 2009 01:03:43 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J13hPo093465; Mon, 19 Jan 2009 01:03:43 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J13gKp093463; Mon, 19 Jan 2009 01:03:42 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901190103.n0J13gKp093463@svn.freebsd.org> From: Alan Cox Date: Mon, 19 Jan 2009 01:03:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187416 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 01:03:43 -0000 Author: alc Date: Mon Jan 19 01:03:42 2009 New Revision: 187416 URL: http://svn.freebsd.org/changeset/base/187416 Log: MFC rev 180262 Correct an error in the comments for init_param3(). Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/kern/kern_malloc.c stable/7/sys/kern/subr_param.c Modified: stable/7/sys/kern/kern_malloc.c ============================================================================== --- stable/7/sys/kern/kern_malloc.c Sun Jan 18 23:49:02 2009 (r187415) +++ stable/7/sys/kern/kern_malloc.c Mon Jan 19 01:03:42 2009 (r187416) @@ -618,7 +618,7 @@ kmeminit(void *dummy) vm_kmem_size = 2 * cnt.v_page_count * PAGE_SIZE; /* - * Tune settings based on the kernel map's size at this time. + * Tune settings based on the kmem map's size at this time. */ init_param3(vm_kmem_size / PAGE_SIZE); Modified: stable/7/sys/kern/subr_param.c ============================================================================== --- stable/7/sys/kern/subr_param.c Sun Jan 18 23:49:02 2009 (r187415) +++ stable/7/sys/kern/subr_param.c Mon Jan 19 01:03:42 2009 (r187416) @@ -172,14 +172,14 @@ init_param2(long physpages) } /* - * Boot time overrides that are scaled against the kernel map + * Boot time overrides that are scaled against the kmem map */ void init_param3(long kmempages) { /* - * The default for maxpipekva is max(5% of the kernel map, 512KB). + * The default for maxpipekva is max(5% of the kmem map, 512KB). * See sys_pipe.c for more details. */ maxpipekva = (kmempages / 20) * PAGE_SIZE; From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 02:31:28 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C72D1065675; Mon, 19 Jan 2009 02:31:28 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3BA0E8FC17; Mon, 19 Jan 2009 02:31:28 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J2VSha095242; Mon, 19 Jan 2009 02:31:28 GMT (envelope-from yongari@svn.freebsd.org) Received: (from yongari@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J2VSbo095240; Mon, 19 Jan 2009 02:31:28 GMT (envelope-from yongari@svn.freebsd.org) Message-Id: <200901190231.n0J2VSbo095240@svn.freebsd.org> From: Pyun YongHyeon Date: Mon, 19 Jan 2009 02:31:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187417 - in head/sys: dev/re pci X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 02:31:28 -0000 Author: yongari Date: Mon Jan 19 02:31:27 2009 New Revision: 187417 URL: http://svn.freebsd.org/changeset/base/187417 Log: Sometimes RTL8168B seems to take long time to access GMII registers in device attach phase. Double GMII register access timeout value to fix the issue. Reported by: wkoszek Tested by: wkoszek Modified: head/sys/dev/re/if_re.c head/sys/pci/if_rlreg.h Modified: head/sys/dev/re/if_re.c ============================================================================== --- head/sys/dev/re/if_re.c Mon Jan 19 01:03:42 2009 (r187416) +++ head/sys/dev/re/if_re.c Mon Jan 19 02:31:27 2009 (r187417) @@ -418,14 +418,14 @@ re_gmii_readreg(device_t dev, int phy, i CSR_WRITE_4(sc, RL_PHYAR, reg << 16); - for (i = 0; i < RL_TIMEOUT; i++) { + for (i = 0; i < RL_PHY_TIMEOUT; i++) { rval = CSR_READ_4(sc, RL_PHYAR); if (rval & RL_PHYAR_BUSY) break; DELAY(100); } - if (i == RL_TIMEOUT) { + if (i == RL_PHY_TIMEOUT) { device_printf(sc->rl_dev, "PHY read failed\n"); return (0); } @@ -445,14 +445,14 @@ re_gmii_writereg(device_t dev, int phy, CSR_WRITE_4(sc, RL_PHYAR, (reg << 16) | (data & RL_PHYAR_PHYDATA) | RL_PHYAR_BUSY); - for (i = 0; i < RL_TIMEOUT; i++) { + for (i = 0; i < RL_PHY_TIMEOUT; i++) { rval = CSR_READ_4(sc, RL_PHYAR); if (!(rval & RL_PHYAR_BUSY)) break; DELAY(100); } - if (i == RL_TIMEOUT) { + if (i == RL_PHY_TIMEOUT) { device_printf(sc->rl_dev, "PHY write failed\n"); return (0); } Modified: head/sys/pci/if_rlreg.h ============================================================================== --- head/sys/pci/if_rlreg.h Mon Jan 19 01:03:42 2009 (r187416) +++ head/sys/pci/if_rlreg.h Mon Jan 19 02:31:27 2009 (r187417) @@ -937,6 +937,7 @@ struct rl_softc { CSR_WRITE_4(sc, offset, CSR_READ_4(sc, offset) & ~(val)) #define RL_TIMEOUT 1000 +#define RL_PHY_TIMEOUT 2000 /* * General constants that are fun to know. From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 04:31:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF55A1065672; Mon, 19 Jan 2009 04:31:18 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BCBBF8FC1B; Mon, 19 Jan 2009 04:31:18 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J4VIxr097814; Mon, 19 Jan 2009 04:31:18 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J4VIoP097812; Mon, 19 Jan 2009 04:31:18 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901190431.n0J4VIoP097812@svn.freebsd.org> From: Alan Cox Date: Mon, 19 Jan 2009 04:31:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187419 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb i386/i386 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 04:31:19 -0000 Author: alc Date: Mon Jan 19 04:31:18 2009 New Revision: 187419 URL: http://svn.freebsd.org/changeset/base/187419 Log: MFC rev 180255 Eliminate an unused declaration. (In fact, the declaration is bogus because the variable is defined static to pmap.c.) Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/mp_machdep.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/i386/mp_machdep.c Modified: stable/7/sys/amd64/amd64/mp_machdep.c ============================================================================== --- stable/7/sys/amd64/amd64/mp_machdep.c Mon Jan 19 02:37:10 2009 (r187418) +++ stable/7/sys/amd64/amd64/mp_machdep.c Mon Jan 19 04:31:18 2009 (r187419) @@ -79,7 +79,6 @@ int mcount_lock; int mp_naps; /* # of Applications processors */ int boot_cpu_id = -1; /* designated BSP */ -extern int nkpt; extern struct pcpu __pcpu[]; Modified: stable/7/sys/i386/i386/mp_machdep.c ============================================================================== --- stable/7/sys/i386/i386/mp_machdep.c Mon Jan 19 02:37:10 2009 (r187418) +++ stable/7/sys/i386/i386/mp_machdep.c Mon Jan 19 04:31:18 2009 (r187419) @@ -131,7 +131,6 @@ int mcount_lock; int mp_naps; /* # of Applications processors */ int boot_cpu_id = -1; /* designated BSP */ -extern int nkpt; extern struct pcpu __pcpu[]; From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 05:20:52 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7AF6106566B; Mon, 19 Jan 2009 05:20:52 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D5BAA8FC17; Mon, 19 Jan 2009 05:20:52 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J5Kq4x098767; Mon, 19 Jan 2009 05:20:52 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J5KqTp098763; Mon, 19 Jan 2009 05:20:52 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901190520.n0J5KqTp098763@svn.freebsd.org> From: Alan Cox Date: Mon, 19 Jan 2009 05:20:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187420 - in stable/7/sys/amd64: amd64 include X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 05:20:53 -0000 Author: alc Date: Mon Jan 19 05:20:52 2009 New Revision: 187420 URL: http://svn.freebsd.org/changeset/base/187420 Log: MFC partial merge of rev 179886 Make preparations for increasing the size of the kernel virtual address space on the amd64 architecture. Modified: stable/7/sys/amd64/amd64/mem.c stable/7/sys/amd64/amd64/pmap.c stable/7/sys/amd64/amd64/trap.c stable/7/sys/amd64/include/stack.h Modified: stable/7/sys/amd64/amd64/mem.c ============================================================================== --- stable/7/sys/amd64/amd64/mem.c Mon Jan 19 04:31:18 2009 (r187419) +++ stable/7/sys/amd64/amd64/mem.c Mon Jan 19 05:20:52 2009 (r187420) @@ -119,7 +119,7 @@ kmemphys: addr = trunc_page(v); eaddr = round_page(v + c); - if (addr < (vm_offset_t)KERNBASE) + if (addr < VM_MIN_KERNEL_ADDRESS) return (EFAULT); for (; addr < eaddr; addr += PAGE_SIZE) if (pmap_extract(kernel_pmap, addr) == 0) Modified: stable/7/sys/amd64/amd64/pmap.c ============================================================================== --- stable/7/sys/amd64/amd64/pmap.c Mon Jan 19 04:31:18 2009 (r187419) +++ stable/7/sys/amd64/amd64/pmap.c Mon Jan 19 05:20:52 2009 (r187420) @@ -1493,7 +1493,7 @@ pmap_release(pmap_t pmap) static int kvm_size(SYSCTL_HANDLER_ARGS) { - unsigned long ksize = VM_MAX_KERNEL_ADDRESS - KERNBASE; + unsigned long ksize = VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS; return sysctl_handle_long(oidp, &ksize, 0, req); } @@ -1523,7 +1523,7 @@ pmap_growkernel(vm_offset_t addr) mtx_assert(&kernel_map->system_mtx, MA_OWNED); if (kernel_vm_end == 0) { - kernel_vm_end = KERNBASE; + kernel_vm_end = VM_MIN_KERNEL_ADDRESS; nkpt = 0; while ((*pmap_pde(kernel_pmap, kernel_vm_end) & PG_V) != 0) { kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1); Modified: stable/7/sys/amd64/amd64/trap.c ============================================================================== --- stable/7/sys/amd64/amd64/trap.c Mon Jan 19 04:31:18 2009 (r187419) +++ stable/7/sys/amd64/amd64/trap.c Mon Jan 19 05:20:52 2009 (r187420) @@ -610,7 +610,7 @@ trap_pfault(frame, usermode) vm_offset_t eva = frame->tf_addr; va = trunc_page(eva); - if (va >= KERNBASE) { + if (va >= VM_MIN_KERNEL_ADDRESS) { /* * Don't allow user-mode faults in kernel address space. */ Modified: stable/7/sys/amd64/include/stack.h ============================================================================== --- stable/7/sys/amd64/include/stack.h Mon Jan 19 04:31:18 2009 (r187419) +++ stable/7/sys/amd64/include/stack.h Mon Jan 19 05:20:52 2009 (r187420) @@ -33,7 +33,7 @@ * Stack trace. */ #define INKERNEL(va) (((va) >= DMAP_MIN_ADDRESS && (va) < DMAP_MAX_ADDRESS) \ - || ((va) >= KERNBASE && (va) < VM_MAX_KERNEL_ADDRESS)) + || ((va) >= VM_MIN_KERNEL_ADDRESS && (va) < VM_MAX_KERNEL_ADDRESS)) struct amd64_frame { struct amd64_frame *f_frame; From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 06:19:39 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4141C1065677; Mon, 19 Jan 2009 06:19:39 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 244378FC17; Mon, 19 Jan 2009 06:19:39 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J6Jd0F099943; Mon, 19 Jan 2009 06:19:39 GMT (envelope-from das@svn.freebsd.org) Received: (from das@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J6Jcad099941; Mon, 19 Jan 2009 06:19:38 GMT (envelope-from das@svn.freebsd.org) Message-Id: <200901190619.n0J6Jcad099941@svn.freebsd.org> From: David Schultz Date: Mon, 19 Jan 2009 06:19:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187421 - head/lib/libc/stdio X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 06:19:39 -0000 Author: das Date: Mon Jan 19 06:19:38 2009 New Revision: 187421 URL: http://svn.freebsd.org/changeset/base/187421 Log: Add support for multibyte decimal_point encodings, e.g., U+066B. Modified: head/lib/libc/stdio/vfprintf.c head/lib/libc/stdio/vfwprintf.c Modified: head/lib/libc/stdio/vfprintf.c ============================================================================== --- head/lib/libc/stdio/vfprintf.c Mon Jan 19 05:20:52 2009 (r187420) +++ head/lib/libc/stdio/vfprintf.c Mon Jan 19 06:19:38 2009 (r187421) @@ -251,6 +251,7 @@ __vfprintf(FILE *fp, const char *fmt0, v * F: at least two digits for decimal, at least one digit for hex */ char *decimal_point; /* locale specific decimal point */ + int decpt_len; /* length of decimal_point */ int signflag; /* true if float is negative */ union { /* floating point arguments %[aAeEfFgG] */ double dbl; @@ -389,6 +390,8 @@ __vfprintf(FILE *fp, const char *fmt0, v #ifndef NO_FLOATING_POINT dtoaresult = NULL; decimal_point = localeconv()->decimal_point; + /* The overwhelmingly common case is decpt_len == 1. */ + decpt_len = (decimal_point[1] == '\0' ? 1 : strlen(decimal_point)); #endif /* @@ -672,7 +675,7 @@ fp_common: expsize = exponent(expstr, expt - 1, expchar); size = expsize + prec; if (prec > 1 || flags & ALT) - ++size; + size += decpt_len; } else { /* space for digits before decimal point */ if (expt > 0) @@ -681,7 +684,7 @@ fp_common: size = 1; /* space for decimal pt and following digits */ if (prec || flags & ALT) - size += prec + 1; + size += prec + decpt_len; if (grouping && expt > 0) { /* space for thousands' grouping */ nseps = nrepeats = 0; @@ -920,7 +923,7 @@ number: if ((dprec = prec) >= 0) if (expt <= 0) { PRINT(zeroes, 1); if (prec || flags & ALT) - PRINT(decimal_point, 1); + PRINT(decimal_point,decpt_len); PAD(-expt, zeroes); /* already handled initial 0's */ prec += expt; @@ -945,14 +948,13 @@ number: if ((dprec = prec) >= 0) cp = dtoaend; } if (prec || flags & ALT) - PRINT(decimal_point,1); + PRINT(decimal_point,decpt_len); } PRINTANDPAD(cp, dtoaend, prec, zeroes); } else { /* %[eE] or sufficiently long %[gG] */ if (prec > 1 || flags & ALT) { - buf[0] = *cp++; - buf[1] = *decimal_point; - PRINT(buf, 2); + PRINT(cp++, 1); + PRINT(decimal_point, decpt_len); PRINT(cp, ndig-1); PAD(prec - ndig, zeroes); } else /* XeYYY */ Modified: head/lib/libc/stdio/vfwprintf.c ============================================================================== --- head/lib/libc/stdio/vfwprintf.c Mon Jan 19 05:20:52 2009 (r187420) +++ head/lib/libc/stdio/vfwprintf.c Mon Jan 19 06:19:38 2009 (r187421) @@ -74,6 +74,22 @@ static wchar_t *__mbsconv(char *, int); #define CHAR wchar_t #include "printfcommon.h" +static const mbstate_t initial_mbs; + +static inline wchar_t +get_decpt(void) +{ + mbstate_t mbs; + wchar_t decpt; + int nconv; + + mbs = initial_mbs; + nconv = mbrtowc(&decpt, localeconv()->decimal_point, MB_CUR_MAX, &mbs); + if (nconv == (size_t)-1 || nconv == (size_t)-2) + decpt = '.'; /* failsafe */ + return (decpt); +} + /* * Flush out all the vectors defined by the given uio, * then reset it so that it can be reused. @@ -147,7 +163,6 @@ __sbprintf(FILE *fp, const wchar_t *fmt, static wint_t __xfputwc(wchar_t wc, FILE *fp) { - static const mbstate_t initial; mbstate_t mbs; char buf[MB_LEN_MAX]; struct __suio uio; @@ -157,7 +172,7 @@ __xfputwc(wchar_t wc, FILE *fp) if ((fp->_flags & __SSTR) == 0) return (__fputwc(wc, fp)); - mbs = initial; + mbs = initial_mbs; if ((len = wcrtomb(buf, wc, &mbs)) == (size_t)-1) { fp->_flags |= __SERR; return (WEOF); @@ -179,7 +194,6 @@ __xfputwc(wchar_t wc, FILE *fp) static wchar_t * __mbsconv(char *mbsarg, int prec) { - static const mbstate_t initial; mbstate_t mbs; wchar_t *convbuf, *wcp; const char *p; @@ -199,7 +213,7 @@ __mbsconv(char *mbsarg, int prec) */ p = mbsarg; insize = nchars = 0; - mbs = initial; + mbs = initial_mbs; while (nchars != (size_t)prec) { nconv = mbrlen(p, MB_CUR_MAX, &mbs); if (nconv == 0 || nconv == (size_t)-1 || @@ -226,7 +240,7 @@ __mbsconv(char *mbsarg, int prec) return (NULL); wcp = convbuf; p = mbsarg; - mbs = initial; + mbs = initial_mbs; while (insize != 0) { nconv = mbrtowc(wcp, p, insize, &mbs); if (nconv == 0 || nconv == (size_t)-1 || nconv == (size_t)-2) @@ -305,7 +319,7 @@ __vfwprintf(FILE *fp, const wchar_t *fmt * D: expchar holds this character; '\0' if no exponent, e.g. %f * F: at least two digits for decimal, at least one digit for hex */ - char *decimal_point; /* locale specific decimal point */ + wchar_t decimal_point; /* locale specific decimal point */ int signflag; /* true if float is negative */ union { /* floating point arguments %[aAeEfFgG] */ double dbl; @@ -438,7 +452,7 @@ __vfwprintf(FILE *fp, const wchar_t *fmt io_init(&io, fp); ret = 0; #ifndef NO_FLOATING_POINT - decimal_point = localeconv()->decimal_point; + decimal_point = get_decpt(); #endif /* @@ -965,10 +979,8 @@ number: if ((dprec = prec) >= 0) if (!expchar) { /* %[fF] or sufficiently short %[gG] */ if (expt <= 0) { PRINT(zeroes, 1); - if (prec || flags & ALT) { - buf[0] = *decimal_point; - PRINT(buf, 1); - } + if (prec || flags & ALT) + PRINT(&decimal_point, 1); PAD(-expt, zeroes); /* already handled initial 0's */ prec += expt; @@ -993,16 +1005,14 @@ number: if ((dprec = prec) >= 0) if (cp > convbuf + ndig) cp = convbuf + ndig; } - if (prec || flags & ALT) { - buf[0] = *decimal_point; - PRINT(buf, 1); - } + if (prec || flags & ALT) + PRINT(&decimal_point, 1); } PRINTANDPAD(cp, convbuf + ndig, prec, zeroes); } else { /* %[eE] or sufficiently long %[gG] */ if (prec > 1 || flags & ALT) { buf[0] = *cp++; - buf[1] = *decimal_point; + buf[1] = decimal_point; PRINT(buf, 2); PRINT(cp, ndig-1); PAD(prec - ndig, zeroes); From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 06:19:51 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C71B9106564A; Mon, 19 Jan 2009 06:19:51 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B57A28FC13; Mon, 19 Jan 2009 06:19:51 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J6JpRK099983; Mon, 19 Jan 2009 06:19:51 GMT (envelope-from das@svn.freebsd.org) Received: (from das@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J6JpDQ099981; Mon, 19 Jan 2009 06:19:51 GMT (envelope-from das@svn.freebsd.org) Message-Id: <200901190619.n0J6JpDQ099981@svn.freebsd.org> From: David Schultz Date: Mon, 19 Jan 2009 06:19:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187422 - head/lib/libc/stdio X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 06:19:52 -0000 Author: das Date: Mon Jan 19 06:19:51 2009 New Revision: 187422 URL: http://svn.freebsd.org/changeset/base/187422 Log: - Add support for multibyte decimal_point encodings, e.g., U+066B. A forthcoming gdtoa import is needed to make this fully work. - Improve the way "nan(...)" is parsed. Modified: head/lib/libc/stdio/vfscanf.c head/lib/libc/stdio/vfwscanf.c Modified: head/lib/libc/stdio/vfscanf.c ============================================================================== --- head/lib/libc/stdio/vfscanf.c Mon Jan 19 06:19:38 2009 (r187421) +++ head/lib/libc/stdio/vfscanf.c Mon Jan 19 06:19:51 2009 (r187422) @@ -911,13 +911,13 @@ static int parsefloat(FILE *fp, char *buf, char *end) { char *commit, *p; - int infnanpos = 0; + int infnanpos = 0, decptpos = 0; enum { - S_START, S_GOTSIGN, S_INF, S_NAN, S_MAYBEHEX, - S_DIGITS, S_FRAC, S_EXP, S_EXPDIGITS + S_START, S_GOTSIGN, S_INF, S_NAN, S_DONE, S_MAYBEHEX, + S_DIGITS, S_DECPT, S_FRAC, S_EXP, S_EXPDIGITS } state = S_START; unsigned char c; - char decpt = *localeconv()->decimal_point; + const char *decpt = localeconv()->decimal_point; _Bool gotmantdig = 0, ishex = 0; /* @@ -970,8 +970,6 @@ reswitch: break; case S_NAN: switch (infnanpos) { - case -1: /* XXX kludge to deal with nan(...) */ - goto parsedone; case 0: if (c != 'A' && c != 'a') goto parsedone; @@ -989,13 +987,15 @@ reswitch: default: if (c == ')') { commit = p; - infnanpos = -2; + state = S_DONE; } else if (!isalnum(c) && c != '_') goto parsedone; break; } infnanpos++; break; + case S_DONE: + goto parsedone; case S_MAYBEHEX: state = S_DIGITS; if (c == 'X' || c == 'x') { @@ -1006,16 +1006,34 @@ reswitch: goto reswitch; } case S_DIGITS: - if ((ishex && isxdigit(c)) || isdigit(c)) + if ((ishex && isxdigit(c)) || isdigit(c)) { gotmantdig = 1; - else { + commit = p; + break; + } else { + state = S_DECPT; + goto reswitch; + } + case S_DECPT: + if (c == decpt[decptpos]) { + if (decpt[++decptpos] == '\0') { + /* We read the complete decpt seq. */ + state = S_FRAC; + if (gotmantdig) + commit = p; + } + break; + } else if (!decptpos) { + /* We didn't read any decpt characters. */ state = S_FRAC; - if (c != decpt) - goto reswitch; + goto reswitch; + } else { + /* + * We read part of a multibyte decimal point, + * but the rest is invalid, so bail. + */ + goto parsedone; } - if (gotmantdig) - commit = p; - break; case S_FRAC: if (((c == 'E' || c == 'e') && !ishex) || ((c == 'P' || c == 'p') && ishex)) { Modified: head/lib/libc/stdio/vfwscanf.c ============================================================================== --- head/lib/libc/stdio/vfwscanf.c Mon Jan 19 06:19:38 2009 (r187421) +++ head/lib/libc/stdio/vfwscanf.c Mon Jan 19 06:19:51 2009 (r187422) @@ -103,6 +103,8 @@ static int parsefloat(FILE *, wchar_t *, (cclcompl ? (wmemchr(ccls, (_c), ccle - ccls) == NULL) : \ (wmemchr(ccls, (_c), ccle - ccls) != NULL)) +static const mbstate_t initial_mbs; + /* * MT-safe version. */ @@ -142,7 +144,6 @@ __vfwscanf(FILE * __restrict fp, const w char *mbp; /* multibyte string pointer for %c %s %[ */ size_t nconv; /* number of bytes in mb. conversion */ char mbbuf[MB_LEN_MAX]; /* temporary mb. character buffer */ - static const mbstate_t initial; mbstate_t mbs; /* `basefix' is used to avoid `if' tests in the integer scanner */ @@ -375,7 +376,7 @@ literal: if (!(flags & SUPPRESS)) mbp = va_arg(ap, char *); n = 0; - mbs = initial; + mbs = initial_mbs; while (width != 0 && (wi = __fgetwc(fp)) != WEOF) { if (width >= MB_CUR_MAX && @@ -440,7 +441,7 @@ literal: if (!(flags & SUPPRESS)) mbp = va_arg(ap, char *); n = 0; - mbs = initial; + mbs = initial_mbs; while ((wi = __fgetwc(fp)) != WEOF && width != 0 && INCCL(wi)) { if (width >= MB_CUR_MAX && @@ -501,7 +502,7 @@ literal: } else { if (!(flags & SUPPRESS)) mbp = va_arg(ap, char *); - mbs = initial; + mbs = initial_mbs; while ((wi = __fgetwc(fp)) != WEOF && width != 0 && !iswspace(wi)) { @@ -721,16 +722,23 @@ match_failure: static int parsefloat(FILE *fp, wchar_t *buf, wchar_t *end) { + mbstate_t mbs; + size_t nconv; wchar_t *commit, *p; int infnanpos = 0; enum { - S_START, S_GOTSIGN, S_INF, S_NAN, S_MAYBEHEX, + S_START, S_GOTSIGN, S_INF, S_NAN, S_DONE, S_MAYBEHEX, S_DIGITS, S_FRAC, S_EXP, S_EXPDIGITS } state = S_START; wchar_t c; - wchar_t decpt = (wchar_t)(unsigned char)*localeconv()->decimal_point; + wchar_t decpt; _Bool gotmantdig = 0, ishex = 0; + mbs = initial_mbs; + nconv = mbrtowc(&decpt, localeconv()->decimal_point, MB_CUR_MAX, &mbs); + if (nconv == (size_t)-1 || nconv == (size_t)-2) + decpt = '.'; /* failsafe */ + /* * We set commit = p whenever the string we have read so far * constitutes a valid representation of a floating point @@ -783,8 +791,6 @@ reswitch: break; case S_NAN: switch (infnanpos) { - case -1: /* XXX kludge to deal with nan(...) */ - goto parsedone; case 0: if (c != 'A' && c != 'a') goto parsedone; @@ -802,13 +808,15 @@ reswitch: default: if (c == ')') { commit = p; - infnanpos = -2; + state = S_DONE; } else if (!iswalnum(c) && c != '_') goto parsedone; break; } infnanpos++; break; + case S_DONE: + goto parsedone; case S_MAYBEHEX: state = S_DIGITS; if (c == 'X' || c == 'x') { From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 06:55:29 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4D65106564A; Mon, 19 Jan 2009 06:55:29 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2B0F8FC17; Mon, 19 Jan 2009 06:55:29 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J6tTja000990; Mon, 19 Jan 2009 06:55:29 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J6tTEr000988; Mon, 19 Jan 2009 06:55:29 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901190655.n0J6tTEr000988@svn.freebsd.org> From: Alan Cox Date: Mon, 19 Jan 2009 06:55:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187425 - in stable/7/sys: . amd64/include contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 06:55:30 -0000 Author: alc Date: Mon Jan 19 06:55:29 2009 New Revision: 187425 URL: http://svn.freebsd.org/changeset/base/187425 Log: MFC rev 180101 Strictly speaking, the definition of VM_MAX_KERNEL_ADDRESS is wrong. However, in practice, the error (currently) makes no difference because the computation performed by KVADDR() hides the error. This revision fixes the error. Also, eliminate a (now) unused definition. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/include/pmap.h stable/7/sys/amd64/include/vmparam.h stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/amd64/include/pmap.h ============================================================================== --- stable/7/sys/amd64/include/pmap.h Mon Jan 19 06:42:44 2009 (r187424) +++ stable/7/sys/amd64/include/pmap.h Mon Jan 19 06:55:29 2009 (r187425) @@ -110,7 +110,6 @@ #define NKPML4E 1 /* number of kernel PML4 slots */ #define NKPDPE 1 /* number of kernel PDP slots */ -#define NKPDE (NKPDPE*NPDEPG) /* number of kernel PD slots */ #define NUPML4E (NPML4EPG/2) /* number of userland PML4 pages */ #define NUPDPE (NUPML4E*NPDPEPG)/* number of userland PDP pages */ Modified: stable/7/sys/amd64/include/vmparam.h ============================================================================== --- stable/7/sys/amd64/include/vmparam.h Mon Jan 19 06:42:44 2009 (r187424) +++ stable/7/sys/amd64/include/vmparam.h Mon Jan 19 06:55:29 2009 (r187425) @@ -147,7 +147,7 @@ * 0xffffffff80000000 KERNBASE */ -#define VM_MAX_KERNEL_ADDRESS KVADDR(KPML4I, NPDPEPG-1, NKPDE-1, NPTEPG-1) +#define VM_MAX_KERNEL_ADDRESS KVADDR(KPML4I, NPDPEPG-1, NPDEPG-1, NPTEPG-1) #define VM_MIN_KERNEL_ADDRESS KVADDR(KPML4I, KPDPI, 0, 0) #define DMAP_MIN_ADDRESS KVADDR(DMPML4I, 0, 0, 0) From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 07:10:12 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42E4B106564A; Mon, 19 Jan 2009 07:10:12 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 31B078FC23; Mon, 19 Jan 2009 07:10:12 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J7ACaS001386; Mon, 19 Jan 2009 07:10:12 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J7ACSg001385; Mon, 19 Jan 2009 07:10:12 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901190710.n0J7ACSg001385@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 07:10:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 07:10:13 -0000 Author: sobomax Date: Mon Jan 19 07:10:11 2009 New Revision: 187426 URL: http://svn.freebsd.org/changeset/base/187426 Log: Add asr(4) and stge(4) from i386 GENERIC. Both drivers compile on amd64 and there is no particular reason for them to be i386-only. MFC after: 2 weeks Modified: head/sys/amd64/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC ============================================================================== --- head/sys/amd64/conf/GENERIC Mon Jan 19 06:55:29 2009 (r187425) +++ head/sys/amd64/conf/GENERIC Mon Jan 19 07:10:11 2009 (r187426) @@ -138,6 +138,7 @@ device ses # SCSI Environmental Servic # RAID controllers interfaced to the SCSI subsystem device amr # AMI MegaRAID device arcmsr # Areca SATA II RAID +device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID device ciss # Compaq Smart RAID 5* device dpt # DPT Smartcache III, IV - See NOTES for options device hptmv # Highpoint RocketRAID 182x @@ -230,6 +231,7 @@ device sf # Adaptec AIC-6915 (``Starfi device sis # Silicon Integrated Systems SiS 900/SiS 7016 device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet device ste # Sundance ST201 (D-Link DFE-550TX) +device stge # Sundance/Tamarack TC9021 gigabit Ethernet device tl # Texas Instruments ThunderLAN device tx # SMC EtherPower II (83c170 ``EPIC'') device vge # VIA VT612x gigabit Ethernet From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 07:18:33 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EA7E1065690; Mon, 19 Jan 2009 07:18:33 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F1B308FC12; Mon, 19 Jan 2009 07:18:32 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J7IWh8001591; Mon, 19 Jan 2009 07:18:32 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J7IWeX001590; Mon, 19 Jan 2009 07:18:32 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901190718.n0J7IWeX001590@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 07:18:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187427 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 07:18:33 -0000 Author: sobomax Date: Mon Jan 19 07:18:32 2009 New Revision: 187427 URL: http://svn.freebsd.org/changeset/base/187427 Log: Whitespace-only: reduce diff to the i386 GENERIC. Modified: head/sys/amd64/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC ============================================================================== --- head/sys/amd64/conf/GENERIC Mon Jan 19 07:10:11 2009 (r187426) +++ head/sys/amd64/conf/GENERIC Mon Jan 19 07:18:32 2009 (r187427) @@ -28,7 +28,7 @@ ident GENERIC # through getenv() (or kenv(1) in userland). The format of the file # is 'variable=value', see kenv(1) # -# env "GENERIC.env" +# env "GENERIC.env" makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols @@ -69,8 +69,8 @@ options SYSVSEM # SYSV-style semaphor options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options STOP_NMI # Stop CPUS using NMI instead of IPI +options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) options AUDIT # Security event auditing -options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) #options KDTRACE_FRAME # Ensure frames are compiled in #options KDTRACE_HOOKS # Kernel DTrace hooks @@ -251,8 +251,8 @@ device xe # Xircom pccard Ethernet # Wireless NIC cards device wlan # 802.11 support -options IEEE80211_DEBUG # enable debug msgs -options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's +options IEEE80211_DEBUG # enable debug msgs +options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's device wlan_wep # 802.11 WEP support device wlan_ccmp # 802.11 CCMP support device wlan_tkip # 802.11 TKIP support From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 07:44:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62F1E106564A; Mon, 19 Jan 2009 07:44:18 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 50C738FC08; Mon, 19 Jan 2009 07:44:18 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J7iIBt002175; Mon, 19 Jan 2009 07:44:18 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J7iIwp002174; Mon, 19 Jan 2009 07:44:18 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901190744.n0J7iIwp002174@svn.freebsd.org> From: Alan Cox Date: Mon, 19 Jan 2009 07:44:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187428 - in stable/7/sys: . amd64/include contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 07:44:19 -0000 Author: alc Date: Mon Jan 19 07:44:18 2009 New Revision: 187428 URL: http://svn.freebsd.org/changeset/base/187428 Log: MFC rev 180108 Compute NKPDPE from NKPT. This reduces the number of knobs that must be turned in order to change the size of the kernel virtual address space. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/include/pmap.h stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/amd64/include/pmap.h ============================================================================== --- stable/7/sys/amd64/include/pmap.h Mon Jan 19 07:18:32 2009 (r187427) +++ stable/7/sys/amd64/include/pmap.h Mon Jan 19 07:44:18 2009 (r187428) @@ -109,7 +109,7 @@ #endif #define NKPML4E 1 /* number of kernel PML4 slots */ -#define NKPDPE 1 /* number of kernel PDP slots */ +#define NKPDPE howmany(NKPT, NPDEPG)/* number of kernel PDP slots */ #define NUPML4E (NPML4EPG/2) /* number of userland PML4 pages */ #define NUPDPE (NUPML4E*NPDPEPG)/* number of userland PDP pages */ From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 07:58:29 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B9A401065670; Mon, 19 Jan 2009 07:58:29 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 6D0F58FC24; Mon, 19 Jan 2009 07:58:29 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.local (pooker.samsco.org [168.103.85.57]) by pooker.samsco.org (8.14.2/8.14.2) with ESMTP id n0J7wP47036336; Mon, 19 Jan 2009 00:58:25 -0700 (MST) (envelope-from scottl@samsco.org) Message-ID: <497432A1.9060805@samsco.org> Date: Mon, 19 Jan 2009 00:58:25 -0700 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.13) Gecko/20080313 SeaMonkey/1.1.9 MIME-Version: 1.0 To: Maxim Sobolev References: <200901190710.n0J7ACSg001385@svn.freebsd.org> In-Reply-To: <200901190710.n0J7ACSg001385@svn.freebsd.org> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.4 required=3.8 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 07:58:30 -0000 Maxim Sobolev wrote: > Author: sobomax > Date: Mon Jan 19 07:10:11 2009 > New Revision: 187426 > URL: http://svn.freebsd.org/changeset/base/187426 > > Log: > Add asr(4) and stge(4) from i386 GENERIC. Both drivers compile on amd64 and > there is no particular reason for them to be i386-only. Yes, there is a particular reason why asr is i386 only. This has been discussed extensively over the years, but to sum it up, no it is not 64-bit clean. Please remove. At this point in the lifecycle of amd64, you can be 100% assured that the list of compatible devices has been checked and rechecked a few dozen times. You are not going to find hidden gems that people have forgotten about. If you think you've found something, ask first, and prepare to be wrong. And above all else, don't put drivers into here that you haven't tested. It's pretty silly to admit in your commit message, for all to see, that you are blatantly committing without testing. Scott From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 08:17:32 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 870BA106564A; Mon, 19 Jan 2009 08:17:32 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk1.360sip.com [72.236.70.240]) by mx1.freebsd.org (Postfix) with ESMTP id 4F7F58FC0A; Mon, 19 Jan 2009 08:17:32 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.38] (S0106001372fd1e07.vs.shawcable.net [70.71.171.106]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id n0J8HUsv086706 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 00:17:31 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Message-ID: <49743712.7030103@FreeBSD.org> Date: Mon, 19 Jan 2009 00:17:22 -0800 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Scott Long References: <200901190710.n0J7ACSg001385@svn.freebsd.org> <497432A1.9060805@samsco.org> In-Reply-To: <497432A1.9060805@samsco.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 08:17:33 -0000 Scott Long wrote: > Maxim Sobolev wrote: >> Author: sobomax >> Date: Mon Jan 19 07:10:11 2009 >> New Revision: 187426 >> URL: http://svn.freebsd.org/changeset/base/187426 >> >> Log: >> Add asr(4) and stge(4) from i386 GENERIC. Both drivers compile on >> amd64 and >> there is no particular reason for them to be i386-only. > > Yes, there is a particular reason why asr is i386 only. This has been > discussed extensively over the years, but to sum it up, no it is not > 64-bit clean. Please remove. > > At this point in the lifecycle of amd64, you can be 100% assured that > the list of compatible devices has been checked and rechecked a few > dozen times. You are not going to find hidden gems that people have > forgotten about. If you think you've found something, ask first, and > prepare to be wrong. And above all else, don't put drivers into here > that you haven't tested. It's pretty silly to admit in your commit > message, for all to see, that you are blatantly committing without > testing. Point taken, thanks. Is there any technical reason why stge(4) not in there? -Maxim From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 08:25:41 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88243106566B; Mon, 19 Jan 2009 08:25:41 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 770978FC12; Mon, 19 Jan 2009 08:25:41 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J8Pf9l003272; Mon, 19 Jan 2009 08:25:41 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J8Pfq6003271; Mon, 19 Jan 2009 08:25:41 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901190825.n0J8Pfq6003271@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 08:25:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187429 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 08:25:42 -0000 Author: sobomax Date: Mon Jan 19 08:25:41 2009 New Revision: 187429 URL: http://svn.freebsd.org/changeset/base/187429 Log: Comment amr(4) out - according to scottl it's not 64-bit clean. Modified: head/sys/amd64/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC ============================================================================== --- head/sys/amd64/conf/GENERIC Mon Jan 19 07:44:18 2009 (r187428) +++ head/sys/amd64/conf/GENERIC Mon Jan 19 08:25:41 2009 (r187429) @@ -136,7 +136,8 @@ device pass # Passthrough device (dire device ses # SCSI Environmental Services (and SAF-TE) # RAID controllers interfaced to the SCSI subsystem -device amr # AMI MegaRAID +#XXX it is not 64-bit clean, -scottl +#device amr # AMI MegaRAID device arcmsr # Areca SATA II RAID device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID device ciss # Compaq Smart RAID 5* From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 08:44:35 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B2661065696; Mon, 19 Jan 2009 08:44:35 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 1D04B8FC20; Mon, 19 Jan 2009 08:44:34 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.local (pooker.samsco.org [168.103.85.57]) by pooker.samsco.org (8.14.2/8.14.2) with ESMTP id n0J8iVvE036542; Mon, 19 Jan 2009 01:44:32 -0700 (MST) (envelope-from scottl@samsco.org) Message-ID: <49743D6F.3040307@samsco.org> Date: Mon, 19 Jan 2009 01:44:31 -0700 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.13) Gecko/20080313 SeaMonkey/1.1.9 MIME-Version: 1.0 To: Maxim Sobolev References: <200901190825.n0J8Pfq6003271@svn.freebsd.org> In-Reply-To: <200901190825.n0J8Pfq6003271@svn.freebsd.org> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.5 required=3.8 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187429 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 08:44:36 -0000 Maxim Sobolev wrote: > Author: sobomax > Date: Mon Jan 19 08:25:41 2009 > New Revision: 187429 > URL: http://svn.freebsd.org/changeset/base/187429 > > Log: > Comment amr(4) out - according to scottl it's not 64-bit clean. > > Modified: > head/sys/amd64/conf/GENERIC > > Modified: head/sys/amd64/conf/GENERIC > ============================================================================== > --- head/sys/amd64/conf/GENERIC Mon Jan 19 07:44:18 2009 (r187428) > +++ head/sys/amd64/conf/GENERIC Mon Jan 19 08:25:41 2009 (r187429) > @@ -136,7 +136,8 @@ device pass # Passthrough device (dire > device ses # SCSI Environmental Services (and SAF-TE) > > # RAID controllers interfaced to the SCSI subsystem > -device amr # AMI MegaRAID > +#XXX it is not 64-bit clean, -scottl > +#device amr # AMI MegaRAID > device arcmsr # Areca SATA II RAID > device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID > device ciss # Compaq Smart RAID 5* Ummmmm ASR is not 64-bit clean. AMR is. Scott From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 08:49:02 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D1F51065689; Mon, 19 Jan 2009 08:49:02 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail06.syd.optusnet.com.au (mail06.syd.optusnet.com.au [211.29.132.187]) by mx1.freebsd.org (Postfix) with ESMTP id 9E3768FC1E; Mon, 19 Jan 2009 08:49:01 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from c122-107-120-227.carlnfd1.nsw.optusnet.com.au (c122-107-120-227.carlnfd1.nsw.optusnet.com.au [122.107.120.227]) by mail06.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n0J8mvF9020492 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 19:48:59 +1100 Date: Mon, 19 Jan 2009 19:48:57 +1100 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Stanislav Sedov In-Reply-To: <200901181454.n0IEskw4077045@svn.freebsd.org> Message-ID: <20090119192954.V37158@delplex.bde.org> References: <200901181454.n0IEskw4077045@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187396 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 08:49:02 -0000 On Sun, 18 Jan 2009, Stanislav Sedov wrote: > Log: > - Whitespace fixes. svn diff or a mailer always mangles whitespace (examples quoted below), so the whitespace fixes are hard to see in svn mail > - s_bmask field doesn't exist. > - Use correct flags in debug printf. The flags are more broken than before, fatally so on 64-bit arches if the code were actually used. > Modified: > head/sys/gnu/fs/ext2fs/ext2_vfsops.c > > Modified: head/sys/gnu/fs/ext2fs/ext2_vfsops.c > ============================================================================== > --- head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:04:56 2009 (r187395) > +++ head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:54:46 2009 (r187396) > @@ -5,7 +5,7 @@ > * University of Utah, Department of Computer Science > */ > /*- > - * Copyright (c) 1989, 1991, 1993, 1994 > + * Copyright (c) 1989, 1991, 1993, 1994 > * The Regents of the University of California. All rights reserved. > * > * Redistribution and use in source and binary forms, with or without > @@ -120,7 +120,7 @@ static int compute_sb_data(struct vnode > static const char *ext2_opts[] = { "from", "export", "acls", "noexec", > "noatime", "union", "suiddir", "multilabel", "nosymfollow", > "noclusterr", "noclusterw", "force", NULL }; > - > + The above diff shows null changes, presumably after dropping trailing whitespace in the old version. Oops, actually the diff is invalid since something dropped the leading space in unchanged lines. > @@ -318,7 +318,7 @@ static int ext2_check_descriptors (struc > { > /* examine next descriptor block */ > if ((i % EXT2_DESC_PER_BLOCK(sb)) == 0) > - gdp = (struct ext2_group_desc *) > + gdp = (struct ext2_group_desc *) > sb->s_group_desc[desc_block++]->b_data; > if (gdp->bg_block_bitmap < block || > gdp->bg_block_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb)) Here most leading tabs are corrupt in both the new and old versions. Please fix all whitespace on a line if fixing any. > @@ -398,19 +398,19 @@ static int compute_sb_data(devvp, es, fs > int logic_sb_block = 1; /* XXX for now */ > > #if 1 > -#define V(v) > +#define V(v) > #else > #define V(v) printf(#v"= %d\n", fs->v); > #endif The existence of this macro is a bug, since it can only work for one type, but fields of different type need to be printed. Most fields don't have type int (the first one printed is s_blocksize which (especially bogusly on 64-bit machines) has type u_long, so the non-'#if 1' case would cause lots of errors. > @@ -1000,7 +1000,7 @@ ext2_vget(mp, ino, flags, vpp) > > /* Read in the disk contents for the inode, copy into the inode. */ > #if 0 > -printf("ext2_vget(%d) dbn= %d ", ino, fsbtodb(fs, ino_to_fsba(fs, ino))); > +printf("ext2_vget(%d) dbn= %lu ", ino, fsbtodb(fs, ino_to_fsba(fs, ino))); > #endif > if ((error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)), > (int)fs->s_blocksize, NOCRED, &bp)) != 0) { ino has type ino_t, so it cannot be printed portably without using a cast. Its actual type is uint32_t. If this code were actually, this would give the following printf format errors on various supported machines: old: sign mismatch only, since plain int happens to have the same size as ino_t on all supported machines. gcc doesn't even warn about this error, so this error would be non-fatal new: now a size mismatch on machines with 64-bit longs (amd64, ia64, sparc64 at least. gcc warns about this error, so the code is now fatally broken on many supported machines, except it is never actually used. Bruce From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 08:51:20 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4B6E1065670; Mon, 19 Jan 2009 08:51:20 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D39FB8FC1A; Mon, 19 Jan 2009 08:51:20 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0J8pKx4003849; Mon, 19 Jan 2009 08:51:20 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0J8pKXT003848; Mon, 19 Jan 2009 08:51:20 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901190851.n0J8pKXT003848@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 08:51:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187430 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 08:51:21 -0000 Author: sobomax Date: Mon Jan 19 08:51:20 2009 New Revision: 187430 URL: http://svn.freebsd.org/changeset/base/187430 Log: asr(4) is not amd64-clean, not amr(4). Pointy hat to: myself Submitted by: scottl Modified: head/sys/amd64/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC ============================================================================== --- head/sys/amd64/conf/GENERIC Mon Jan 19 08:25:41 2009 (r187429) +++ head/sys/amd64/conf/GENERIC Mon Jan 19 08:51:20 2009 (r187430) @@ -136,10 +136,10 @@ device pass # Passthrough device (dire device ses # SCSI Environmental Services (and SAF-TE) # RAID controllers interfaced to the SCSI subsystem -#XXX it is not 64-bit clean, -scottl -#device amr # AMI MegaRAID +device amr # AMI MegaRAID device arcmsr # Areca SATA II RAID -device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID +#XXX it is not 64-bit clean, -scottl +#device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID device ciss # Compaq Smart RAID 5* device dpt # DPT Smartcache III, IV - See NOTES for options device hptmv # Highpoint RocketRAID 182x From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 09:05:39 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B33A9106567A for ; Mon, 19 Jan 2009 09:05:39 +0000 (UTC) (envelope-from christoph.mallon@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 034F48FC1C for ; Mon, 19 Jan 2009 09:05:37 +0000 (UTC) (envelope-from christoph.mallon@gmx.de) Received: (qmail invoked by alias); 19 Jan 2009 09:05:36 -0000 Received: from p54A3EACA.dip.t-dialin.net (EHLO tron.homeunix.org) [84.163.234.202] by mail.gmx.net (mp017) with SMTP; 19 Jan 2009 10:05:36 +0100 X-Authenticated: #1673122 X-Provags-ID: V01U2FsdGVkX1/V55QPv5XVXy85lShVIPocX/RoCoYYbJkR7zl2On ZNnQd3hGcd/uLQ Message-ID: <4974425F.5060600@gmx.de> Date: Mon, 19 Jan 2009 10:05:35 +0100 From: Christoph Mallon User-Agent: Thunderbird 2.0.0.19 (X11/20090103) MIME-Version: 1.0 To: Bruce Evans References: <200901181454.n0IEskw4077045@svn.freebsd.org> <20090119192954.V37158@delplex.bde.org> In-Reply-To: <20090119192954.V37158@delplex.bde.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.57 Cc: Stanislav Sedov , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187396 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 09:05:40 -0000 Bruce Evans schrieb: > On Sun, 18 Jan 2009, Stanislav Sedov wrote: > >> Log: >> - Whitespace fixes. > > svn diff or a mailer always mangles whitespace (examples quoted below), > so the whitespace fixes are hard to see in svn mail [...] >> @@ -5,7 +5,7 @@ >> * University of Utah, Department of Computer Science >> */ >> /*- >> - * Copyright (c) 1989, 1991, 1993, 1994 >> + * Copyright (c) 1989, 1991, 1993, 1994 >> * The Regents of the University of California. All rights reserved. >> * >> * Redistribution and use in source and binary forms, with or without >> @@ -120,7 +120,7 @@ static int compute_sb_data(struct vnode >> static const char *ext2_opts[] = { "from", "export", "acls", "noexec", >> "noatime", "union", "suiddir", "multilabel", "nosymfollow", >> "noclusterr", "noclusterw", "force", NULL }; >> - >> + > > The above diff shows null changes, presumably after dropping trailing > whitespace in the old version. > > Oops, actually the diff is invalid since something dropped the leading > space in unchanged lines. The diff in the original mail looks correct here: I see the removed trailing whitespace in the - lines and the leading space in unchanged lines. Your quoted version is "broken", so I suspect the problem is at your end. Christoph From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 09:11:01 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73AAE106564A for ; Mon, 19 Jan 2009 09:11:01 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.236]) by mx1.freebsd.org (Postfix) with ESMTP id 3A7308FC0C for ; Mon, 19 Jan 2009 09:11:00 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so2648249rvf.43 for ; Mon, 19 Jan 2009 01:11:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:received:date:from :to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=uPUdKPvfhmJhjHfZXWcnyZq2ZRRIndRO4hSy99M3HRE=; b=kPDkqyuG75SicFRmidDv6nTCd/I/XNLQzf04auoV/QxnUu0lWVra4lBRkBO/LhwjGU FTBM49f+mc9tZ2Py/NvH0CGMsnNQk2xyiNViSJLfhWVvO7K0v76eF4sYum+wGc4K4U7r HRS9nwM6QVIbDwHze85nxCSHPygPBaMe/AaEU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=AIJmW2Mcqb8Yh7hrtL0nYoBopmO7oEK5S3SWzYAVtZ07HHrcEWGSfn30rXHTYzNcYG k9HZQVd+wMJxcMKFcZsIVBCiOTHaK1Q8H4BDBgUHSBdyumy6mq3psMDyslWRKNpyJmOM su9tV24uvzpg11Ps8j10mNY5PMnnm/rUKzpOc= Received: by 10.140.207.2 with SMTP id e2mr981877rvg.251.1232354620777; Mon, 19 Jan 2009 00:43:40 -0800 (PST) Received: from michelle.cdnetworks.co.kr ([211.53.35.84]) by mx.google.com with ESMTPS id f42sm4221490rvb.5.2009.01.19.00.43.36 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 19 Jan 2009 00:43:39 -0800 (PST) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.14.3/8.14.3) with ESMTP id n0J8hUqb077134 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 17:43:30 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.14.3/8.14.3/Submit) id n0J8hTwl077133; Mon, 19 Jan 2009 17:43:29 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Mon, 19 Jan 2009 17:43:29 +0900 From: Pyun YongHyeon To: Maxim Sobolev Message-ID: <20090119084329.GF75541@cdnetworks.co.kr> References: <200901190710.n0J7ACSg001385@svn.freebsd.org> <497432A1.9060805@samsco.org> <49743712.7030103@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <49743712.7030103@FreeBSD.org> User-Agent: Mutt/1.4.2.3i Cc: svn-src-head@freebsd.org, Scott Long , src-committers@freebsd.org, svn-src-all@freebsd.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 09:11:01 -0000 On Mon, Jan 19, 2009 at 12:17:22AM -0800, Maxim Sobolev wrote: > Scott Long wrote: > >Maxim Sobolev wrote: > >>Author: sobomax > >>Date: Mon Jan 19 07:10:11 2009 > >>New Revision: 187426 > >>URL: http://svn.freebsd.org/changeset/base/187426 > >> > >>Log: > >> Add asr(4) and stge(4) from i386 GENERIC. Both drivers compile on > >>amd64 and > >> there is no particular reason for them to be i386-only. > > > >Yes, there is a particular reason why asr is i386 only. This has been > >discussed extensively over the years, but to sum it up, no it is not > >64-bit clean. Please remove. > > > >At this point in the lifecycle of amd64, you can be 100% assured that > >the list of compatible devices has been checked and rechecked a few > >dozen times. You are not going to find hidden gems that people have > >forgotten about. If you think you've found something, ask first, and > >prepare to be wrong. And above all else, don't put drivers into here > >that you haven't tested. It's pretty silly to admit in your commit > >message, for all to see, that you are blatantly committing without > >testing. > > Point taken, thanks. Is there any technical reason why stge(4) not in there? > The only reason I didn't enable it at that time was lack of testing. I think it should work without problems as I had also tested it on sparc64. -- Regards, Pyun YongHyeon From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 09:24:46 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B08DD1065677; Mon, 19 Jan 2009 09:24:46 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk1.360sip.com [72.236.70.240]) by mx1.freebsd.org (Postfix) with ESMTP id 7850A8FC1C; Mon, 19 Jan 2009 09:24:46 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.38] (S0106001372fd1e07.vs.shawcable.net [70.71.171.106]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id n0J9Oil7090153 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 01:24:45 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Message-ID: <497446D4.5020104@FreeBSD.org> Date: Mon, 19 Jan 2009 01:24:36 -0800 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Scott Long References: <200901190710.n0J7ACSg001385@svn.freebsd.org> <497432A1.9060805@samsco.org> In-Reply-To: <497432A1.9060805@samsco.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 09:24:47 -0000 Scott Long wrote: > prepare to be wrong. And above all else, don't put drivers into here > that you haven't tested. It's pretty silly to admit in your commit > message, for all to see, that you are blatantly committing without > testing. Actually this is interesting point, what the best strategy for us as the project should be? Should we new put drivers that have been tested on i386 only and don't have any particular reason to be i386-specific (i.e. ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC automatically and wait for somebody to report a problem, or stay on the safe side and enable drivers on amd64 only after somebody actually has tested them and confirms that they are working? Should this policy depend on driver class (for example a storage driver has much higher potential for screwing user's data compared to a network driver or a sound driver) and on release (HEAD / STABLE)? IMHO FreeBSD could benefit by putting at least non-storage untested non i386-specific drivers into amd64 kernel and/or at least in HEAD to give them testing and a wider exposure. This is not just idle interest for me - recently our company has started shipping amd64 version of our FreeBSD-based product, so that we are a little bit concerned about hardware support with amd64 7.1 kernel being a little bit narrower compared to i386 7.1 kernel. I apologize if this topic has been discussed somewhere already. -Maxim From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 09:37:08 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3975010656C9 for ; Mon, 19 Jan 2009 09:37:08 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from mx0.deglitch.com (backbone.deglitch.com [78.110.53.255]) by mx1.freebsd.org (Postfix) with ESMTP id A47068FC0A for ; Mon, 19 Jan 2009 09:37:07 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from DSPAM-Daemon (localhost [127.0.0.1]) by mx0.deglitch.com (Postfix) with SMTP id 5FF108FC4F for ; Mon, 19 Jan 2009 12:31:41 +0300 (MSK) Received: from orion.SpringDaemons.com (drsun1.dialup.corbina.ru [85.21.245.235]) by mx0.deglitch.com (Postfix) with ESMTPA id A677D8FC18; Mon, 19 Jan 2009 12:31:39 +0300 (MSK) Received: from orion (localhost [127.0.0.1]) by orion.SpringDaemons.com (Postfix) with SMTP id EFEE8398F3; Mon, 19 Jan 2009 12:31:42 +0300 (MSK) Date: Mon, 19 Jan 2009 12:31:38 +0300 From: Stanislav Sedov To: Bruce Evans Message-Id: <20090119123138.f5404c60.stas@FreeBSD.org> In-Reply-To: <20090119192954.V37158@delplex.bde.org> References: <200901181454.n0IEskw4077045@svn.freebsd.org> <20090119192954.V37158@delplex.bde.org> Organization: The FreeBSD Project X-XMPP: ssedov@jabber.ru X-Voice: +7 916 849 20 23 X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-DSPAM-Result: Whitelisted X-DSPAM-Processed: Mon Jan 19 12:31:41 2009 X-DSPAM-Confidence: 0.9899 X-DSPAM-Improbability: 1 in 9809 chance of being spam X-DSPAM-Probability: 0.0000 X-DSPAM-Signature: 4974487d967003034114393 Cc: Stanislav Sedov , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187396 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 09:37:08 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Mon, 19 Jan 2009 19:48:57 +1100 (EST) Bruce Evans mentioned: > > Modified: head/sys/gnu/fs/ext2fs/ext2_vfsops.c > > ============================================================================== > > --- head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:04:56 2009 (r187395) > > +++ head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:54:46 2009 (r187396) > > @@ -5,7 +5,7 @@ > > * University of Utah, Department of Computer Science > > */ > > /*- > > - * Copyright (c) 1989, 1991, 1993, 1994 > > + * Copyright (c) 1989, 1991, 1993, 1994 > > * The Regents of the University of California. All rights reserved. > > * > > * Redistribution and use in source and binary forms, with or without > > @@ -120,7 +120,7 @@ static int compute_sb_data(struct vnode > > static const char *ext2_opts[] = { "from", "export", "acls", "noexec", > > "noatime", "union", "suiddir", "multilabel", "nosymfollow", > > "noclusterr", "noclusterw", "force", NULL }; > > - > > + > > The above diff shows null changes, presumably after dropping trailing > whitespace in the old version. > > Oops, actually the diff is invalid since something dropped the leading > space in unchanged lines. > Yes, seems that svn mail diffs trims the spaces out... > > @@ -318,7 +318,7 @@ static int ext2_check_descriptors (struc > > { > > /* examine next descriptor block */ > > if ((i % EXT2_DESC_PER_BLOCK(sb)) == 0) > > - gdp = (struct ext2_group_desc *) > > + gdp = (struct ext2_group_desc *) > > sb->s_group_desc[desc_block++]->b_data; > > if (gdp->bg_block_bitmap < block || > > gdp->bg_block_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb)) > > Here most leading tabs are corrupt in both the new and old versions. Please > fix all whitespace on a line if fixing any. > This file has style different from our conventions, so I only stripped leading spaces and left everything else intact. Should I convert the entire file to style(9).? > > @@ -398,19 +398,19 @@ static int compute_sb_data(devvp, es, fs > > int logic_sb_block = 1; /* XXX for now */ > > > > #if 1 > > -#define V(v) > > +#define V(v) > > #else > > #define V(v) printf(#v"= %d\n", fs->v); > > #endif > > The existence of this macro is a bug, since it can only work for one type, > but fields of different type need to be printed. Most fields don't have > type int (the first one printed is s_blocksize which (especially bogusly > on 64-bit machines) has type u_long, so the non-'#if 1' case would cause > lots of errors. > In the following commit I casted all fields to (unsigned long) explicitly, so printfs will work for all fields. > > @@ -1000,7 +1000,7 @@ ext2_vget(mp, ino, flags, vpp) > > > > /* Read in the disk contents for the inode, copy into the inode. */ > > #if 0 > > -printf("ext2_vget(%d) dbn= %d ", ino, fsbtodb(fs, ino_to_fsba(fs, ino))); > > +printf("ext2_vget(%d) dbn= %lu ", ino, fsbtodb(fs, ino_to_fsba(fs, ino))); > > #endif > > if ((error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)), > > (int)fs->s_blocksize, NOCRED, &bp)) != 0) { > > ino has type ino_t, so it cannot be printed portably without using a > cast. Its actual type is uint32_t. If this code were actually, this > would give the following printf format errors on various supported > machines: > > old: sign mismatch only, since plain int happens to have the same size as > ino_t on all supported machines. gcc doesn't even warn about this > error, so this error would be non-fatal > > new: now a size mismatch on machines with 64-bit longs (amd64, ia64, sparc64 > at least. gcc warns about this error, so the code is now fatally > broken on many supported machines, except it is never actually used. > Actually, the third argument of printf has type of unsigned long for ext2fs code thanks to arithmetical operations around ino_to_fsba calculations. Thus the old code has been broken at least for 64-bit platforms, new one should work everywhere (both for 32 bit an 64bit platforms). Thanks for comments! - -- Stanislav Sedov ST4096-RIPE -----BEGIN PGP SIGNATURE----- iEYEARECAAYFAkl0SH4ACgkQK/VZk+smlYE7CQCfYtheq6nRYDh/3DWjDJ41hcem yVMAnjN3sKe8UacMMvH6e1wrR/C/DKES =84cR -----END PGP SIGNATURE----- !DSPAM:4974487d967003034114393! From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 10:44:17 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 103B01065672; Mon, 19 Jan 2009 10:44:17 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F25708FC18; Mon, 19 Jan 2009 10:44:16 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JAiGwr008053; Mon, 19 Jan 2009 10:44:16 GMT (envelope-from ru@svn.freebsd.org) Received: (from ru@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JAiGVF008052; Mon, 19 Jan 2009 10:44:16 GMT (envelope-from ru@svn.freebsd.org) Message-Id: <200901191044.n0JAiGVF008052@svn.freebsd.org> From: Ruslan Ermilov Date: Mon, 19 Jan 2009 10:44:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187431 - stable/7/usr.bin/netstat X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 10:44:17 -0000 Author: ru Date: Mon Jan 19 10:44:16 2009 New Revision: 187431 URL: http://svn.freebsd.org/changeset/base/187431 Log: MFC: - Fix crash with "netstat -m -N foo". PR: bin/124724 - Sync usage() with SYNOPSIS. Modified: stable/7/usr.bin/netstat/ (props changed) stable/7/usr.bin/netstat/main.c Modified: stable/7/usr.bin/netstat/main.c ============================================================================== --- stable/7/usr.bin/netstat/main.c Mon Jan 19 08:51:20 2009 (r187430) +++ stable/7/usr.bin/netstat/main.c Mon Jan 19 10:44:16 2009 (r187431) @@ -503,7 +503,7 @@ main(int argc, char *argv[]) exit(0); } if (mflag) { - if (memf != NULL) { + if (!live) { if (kread(0, NULL, 0) == 0) mbpr(kvmd, nl[N_MBSTAT].n_value); } else @@ -768,15 +768,16 @@ usage(void) (void)fprintf(stderr, "%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n", "usage: netstat [-AaLnSW] [-f protocol_family | -p protocol]\n" " [-M core] [-N system]", -" netstat -i | -I interface [-abdhnt] [-f address_family]\n" +" netstat -i | -I interface [-abdhntW] [-f address_family]\n" " [-M core] [-N system]", " netstat -w wait [-I interface] [-d] [-M core] [-N system]", -" netstat -s [-s] [-z] [-f protocol_family | -p protocol] [-M core]", +" netstat -s [-s] [-z] [-f protocol_family | -p protocol]\n" +" [-M core] [-N system]", " netstat -i | -I interface -s [-f protocol_family | -p protocol]\n" " [-M core] [-N system]", " netstat -m [-M core] [-N system]", -" netstat -B [ -I interface]", -" netstat -r [-AenW] [-f address_family] [-M core] [-N system]", +" netstat -B [-I interface]", +" netstat -r [-AanW] [-f address_family] [-M core] [-N system]", " netstat -rs [-s] [-M core] [-N system]", " netstat -g [-W] [-f address_family] [-M core] [-N system]", " netstat -gs [-s] [-f address_family] [-M core] [-N system]"); From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 11:09:33 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E92B10656D6; Mon, 19 Jan 2009 11:09:33 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail11.syd.optusnet.com.au (mail11.syd.optusnet.com.au [211.29.132.192]) by mx1.freebsd.org (Postfix) with ESMTP id A13258FC2A; Mon, 19 Jan 2009 11:09:32 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from c122-107-120-227.carlnfd1.nsw.optusnet.com.au (c122-107-120-227.carlnfd1.nsw.optusnet.com.au [122.107.120.227]) by mail11.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n0JB9Slj028342 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 22:09:29 +1100 Date: Mon, 19 Jan 2009 22:09:28 +1100 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Stanislav Sedov In-Reply-To: <20090118174357.3ed1459d.stas@FreeBSD.org> Message-ID: <20090119202452.X37158@delplex.bde.org> References: <200901181404.n0IE4uXw075698@svn.freebsd.org> <20090118140644.GT48057@deviant.kiev.zoral.com.ua> <20090118174357.3ed1459d.stas@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Kostik Belousov , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187395 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 11:09:41 -0000 On Sun, 18 Jan 2009, Stanislav Sedov wrote: > Kostik Belousov mentioned: > >> >> Please see a discussion on the fs@ and reasoning why I declined to commit >> the similar patch. > ... > The extra size added in inodes are used to store additional info like extended > attributes, ACLs and so on. Each inode now has a field just after the legacy > inode format struct that shows hom much additional space has been added to > this particular inode. By analyzing this field the operating system can interpret > additional data located in inode, if it understand its format (there might be > application and/or OS specific data too). > > Our implementation just ignore this additional fields after sizeof(ext2fs_inode), > both while reading and writing. Thus we don't interet this data yet we don't > overwrite it. If it does this, then it is quite broken, since the garbage data bites implementations that _do_ interpret the data. Writing to the unsupported fields is especially important for either destruction or creation, so that the garbage doesn't leak to new files when a disk inode is reused. The field[s] showing how the additional space is used actually seem to be _inside_ the legacy inode (*). However, this doesn't seem to help, since we seem to never touch them there either (we bzero() new inodes in ext2_vget() but never bzero() the disk inode). There seem to be old bugs in this area. The untouched fields are: - osd1 (sic) I don't understand this - i_file_acl leaking this would security holes - i_dir_acl leaking this would security holes this is abused for the high 32 bits of the file size in the case of regular files. We use it in this case, but a few years ago when we didn't use it, leaking it would have given wrong file sizes. - i_faddr I don't understand this _ osd2 (sic) this has mainly things like an extra 16 bits for the the uid and gid. Leaking these would give security holes more often than for acls. I think there is no actual problem with at least the file acls. What is supposed to happen is: - if the file system has any nonzero acls, then ext[23]fs under linux has set EXT2_FEATURE_COMPAT_EXT_ATTR in the superblock to indicate that this feature is used - FreeBSD ext2fs doesn't support this feature, so mounting such file systems fails - an ext2fs utility should offer to clear EXT2_FEATURE_COMPAT_EXT_ATTR in the superblock. When it clears it there, it must clear all the associated metadata too. Thus the metadata doesn't leak. - hopefully there are compat flags for all the other extensions too. There is one for using the file size extension. I can't find one related to larger disk inodes. (*) In linux-2.6.10, the declaration of struct ext3_inode is lexically identical to struct ext2_inode except for one s/2/3/ and apparent style bugs in the latter (__u16/32 hasn't been converted to __le16/32 in new fields in the latter; this is only a style bug provided the new fields are ignored on read and zeroed on write). Bruce From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 11:45:04 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A253D1065670; Mon, 19 Jan 2009 11:45:04 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail05.syd.optusnet.com.au (mail05.syd.optusnet.com.au [211.29.132.186]) by mx1.freebsd.org (Postfix) with ESMTP id 3F99F8FC1A; Mon, 19 Jan 2009 11:45:04 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from c122-107-120-227.carlnfd1.nsw.optusnet.com.au (c122-107-120-227.carlnfd1.nsw.optusnet.com.au [122.107.120.227]) by mail05.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n0JBj1MY012601 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 22:45:02 +1100 Date: Mon, 19 Jan 2009 22:45:01 +1100 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Stanislav Sedov In-Reply-To: <200901181404.n0IE4uXw075698@svn.freebsd.org> Message-ID: <20090119220943.P37158@delplex.bde.org> References: <200901181404.n0IE4uXw075698@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187395 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 11:45:05 -0000 On Sun, 18 Jan 2009, Stanislav Sedov wrote: > Author: stas > Date: Sun Jan 18 14:04:56 2009 > New Revision: 187395 > URL: http://svn.freebsd.org/changeset/base/187395 > > Log: > - Obtain inode sizes and location of the first inode based on the contents > of superblock rather than using hardcoded values. This fixes ext2fs on > filesystems with inode sized other than 128. > > Submitted by: Alex Lyashkov (based on) > MFC after: 2 weeks This was not suitable for committing verbatim. > Modified: head/sys/gnu/fs/ext2fs/ext2_fs.h > ============================================================================== > --- head/sys/gnu/fs/ext2fs/ext2_fs.h Sun Jan 18 13:04:38 2009 (r187394) > +++ head/sys/gnu/fs/ext2fs/ext2_fs.h Sun Jan 18 14:04:56 2009 (r187395) > @@ -150,8 +150,8 @@ > #else /* !notyet */ ^^^^^^^^^^^^^^^^^^^ > #define EXT2_INODES_PER_BLOCK(s) ((s)->s_inodes_per_block) > /* Should be sizeof(struct ext2_inode): */ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > -#define EXT2_INODE_SIZE 128 > -#define EXT2_FIRST_INO 11 > +#define EXT2_INODE_SIZE(s) ((s)->s_inode_size) > +#define EXT2_FIRST_INO(s) ((s)->s_first_inode) > #endif /* notyet */ Please read the code before changing parts of it. The comment is now just wrong. One value that EXT2_INODE_SIZE certainly should _not_ be is the fixed size of our data structure, since we are now trying to support a variable size and even have a parameter to do that. The ifdef is now more bogus than before. The "!notyet" part now essentially duplicates the old unchanged "notyet" part, except for having bugs not present in the old version. This ifdef is a FreeBSD hack which should have been removed. Linux ext2fs just has the "notyet" part. Here is complete old ifdef: % #ifdef notyet % #ifdef __KERNEL__ % #define EXT2_ADDR_PER_BLOCK_BITS(s) ((s)->u.ext2_sb.s_addr_per_block_bits) % #define EXT2_INODE_SIZE(s) ((s)->u.ext2_sb.s_inode_size) % #define EXT2_FIRST_INO(s) ((s)->u.ext2_sb.s_first_ino) This is literally the same as in Linux. It cannot be used directly, now for only minor reasons: - FreeBSD doesn't have "u.ext2.sb". After deleting "u.ext2_sb." from the above, it seems to be right. - this was already done in the !notyet part for the 1st macro - your change does this for the other 2 macros, but this is not enough -- see below. % #else % #define EXT2_INODE_SIZE(s) (((s)->s_rev_level == EXT2_GOOD_OLD_REV) ? \ % EXT2_GOOD_OLD_INODE_SIZE : \ % (s)->s_inode_size) % #define EXT2_FIRST_INO(s) (((s)->s_rev_level == EXT2_GOOD_OLD_REV) ? \ % EXT2_GOOD_OLD_FIRST_INO : \ % (s)->s_first_ino) s_inode_size and s_first_ino cannot be used directly because they aren't supported by EXT2_GOOD_OLD_REV file systems. The conversion is done in the above macros for the !KERNEL case. It is done during superblock initialization in Linux ext2fs (at least the in-core copy of the superblock is written to). It is not done in FreeBSD ext2fs. Thus support for EXT2_GOOD_OLD_REV file systems has been broken. The change seems to be correct except for the above, and 1 other major style bug. Bruce From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 14:42:03 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F6C91065674; Mon, 19 Jan 2009 14:42:03 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail06.syd.optusnet.com.au (mail06.syd.optusnet.com.au [211.29.132.187]) by mx1.freebsd.org (Postfix) with ESMTP id 882E68FC13; Mon, 19 Jan 2009 14:42:02 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from c122-107-120-227.carlnfd1.nsw.optusnet.com.au (c122-107-120-227.carlnfd1.nsw.optusnet.com.au [122.107.120.227]) by mail06.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n0JEfwOb025014 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 20 Jan 2009 01:41:59 +1100 Date: Tue, 20 Jan 2009 01:41:58 +1100 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Stanislav Sedov In-Reply-To: <20090119123138.f5404c60.stas@FreeBSD.org> Message-ID: <20090120002911.A37309@delplex.bde.org> References: <200901181454.n0IEskw4077045@svn.freebsd.org> <20090119192954.V37158@delplex.bde.org> <20090119123138.f5404c60.stas@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Bruce Evans Subject: Re: svn commit: r187396 - head/sys/gnu/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 14:42:04 -0000 On Mon, 19 Jan 2009, Stanislav Sedov wrote: > On Mon, 19 Jan 2009 19:48:57 +1100 (EST) > Bruce Evans mentioned: > >>> Modified: head/sys/gnu/fs/ext2fs/ext2_vfsops.c >>> ============================================================================== >>> --- head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:04:56 2009 (r187395) >>> +++ head/sys/gnu/fs/ext2fs/ext2_vfsops.c Sun Jan 18 14:54:46 2009 (r187396) >>> @@ -5,7 +5,7 @@ >>> * University of Utah, Department of Computer Science >>> */ >>> /*- >>> - * Copyright (c) 1989, 1991, 1993, 1994 >>> + * Copyright (c) 1989, 1991, 1993, 1994 >>> * The Regents of the University of California. All rights reserved. >>> * >>> * Redistribution and use in source and binary forms, with or without >>> @@ -120,7 +120,7 @@ static int compute_sb_data(struct vnode >>> static const char *ext2_opts[] = { "from", "export", "acls", "noexec", >>> "noatime", "union", "suiddir", "multilabel", "nosymfollow", >>> "noclusterr", "noclusterw", "force", NULL }; >>> - >>> + >> >> The above diff shows null changes, presumably after dropping trailing >> whitespace in the old version. >> >> Oops, actually the diff is invalid since something dropped the leading >> space in unchanged lines. > > Yes, seems that svn mail diffs trims the spaces out... The original diffs seem to be correct. Cristoph Mallon replied that he gets good diffs in mail. The spaces seem to be lost here before my mail arrives. >>> @@ -318,7 +318,7 @@ static int ext2_check_descriptors (struc >>> { >>> /* examine next descriptor block */ >>> if ((i % EXT2_DESC_PER_BLOCK(sb)) == 0) >>> - gdp = (struct ext2_group_desc *) >>> + gdp = (struct ext2_group_desc *) >>> sb->s_group_desc[desc_block++]->b_data; >>> if (gdp->bg_block_bitmap < block || >>> gdp->bg_block_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb)) >> >> Here most leading tabs are corrupt in both the new and old versions. Please >> fix all whitespace on a line if fixing any. > > This file has style different from our conventions, so I only stripped > leading spaces and left everything else intact. Should I convert the entire > file to style(9).? Only lines changed for other reasons. ext2_vnops.c is non-KNF for pure formatting on about 20% of its lines. Fixing tabs using |unexpand reduces this to about 18.5%. > >>> @@ -398,19 +398,19 @@ static int compute_sb_data(devvp, es, fs >>> int logic_sb_block = 1; /* XXX for now */ >>> >>> #if 1 >>> -#define V(v) >>> +#define V(v) >>> #else >>> #define V(v) printf(#v"= %d\n", fs->v); >>> #endif >> >> The existence of this macro is a bug, since it can only work for one type, >> but fields of different type need to be printed. Most fields don't have >> type int (the first one printed is s_blocksize which (especially bogusly >> on 64-bit machines) has type u_long, so the non-'#if 1' case would cause >> lots of errors. Actually, this macro can be made usable using unportable complications like: %%% #include %%% #include /* * Can use even more complications to support FP or to avoid upcasting. * The unportable __typeof() is used so that the signedness can be * determined at compile time. Expressions like (((__typeof(v))0.5 > 0.3) * can be used to determine floating point at compile time, and * expressions involving (((__typeof(v))UINTMAX_MAX == UINTMAX_MAX) can * be used to determine if the full upcast is needed. There should be * a standard flag %I that does all of this automatically. Failing that, * standards permit all of this to be done automatically in the usual * case where a type error gives undefined behaviour. */ #define V(v) __extension__ ({ \ if ((__typeof(v))(-1) < 0) \ printf(#v"= %jd\n", (intmax_t)v); \ else \ printf(#v"= %ju\n", (uintmax_t)v); \ }) %%% > In the following commit I casted all fields to (unsigned long) explicitly, > so printfs will work for all fields. Better, but still technically wrong for the signed fields on all machines and for the 64-bit fields on 32-bit machines, and potentially technically wrong for all the typedefed fields. I think all fields fit in 32-bit u_ints, but most of the types in the in-core superblock are bogusly large or bogusly signed so this is not clear. E.g., s_qbmask is quad_t, but it is less than s_blocksize which is unsigned long, and the largest block size is normally 4K so only int16_t is needed for all of these. The V() for s_qbmask would also be fatal if it were compiled, since it is spelled without a 'q'. >>> @@ -1000,7 +1000,7 @@ ext2_vget(mp, ino, flags, vpp) >>> >>> /* Read in the disk contents for the inode, copy into the inode. */ >>> #if 0 >>> -printf("ext2_vget(%d) dbn= %d ", ino, fsbtodb(fs, ino_to_fsba(fs, ino))); >>> +printf("ext2_vget(%d) dbn= %lu ", ino, fsbtodb(fs, ino_to_fsba(fs, ino))); >>> #endif >>> if ((error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)), >>> (int)fs->s_blocksize, NOCRED, &bp)) != 0) { >> >> ino has type ino_t, so it cannot be printed portably without using a >> cast. Its actual type is uint32_t. If this code were actually, this >> would give the following printf format errors on various supported >> machines: >> >> old: sign mismatch only, since plain int happens to have the same size as >> ino_t on all supported machines. gcc doesn't even warn about this >> error, so this error would be non-fatal >> >> new: now a size mismatch on machines with 64-bit longs (amd64, ia64, sparc64 >> at least. gcc warns about this error, so the code is now fatally >> broken on many supported machines, except it is never actually used. > > Actually, the third argument of printf has type of unsigned long for ext2fs > code thanks to arithmetical operations around ino_to_fsba calculations. Thus > the old code has been broken at least for 64-bit platforms, new one should > work everywhere (both for 32 bit an 64bit platforms). Oops. I looked at the 2nd arg. I suppose ext2fs doesn't support file systems larger than 1TB, especially under FreeBSD, so the result of fsbtodb() fits in an int32_t and using plain int for everything would work. Those arithmetical calculations are very fragile. The corresponding ones in ffs use lots of casts and still used to get the casts wrong so that the shift overflowed at 1TB. In general, the disk block address is int64_t and the correct format is %jd after casting the int64_t up to intmax_t. Bruce From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 15:33:07 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75073106564A; Mon, 19 Jan 2009 15:33:07 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6379F8FC17; Mon, 19 Jan 2009 15:33:07 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JFX7Qq014017; Mon, 19 Jan 2009 15:33:07 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JFX76J014016; Mon, 19 Jan 2009 15:33:07 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901191533.n0JFX76J014016@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 15:33:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187433 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 15:33:08 -0000 Author: sobomax Date: Mon Jan 19 15:33:06 2009 New Revision: 187433 URL: http://svn.freebsd.org/changeset/base/187433 Log: Take NTFS option out to match i386 GENERIC. Suggested by: phk, luigi Modified: head/sys/amd64/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC ============================================================================== --- head/sys/amd64/conf/GENERIC Mon Jan 19 11:10:02 2009 (r187432) +++ head/sys/amd64/conf/GENERIC Mon Jan 19 15:33:06 2009 (r187433) @@ -47,7 +47,6 @@ options NFSCLIENT # Network Filesystem options NFSSERVER # Network Filesystem Server options NFSLOCKD # Network Lock Manager options NFS_ROOT # NFS usable as /, requires NFSCLIENT -options NTFS # NT File System options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 15:36:25 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 601571065678; Mon, 19 Jan 2009 15:36:25 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4C80C8FC1F; Mon, 19 Jan 2009 15:36:25 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JFaPQt014130; Mon, 19 Jan 2009 15:36:25 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JFaPTN014129; Mon, 19 Jan 2009 15:36:25 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901191536.n0JFaPTN014129@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 15:36:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 15:36:27 -0000 Author: sobomax Date: Mon Jan 19 15:36:25 2009 New Revision: 187434 URL: http://svn.freebsd.org/changeset/base/187434 Log: MFC: take NTFS option out to match i386 GENERIC. Modified: stable/7/sys/amd64/conf/GENERIC Modified: stable/7/sys/amd64/conf/GENERIC ============================================================================== --- stable/7/sys/amd64/conf/GENERIC Mon Jan 19 15:33:06 2009 (r187433) +++ stable/7/sys/amd64/conf/GENERIC Mon Jan 19 15:36:25 2009 (r187434) @@ -41,7 +41,6 @@ options NFSCLIENT # Network Filesystem options NFSSERVER # Network Filesystem Server options NFSLOCKD # Network Lock Manager options NFS_ROOT # NFS usable as /, requires NFSCLIENT -options NTFS # NT File System options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 15:38:27 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9731E106564A; Mon, 19 Jan 2009 15:38:26 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 84EAA8FC1A; Mon, 19 Jan 2009 15:38:26 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JFcQIf014203; Mon, 19 Jan 2009 15:38:26 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JFcQla014202; Mon, 19 Jan 2009 15:38:26 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901191538.n0JFcQla014202@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 15:38:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187435 - stable/6/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 15:38:27 -0000 Author: sobomax Date: Mon Jan 19 15:38:26 2009 New Revision: 187435 URL: http://svn.freebsd.org/changeset/base/187435 Log: MFC: take NTFS out to match i386 GENERIC. Modified: stable/6/sys/amd64/conf/GENERIC Modified: stable/6/sys/amd64/conf/GENERIC ============================================================================== --- stable/6/sys/amd64/conf/GENERIC Mon Jan 19 15:36:25 2009 (r187434) +++ stable/6/sys/amd64/conf/GENERIC Mon Jan 19 15:38:26 2009 (r187435) @@ -40,7 +40,6 @@ options NFSCLIENT # Network Filesystem options NFSSERVER # Network Filesystem Server options NFSLOCKD # Network Lock Manager options NFS_ROOT # NFS usable as /, requires NFSCLIENT -options NTFS # NT File System options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 15:52:49 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD8E1106566B; Mon, 19 Jan 2009 15:52:49 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from pele.citylink.co.nz (pele.citylink.co.nz [202.8.44.226]) by mx1.freebsd.org (Postfix) with ESMTP id 60FFD8FC14; Mon, 19 Jan 2009 15:52:49 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by pele.citylink.co.nz (Postfix) with ESMTP id AF453FEF4; Tue, 20 Jan 2009 04:52:48 +1300 (NZDT) X-Virus-Scanned: Debian amavisd-new at citylink.co.nz Received: from pele.citylink.co.nz ([127.0.0.1]) by localhost (pele.citylink.co.nz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id haiPCldKrIhD; Tue, 20 Jan 2009 04:52:45 +1300 (NZDT) Received: from citylink.fud.org.nz (unknown [202.8.44.45]) by pele.citylink.co.nz (Postfix) with ESMTP; Tue, 20 Jan 2009 04:52:45 +1300 (NZDT) Received: by citylink.fud.org.nz (Postfix, from userid 1001) id AFE841142C; Tue, 20 Jan 2009 04:52:44 +1300 (NZDT) Date: Mon, 19 Jan 2009 07:52:44 -0800 From: Andrew Thompson To: Maxim Sobolev Message-ID: <20090119155244.GB44812@citylink.fud.org.nz> References: <200901191538.n0JFcQla014202@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200901191538.n0JFcQla014202@svn.freebsd.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-6@freebsd.org Subject: Re: svn commit: r187435 - stable/6/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 15:52:50 -0000 On Mon, Jan 19, 2009 at 03:38:26PM +0000, Maxim Sobolev wrote: > Author: sobomax > Date: Mon Jan 19 15:38:26 2009 > New Revision: 187435 > URL: http://svn.freebsd.org/changeset/base/187435 > > Log: > MFC: take NTFS out to match i386 GENERIC. > > Modified: > stable/6/sys/amd64/conf/GENERIC > > Modified: stable/6/sys/amd64/conf/GENERIC > ============================================================================== > --- stable/6/sys/amd64/conf/GENERIC Mon Jan 19 15:36:25 2009 (r187434) > +++ stable/6/sys/amd64/conf/GENERIC Mon Jan 19 15:38:26 2009 (r187435) > @@ -40,7 +40,6 @@ options NFSCLIENT # Network Filesystem > options NFSSERVER # Network Filesystem Server > options NFSLOCKD # Network Lock Manager > options NFS_ROOT # NFS usable as /, requires NFSCLIENT > -options NTFS # NT File System > options MSDOSFS # MSDOS Filesystem > options CD9660 # ISO 9660 Filesystem > options PROCFS # Process filesystem (requires PSEUDOFS) Easy on, this is a stable branch. From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 15:55:13 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9008D106566B; Mon, 19 Jan 2009 15:55:13 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 65B608FC0A; Mon, 19 Jan 2009 15:55:13 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id F3A5D46B03; Mon, 19 Jan 2009 10:55:12 -0500 (EST) Date: Mon, 19 Jan 2009 15:55:12 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Maxim Sobolev In-Reply-To: <200901191536.n0JFaPTN014129@svn.freebsd.org> Message-ID: References: <200901191536.n0JFaPTN014129@svn.freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-7@freebsd.org Subject: Re: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 15:55:15 -0000 On Mon, 19 Jan 2009, Maxim Sobolev wrote: > Author: sobomax > Date: Mon Jan 19 15:36:25 2009 > New Revision: 187434 > URL: http://svn.freebsd.org/changeset/base/187434 > > Log: > MFC: take NTFS option out to match i386 GENERIC. Are you going to modify UPDATING to say that "options NTFS" will now be required where it wasn't previously on amd64? Also, insta-MFC's are generally a bad idea, even for changes believed harmless, as they often have unexpected side effects. Robert N M Watson Computer Laboratory University of Cambridge > > Modified: > stable/7/sys/amd64/conf/GENERIC > > Modified: stable/7/sys/amd64/conf/GENERIC > ============================================================================== > --- stable/7/sys/amd64/conf/GENERIC Mon Jan 19 15:33:06 2009 (r187433) > +++ stable/7/sys/amd64/conf/GENERIC Mon Jan 19 15:36:25 2009 (r187434) > @@ -41,7 +41,6 @@ options NFSCLIENT # Network Filesystem > options NFSSERVER # Network Filesystem Server > options NFSLOCKD # Network Lock Manager > options NFS_ROOT # NFS usable as /, requires NFSCLIENT > -options NTFS # NT File System > options MSDOSFS # MSDOS Filesystem > options CD9660 # ISO 9660 Filesystem > options PROCFS # Process filesystem (requires PSEUDOFS) > From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 15:59:05 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B9AE10656D1; Mon, 19 Jan 2009 15:59:05 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 59DBC8FC0A; Mon, 19 Jan 2009 15:59:05 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JFx5DG014687; Mon, 19 Jan 2009 15:59:05 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JFx5Dc014686; Mon, 19 Jan 2009 15:59:05 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901191559.n0JFx5Dc014686@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 15:59:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187436 - head/sbin/mount_ntfs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 15:59:06 -0000 Author: sobomax Date: Mon Jan 19 15:59:05 2009 New Revision: 187436 URL: http://svn.freebsd.org/changeset/base/187436 Log: In the CAVEATS section mention the fact that the NTFS kernel support isn't very well maintained and point user to sysutils/fusefs-ntfs, which at the time of this writing seems to be a better alternative. Suggested by: luigi MFC after: 2 weeks Modified: head/sbin/mount_ntfs/mount_ntfs.8 Modified: head/sbin/mount_ntfs/mount_ntfs.8 ============================================================================== --- head/sbin/mount_ntfs/mount_ntfs.8 Mon Jan 19 15:38:26 2009 (r187435) +++ head/sbin/mount_ntfs/mount_ntfs.8 Mon Jan 19 15:59:05 2009 (r187436) @@ -154,6 +154,12 @@ This utility is primarily used for read See the .Sx WRITING section for details about writing to an NTFS volume. +.Pp +Apart from being read-mostly, the NTFS support in the +.Fx +kernel is not actively maintained. For any non-trivial use +sysutils/fusefs-ntfs package, a more complete and better +maintained alternative, is recommended instead. .Sh HISTORY The .Nm From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 16:19:53 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C69EF106564A; Mon, 19 Jan 2009 16:19:53 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B53098FC12; Mon, 19 Jan 2009 16:19:53 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JGJrLK015124; Mon, 19 Jan 2009 16:19:53 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JGJrhJ015123; Mon, 19 Jan 2009 16:19:53 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901191619.n0JGJrhJ015123@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 16:19:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187437 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 16:19:54 -0000 Author: sobomax Date: Mon Jan 19 16:19:53 2009 New Revision: 187437 URL: http://svn.freebsd.org/changeset/base/187437 Log: Mention the fact that the NTFS kernel support isn't very well maintained and point user to sysutils/fusefs-ntfs, which at the time of this writing seems to be a better alternative. Suggested by: luigi MFC after: 2 weeks Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES ============================================================================== --- head/sys/conf/NOTES Mon Jan 19 15:59:05 2009 (r187436) +++ head/sys/conf/NOTES Mon Jan 19 16:19:53 2009 (r187437) @@ -942,7 +942,11 @@ options HPFS #OS/2 File system options MSDOSFS #MS DOS File System (FAT, FAT32) options NFSSERVER #Network File System server options NFSLOCKD #Network Lock Manager -options NTFS #NT File System + +# NT File System. Read-mostly and it's not actively maintained. +# For a better NTFS support consider sysutils/fusefs-ntfs port/package. +options NTFS + options NULLFS #NULL filesystem # Broken (depends on NCP): #options NWFS #NetWare filesystem From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 16:35:26 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A6871065688; Mon, 19 Jan 2009 16:35:26 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.freebsd.org (Postfix) with ESMTP id ACD728FC26; Mon, 19 Jan 2009 16:35:25 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from trouble.errno.com (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id n0JGZOaE059006 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 08:35:25 -0800 (PST) (envelope-from sam@freebsd.org) Message-ID: <4974ABCC.7000107@freebsd.org> Date: Mon, 19 Jan 2009 08:35:24 -0800 From: Sam Leffler Organization: FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (X11/20081209) MIME-Version: 1.0 To: Maxim Sobolev References: <200901190710.n0J7ACSg001385@svn.freebsd.org> <497432A1.9060805@samsco.org> <497446D4.5020104@FreeBSD.org> In-Reply-To: <497446D4.5020104@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-DCC-sonic.net-Metrics: ebb.errno.com; whitelist Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 16:35:29 -0000 Maxim Sobolev wrote: > Scott Long wrote: >> prepare to be wrong. And above all else, don't put drivers into here >> that you haven't tested. It's pretty silly to admit in your commit >> message, for all to see, that you are blatantly committing without >> testing. > > Actually this is interesting point, what the best strategy for us as > the project should be? Should we new put drivers that have been tested > on i386 only and don't have any particular reason to be i386-specific > (i.e. ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC > automatically and wait for somebody to report a problem, or stay on > the safe side and enable drivers on amd64 only after somebody actually > has tested them and confirms that they are working? Should this policy > depend on driver class (for example a storage driver has much higher > potential for screwing user's data compared to a network driver or a > sound driver) and on release (HEAD / STABLE)? IMHO FreeBSD could > benefit by putting at least non-storage untested non i386-specific > drivers into amd64 kernel and/or at least in HEAD to give them testing > and a wider exposure. > > This is not just idle interest for me - recently our company has > started shipping amd64 version of our FreeBSD-based product, so that > we are a little bit concerned about hardware support with amd64 7.1 > kernel being a little bit narrower compared to i386 7.1 kernel. > > I apologize if this topic has been discussed somewhere already. I think the answer to your question about default-enabling drivers is very clear: it is the decision of the person maintaining the driver. If you're willing to SUPPORT a driver on a platform then feel free to enable it. Otherwise doing a drive-by to enable a driver that may or may not work may easily result in complaints that are unanswered. These have resulted in people concluding wider breakage that easily becomes de-facto and are hard to kill given that people google for help, find old complaints, and stop searching. Sam From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 16:50:31 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9CD31065677; Mon, 19 Jan 2009 16:50:31 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id 9B9CB8FC12; Mon, 19 Jan 2009 16:50:31 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.2/8.14.2) with ESMTP id n0JGoUPh018643; Mon, 19 Jan 2009 08:50:30 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.2/Submit) id n0JGoUgR018642; Mon, 19 Jan 2009 08:50:30 -0800 (PST) (envelope-from obrien) Date: Mon, 19 Jan 2009 08:50:30 -0800 From: "David O'Brien" To: Robert Watson Message-ID: <20090119165030.GA18409@dragon.NUXI.org> References: <200901161547.n0GFlZ4C012008@svn.freebsd.org> <20090117142021.92d5a40b.stas@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: Stanislav Sedov , svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, Ed Schouten Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 16:50:32 -0000 On Sat, Jan 17, 2009 at 02:00:55PM +0000, Robert Watson wrote: > > On Sat, 17 Jan 2009, Stanislav Sedov wrote: > >> Was this discussed somewhere? I don't understand why we should restrict >> our filesystem naming because of limitation of auxilary filesystems. >> There're even more restrictive filesystems available, we couldn't support >> them all. While previous modifications looked harmless this one seems >> questionable to me. >> >> I understand, this is a bikesched, but I really don't see a reason. You >> can't build FreeBSD on windows anyway. > > Many of us would *very* much like to be able to cross-build FreeBSD from > both Windows and Mac OS X, which would be highly desirable for embedded > systems and appliance shops. Run VMware. Seriously. Or raise a serious discussion on developers@ about this and get conciseness that cross building on MacOS X and MS-Windows is a goal. Juniper Networks creates VM's of FreeBSD build machines when they are upgraded (or decommissioned) so it can build old EOL'ed JUNOS versions if really needed on the same exact FreeBSD version as when the JUNOS version was in full production. If Juniper can do it - FreeBSD developers cannot? For changes like this to be reasoned because of building FreeBSD on Windows there should consensus. For MacOS X - there is a case sensitive FS. > The first obstacle to making that work is > that you can't even check out our source code correctly on those platforms, > so fixing that is an important priority so that the remainder can be worked > on. See above for MacOS X users. -- -- David (obrien@FreeBSD.org) From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 16:54:32 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE5C61065689; Mon, 19 Jan 2009 16:54:32 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id 9869F8FC30; Mon, 19 Jan 2009 16:54:32 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.2/8.14.2) with ESMTP id n0JGsVbR018810; Mon, 19 Jan 2009 08:54:31 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.2/Submit) id n0JGsUAn018809; Mon, 19 Jan 2009 08:54:30 -0800 (PST) (envelope-from obrien) Date: Mon, 19 Jan 2009 08:54:30 -0800 From: "David O'Brien" To: Maxim Sobolev Message-ID: <20090119165430.GA18775@dragon.NUXI.org> References: <200901191538.n0JFcQla014202@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200901191538.n0JFcQla014202@svn.freebsd.org> X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, svn-src-stable-6@FreeBSD.org Subject: Re: svn commit: r187435 - stable/6/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 16:54:33 -0000 On Mon, Jan 19, 2009 at 03:38:26PM +0000, Maxim Sobolev wrote: > Author: sobomax > Date: Mon Jan 19 15:38:26 2009 > New Revision: 187435 > URL: http://svn.freebsd.org/changeset/base/187435 > > Log: > MFC: take NTFS out to match i386 GENERIC. > > Modified: > stable/6/sys/amd64/conf/GENERIC .. > Modified: stable/6/sys/amd64/conf/GENERIC > -options NTFS # NT File System Seriously - this is the type of change that could easily piss off our users. Please back it out. At this point for 6.x this is really a POLA issue. From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 16:55:04 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F4E910656C1; Mon, 19 Jan 2009 16:55:04 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 66F178FC1A; Mon, 19 Jan 2009 16:55:04 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id 20F5146B39; Mon, 19 Jan 2009 11:55:04 -0500 (EST) Date: Mon, 19 Jan 2009 16:55:04 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: David O'Brien In-Reply-To: <20090119165030.GA18409@dragon.NUXI.org> Message-ID: References: <200901161547.n0GFlZ4C012008@svn.freebsd.org> <20090117142021.92d5a40b.stas@FreeBSD.org> <20090119165030.GA18409@dragon.NUXI.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Stanislav Sedov , svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, Ed Schouten Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 16:55:05 -0000 On Mon, 19 Jan 2009, David O'Brien wrote: > For changes like this to be reasoned because of building FreeBSD on Windows > there should consensus. For MacOS X - there is a case sensitive FS. So I have to reformat my Mac OS X file systems in order to check out FreeBSD source trees on them because the jot(1) regression test relies on having two files in the same directory that differ only in case? :-) No one is saying you should be able to check out FreeBSD source trees using 8.3 DOS filenames, but I think avoiding case collisions makes a lot of sense. Robert N M Watson Computer Laboratory University of Cambridge From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 16:57:45 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C3D21065672; Mon, 19 Jan 2009 16:57:45 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk1.360sip.com [72.236.70.240]) by mx1.freebsd.org (Postfix) with ESMTP id 436E38FC1A; Mon, 19 Jan 2009 16:57:44 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.38] (S0106001372fd1e07.vs.shawcable.net [70.71.171.106]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id n0JGvhxP013803 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 08:57:43 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Message-ID: <4974B0FD.2060104@FreeBSD.org> Date: Mon, 19 Jan 2009 08:57:33 -0800 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Robert Watson References: <200901191536.n0JFaPTN014129@svn.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, svn-src-stable-7@FreeBSD.org Subject: Re: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 16:57:45 -0000 Robert Watson wrote: > > On Mon, 19 Jan 2009, Maxim Sobolev wrote: > >> Author: sobomax >> Date: Mon Jan 19 15:36:25 2009 >> New Revision: 187434 >> URL: http://svn.freebsd.org/changeset/base/187434 >> >> Log: >> MFC: take NTFS option out to match i386 GENERIC. > > Are you going to modify UPDATING to say that "options NTFS" will now be > required where it wasn't previously on amd64? It should not cause any issues, as the mount_ntfs(8) auto-loads ntfs.ko module as needed. However, I am adding UPDATING entry just in case. -Maxim From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 17:00:42 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94B4F1065672; Mon, 19 Jan 2009 17:00:42 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8377F8FC1F; Mon, 19 Jan 2009 17:00:42 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JH0gdF015996; Mon, 19 Jan 2009 17:00:42 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JH0gio015995; Mon, 19 Jan 2009 17:00:42 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901191700.n0JH0gio015995@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 17:00:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187438 - head X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 17:00:43 -0000 Author: sobomax Date: Mon Jan 19 17:00:42 2009 New Revision: 187438 URL: http://svn.freebsd.org/changeset/base/187438 Log: Mention removal of NTFS from GENERIC/amd64. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Mon Jan 19 16:19:53 2009 (r187437) +++ head/UPDATING Mon Jan 19 17:00:42 2009 (r187438) @@ -22,6 +22,14 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 8. to maximize performance. (To disable malloc debugging, run ln -s aj /etc/malloc.conf.) +20090119: + NTFS has been removed from GENERIC kernel on amd64 to match + GENERIC on i386. Should not cause any issues since mount_ntfs(8) + will load ntfs.ko module automatically when NTFS support is + actually needed, unless ntfs.ko is not installed or security + level prohibits loading kernel modules. If either is the case, + "options NTFS" has to be added into kernel config. + 20090115: TCP Appropriate Byte Counting (RFC 3465) support added to kernel. New field in struct tcpcb breaks ABI, so bump __FreeBSD_version to From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 17:03:48 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A722106564A; Mon, 19 Jan 2009 17:03:48 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5F2258FC13; Mon, 19 Jan 2009 17:03:48 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JH3mFF016118; Mon, 19 Jan 2009 17:03:48 GMT (envelope-from obrien@svn.freebsd.org) Received: (from obrien@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JH3mav016117; Mon, 19 Jan 2009 17:03:48 GMT (envelope-from obrien@svn.freebsd.org) Message-Id: <200901191703.n0JH3mav016117@svn.freebsd.org> From: "David E. O'Brien" Date: Mon, 19 Jan 2009 17:03:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-svnadmin@freebsd.org X-SVN-Group: svnadmin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187439 - svnadmin/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 17:03:48 -0000 Author: obrien Date: Mon Jan 19 17:03:46 2009 New Revision: 187439 URL: http://svn.freebsd.org/changeset/base/187439 Log: Binutils and GDB flattening is in progress Modified: svnadmin/conf/paths Modified: svnadmin/conf/paths ============================================================================== --- svnadmin/conf/paths Mon Jan 19 17:00:42 2009 (r187438) +++ svnadmin/conf/paths Mon Jan 19 17:03:46 2009 (r187439) @@ -47,7 +47,9 @@ ^vendor/cpio ^vendor/bind9 ^vendor/bsnmp +^vendor/binutils ^vendor/file +^vendor/gdb ^vendor/gdtoa ^vendor/libbegemot ^vendor/ncurses From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 17:12:48 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8305106566B; Mon, 19 Jan 2009 17:12:48 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk1.360sip.com [72.236.70.240]) by mx1.freebsd.org (Postfix) with ESMTP id 63E738FC1C; Mon, 19 Jan 2009 17:12:48 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.38] (S0106001372fd1e07.vs.shawcable.net [70.71.171.106]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id n0JHCkWM014595 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 09:12:47 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Message-ID: <4974B484.7030608@FreeBSD.org> Date: Mon, 19 Jan 2009 09:12:36 -0800 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Sam Leffler References: <200901190710.n0J7ACSg001385@svn.freebsd.org> <497432A1.9060805@samsco.org> <497446D4.5020104@FreeBSD.org> <4974ABCC.7000107@freebsd.org> In-Reply-To: <4974ABCC.7000107@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 17:12:49 -0000 Sam Leffler wrote: > Maxim Sobolev wrote: >> Scott Long wrote: >>> prepare to be wrong. And above all else, don't put drivers into here >>> that you haven't tested. It's pretty silly to admit in your commit >>> message, for all to see, that you are blatantly committing without >>> testing. >> >> Actually this is interesting point, what the best strategy for us as >> the project should be? Should we new put drivers that have been tested >> on i386 only and don't have any particular reason to be i386-specific >> (i.e. ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC >> automatically and wait for somebody to report a problem, or stay on >> the safe side and enable drivers on amd64 only after somebody actually >> has tested them and confirms that they are working? Should this policy >> depend on driver class (for example a storage driver has much higher >> potential for screwing user's data compared to a network driver or a >> sound driver) and on release (HEAD / STABLE)? IMHO FreeBSD could >> benefit by putting at least non-storage untested non i386-specific >> drivers into amd64 kernel and/or at least in HEAD to give them testing >> and a wider exposure. >> >> This is not just idle interest for me - recently our company has >> started shipping amd64 version of our FreeBSD-based product, so that >> we are a little bit concerned about hardware support with amd64 7.1 >> kernel being a little bit narrower compared to i386 7.1 kernel. >> >> I apologize if this topic has been discussed somewhere already. > > I think the answer to your question about default-enabling drivers is > very clear: it is the decision of the person maintaining the driver. If > you're willing to SUPPORT a driver on a platform then feel free to > enable it. Otherwise doing a drive-by to enable a driver that may or > may not work may easily result in complaints that are unanswered. These > have resulted in people concluding wider breakage that easily becomes > de-facto and are hard to kill given that people google for help, find > old complaints, and stop searching. OK, makes sense. By the way, there is a question on this topic to you. The wi(4) has been removed from i386 GENERIC, but it is still present in amd64 GENERIC. Is it intentional or just a mistake? -Maxim From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 17:14:03 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E76E7106564A; Mon, 19 Jan 2009 17:14:03 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D5B7B8FC16; Mon, 19 Jan 2009 17:14:03 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JHE3Sb016365; Mon, 19 Jan 2009 17:14:03 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JHE3fA016364; Mon, 19 Jan 2009 17:14:03 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901191714.n0JHE3fA016364@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 17:14:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187440 - stable/7 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 17:14:04 -0000 Author: sobomax Date: Mon Jan 19 17:14:03 2009 New Revision: 187440 URL: http://svn.freebsd.org/changeset/base/187440 Log: MFC: mention removal of NTFS from GENERIC/amd64. Modified: stable/7/UPDATING Modified: stable/7/UPDATING ============================================================================== --- stable/7/UPDATING Mon Jan 19 17:03:46 2009 (r187439) +++ stable/7/UPDATING Mon Jan 19 17:14:03 2009 (r187440) @@ -8,6 +8,14 @@ Items affecting the ports and packages s /usr/ports/UPDATING. Please read that file before running portupgrade. +20090119: + NTFS has been removed from GENERIC kernel on amd64 to match + GENERIC on i386. Should not cause any issues since mount_ntfs(8) + will load ntfs.ko module automatically when NTFS support is + actually needed, unless ntfs.ko is not installed or security + level prohibits loading kernel modules. If either is the case, + "options NTFS" has to be added into kernel config. + 20090110: powerd(8) was updated to get better SMP support. Meanings of the -i and -r command line options were changed. From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 17:17:32 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C50E2106566B; Mon, 19 Jan 2009 17:17:32 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B31CF8FC0C; Mon, 19 Jan 2009 17:17:32 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JHHWuT016466; Mon, 19 Jan 2009 17:17:32 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JHHWHL016465; Mon, 19 Jan 2009 17:17:32 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901191717.n0JHHWHL016465@svn.freebsd.org> From: Maxim Sobolev Date: Mon, 19 Jan 2009 17:17:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187441 - stable/6/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 17:17:33 -0000 Author: sobomax Date: Mon Jan 19 17:17:32 2009 New Revision: 187441 URL: http://svn.freebsd.org/changeset/base/187441 Log: Put NTFS back, it's probably not worth to touch 6-STABLE now when it's in the maintenance mode and AFAIK no more releases are planned from this branch. Modified: stable/6/sys/amd64/conf/GENERIC Modified: stable/6/sys/amd64/conf/GENERIC ============================================================================== --- stable/6/sys/amd64/conf/GENERIC Mon Jan 19 17:14:03 2009 (r187440) +++ stable/6/sys/amd64/conf/GENERIC Mon Jan 19 17:17:32 2009 (r187441) @@ -40,6 +40,7 @@ options NFSCLIENT # Network Filesystem options NFSSERVER # Network Filesystem Server options NFSLOCKD # Network Lock Manager options NFS_ROOT # NFS usable as /, requires NFSCLIENT +options NTFS # NT File System options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 17:20:09 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFCFA1065672; Mon, 19 Jan 2009 17:20:09 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BF1348FC14; Mon, 19 Jan 2009 17:20:09 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JHK9oW016561; Mon, 19 Jan 2009 17:20:09 GMT (envelope-from sam@svn.freebsd.org) Received: (from sam@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JHK9IQ016560; Mon, 19 Jan 2009 17:20:09 GMT (envelope-from sam@svn.freebsd.org) Message-Id: <200901191720.n0JHK9IQ016560@svn.freebsd.org> From: Sam Leffler Date: Mon, 19 Jan 2009 17:20:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187442 - head/sys/i386/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 17:20:10 -0000 Author: sam Date: Mon Jan 19 17:20:09 2009 New Revision: 187442 URL: http://svn.freebsd.org/changeset/base/187442 Log: re-enable wi: was accidentally disabled in r1.502 Modified: head/sys/i386/conf/GENERIC Modified: head/sys/i386/conf/GENERIC ============================================================================== --- head/sys/i386/conf/GENERIC Mon Jan 19 17:17:32 2009 (r187441) +++ head/sys/i386/conf/GENERIC Mon Jan 19 17:20:09 2009 (r187442) @@ -275,7 +275,7 @@ device ath_hal # pci/cardbus chip supp options AH_SUPPORT_AR5416 # enable AR5416 tx/rx descriptors device ath_rate_sample # SampleRate tx rate control for ath device ral # Ralink Technology RT2500 wireless NICs. -#device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. +device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. #device wl # Older non 802.11 Wavelan wireless NIC. # Pseudo devices. From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 17:32:33 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B1A51065693; Mon, 19 Jan 2009 17:32:33 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4FDAA8FC24; Mon, 19 Jan 2009 17:32:33 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JHWXMK016882; Mon, 19 Jan 2009 17:32:33 GMT (envelope-from obrien@svn.freebsd.org) Received: (from obrien@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JHWX3a016881; Mon, 19 Jan 2009 17:32:33 GMT (envelope-from obrien@svn.freebsd.org) Message-Id: <200901191732.n0JHWX3a016881@svn.freebsd.org> From: "David E. O'Brien" Date: Mon, 19 Jan 2009 17:32:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-svnadmin@freebsd.org X-SVN-Group: svnadmin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187444 - svnadmin/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 17:32:33 -0000 Author: obrien Date: Mon Jan 19 17:32:32 2009 New Revision: 187444 URL: http://svn.freebsd.org/changeset/base/187444 Log: Seems I'm 271665 over my limit - bump it. Modified: svnadmin/conf/sizelimit.conf Modified: svnadmin/conf/sizelimit.conf ============================================================================== --- svnadmin/conf/sizelimit.conf Mon Jan 19 17:25:17 2009 (r187443) +++ svnadmin/conf/sizelimit.conf Mon Jan 19 17:32:32 2009 (r187444) @@ -19,3 +19,4 @@ #kan des lstewart +obrien From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 17:33:40 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E945106568D; Mon, 19 Jan 2009 17:33:40 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [IPv6:2001:7b8:613:100::211]) by mx1.freebsd.org (Postfix) with ESMTP id 358288FC14; Mon, 19 Jan 2009 17:33:40 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 089F61CDC2; Mon, 19 Jan 2009 18:33:39 +0100 (CET) Date: Mon, 19 Jan 2009 18:33:39 +0100 From: Ed Schouten To: David O'Brien Message-ID: <20090119173339.GG1247@hoeg.nl> References: <200901161547.n0GFlZ4C012008@svn.freebsd.org> <20090117142021.92d5a40b.stas@FreeBSD.org> <20090119165030.GA18409@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="iY5udFbGw2SsPZe4" Content-Disposition: inline In-Reply-To: <20090119165030.GA18409@dragon.NUXI.org> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: Stanislav Sedov , svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, Robert Watson Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 17:33:41 -0000 --iY5udFbGw2SsPZe4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * David O'Brien wrote: > Run VMware. Seriously. Or raise a serious discussion on developers@ > about this and get conciseness that cross building on MacOS X and > MS-Windows is a goal. It is not about cross compilation. Not being able to check out sources on a common used operating system makes little to no sense at all. An example: I never ever run Linux, but I do have the Git tree of the Linux kernel on one of my systems, so I can do some comparisons between certain FreeBSD and Linux features. This doesn't mean I want to cross compile Linux kernels on my FreeBSD system. I think it would be very useful if I could at least read FreeBSD sources on my laptop, instead of SSH'ing to my development box at home. --=20 Ed Schouten WWW: http://80386.nl/ --iY5udFbGw2SsPZe4 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkl0uXIACgkQ52SDGA2eCwX0OwCfe+ayiC/5Eo7SVtDa3PEw/CIR bYQAn1YWAnajLllka1zWg9otroxPFKOQ =BmHD -----END PGP SIGNATURE----- --iY5udFbGw2SsPZe4-- From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 17:25:35 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CC391065672; Mon, 19 Jan 2009 17:25:35 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3D3E78FC1B; Mon, 19 Jan 2009 17:25:35 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JHPZj7016701; Mon, 19 Jan 2009 17:25:35 GMT (envelope-from obrien@svn.freebsd.org) Received: (from obrien@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JHPX0X016700; Mon, 19 Jan 2009 17:25:33 GMT (envelope-from obrien@svn.freebsd.org) Message-Id: <200901191725.n0JHPX0X016700@svn.freebsd.org> From: "David E. O'Brien" Date: Mon, 19 Jan 2009 17:25:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Mon, 19 Jan 2009 17:54:23 +0000 Cc: Subject: svn commit: r187443 - in vendor/binutils: 2.10.0/contrib 2.10.0/x 2.10.0/x/binutils 2.10.0/x/binutils/bfd 2.10.0/x/binutils/bfd/doc 2.10.0/x/binutils/bfd/hosts 2.10.0/x/binutils/bfd/po 2.10.0/x/bin... X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 17:25:36 -0000 Author: obrien Date: Mon Jan 19 17:25:17 2009 New Revision: 187443 URL: http://svn.freebsd.org/changeset/base/187443 Log: Rename vendor/binutils/*/contrib to vendor/binutils/*/x Binutils has a "contrib" subdirectory - thus flattening cannot happen without renaming the upper level contrib directory in a first pass. Also, don't record this move and remove any keyword expansion. Added: vendor/binutils/2.10.0/x/ - copied from r187300, vendor/binutils/2.10.0/contrib/ vendor/binutils/2.10.1/x/ - copied from r187300, vendor/binutils/2.10.1/contrib/ vendor/binutils/2.11.0/x/ - copied from r187300, vendor/binutils/2.11.0/contrib/ vendor/binutils/2.11.2/x/ - copied from r187300, vendor/binutils/2.11.2/contrib/ vendor/binutils/2.11.20010719/x/ - copied from r187300, vendor/binutils/2.11.20010719/contrib/ vendor/binutils/2.11.20011031/x/ - copied from r187300, vendor/binutils/2.11.20011031/contrib/ vendor/binutils/2.12.20020221/x/ - copied from r187300, vendor/binutils/2.12.20020221/contrib/ vendor/binutils/2.12.20020320/x/ - copied from r187300, vendor/binutils/2.12.20020320/contrib/ vendor/binutils/2.12.20020410/x/ - copied from r187300, vendor/binutils/2.12.20020410/contrib/ vendor/binutils/2.12.20020622/x/ - copied from r187300, vendor/binutils/2.12.20020622/contrib/ vendor/binutils/2.12.20020720/x/ - copied from r187300, vendor/binutils/2.12.20020720/contrib/ vendor/binutils/2.13.20021011/x/ - copied from r187300, vendor/binutils/2.13.20021011/contrib/ vendor/binutils/2.13.2_20021127/x/ - copied from r187300, vendor/binutils/2.13.2_20021127/contrib/ vendor/binutils/2.15.20040523/x/ - copied from r187300, vendor/binutils/2.15.20040523/contrib/ vendor/binutils/2.15.20050217/x/ - copied from r187300, vendor/binutils/2.15.20050217/contrib/ vendor/binutils/2.15.NOTHING/x/ - copied from r187300, vendor/binutils/2.15.NOTHING/contrib/ vendor/binutils/2.15.cvsrev_1_51/x/ - copied from r187300, vendor/binutils/2.15.cvsrev_1_51/contrib/ vendor/binutils/2.8.1/x/ - copied from r187300, vendor/binutils/2.8.1/contrib/ vendor/binutils/2.9.1/x/ - copied from r187300, vendor/binutils/2.9.1/contrib/ vendor/binutils/anoncvs_20000414/x/ - copied from r187300, vendor/binutils/anoncvs_20000414/contrib/ vendor/binutils/anoncvs_20020127/x/ - copied from r187300, vendor/binutils/anoncvs_20020127/contrib/ vendor/binutils/cygnus_sourceware_anoncvs_19990502/x/ - copied from r187300, vendor/binutils/cygnus_sourceware_anoncvs_19990502/contrib/ vendor/binutils/dist/x/ - copied from r187439, vendor/binutils/dist/contrib/ vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/ - copied from r187300, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/contrib/ vendor/binutils/sourceware_binutils_anoncvs_19990502/x/ - copied from r187300, vendor/binutils/sourceware_binutils_anoncvs_19990502/contrib/ vendor/binutils/sourceware_binutils_anoncvs_20000414/x/ - copied from r187300, vendor/binutils/sourceware_binutils_anoncvs_20000414/contrib/ vendor/binutils/sourceware_binutils_anoncvs_20000512/x/ - copied from r187300, vendor/binutils/sourceware_binutils_anoncvs_20000512/contrib/ Deleted: vendor/binutils/2.10.0/contrib/ vendor/binutils/2.10.1/contrib/ vendor/binutils/2.11.0/contrib/ vendor/binutils/2.11.2/contrib/ vendor/binutils/2.11.20010719/contrib/ vendor/binutils/2.11.20011031/contrib/ vendor/binutils/2.12.20020221/contrib/ vendor/binutils/2.12.20020320/contrib/ vendor/binutils/2.12.20020410/contrib/ vendor/binutils/2.12.20020622/contrib/ vendor/binutils/2.12.20020720/contrib/ vendor/binutils/2.13.20021011/contrib/ vendor/binutils/2.13.2_20021127/contrib/ vendor/binutils/2.15.20040523/contrib/ vendor/binutils/2.15.20050217/contrib/ vendor/binutils/2.15.NOTHING/contrib/ vendor/binutils/2.15.cvsrev_1_51/contrib/ vendor/binutils/2.8.1/contrib/ vendor/binutils/2.9.1/contrib/ vendor/binutils/anoncvs_20000414/contrib/ vendor/binutils/anoncvs_20020127/contrib/ vendor/binutils/cygnus_sourceware_anoncvs_19990502/contrib/ vendor/binutils/dist/contrib/ vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/contrib/ vendor/binutils/sourceware_binutils_anoncvs_19990502/contrib/ vendor/binutils/sourceware_binutils_anoncvs_20000414/contrib/ vendor/binutils/sourceware_binutils_anoncvs_20000512/contrib/ Modified: vendor/binutils/2.10.0/x/binutils/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/Makefile.in (props changed) vendor/binutils/2.10.0/x/binutils/README (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.10.0/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.10.0/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.10.0/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.10.0/x/binutils/bfd/README (props changed) vendor/binutils/2.10.0/x/binutils/bfd/TODO (props changed) vendor/binutils/2.10.0/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coff-mips.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.10.0/x/binutils/bfd/config.in (props changed) vendor/binutils/2.10.0/x/binutils/bfd/configure (props changed) vendor/binutils/2.10.0/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.10.0/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.10.0/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-mips.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.10.0/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf32-mips.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf64-mips.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/format.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/init.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/mipsbsd.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/pe-mips.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.10.0/x/binutils/bfd/po/POTFILES.in (props changed) vendor/binutils/2.10.0/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/section.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.10.0/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.10.0/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.10.0/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.10.0/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.10.0/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.10.0/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.10.0/x/binutils/binutils/README (props changed) vendor/binutils/2.10.0/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/ar.1 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.10.0/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.10.0/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.10.0/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/2.10.0/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.10.0/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.10.0/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.10.0/x/binutils/binutils/config.in (props changed) vendor/binutils/2.10.0/x/binutils/binutils/config.texi (props changed) vendor/binutils/2.10.0/x/binutils/binutils/configure (props changed) vendor/binutils/2.10.0/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.10.0/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/2.10.0/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.10.0/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.10.0/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.10.0/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.10.0/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.10.0/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.10.0/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/dyn-string.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/dyn-string.h (props changed) vendor/binutils/2.10.0/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/nm.1 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.10.0/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.10.0/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.10.0/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.10.0/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.10.0/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.10.0/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.10.0/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.10.0/x/binutils/binutils/size.1 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/size.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.10.0/x/binutils/binutils/strings.1 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/strip.1 (props changed) vendor/binutils/2.10.0/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.10.0/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.10.0/x/binutils/binutils/version.c (props changed) vendor/binutils/2.10.0/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.10.0/x/binutils/config-ml.in (props changed) vendor/binutils/2.10.0/x/binutils/config.guess (props changed) vendor/binutils/2.10.0/x/binutils/config.sub (props changed) vendor/binutils/2.10.0/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-papic (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-sco (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.10.0/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.10.0/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.10.0/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.10.0/x/binutils/config/mt-linux (props changed) vendor/binutils/2.10.0/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.10.0/x/binutils/config/mt-papic (props changed) vendor/binutils/2.10.0/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.10.0/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.10.0/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.10.0/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.10.0/x/binutils/configure (props changed) vendor/binutils/2.10.0/x/binutils/configure.in (props changed) vendor/binutils/2.10.0/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.10.0/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.10.0/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.10.0/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.10.0/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.10.0/x/binutils/gas/NEWS (props changed) vendor/binutils/2.10.0/x/binutils/gas/README (props changed) vendor/binutils/2.10.0/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.10.0/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.10.0/x/binutils/gas/app.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/as.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/as.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/cond.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config.in (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/configure (props changed) vendor/binutils/2.10.0/x/binutils/gas/configure.in (props changed) vendor/binutils/2.10.0/x/binutils/gas/debug.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.10.0/x/binutils/gas/depend.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.10.0/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.10.0/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/emul.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/expr.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/expr.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/frags.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/frags.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.10.0/x/binutils/gas/hash.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/hash.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.10.0/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.10.0/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.10.0/x/binutils/gas/listing.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/listing.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/literal.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/macro.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/macro.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/messages.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/obj.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.10.0/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.10.0/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.10.0/x/binutils/gas/read.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/read.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/sb.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/sb.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.10.0/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/tc.h (props changed) vendor/binutils/2.10.0/x/binutils/gas/write.c (props changed) vendor/binutils/2.10.0/x/binutils/gas/write.h (props changed) vendor/binutils/2.10.0/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.10.0/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.10.0/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.10.0/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.10.0/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.10.0/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.10.0/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.10.0/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.10.0/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.10.0/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.10.0/x/binutils/include/callback.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/tic30.h (props changed) vendor/binutils/2.10.0/x/binutils/include/coff/z8k.h (props changed) vendor/binutils/2.10.0/x/binutils/include/demangle.h (props changed) vendor/binutils/2.10.0/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/arm-oabi.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/po/Make-in (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/po/POTFILES.in (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/po/binutils.pot (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.10.0/x/binutils/include/filenames.h (props changed) vendor/binutils/2.10.0/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.10.0/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.10.0/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.10.0/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.10.0/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.10.0/x/binutils/include/getopt.h (props changed) vendor/binutils/2.10.0/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.10.0/x/binutils/include/ieee.h (props changed) vendor/binutils/2.10.0/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.10.0/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/obstack.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/mips.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.10.0/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.10.0/x/binutils/include/partition.h (props changed) vendor/binutils/2.10.0/x/binutils/include/progress.h (props changed) vendor/binutils/2.10.0/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.10.0/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.10.0/x/binutils/include/symcat.h (props changed) vendor/binutils/2.10.0/x/binutils/install-sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.10.0/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.10.0/x/binutils/ld/NEWS (props changed) vendor/binutils/2.10.0/x/binutils/ld/README (props changed) vendor/binutils/2.10.0/x/binutils/ld/TODO (props changed) vendor/binutils/2.10.0/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.10.0/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.10.0/x/binutils/ld/config.in (props changed) vendor/binutils/2.10.0/x/binutils/ld/configure (props changed) vendor/binutils/2.10.0/x/binutils/ld/configure.host (props changed) vendor/binutils/2.10.0/x/binutils/ld/configure.in (props changed) vendor/binutils/2.10.0/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.10.0/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.10.0/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/armelf_linux26.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32bmipn32.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf64bmip.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.10.0/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.10.0/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.10.0/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.10.0/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.10.0/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.10.0/x/binutils/ld/ld.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/mri.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/mri.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.10.0/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.10.0/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.10.0/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.10.0/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/elfppc.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.10.0/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.10.0/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/README (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/acconfig.h (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/alloca-conf.h (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/configure (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.10.0/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.10.0/x/binutils/ltconfig (props changed) vendor/binutils/2.10.0/x/binutils/ltmain.sh (props changed) vendor/binutils/2.10.0/x/binutils/missing (props changed) vendor/binutils/2.10.0/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.10.0/x/binutils/move-if-change (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/configure (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.10.0/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.10.0/x/binutils/symlink-tree (props changed) vendor/binutils/2.10.0/x/binutils/ylwrap (props changed) vendor/binutils/2.10.1/x/binutils/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/README (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.10.1/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.10.1/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.10.1/x/binutils/bfd/README (props changed) vendor/binutils/2.10.1/x/binutils/bfd/TODO (props changed) vendor/binutils/2.10.1/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coff-mips.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.10.1/x/binutils/bfd/config.in (props changed) vendor/binutils/2.10.1/x/binutils/bfd/configure (props changed) vendor/binutils/2.10.1/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.10.1/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.10.1/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-mips.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.10.1/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf32-mips.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf64-mips.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/format.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/init.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/mipsbsd.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/pe-mips.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.10.1/x/binutils/bfd/po/POTFILES.in (props changed) vendor/binutils/2.10.1/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/section.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.10.1/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.10.1/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.10.1/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.10.1/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.10.1/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.10.1/x/binutils/binutils/README (props changed) vendor/binutils/2.10.1/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/ar.1 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.10.1/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.10.1/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.10.1/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/2.10.1/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.10.1/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.10.1/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.10.1/x/binutils/binutils/config.in (props changed) vendor/binutils/2.10.1/x/binutils/binutils/config.texi (props changed) vendor/binutils/2.10.1/x/binutils/binutils/configure (props changed) vendor/binutils/2.10.1/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.10.1/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/2.10.1/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.10.1/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.10.1/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.10.1/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.10.1/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.10.1/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.10.1/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/nm.1 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.10.1/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.10.1/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.10.1/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.10.1/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.10.1/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.10.1/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.10.1/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.10.1/x/binutils/binutils/size.1 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/size.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.10.1/x/binutils/binutils/strings.1 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/strip.1 (props changed) vendor/binutils/2.10.1/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.10.1/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.10.1/x/binutils/binutils/version.c (props changed) vendor/binutils/2.10.1/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.10.1/x/binutils/config-ml.in (props changed) vendor/binutils/2.10.1/x/binutils/config.guess (props changed) vendor/binutils/2.10.1/x/binutils/config.sub (props changed) vendor/binutils/2.10.1/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-papic (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-sco (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.10.1/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.10.1/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.10.1/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.10.1/x/binutils/config/mt-linux (props changed) vendor/binutils/2.10.1/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.10.1/x/binutils/config/mt-papic (props changed) vendor/binutils/2.10.1/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.10.1/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.10.1/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.10.1/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.10.1/x/binutils/configure (props changed) vendor/binutils/2.10.1/x/binutils/configure.in (props changed) vendor/binutils/2.10.1/x/binutils/etc/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/etc/configbuild.ein (props changed) vendor/binutils/2.10.1/x/binutils/etc/configbuild.fig (props changed) vendor/binutils/2.10.1/x/binutils/etc/configbuild.jin (props changed) vendor/binutils/2.10.1/x/binutils/etc/configbuild.tin (props changed) vendor/binutils/2.10.1/x/binutils/etc/configdev.ein (props changed) vendor/binutils/2.10.1/x/binutils/etc/configdev.fig (props changed) vendor/binutils/2.10.1/x/binutils/etc/configdev.jin (props changed) vendor/binutils/2.10.1/x/binutils/etc/configdev.tin (props changed) vendor/binutils/2.10.1/x/binutils/etc/configure (props changed) vendor/binutils/2.10.1/x/binutils/etc/configure.in (props changed) vendor/binutils/2.10.1/x/binutils/etc/configure.texi (props changed) vendor/binutils/2.10.1/x/binutils/etc/make-stds.texi (props changed) vendor/binutils/2.10.1/x/binutils/etc/standards.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.10.1/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.10.1/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.10.1/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.10.1/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/gas/NEWS (props changed) vendor/binutils/2.10.1/x/binutils/gas/README (props changed) vendor/binutils/2.10.1/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.10.1/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.10.1/x/binutils/gas/app.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/as.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/as.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/cond.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config.in (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/configure (props changed) vendor/binutils/2.10.1/x/binutils/gas/configure.in (props changed) vendor/binutils/2.10.1/x/binutils/gas/debug.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.10.1/x/binutils/gas/depend.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.10.1/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/emul.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/expr.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/expr.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/frags.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/frags.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.10.1/x/binutils/gas/hash.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/hash.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.10.1/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.10.1/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.10.1/x/binutils/gas/listing.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/listing.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/literal.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/macro.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/macro.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/messages.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/obj.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.10.1/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.10.1/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.10.1/x/binutils/gas/read.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/read.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/sb.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/sb.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.10.1/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/tc.h (props changed) vendor/binutils/2.10.1/x/binutils/gas/write.c (props changed) vendor/binutils/2.10.1/x/binutils/gas/write.h (props changed) vendor/binutils/2.10.1/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.10.1/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.10.1/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.10.1/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.10.1/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.10.1/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.10.1/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.10.1/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.10.1/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.10.1/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.10.1/x/binutils/include/callback.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/tic30.h (props changed) vendor/binutils/2.10.1/x/binutils/include/coff/z8k.h (props changed) vendor/binutils/2.10.1/x/binutils/include/demangle.h (props changed) vendor/binutils/2.10.1/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.10.1/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/arm-oabi.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.10.1/x/binutils/include/filenames.h (props changed) vendor/binutils/2.10.1/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.10.1/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.10.1/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.10.1/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.10.1/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.10.1/x/binutils/include/getopt.h (props changed) vendor/binutils/2.10.1/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.10.1/x/binutils/include/ieee.h (props changed) vendor/binutils/2.10.1/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.10.1/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/obstack.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/mips.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.10.1/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.10.1/x/binutils/include/partition.h (props changed) vendor/binutils/2.10.1/x/binutils/include/progress.h (props changed) vendor/binutils/2.10.1/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.10.1/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.10.1/x/binutils/include/symcat.h (props changed) vendor/binutils/2.10.1/x/binutils/install-sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.10.1/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/ld/NEWS (props changed) vendor/binutils/2.10.1/x/binutils/ld/README (props changed) vendor/binutils/2.10.1/x/binutils/ld/TODO (props changed) vendor/binutils/2.10.1/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.10.1/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.10.1/x/binutils/ld/config.in (props changed) vendor/binutils/2.10.1/x/binutils/ld/configdoc.texi (props changed) vendor/binutils/2.10.1/x/binutils/ld/configure (props changed) vendor/binutils/2.10.1/x/binutils/ld/configure.host (props changed) vendor/binutils/2.10.1/x/binutils/ld/configure.in (props changed) vendor/binutils/2.10.1/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.10.1/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.10.1/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/armelf_linux26.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32bmipn32.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf64bmip.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.10.1/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.10.1/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.10.1/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.10.1/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.10.1/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.10.1/x/binutils/ld/ld.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/mri.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/mri.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.10.1/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.10.1/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.10.1/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.10.1/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/elfppc.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.10.1/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.10.1/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/README (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/acconfig.h (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/alloca-conf.h (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/configure (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.10.1/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.10.1/x/binutils/ltconfig (props changed) vendor/binutils/2.10.1/x/binutils/ltmain.sh (props changed) vendor/binutils/2.10.1/x/binutils/missing (props changed) vendor/binutils/2.10.1/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.10.1/x/binutils/move-if-change (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/configure (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.10.1/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.10.1/x/binutils/symlink-tree (props changed) vendor/binutils/2.10.1/x/binutils/ylwrap (props changed) vendor/binutils/2.11.0/x/binutils/Makefile.in (props changed) vendor/binutils/2.11.0/x/binutils/README (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.11.0/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.11.0/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.11.0/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.11.0/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.11.0/x/binutils/bfd/README (props changed) vendor/binutils/2.11.0/x/binutils/bfd/TODO (props changed) vendor/binutils/2.11.0/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.11.0/x/binutils/bfd/config.in (props changed) vendor/binutils/2.11.0/x/binutils/bfd/configure (props changed) vendor/binutils/2.11.0/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.11.0/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.11.0/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.11.0/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/format.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/init.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.11.0/x/binutils/bfd/po/POTFILES.in (props changed) vendor/binutils/2.11.0/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/section.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.11.0/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.11.0/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.11.0/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.11.0/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.11.0/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.11.0/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.11.0/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.11.0/x/binutils/binutils/README (props changed) vendor/binutils/2.11.0/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/ar.1 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.11.0/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.11.0/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.11.0/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/2.11.0/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.11.0/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.11.0/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.11.0/x/binutils/binutils/config.in (props changed) vendor/binutils/2.11.0/x/binutils/binutils/config.texi (props changed) vendor/binutils/2.11.0/x/binutils/binutils/configure (props changed) vendor/binutils/2.11.0/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.11.0/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/2.11.0/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.11.0/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.11.0/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.11.0/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.11.0/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.11.0/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.11.0/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/nm.1 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.11.0/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.11.0/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.11.0/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.11.0/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.11.0/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.11.0/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.11.0/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.11.0/x/binutils/binutils/size.1 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/size.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.11.0/x/binutils/binutils/strings.1 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/strip.1 (props changed) vendor/binutils/2.11.0/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.11.0/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.11.0/x/binutils/binutils/version.c (props changed) vendor/binutils/2.11.0/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.11.0/x/binutils/config-ml.in (props changed) vendor/binutils/2.11.0/x/binutils/config.guess (props changed) vendor/binutils/2.11.0/x/binutils/config.if (props changed) vendor/binutils/2.11.0/x/binutils/config.sub (props changed) vendor/binutils/2.11.0/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-papic (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-sco (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.11.0/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.11.0/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.11.0/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.11.0/x/binutils/config/mt-linux (props changed) vendor/binutils/2.11.0/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.11.0/x/binutils/config/mt-papic (props changed) vendor/binutils/2.11.0/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.11.0/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.11.0/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.11.0/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.11.0/x/binutils/configure (props changed) vendor/binutils/2.11.0/x/binutils/configure.in (props changed) vendor/binutils/2.11.0/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.11.0/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.11.0/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.11.0/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.11.0/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.11.0/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.11.0/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.11.0/x/binutils/gas/NEWS (props changed) vendor/binutils/2.11.0/x/binutils/gas/README (props changed) vendor/binutils/2.11.0/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.11.0/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.11.0/x/binutils/gas/app.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/as.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/as.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/cond.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config.in (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/configure (props changed) vendor/binutils/2.11.0/x/binutils/gas/configure.in (props changed) vendor/binutils/2.11.0/x/binutils/gas/debug.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.11.0/x/binutils/gas/depend.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.11.0/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.11.0/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/emul.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/expr.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/expr.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/frags.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/frags.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.11.0/x/binutils/gas/hash.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/hash.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.11.0/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.11.0/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.11.0/x/binutils/gas/listing.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/listing.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/literal.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/macro.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/macro.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/messages.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/obj.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.11.0/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.11.0/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.11.0/x/binutils/gas/read.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/read.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/sb.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/sb.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.11.0/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/tc.h (props changed) vendor/binutils/2.11.0/x/binutils/gas/write.c (props changed) vendor/binutils/2.11.0/x/binutils/gas/write.h (props changed) vendor/binutils/2.11.0/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.11.0/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.11.0/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.11.0/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.11.0/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.11.0/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.11.0/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.11.0/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.11.0/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.11.0/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.11.0/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.11.0/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.11.0/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.11.0/x/binutils/include/callback.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/tic30.h (props changed) vendor/binutils/2.11.0/x/binutils/include/coff/z8k.h (props changed) vendor/binutils/2.11.0/x/binutils/include/demangle.h (props changed) vendor/binutils/2.11.0/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.11.0/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.11.0/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.11.0/x/binutils/include/filenames.h (props changed) vendor/binutils/2.11.0/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.11.0/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.11.0/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.11.0/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.11.0/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.11.0/x/binutils/include/getopt.h (props changed) vendor/binutils/2.11.0/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.11.0/x/binutils/include/ieee.h (props changed) vendor/binutils/2.11.0/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.11.0/x/binutils/include/md5.h (props changed) vendor/binutils/2.11.0/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.11.0/x/binutils/include/obstack.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.11.0/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.11.0/x/binutils/include/partition.h (props changed) vendor/binutils/2.11.0/x/binutils/include/progress.h (props changed) vendor/binutils/2.11.0/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.11.0/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.11.0/x/binutils/include/sort.h (props changed) vendor/binutils/2.11.0/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.11.0/x/binutils/include/symcat.h (props changed) vendor/binutils/2.11.0/x/binutils/install-sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.11.0/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.11.0/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.11.0/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.11.0/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.11.0/x/binutils/ld/NEWS (props changed) vendor/binutils/2.11.0/x/binutils/ld/README (props changed) vendor/binutils/2.11.0/x/binutils/ld/TODO (props changed) vendor/binutils/2.11.0/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.11.0/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.11.0/x/binutils/ld/config.in (props changed) vendor/binutils/2.11.0/x/binutils/ld/configdoc.texi (props changed) vendor/binutils/2.11.0/x/binutils/ld/configure (props changed) vendor/binutils/2.11.0/x/binutils/ld/configure.host (props changed) vendor/binutils/2.11.0/x/binutils/ld/configure.in (props changed) vendor/binutils/2.11.0/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.11.0/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.11.0/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.11.0/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.11.0/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.11.0/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.11.0/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.11.0/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.11.0/x/binutils/ld/ld.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/mri.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/mri.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.11.0/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.11.0/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.11.0/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.11.0/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.11.0/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.11.0/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/README (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/alloca-conf.h (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/configure (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.11.0/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.11.0/x/binutils/ltconfig (props changed) vendor/binutils/2.11.0/x/binutils/ltmain.sh (props changed) vendor/binutils/2.11.0/x/binutils/md5.sum (props changed) vendor/binutils/2.11.0/x/binutils/missing (props changed) vendor/binutils/2.11.0/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.11.0/x/binutils/move-if-change (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/configure (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.11.0/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.11.0/x/binutils/symlink-tree (props changed) vendor/binutils/2.11.0/x/binutils/ylwrap (props changed) vendor/binutils/2.11.2/x/binutils/Makefile.in (props changed) vendor/binutils/2.11.2/x/binutils/README (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.11.2/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.11.2/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.11.2/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.11.2/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.11.2/x/binutils/bfd/README (props changed) vendor/binutils/2.11.2/x/binutils/bfd/TODO (props changed) vendor/binutils/2.11.2/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.11.2/x/binutils/bfd/config.in (props changed) vendor/binutils/2.11.2/x/binutils/bfd/configure (props changed) vendor/binutils/2.11.2/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.11.2/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.11.2/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.11.2/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/format.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/init.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.11.2/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/section.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.11.2/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.11.2/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.11.2/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.11.2/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.11.2/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.11.2/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.11.2/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.11.2/x/binutils/binutils/README (props changed) vendor/binutils/2.11.2/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/ar.1 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.11.2/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.11.2/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.11.2/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/2.11.2/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.11.2/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.11.2/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.11.2/x/binutils/binutils/config.in (props changed) vendor/binutils/2.11.2/x/binutils/binutils/config.texi (props changed) vendor/binutils/2.11.2/x/binutils/binutils/configure (props changed) vendor/binutils/2.11.2/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.11.2/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/2.11.2/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.11.2/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.11.2/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.11.2/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.11.2/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.11.2/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.11.2/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/nm.1 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.11.2/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.11.2/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.11.2/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.11.2/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.11.2/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.11.2/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.11.2/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.11.2/x/binutils/binutils/size.1 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/size.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.11.2/x/binutils/binutils/strings.1 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/strip.1 (props changed) vendor/binutils/2.11.2/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.11.2/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.11.2/x/binutils/binutils/unwind-ia64.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/unwind-ia64.h (props changed) vendor/binutils/2.11.2/x/binutils/binutils/version.c (props changed) vendor/binutils/2.11.2/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.11.2/x/binutils/config-ml.in (props changed) vendor/binutils/2.11.2/x/binutils/config.guess (props changed) vendor/binutils/2.11.2/x/binutils/config.if (props changed) vendor/binutils/2.11.2/x/binutils/config.sub (props changed) vendor/binutils/2.11.2/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-papic (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-sco (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.11.2/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.11.2/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.11.2/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.11.2/x/binutils/config/mt-linux (props changed) vendor/binutils/2.11.2/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.11.2/x/binutils/config/mt-papic (props changed) vendor/binutils/2.11.2/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.11.2/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.11.2/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.11.2/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.11.2/x/binutils/configure (props changed) vendor/binutils/2.11.2/x/binutils/configure.in (props changed) vendor/binutils/2.11.2/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.11.2/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.11.2/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.11.2/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.11.2/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.11.2/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.11.2/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.11.2/x/binutils/gas/NEWS (props changed) vendor/binutils/2.11.2/x/binutils/gas/README (props changed) vendor/binutils/2.11.2/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.11.2/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.11.2/x/binutils/gas/app.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/as.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/as.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/cond.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config.in (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/configure (props changed) vendor/binutils/2.11.2/x/binutils/gas/configure.in (props changed) vendor/binutils/2.11.2/x/binutils/gas/debug.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.11.2/x/binutils/gas/depend.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.11.2/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.11.2/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/emul.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/expr.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/expr.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/frags.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/frags.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.11.2/x/binutils/gas/hash.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/hash.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.11.2/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.11.2/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.11.2/x/binutils/gas/listing.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/listing.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/literal.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/macro.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/macro.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/messages.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/obj.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.11.2/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.11.2/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.11.2/x/binutils/gas/read.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/read.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/sb.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/sb.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.11.2/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/tc.h (props changed) vendor/binutils/2.11.2/x/binutils/gas/write.c (props changed) vendor/binutils/2.11.2/x/binutils/gas/write.h (props changed) vendor/binutils/2.11.2/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.11.2/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.11.2/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.11.2/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.11.2/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.11.2/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.11.2/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.11.2/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.11.2/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.11.2/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.11.2/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.11.2/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.11.2/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.11.2/x/binutils/include/callback.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/tic30.h (props changed) vendor/binutils/2.11.2/x/binutils/include/coff/z8k.h (props changed) vendor/binutils/2.11.2/x/binutils/include/demangle.h (props changed) vendor/binutils/2.11.2/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.11.2/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.11.2/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.11.2/x/binutils/include/filenames.h (props changed) vendor/binutils/2.11.2/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.11.2/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.11.2/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.11.2/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.11.2/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.11.2/x/binutils/include/getopt.h (props changed) vendor/binutils/2.11.2/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.11.2/x/binutils/include/ieee.h (props changed) vendor/binutils/2.11.2/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.11.2/x/binutils/include/md5.h (props changed) vendor/binutils/2.11.2/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.11.2/x/binutils/include/obstack.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.11.2/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.11.2/x/binutils/include/partition.h (props changed) vendor/binutils/2.11.2/x/binutils/include/progress.h (props changed) vendor/binutils/2.11.2/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.11.2/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.11.2/x/binutils/include/sort.h (props changed) vendor/binutils/2.11.2/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.11.2/x/binutils/include/symcat.h (props changed) vendor/binutils/2.11.2/x/binutils/install-sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.11.2/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.11.2/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.11.2/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.11.2/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.11.2/x/binutils/ld/NEWS (props changed) vendor/binutils/2.11.2/x/binutils/ld/README (props changed) vendor/binutils/2.11.2/x/binutils/ld/TODO (props changed) vendor/binutils/2.11.2/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.11.2/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.11.2/x/binutils/ld/config.in (props changed) vendor/binutils/2.11.2/x/binutils/ld/configdoc.texi (props changed) vendor/binutils/2.11.2/x/binutils/ld/configure (props changed) vendor/binutils/2.11.2/x/binutils/ld/configure.host (props changed) vendor/binutils/2.11.2/x/binutils/ld/configure.in (props changed) vendor/binutils/2.11.2/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.11.2/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.11.2/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/shelf_linux.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.11.2/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.11.2/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.11.2/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.11.2/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.11.2/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.11.2/x/binutils/ld/ld.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/mri.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/mri.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.11.2/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.11.2/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.11.2/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.11.2/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.11.2/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.11.2/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/README (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/alloca-conf.h (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/configure (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.11.2/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.11.2/x/binutils/ltconfig (props changed) vendor/binutils/2.11.2/x/binutils/ltmain.sh (props changed) vendor/binutils/2.11.2/x/binutils/md5.sum (props changed) vendor/binutils/2.11.2/x/binutils/missing (props changed) vendor/binutils/2.11.2/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.11.2/x/binutils/move-if-change (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/configure (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.11.2/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.11.2/x/binutils/symlink-tree (props changed) vendor/binutils/2.11.2/x/binutils/ylwrap (props changed) vendor/binutils/2.11.20010719/x/binutils/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.11.20010719/x/binutils/Makefile.in (props changed) vendor/binutils/2.11.20010719/x/binutils/README (props changed) vendor/binutils/2.11.20010719/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/README (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/TODO (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/config.in (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/configure (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/format.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/init.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/libpei.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/peicode.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/section.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/xcoff-target.h (props changed) vendor/binutils/2.11.20010719/x/binutils/bfd/xcofflink.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/README (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/ar.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/config.in (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/config.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/configure (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/nm.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/readelf.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/size.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/size.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/strings.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/strip.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/version.c (props changed) vendor/binutils/2.11.20010719/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.11.20010719/x/binutils/config-ml.in (props changed) vendor/binutils/2.11.20010719/x/binutils/config.guess (props changed) vendor/binutils/2.11.20010719/x/binutils/config.if (props changed) vendor/binutils/2.11.20010719/x/binutils/config.sub (props changed) vendor/binutils/2.11.20010719/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-papic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-sco (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mt-linux (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mt-papic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.11.20010719/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.11.20010719/x/binutils/configure (props changed) vendor/binutils/2.11.20010719/x/binutils/configure.in (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/NEWS (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/README (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/app.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/as.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/as.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/cond.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config.in (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/configure (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/configure.in (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/debug.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/depend.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/emul.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/expr.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/expr.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/frags.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/frags.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/hash.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/hash.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/listing.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/listing.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/literal.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/macro.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/macro.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/messages.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/obj.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/read.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/read.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/sb.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/sb.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/tc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/write.c (props changed) vendor/binutils/2.11.20010719/x/binutils/gas/write.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.11.20010719/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.11.20010719/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/callback.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/tic30.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/coff/z8k.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/demangle.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/filenames.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/getopt.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/ieee.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/md5.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/obstack.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/partition.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/progress.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/sort.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.11.20010719/x/binutils/include/symcat.h (props changed) vendor/binutils/2.11.20010719/x/binutils/install-sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/NEWS (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/README (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/TODO (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/config.in (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/configure (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/configure.host (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/configure.in (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/shelf_linux.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ld.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/mri.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/mri.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.11.20010719/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/README (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/alloca-conf.h (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/configure (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.11.20010719/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.11.20010719/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/ltconfig (props changed) vendor/binutils/2.11.20010719/x/binutils/ltmain.sh (props changed) vendor/binutils/2.11.20010719/x/binutils/missing (props changed) vendor/binutils/2.11.20010719/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.11.20010719/x/binutils/move-if-change (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/configure (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.11.20010719/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.11.20010719/x/binutils/symlink-tree (props changed) vendor/binutils/2.11.20010719/x/binutils/ylwrap (props changed) vendor/binutils/2.11.20011031/x/binutils/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.11.20011031/x/binutils/Makefile.in (props changed) vendor/binutils/2.11.20011031/x/binutils/README (props changed) vendor/binutils/2.11.20011031/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/README (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/TODO (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/config.in (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/configure (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/format.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/init.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/section.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.11.20011031/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/README (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/ar.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/config.in (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/config.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/configure (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/nm.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/readelf.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/size.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/size.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/strings.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/strip.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/version.c (props changed) vendor/binutils/2.11.20011031/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.11.20011031/x/binutils/config-ml.in (props changed) vendor/binutils/2.11.20011031/x/binutils/config.guess (props changed) vendor/binutils/2.11.20011031/x/binutils/config.sub (props changed) vendor/binutils/2.11.20011031/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-papic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-sco (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-ia64pic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-linux (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-papic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.11.20011031/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.11.20011031/x/binutils/configure (props changed) vendor/binutils/2.11.20011031/x/binutils/configure.in (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/NEWS (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/README (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/app.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/as.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/as.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/cond.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config.in (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/configure (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/configure.in (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/debug.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/depend.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/emul.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/expr.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/expr.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/frags.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/frags.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/hash.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/hash.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/listing.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/listing.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/literal.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/macro.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/macro.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/messages.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/obj.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/read.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/read.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/sb.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/sb.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/tc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/write.c (props changed) vendor/binutils/2.11.20011031/x/binutils/gas/write.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.11.20011031/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.11.20011031/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/callback.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/demangle.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/filenames.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/getopt.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/ieee.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/md5.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/obstack.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/partition.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/progress.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/sort.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.11.20011031/x/binutils/include/symcat.h (props changed) vendor/binutils/2.11.20011031/x/binutils/install-sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/NEWS (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/README (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/TODO (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/config.in (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/configure (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/configure.host (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/configure.in (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ld.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/mri.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/mri.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.11.20011031/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/README (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/alloca-conf.h (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/configure (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.11.20011031/x/binutils/libtool.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/ltconfig (props changed) vendor/binutils/2.11.20011031/x/binutils/ltmain.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/missing (props changed) vendor/binutils/2.11.20011031/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.11.20011031/x/binutils/move-if-change (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/configure (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.11.20011031/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.11.20011031/x/binutils/symlink-tree (props changed) vendor/binutils/2.11.20011031/x/binutils/ylwrap (props changed) vendor/binutils/2.12.20020221/x/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020221/x/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/README (props changed) vendor/binutils/2.12.20020221/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/README (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/TODO (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/archive64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coff64-rs6000.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/config.in (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/configure (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/format.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/init.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/merge.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/rs6000-core.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/section.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.12.20020221/x/binutils/bfd/version.h (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/README (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/config.in (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/configure (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/size.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/version.c (props changed) vendor/binutils/2.12.20020221/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.12.20020221/x/binutils/config-ml.in (props changed) vendor/binutils/2.12.20020221/x/binutils/config.guess (props changed) vendor/binutils/2.12.20020221/x/binutils/config.sub (props changed) vendor/binutils/2.12.20020221/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-papic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-sco (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-ia64pic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-linux (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-papic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.12.20020221/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.12.20020221/x/binutils/configure (props changed) vendor/binutils/2.12.20020221/x/binutils/configure.in (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/NEWS (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/README (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/app.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/as.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/as.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/cond.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config.in (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/configure (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/configure.in (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/debug.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/depend.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/c-alpha.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/emul.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/expr.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/expr.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/frags.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/frags.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/hash.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/hash.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/listing.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/listing.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/literal.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/macro.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/macro.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/messages.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/obj.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/read.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/read.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/sb.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/sb.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/tc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/write.c (props changed) vendor/binutils/2.12.20020221/x/binutils/gas/write.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.12.20020221/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/callback.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/external.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/demangle.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/h8.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/or32.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/s390.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/fibheap.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/filenames.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/getopt.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/ieee.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/md5.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/obstack.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/partition.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/progress.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/sort.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/symcat.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/ternary.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/xregex.h (props changed) vendor/binutils/2.12.20020221/x/binutils/include/xregex2.h (props changed) vendor/binutils/2.12.20020221/x/binutils/install-sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/NEWS (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/README (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/TODO (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/config.in (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/configure (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/configure.host (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/configure.in (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armelf_fbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf32ppc_fbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf64_ia64_fbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf64_sparc_fbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf64alpha_fbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf_fbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf_i386_fbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/elf_x86_64_fbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/sun4.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/sunos.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ld.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/mri.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/mri.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.12.20020221/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/README (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/configure (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/regex.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.12.20020221/x/binutils/libtool.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/ltconfig (props changed) vendor/binutils/2.12.20020221/x/binutils/ltmain.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/missing (props changed) vendor/binutils/2.12.20020221/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.12.20020221/x/binutils/move-if-change (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/configure (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.12.20020221/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.12.20020221/x/binutils/symlink-tree (props changed) vendor/binutils/2.12.20020221/x/binutils/ylwrap (props changed) vendor/binutils/2.12.20020320/x/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020320/x/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/README (props changed) vendor/binutils/2.12.20020320/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/README (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/TODO (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/archive64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coff64-rs6000.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/config.in (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/configure (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/format.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/init.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/merge.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/rs6000-core.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/section.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.12.20020320/x/binutils/bfd/version.h (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/README (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/config.in (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/configure (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/addr2line.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/ar.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/cxxfilt.man (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/dlltool.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/nm.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/objcopy.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/objdump.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/ranlib.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/readelf.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/size.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/strings.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/doc/strip.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/size.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/version.c (props changed) vendor/binutils/2.12.20020320/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.12.20020320/x/binutils/config-ml.in (props changed) vendor/binutils/2.12.20020320/x/binutils/config.guess (props changed) vendor/binutils/2.12.20020320/x/binutils/config.sub (props changed) vendor/binutils/2.12.20020320/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-papic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-sco (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-ia64pic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-linux (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-papic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.12.20020320/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.12.20020320/x/binutils/configure (props changed) vendor/binutils/2.12.20020320/x/binutils/configure.in (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/NEWS (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/README (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/app.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/as.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/as.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/cond.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config.in (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/configure (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/configure.in (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/debug.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/depend.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/c-alpha.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/emul.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/expr.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/expr.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/frags.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/frags.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/hash.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/hash.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/listing.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/listing.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/literal.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/macro.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/macro.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/messages.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/obj.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/read.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/read.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/sb.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/sb.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/tc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/write.c (props changed) vendor/binutils/2.12.20020320/x/binutils/gas/write.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.12.20020320/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/callback.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/external.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/demangle.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/h8.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/or32.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/s390.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/fibheap.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/filenames.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/getopt.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/ieee.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/md5.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/obstack.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/partition.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/progress.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/sort.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/symcat.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/ternary.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/xregex.h (props changed) vendor/binutils/2.12.20020320/x/binutils/include/xregex2.h (props changed) vendor/binutils/2.12.20020320/x/binutils/install-sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/NEWS (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/README (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/TODO (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/config.in (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/configure (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/configure.host (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/configure.in (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armelf_fbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf32ppc_fbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf64_ia64_fbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf64_sparc_fbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf64alpha_fbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf_fbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf_i386_fbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/elf_x86_64_fbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/sun4.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/sunos.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ld.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/mri.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/mri.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.12.20020320/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/README (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/configure (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/regex.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.12.20020320/x/binutils/libtool.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/ltconfig (props changed) vendor/binutils/2.12.20020320/x/binutils/ltmain.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/missing (props changed) vendor/binutils/2.12.20020320/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.12.20020320/x/binutils/move-if-change (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/configure (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.12.20020320/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.12.20020320/x/binutils/symlink-tree (props changed) vendor/binutils/2.12.20020320/x/binutils/ylwrap (props changed) vendor/binutils/2.12.20020410/x/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020410/x/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/README (props changed) vendor/binutils/2.12.20020410/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/README (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/TODO (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/archive64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-mips.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coff64-rs6000.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/config.in (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/configure (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-mips.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf32-mips.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf64-mips.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/format.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/init.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/libpei.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/merge.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/mipsbsd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/pe-mips.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/peicode.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/rs6000-core.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/section.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/version.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/xcoff-target.h (props changed) vendor/binutils/2.12.20020410/x/binutils/bfd/xcofflink.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/README (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/config.in (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/configure (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/addr2line.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/ar.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/cxxfilt.man (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/dlltool.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/nm.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/objcopy.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/objdump.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/ranlib.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/readelf.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/size.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/strings.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/doc/strip.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/size.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/unwind-ia64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/unwind-ia64.h (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/version.c (props changed) vendor/binutils/2.12.20020410/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.12.20020410/x/binutils/config-ml.in (props changed) vendor/binutils/2.12.20020410/x/binutils/config.guess (props changed) vendor/binutils/2.12.20020410/x/binutils/config.if (props changed) vendor/binutils/2.12.20020410/x/binutils/config.sub (props changed) vendor/binutils/2.12.20020410/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-papic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-sco (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-ia64pic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-linux (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-papic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.12.20020410/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.12.20020410/x/binutils/configure (props changed) vendor/binutils/2.12.20020410/x/binutils/configure.in (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/NEWS (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/README (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/app.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/as.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/as.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/cond.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config.in (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/configure (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/configure.in (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/debug.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/depend.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/c-alpha.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/c-sh.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/emul.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/expr.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/expr.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/frags.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/frags.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/hash.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/hash.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/listing.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/listing.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/literal.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/macro.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/macro.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/messages.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/obj.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/read.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/read.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/sb.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/sb.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/tc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/write.c (props changed) vendor/binutils/2.12.20020410/x/binutils/gas/write.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.12.20020410/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/callback.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/external.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/demangle.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/h8.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/or32.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/s390.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/fibheap.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/filenames.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/getopt.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/ieee.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/md5.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/obstack.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/mips.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/partition.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/progress.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/sort.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/symcat.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/ternary.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/xregex.h (props changed) vendor/binutils/2.12.20020410/x/binutils/include/xregex2.h (props changed) vendor/binutils/2.12.20020410/x/binutils/install-sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/NEWS (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/README (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/TODO (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/config.in (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/configure (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/configure.host (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/configure.in (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armelf_fbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32bmipn32.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32ppc_fbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64_ia64_fbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64_sparc_fbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64alpha_fbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64bmip.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf_fbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf_i386_fbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/elf_x86_64_fbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/shelf_linux.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/sun4.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/sunos.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ld.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/mri.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/mri.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.12.20020410/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/README (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/configure (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/regex.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.12.20020410/x/binutils/libtool.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/ltconfig (props changed) vendor/binutils/2.12.20020410/x/binutils/ltmain.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/missing (props changed) vendor/binutils/2.12.20020410/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.12.20020410/x/binutils/move-if-change (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/configure (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.12.20020410/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.12.20020410/x/binutils/symlink-tree (props changed) vendor/binutils/2.12.20020410/x/binutils/ylwrap (props changed) vendor/binutils/2.12.20020622/x/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020622/x/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/README (props changed) vendor/binutils/2.12.20020622/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/README (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/TODO (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/archive64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-mips.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coff64-rs6000.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/config.in (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/configure (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-mips.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-s390.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32-mips.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32-s390.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf64-mips.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf64-s390.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/format.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/init.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/libpei.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/merge.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/mipsbsd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/pe-mips.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/peicode.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/rs6000-core.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/section.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/version.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/xcoff-target.h (props changed) vendor/binutils/2.12.20020622/x/binutils/bfd/xcofflink.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/README (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/config.in (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/configure (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/addr2line.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/ar.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/cxxfilt.man (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/dlltool.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/nm.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/objcopy.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/objdump.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/ranlib.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/readelf.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/size.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/strings.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/doc/strip.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/size.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/unwind-ia64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/unwind-ia64.h (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/version.c (props changed) vendor/binutils/2.12.20020622/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.12.20020622/x/binutils/config-ml.in (props changed) vendor/binutils/2.12.20020622/x/binutils/config.guess (props changed) vendor/binutils/2.12.20020622/x/binutils/config.if (props changed) vendor/binutils/2.12.20020622/x/binutils/config.sub (props changed) vendor/binutils/2.12.20020622/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-papic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-s390pic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-sco (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-ia64pic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-linux (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-papic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-s390pic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.12.20020622/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.12.20020622/x/binutils/configure (props changed) vendor/binutils/2.12.20020622/x/binutils/configure.in (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/add-log.el (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/add-log.vi (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configbuild.ein (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configbuild.fig (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configbuild.jin (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configbuild.tin (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configdev.ein (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configdev.fig (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configdev.jin (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configdev.tin (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configure (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configure.in (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/configure.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/make-stds.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/etc/standards.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/NEWS (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/README (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/app.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/as.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/as.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/cond.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config.in (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-s390.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-s390.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/configure (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/configure.in (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/debug.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/depend.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/c-alpha.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/c-sh.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/emul.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/expr.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/expr.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/frags.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/frags.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/hash.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/hash.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/listing.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/listing.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/literal.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/macro.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/macro.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/messages.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/obj.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/read.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/read.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/sb.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/sb.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/tc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/write.c (props changed) vendor/binutils/2.12.20020622/x/binutils/gas/write.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.12.20020622/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/callback.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/external.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/demangle.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/h8.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/or32.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/s390.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/fibheap.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/filenames.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/getopt.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/ieee.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/md5.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/obstack.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/mips.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/s390.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/partition.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/progress.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/sort.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/symcat.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/ternary.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/xregex.h (props changed) vendor/binutils/2.12.20020622/x/binutils/include/xregex2.h (props changed) vendor/binutils/2.12.20020622/x/binutils/install-sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/NEWS (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/README (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/TODO (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/config.in (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/configure (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/configure.host (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/configure.in (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armelf_fbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32bmipn32.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32ppc_fbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64_ia64_fbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64_s390.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64_sparc_fbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64alpha_fbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64bmip.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf_fbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf_i386_fbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf_s390.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/elf_x86_64_fbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/shelf_linux.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/sun4.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/sunos.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ld.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/mri.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/mri.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.12.20020622/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/README (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/configure (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/regex.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.12.20020622/x/binutils/libtool.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/ltconfig (props changed) vendor/binutils/2.12.20020622/x/binutils/ltmain.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/missing (props changed) vendor/binutils/2.12.20020622/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.12.20020622/x/binutils/move-if-change (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/configure (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/s390-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/s390-mkopc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/s390-opc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/s390-opc.txt (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.12.20020622/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.12.20020622/x/binutils/symlink-tree (props changed) vendor/binutils/2.12.20020622/x/binutils/ylwrap (props changed) vendor/binutils/2.12.20020720/x/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020720/x/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/README (props changed) vendor/binutils/2.12.20020720/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/README (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/TODO (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/archive64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-mips.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-sh.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coff64-rs6000.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/config.in (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/configure (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-mips.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-s390.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-sh.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-mips.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-s390.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-sh.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf64-mips.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf64-s390.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/format.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/init.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/libpei.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/merge.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/mipsbsd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/pe-mips.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/peicode.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/rs6000-core.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/section.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/version.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/xcoff-target.h (props changed) vendor/binutils/2.12.20020720/x/binutils/bfd/xcofflink.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/README (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/config.in (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/configure (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/addr2line.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/ar.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/cxxfilt.man (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/dlltool.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/nm.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/objcopy.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/objdump.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/ranlib.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/readelf.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/size.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/strings.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/doc/strip.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/size.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/unwind-ia64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/unwind-ia64.h (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/version.c (props changed) vendor/binutils/2.12.20020720/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.12.20020720/x/binutils/config-ml.in (props changed) vendor/binutils/2.12.20020720/x/binutils/config.guess (props changed) vendor/binutils/2.12.20020720/x/binutils/config.if (props changed) vendor/binutils/2.12.20020720/x/binutils/config.sub (props changed) vendor/binutils/2.12.20020720/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-papic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-s390pic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-sco (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-armpic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-ia64pic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-linux (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-papic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-s390pic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.12.20020720/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.12.20020720/x/binutils/configure (props changed) vendor/binutils/2.12.20020720/x/binutils/configure.in (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/add-log.el (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/add-log.vi (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configbuild.ein (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configbuild.fig (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configbuild.jin (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configbuild.tin (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configdev.ein (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configdev.fig (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configdev.jin (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configdev.tin (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configure (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configure.in (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/configure.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/make-stds.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/etc/standards.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/NEWS (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/README (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/app.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/as.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/as.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/cond.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config.in (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-s390.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-s390.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-sh.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-sh.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/configure (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/configure.in (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/debug.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/depend.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/c-alpha.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/c-sh.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/emul.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/expr.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/expr.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/frags.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/frags.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/hash.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/hash.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/listing.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/listing.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/literal.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/macro.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/macro.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/messages.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/obj.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/read.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/read.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/sb.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/sb.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/tc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/write.c (props changed) vendor/binutils/2.12.20020720/x/binutils/gas/write.h (props changed) vendor/binutils/2.12.20020720/x/binutils/gprof/po/Make-in (props changed) vendor/binutils/2.12.20020720/x/binutils/gprof/po/POTFILES.in (props changed) vendor/binutils/2.12.20020720/x/binutils/gprof/po/gprof.pot (props changed) vendor/binutils/2.12.20020720/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.12.20020720/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/callback.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/external.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/tic30.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/coff/z8k.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/demangle.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/h8.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/or32.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/s390.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/fibheap.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/filenames.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/getopt.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/ieee.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/md5.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/obstack.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/mips.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/s390.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/partition.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/progress.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/sort.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/symcat.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/ternary.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/xregex.h (props changed) vendor/binutils/2.12.20020720/x/binutils/include/xregex2.h (props changed) vendor/binutils/2.12.20020720/x/binutils/install-sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/NEWS (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/README (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/TODO (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/config.in (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/configure (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/configure.host (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/configure.in (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armelf_fbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32bmipn32.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32ppc_fbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64_ia64_fbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64_s390.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64_sparc_fbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64alpha_fbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64bmip.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf_fbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf_i386_fbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf_s390.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/elf_x86_64_fbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/shelf_linux.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/sun4.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/sunos.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ld.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/mri.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/mri.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.12.20020720/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/README (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/configure (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/regex.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.12.20020720/x/binutils/libtool.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/ltconfig (props changed) vendor/binutils/2.12.20020720/x/binutils/ltmain.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/missing (props changed) vendor/binutils/2.12.20020720/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.12.20020720/x/binutils/move-if-change (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/configure (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/s390-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/s390-mkopc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/s390-opc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/s390-opc.txt (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.12.20020720/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.12.20020720/x/binutils/symlink-tree (props changed) vendor/binutils/2.12.20020720/x/binutils/ylwrap (props changed) vendor/binutils/2.13.20021011/x/binutils/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.13.20021011/x/binutils/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/README (props changed) vendor/binutils/2.13.20021011/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/README (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/TODO (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/archive64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coff64-rs6000.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/config.in (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/configure (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf32-i386-fbsd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf64-alpha-fbsd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/format.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/init.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/merge.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/rs6000-core.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/section.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/version.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/xcoff-target.h (props changed) vendor/binutils/2.13.20021011/x/binutils/bfd/xcofflink.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/README (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/binemul.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/binemul.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/budemang.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/budemang.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/config.in (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/configure (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/configure.tgt (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/addr2line.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/ar.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/cxxfilt.man (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/dlltool.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/nm.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/objcopy.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/objdump.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/ranlib.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/readelf.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/size.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/strings.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/doc/strip.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/emul_vanilla.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/size.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/unwind-ia64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/unwind-ia64.h (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/version.c (props changed) vendor/binutils/2.13.20021011/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.13.20021011/x/binutils/config-ml.in (props changed) vendor/binutils/2.13.20021011/x/binutils/config.guess (props changed) vendor/binutils/2.13.20021011/x/binutils/config.sub (props changed) vendor/binutils/2.13.20021011/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-papic (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-sco (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mt-alphaieee (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mt-linux (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.13.20021011/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.13.20021011/x/binutils/configure (props changed) vendor/binutils/2.13.20021011/x/binutils/configure.in (props changed) vendor/binutils/2.13.20021011/x/binutils/contrib/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/contrib/texi2pod.pl (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/NEWS (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/README (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/app.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/as.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/as.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/cond.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config.in (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/configure (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/configure.in (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/debug.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/depend.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/c-alpha.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/c-ia64.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/emul.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/expr.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/expr.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/frags.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/frags.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/hash.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/hash.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/listing.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/listing.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/literal.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/macro.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/macro.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/messages.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/obj.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/read.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/read.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/sb.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/sb.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/tc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/write.c (props changed) vendor/binutils/2.13.20021011/x/binutils/gas/write.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.13.20021011/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/external.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/demangle.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/dlx.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/frv.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/h8.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/or32.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/s390.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/vax.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/fibheap.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/filenames.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/getopt.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/ieee.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/md5.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/obstack.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/partition.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/progress.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/sort.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/symcat.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/ternary.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/xregex.h (props changed) vendor/binutils/2.13.20021011/x/binutils/include/xregex2.h (props changed) vendor/binutils/2.13.20021011/x/binutils/install-sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/NEWS (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/README (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/TODO (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/config.in (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/configure (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/configure.host (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/configure.in (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armelf_fbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armelfb_nbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf32ppc_fbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf64_ia64_fbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf64_sparc_fbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf64alpha_fbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf_fbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf_i386_fbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/elf_x86_64_fbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386nto.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/sun4.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/sunos.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ld.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/mri.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/mri.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.13.20021011/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/README (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/configure (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/regex.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.13.20021011/x/binutils/libtool.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/ltconfig (props changed) vendor/binutils/2.13.20021011/x/binutils/ltmain.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/missing (props changed) vendor/binutils/2.13.20021011/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.13.20021011/x/binutils/move-if-change (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/configure (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.13.20021011/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.13.20021011/x/binutils/symlink-tree (props changed) vendor/binutils/2.13.20021011/x/binutils/ylwrap (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/README (props changed) vendor/binutils/2.13.2_20021127/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/README (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/TODO (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/archive64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-sh.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coff64-rs6000.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/config.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/configure (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-s390.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-sh.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-i386-fbsd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-s390.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-sh.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf64-alpha-fbsd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf64-s390.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/format.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/init.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/libpei.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/merge.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/peicode.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/rs6000-core.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/section.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/version.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/xcoff-target.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/bfd/xcofflink.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/README (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/binemul.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/binemul.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/budemang.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/budemang.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/config.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/configure (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/configure.tgt (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/addr2line.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/ar.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/cxxfilt.man (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/dlltool.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/nm.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/objcopy.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/objdump.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/ranlib.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/readelf.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/size.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/strings.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/doc/strip.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/emul_vanilla.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/size.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/unwind-ia64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/unwind-ia64.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/version.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config-ml.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config.guess (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config.if (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config.sub (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-armpic (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-openedition (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-papic (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-s390pic (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-sco (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mt-alphaieee (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mt-linux (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mt-ospace (props changed) vendor/binutils/2.13.2_20021127/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/configure (props changed) vendor/binutils/2.13.2_20021127/x/binutils/configure.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/contrib/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/contrib/texi2pod.pl (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/add-log.el (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/add-log.vi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configbuild.ein (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configbuild.fig (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configbuild.jin (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configbuild.tin (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configdev.ein (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configdev.fig (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configdev.jin (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configdev.tin (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configure (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configure.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/configure.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/make-stds.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/etc/standards.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/NEWS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/README (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/app.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/as.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/as.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/cond.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-s390.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-s390.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-sh.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-sh.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/configure (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/configure.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/debug.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/depend.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/c-alpha.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/c-ia64.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/c-sh.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/emul.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/expr.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/expr.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/frags.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/frags.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/hash.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/hash.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/listing.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/listing.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/literal.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/macro.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/macro.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/messages.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/obj.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/read.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/read.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/sb.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/sb.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/tc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/write.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gas/write.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gprof/po/Make-in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gprof/po/POTFILES.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/gprof/po/gprof.pot (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/external.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/coff/tic30.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/demangle.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/dlx.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/frv.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/h8.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/or32.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/s390.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/vax.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/fibheap.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/filenames.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/getopt.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/ieee.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/md5.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/obstack.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/s390.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/partition.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/progress.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/sort.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/symcat.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/ternary.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/xregex.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/include/xregex2.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/install-sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/NEWS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/README (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/TODO (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/config.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/configure (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/configure.host (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/configure.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armelf_fbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armelfb_nbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32bmipn32.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32ppc_fbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64_ia64_fbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64_s390.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64_sparc_fbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64alpha_fbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64bmip.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf_fbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf_i386_fbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf_s390.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/elf_x86_64_fbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386nto.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/shelf_linux.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/sun4.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/sunos.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ld.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/mri.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/mri.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/po/Make-in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/README (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/configure (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/regex.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/libtool.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ltconfig (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ltmain.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/missing (props changed) vendor/binutils/2.13.2_20021127/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.13.2_20021127/x/binutils/move-if-change (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/configure (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/s390-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/s390-mkopc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/s390-opc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/s390-opc.txt (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.13.2_20021127/x/binutils/symlink-tree (props changed) vendor/binutils/2.13.2_20021127/x/binutils/ylwrap (props changed) vendor/binutils/2.15.20040523/x/binutils/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/MAINTAINERS (props changed) vendor/binutils/2.15.20040523/x/binutils/Makefile.def (props changed) vendor/binutils/2.15.20040523/x/binutils/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/Makefile.tpl (props changed) vendor/binutils/2.15.20040523/x/binutils/README (props changed) vendor/binutils/2.15.20040523/x/binutils/README-maintainer-mode (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ChangeLog-0203 (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/README (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/TODO (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/archive64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/bfdio.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/bfdwin.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/bout.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff-mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coff64-rs6000.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/config.in (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/configure (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-s390.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/ChangeLog-9103 (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/bfdio.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/bfdwin.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/fdl.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/mmo.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32-mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32-ppc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32-s390.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf64-mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf64-s390.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elfn32-mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elfxx-mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elfxx-mips.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/format.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/hosts/mipsbsd.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/hosts/mipsmach3.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/hosts/news-mips.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/init.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libpei.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/libxcoff.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/merge.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/mipsbsd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/pe-mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/pei-mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/peicode.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/rs6000-core.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/section.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/simple.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/version.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/xcoff-target.h (props changed) vendor/binutils/2.15.20040523/x/binutils/bfd/xcofflink.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/ChangeLog-0001 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/ChangeLog-0203 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/README (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/binemul.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/binemul.h (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/budemang.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/budemang.h (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/config.in (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/configure (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/configure.tgt (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/cxxfilt.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/addr2line.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/ar.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/cxxfilt.man (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/dlltool.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/fdl.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/nm.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/objcopy.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/objdump.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/ranlib.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/readelf.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/size.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/strings.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/doc/strip.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/emul_vanilla.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/readelf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/rename.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/resres.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/size.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/unwind-ia64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/unwind-ia64.h (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/version.c (props changed) vendor/binutils/2.15.20040523/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.15.20040523/x/binutils/config-ml.in (props changed) vendor/binutils/2.15.20040523/x/binutils/config.guess (props changed) vendor/binutils/2.15.20040523/x/binutils/config.if (props changed) vendor/binutils/2.15.20040523/x/binutils/config.sub (props changed) vendor/binutils/2.15.20040523/x/binutils/configure (props changed) vendor/binutils/2.15.20040523/x/binutils/configure.in (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/ChangeLog-0203 (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/NEWS (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/README (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/app.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/as.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/as.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/asintl.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/cgen.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/cond.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config.in (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/e-mipsecoff.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/e-mipself.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/itbl-mips.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-mips.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-s390.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-s390.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/config/te-tmips.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/configure (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/configure.in (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/debug.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/depend.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/c-alpha.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/c-ia64.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/c-mips.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/c-sh.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/gasver.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/dw2gencfi.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/dw2gencfi.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/emul.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/expr.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/expr.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/frags.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/frags.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/hash.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/hash.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/listing.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/listing.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/literal.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/macro.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/macro.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/messages.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/obj.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/po/Make-in (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/read.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/read.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/sb.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/sb.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/tc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/write.c (props changed) vendor/binutils/2.15.20040523/x/binutils/gas/write.h (props changed) vendor/binutils/2.15.20040523/x/binutils/gprof/mips.c (props changed) vendor/binutils/2.15.20040523/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/2.15.20040523/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/arm.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/external.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/mips.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/mipspe.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/ti.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/coff/xcoff.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/demangle.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/dyn-string.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/ChangeLog-9103 (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/arm.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/avr.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/cris.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/dlx.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/frv.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/h8.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/i370.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/i386.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/i860.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/i960.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/ip2k.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/iq2000.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/msp430.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/or32.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/pj.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/ppc64.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/s390.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/sh.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/vax.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/elf/xtensa.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/fibheap.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/filenames.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/getopt.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/hashtab.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/ieee.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/md5.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/obstack.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/ChangeLog-9103 (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/mips.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/s390.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/partition.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/progress.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/sort.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/splay-tree.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/symcat.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/ternary.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/xregex.h (props changed) vendor/binutils/2.15.20040523/x/binutils/include/xregex2.h (props changed) vendor/binutils/2.15.20040523/x/binutils/install-sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ChangeLog-0001 (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ChangeLog-0203 (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/NEWS (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/README (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/TODO (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/config.in (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/configure (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/configure.host (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/configure.in (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/deffile.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/deffilep.y (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armelf_fbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armelfb_nbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32bmipn32-defs.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32bmipn32.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32btsmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32btsmipn32.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32ltsmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32ltsmipn32.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32mipswindiss.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32ppc_fbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64_ia64_fbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64_s390.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64_sparc_fbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64alpha_fbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64bmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64btsmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64ltsmip.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf_fbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf_i386_fbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf_s390.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/elf_x86_64_fbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386nto.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/mipsbig.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/mipsbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/mipsidt.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/mipsidtl.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/mipslit.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/mipslnews.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/mipspe.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/sun4.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/alphaelf.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/ia64elf.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/mipsecoff.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/mipself.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/netbsd.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/ppc32elf.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/sunos.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/fdl.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ld.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldver.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/mri.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/mri.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/mips.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/mipsbsd.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.15.20040523/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/README (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/config.in (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/configure (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/cp-demangle.h (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/cp-demint.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/lrealpath.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/make-relative-prefix.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/md5.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/partition.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/physmem.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/regex.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/sort.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.15.20040523/x/binutils/libtool.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/ltcf-c.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/ltconfig (props changed) vendor/binutils/2.15.20040523/x/binutils/ltmain.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/missing (props changed) vendor/binutils/2.15.20040523/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.15.20040523/x/binutils/move-if-change (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ChangeLog-0001 (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ChangeLog-0203 (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/configure (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/dis-init.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/mips-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/mips-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/mips16-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/s390-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/s390-mkopc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/s390-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/s390-opc.txt (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.15.20040523/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.15.20040523/x/binutils/symlink-tree (props changed) vendor/binutils/2.15.20040523/x/binutils/ylwrap (props changed) vendor/binutils/2.15.20050217/x/binutils/gas/as.h (props changed) vendor/binutils/2.15.20050217/x/binutils/gas/tc.h (props changed) vendor/binutils/2.15.NOTHING/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.15.NOTHING/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.15.cvsrev_1_51/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/2.8.1/x/binutils/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/README (props changed) vendor/binutils/2.8.1/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.8.1/x/binutils/bfd/README (props changed) vendor/binutils/2.8.1/x/binutils/bfd/TODO (props changed) vendor/binutils/2.8.1/x/binutils/bfd/VERSION (props changed) vendor/binutils/2.8.1/x/binutils/bfd/acconfig.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.8.1/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/coff-sh.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.8.1/x/binutils/bfd/config.in (props changed) vendor/binutils/2.8.1/x/binutils/bfd/configure (props changed) vendor/binutils/2.8.1/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.8.1/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.8.1/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/cpu-sh.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/bfd.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.8.1/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elf32-sh.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/filemode.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/format.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/init.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/section.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.8.1/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.8.1/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.8.1/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.8.1/x/binutils/binutils/README (props changed) vendor/binutils/2.8.1/x/binutils/binutils/acconfig.h (props changed) vendor/binutils/2.8.1/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/ar.1 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.8.1/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.8.1/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.8.1/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/2.8.1/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.8.1/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.8.1/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.8.1/x/binutils/binutils/config.in (props changed) vendor/binutils/2.8.1/x/binutils/binutils/config.texi (props changed) vendor/binutils/2.8.1/x/binutils/binutils/configure (props changed) vendor/binutils/2.8.1/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.8.1/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/2.8.1/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.8.1/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.8.1/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.8.1/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.8.1/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/nm.1 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.8.1/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.8.1/x/binutils/binutils/size.1 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/size.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/strings.1 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/strip.1 (props changed) vendor/binutils/2.8.1/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.8.1/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.8.1/x/binutils/binutils/version.c (props changed) vendor/binutils/2.8.1/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.8.1/x/binutils/config-ml.in (props changed) vendor/binutils/2.8.1/x/binutils/config.guess (props changed) vendor/binutils/2.8.1/x/binutils/config.sub (props changed) vendor/binutils/2.8.1/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.8.1/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.8.1/x/binutils/config/mh-papic (props changed) vendor/binutils/2.8.1/x/binutils/config/mh-sco (props changed) vendor/binutils/2.8.1/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.8.1/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.8.1/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.8.1/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.8.1/x/binutils/config/mt-papic (props changed) vendor/binutils/2.8.1/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.8.1/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.8.1/x/binutils/configure (props changed) vendor/binutils/2.8.1/x/binutils/configure.in (props changed) vendor/binutils/2.8.1/x/binutils/etc/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/etc/cfg-paper.texi (props changed) vendor/binutils/2.8.1/x/binutils/etc/configure (props changed) vendor/binutils/2.8.1/x/binutils/etc/configure.in (props changed) vendor/binutils/2.8.1/x/binutils/etc/configure.man (props changed) vendor/binutils/2.8.1/x/binutils/etc/configure.texi (props changed) vendor/binutils/2.8.1/x/binutils/etc/make-stds.texi (props changed) vendor/binutils/2.8.1/x/binutils/etc/standards.texi (props changed) vendor/binutils/2.8.1/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.8.1/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/gas/NEWS (props changed) vendor/binutils/2.8.1/x/binutils/gas/README (props changed) vendor/binutils/2.8.1/x/binutils/gas/acconfig.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.8.1/x/binutils/gas/app.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/as.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/as.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/cond.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/conf.in (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/i386coff.mt (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/sco5.mt (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-sh.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-sh.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/te-multi.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/configure (props changed) vendor/binutils/2.8.1/x/binutils/gas/configure.in (props changed) vendor/binutils/2.8.1/x/binutils/gas/debug.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/c-sh.texi (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.8.1/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.8.1/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/emul.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/expr.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/expr.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/frags.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/frags.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.8.1/x/binutils/gas/hash.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/hash.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.8.1/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.8.1/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.8.1/x/binutils/gas/listing.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/listing.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/literal.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/macro.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/macro.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/messages.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/obj.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/read.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/read.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/sb.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/sb.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/tc.h (props changed) vendor/binutils/2.8.1/x/binutils/gas/write.c (props changed) vendor/binutils/2.8.1/x/binutils/gas/write.h (props changed) vendor/binutils/2.8.1/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.8.1/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.8.1/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.8.1/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.8.1/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.8.1/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.8.1/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.8.1/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.8.1/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.8.1/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.8.1/x/binutils/include/callback.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.8.1/x/binutils/include/coff/z8k.h (props changed) vendor/binutils/2.8.1/x/binutils/include/demangle.h (props changed) vendor/binutils/2.8.1/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.8.1/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.8.1/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.8.1/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.8.1/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.8.1/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.8.1/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.8.1/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.8.1/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.8.1/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.8.1/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.8.1/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.8.1/x/binutils/include/getopt.h (props changed) vendor/binutils/2.8.1/x/binutils/include/ieee.h (props changed) vendor/binutils/2.8.1/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.8.1/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.8.1/x/binutils/include/obstack.h (props changed) vendor/binutils/2.8.1/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.8.1/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.8.1/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.8.1/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.8.1/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.8.1/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.8.1/x/binutils/include/progress.h (props changed) vendor/binutils/2.8.1/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.8.1/x/binutils/include/wait.h (props changed) vendor/binutils/2.8.1/x/binutils/install.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/ld/NEWS (props changed) vendor/binutils/2.8.1/x/binutils/ld/README (props changed) vendor/binutils/2.8.1/x/binutils/ld/TODO (props changed) vendor/binutils/2.8.1/x/binutils/ld/acconfig.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.8.1/x/binutils/ld/config.in (props changed) vendor/binutils/2.8.1/x/binutils/ld/configdoc.texi (props changed) vendor/binutils/2.8.1/x/binutils/ld/configure (props changed) vendor/binutils/2.8.1/x/binutils/ld/configure.host (props changed) vendor/binutils/2.8.1/x/binutils/ld/configure.in (props changed) vendor/binutils/2.8.1/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.8.1/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.8.1/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.8.1/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.8.1/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.8.1/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.8.1/x/binutils/ld/emultempl/stringify.sed (props changed) vendor/binutils/2.8.1/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.8.1/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.8.1/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.8.1/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.8.1/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.8.1/x/binutils/ld/ld.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/mri.c (props changed) vendor/binutils/2.8.1/x/binutils/ld/mri.h (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.8.1/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.8.1/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/README (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/alloca-botch.h (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/alloca-norm.h (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/config/mh-sysv (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/config/mh-sysv4 (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/dummy.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/functions.def (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.8.1/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.8.1/x/binutils/move-if-change (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/configure (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.8.1/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.8.1/x/binutils/symlink-tree (props changed) vendor/binutils/2.9.1/x/binutils/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/README (props changed) vendor/binutils/2.9.1/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/2.9.1/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/bfd/PORTING (props changed) vendor/binutils/2.9.1/x/binutils/bfd/README (props changed) vendor/binutils/2.9.1/x/binutils/bfd/TODO (props changed) vendor/binutils/2.9.1/x/binutils/bfd/acconfig.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/2.9.1/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/2.9.1/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/aout0.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/aout32.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/aout64.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/archive.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/archures.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/bfd.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/binary.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cache.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coff-mips.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coff-sh.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/config.bfd (props changed) vendor/binutils/2.9.1/x/binutils/bfd/config.in (props changed) vendor/binutils/2.9.1/x/binutils/bfd/configure (props changed) vendor/binutils/2.9.1/x/binutils/bfd/configure.host (props changed) vendor/binutils/2.9.1/x/binutils/bfd/configure.in (props changed) vendor/binutils/2.9.1/x/binutils/bfd/corefile.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cpu-mips.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cpu-sh.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/demo64.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/2.9.1/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf32-mips.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf32-sh.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf32.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf64-mips.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elf64.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elflink.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elflink.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/filemode.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/format.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/genlink.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/hash.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/ieee.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/ihex.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/init.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/libaout.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/libieee.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/linker.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/mipsbsd.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/opncls.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/reloc.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/section.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/srec.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/stabs.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/2.9.1/x/binutils/bfd/sunos.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/syms.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/2.9.1/x/binutils/bfd/targets.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/2.9.1/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/2.9.1/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/2.9.1/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/binutils/NEWS (props changed) vendor/binutils/2.9.1/x/binutils/binutils/README (props changed) vendor/binutils/2.9.1/x/binutils/binutils/acconfig.h (props changed) vendor/binutils/2.9.1/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/ar.1 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/ar.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/arlex.l (props changed) vendor/binutils/2.9.1/x/binutils/binutils/arparse.y (props changed) vendor/binutils/2.9.1/x/binutils/binutils/arsup.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/arsup.h (props changed) vendor/binutils/2.9.1/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/2.9.1/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/2.9.1/x/binutils/binutils/budbg.h (props changed) vendor/binutils/2.9.1/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/2.9.1/x/binutils/binutils/config.in (props changed) vendor/binutils/2.9.1/x/binutils/binutils/config.texi (props changed) vendor/binutils/2.9.1/x/binutils/binutils/configure (props changed) vendor/binutils/2.9.1/x/binutils/binutils/configure.in (props changed) vendor/binutils/2.9.1/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/2.9.1/x/binutils/binutils/debug.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/debug.h (props changed) vendor/binutils/2.9.1/x/binutils/binutils/deflex.l (props changed) vendor/binutils/2.9.1/x/binutils/binutils/defparse.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/defparse.h (props changed) vendor/binutils/2.9.1/x/binutils/binutils/defparse.y (props changed) vendor/binutils/2.9.1/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/2.9.1/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/2.9.1/x/binutils/binutils/filemode.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/ieee.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/nm.1 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/nm.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/objdump.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/2.9.1/x/binutils/binutils/rclex.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/rclex.l (props changed) vendor/binutils/2.9.1/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/2.9.1/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/2.9.1/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/resbin.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/resrc.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/2.9.1/x/binutils/binutils/size.1 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/size.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/srconv.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/stabs.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/2.9.1/x/binutils/binutils/strings.1 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/strings.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/strip.1 (props changed) vendor/binutils/2.9.1/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/2.9.1/x/binutils/binutils/syslex.l (props changed) vendor/binutils/2.9.1/x/binutils/binutils/version.c (props changed) vendor/binutils/2.9.1/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/2.9.1/x/binutils/config-ml.in (props changed) vendor/binutils/2.9.1/x/binutils/config.guess (props changed) vendor/binutils/2.9.1/x/binutils/config.sub (props changed) vendor/binutils/2.9.1/x/binutils/config/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-cxux (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-decstation (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-necv4 (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-papic (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-sco (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-solaris (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-sysv (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/2.9.1/x/binutils/config/mh-x86pic (props changed) vendor/binutils/2.9.1/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/2.9.1/x/binutils/config/mt-linux (props changed) vendor/binutils/2.9.1/x/binutils/config/mt-papic (props changed) vendor/binutils/2.9.1/x/binutils/config/mt-v810 (props changed) vendor/binutils/2.9.1/x/binutils/config/mt-x86pic (props changed) vendor/binutils/2.9.1/x/binutils/configure (props changed) vendor/binutils/2.9.1/x/binutils/configure.in (props changed) vendor/binutils/2.9.1/x/binutils/etc/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/etc/configure (props changed) vendor/binutils/2.9.1/x/binutils/etc/configure.in (props changed) vendor/binutils/2.9.1/x/binutils/etc/make-stds.texi (props changed) vendor/binutils/2.9.1/x/binutils/etc/standards.texi (props changed) vendor/binutils/2.9.1/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/2.9.1/x/binutils/gas/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/gas/Makefile.am (props changed) vendor/binutils/2.9.1/x/binutils/gas/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/gas/NEWS (props changed) vendor/binutils/2.9.1/x/binutils/gas/README (props changed) vendor/binutils/2.9.1/x/binutils/gas/acconfig.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/2.9.1/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/2.9.1/x/binutils/gas/app.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/as.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/as.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/bignum.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/cgen.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/cond.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config.in (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-sh.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-sh.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/te-multi.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/configure (props changed) vendor/binutils/2.9.1/x/binutils/gas/configure.in (props changed) vendor/binutils/2.9.1/x/binutils/gas/debug.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/2.9.1/x/binutils/gas/depend.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/c-sh.texi (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/2.9.1/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/2.9.1/x/binutils/gas/ecoff.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/ecoff.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/ehopt.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/emul-target.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/emul.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/expr.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/expr.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/flonum.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/frags.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/frags.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/gasp.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/2.9.1/x/binutils/gas/hash.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/hash.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/input-file.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/input-file.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/2.9.1/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/2.9.1/x/binutils/gas/link.cmd (props changed) vendor/binutils/2.9.1/x/binutils/gas/listing.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/listing.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/literal.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/macro.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/macro.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/messages.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/obj.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/output-file.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/output-file.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/read.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/read.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/sb.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/sb.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/stabs.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/2.9.1/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/subsegs.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/subsegs.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/symbols.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/symbols.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/tc.h (props changed) vendor/binutils/2.9.1/x/binutils/gas/write.c (props changed) vendor/binutils/2.9.1/x/binutils/gas/write.h (props changed) vendor/binutils/2.9.1/x/binutils/include/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/include/ansidecl.h (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/ar.h (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/encap.h (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/host.h (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/stab.def (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/2.9.1/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/2.9.1/x/binutils/include/bfdlink.h (props changed) vendor/binutils/2.9.1/x/binutils/include/callback.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/i386.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/internal.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/pe.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/sh.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/sym.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/tic30.h (props changed) vendor/binutils/2.9.1/x/binutils/include/coff/z8k.h (props changed) vendor/binutils/2.9.1/x/binutils/include/demangle.h (props changed) vendor/binutils/2.9.1/x/binutils/include/dis-asm.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/arc.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/common.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/external.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/internal.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/mips.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/2.9.1/x/binutils/include/elf/v850.h (props changed) vendor/binutils/2.9.1/x/binutils/include/floatformat.h (props changed) vendor/binutils/2.9.1/x/binutils/include/fnmatch.h (props changed) vendor/binutils/2.9.1/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/2.9.1/x/binutils/include/fopen-same.h (props changed) vendor/binutils/2.9.1/x/binutils/include/gdbm.h (props changed) vendor/binutils/2.9.1/x/binutils/include/getopt.h (props changed) vendor/binutils/2.9.1/x/binutils/include/ieee.h (props changed) vendor/binutils/2.9.1/x/binutils/include/libiberty.h (props changed) vendor/binutils/2.9.1/x/binutils/include/objalloc.h (props changed) vendor/binutils/2.9.1/x/binutils/include/obstack.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/mips.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/2.9.1/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/2.9.1/x/binutils/include/progress.h (props changed) vendor/binutils/2.9.1/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/include/remote-sim.h (props changed) vendor/binutils/2.9.1/x/binutils/include/symcat.h (props changed) vendor/binutils/2.9.1/x/binutils/include/wait.h (props changed) vendor/binutils/2.9.1/x/binutils/install-sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/ld/Makefile.am (props changed) vendor/binutils/2.9.1/x/binutils/ld/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/ld/NEWS (props changed) vendor/binutils/2.9.1/x/binutils/ld/README (props changed) vendor/binutils/2.9.1/x/binutils/ld/TODO (props changed) vendor/binutils/2.9.1/x/binutils/ld/acconfig.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/2.9.1/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/2.9.1/x/binutils/ld/config.in (props changed) vendor/binutils/2.9.1/x/binutils/ld/configdoc.texi (props changed) vendor/binutils/2.9.1/x/binutils/ld/configure (props changed) vendor/binutils/2.9.1/x/binutils/ld/configure.host (props changed) vendor/binutils/2.9.1/x/binutils/ld/configure.in (props changed) vendor/binutils/2.9.1/x/binutils/ld/configure.tgt (props changed) vendor/binutils/2.9.1/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/README (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/emultempl/README (props changed) vendor/binutils/2.9.1/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/2.9.1/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/2.9.1/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/2.9.1/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/2.9.1/x/binutils/ld/emultempl/stringify.sed (props changed) vendor/binutils/2.9.1/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/2.9.1/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/2.9.1/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/2.9.1/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/2.9.1/x/binutils/ld/ld.1 (props changed) vendor/binutils/2.9.1/x/binutils/ld/ld.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldcref.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldctor.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldctor.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldemul.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldemul.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldexp.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldexp.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldfile.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldfile.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldgram.y (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldlang.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldlang.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldlex.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldlex.l (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldmain.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldmain.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldver.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldver.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/lexsup.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/mri.c (props changed) vendor/binutils/2.9.1/x/binutils/ld/mri.h (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/2.9.1/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/2.9.1/x/binutils/ld/sysdep.h (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/README (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/alloca-botch.h (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/alloca-norm.h (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/argv.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/basename.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/clock.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/concat.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/config.table (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/config/mh-sysv (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/config/mh-sysv4 (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/config/mt-mingw32 (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/configure.in (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/dummy.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/functions.def (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/hex.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/index.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/insque.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/memset.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/random.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/rename.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/2.9.1/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/2.9.1/x/binutils/ltconfig (props changed) vendor/binutils/2.9.1/x/binutils/ltmain.sh (props changed) vendor/binutils/2.9.1/x/binutils/missing (props changed) vendor/binutils/2.9.1/x/binutils/mkinstalldirs (props changed) vendor/binutils/2.9.1/x/binutils/move-if-change (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/acconfig.h (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/config.in (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/configure (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/configure.in (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/2.9.1/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/2.9.1/x/binutils/symlink-tree (props changed) vendor/binutils/2.9.1/x/binutils/ylwrap (props changed) vendor/binutils/anoncvs_20000414/x/binutils/include/elf/common.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/MAINTAINERS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/README (props changed) vendor/binutils/anoncvs_20020127/x/binutils/README-maintainer-mode (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/PORTING (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/README (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/TODO (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aout0.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aout32.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aout64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/archive.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/archive64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/archures.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/bfd.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/binary.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cache.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/config.bfd (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/config.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/configure (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/configure.host (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/configure.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/corefile.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/demo64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf32.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elf64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elflink.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elflink.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/format.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/genlink.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/hash.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ieee.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ihex.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/init.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/libaout.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/libieee.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/linker.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/merge.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/opncls.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/reloc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/section.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/srec.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/stabs.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/sunos.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/syms.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/targets.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/bfd/version.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/NEWS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/README (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/ar.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/arlex.l (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/arparse.y (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/arsup.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/arsup.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/budbg.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/config.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/configure (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/configure.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/debug.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/debug.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/deflex.l (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/defparse.y (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/filemode.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/ieee.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/nm.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/objdump.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/rclex.l (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/readelf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/rename.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/resbin.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/resrc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/resres.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/size.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/srconv.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/stabs.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/strings.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/syslex.l (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/unwind-ia64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/unwind-ia64.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/version.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config-ml.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config.guess (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config.if (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config.sub (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-armpic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-cxux (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-decstation (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-necv4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-openedition (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-papic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-sco (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-solaris (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-sysv (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mh-x86pic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-armpic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-ia64pic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-linux (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-ospace (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-papic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-v810 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/config/mt-x86pic (props changed) vendor/binutils/anoncvs_20020127/x/binutils/configure (props changed) vendor/binutils/anoncvs_20020127/x/binutils/configure.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/Makefile.am (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/NEWS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/README (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/app.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/as.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/as.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/asintl.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/bignum.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/cgen.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/cgen.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/cond.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/configure (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/configure.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/debug.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/depend.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/ecoff.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/ecoff.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/ehopt.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/emul-target.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/emul.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/expr.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/expr.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/flonum.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/frags.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/frags.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/gasp.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/hash.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/hash.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/input-file.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/input-file.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/link.cmd (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/listing.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/listing.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/literal.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/macro.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/macro.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/messages.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/obj.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/output-file.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/output-file.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/po/Make-in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/read.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/read.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/sb.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/sb.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/stabs.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/subsegs.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/subsegs.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/symbols.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/symbols.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/tc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/write.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/gas/write.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/ansidecl.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/ar.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/encap.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/host.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/stab.def (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/bfdlink.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/callback.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/arm.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/external.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/i386.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/internal.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/pe.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/sh.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/sym.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/coff/ti.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/demangle.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/dis-asm.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/dyn-string.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/arc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/arm.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/avr.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/common.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/cris.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/external.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/h8.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/i370.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/i386.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/i860.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/i960.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/internal.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/mips.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/pj.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/s390.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/sh.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/v850.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/fibheap.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/filenames.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/floatformat.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/fnmatch.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/fopen-same.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/gdbm.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/getopt.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/hashtab.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/ieee.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/libiberty.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/md5.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/objalloc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/obstack.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/partition.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/progress.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/remote-sim.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/sort.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/splay-tree.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/symcat.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/ternary.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/xregex.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/include/xregex2.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/install-sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/Makefile.am (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/NEWS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/README (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/TODO (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/config.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/configure (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/configure.host (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/configure.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/configure.tgt (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/deffile.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/deffilep.y (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/README (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/README (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ld.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldcref.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldctor.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldctor.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldemul.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldemul.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldexp.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldexp.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldfile.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldfile.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldgram.y (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldlang.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldlang.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldlex.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldlex.l (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldmain.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldmain.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldver.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldver.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/lexsup.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/mri.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/mri.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/po/Make-in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ld/sysdep.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/README (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/argv.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/basename.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/clock.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/concat.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/config.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/config.table (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/configure (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/configure.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/hex.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/index.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/insque.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/md5.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/memset.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/partition.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/random.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/regex.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/rename.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/sort.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/libtool.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ltcf-c.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ltconfig (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ltmain.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/missing (props changed) vendor/binutils/anoncvs_20020127/x/binutils/mkinstalldirs (props changed) vendor/binutils/anoncvs_20020127/x/binutils/move-if-change (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/config.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/configure (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/configure.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/anoncvs_20020127/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/anoncvs_20020127/x/binutils/symlink-tree (props changed) vendor/binutils/anoncvs_20020127/x/binutils/ylwrap (props changed) vendor/binutils/cygnus_sourceware_anoncvs_19990502/x/binutils/gas/ehopt.c (props changed) vendor/binutils/dist/x/binutils/ChangeLog (props changed) vendor/binutils/dist/x/binutils/MAINTAINERS (props changed) vendor/binutils/dist/x/binutils/Makefile.def (props changed) vendor/binutils/dist/x/binutils/Makefile.in (props changed) vendor/binutils/dist/x/binutils/Makefile.tpl (props changed) vendor/binutils/dist/x/binutils/README (props changed) vendor/binutils/dist/x/binutils/README-maintainer-mode (props changed) vendor/binutils/dist/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/dist/x/binutils/bfd/ChangeLog-0001 (props changed) vendor/binutils/dist/x/binutils/bfd/ChangeLog-0203 (props changed) vendor/binutils/dist/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/dist/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/dist/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/dist/x/binutils/bfd/ChangeLog-9899 (props changed) vendor/binutils/dist/x/binutils/bfd/MAINTAINERS (props changed) vendor/binutils/dist/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/dist/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/dist/x/binutils/bfd/PORTING (props changed) vendor/binutils/dist/x/binutils/bfd/README (props changed) vendor/binutils/dist/x/binutils/bfd/TODO (props changed) vendor/binutils/dist/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/dist/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/dist/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/dist/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/dist/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/dist/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/dist/x/binutils/bfd/aout0.c (props changed) vendor/binutils/dist/x/binutils/bfd/aout32.c (props changed) vendor/binutils/dist/x/binutils/bfd/aout64.c (props changed) vendor/binutils/dist/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/dist/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/dist/x/binutils/bfd/archive.c (props changed) vendor/binutils/dist/x/binutils/bfd/archive64.c (props changed) vendor/binutils/dist/x/binutils/bfd/archures.c (props changed) vendor/binutils/dist/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/dist/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/dist/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/dist/x/binutils/bfd/bfd.c (props changed) vendor/binutils/dist/x/binutils/bfd/bfdio.c (props changed) vendor/binutils/dist/x/binutils/bfd/bfdwin.c (props changed) vendor/binutils/dist/x/binutils/bfd/binary.c (props changed) vendor/binutils/dist/x/binutils/bfd/bout.c (props changed) vendor/binutils/dist/x/binutils/bfd/cache.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff-ia64.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff-mips.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff-rs6000.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/dist/x/binutils/bfd/coff64-rs6000.c (props changed) vendor/binutils/dist/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/dist/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/dist/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/dist/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/dist/x/binutils/bfd/config.bfd (props changed) vendor/binutils/dist/x/binutils/bfd/config.in (props changed) vendor/binutils/dist/x/binutils/bfd/configure (props changed) vendor/binutils/dist/x/binutils/bfd/configure.host (props changed) vendor/binutils/dist/x/binutils/bfd/configure.in (props changed) vendor/binutils/dist/x/binutils/bfd/corefile.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-ia64-opc.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-ia64.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-mips.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-rs6000.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-s390.c (props changed) vendor/binutils/dist/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/dist/x/binutils/bfd/demo64.c (props changed) vendor/binutils/dist/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/dist/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/dist/x/binutils/bfd/doc/ChangeLog-9103 (props changed) vendor/binutils/dist/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/dist/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/dist/x/binutils/bfd/doc/aoutx.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/archive.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/archures.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/bfd.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/dist/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/bfdio.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/bfdt.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/bfdwin.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/cache.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/dist/x/binutils/bfd/doc/coffcode.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/core.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/dist/x/binutils/bfd/doc/elf.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/elfcode.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/fdl.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/format.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/hash.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/header.sed (props changed) vendor/binutils/dist/x/binutils/bfd/doc/init.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/libbfd.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/linker.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/mmo.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/opncls.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/dist/x/binutils/bfd/doc/reloc.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/section.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/syms.texi (props changed) vendor/binutils/dist/x/binutils/bfd/doc/targets.texi (props changed) vendor/binutils/dist/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/dist/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/dist/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/dist/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/dist/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/dist/x/binutils/bfd/efi-app-ia32.c (props changed) vendor/binutils/dist/x/binutils/bfd/efi-app-ia64.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/dist/x/binutils/bfd/elf-eh-frame.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf-strtab.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-i386-fbsd.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-mips.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-ppc.h (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-s390.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf32.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf64-alpha-fbsd.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf64-mips.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf64-ppc.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf64-ppc.h (props changed) vendor/binutils/dist/x/binutils/bfd/elf64-s390.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf64-x86-64.c (props changed) vendor/binutils/dist/x/binutils/bfd/elf64.c (props changed) vendor/binutils/dist/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/dist/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/dist/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/dist/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/dist/x/binutils/bfd/elflink.c (props changed) vendor/binutils/dist/x/binutils/bfd/elflink.h (props changed) vendor/binutils/dist/x/binutils/bfd/elfn32-mips.c (props changed) vendor/binutils/dist/x/binutils/bfd/elfxx-ia64.c (props changed) vendor/binutils/dist/x/binutils/bfd/elfxx-mips.c (props changed) vendor/binutils/dist/x/binutils/bfd/elfxx-mips.h (props changed) vendor/binutils/dist/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/dist/x/binutils/bfd/format.c (props changed) vendor/binutils/dist/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/dist/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/dist/x/binutils/bfd/genlink.h (props changed) vendor/binutils/dist/x/binutils/bfd/hash.c (props changed) vendor/binutils/dist/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/dist/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/dist/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/dist/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/dist/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/dist/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/dist/x/binutils/bfd/hosts/mipsbsd.h (props changed) vendor/binutils/dist/x/binutils/bfd/hosts/mipsmach3.h (props changed) vendor/binutils/dist/x/binutils/bfd/hosts/news-mips.h (props changed) vendor/binutils/dist/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/dist/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/dist/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/dist/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/dist/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/dist/x/binutils/bfd/ieee.c (props changed) vendor/binutils/dist/x/binutils/bfd/ihex.c (props changed) vendor/binutils/dist/x/binutils/bfd/init.c (props changed) vendor/binutils/dist/x/binutils/bfd/libaout.h (props changed) vendor/binutils/dist/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/dist/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/dist/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/dist/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/dist/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/dist/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/dist/x/binutils/bfd/libieee.h (props changed) vendor/binutils/dist/x/binutils/bfd/libpei.h (props changed) vendor/binutils/dist/x/binutils/bfd/libxcoff.h (props changed) vendor/binutils/dist/x/binutils/bfd/linker.c (props changed) vendor/binutils/dist/x/binutils/bfd/merge.c (props changed) vendor/binutils/dist/x/binutils/bfd/mipsbsd.c (props changed) vendor/binutils/dist/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/dist/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/dist/x/binutils/bfd/opncls.c (props changed) vendor/binutils/dist/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/dist/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/dist/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/dist/x/binutils/bfd/pe-mips.c (props changed) vendor/binutils/dist/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/dist/x/binutils/bfd/peXXigen.c (props changed) vendor/binutils/dist/x/binutils/bfd/pei-mips.c (props changed) vendor/binutils/dist/x/binutils/bfd/peicode.h (props changed) vendor/binutils/dist/x/binutils/bfd/po/BLD-POTFILES.in (props changed) vendor/binutils/dist/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/dist/x/binutils/bfd/po/POTFILES.in (props changed) vendor/binutils/dist/x/binutils/bfd/po/SRC-POTFILES.in (props changed) vendor/binutils/dist/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/dist/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/dist/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/dist/x/binutils/bfd/reloc.c (props changed) vendor/binutils/dist/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/dist/x/binutils/bfd/rs6000-core.c (props changed) vendor/binutils/dist/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/dist/x/binutils/bfd/section.c (props changed) vendor/binutils/dist/x/binutils/bfd/simple.c (props changed) vendor/binutils/dist/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/dist/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/dist/x/binutils/bfd/srec.c (props changed) vendor/binutils/dist/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/dist/x/binutils/bfd/stabs.c (props changed) vendor/binutils/dist/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/dist/x/binutils/bfd/sunos.c (props changed) vendor/binutils/dist/x/binutils/bfd/syms.c (props changed) vendor/binutils/dist/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/dist/x/binutils/bfd/targets.c (props changed) vendor/binutils/dist/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/dist/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/dist/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/dist/x/binutils/bfd/version.h (props changed) vendor/binutils/dist/x/binutils/bfd/xcoff-target.h (props changed) vendor/binutils/dist/x/binutils/bfd/xcofflink.c (props changed) vendor/binutils/dist/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/dist/x/binutils/binutils/ChangeLog-0001 (props changed) vendor/binutils/dist/x/binutils/binutils/ChangeLog-0203 (props changed) vendor/binutils/dist/x/binutils/binutils/ChangeLog-9197 (props changed) vendor/binutils/dist/x/binutils/binutils/ChangeLog-9899 (props changed) vendor/binutils/dist/x/binutils/binutils/MAINTAINERS (props changed) vendor/binutils/dist/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/dist/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/dist/x/binutils/binutils/NEWS (props changed) vendor/binutils/dist/x/binutils/binutils/README (props changed) vendor/binutils/dist/x/binutils/binutils/acconfig.h (props changed) vendor/binutils/dist/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/dist/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/dist/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/dist/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/dist/x/binutils/binutils/ar.1 (props changed) vendor/binutils/dist/x/binutils/binutils/ar.c (props changed) vendor/binutils/dist/x/binutils/binutils/arlex.l (props changed) vendor/binutils/dist/x/binutils/binutils/arparse.y (props changed) vendor/binutils/dist/x/binutils/binutils/arsup.c (props changed) vendor/binutils/dist/x/binutils/binutils/arsup.h (props changed) vendor/binutils/dist/x/binutils/binutils/binemul.c (props changed) vendor/binutils/dist/x/binutils/binutils/binemul.h (props changed) vendor/binutils/dist/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/dist/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/dist/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/dist/x/binutils/binutils/budbg.h (props changed) vendor/binutils/dist/x/binutils/binutils/budemang.c (props changed) vendor/binutils/dist/x/binutils/binutils/budemang.h (props changed) vendor/binutils/dist/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/dist/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/dist/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/dist/x/binutils/binutils/config.in (props changed) vendor/binutils/dist/x/binutils/binutils/config.texi (props changed) vendor/binutils/dist/x/binutils/binutils/configure (props changed) vendor/binutils/dist/x/binutils/binutils/configure.in (props changed) vendor/binutils/dist/x/binutils/binutils/configure.tgt (props changed) vendor/binutils/dist/x/binutils/binutils/cxxfilt.c (props changed) vendor/binutils/dist/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/dist/x/binutils/binutils/debug.c (props changed) vendor/binutils/dist/x/binutils/binutils/debug.h (props changed) vendor/binutils/dist/x/binutils/binutils/deflex.l (props changed) vendor/binutils/dist/x/binutils/binutils/defparse.c (props changed) vendor/binutils/dist/x/binutils/binutils/defparse.h (props changed) vendor/binutils/dist/x/binutils/binutils/defparse.y (props changed) vendor/binutils/dist/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/dist/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/dist/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/dist/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/dist/x/binutils/binutils/doc/Makefile.am (props changed) vendor/binutils/dist/x/binutils/binutils/doc/Makefile.in (props changed) vendor/binutils/dist/x/binutils/binutils/doc/addr2line.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/ar.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/binutils.texi (props changed) vendor/binutils/dist/x/binutils/binutils/doc/cxxfilt.man (props changed) vendor/binutils/dist/x/binutils/binutils/doc/dlltool.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/fdl.texi (props changed) vendor/binutils/dist/x/binutils/binutils/doc/nm.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/objcopy.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/objdump.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/ranlib.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/readelf.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/size.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/strings.1 (props changed) vendor/binutils/dist/x/binutils/binutils/doc/strip.1 (props changed) vendor/binutils/dist/x/binutils/binutils/dyn-string.c (props changed) vendor/binutils/dist/x/binutils/binutils/dyn-string.h (props changed) vendor/binutils/dist/x/binutils/binutils/emul_vanilla.c (props changed) vendor/binutils/dist/x/binutils/binutils/filemode.c (props changed) vendor/binutils/dist/x/binutils/binutils/ieee.c (props changed) vendor/binutils/dist/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/dist/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/dist/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/dist/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/dist/x/binutils/binutils/nm.1 (props changed) vendor/binutils/dist/x/binutils/binutils/nm.c (props changed) vendor/binutils/dist/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/dist/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/dist/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/dist/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/dist/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/dist/x/binutils/binutils/objdump.c (props changed) vendor/binutils/dist/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/dist/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/dist/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/dist/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/dist/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/dist/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/dist/x/binutils/binutils/rclex.c (props changed) vendor/binutils/dist/x/binutils/binutils/rclex.l (props changed) vendor/binutils/dist/x/binutils/binutils/rcparse.c (props changed) vendor/binutils/dist/x/binutils/binutils/rcparse.h (props changed) vendor/binutils/dist/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/dist/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/dist/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/dist/x/binutils/binutils/readelf.1 (props changed) vendor/binutils/dist/x/binutils/binutils/readelf.c (props changed) vendor/binutils/dist/x/binutils/binutils/rename.c (props changed) vendor/binutils/dist/x/binutils/binutils/resbin.c (props changed) vendor/binutils/dist/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/dist/x/binutils/binutils/resrc.c (props changed) vendor/binutils/dist/x/binutils/binutils/resres.c (props changed) vendor/binutils/dist/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/dist/x/binutils/binutils/size.1 (props changed) vendor/binutils/dist/x/binutils/binutils/size.c (props changed) vendor/binutils/dist/x/binutils/binutils/srconv.c (props changed) vendor/binutils/dist/x/binutils/binutils/stabs.c (props changed) vendor/binutils/dist/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/dist/x/binutils/binutils/strings.1 (props changed) vendor/binutils/dist/x/binutils/binutils/strings.c (props changed) vendor/binutils/dist/x/binutils/binutils/strip.1 (props changed) vendor/binutils/dist/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/dist/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/dist/x/binutils/binutils/syslex.l (props changed) vendor/binutils/dist/x/binutils/binutils/unwind-ia64.c (props changed) vendor/binutils/dist/x/binutils/binutils/unwind-ia64.h (props changed) vendor/binutils/dist/x/binutils/binutils/version.c (props changed) vendor/binutils/dist/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/dist/x/binutils/config-ml.in (props changed) vendor/binutils/dist/x/binutils/config.guess (props changed) vendor/binutils/dist/x/binutils/config.if (props changed) vendor/binutils/dist/x/binutils/config.sub (props changed) vendor/binutils/dist/x/binutils/config/ChangeLog (props changed) vendor/binutils/dist/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/dist/x/binutils/config/mh-armpic (props changed) vendor/binutils/dist/x/binutils/config/mh-cxux (props changed) vendor/binutils/dist/x/binutils/config/mh-decstation (props changed) vendor/binutils/dist/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/dist/x/binutils/config/mh-ia64pic (props changed) vendor/binutils/dist/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/dist/x/binutils/config/mh-necv4 (props changed) vendor/binutils/dist/x/binutils/config/mh-openedition (props changed) vendor/binutils/dist/x/binutils/config/mh-papic (props changed) vendor/binutils/dist/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/dist/x/binutils/config/mh-s390pic (props changed) vendor/binutils/dist/x/binutils/config/mh-sco (props changed) vendor/binutils/dist/x/binutils/config/mh-solaris (props changed) vendor/binutils/dist/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/dist/x/binutils/config/mh-sysv (props changed) vendor/binutils/dist/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/dist/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/dist/x/binutils/config/mh-x86pic (props changed) vendor/binutils/dist/x/binutils/config/mt-alphaieee (props changed) vendor/binutils/dist/x/binutils/config/mt-armpic (props changed) vendor/binutils/dist/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/dist/x/binutils/config/mt-ia64pic (props changed) vendor/binutils/dist/x/binutils/config/mt-linux (props changed) vendor/binutils/dist/x/binutils/config/mt-ospace (props changed) vendor/binutils/dist/x/binutils/config/mt-papic (props changed) vendor/binutils/dist/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/dist/x/binutils/config/mt-s390pic (props changed) vendor/binutils/dist/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/dist/x/binutils/config/mt-v810 (props changed) vendor/binutils/dist/x/binutils/config/mt-x86pic (props changed) vendor/binutils/dist/x/binutils/configure (props changed) vendor/binutils/dist/x/binutils/configure.in (props changed) vendor/binutils/dist/x/binutils/contrib/ChangeLog (props changed) vendor/binutils/dist/x/binutils/contrib/texi2pod.pl (props changed) vendor/binutils/dist/x/binutils/etc/ChangeLog (props changed) vendor/binutils/dist/x/binutils/etc/Makefile.in (props changed) vendor/binutils/dist/x/binutils/etc/add-log.el (props changed) vendor/binutils/dist/x/binutils/etc/add-log.vi (props changed) vendor/binutils/dist/x/binutils/etc/cfg-paper.texi (props changed) vendor/binutils/dist/x/binutils/etc/configbuild.ein (props changed) vendor/binutils/dist/x/binutils/etc/configbuild.fig (props changed) vendor/binutils/dist/x/binutils/etc/configbuild.jin (props changed) vendor/binutils/dist/x/binutils/etc/configbuild.tin (props changed) vendor/binutils/dist/x/binutils/etc/configdev.ein (props changed) vendor/binutils/dist/x/binutils/etc/configdev.fig (props changed) vendor/binutils/dist/x/binutils/etc/configdev.jin (props changed) vendor/binutils/dist/x/binutils/etc/configdev.tin (props changed) vendor/binutils/dist/x/binutils/etc/configure (props changed) vendor/binutils/dist/x/binutils/etc/configure.in (props changed) vendor/binutils/dist/x/binutils/etc/configure.man (props changed) vendor/binutils/dist/x/binutils/etc/configure.texi (props changed) vendor/binutils/dist/x/binutils/etc/make-stds.texi (props changed) vendor/binutils/dist/x/binutils/etc/standards.texi (props changed) vendor/binutils/dist/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/dist/x/binutils/gas/ChangeLog (props changed) vendor/binutils/dist/x/binutils/gas/ChangeLog-0001 (props changed) vendor/binutils/dist/x/binutils/gas/ChangeLog-0203 (props changed) vendor/binutils/dist/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/dist/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/dist/x/binutils/gas/ChangeLog-9899 (props changed) vendor/binutils/dist/x/binutils/gas/MAINTAINERS (props changed) vendor/binutils/dist/x/binutils/gas/Makefile.am (props changed) vendor/binutils/dist/x/binutils/gas/Makefile.in (props changed) vendor/binutils/dist/x/binutils/gas/NEWS (props changed) vendor/binutils/dist/x/binutils/gas/README (props changed) vendor/binutils/dist/x/binutils/gas/acconfig.h (props changed) vendor/binutils/dist/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/dist/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/dist/x/binutils/gas/app.c (props changed) vendor/binutils/dist/x/binutils/gas/as.c (props changed) vendor/binutils/dist/x/binutils/gas/as.h (props changed) vendor/binutils/dist/x/binutils/gas/asintl.h (props changed) vendor/binutils/dist/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/dist/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/dist/x/binutils/gas/bignum.h (props changed) vendor/binutils/dist/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/dist/x/binutils/gas/cgen.c (props changed) vendor/binutils/dist/x/binutils/gas/cgen.h (props changed) vendor/binutils/dist/x/binutils/gas/cond.c (props changed) vendor/binutils/dist/x/binutils/gas/conf.in (props changed) vendor/binutils/dist/x/binutils/gas/config.in (props changed) vendor/binutils/dist/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/dist/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/dist/x/binutils/gas/config/atof-vax.c (props changed) vendor/binutils/dist/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/dist/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/dist/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/dist/x/binutils/gas/config/e-mipsecoff.c (props changed) vendor/binutils/dist/x/binutils/gas/config/e-mipself.c (props changed) vendor/binutils/dist/x/binutils/gas/config/i386coff.mt (props changed) vendor/binutils/dist/x/binutils/gas/config/itbl-mips.h (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/dist/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/dist/x/binutils/gas/config/sco5.mt (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-ia64.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-ia64.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-mips.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-mips.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-s390.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-s390.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-sh.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-sh.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/dist/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-freebsd.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-multi.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/dist/x/binutils/gas/config/te-tmips.h (props changed) vendor/binutils/dist/x/binutils/gas/configure (props changed) vendor/binutils/dist/x/binutils/gas/configure.in (props changed) vendor/binutils/dist/x/binutils/gas/debug.c (props changed) vendor/binutils/dist/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/dist/x/binutils/gas/depend.c (props changed) vendor/binutils/dist/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/dist/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/dist/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/dist/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-alpha.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-arc.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-ia64.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-mips.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-ppc.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-sh.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/gasver.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/dist/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/dist/x/binutils/gas/dw2gencfi.c (props changed) vendor/binutils/dist/x/binutils/gas/dw2gencfi.h (props changed) vendor/binutils/dist/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/dist/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/dist/x/binutils/gas/ecoff.c (props changed) vendor/binutils/dist/x/binutils/gas/ecoff.h (props changed) vendor/binutils/dist/x/binutils/gas/ehopt.c (props changed) vendor/binutils/dist/x/binutils/gas/emul-target.h (props changed) vendor/binutils/dist/x/binutils/gas/emul.h (props changed) vendor/binutils/dist/x/binutils/gas/expr.c (props changed) vendor/binutils/dist/x/binutils/gas/expr.h (props changed) vendor/binutils/dist/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/dist/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/dist/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/dist/x/binutils/gas/flonum.h (props changed) vendor/binutils/dist/x/binutils/gas/frags.c (props changed) vendor/binutils/dist/x/binutils/gas/frags.h (props changed) vendor/binutils/dist/x/binutils/gas/gasp.c (props changed) vendor/binutils/dist/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/dist/x/binutils/gas/hash.c (props changed) vendor/binutils/dist/x/binutils/gas/hash.h (props changed) vendor/binutils/dist/x/binutils/gas/input-file.c (props changed) vendor/binutils/dist/x/binutils/gas/input-file.h (props changed) vendor/binutils/dist/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/dist/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/dist/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/dist/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/dist/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/dist/x/binutils/gas/link.cmd (props changed) vendor/binutils/dist/x/binutils/gas/listing.c (props changed) vendor/binutils/dist/x/binutils/gas/listing.h (props changed) vendor/binutils/dist/x/binutils/gas/literal.c (props changed) vendor/binutils/dist/x/binutils/gas/macro.c (props changed) vendor/binutils/dist/x/binutils/gas/macro.h (props changed) vendor/binutils/dist/x/binutils/gas/messages.c (props changed) vendor/binutils/dist/x/binutils/gas/obj.h (props changed) vendor/binutils/dist/x/binutils/gas/output-file.c (props changed) vendor/binutils/dist/x/binutils/gas/output-file.h (props changed) vendor/binutils/dist/x/binutils/gas/po/Make-in (props changed) vendor/binutils/dist/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/dist/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/dist/x/binutils/gas/read.c (props changed) vendor/binutils/dist/x/binutils/gas/read.h (props changed) vendor/binutils/dist/x/binutils/gas/sb.c (props changed) vendor/binutils/dist/x/binutils/gas/sb.h (props changed) vendor/binutils/dist/x/binutils/gas/stabs.c (props changed) vendor/binutils/dist/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/dist/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/dist/x/binutils/gas/subsegs.c (props changed) vendor/binutils/dist/x/binutils/gas/subsegs.h (props changed) vendor/binutils/dist/x/binutils/gas/symbols.c (props changed) vendor/binutils/dist/x/binutils/gas/symbols.h (props changed) vendor/binutils/dist/x/binutils/gas/tc.h (props changed) vendor/binutils/dist/x/binutils/gas/write.c (props changed) vendor/binutils/dist/x/binutils/gas/write.h (props changed) vendor/binutils/dist/x/binutils/gprof/mips.c (props changed) vendor/binutils/dist/x/binutils/gprof/po/Make-in (props changed) vendor/binutils/dist/x/binutils/gprof/po/POTFILES.in (props changed) vendor/binutils/dist/x/binutils/gprof/po/gprof.pot (props changed) vendor/binutils/dist/x/binutils/include/ChangeLog (props changed) vendor/binutils/dist/x/binutils/include/MAINTAINERS (props changed) vendor/binutils/dist/x/binutils/include/alloca-conf.h (props changed) vendor/binutils/dist/x/binutils/include/ansidecl.h (props changed) vendor/binutils/dist/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/dist/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/dist/x/binutils/include/aout/ar.h (props changed) vendor/binutils/dist/x/binutils/include/aout/encap.h (props changed) vendor/binutils/dist/x/binutils/include/aout/host.h (props changed) vendor/binutils/dist/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/dist/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/dist/x/binutils/include/aout/stab.def (props changed) vendor/binutils/dist/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/dist/x/binutils/include/aout/sun4.h (props changed) vendor/binutils/dist/x/binutils/include/bfdlink.h (props changed) vendor/binutils/dist/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/dist/x/binutils/include/callback.h (props changed) vendor/binutils/dist/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/dist/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/dist/x/binutils/include/coff/arm.h (props changed) vendor/binutils/dist/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/dist/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/dist/x/binutils/include/coff/external.h (props changed) vendor/binutils/dist/x/binutils/include/coff/i386.h (props changed) vendor/binutils/dist/x/binutils/include/coff/ia64.h (props changed) vendor/binutils/dist/x/binutils/include/coff/internal.h (props changed) vendor/binutils/dist/x/binutils/include/coff/mips.h (props changed) vendor/binutils/dist/x/binutils/include/coff/mipspe.h (props changed) vendor/binutils/dist/x/binutils/include/coff/pe.h (props changed) vendor/binutils/dist/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/dist/x/binutils/include/coff/rs6000.h (props changed) vendor/binutils/dist/x/binutils/include/coff/rs6k64.h (props changed) vendor/binutils/dist/x/binutils/include/coff/sh.h (props changed) vendor/binutils/dist/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/dist/x/binutils/include/coff/sym.h (props changed) vendor/binutils/dist/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/dist/x/binutils/include/coff/ti.h (props changed) vendor/binutils/dist/x/binutils/include/coff/xcoff.h (props changed) vendor/binutils/dist/x/binutils/include/demangle.h (props changed) vendor/binutils/dist/x/binutils/include/dis-asm.h (props changed) vendor/binutils/dist/x/binutils/include/dyn-string.h (props changed) vendor/binutils/dist/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/dist/x/binutils/include/elf/ChangeLog-9103 (props changed) vendor/binutils/dist/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/dist/x/binutils/include/elf/arc.h (props changed) vendor/binutils/dist/x/binutils/include/elf/arm-oabi.h (props changed) vendor/binutils/dist/x/binutils/include/elf/arm.h (props changed) vendor/binutils/dist/x/binutils/include/elf/avr.h (props changed) vendor/binutils/dist/x/binutils/include/elf/common.h (props changed) vendor/binutils/dist/x/binutils/include/elf/cris.h (props changed) vendor/binutils/dist/x/binutils/include/elf/d10v.h (props changed) vendor/binutils/dist/x/binutils/include/elf/d30v.h (props changed) vendor/binutils/dist/x/binutils/include/elf/dlx.h (props changed) vendor/binutils/dist/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/dist/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/dist/x/binutils/include/elf/external.h (props changed) vendor/binutils/dist/x/binutils/include/elf/fr30.h (props changed) vendor/binutils/dist/x/binutils/include/elf/frv.h (props changed) vendor/binutils/dist/x/binutils/include/elf/h8.h (props changed) vendor/binutils/dist/x/binutils/include/elf/hppa.h (props changed) vendor/binutils/dist/x/binutils/include/elf/i370.h (props changed) vendor/binutils/dist/x/binutils/include/elf/i386.h (props changed) vendor/binutils/dist/x/binutils/include/elf/i860.h (props changed) vendor/binutils/dist/x/binutils/include/elf/i960.h (props changed) vendor/binutils/dist/x/binutils/include/elf/ia64.h (props changed) vendor/binutils/dist/x/binutils/include/elf/internal.h (props changed) vendor/binutils/dist/x/binutils/include/elf/ip2k.h (props changed) vendor/binutils/dist/x/binutils/include/elf/iq2000.h (props changed) vendor/binutils/dist/x/binutils/include/elf/m32r.h (props changed) vendor/binutils/dist/x/binutils/include/elf/m68hc11.h (props changed) vendor/binutils/dist/x/binutils/include/elf/m68k.h (props changed) vendor/binutils/dist/x/binutils/include/elf/mcore.h (props changed) vendor/binutils/dist/x/binutils/include/elf/mips.h (props changed) vendor/binutils/dist/x/binutils/include/elf/mmix.h (props changed) vendor/binutils/dist/x/binutils/include/elf/mn10200.h (props changed) vendor/binutils/dist/x/binutils/include/elf/mn10300.h (props changed) vendor/binutils/dist/x/binutils/include/elf/msp430.h (props changed) vendor/binutils/dist/x/binutils/include/elf/openrisc.h (props changed) vendor/binutils/dist/x/binutils/include/elf/or32.h (props changed) vendor/binutils/dist/x/binutils/include/elf/pj.h (props changed) vendor/binutils/dist/x/binutils/include/elf/po/Make-in (props changed) vendor/binutils/dist/x/binutils/include/elf/po/POTFILES.in (props changed) vendor/binutils/dist/x/binutils/include/elf/po/binutils.pot (props changed) vendor/binutils/dist/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/dist/x/binutils/include/elf/ppc64.h (props changed) vendor/binutils/dist/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/dist/x/binutils/include/elf/s390.h (props changed) vendor/binutils/dist/x/binutils/include/elf/sh.h (props changed) vendor/binutils/dist/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/dist/x/binutils/include/elf/v850.h (props changed) vendor/binutils/dist/x/binutils/include/elf/vax.h (props changed) vendor/binutils/dist/x/binutils/include/elf/x86-64.h (props changed) vendor/binutils/dist/x/binutils/include/elf/xstormy16.h (props changed) vendor/binutils/dist/x/binutils/include/elf/xtensa.h (props changed) vendor/binutils/dist/x/binutils/include/fibheap.h (props changed) vendor/binutils/dist/x/binutils/include/filenames.h (props changed) vendor/binutils/dist/x/binutils/include/floatformat.h (props changed) vendor/binutils/dist/x/binutils/include/fnmatch.h (props changed) vendor/binutils/dist/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/dist/x/binutils/include/fopen-same.h (props changed) vendor/binutils/dist/x/binutils/include/gdbm.h (props changed) vendor/binutils/dist/x/binutils/include/getopt.h (props changed) vendor/binutils/dist/x/binutils/include/hashtab.h (props changed) vendor/binutils/dist/x/binutils/include/ieee.h (props changed) vendor/binutils/dist/x/binutils/include/libiberty.h (props changed) vendor/binutils/dist/x/binutils/include/md5.h (props changed) vendor/binutils/dist/x/binutils/include/objalloc.h (props changed) vendor/binutils/dist/x/binutils/include/obstack.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/dist/x/binutils/include/opcode/ChangeLog-9103 (props changed) vendor/binutils/dist/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/ia64.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/mips.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/s390.h (props changed) vendor/binutils/dist/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/dist/x/binutils/include/partition.h (props changed) vendor/binutils/dist/x/binutils/include/progress.h (props changed) vendor/binutils/dist/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/dist/x/binutils/include/remote-sim.h (props changed) vendor/binutils/dist/x/binutils/include/safe-ctype.h (props changed) vendor/binutils/dist/x/binutils/include/sort.h (props changed) vendor/binutils/dist/x/binutils/include/splay-tree.h (props changed) vendor/binutils/dist/x/binutils/include/symcat.h (props changed) vendor/binutils/dist/x/binutils/include/ternary.h (props changed) vendor/binutils/dist/x/binutils/include/wait.h (props changed) vendor/binutils/dist/x/binutils/include/xregex.h (props changed) vendor/binutils/dist/x/binutils/include/xregex2.h (props changed) vendor/binutils/dist/x/binutils/install-sh (props changed) vendor/binutils/dist/x/binutils/install.sh (props changed) vendor/binutils/dist/x/binutils/ld/ChangeLog (props changed) vendor/binutils/dist/x/binutils/ld/ChangeLog-0001 (props changed) vendor/binutils/dist/x/binutils/ld/ChangeLog-0203 (props changed) vendor/binutils/dist/x/binutils/ld/ChangeLog-9197 (props changed) vendor/binutils/dist/x/binutils/ld/ChangeLog-9899 (props changed) vendor/binutils/dist/x/binutils/ld/MAINTAINERS (props changed) vendor/binutils/dist/x/binutils/ld/Makefile.am (props changed) vendor/binutils/dist/x/binutils/ld/Makefile.in (props changed) vendor/binutils/dist/x/binutils/ld/NEWS (props changed) vendor/binutils/dist/x/binutils/ld/README (props changed) vendor/binutils/dist/x/binutils/ld/TODO (props changed) vendor/binutils/dist/x/binutils/ld/acconfig.h (props changed) vendor/binutils/dist/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/dist/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/dist/x/binutils/ld/config.in (props changed) vendor/binutils/dist/x/binutils/ld/configdoc.texi (props changed) vendor/binutils/dist/x/binutils/ld/configure (props changed) vendor/binutils/dist/x/binutils/ld/configure.host (props changed) vendor/binutils/dist/x/binutils/ld/configure.in (props changed) vendor/binutils/dist/x/binutils/ld/configure.tgt (props changed) vendor/binutils/dist/x/binutils/ld/deffile.h (props changed) vendor/binutils/dist/x/binutils/ld/deffilep.y (props changed) vendor/binutils/dist/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/README (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armelf_fbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armelf_linux26.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armelf_nbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armelfb_nbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32bmipn32-defs.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32bmipn32.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32btsmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32btsmipn32.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32lppcsim.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32ltsmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32ltsmipn32.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32mipswindiss.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32ppc_fbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf32ppcsim.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64_ia64.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64_ia64_fbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64_s390.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64_sparc_fbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64alpha_fbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64alpha_nbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64bmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64btsmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64lppc.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64ltsmip.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf64ppc.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf_fbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf_i386_chaos.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf_i386_fbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf_i386_ldso.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf_s390.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf_x86_64.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/elf_x86_64_fbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386nto.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/mipsbig.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/mipsbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/mipsidt.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/mipsidtl.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/mipslit.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/mipslnews.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/mipspe.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/sun4.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/dist/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/README (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/alphaelf.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/ia64elf.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/mipsecoff.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/mipself.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/needrelax.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/netbsd.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/ppc32elf.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/ppc64elf.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/stringify.sed (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/sunos.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/ticoff.em (props changed) vendor/binutils/dist/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/dist/x/binutils/ld/fdl.texi (props changed) vendor/binutils/dist/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/dist/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/dist/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/dist/x/binutils/ld/ld.1 (props changed) vendor/binutils/dist/x/binutils/ld/ld.h (props changed) vendor/binutils/dist/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/dist/x/binutils/ld/ldcref.c (props changed) vendor/binutils/dist/x/binutils/ld/ldctor.c (props changed) vendor/binutils/dist/x/binutils/ld/ldctor.h (props changed) vendor/binutils/dist/x/binutils/ld/ldemul.c (props changed) vendor/binutils/dist/x/binutils/ld/ldemul.h (props changed) vendor/binutils/dist/x/binutils/ld/ldexp.c (props changed) vendor/binutils/dist/x/binutils/ld/ldexp.h (props changed) vendor/binutils/dist/x/binutils/ld/ldfile.c (props changed) vendor/binutils/dist/x/binutils/ld/ldfile.h (props changed) vendor/binutils/dist/x/binutils/ld/ldgram.y (props changed) vendor/binutils/dist/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/dist/x/binutils/ld/ldlang.c (props changed) vendor/binutils/dist/x/binutils/ld/ldlang.h (props changed) vendor/binutils/dist/x/binutils/ld/ldlex.h (props changed) vendor/binutils/dist/x/binutils/ld/ldlex.l (props changed) vendor/binutils/dist/x/binutils/ld/ldmain.c (props changed) vendor/binutils/dist/x/binutils/ld/ldmain.h (props changed) vendor/binutils/dist/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/dist/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/dist/x/binutils/ld/ldver.c (props changed) vendor/binutils/dist/x/binutils/ld/ldver.h (props changed) vendor/binutils/dist/x/binutils/ld/ldver.texi (props changed) vendor/binutils/dist/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/dist/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/dist/x/binutils/ld/lexsup.c (props changed) vendor/binutils/dist/x/binutils/ld/mri.c (props changed) vendor/binutils/dist/x/binutils/ld/mri.h (props changed) vendor/binutils/dist/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/dist/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/dist/x/binutils/ld/po/Make-in (props changed) vendor/binutils/dist/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/dist/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/elfppc.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/mips.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/mipsbsd.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/dist/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/dist/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/dist/x/binutils/ld/sysdep.h (props changed) vendor/binutils/dist/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/dist/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/dist/x/binutils/libiberty/README (props changed) vendor/binutils/dist/x/binutils/libiberty/_doprnt.c (props changed) vendor/binutils/dist/x/binutils/libiberty/acconfig.h (props changed) vendor/binutils/dist/x/binutils/libiberty/aclocal.m4 (props changed) vendor/binutils/dist/x/binutils/libiberty/alloca-botch.h (props changed) vendor/binutils/dist/x/binutils/libiberty/alloca-conf.h (props changed) vendor/binutils/dist/x/binutils/libiberty/alloca-norm.h (props changed) vendor/binutils/dist/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/dist/x/binutils/libiberty/argv.c (props changed) vendor/binutils/dist/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/dist/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/dist/x/binutils/libiberty/basename.c (props changed) vendor/binutils/dist/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/dist/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/dist/x/binutils/libiberty/bsearch.c (props changed) vendor/binutils/dist/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/dist/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/dist/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/dist/x/binutils/libiberty/clock.c (props changed) vendor/binutils/dist/x/binutils/libiberty/concat.c (props changed) vendor/binutils/dist/x/binutils/libiberty/config.in (props changed) vendor/binutils/dist/x/binutils/libiberty/config.table (props changed) vendor/binutils/dist/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/dist/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/dist/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/dist/x/binutils/libiberty/config/mh-sysv (props changed) vendor/binutils/dist/x/binutils/libiberty/config/mh-sysv4 (props changed) vendor/binutils/dist/x/binutils/libiberty/config/mt-mingw32 (props changed) vendor/binutils/dist/x/binutils/libiberty/configure (props changed) vendor/binutils/dist/x/binutils/libiberty/configure.in (props changed) vendor/binutils/dist/x/binutils/libiberty/copying-lib.texi (props changed) vendor/binutils/dist/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/dist/x/binutils/libiberty/cp-demangle.c (props changed) vendor/binutils/dist/x/binutils/libiberty/cp-demangle.h (props changed) vendor/binutils/dist/x/binutils/libiberty/cp-demint.c (props changed) vendor/binutils/dist/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/dist/x/binutils/libiberty/dummy.c (props changed) vendor/binutils/dist/x/binutils/libiberty/dyn-string.c (props changed) vendor/binutils/dist/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/dist/x/binutils/libiberty/ffs.c (props changed) vendor/binutils/dist/x/binutils/libiberty/fibheap.c (props changed) vendor/binutils/dist/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/dist/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/dist/x/binutils/libiberty/fnmatch.txh (props changed) vendor/binutils/dist/x/binutils/libiberty/functions.def (props changed) vendor/binutils/dist/x/binutils/libiberty/functions.texi (props changed) vendor/binutils/dist/x/binutils/libiberty/gather-docs (props changed) vendor/binutils/dist/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/dist/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/dist/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/dist/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/dist/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/dist/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/dist/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/dist/x/binutils/libiberty/hex.c (props changed) vendor/binutils/dist/x/binutils/libiberty/index.c (props changed) vendor/binutils/dist/x/binutils/libiberty/insque.c (props changed) vendor/binutils/dist/x/binutils/libiberty/lbasename.c (props changed) vendor/binutils/dist/x/binutils/libiberty/libiberty.texi (props changed) vendor/binutils/dist/x/binutils/libiberty/lrealpath.c (props changed) vendor/binutils/dist/x/binutils/libiberty/maint-tool (props changed) vendor/binutils/dist/x/binutils/libiberty/make-relative-prefix.c (props changed) vendor/binutils/dist/x/binutils/libiberty/make-temp-file.c (props changed) vendor/binutils/dist/x/binutils/libiberty/md5.c (props changed) vendor/binutils/dist/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/dist/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/dist/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/dist/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/dist/x/binutils/libiberty/memset.c (props changed) vendor/binutils/dist/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/dist/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/dist/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/dist/x/binutils/libiberty/obstacks.texi (props changed) vendor/binutils/dist/x/binutils/libiberty/partition.c (props changed) vendor/binutils/dist/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/dist/x/binutils/libiberty/physmem.c (props changed) vendor/binutils/dist/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/dist/x/binutils/libiberty/random.c (props changed) vendor/binutils/dist/x/binutils/libiberty/regex.c (props changed) vendor/binutils/dist/x/binutils/libiberty/rename.c (props changed) vendor/binutils/dist/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/dist/x/binutils/libiberty/safe-ctype.c (props changed) vendor/binutils/dist/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/dist/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/dist/x/binutils/libiberty/sort.c (props changed) vendor/binutils/dist/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/dist/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strncmp.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/dist/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/dist/x/binutils/libiberty/ternary.c (props changed) vendor/binutils/dist/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/dist/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/dist/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/dist/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/dist/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/dist/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/dist/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/dist/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/dist/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/dist/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/dist/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/dist/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/dist/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/dist/x/binutils/libtool.m4 (props changed) vendor/binutils/dist/x/binutils/ltcf-c.sh (props changed) vendor/binutils/dist/x/binutils/ltcf-cxx.sh (props changed) vendor/binutils/dist/x/binutils/ltcf-gcj.sh (props changed) vendor/binutils/dist/x/binutils/ltconfig (props changed) vendor/binutils/dist/x/binutils/ltmain.sh (props changed) vendor/binutils/dist/x/binutils/md5.sum (props changed) vendor/binutils/dist/x/binutils/missing (props changed) vendor/binutils/dist/x/binutils/mkinstalldirs (props changed) vendor/binutils/dist/x/binutils/move-if-change (props changed) vendor/binutils/dist/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/dist/x/binutils/opcodes/ChangeLog-0001 (props changed) vendor/binutils/dist/x/binutils/opcodes/ChangeLog-0203 (props changed) vendor/binutils/dist/x/binutils/opcodes/ChangeLog-9297 (props changed) vendor/binutils/dist/x/binutils/opcodes/ChangeLog-9899 (props changed) vendor/binutils/dist/x/binutils/opcodes/MAINTAINERS (props changed) vendor/binutils/dist/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/dist/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/dist/x/binutils/opcodes/acconfig.h (props changed) vendor/binutils/dist/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/dist/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/dist/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/arc-dis.h (props changed) vendor/binutils/dist/x/binutils/opcodes/arc-ext.c (props changed) vendor/binutils/dist/x/binutils/opcodes/arc-ext.h (props changed) vendor/binutils/dist/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/dist/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/dist/x/binutils/opcodes/cgen-asm.in (props changed) vendor/binutils/dist/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/cgen-dis.in (props changed) vendor/binutils/dist/x/binutils/opcodes/cgen-ibld.in (props changed) vendor/binutils/dist/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/cgen.sh (props changed) vendor/binutils/dist/x/binutils/opcodes/config.in (props changed) vendor/binutils/dist/x/binutils/opcodes/configure (props changed) vendor/binutils/dist/x/binutils/opcodes/configure.in (props changed) vendor/binutils/dist/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/dist/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/dist/x/binutils/opcodes/dis-init.c (props changed) vendor/binutils/dist/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/dist/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-asmtab.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-asmtab.h (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-gen.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-ic.tbl (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-opc-a.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-opc-b.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-opc-d.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-opc-f.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-opc-i.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-opc-m.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-opc-x.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-opc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-opc.h (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-raw.tbl (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-war.tbl (props changed) vendor/binutils/dist/x/binutils/opcodes/ia64-waw.tbl (props changed) vendor/binutils/dist/x/binutils/opcodes/mips-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/mips-opc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/mips16-opc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/dist/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/dist/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/dist/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/dist/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/s390-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/s390-mkopc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/s390-opc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/s390-opc.txt (props changed) vendor/binutils/dist/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/dist/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/dist/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/dist/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/dist/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/dist/x/binutils/symlink-tree (props changed) vendor/binutils/dist/x/binutils/ylwrap (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/README (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ChangeLog-9193 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ChangeLog-9495 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ChangeLog-9697 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/Makefile.am (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/PORTING (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/README (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/TODO (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/acinclude.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aclocal.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aout-arm.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aout-encap.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aout-sparcle.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aout-target.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aout-tic30.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aout0.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aout32.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aout64.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aoutf1.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/aoutx.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/archive.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/archures.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/armnetbsd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/bfd-in.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/bfd-in2.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/bfd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/binary.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cache.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coff-alpha.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coff-arm.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coff-aux.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coff-i386.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coff-mips.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coff-ppc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coff-sparc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coff-tic30.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coff-z8k.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coffcode.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coffgen.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cofflink.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/coffswap.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/config.bfd (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/config.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/configure (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/configure.host (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/configure.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/corefile.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-alpha.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-arc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-arm.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-i386.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-mips.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-powerpc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-sparc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-tic30.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-v850.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/cpu-z8k.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/demo64.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/dep-in.sed (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/doc/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/doc/Makefile.am (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/doc/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/doc/bfd.texinfo (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/doc/bfdint.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/doc/bfdsumm.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/doc/chew.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/doc/doc.str (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/doc/proto.str (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/dwarf1.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/dwarf2.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ecoff.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ecofflink.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ecoffswap.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf-bfd.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf32-arc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf32-arm.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf32-gen.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf32-i386.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf32-mips.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf32-ppc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf32-sparc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf32-v850.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf32.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf64-alpha.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf64-gen.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf64-mips.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf64-sparc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elf64.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elfarm-nabi.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elfarm-oabi.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elfcode.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elfcore.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elflink.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elflink.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/elfxx-target.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/format.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/freebsd.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/gen-aout.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/genlink.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/hash.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/host-aout.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/hosts/alphalinux.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/hosts/decstation.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/hosts/i386bsd.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/hosts/i386linux.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/hosts/i386sco.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/i386aout.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/i386bsd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/i386freebsd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/i386linux.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/i386netbsd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ieee.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ihex.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/init.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/libaout.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/libbfd-in.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/libbfd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/libbfd.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/libcoff-in.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/libcoff.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/libecoff.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/libieee.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/linker.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/mipsbsd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/netbsd-core.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/netbsd.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/opncls.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/osf-core.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/pe-arm.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/pe-i386.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/pe-mips.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/pe-ppc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/po/Make-in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/po/POTFILES.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/po/bfd.pot (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ppcboot.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/ptrace-core.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/reloc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/reloc16.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/sco5-core.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/section.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/sparclinux.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/sparcnetbsd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/srec.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/stab-syms.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/stabs.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/stamp-h.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/syms.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/sysdep.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/targets.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/targmatch.sed (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/tekhex.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/trad-core.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/Makefile.am (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/NEWS (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/README (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/acinclude.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/aclocal.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/addr2line.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/addr2line.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/ar.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/ar.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/arlex.l (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/arparse.y (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/arsup.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/arsup.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/binutils.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/bucomm.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/bucomm.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/budbg.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/coffdump.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/coffgrok.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/coffgrok.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/config.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/configure (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/configure.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/cxxfilt.man (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/debug.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/debug.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/deflex.l (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/defparse.y (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/dep-in.sed (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/dlltool.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/dlltool.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/dllwrap.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/dyn-string.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/dyn-string.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/filemode.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/ieee.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/is-ranlib.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/is-strip.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/maybe-ranlib.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/maybe-strip.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/nm.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/nm.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/not-ranlib.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/not-strip.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/objcopy.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/objcopy.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/objdump.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/objdump.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/po/Make-in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/po/POTFILES.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/po/binutils.pot (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/prdbg.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/ranlib.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/ranlib.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/rclex.l (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/rcparse.y (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/rdcoff.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/rddbg.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/readelf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/rename.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/resbin.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/rescoff.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/resrc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/resres.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/sanity.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/size.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/size.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/srconv.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/stabs.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/stamp-h.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/strings.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/strings.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/strip.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/sysdump.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/sysinfo.y (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/syslex.l (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/version.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/wrstabs.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config-ml.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config.guess (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config.sub (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/acinclude.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-armpic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-cxux (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-decstation (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-elfalphapic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-mingw32 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-necv4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-papic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-ppcpic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-sco (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-solaris (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-sparcpic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-sysv (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-sysv4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-sysv5 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mh-x86pic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mt-armpic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mt-elfalphapic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mt-linux (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mt-ospace (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mt-papic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mt-ppcpic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mt-sparcpic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mt-v810 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/mt-x86pic (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/configure (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/configure.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/add-log.el (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/add-log.vi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configbuild.ein (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configbuild.fig (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configbuild.jin (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configbuild.tin (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configdev.ein (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configdev.fig (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configdev.jin (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configdev.tin (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configure (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configure.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/configure.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/make-stds.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/standards.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/CONTRIBUTORS (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/ChangeLog-9295 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/ChangeLog-9697 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/Makefile.am (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/NEWS (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/README (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/acinclude.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/aclocal.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/app.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/as.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/as.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/asintl.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/atof-generic.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/bignum-copy.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/bignum.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/bit_fix.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/cgen.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/cgen.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/cond.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/aout_gnu.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/atof-ieee.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/e-i386aout.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/e-i386coff.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/e-i386elf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-aout.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-aout.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-coff.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-coff.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-ecoff.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-ecoff.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-elf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-elf.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-generic.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-generic.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-ieee.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-ieee.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-multi.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/obj-multi.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-alpha.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-alpha.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-arc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-arc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-arm.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-arm.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-generic.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-generic.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-i386.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-i386.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-m68851.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-ppc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-ppc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-sparc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-sparc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-tic30.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-tic30.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-v850.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-v850.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-z8k.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/tc-z8k.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-386bsd.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-aux.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-generic.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-linux.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-nbsd.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-pe.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-ppcnw.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-sparcaout.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-svr4.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/config/te-sysv32.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/configure (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/configure.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/debug.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/dep-in.sed (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/depend.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/Makefile.am (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/all.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/as.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/as.texinfo (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/c-arm.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/c-i386.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/c-sparc.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/c-v850.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/c-z8k.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/gasp.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/h8.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/doc/internals.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/dwarf2dbg.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/dwarf2dbg.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/ecoff.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/ecoff.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/ehopt.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/emul-target.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/emul.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/expr.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/expr.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/flonum-copy.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/flonum-konst.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/flonum-mult.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/flonum.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/frags.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/frags.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/gasp.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/gdbinit.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/hash.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/hash.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/input-file.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/input-file.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/input-scrub.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/itbl-lex.l (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/itbl-ops.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/itbl-ops.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/itbl-parse.y (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/link.cmd (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/listing.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/listing.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/literal.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/macro.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/macro.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/messages.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/obj.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/output-file.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/output-file.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/po/Make-in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/po/POTFILES.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/po/gas.pot (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/read.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/read.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/sb.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/sb.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/stabs.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/stamp-h.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/struc-symbol.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/subsegs.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/subsegs.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/symbols.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/symbols.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/tc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/write.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/write.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/ansidecl.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/aout/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/aout/aout64.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/aout/ar.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/aout/encap.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/aout/host.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/aout/ranlib.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/aout/reloc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/aout/stab.def (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/aout/stab_gnu.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/bfdlink.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/bin-bugs.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/callback.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/alpha.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/arm.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/aux-coff.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/ecoff.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/i386.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/internal.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/pe.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/powerpc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/sh.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/sparc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/sym.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/symconst.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/tic30.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/coff/z8k.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/demangle.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/dis-asm.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/alpha.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/arc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/arm-oabi.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/arm.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/common.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/dwarf.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/dwarf2.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/external.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/i386.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/internal.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/mips.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/ppc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/reloc-macros.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/sh.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/sparc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/elf/v850.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/floatformat.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/fnmatch.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/fopen-bin.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/fopen-same.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/gdbm.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/getopt.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/hashtab.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/ieee.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/libiberty.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/objalloc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/obstack.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/alpha.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/arc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/arm.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/cgen.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/convex.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/i386.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/mips.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/np1.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/pn.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/ppc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/sparc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/tic30.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/opcode/v850.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/partition.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/progress.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/regs/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/remote-sim.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/splay-tree.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/symcat.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/install-sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/Makefile.am (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/NEWS (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/README (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/TODO (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/acinclude.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/aclocal.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/config.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/configure (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/configure.host (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/configure.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/configure.tgt (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/deffile.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/deffilep.y (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/dep-in.sed (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/README (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/alpha.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/arcelf.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/armaoutb.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/armaoutl.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/armcoff.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/armelf.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/armelf_linux.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/armelf_linux26.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/armelf_oabi.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/armnbsd.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/armpe.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/coff_sparc.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32_sparc.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32b4300.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32bmip.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32bmipn32.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32bsmip.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32ebmip.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32elmip.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32l4300.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32lmip.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32lppc.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32lsmip.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32ppc.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf32ppclinux.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf64_sparc.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf64alpha.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf64bmip.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/elf_i386.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/i386aout.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/i386bsd.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/i386coff.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/i386linux.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/i386moss.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/i386nbsd.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/i386nw.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/i386pe.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/i386pe_posix.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/ppcmacos.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/ppcnw.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/ppcpe.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/sh.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/shelf.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/shl.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/shlelf.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/sparcaout.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/sparclinux.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/sparcnbsd.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/tic30aout.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/tic30coff.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/v850.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/vanilla.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/vsta.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/z8001.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emulparams/z8002.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/README (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/armcoff.em (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/armelf.em (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/armelf_oabi.em (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/astring.sed (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/elf32.em (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/generic.em (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/linux.em (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/ostring.sed (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/pe.em (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/emultempl/vanilla.em (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/gen-doc.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/genscripts.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/h8-doc.texi (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ld.1 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ld.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ld.texinfo (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldcref.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldctor.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldctor.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldemul.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldemul.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldexp.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldexp.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldfile.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldfile.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldgram.y (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldint.texinfo (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldlang.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldlang.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldlex.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldlex.l (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldmain.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldmain.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldmisc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldmisc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldver.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldver.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldwrite.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/ldwrite.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/lexsup.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/mri.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/mri.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/pe-dll.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/pe-dll.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/po/Make-in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/po/POTFILES.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/po/ld.pot (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/README (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/alpha.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/aout.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/armaout.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/armcoff.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/elf.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/elfppc.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/i386coff.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/nw.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/pe.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/ppcpe.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/sh.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/sparccoff.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/tic30aout.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/tic30coff.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/v850.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/vanilla.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/scripttempl/z8000.sc (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/stamp-h.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/sysdep.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/README (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/acconfig.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/alloca-conf.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/alloca.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/argv.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/asprintf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/atexit.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/basename.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/bcmp.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/bcopy.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/bzero.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/calloc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/choose-temp.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/clock.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/concat.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/config.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/config.table (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/config/mh-cxux7 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/config/mh-fbsd21 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/config/mh-openedition (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/configure (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/configure.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/copysign.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/cplus-dem.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/fdmatch.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/floatformat.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/fnmatch.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/getcwd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/getopt.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/getopt1.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/getpagesize.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/getpwd.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/getruntime.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/hashtab.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/hex.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/index.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/insque.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/memchr.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/memcmp.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/memcpy.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/memmove.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/memset.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/mkstemps.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/objalloc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/obstack.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/partition.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/pexecute.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/putenv.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/random.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/rename.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/rindex.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/setenv.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/sigsetmask.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/spaces.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/splay-tree.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strcasecmp.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strchr.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strdup.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strerror.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strncasecmp.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strrchr.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strsignal.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strstr.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strtod.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strtol.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/strtoul.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/tmpnam.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/vasprintf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/vfork.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/vfprintf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/vprintf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/vsprintf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/waitpid.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/xatexit.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/xexit.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/xmalloc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/xmemdup.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/xstrdup.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/xstrerror.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ltconfig (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ltmain.sh (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/missing (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/mkinstalldirs (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/move-if-change (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/ChangeLog (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/Makefile.am (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/Makefile.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/acinclude.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/aclocal.m4 (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/alpha-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/alpha-opc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/arc-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/arc-opc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/arm-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/arm-opc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/cgen-asm.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/cgen-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/cgen-opc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/config.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/configure (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/configure.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/dep-in.sed (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/dis-buf.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/disassemble.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/i386-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/opintl.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/po/Make-in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/po/POTFILES.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/po/opcodes.pot (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/ppc-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/ppc-opc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/sh-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/sh-opc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/sparc-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/stamp-h.in (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/sysdep.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/tic30-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/v850-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/v850-opc.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/z8k-dis.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/z8k-opc.h (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/z8kgen.c (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/symlink-tree (props changed) vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ylwrap (props changed) vendor/binutils/sourceware_binutils_anoncvs_19990502/x/binutils/opcodes/sparc-opc.c (props changed) vendor/binutils/sourceware_binutils_anoncvs_20000414/x/binutils/include/elf/common.h (props changed) vendor/binutils/sourceware_binutils_anoncvs_20000512/x/binutils/include/elf/common.h (props changed) From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 19:16:52 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35A131065711; Mon, 19 Jan 2009 19:16:51 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 430258FC1D; Mon, 19 Jan 2009 19:16:51 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JJGpY8018960; Mon, 19 Jan 2009 19:16:51 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JJGp5K018959; Mon, 19 Jan 2009 19:16:51 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <200901191916.n0JJGp5K018959@svn.freebsd.org> From: Alexander Motin Date: Mon, 19 Jan 2009 19:16:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187445 - head/sys/dev/sound/pci/hda X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 19:16:53 -0000 Author: mav Date: Mon Jan 19 19:16:50 2009 New Revision: 187445 URL: http://svn.freebsd.org/changeset/base/187445 Log: Add two more nVidia HDMI codec IDs. Modified: head/sys/dev/sound/pci/hda/hdac.c Modified: head/sys/dev/sound/pci/hda/hdac.c ============================================================================== --- head/sys/dev/sound/pci/hda/hdac.c Mon Jan 19 17:32:32 2009 (r187444) +++ head/sys/dev/sound/pci/hda/hdac.c Mon Jan 19 19:16:50 2009 (r187445) @@ -761,8 +761,10 @@ static const struct { /* NVIDIA */ #define HDA_CODEC_NVIDIAMCP78 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0002) +#define HDA_CODEC_NVIDIAMCP78_2 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0006) #define HDA_CODEC_NVIDIAMCP7A HDA_CODEC_CONSTRUCT(NVIDIA, 0x0007) #define HDA_CODEC_NVIDIAMCP67 HDA_CODEC_CONSTRUCT(NVIDIA, 0x0067) +#define HDA_CODEC_NVIDIAMCP73 HDA_CODEC_CONSTRUCT(NVIDIA, 0x8001) #define HDA_CODEC_NVIDIAXXXX HDA_CODEC_CONSTRUCT(NVIDIA, 0xffff) /* INTEL */ @@ -905,7 +907,9 @@ static const struct { { HDA_CODEC_ATIRS690, "ATI RS690/780 HDMI" }, { HDA_CODEC_ATIR6XX, "ATI R6xx HDMI" }, { HDA_CODEC_NVIDIAMCP67, "NVidia MCP67 HDMI" }, + { HDA_CODEC_NVIDIAMCP73, "NVidia MCP73 HDMI" }, { HDA_CODEC_NVIDIAMCP78, "NVidia MCP78 HDMI" }, + { HDA_CODEC_NVIDIAMCP78_2, "NVidia MCP78 HDMI" }, { HDA_CODEC_NVIDIAMCP7A, "NVidia MCP7A HDMI" }, { HDA_CODEC_INTELG45_1, "Intel G45 HDMI" }, { HDA_CODEC_INTELG45_2, "Intel G45 HDMI" }, From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 21:10:05 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0405F106568A; Mon, 19 Jan 2009 21:10:05 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E3B4E8FC1B; Mon, 19 Jan 2009 21:10:04 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JLA4Tb021326; Mon, 19 Jan 2009 21:10:04 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JLA4PX021325; Mon, 19 Jan 2009 21:10:04 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <200901192110.n0JLA4PX021325@svn.freebsd.org> From: Marius Strobl Date: Mon, 19 Jan 2009 21:10:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187446 - stable/7/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 21:10:06 -0000 Author: marius Date: Mon Jan 19 21:10:04 2009 New Revision: 187446 URL: http://svn.freebsd.org/changeset/base/187446 Log: - MFC: 174903 Mention support for the 5722 driver in bge.4 as well. - MFC: 187315 Sync the description of jumbo frame support with reality as of r187309; it's also supported with BCM5702 (matched by BGE_ASICREV_BCM5703) but bge(4) currently doesn't with neither BCM5714 nor BCM5780. Modified: stable/7/share/man/man4/bge.4 Modified: stable/7/share/man/man4/bge.4 ============================================================================== --- stable/7/share/man/man4/bge.4 Mon Jan 19 19:16:50 2009 (r187445) +++ stable/7/share/man/man4/bge.4 Mon Jan 19 21:10:04 2009 (r187446) @@ -31,12 +31,12 @@ .\" .\" $FreeBSD$ .\" -.Dd October 26, 2007 +.Dd January 15, 2009 .Dt BGE 4 .Os .Sh NAME .Nm bge -.Nd "Broadcom BCM570x/5714/5721/5750/5751/5752/5789 PCI Gigabit Ethernet adapter driver" +.Nd "Broadcom BCM570x/5714/5721/5722/5750/5751/5752/5789 PCI Gigabit Ethernet adapter driver" .Sh SYNOPSIS To compile this driver into the kernel, place the following lines in your @@ -56,7 +56,7 @@ if_bge_load="YES" The .Nm driver provides support for various NICs based on the Broadcom BCM570x, -5714, 5721, 5750, 5751, 5752 and 5789 families of Gigabit Ethernet +5714, 5721, 5722, 5750, 5751, 5752 and 5789 families of Gigabit Ethernet controller chips. .Pp All of these NICs are capable of 10, 100 and 1000Mbps speeds over CAT5 @@ -82,7 +82,7 @@ copper gigabit transceivers, which support autonegotiation of 10, 100 and 1000Mbps modes in full or half duplex. .Pp -The BCM5700, BCM5701, BCM5703, BCM5704, BCM5714 and BCM5780 also support +The BCM5700, BCM5701, BCM5702, BCM5703 and BCM5704 also support jumbo frames, which can be configured via the interface MTU setting. Selecting an MTU larger than 1500 bytes with the From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 21:22:10 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC4E91065674; Mon, 19 Jan 2009 21:22:10 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 998E68FC14; Mon, 19 Jan 2009 21:22:10 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JLMAbj021611; Mon, 19 Jan 2009 21:22:10 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JLMA57021610; Mon, 19 Jan 2009 21:22:10 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200901192122.n0JLMA57021610@svn.freebsd.org> From: Andrew Thompson Date: Mon, 19 Jan 2009 21:22:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187447 - head/sys/dev/usb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 21:22:11 -0000 Author: thompsa Date: Mon Jan 19 21:22:10 2009 New Revision: 187447 URL: http://svn.freebsd.org/changeset/base/187447 Log: Set the pipe pointer before calling usbd_transfer() as its possible for the xfer callback to be invoked on error. MFC after: 2 weeks Modified: head/sys/dev/usb/usbdi.c Modified: head/sys/dev/usb/usbdi.c ============================================================================== --- head/sys/dev/usb/usbdi.c Mon Jan 19 21:10:04 2009 (r187446) +++ head/sys/dev/usb/usbdi.c Mon Jan 19 21:22:10 2009 (r187447) @@ -237,8 +237,8 @@ usbd_open_pipe_intr(usbd_interface_handl USBD_NO_TIMEOUT, cb); ipipe->intrxfer = xfer; ipipe->repeat = 1; - err = usbd_transfer(xfer); *pipe = ipipe; + err = usbd_transfer(xfer); if (err != USBD_IN_PROGRESS && err) goto bad2; return (USBD_NORMAL_COMPLETION); From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 21:42:54 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C85AF106564A; Mon, 19 Jan 2009 21:42:54 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9A97D8FC14; Mon, 19 Jan 2009 21:42:54 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JLgs20022251; Mon, 19 Jan 2009 21:42:54 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JLgsGs022250; Mon, 19 Jan 2009 21:42:54 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <200901192142.n0JLgsGs022250@svn.freebsd.org> From: Marius Strobl Date: Mon, 19 Jan 2009 21:42:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187448 - stable/7/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 21:42:55 -0000 Author: marius Date: Mon Jan 19 21:42:54 2009 New Revision: 187448 URL: http://svn.freebsd.org/changeset/base/187448 Log: - MFC: 174903 Mention support for the 5722 driver in bge.4 as well. - MFC: 187315 Sync the description of jumbo frame support with reality as of r187309; it's also supported with BCM5702 (matched by BGE_ASICREV_BCM5703) but bge(4) currently doesn't with neither BCM5714 nor BCM5780. Modified: stable/7/share/man/man4/ (props changed) From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 21:43:49 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B3A5106568D; Mon, 19 Jan 2009 21:43:49 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3DA6F8FC1B; Mon, 19 Jan 2009 21:43:49 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JLhmTV022308; Mon, 19 Jan 2009 21:43:48 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JLhmIq022307; Mon, 19 Jan 2009 21:43:48 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <200901192143.n0JLhmIq022307@svn.freebsd.org> From: Marius Strobl Date: Mon, 19 Jan 2009 21:43:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187449 - stable/6/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 21:43:50 -0000 Author: marius Date: Mon Jan 19 21:43:48 2009 New Revision: 187449 URL: http://svn.freebsd.org/changeset/base/187449 Log: - MFC: 154328 Add the HP NC7771 adapter to the list of known products. - MFC: 162584 Add documentation on the new bge tunable. Also put the tunable docs into a separate section. - MFC: 162825 Spelling - MFC: 169881 (bge.4 part) Remove BCM5704S specific tunable (hw.bge.fake_autoneg) and auto-detect the condition. - MFC: 174903 Mention support for the 5722 driver in bge.4 as well. - MFC: 187315 Sync the description of jumbo frame support with reality as of r187310; it's also supported with BCM5702 (matched by BGE_ASICREV_BCM5703) but bge(4) currently doesn't with neither BCM5714 nor BCM5780. Modified: stable/6/share/man/man4/ (props changed) stable/6/share/man/man4/bge.4 Modified: stable/6/share/man/man4/bge.4 ============================================================================== --- stable/6/share/man/man4/bge.4 Mon Jan 19 21:42:54 2009 (r187448) +++ stable/6/share/man/man4/bge.4 Mon Jan 19 21:43:48 2009 (r187449) @@ -31,12 +31,12 @@ .\" .\" $FreeBSD$ .\" -.Dd January 30, 2007 +.Dd January 15, 2009 .Dt BGE 4 .Os .Sh NAME .Nm bge -.Nd "Broadcom BCM570x/5714/5721/5750/5751/5752/5789 PCI Gigabit Ethernet adapter driver" +.Nd "Broadcom BCM570x/5714/5721/5722/5750/5751/5752/5789 PCI Gigabit Ethernet adapter driver" .Sh SYNOPSIS To compile this driver into the kernel, place the following lines in your @@ -56,7 +56,7 @@ if_bge_load="YES" The .Nm driver provides support for various NICs based on the Broadcom BCM570x, -5714, 5721, 5750, 5751, 5752 and 5789 families of Gigabit Ethernet +5714, 5721, 5722, 5750, 5751, 5752 and 5789 families of Gigabit Ethernet controller chips. .Pp All of these NICs are capable of 10, 100 and 1000Mbps speeds over CAT5 @@ -82,7 +82,7 @@ copper gigabit transceivers, which support autonegotiation of 10, 100 and 1000Mbps modes in full or half duplex. .Pp -The BCM5700, BCM5701, BCM5703, BCM5704, BCM5714 and BCM5780 also support +The BCM5700, BCM5701, BCM5702, BCM5703 and BCM5704 also support jumbo frames, which can be configured via the interface MTU setting. Selecting an MTU larger than 1500 bytes with the @@ -194,6 +194,8 @@ HP ProLiant NC7760 embedded Gigabit NIC .It HP ProLiant NC7770 PCI-X Gigabit NIC (10/100/1000baseTX) .It +HP ProLiant NC7771 PCI-X Gigabit NIC (10/100/1000baseTX) +.It HP ProLiant NC7781 embedded PCI-X Gigabit NIC (10/100/1000baseTX) .It Netgear GA302T (10/100/1000baseTX) @@ -202,6 +204,17 @@ SysKonnect SK-9D21 (10/100/1000baseTX) .It SysKonnect SK-9D41 (1000baseSX) .El +.Sh LOADER TUNABLES +The following tunable can be set at the +.Xr loader 8 +prompt before booting the kernel, or stored in +.Xr loader.conf 5 . +.Bl -tag -width indent +.It Va hw.bge.allow_asf +Allow the ASF feature for cooperating with IPMI. +Can cause system lockup problems on a small number of systems. +Disabled by default. +.El .Sh DIAGNOSTICS .Bl -diag .It "bge%d: couldn't map memory" From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 21:47:01 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70829106568C; Mon, 19 Jan 2009 21:47:01 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5CF688FC2A; Mon, 19 Jan 2009 21:47:01 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JLl1Sa022455; Mon, 19 Jan 2009 21:47:01 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JLl1YA022453; Mon, 19 Jan 2009 21:47:01 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <200901192147.n0JLl1YA022453@svn.freebsd.org> From: Marius Strobl Date: Mon, 19 Jan 2009 21:47:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187450 - stable/7/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 21:47:02 -0000 Author: marius Date: Mon Jan 19 21:47:01 2009 New Revision: 187450 URL: http://svn.freebsd.org/changeset/base/187450 Log: MFC: r187316 Don't cross-reference gem(4) and hme(4); maybe this made some sense back when these two were the only two NIC drivers working on sparc64 but it no longer does nowadays. Modified: stable/7/share/man/man4/ (props changed) stable/7/share/man/man4/gem.4 stable/7/share/man/man4/hme.4 Modified: stable/7/share/man/man4/gem.4 ============================================================================== --- stable/7/share/man/man4/gem.4 Mon Jan 19 21:43:48 2009 (r187449) +++ stable/7/share/man/man4/gem.4 Mon Jan 19 21:47:01 2009 (r187450) @@ -33,7 +33,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 26, 2007 +.Dd January 15, 2009 .Dt GEM 4 .Os .Sh NAME @@ -115,7 +115,6 @@ driver fails to attach to Sun Gigabit Et as no SBus front-end has been written so far. .Sh SEE ALSO .Xr altq 4 , -.Xr hme 4 , .Xr miibus 4 , .Xr netintro 4 , .Xr eeprom 8 , Modified: stable/7/share/man/man4/hme.4 ============================================================================== --- stable/7/share/man/man4/hme.4 Mon Jan 19 21:43:48 2009 (r187449) +++ stable/7/share/man/man4/hme.4 Mon Jan 19 21:47:01 2009 (r187450) @@ -36,7 +36,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 16, 2005 +.Dd January 15, 2009 .Dt HME 4 .Os .Sh NAME @@ -120,7 +120,6 @@ on boards equipped with more than one Et except the single-port SBus versions. .Sh SEE ALSO .Xr altq 4 , -.Xr gem 4 , .Xr intro 4 , .Xr miibus 4 , .Xr netintro 4 , From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 21:47:06 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63E4D1065675; Mon, 19 Jan 2009 21:47:06 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 50E6C8FC0C; Mon, 19 Jan 2009 21:47:06 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JLl6m7022495; Mon, 19 Jan 2009 21:47:06 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JLl6Fe022493; Mon, 19 Jan 2009 21:47:06 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <200901192147.n0JLl6Fe022493@svn.freebsd.org> From: Marius Strobl Date: Mon, 19 Jan 2009 21:47:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187451 - stable/6/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 21:47:09 -0000 Author: marius Date: Mon Jan 19 21:47:06 2009 New Revision: 187451 URL: http://svn.freebsd.org/changeset/base/187451 Log: MFC: r187316 Don't cross-reference gem(4) and hme(4); maybe this made some sense back when these two were the only two NIC drivers working on sparc64 but it no longer does nowadays. Modified: stable/6/share/man/man4/ (props changed) stable/6/share/man/man4/gem.4 stable/6/share/man/man4/hme.4 Modified: stable/6/share/man/man4/gem.4 ============================================================================== --- stable/6/share/man/man4/gem.4 Mon Jan 19 21:47:01 2009 (r187450) +++ stable/6/share/man/man4/gem.4 Mon Jan 19 21:47:06 2009 (r187451) @@ -33,7 +33,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 26, 2007 +.Dd January 15, 2009 .Dt GEM 4 .Os .Sh NAME @@ -115,7 +115,6 @@ driver fails to attach to Sun Gigabit Et as no SBus front-end has been written so far. .Sh SEE ALSO .Xr altq 4 , -.Xr hme 4 , .Xr miibus 4 , .Xr netintro 4 , .Xr eeprom 8 , Modified: stable/6/share/man/man4/hme.4 ============================================================================== --- stable/6/share/man/man4/hme.4 Mon Jan 19 21:47:01 2009 (r187450) +++ stable/6/share/man/man4/hme.4 Mon Jan 19 21:47:06 2009 (r187451) @@ -36,7 +36,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 16, 2005 +.Dd January 15, 2009 .Dt HME 4 .Os .Sh NAME @@ -120,7 +120,6 @@ on boards equipped with more than one Et except the single-port SBus versions. .Sh SEE ALSO .Xr altq 4 , -.Xr gem 4 , .Xr intro 4 , .Xr miibus 4 , .Xr netintro 4 , From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 21:49:22 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CB171065690; Mon, 19 Jan 2009 21:49:22 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 587898FC08; Mon, 19 Jan 2009 21:49:22 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JLnMup022605; Mon, 19 Jan 2009 21:49:22 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JLnM0g022604; Mon, 19 Jan 2009 21:49:22 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <200901192149.n0JLnM0g022604@svn.freebsd.org> From: Marius Strobl Date: Mon, 19 Jan 2009 21:49:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187452 - stable/7/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 21:49:24 -0000 Author: marius Date: Mon Jan 19 21:49:22 2009 New Revision: 187452 URL: http://svn.freebsd.org/changeset/base/187452 Log: MFC: r187341 Update URL. Modified: stable/7/share/man/man4/ (props changed) stable/7/share/man/man4/hme.4 Modified: stable/7/share/man/man4/hme.4 ============================================================================== --- stable/7/share/man/man4/hme.4 Mon Jan 19 21:47:06 2009 (r187451) +++ stable/7/share/man/man4/hme.4 Mon Jan 19 21:49:22 2009 (r187452) @@ -36,7 +36,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 15, 2009 +.Dd January 16, 2009 .Dt HME 4 .Os .Sh NAME @@ -129,7 +129,7 @@ except the single-port SBus versions. .%T "STP2002QFP Fast Ethernet, Parallel Port, SCSI (FEPS) User's Guide" .%D April 1996 .%A Sun Microelectronics -.%O http://www.sun.com/oem/products/manuals/STP2002QFP-UG.pdf +.%O http://mediacast.sun.com/users/Barton808/media/STP2002QFP-FEPs_UG.pdf .Re .Sh HISTORY The From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 21:49:46 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 655B510656C4; Mon, 19 Jan 2009 21:49:46 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 525E28FC0C; Mon, 19 Jan 2009 21:49:46 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JLnkBB022646; Mon, 19 Jan 2009 21:49:46 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JLnkF1022645; Mon, 19 Jan 2009 21:49:46 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <200901192149.n0JLnkF1022645@svn.freebsd.org> From: Marius Strobl Date: Mon, 19 Jan 2009 21:49:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187453 - stable/6/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 21:49:47 -0000 Author: marius Date: Mon Jan 19 21:49:46 2009 New Revision: 187453 URL: http://svn.freebsd.org/changeset/base/187453 Log: MFC: r187341 Update URL. Modified: stable/6/share/man/man4/ (props changed) stable/6/share/man/man4/hme.4 Modified: stable/6/share/man/man4/hme.4 ============================================================================== --- stable/6/share/man/man4/hme.4 Mon Jan 19 21:49:22 2009 (r187452) +++ stable/6/share/man/man4/hme.4 Mon Jan 19 21:49:46 2009 (r187453) @@ -36,7 +36,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 15, 2009 +.Dd January 16, 2009 .Dt HME 4 .Os .Sh NAME @@ -129,7 +129,7 @@ except the single-port SBus versions. .%T "STP2002QFP Fast Ethernet, Parallel Port, SCSI (FEPS) User's Guide" .%D April 1996 .%A Sun Microelectronics -.%O http://www.sun.com/oem/products/manuals/STP2002QFP-UG.pdf +.%O http://mediacast.sun.com/users/Barton808/media/STP2002QFP-FEPs_UG.pdf .Re .Sh HISTORY The From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 22:06:35 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71BC41065674; Mon, 19 Jan 2009 22:06:35 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5E9268FC26; Mon, 19 Jan 2009 22:06:35 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JM6Z1C023097; Mon, 19 Jan 2009 22:06:35 GMT (envelope-from emax@svn.freebsd.org) Received: (from emax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JM6Znx023096; Mon, 19 Jan 2009 22:06:35 GMT (envelope-from emax@svn.freebsd.org) Message-Id: <200901192206.n0JM6Znx023096@svn.freebsd.org> From: Maksim Yevmenkin Date: Mon, 19 Jan 2009 22:06:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187454 - head/sys/netgraph/bluetooth/l2cap X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 22:06:36 -0000 Author: emax Date: Mon Jan 19 22:06:35 2009 New Revision: 187454 URL: http://svn.freebsd.org/changeset/base/187454 Log: Properly return error code to the caller. This should fix the following panic in ng_l2cap(4). panic: ng_l2cap_l2ca_con_req: ubt0l2cap - could not find connection! While i'm here get rid of few goto's. MFC after: 1 week Modified: head/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c Modified: head/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c ============================================================================== --- head/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c Mon Jan 19 21:49:46 2009 (r187453) +++ head/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c Mon Jan 19 22:06:35 2009 (r187454) @@ -116,10 +116,14 @@ ng_l2cap_lp_con_req(ng_l2cap_p l2cap, bd NG_SEND_MSG_HOOK(error, l2cap->node, msg, l2cap->hci, 0); if (error != 0) { - if ((error = ng_l2cap_lp_untimeout(con)) != 0) - return (error); + if (ng_l2cap_lp_untimeout(con) == 0) + ng_l2cap_free_con(con); - ng_l2cap_free_con(con); + /* + * Do not free connection if ng_l2cap_lp_untimeout() failed + * let timeout handler deal with it. Always return error to + * the caller. + */ } return (error); @@ -213,8 +217,8 @@ ng_l2cap_lp_con_ind(ng_l2cap_p l2cap, st NG_L2CAP_ALERT( "%s: %s - invalid LP_ConnectInd message size\n", __func__, NG_NODE_NAME(l2cap->node)); - error = EMSGSIZE; - goto out; + + return (EMSGSIZE); } ep = (ng_hci_lp_con_ind_ep *) (msg->data); @@ -227,8 +231,8 @@ ng_l2cap_lp_con_ind(ng_l2cap_p l2cap, st "Connection already exists, state=%d, con_handle=%d\n", __func__, NG_NODE_NAME(l2cap->node), con->state, con->con_handle); - error = EEXIST; - goto out; + + return (EEXIST); } /* Check if lower layer protocol is still connected */ @@ -236,24 +240,22 @@ ng_l2cap_lp_con_ind(ng_l2cap_p l2cap, st NG_L2CAP_ERR( "%s: %s - hook \"%s\" is not connected or valid", __func__, NG_NODE_NAME(l2cap->node), NG_L2CAP_HOOK_HCI); - error = ENOTCONN; - goto out; + + return (ENOTCONN); } /* Create and intialize new connection descriptor */ con = ng_l2cap_new_con(l2cap, &ep->bdaddr); - if (con == NULL) { - error = ENOMEM; - goto out; - } + if (con == NULL) + return (ENOMEM); /* Create and send LP_ConnectRsp event */ NG_MKMESSAGE(rsp, NGM_HCI_COOKIE, NGM_HCI_LP_CON_RSP, sizeof(*rp), M_NOWAIT); if (rsp == NULL) { ng_l2cap_free_con(con); - error = ENOMEM; - goto out; + + return (ENOMEM); } rp = (ng_hci_lp_con_rsp_ep *)(rsp->data); @@ -266,14 +268,18 @@ ng_l2cap_lp_con_ind(ng_l2cap_p l2cap, st NG_SEND_MSG_HOOK(error, l2cap->node, rsp, l2cap->hci, 0); if (error != 0) { - if ((error = ng_l2cap_lp_untimeout(con)) != 0) - goto out; + if (ng_l2cap_lp_untimeout(con) == 0) + ng_l2cap_free_con(con); - ng_l2cap_free_con(con); + /* + * Do not free connection if ng_l2cap_lp_untimeout() failed + * let timeout handler deal with it. Always return error to + * the caller. + */ } -out: + return (error); -} /* ng_hci_lp_con_ind */ +} /* ng_l2cap_lp_con_ind */ /* * Process LP_DisconnectInd event from the lower layer protocol. We have been From owner-svn-src-all@FreeBSD.ORG Mon Jan 19 23:25:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C20D2106564A; Mon, 19 Jan 2009 23:25:18 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B05C58FC17; Mon, 19 Jan 2009 23:25:18 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0JNPIgS024764; Mon, 19 Jan 2009 23:25:18 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0JNPIdr024763; Mon, 19 Jan 2009 23:25:18 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <200901192325.n0JNPIdr024763@svn.freebsd.org> From: Nathan Whitehorn Date: Mon, 19 Jan 2009 23:25:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187455 - head/sys/powerpc/powermac X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2009 23:25:19 -0000 Author: nwhitehorn Date: Mon Jan 19 23:25:18 2009 New Revision: 187455 URL: http://svn.freebsd.org/changeset/base/187455 Log: Provide a device description for macio-attached ATA cells. Modified: head/sys/powerpc/powermac/ata_macio.c Modified: head/sys/powerpc/powermac/ata_macio.c ============================================================================== --- head/sys/powerpc/powermac/ata_macio.c Mon Jan 19 22:06:35 2009 (r187454) +++ head/sys/powerpc/powermac/ata_macio.c Mon Jan 19 23:25:18 2009 (r187455) @@ -164,9 +164,11 @@ ata_macio_probe(device_t dev) ch = &sc->sc_ch.sc_ch; if (strcmp(name,"ata-4") == 0) { + device_set_desc(dev,"Apple MacIO Ultra ATA Controller"); sc->rev = 4; sc->max_mode = ATA_UDMA4; } else { + device_set_desc(dev,"Apple MacIO ATA Controller"); sc->rev = 3; sc->max_mode = ATA_WDMA2; } From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 00:05:44 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C2E81065670; Tue, 20 Jan 2009 00:05:44 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0A7AF8FC16; Tue, 20 Jan 2009 00:05:44 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0K05hUC025669; Tue, 20 Jan 2009 00:05:43 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0K05hUG025667; Tue, 20 Jan 2009 00:05:43 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <200901200005.n0K05hUG025667@svn.freebsd.org> From: Nathan Whitehorn Date: Tue, 20 Jan 2009 00:05:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187457 - in head/sys/dev: iicbus pci X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 00:05:44 -0000 Author: nwhitehorn Date: Tue Jan 20 00:05:43 2009 New Revision: 187457 URL: http://svn.freebsd.org/changeset/base/187457 Log: Change the probe priority for PCI and I2C generic bus modules from numerical constants to BUS_PROBE_GENERIC. Suggested by: jhb Modified: head/sys/dev/iicbus/iicbus.c head/sys/dev/pci/pci.c Modified: head/sys/dev/iicbus/iicbus.c ============================================================================== --- head/sys/dev/iicbus/iicbus.c Tue Jan 20 00:03:52 2009 (r187456) +++ head/sys/dev/iicbus/iicbus.c Tue Jan 20 00:05:43 2009 (r187457) @@ -55,7 +55,7 @@ iicbus_probe(device_t dev) device_set_desc(dev, "Philips I2C bus"); /* Allow other subclasses to override this driver. */ - return (-1000); + return (BUS_PROBE_GENERIC); } #if SCAN_IICBUS Modified: head/sys/dev/pci/pci.c ============================================================================== --- head/sys/dev/pci/pci.c Tue Jan 20 00:03:52 2009 (r187456) +++ head/sys/dev/pci/pci.c Tue Jan 20 00:05:43 2009 (r187457) @@ -2644,7 +2644,7 @@ pci_probe(device_t dev) device_set_desc(dev, "PCI bus"); /* Allow other subclasses to override this driver. */ - return (-1000); + return (BUS_PROBE_GENERIC); } static int From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:08:45 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7EBC71065673; Tue, 20 Jan 2009 01:08:45 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 053FE8FC14; Tue, 20 Jan 2009 01:08:44 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K17tYu082126; Mon, 19 Jan 2009 18:07:55 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 18:08:30 -0700 (MST) Message-Id: <20090119.180830.1976921334.imp@bsdimp.com> To: sobomax@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <497446D4.5020104@FreeBSD.org> References: <200901190710.n0J7ACSg001385@svn.freebsd.org> <497432A1.9060805@samsco.org> <497446D4.5020104@FreeBSD.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, scottl@samsco.org, src-committers@FreeBSD.org, svn-src-all@FreeBSD.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:08:45 -0000 In message: <497446D4.5020104@FreeBSD.org> Maxim Sobolev writes: : i386 only and don't have any particular reason to be i386-specific (i.e. : ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC automatically Ahem. PC Card drivers are not, and never have been, i386 specific. At least not since we've moved to NEWCARD. You should remove that from the list of things that you think are processor specific. They have worked on amd64 for a long time, and there are likely to be a few new PC Card bridge drivers in the tree soon for non-x86 platforms. Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:12:11 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4987A106566B; Tue, 20 Jan 2009 01:12:11 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 081CF8FC08; Tue, 20 Jan 2009 01:12:10 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K1AnY0082142; Mon, 19 Jan 2009 18:10:49 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 18:11:24 -0700 (MST) Message-Id: <20090119.181124.-1270972755.imp@bsdimp.com> To: rwatson@FreeBSD.org From: "M. Warner Losh" In-Reply-To: References: <200901191536.n0JFaPTN014129@svn.freebsd.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: sobomax@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, svn-src-stable-7@FreeBSD.org, svn-src-stable@FreeBSD.org Subject: Re: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:12:12 -0000 In message: Robert Watson writes: : : On Mon, 19 Jan 2009, Maxim Sobolev wrote: : : > Author: sobomax : > Date: Mon Jan 19 15:36:25 2009 : > New Revision: 187434 : > URL: http://svn.freebsd.org/changeset/base/187434 : > : > Log: : > MFC: take NTFS option out to match i386 GENERIC. : : Are you going to modify UPDATING to say that "options NTFS" will now be : required where it wasn't previously on amd64? Also, insta-MFC's are generally : a bad idea, even for changes believed harmless, as they often have unexpected : side effects. Especially since NTFS works very well in 6.x and I think in 7.x. It is only in -current that there are issues exposed by other work... Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:15:32 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30C161065678; Tue, 20 Jan 2009 01:15:32 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id E3E438FC16; Tue, 20 Jan 2009 01:15:31 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K1Cm5x082188; Mon, 19 Jan 2009 18:12:48 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 18:13:22 -0700 (MST) Message-Id: <20090119.181322.-625070925.imp@bsdimp.com> To: sobomax@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200901191619.n0JGJrhJ015123@svn.freebsd.org> References: <200901191619.n0JGJrhJ015123@svn.freebsd.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187437 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:15:33 -0000 In message: <200901191619.n0JGJrhJ015123@svn.freebsd.org> Maxim Sobolev writes: : Author: sobomax : Date: Mon Jan 19 16:19:53 2009 : New Revision: 187437 : URL: http://svn.freebsd.org/changeset/base/187437 : : Log: : Mention the fact that the NTFS kernel support isn't : very well maintained and point user to sysutils/fusefs-ntfs, which : at the time of this writing seems to be a better alternative. : : Suggested by: luigi : MFC after: 2 weeks Again, I'd not MFC this to 6.x for sure and maybe not even to 7.x since ntfs works well there. Warner : Modified: : head/sys/conf/NOTES : : Modified: head/sys/conf/NOTES : ============================================================================== : --- head/sys/conf/NOTES Mon Jan 19 15:59:05 2009 (r187436) : +++ head/sys/conf/NOTES Mon Jan 19 16:19:53 2009 (r187437) : @@ -942,7 +942,11 @@ options HPFS #OS/2 File system : options MSDOSFS #MS DOS File System (FAT, FAT32) : options NFSSERVER #Network File System server : options NFSLOCKD #Network Lock Manager : -options NTFS #NT File System : + : +# NT File System. Read-mostly and it's not actively maintained. : +# For a better NTFS support consider sysutils/fusefs-ntfs port/package. : +options NTFS : + : options NULLFS #NULL filesystem : # Broken (depends on NCP): : #options NWFS #NetWare filesystem : From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:15:33 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B12F0106567A; Tue, 20 Jan 2009 01:15:32 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 702648FC17; Tue, 20 Jan 2009 01:15:32 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K1CEsl082184; Mon, 19 Jan 2009 18:12:14 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 18:12:48 -0700 (MST) Message-Id: <20090119.181248.-1090025543.imp@bsdimp.com> To: sobomax@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200901191559.n0JFx5Dc014686@svn.freebsd.org> References: <200901191559.n0JFx5Dc014686@svn.freebsd.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187436 - head/sbin/mount_ntfs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:15:33 -0000 In message: <200901191559.n0JFx5Dc014686@svn.freebsd.org> Maxim Sobolev writes: : Author: sobomax : Date: Mon Jan 19 15:59:05 2009 : New Revision: 187436 : URL: http://svn.freebsd.org/changeset/base/187436 : : Log: : In the CAVEATS section mention the fact that the NTFS kernel support isn't : very well maintained and point user to sysutils/fusefs-ntfs, which : at the time of this writing seems to be a better alternative. : : Suggested by: luigi : : MFC after: 2 weeks I'd not MFC this. The 7.0 version worked a lot better for me than the fusefs-ntfs last time I had to do some non-trivial data recovery. The former just worked in the face of an insane number of read errors. The latter paniced the system frequently. Warner : Modified: : head/sbin/mount_ntfs/mount_ntfs.8 : : Modified: head/sbin/mount_ntfs/mount_ntfs.8 : ============================================================================== : --- head/sbin/mount_ntfs/mount_ntfs.8 Mon Jan 19 15:38:26 2009 (r187435) : +++ head/sbin/mount_ntfs/mount_ntfs.8 Mon Jan 19 15:59:05 2009 (r187436) : @@ -154,6 +154,12 @@ This utility is primarily used for read : See the : .Sx WRITING : section for details about writing to an NTFS volume. : +.Pp : +Apart from being read-mostly, the NTFS support in the : +.Fx : +kernel is not actively maintained. For any non-trivial use : +sysutils/fusefs-ntfs package, a more complete and better : +maintained alternative, is recommended instead. : .Sh HISTORY : The : .Nm : From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:15:33 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46D381065674; Tue, 20 Jan 2009 01:15:33 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 00FE28FC1F; Tue, 20 Jan 2009 01:15:32 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K1E1DR082191; Mon, 19 Jan 2009 18:14:01 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 18:14:35 -0700 (MST) Message-Id: <20090119.181435.-298663465.imp@bsdimp.com> To: obrien@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20090119165030.GA18409@dragon.NUXI.org> References: <20090117142021.92d5a40b.stas@FreeBSD.org> <20090119165030.GA18409@dragon.NUXI.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, svn-src-all@FreeBSD.org, ed@FreeBSD.org, stas@FreeBSD.org, rwatson@FreeBSD.org, svn-src-head@FreeBSD.org Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:15:34 -0000 In message: <20090119165030.GA18409@dragon.NUXI.org> "David O'Brien" writes: : On Sat, Jan 17, 2009 at 02:00:55PM +0000, Robert Watson wrote: : > : > On Sat, 17 Jan 2009, Stanislav Sedov wrote: : > : >> Was this discussed somewhere? I don't understand why we should restrict : >> our filesystem naming because of limitation of auxilary filesystems. : >> There're even more restrictive filesystems available, we couldn't support : >> them all. While previous modifications looked harmless this one seems : >> questionable to me. : >> : >> I understand, this is a bikesched, but I really don't see a reason. You : >> can't build FreeBSD on windows anyway. : > : > Many of us would *very* much like to be able to cross-build FreeBSD from : > both Windows and Mac OS X, which would be highly desirable for embedded : > systems and appliance shops. : : Run VMware. Seriously. Or raise a serious discussion on developers@ : about this and get conciseness that cross building on MacOS X and : MS-Windows is a goal. I've tried this on my mac. It doesn't work very well at all, and it a pita for file sharing. Since there's little harm, and much benefit, why argue? Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:18:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04F7D1065673; Tue, 20 Jan 2009 01:18:18 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 99BFC8FC14; Tue, 20 Jan 2009 01:18:17 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K1FWk1082230; Mon, 19 Jan 2009 18:15:32 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 18:16:06 -0700 (MST) Message-Id: <20090119.181606.1887043661.imp@bsdimp.com> To: sobomax@freebsd.org From: "M. Warner Losh" In-Reply-To: <4974B484.7030608@FreeBSD.org> References: <497446D4.5020104@FreeBSD.org> <4974ABCC.7000107@freebsd.org> <4974B484.7030608@FreeBSD.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, sam@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:18:18 -0000 In message: <4974B484.7030608@FreeBSD.org> Maxim Sobolev writes: : Sam Leffler wrote: : > Maxim Sobolev wrote: : >> Scott Long wrote: : >>> prepare to be wrong. And above all else, don't put drivers into here : >>> that you haven't tested. It's pretty silly to admit in your commit : >>> message, for all to see, that you are blatantly committing without : >>> testing. : >> : >> Actually this is interesting point, what the best strategy for us as : >> the project should be? Should we new put drivers that have been tested : >> on i386 only and don't have any particular reason to be i386-specific : >> (i.e. ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC : >> automatically and wait for somebody to report a problem, or stay on : >> the safe side and enable drivers on amd64 only after somebody actually : >> has tested them and confirms that they are working? Should this policy : >> depend on driver class (for example a storage driver has much higher : >> potential for screwing user's data compared to a network driver or a : >> sound driver) and on release (HEAD / STABLE)? IMHO FreeBSD could : >> benefit by putting at least non-storage untested non i386-specific : >> drivers into amd64 kernel and/or at least in HEAD to give them testing : >> and a wider exposure. : >> : >> This is not just idle interest for me - recently our company has : >> started shipping amd64 version of our FreeBSD-based product, so that : >> we are a little bit concerned about hardware support with amd64 7.1 : >> kernel being a little bit narrower compared to i386 7.1 kernel. : >> : >> I apologize if this topic has been discussed somewhere already. : > : > I think the answer to your question about default-enabling drivers is : > very clear: it is the decision of the person maintaining the driver. If : > you're willing to SUPPORT a driver on a platform then feel free to : > enable it. Otherwise doing a drive-by to enable a driver that may or : > may not work may easily result in complaints that are unanswered. These : > have resulted in people concluding wider breakage that easily becomes : > de-facto and are hard to kill given that people google for help, find : > old complaints, and stop searching. : : OK, makes sense. : : By the way, there is a question on this topic to you. The wi(4) has been : removed from i386 GENERIC, but it is still present in amd64 GENERIC. Is : it intentional or just a mistake? I'd remove it from amd64 too. It isn't terribly useful these days outside of open access points. Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:18:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 879201065678; Tue, 20 Jan 2009 01:18:18 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 4592B8FC16; Tue, 20 Jan 2009 01:18:18 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K1Ej5O082203; Mon, 19 Jan 2009 18:14:45 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 18:15:19 -0700 (MST) Message-Id: <20090119.181519.1622466713.imp@bsdimp.com> To: sobomax@freebsd.org From: "M. Warner Losh" In-Reply-To: <4974B0FD.2060104@FreeBSD.org> References: <200901191536.n0JFaPTN014129@svn.freebsd.org> <4974B0FD.2060104@FreeBSD.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-stable-7@freebsd.org, svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, rwatson@freebsd.org Subject: Re: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:18:19 -0000 In message: <4974B0FD.2060104@FreeBSD.org> Maxim Sobolev writes: : Robert Watson wrote: : > : > On Mon, 19 Jan 2009, Maxim Sobolev wrote: : > : >> Author: sobomax : >> Date: Mon Jan 19 15:36:25 2009 : >> New Revision: 187434 : >> URL: http://svn.freebsd.org/changeset/base/187434 : >> : >> Log: : >> MFC: take NTFS option out to match i386 GENERIC. : > : > Are you going to modify UPDATING to say that "options NTFS" will now be : > required where it wasn't previously on amd64? : : It should not cause any issues, as the mount_ntfs(8) auto-loads ntfs.ko : module as needed. However, I am adding UPDATING entry just in case. it won't do that if you are running at a high secure level... Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:22:56 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F04211065675; Tue, 20 Jan 2009 01:22:56 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id CED998FC1A; Tue, 20 Jan 2009 01:22:56 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.2/8.14.2) with ESMTP id n0K1MuEs030665; Mon, 19 Jan 2009 17:22:56 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.2/Submit) id n0K1MudR030664; Mon, 19 Jan 2009 17:22:56 -0800 (PST) (envelope-from obrien) Date: Mon, 19 Jan 2009 17:22:56 -0800 From: "David O'Brien" To: "M. Warner Losh" Message-ID: <20090120012256.GB29741@dragon.NUXI.org> References: <20090117142021.92d5a40b.stas@FreeBSD.org> <20090119165030.GA18409@dragon.NUXI.org> <20090119.181435.-298663465.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090119.181435.-298663465.imp@bsdimp.com> X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: src-committers@FreeBSD.org, svn-src-all@FreeBSD.org, ed@FreeBSD.org, stas@FreeBSD.org, rwatson@FreeBSD.org, svn-src-head@FreeBSD.org Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:22:57 -0000 On Mon, Jan 19, 2009 at 06:14:35PM -0700, M. Warner Losh wrote: > In message: <20090119165030.GA18409@dragon.NUXI.org> > "David O'Brien" writes: > : On Sat, Jan 17, 2009 at 02:00:55PM +0000, Robert Watson wrote: > : > > : > On Sat, 17 Jan 2009, Stanislav Sedov wrote: > : > > : >> Was this discussed somewhere? I don't understand why we should restrict > : >> our filesystem naming because of limitation of auxilary filesystems. > : >> There're even more restrictive filesystems available, we couldn't support > : >> them all. While previous modifications looked harmless this one seems > : >> questionable to me. > : >> > : >> I understand, this is a bikesched, but I really don't see a reason. You > : >> can't build FreeBSD on windows anyway. > : > > : > Many of us would *very* much like to be able to cross-build FreeBSD from > : > both Windows and Mac OS X, which would be highly desirable for embedded > : > systems and appliance shops. > : > : Run VMware. Seriously. Or raise a serious discussion on developers@ > : about this and get conciseness that cross building on MacOS X and > : MS-Windows is a goal. > > I've tried this on my mac. It doesn't work very well at all, and it a > pita for file sharing. Sorry - I don't quite follow. What is "it"? -- -- David (obrien@FreeBSD.org) From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:25:26 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0088B1065675; Tue, 20 Jan 2009 01:25:26 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id CFE5C8FC17; Tue, 20 Jan 2009 01:25:25 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.2/8.14.2) with ESMTP id n0K1PPqi030709; Mon, 19 Jan 2009 17:25:25 -0800 (PST) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.2/8.14.2/Submit) id n0K1PPJb030708; Mon, 19 Jan 2009 17:25:25 -0800 (PST) (envelope-from obrien) Date: Mon, 19 Jan 2009 17:25:25 -0800 From: "David O'Brien" To: Robert Watson Message-ID: <20090120012525.GC29741@dragon.NUXI.org> References: <200901161547.n0GFlZ4C012008@svn.freebsd.org> <20090117142021.92d5a40b.stas@FreeBSD.org> <20090119165030.GA18409@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 8.0-CURRENT User-Agent: Mutt/1.5.16 (2007-06-09) Cc: Stanislav Sedov , svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, Ed Schouten Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:25:26 -0000 On Mon, Jan 19, 2009 at 04:55:04PM +0000, Robert Watson wrote: > On Mon, 19 Jan 2009, David O'Brien wrote: >> For changes like this to be reasoned because of building FreeBSD on >> Windows there should consensus. For MacOS X - there is a case sensitive >> FS. > > So I have to reformat my Mac OS X file systems in order to check out > FreeBSD source trees on them because the jot(1) regression test relies on > having two files in the same directory that differ only in case? :-) No Does it really prevent one from checking out the sources - the file name collision should just cause a file to be overwritten. This case should only be an issue if you're trying to run the tests. > one is saying you should be able to check out FreeBSD source trees using > 8.3 DOS filenames, but I think avoiding case collisions makes a lot of > sense. Its built-in to our UNIX fiber - some source bases have both .c and .C files for instance. -- -- David (obrien@FreeBSD.org) From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:33:19 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A84B1065675; Tue, 20 Jan 2009 01:33:19 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.freebsd.org (Postfix) with ESMTP id D62BF8FC1F; Tue, 20 Jan 2009 01:33:18 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from trouble.errno.com (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id n0K1XFqB062616 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 17:33:16 -0800 (PST) (envelope-from sam@freebsd.org) Message-ID: <497529DB.5050903@freebsd.org> Date: Mon, 19 Jan 2009 17:33:15 -0800 From: Sam Leffler Organization: FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (X11/20081209) MIME-Version: 1.0 To: "M. Warner Losh" References: <497446D4.5020104@FreeBSD.org> <4974ABCC.7000107@freebsd.org> <4974B484.7030608@FreeBSD.org> <20090119.181606.1887043661.imp@bsdimp.com> In-Reply-To: <20090119.181606.1887043661.imp@bsdimp.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-DCC-sonic.net-Metrics: ebb.errno.com; whitelist Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:33:19 -0000 M. Warner Losh wrote: > In message: <4974B484.7030608@FreeBSD.org> > Maxim Sobolev writes: > : Sam Leffler wrote: > : > Maxim Sobolev wrote: > : >> Scott Long wrote: > : >>> prepare to be wrong. And above all else, don't put drivers into here > : >>> that you haven't tested. It's pretty silly to admit in your commit > : >>> message, for all to see, that you are blatantly committing without > : >>> testing. > : >> > : >> Actually this is interesting point, what the best strategy for us as > : >> the project should be? Should we new put drivers that have been tested > : >> on i386 only and don't have any particular reason to be i386-specific > : >> (i.e. ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC > : >> automatically and wait for somebody to report a problem, or stay on > : >> the safe side and enable drivers on amd64 only after somebody actually > : >> has tested them and confirms that they are working? Should this policy > : >> depend on driver class (for example a storage driver has much higher > : >> potential for screwing user's data compared to a network driver or a > : >> sound driver) and on release (HEAD / STABLE)? IMHO FreeBSD could > : >> benefit by putting at least non-storage untested non i386-specific > : >> drivers into amd64 kernel and/or at least in HEAD to give them testing > : >> and a wider exposure. > : >> > : >> This is not just idle interest for me - recently our company has > : >> started shipping amd64 version of our FreeBSD-based product, so that > : >> we are a little bit concerned about hardware support with amd64 7.1 > : >> kernel being a little bit narrower compared to i386 7.1 kernel. > : >> > : >> I apologize if this topic has been discussed somewhere already. > : > > : > I think the answer to your question about default-enabling drivers is > : > very clear: it is the decision of the person maintaining the driver. If > : > you're willing to SUPPORT a driver on a platform then feel free to > : > enable it. Otherwise doing a drive-by to enable a driver that may or > : > may not work may easily result in complaints that are unanswered. These > : > have resulted in people concluding wider breakage that easily becomes > : > de-facto and are hard to kill given that people google for help, find > : > old complaints, and stop searching. > : > : OK, makes sense. > : > : By the way, there is a question on this topic to you. The wi(4) has been > : removed from i386 GENERIC, but it is still present in amd64 GENERIC. Is > : it intentional or just a mistake? > > I'd remove it from amd64 too. It isn't terribly useful these days > outside of open access points. > > Er that's not true; wi supports WPA w/ the cards it works with. And it does WPA w/ hostap too. If someone wanted to make an effort the set of cards it supports could also be brought back to where it was before I took an axe to the code (though older cards wouldn't support WPA). Sam From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:42:56 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A98FB106564A; Tue, 20 Jan 2009 01:42:56 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk1.360sip.com [72.236.70.240]) by mx1.freebsd.org (Postfix) with ESMTP id 70E168FC1F; Tue, 20 Jan 2009 01:42:56 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.38] (S0106001372fd1e07.vs.shawcable.net [70.71.171.106]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id n0K1gp9f040532 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 17:42:52 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Message-ID: <49752C10.5010309@FreeBSD.org> Date: Mon, 19 Jan 2009 17:42:40 -0800 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: "M. Warner Losh" References: <200901190710.n0J7ACSg001385@svn.freebsd.org> <497432A1.9060805@samsco.org> <497446D4.5020104@FreeBSD.org> <20090119.180830.1976921334.imp@bsdimp.com> In-Reply-To: <20090119.180830.1976921334.imp@bsdimp.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, scottl@samsco.org, src-committers@FreeBSD.org, svn-src-all@FreeBSD.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:42:57 -0000 M. Warner Losh wrote: > In message: <497446D4.5020104@FreeBSD.org> > Maxim Sobolev writes: > : i386 only and don't have any particular reason to be i386-specific (i.e. > : ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC automatically > > Ahem. PC Card drivers are not, and never have been, i386 specific. > At least not since we've moved to NEWCARD. You should remove that > from the list of things that you think are processor specific. They > have worked on amd64 for a long time, and there are likely to be a few > new PC Card bridge drivers in the tree soon for non-x86 platforms. Well, I supposed it was the reason why few SCSI cards were in i386 kernel, but weren't in amd64. Perhaps I was wrong. I am talking about these: device ncv # NCR 53C500 device nsp # Workbit Ninja SCSI-3 device stg # TMC 18C30/18C50 Perhaps the reason is just that nobody has the hardware to test on amd64. -Maxim From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:45:58 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 898C21065672; Tue, 20 Jan 2009 01:45:58 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk1.360sip.com [72.236.70.240]) by mx1.freebsd.org (Postfix) with ESMTP id 4E3468FC13; Tue, 20 Jan 2009 01:45:58 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.38] (S0106001372fd1e07.vs.shawcable.net [70.71.171.106]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id n0K1jtgV040713 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 17:45:56 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Message-ID: <49752CC7.3040000@FreeBSD.org> Date: Mon, 19 Jan 2009 17:45:43 -0800 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: "M. Warner Losh" References: <200901191536.n0JFaPTN014129@svn.freebsd.org> <4974B0FD.2060104@FreeBSD.org> <20090119.181519.1622466713.imp@bsdimp.com> In-Reply-To: <20090119.181519.1622466713.imp@bsdimp.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, rwatson@FreeBSD.org, svn-src-stable-7@FreeBSD.org Subject: Re: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:45:59 -0000 M. Warner Losh wrote: > In message: <4974B0FD.2060104@FreeBSD.org> > Maxim Sobolev writes: > : Robert Watson wrote: > : > > : > On Mon, 19 Jan 2009, Maxim Sobolev wrote: > : > > : >> Author: sobomax > : >> Date: Mon Jan 19 15:36:25 2009 > : >> New Revision: 187434 > : >> URL: http://svn.freebsd.org/changeset/base/187434 > : >> > : >> Log: > : >> MFC: take NTFS option out to match i386 GENERIC. > : > > : > Are you going to modify UPDATING to say that "options NTFS" will now be > : > required where it wasn't previously on amd64? > : > : It should not cause any issues, as the mount_ntfs(8) auto-loads ntfs.ko > : module as needed. However, I am adding UPDATING entry just in case. > > it won't do that if you are running at a high secure level... I know. This has been mentioned in UPDATING. -Maxim From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:46:10 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D53C210656C4; Tue, 20 Jan 2009 01:46:10 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk1.360sip.com [72.236.70.240]) by mx1.freebsd.org (Postfix) with ESMTP id 999A58FC19; Tue, 20 Jan 2009 01:46:10 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.38] (S0106001372fd1e07.vs.shawcable.net [70.71.171.106]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id n0K1k7BX040756 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jan 2009 17:46:08 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Message-ID: <49752CD3.6020506@FreeBSD.org> Date: Mon, 19 Jan 2009 17:45:55 -0800 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: "M. Warner Losh" References: <200901191536.n0JFaPTN014129@svn.freebsd.org> <20090119.181124.-1270972755.imp@bsdimp.com> In-Reply-To: <20090119.181124.-1270972755.imp@bsdimp.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, rwatson@FreeBSD.org, svn-src-stable-7@FreeBSD.org Subject: Re: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:46:11 -0000 M. Warner Losh wrote: > In message: > Robert Watson writes: > : > : On Mon, 19 Jan 2009, Maxim Sobolev wrote: > : > : > Author: sobomax > : > Date: Mon Jan 19 15:36:25 2009 > : > New Revision: 187434 > : > URL: http://svn.freebsd.org/changeset/base/187434 > : > > : > Log: > : > MFC: take NTFS option out to match i386 GENERIC. > : > : Are you going to modify UPDATING to say that "options NTFS" will now be > : required where it wasn't previously on amd64? Also, insta-MFC's are generally > : a bad idea, even for changes believed harmless, as they often have unexpected > : side effects. > > Especially since NTFS works very well in 6.x and I think in 7.x. It > is only in -current that there are issues exposed by other work... Warner, The point is not whether it works or not. The point is that i386 and amd64 kernels should provide the same feature set. See the thread on current@ -Maxim From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 01:54:05 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD8A8106564A; Tue, 20 Jan 2009 01:54:05 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9B97C8FC23; Tue, 20 Jan 2009 01:54:05 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0K1s5eF029067; Tue, 20 Jan 2009 01:54:05 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0K1s5uE029065; Tue, 20 Jan 2009 01:54:05 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901200154.n0K1s5uE029065@svn.freebsd.org> From: Alan Cox Date: Tue, 20 Jan 2009 01:54:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187458 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb i386/i386 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 01:54:06 -0000 Author: alc Date: Tue Jan 20 01:54:05 2009 New Revision: 187458 URL: http://svn.freebsd.org/changeset/base/187458 Log: MFC rev 175056 Provide a legitimate pindex to vm_page_alloc() in pmap_growkernel() instead of writing apologetic comments. Correct a nearby style error: Pointers should be compared to NULL. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/pmap.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/i386/pmap.c Modified: stable/7/sys/amd64/amd64/pmap.c ============================================================================== --- stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 00:05:43 2009 (r187457) +++ stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 01:54:05 2009 (r187458) @@ -1544,7 +1544,7 @@ pmap_growkernel(vm_offset_t addr) nkpg = vm_page_alloc(NULL, nkpt, VM_ALLOC_INTERRUPT | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED | VM_ALLOC_ZERO); - if (!nkpg) + if (nkpg == NULL) panic("pmap_growkernel: no memory to grow kernel"); if ((nkpg->flags & PG_ZERO) == 0) pmap_zero_page(nkpg); @@ -1563,13 +1563,10 @@ pmap_growkernel(vm_offset_t addr) continue; } - /* - * This index is bogus, but out of the way - */ - nkpg = vm_page_alloc(NULL, nkpt, + nkpg = vm_page_alloc(NULL, pmap_pde_pindex(kernel_vm_end), VM_ALLOC_INTERRUPT | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED | VM_ALLOC_ZERO); - if (!nkpg) + if (nkpg == NULL) panic("pmap_growkernel: no memory to grow kernel"); nkpt++; Modified: stable/7/sys/i386/i386/pmap.c ============================================================================== --- stable/7/sys/i386/i386/pmap.c Tue Jan 20 00:05:43 2009 (r187457) +++ stable/7/sys/i386/i386/pmap.c Tue Jan 20 01:54:05 2009 (r187458) @@ -1628,13 +1628,10 @@ pmap_growkernel(vm_offset_t addr) continue; } - /* - * This index is bogus, but out of the way - */ - nkpg = vm_page_alloc(NULL, nkpt, + nkpg = vm_page_alloc(NULL, kernel_vm_end >> PDRSHIFT, VM_ALLOC_INTERRUPT | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED | VM_ALLOC_ZERO); - if (!nkpg) + if (nkpg == NULL) panic("pmap_growkernel: no memory to grow kernel"); nkpt++; From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 02:08:21 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D393C1065672; Tue, 20 Jan 2009 02:08:21 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C31BC8FC1E; Tue, 20 Jan 2009 02:08:21 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0K28LhJ029428; Tue, 20 Jan 2009 02:08:21 GMT (envelope-from sobomax@svn.freebsd.org) Received: (from sobomax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0K28LBS029426; Tue, 20 Jan 2009 02:08:21 GMT (envelope-from sobomax@svn.freebsd.org) Message-Id: <200901200208.n0K28LBS029426@svn.freebsd.org> From: Maxim Sobolev Date: Tue, 20 Jan 2009 02:08:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187459 - in head: sbin/mount_ntfs sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 02:08:22 -0000 Author: sobomax Date: Tue Jan 20 02:08:21 2009 New Revision: 187459 URL: http://svn.freebsd.org/changeset/base/187459 Log: Tone down warning about the quality of the NTFS VFS module. It appears that not all developers share luigi opinion about quality of sysutils/fusefs-ntfs compared to our kernel NTFS module. Modified: head/sbin/mount_ntfs/mount_ntfs.8 head/sys/conf/NOTES Modified: head/sbin/mount_ntfs/mount_ntfs.8 ============================================================================== --- head/sbin/mount_ntfs/mount_ntfs.8 Tue Jan 20 01:54:05 2009 (r187458) +++ head/sbin/mount_ntfs/mount_ntfs.8 Tue Jan 20 02:08:21 2009 (r187459) @@ -155,11 +155,8 @@ See the .Sx WRITING section for details about writing to an NTFS volume. .Pp -Apart from being read-mostly, the NTFS support in the -.Fx -kernel is not actively maintained. For any non-trivial use -sysutils/fusefs-ntfs package, a more complete and better -maintained alternative, is recommended instead. +For a full read-write NTFS support consider sysutils/fusefs-ntfs +port/package. .Sh HISTORY The .Nm Modified: head/sys/conf/NOTES ============================================================================== --- head/sys/conf/NOTES Tue Jan 20 01:54:05 2009 (r187458) +++ head/sys/conf/NOTES Tue Jan 20 02:08:21 2009 (r187459) @@ -943,8 +943,9 @@ options MSDOSFS #MS DOS File System ( options NFSSERVER #Network File System server options NFSLOCKD #Network Lock Manager -# NT File System. Read-mostly and it's not actively maintained. -# For a better NTFS support consider sysutils/fusefs-ntfs port/package. +# NT File System. Read-mostly, see mount_ntfs(8) for details. +# For a full read-write NTFS support consider sysutils/fusefs-ntfs +# port/package. options NTFS options NULLFS #NULL filesystem From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 02:15:17 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B5AD1065670; Tue, 20 Jan 2009 02:15:17 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id AEEFD8FC08; Tue, 20 Jan 2009 02:15:16 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K2DvjI082925; Mon, 19 Jan 2009 19:13:57 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 19:14:32 -0700 (MST) Message-Id: <20090119.191432.-2040405057.imp@bsdimp.com> To: sam@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <497529DB.5050903@freebsd.org> References: <4974B484.7030608@FreeBSD.org> <20090119.181606.1887043661.imp@bsdimp.com> <497529DB.5050903@freebsd.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 02:15:17 -0000 In message: <497529DB.5050903@freebsd.org> Sam Leffler writes: : M. Warner Losh wrote: : > In message: <4974B484.7030608@FreeBSD.org> : > Maxim Sobolev writes: : > : Sam Leffler wrote: : > : > Maxim Sobolev wrote: : > : >> Scott Long wrote: : > : >>> prepare to be wrong. And above all else, don't put drivers into here : > : >>> that you haven't tested. It's pretty silly to admit in your commit : > : >>> message, for all to see, that you are blatantly committing without : > : >>> testing. : > : >> : > : >> Actually this is interesting point, what the best strategy for us as : > : >> the project should be? Should we new put drivers that have been tested : > : >> on i386 only and don't have any particular reason to be i386-specific : > : >> (i.e. ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC : > : >> automatically and wait for somebody to report a problem, or stay on : > : >> the safe side and enable drivers on amd64 only after somebody actually : > : >> has tested them and confirms that they are working? Should this policy : > : >> depend on driver class (for example a storage driver has much higher : > : >> potential for screwing user's data compared to a network driver or a : > : >> sound driver) and on release (HEAD / STABLE)? IMHO FreeBSD could : > : >> benefit by putting at least non-storage untested non i386-specific : > : >> drivers into amd64 kernel and/or at least in HEAD to give them testing : > : >> and a wider exposure. : > : >> : > : >> This is not just idle interest for me - recently our company has : > : >> started shipping amd64 version of our FreeBSD-based product, so that : > : >> we are a little bit concerned about hardware support with amd64 7.1 : > : >> kernel being a little bit narrower compared to i386 7.1 kernel. : > : >> : > : >> I apologize if this topic has been discussed somewhere already. : > : > : > : > I think the answer to your question about default-enabling drivers is : > : > very clear: it is the decision of the person maintaining the driver. If : > : > you're willing to SUPPORT a driver on a platform then feel free to : > : > enable it. Otherwise doing a drive-by to enable a driver that may or : > : > may not work may easily result in complaints that are unanswered. These : > : > have resulted in people concluding wider breakage that easily becomes : > : > de-facto and are hard to kill given that people google for help, find : > : > old complaints, and stop searching. : > : : > : OK, makes sense. : > : : > : By the way, there is a question on this topic to you. The wi(4) has been : > : removed from i386 GENERIC, but it is still present in amd64 GENERIC. Is : > : it intentional or just a mistake? : > : > I'd remove it from amd64 too. It isn't terribly useful these days : > outside of open access points. : > : > : Er that's not true; wi supports WPA w/ the cards it works with. And it : does WPA w/ hostap too. If someone wanted to make an effort the set of : cards it supports could also be brought back to where it was before I : took an axe to the code (though older cards wouldn't support WPA). You are correct. My cards have old crummy firmware on them, and what I said is true about them. Most of the wi cards can support it, but most (many?) of them have firmware that lacks this. The firmware is available, and loading it into RAM isn't a huge deal. Just a tedious one to get right... Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 02:15:17 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4C58106564A; Tue, 20 Jan 2009 02:15:17 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 52A868FC0C; Tue, 20 Jan 2009 02:15:17 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K2C43r082916; Mon, 19 Jan 2009 19:12:04 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 19:12:38 -0700 (MST) Message-Id: <20090119.191238.1389906774.imp@bsdimp.com> To: obrien@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20090120012256.GB29741@dragon.NUXI.org> References: <20090119165030.GA18409@dragon.NUXI.org> <20090119.181435.-298663465.imp@bsdimp.com> <20090120012256.GB29741@dragon.NUXI.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, svn-src-all@FreeBSD.org, ed@FreeBSD.org, stas@FreeBSD.org, rwatson@FreeBSD.org, svn-src-head@FreeBSD.org Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 02:15:18 -0000 In message: <20090120012256.GB29741@dragon.NUXI.org> "David O'Brien" writes: : On Mon, Jan 19, 2009 at 06:14:35PM -0700, M. Warner Losh wrote: : > In message: <20090119165030.GA18409@dragon.NUXI.org> : > "David O'Brien" writes: : > : On Sat, Jan 17, 2009 at 02:00:55PM +0000, Robert Watson wrote: : > : > : > : > On Sat, 17 Jan 2009, Stanislav Sedov wrote: : > : > : > : >> Was this discussed somewhere? I don't understand why we should restrict : > : >> our filesystem naming because of limitation of auxilary filesystems. : > : >> There're even more restrictive filesystems available, we couldn't support : > : >> them all. While previous modifications looked harmless this one seems : > : >> questionable to me. : > : >> : > : >> I understand, this is a bikesched, but I really don't see a reason. You : > : >> can't build FreeBSD on windows anyway. : > : > : > : > Many of us would *very* much like to be able to cross-build FreeBSD from : > : > both Windows and Mac OS X, which would be highly desirable for embedded : > : > systems and appliance shops. : > : : > : Run VMware. Seriously. Or raise a serious discussion on developers@ : > : about this and get conciseness that cross building on MacOS X and : > : MS-Windows is a goal. : > : > I've tried this on my mac. It doesn't work very well at all, and it a : > pita for file sharing. : : Sorry - I don't quite follow. What is "it"? The point I've made several times: minor renaming isn't much of a pain. It has big benefits to those people that wish to use other file systems that have different restrictions than we have. Yelling 'run a VM' isn't a productive suggestion, frankly, and given the low level of pain for a rename, shouldn't be yelled at all. I'm glad JUNOS can build inside its own VM. Kudos. But given that the world is much more than a tightly controlled development environment at a well funded company, I think that we need to be more accommodating. Especially for the embedded world. While a 'vm solution' is OK for today, I think it is too short-sighted and leaves some significant opportunities on the table. We shouldn't, as a project, say "nothing can change at all" for these systems. Rather, we should do a cost benefit analysis. For renaming, the cost seems very low, and the benefit seems very large. For other things, we'll cross that bridge when we come to it... Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 02:18:20 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8288106566B; Tue, 20 Jan 2009 02:18:20 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 86A4E8FC14; Tue, 20 Jan 2009 02:18:20 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K2FJLx082958; Mon, 19 Jan 2009 19:15:20 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 19:15:54 -0700 (MST) Message-Id: <20090119.191554.511539281.imp@bsdimp.com> To: sobomax@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <49752C10.5010309@FreeBSD.org> References: <497446D4.5020104@FreeBSD.org> <20090119.180830.1976921334.imp@bsdimp.com> <49752C10.5010309@FreeBSD.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, scottl@samsco.org, src-committers@FreeBSD.org, svn-src-all@FreeBSD.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 02:18:21 -0000 In message: <49752C10.5010309@FreeBSD.org> Maxim Sobolev writes: : M. Warner Losh wrote: : > In message: <497446D4.5020104@FreeBSD.org> : > Maxim Sobolev writes: : > : i386 only and don't have any particular reason to be i386-specific (i.e. : > : ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC automatically : > : > Ahem. PC Card drivers are not, and never have been, i386 specific. : > At least not since we've moved to NEWCARD. You should remove that : > from the list of things that you think are processor specific. They : > have worked on amd64 for a long time, and there are likely to be a few : > new PC Card bridge drivers in the tree soon for non-x86 platforms. : : Well, I supposed it was the reason why few SCSI cards were in i386 : kernel, but weren't in amd64. Perhaps I was wrong. I am talking about these: : : device ncv # NCR 53C500 : device nsp # Workbit Ninja SCSI-3 : device stg # TMC 18C30/18C50 : : Perhaps the reason is just that nobody has the hardware to test on amd64. Correct. Those drivers have issues with amd64, or did when I did some quick tests. I never revisited them because they are for fairly slow cards to start with. They did work for me when I tried them on i386 last. Of course none of them have been tested by me since about the 7.0 branch. Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 02:38:57 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 959B41065670; Tue, 20 Jan 2009 02:38:57 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 29B818FC13; Tue, 20 Jan 2009 02:38:56 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from [10.81.187.172] (mobile-032-152-135-071.mycingular.net [32.152.135.71] (may be forged)) (authenticated bits=0) by pooker.samsco.org (8.14.2/8.14.2) with ESMTP id n0K2cLAd040685; Mon, 19 Jan 2009 19:38:50 -0700 (MST) (envelope-from scottl@samsco.org) References: <497446D4.5020104@FreeBSD.org> <20090119.180830.1976921334.imp@bsdimp.com> <49752C10.5010309@FreeBSD.org> <20090119.191554.511539281.imp@bsdimp.com> Message-Id: From: Scott Long To: "M. Warner Losh" In-Reply-To: <20090119.191554.511539281.imp@bsdimp.com> Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Mailer: iPhone Mail (5G77) Mime-Version: 1.0 (iPhone Mail 5G77) Date: Mon, 19 Jan 2009 19:38:10 -0700 X-Spam-Status: No, score=-2.6 required=3.8 tests=BAYES_00 autolearn=ham version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: "svn-src-head@FreeBSD.org" , "sobomax@FreeBSD.org" , "svn-src-all@FreeBSD.org" , "src-committers@FreeBSD.org" Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 02:38:58 -0000 I thought that at least some ofvthese SCSI cards were specific to pc98, which is exclusively 32bit on freebsd. Scott Sent from my iPhone On Jan 19, 2009, at 7:15 PM, "M. Warner Losh" wrote: > In message: <49752C10.5010309@FreeBSD.org> > Maxim Sobolev writes: > : M. Warner Losh wrote: > : > In message: <497446D4.5020104@FreeBSD.org> > : > Maxim Sobolev writes: > : > : i386 only and don't have any particular reason to be i386- > specific (i.e. > : > : ISA/EISA drivers, PCMCIA drivers etc) into amd64 GENERIC > automatically > : > > : > Ahem. PC Card drivers are not, and never have been, i386 > specific. > : > At least not since we've moved to NEWCARD. You should remove that > : > from the list of things that you think are processor specific. > They > : > have worked on amd64 for a long time, and there are likely to be > a few > : > new PC Card bridge drivers in the tree soon for non-x86 platforms. > : > : Well, I supposed it was the reason why few SCSI cards were in i386 > : kernel, but weren't in amd64. Perhaps I was wrong. I am talking > about these: > : > : device ncv # NCR 53C500 > : device nsp # Workbit Ninja SCSI-3 > : device stg # TMC 18C30/18C50 > : > : Perhaps the reason is just that nobody has the hardware to test on > amd64. > > Correct. Those drivers have issues with amd64, or did when I did some > quick tests. I never revisited them because they are for fairly slow > cards to start with. They did work for me when I tried them on i386 > last. Of course none of them have been tested by me since about the > 7.0 branch. > > Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 03:23:54 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08B4C106567E; Tue, 20 Jan 2009 03:23:54 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id A33108FC24; Tue, 20 Jan 2009 03:23:53 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0K3NAjx083827; Mon, 19 Jan 2009 20:23:11 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 19 Jan 2009 20:23:45 -0700 (MST) Message-Id: <20090119.202345.282867277.imp@bsdimp.com> To: scottl@samsco.org From: "M. Warner Losh" In-Reply-To: References: <49752C10.5010309@FreeBSD.org> <20090119.191554.511539281.imp@bsdimp.com> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, sobomax@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187426 - head/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 03:23:55 -0000 In message: Scott Long writes: : I thought that at least some ofvthese SCSI cards were specific to : pc98, which is exclusively 32bit on freebsd. No. they aren't. They all work on vanilla i386. some are marketed to that segment, and there is one network card that is pc98 only. However, the rest work on FreeBSD/i386. Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 04:21:22 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 134F1106566B; Tue, 20 Jan 2009 04:21:22 +0000 (UTC) (envelope-from mckay@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B78AE8FC27; Tue, 20 Jan 2009 04:21:21 +0000 (UTC) (envelope-from mckay@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0K4LLgC032324; Tue, 20 Jan 2009 04:21:21 GMT (envelope-from mckay@svn.freebsd.org) Received: (from mckay@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0K4LLJ6032323; Tue, 20 Jan 2009 04:21:21 GMT (envelope-from mckay@svn.freebsd.org) Message-Id: <200901200421.n0K4LLJ6032323@svn.freebsd.org> From: Stephen McKay Date: Tue, 20 Jan 2009 04:21:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187460 - head/sys/kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 04:21:22 -0000 Author: mckay Date: Tue Jan 20 04:21:21 2009 New Revision: 187460 URL: http://svn.freebsd.org/changeset/base/187460 Log: Add a limit on namecache entries. In normal operation, the number of cache entries is roughly equal to the number of active vnodes. However, when most of the recently accessed vnodes have many hard links, the number of cache entries can be 32000 times as large, exhausting kernel memory and provoking a panic in kmem_malloc(). MFC after: 2 weeks Modified: head/sys/kern/vfs_cache.c Modified: head/sys/kern/vfs_cache.c ============================================================================== --- head/sys/kern/vfs_cache.c Tue Jan 20 02:08:21 2009 (r187459) +++ head/sys/kern/vfs_cache.c Tue Jan 20 04:21:21 2009 (r187460) @@ -489,6 +489,12 @@ cache_enter(dvp, vp, cnp) if (!doingcache) return; + /* + * Avoid blowout in namecache entries. + */ + if (numcache >= desiredvnodes * 2) + return; + if (cnp->cn_nameptr[0] == '.') { if (cnp->cn_namelen == 1) { return; From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 05:51:16 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA1761065674; Tue, 20 Jan 2009 05:51:16 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 86DF38FC12; Tue, 20 Jan 2009 05:51:16 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0K5pG79034221; Tue, 20 Jan 2009 05:51:16 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0K5pGK0034220; Tue, 20 Jan 2009 05:51:16 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901200551.n0K5pGK0034220@svn.freebsd.org> From: Alan Cox Date: Tue, 20 Jan 2009 05:51:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187464 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 05:51:17 -0000 Author: alc Date: Tue Jan 20 05:51:16 2009 New Revision: 187464 URL: http://svn.freebsd.org/changeset/base/187464 Log: MFC rev 180170 Eliminate an unnecessary static variable: nkpt. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/pmap.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/amd64/amd64/pmap.c ============================================================================== --- stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 04:31:45 2009 (r187463) +++ stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 05:51:16 2009 (r187464) @@ -171,7 +171,6 @@ struct pmap kernel_pmap_store; vm_offset_t virtual_avail; /* VA of first avail page (after kernel bss) */ vm_offset_t virtual_end; /* VA of last avail page (end of kernel AS) */ -static int nkpt; static int ndmpdp; static vm_paddr_t dmaplimit; vm_offset_t kernel_vm_end; @@ -516,7 +515,6 @@ pmap_bootstrap(vm_paddr_t *firstaddr) kernel_pmap->pm_pml4 = (pdp_entry_t *) (KERNBASE + KPML4phys); kernel_pmap->pm_active = -1; /* don't allow deactivation */ TAILQ_INIT(&kernel_pmap->pm_pvchunk); - nkpt = NKPT; /* * Reserve some special page table entries/VA space for temporary @@ -1524,10 +1522,8 @@ pmap_growkernel(vm_offset_t addr) mtx_assert(&kernel_map->system_mtx, MA_OWNED); if (kernel_vm_end == 0) { kernel_vm_end = VM_MIN_KERNEL_ADDRESS; - nkpt = 0; while ((*pmap_pde(kernel_pmap, kernel_vm_end) & PG_V) != 0) { kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1); - nkpt++; if (kernel_vm_end - 1 >= kernel_map->max_offset) { kernel_vm_end = kernel_map->max_offset; break; @@ -1541,7 +1537,7 @@ pmap_growkernel(vm_offset_t addr) pde = pmap_pde(kernel_pmap, kernel_vm_end); if (pde == NULL) { /* We need a new PDP entry */ - nkpg = vm_page_alloc(NULL, nkpt, + nkpg = vm_page_alloc(NULL, kernel_vm_end >> PDPSHIFT, VM_ALLOC_INTERRUPT | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED | VM_ALLOC_ZERO); if (nkpg == NULL) @@ -1568,9 +1564,6 @@ pmap_growkernel(vm_offset_t addr) VM_ALLOC_ZERO); if (nkpg == NULL) panic("pmap_growkernel: no memory to grow kernel"); - - nkpt++; - if ((nkpg->flags & PG_ZERO) == 0) pmap_zero_page(nkpg); paddr = VM_PAGE_TO_PHYS(nkpg); From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 06:48:13 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00D0E106564A; Tue, 20 Jan 2009 06:48:13 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from kientzle.com (kientzle.com [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id C7D0D8FC17; Tue, 20 Jan 2009 06:48:12 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from [10.123.2.23] (h-66-166-149-52.snvacaid.covad.net [66.166.149.52]) by kientzle.com (8.12.9/8.12.9) with ESMTP id n0K6F7C1069219; Mon, 19 Jan 2009 22:15:07 -0800 (PST) (envelope-from kientzle@freebsd.org) Message-ID: <49756BE8.2010607@freebsd.org> Date: Mon, 19 Jan 2009 22:15:04 -0800 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: obrien@freebsd.org References: <200901161547.n0GFlZ4C012008@svn.freebsd.org> <20090117142021.92d5a40b.stas@FreeBSD.org> <20090119165030.GA18409@dragon.NUXI.org> <20090120012525.GC29741@dragon.NUXI.org> In-Reply-To: <20090120012525.GC29741@dragon.NUXI.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Robert Watson Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 06:48:13 -0000 David O'Brien wrote: > On Mon, Jan 19, 2009 at 04:55:04PM +0000, Robert Watson wrote: > >>So I have to reformat my Mac OS X file systems in order to check out >>FreeBSD source trees on them because the jot(1) regression test relies on >>having two files in the same directory that differ only in case? :-) No > > Does it really prevent one from checking out the sources - the file name > collision should just cause a file to be overwritten. Last time I tried this, it actually caused the checkout to stop when it hit the case conflict. (Though the error message was far from clear.) You can work around this with partial checkouts, but it requires some care. Tim From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 07:24:29 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DF351065676; Tue, 20 Jan 2009 07:24:29 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4A5868FC1D; Tue, 20 Jan 2009 07:24:29 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0K7OTwf036373; Tue, 20 Jan 2009 07:24:29 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0K7OT1I036371; Tue, 20 Jan 2009 07:24:29 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901200724.n0K7OT1I036371@svn.freebsd.org> From: Alan Cox Date: Tue, 20 Jan 2009 07:24:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187465 - in stable/7/sys: . amd64/amd64 amd64/include contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 07:24:30 -0000 Author: alc Date: Tue Jan 20 07:24:28 2009 New Revision: 187465 URL: http://svn.freebsd.org/changeset/base/187465 Log: MFC r179917,180333,180373,180378 Prepare for a larger kernel virtual address space. Specifically, once KERNBASE and VM_MIN_KERNEL_ADDRESS are no longer the same, the physical memory allocated during bootstrap will be offset from the low-end of the kernel's page table. Change create_pagetables() and pmap_init() so that many fewer page table pages have to be preallocated by create_pagetables(). Eliminate pmap_growkernel()'s dependence on create_pagetables() preallocating page directory pages from VM_MIN_KERNEL_ADDRESS through the end of the kernel's bss. Specifically, the dependence was in pmap_growkernel()'s one- time initialization of kernel_vm_end, not in its main body. (I could not, however, resist the urge to optimize the main body.) Reduce the number of preallocated page directory pages to just those needed to support NKPT page table pages. (In fact, this allows me to revert a couple of my earlier changes to create_pagetables().) Fix lines that are too long in pmap_growkernel() by substituting shorter but equivalent expressions. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/pmap.c stable/7/sys/amd64/include/pmap.h stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/amd64/amd64/pmap.c ============================================================================== --- stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 05:51:16 2009 (r187464) +++ stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 07:24:28 2009 (r187465) @@ -173,7 +173,7 @@ vm_offset_t virtual_end; /* VA of last a static int ndmpdp; static vm_paddr_t dmaplimit; -vm_offset_t kernel_vm_end; +vm_offset_t kernel_vm_end = VM_MIN_KERNEL_ADDRESS; pt_entry_t pg_nx; static u_int64_t KPTphys; /* phys addr of kernel level 1 */ @@ -1517,25 +1517,34 @@ pmap_growkernel(vm_offset_t addr) vm_paddr_t paddr; vm_page_t nkpg; pd_entry_t *pde, newpdir; - pdp_entry_t newpdp; + pdp_entry_t *pdpe; mtx_assert(&kernel_map->system_mtx, MA_OWNED); - if (kernel_vm_end == 0) { - kernel_vm_end = VM_MIN_KERNEL_ADDRESS; - while ((*pmap_pde(kernel_pmap, kernel_vm_end) & PG_V) != 0) { - kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1); - if (kernel_vm_end - 1 >= kernel_map->max_offset) { - kernel_vm_end = kernel_map->max_offset; - break; - } - } - } - addr = roundup2(addr, PAGE_SIZE * NPTEPG); + + /* + * Return if "addr" is within the range of kernel page table pages + * that were preallocated during pmap bootstrap. Moreover, leave + * "kernel_vm_end" and the kernel page table as they were. + * + * The correctness of this action is based on the following + * argument: vm_map_findspace() allocates contiguous ranges of the + * kernel virtual address space. It calls this function if a range + * ends after "kernel_vm_end". If the kernel is mapped between + * "kernel_vm_end" and "addr", then the range cannot begin at + * "kernel_vm_end". In fact, its beginning address cannot be less + * than the kernel. Thus, there is no immediate need to allocate + * any new kernel page table pages between "kernel_vm_end" and + * "KERNBASE". + */ + if (KERNBASE < addr && addr <= KERNBASE + NKPT * NBPDR) + return; + + addr = roundup2(addr, NBPDR); if (addr - 1 >= kernel_map->max_offset) addr = kernel_map->max_offset; while (kernel_vm_end < addr) { - pde = pmap_pde(kernel_pmap, kernel_vm_end); - if (pde == NULL) { + pdpe = pmap_pdpe(kernel_pmap, kernel_vm_end); + if ((*pdpe & PG_V) == 0) { /* We need a new PDP entry */ nkpg = vm_page_alloc(NULL, kernel_vm_end >> PDPSHIFT, VM_ALLOC_INTERRUPT | VM_ALLOC_NOOBJ | @@ -1545,13 +1554,13 @@ pmap_growkernel(vm_offset_t addr) if ((nkpg->flags & PG_ZERO) == 0) pmap_zero_page(nkpg); paddr = VM_PAGE_TO_PHYS(nkpg); - newpdp = (pdp_entry_t) + *pdpe = (pdp_entry_t) (paddr | PG_V | PG_RW | PG_A | PG_M); - *pmap_pdpe(kernel_pmap, kernel_vm_end) = newpdp; continue; /* try again */ } + pde = pmap_pdpe_to_pde(pdpe, kernel_vm_end); if ((*pde & PG_V) != 0) { - kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1); + kernel_vm_end = (kernel_vm_end + NBPDR) & ~PDRMASK; if (kernel_vm_end - 1 >= kernel_map->max_offset) { kernel_vm_end = kernel_map->max_offset; break; @@ -1568,9 +1577,9 @@ pmap_growkernel(vm_offset_t addr) pmap_zero_page(nkpg); paddr = VM_PAGE_TO_PHYS(nkpg); newpdir = (pd_entry_t) (paddr | PG_V | PG_RW | PG_A | PG_M); - *pmap_pde(kernel_pmap, kernel_vm_end) = newpdir; + pde_store(pde, newpdir); - kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1); + kernel_vm_end = (kernel_vm_end + NBPDR) & ~PDRMASK; if (kernel_vm_end - 1 >= kernel_map->max_offset) { kernel_vm_end = kernel_map->max_offset; break; Modified: stable/7/sys/amd64/include/pmap.h ============================================================================== --- stable/7/sys/amd64/include/pmap.h Tue Jan 20 05:51:16 2009 (r187464) +++ stable/7/sys/amd64/include/pmap.h Tue Jan 20 07:24:28 2009 (r187465) @@ -104,8 +104,7 @@ /* Initial number of kernel page tables. */ #ifndef NKPT -/* 240 page tables needed to map 16G (120B "struct vm_page", 2M page tables). */ -#define NKPT 240 +#define NKPT 32 #endif #define NKPML4E 1 /* number of kernel PML4 slots */ From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 08:13:45 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7F111065670; Tue, 20 Jan 2009 08:13:45 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8AC828FC2F; Tue, 20 Jan 2009 08:13:45 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0K8Dj2B037349; Tue, 20 Jan 2009 08:13:45 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0K8DjRg037348; Tue, 20 Jan 2009 08:13:45 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901200813.n0K8DjRg037348@svn.freebsd.org> From: Alan Cox Date: Tue, 20 Jan 2009 08:13:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187466 - in stable/7/sys: . amd64/include contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 08:13:46 -0000 Author: alc Date: Tue Jan 20 08:13:45 2009 New Revision: 187466 URL: http://svn.freebsd.org/changeset/base/187466 Log: MFC Increase the size of the kernel virtual address space to 6GB. Increase the ceiling on the kmem map's size to 3.6GB. Also, define the ceiling as a fraction of the kernel map's size rather than an absolute quantity. Thus, scaling of the kmem map's size will be automatic with changes to the kernel map's size. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/include/vmparam.h stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/amd64/include/vmparam.h ============================================================================== --- stable/7/sys/amd64/include/vmparam.h Tue Jan 20 07:24:28 2009 (r187465) +++ stable/7/sys/amd64/include/vmparam.h Tue Jan 20 08:13:45 2009 (r187466) @@ -140,15 +140,16 @@ * 0xffff800000000000 - 0xffff804020100fff recursive page table (512GB slot) * 0xffff804020101000 - 0xfffffeffffffffff unused * 0xffffff0000000000 - 0xffffff7fffffffff 512GB direct map mappings - * 0xffffff8000000000 - 0xffffffff7fffffff unused (510GB) - * 0xffffffff80000000 - 0xffffffffffffffff 2GB kernel map + * 0xffffff8000000000 - 0xfffffffe7fffffff unused (506GB) + * 0xfffffffe80000000 - 0xffffffffffffffff 6GB kernel map * * Within the kernel map: + * * 0xffffffff80000000 KERNBASE */ #define VM_MAX_KERNEL_ADDRESS KVADDR(KPML4I, NPDPEPG-1, NPDEPG-1, NPTEPG-1) -#define VM_MIN_KERNEL_ADDRESS KVADDR(KPML4I, KPDPI, 0, 0) +#define VM_MIN_KERNEL_ADDRESS KVADDR(KPML4I, NPDPEPG-6, 0, 0) #define DMAP_MIN_ADDRESS KVADDR(DMPML4I, 0, 0, 0) #define DMAP_MAX_ADDRESS KVADDR(DMPML4I+1, 0, 0, 0) @@ -187,7 +188,8 @@ * Ceiling on amount of kmem_map kva space. */ #ifndef VM_KMEM_SIZE_MAX -#define VM_KMEM_SIZE_MAX (400 * 1024 * 1024) +#define VM_KMEM_SIZE_MAX ((VM_MAX_KERNEL_ADDRESS - \ + VM_MIN_KERNEL_ADDRESS + 1) * 3 / 5) #endif /* initial pagein size of beginning of executable file */ From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 08:55:32 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E812B106567F; Tue, 20 Jan 2009 08:55:32 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from mail-bw0-f11.google.com (mail-bw0-f11.google.com [209.85.218.11]) by mx1.freebsd.org (Postfix) with ESMTP id 954BD8FC1F; Tue, 20 Jan 2009 08:55:31 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by bwz4 with SMTP id 4so77511bwz.19 for ; Tue, 20 Jan 2009 00:55:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=w3ZPU+cTTwaTJD71JMvNBI4DzHOitOHNnXi61o3iMUI=; b=b+42PIrKBUtMapJzTeNrQxqyGyR5O1EfLQcvzdsIJ6J8ALH7/F80EC/TWKnon6/QZK cGcGqXQpK3+xR0HsSUWvHLtcHmrK7OBRkiHXqvyfCv79mn3kuEmtpadnj5Mb6hMGnC6w E6e4OUd7to9kKofsP3SBHm5fSbnbyAJHdkf+4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=tLQfdRBGvh8ITPXENZ3hY8rQbaellCxvLwcvAAz6EZacW5tvzaRb7+m9RQVGBy8XMs Jf5ZTki1mFxik9G8KI47/UdheB4HZZCucG7C6scSHMTBZqhGz+kDdardonxuoQ7vGpAi WRoMzOjI3emGbz8c1HFDgijZ9aKp0tHAsy7ws= MIME-Version: 1.0 Received: by 10.181.201.18 with SMTP id d18mr2411178bkq.72.1232441548640; Tue, 20 Jan 2009 00:52:28 -0800 (PST) In-Reply-To: <20090119.181322.-625070925.imp@bsdimp.com> References: <200901191619.n0JGJrhJ015123@svn.freebsd.org> <20090119.181322.-625070925.imp@bsdimp.com> Date: Tue, 20 Jan 2009 00:52:28 -0800 Message-ID: <7d6fde3d0901200052w20755420l94f0c02c547f53b7@mail.gmail.com> From: Garrett Cooper To: "M. Warner Losh" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, sobomax@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187437 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 08:55:33 -0000 On Mon, Jan 19, 2009 at 5:13 PM, M. Warner Losh wrote: > In message: <200901191619.n0JGJrhJ015123@svn.freebsd.org> > Maxim Sobolev writes: > : Author: sobomax > : Date: Mon Jan 19 16:19:53 2009 > : New Revision: 187437 > : URL: http://svn.freebsd.org/changeset/base/187437 > : > : Log: > : Mention the fact that the NTFS kernel support isn't > : very well maintained and point user to sysutils/fusefs-ntfs, which > : at the time of this writing seems to be a better alternative. > : > : Suggested by: luigi > : MFC after: 2 weeks > > Again, I'd not MFC this to 6.x for sure and maybe not even to 7.x > since ntfs works well there. > > Warner > > : Modified: > : head/sys/conf/NOTES > : > : Modified: head/sys/conf/NOTES > : ============================================================================== > : --- head/sys/conf/NOTES Mon Jan 19 15:59:05 2009 (r187436) > : +++ head/sys/conf/NOTES Mon Jan 19 16:19:53 2009 (r187437) > : @@ -942,7 +942,11 @@ options HPFS #OS/2 File system > : options MSDOSFS #MS DOS File System (FAT, FAT32) > : options NFSSERVER #Network File System server > : options NFSLOCKD #Network Lock Manager > : -options NTFS #NT File System > : + > : +# NT File System. Read-mostly and it's not actively maintained. > : +# For a better NTFS support consider sysutils/fusefs-ntfs port/package. > : +options NTFS > : + > : options NULLFS #NULL filesystem > : # Broken (depends on NCP): > : #options NWFS #NetWare filesystem Uh, I got consistent panics on 7.x when mounting NTFS partitions created with XP. I was creating the partition without MSDOS 8.3 short filename support though. I personally think that the copy of NTFS in the kernel is stale and unusable for a lot of different use-cases, to be honest.. -Garrett From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 10:09:44 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09B03106564A; Tue, 20 Jan 2009 10:09:44 +0000 (UTC) (envelope-from outi@bytephobia.de) Received: from dd18312.kasserver.com (dd18312.kasserver.com [85.13.138.194]) by mx1.freebsd.org (Postfix) with ESMTP id B884B8FC0C; Tue, 20 Jan 2009 10:09:43 +0000 (UTC) (envelope-from outi@bytephobia.de) Received: from attini-ws2 (pD9E37346.dip.t-dialin.net [217.227.115.70]) by dd18312.kasserver.com (Postfix) with ESMTP id A306218405417; Tue, 20 Jan 2009 10:46:15 +0100 (CET) Date: Tue, 20 Jan 2009 10:46:12 +0100 From: Patrick Hurrelmann To: John Baldwin Message-ID: <20090120104612.2224983f@attini-ws2> In-Reply-To: <200901151031.42725.jhb@freebsd.org> References: <200901072152.n07Lql7h000807@svn.freebsd.org> <200901151031.42725.jhb@freebsd.org> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.14.4; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, Marius Strobl , src-committers@freebsd.org, svn-src-all@freebsd.org Subject: Re: svn commit: r186878 - head/sys/dev/mpt X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 10:09:44 -0000 On Thu, 15 Jan 2009 10:31:42 -0500 John Baldwin wrote: > On Wednesday 07 January 2009 4:52:47 pm Marius Strobl wrote: > > Author: marius > > Date: Wed Jan 7 21:52:47 2009 > > New Revision: 186878 > > URL: http://svn.freebsd.org/changeset/base/186878 > > > > Log: > > Make the whole initiator mode part of mpt(4) endian-clean, > > specifically SPI controllers now also work in big-endian > > machines and some conversions relevant for FC and SAS > > controllers as well as support for ILP32 machines which all > > were omitted in previous attempts are now also implemented. > > The IOCTL-interface is intentionally left (and where needed > > actually changed) to be completely little-endian as otherwise > > we would have to add conversion code for every possible > > configuration page to mpt(4), which didn't seem the right > > thing to do, neither did converting only half of the user- > > interface to the native byte order. > > This change was tested on amd64 (SAS+SPI), i386 (SAS) and > > sparc64 (SAS+SPI). Due to lack of the necessary hardware > > the target mode code is still left to be made endian-clean. > > > > Reviewed by: scottl > > MFC after: 1 month > > If you wish to test the mpt_user interface on a big-endian machine > you may use //depot/jhb/raid/usr.sbin/mptutil/... > > It is likely going to need a lot of sprinkled htole*() and letoh*() > though. Hi John, great to hear that! I just checked out mptutil on 7.0 and it works fine with a bunch of Dell PERC 5iR :) Do you mind if i grab the sources and create a port of it? I guess many people are eagerly waiting to monitor their mpt arrays as stated on several lists. This would also give mptutil a much greater base of testers. Best regards Patrick From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 10:24:42 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 451CA1065673 for ; Tue, 20 Jan 2009 10:24:42 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: from mail-bw0-f10.google.com (mail-bw0-f10.google.com [209.85.218.10]) by mx1.freebsd.org (Postfix) with ESMTP id 954B48FC0A for ; Tue, 20 Jan 2009 10:24:41 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: by bwz3 with SMTP id 3so67978bwz.19 for ; Tue, 20 Jan 2009 02:24:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=8Cyg0wtoEG0+IHXI30xHPv6DOE8BLNHX3JhxcDqUGK4=; b=kgGRbJh6UYeNRQlSnc9ryp4c1W/CTqOat3o+FQsrwn1b/+ceP6NlfJQGDL24+hmdhy C6/VPO9D3H1I2ny6Cm9g9wW85yE+gMDWn6BcmpF5YPkLJBBDKXjo2CP+Fn12eZ11bWbn O3v1bEqOz/IEeV4L8ZzBbUTKx9Xznz4b8CqJM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Mv/yG8+fHaE38DVnv9tR1y1zPZxxLTl3K/FdzL1jhpifAUG4aXnq8k6Yw6YZrq/6HI 3EXnVFItDYcaLc54cnQ20nUY7U2fbSa+drleY3KLpxkvTud7NyA5WpmH394iXtmQZQNk LJg0cppAT4ZWU3du8Qg4/DpgatmwM4HM6vijw= MIME-Version: 1.0 Received: by 10.180.229.17 with SMTP id b17mr1544493bkh.156.1232446479654; Tue, 20 Jan 2009 02:14:39 -0800 (PST) In-Reply-To: <200901200208.n0K28LBS029426@svn.freebsd.org> References: <200901200208.n0K28LBS029426@svn.freebsd.org> Date: Tue, 20 Jan 2009 10:14:39 +0000 Message-ID: <70e8236f0901200214h492eec2ci1fa765a44566c0c7@mail.gmail.com> From: =?ISO-8859-1?Q?Jo=E3o_Barros?= To: Maxim Sobolev Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org Subject: Re: svn commit: r187459 - in head: sbin/mount_ntfs sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 10:24:42 -0000 On Tue, Jan 20, 2009 at 2:08 AM, Maxim Sobolev wrote: > Author: sobomax > Date: Tue Jan 20 02:08:21 2009 > New Revision: 187459 > URL: http://svn.freebsd.org/changeset/base/187459 > > Log: > Tone down warning about the quality of the NTFS VFS module. It appears that > not all developers share luigi opinion about quality of sysutils/fusefs-ntfs > compared to our kernel NTFS module. > > Modified: > head/sbin/mount_ntfs/mount_ntfs.8 > head/sys/conf/NOTES > > Modified: head/sbin/mount_ntfs/mount_ntfs.8 > ============================================================================== > --- head/sbin/mount_ntfs/mount_ntfs.8 Tue Jan 20 01:54:05 2009 (r187458) > +++ head/sbin/mount_ntfs/mount_ntfs.8 Tue Jan 20 02:08:21 2009 (r187459) > @@ -155,11 +155,8 @@ See the > .Sx WRITING > section for details about writing to an NTFS volume. > .Pp > -Apart from being read-mostly, the NTFS support in the > -.Fx > -kernel is not actively maintained. For any non-trivial use > -sysutils/fusefs-ntfs package, a more complete and better > -maintained alternative, is recommended instead. > +For a full read-write NTFS support consider sysutils/fusefs-ntfs > +port/package. > .Sh HISTORY > The > .Nm > > Modified: head/sys/conf/NOTES > ============================================================================== > --- head/sys/conf/NOTES Tue Jan 20 01:54:05 2009 (r187458) > +++ head/sys/conf/NOTES Tue Jan 20 02:08:21 2009 (r187459) > @@ -943,8 +943,9 @@ options MSDOSFS #MS DOS File System ( > options NFSSERVER #Network File System server > options NFSLOCKD #Network Lock Manager > > -# NT File System. Read-mostly and it's not actively maintained. > -# For a better NTFS support consider sysutils/fusefs-ntfs port/package. > +# NT File System. Read-mostly, see mount_ntfs(8) for details. > +# For a full read-write NTFS support consider sysutils/fusefs-ntfs > +# port/package. > options NTFS > > options NULLFS #NULL filesystem "Read-mostly, see mount_ntfs(8) for details." That phrase doesn't sound good. How about: "For kernel read-only support see mount_ntfs(8) for details." ? -- Joao Barros From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 10:26:44 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D134106564A; Tue, 20 Jan 2009 10:26:44 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: from mail-bw0-f10.google.com (mail-bw0-f10.google.com [209.85.218.10]) by mx1.freebsd.org (Postfix) with ESMTP id 4C6C08FC19; Tue, 20 Jan 2009 10:26:43 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: by bwz3 with SMTP id 3so69996bwz.19 for ; Tue, 20 Jan 2009 02:26:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Qh7J355ncMOB1uiKDF+gXyobHxXK6a8Kbi1sNyLMz6Q=; b=skdhX0R17OPFpM7y0kyqp/ni3r2sGPY1j30kFTv2WdK2uA7HDmlazSrpBHAEVf5XSA yeFv01bvsy9HefVIKrDpKIpFa9+BHhag7nf2rytpsmqx/5LrI1PgNjiN8hs4C+S21qQv 1KS9zB0NHPmRewx1mZ2CEB4vVM/H4SA1NKGog= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=n9H4t40lzHhoRk4wR7jWXYj3Y2q944iRKEBydiDKSR4Azp7KRUghP/Q3CvDuu2WM8Z L3uWuCQKMN/cmFiU3okXV+GCyAz56rzIQpF9ZT+4BnGaBvqK8WdIGt/Sv0kvvDge0ZL6 HrDIRoKcPJSSpnu02qbUD5X/q1UhbUxz+2YlQ= MIME-Version: 1.0 Received: by 10.181.141.18 with SMTP id t18mr2421877bkn.205.1232446953385; Tue, 20 Jan 2009 02:22:33 -0800 (PST) In-Reply-To: <7d6fde3d0901200052w20755420l94f0c02c547f53b7@mail.gmail.com> References: <200901191619.n0JGJrhJ015123@svn.freebsd.org> <20090119.181322.-625070925.imp@bsdimp.com> <7d6fde3d0901200052w20755420l94f0c02c547f53b7@mail.gmail.com> Date: Tue, 20 Jan 2009 10:22:33 +0000 Message-ID: <70e8236f0901200222q4b00b7a5h8c3a35ab432f9cb2@mail.gmail.com> From: =?ISO-8859-1?Q?Jo=E3o_Barros?= To: Garrett Cooper Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, sobomax@freebsd.org, svn-src-all@freebsd.org, "M. Warner Losh" Subject: Re: svn commit: r187437 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 10:26:44 -0000 On Tue, Jan 20, 2009 at 8:52 AM, Garrett Cooper wrote: > On Mon, Jan 19, 2009 at 5:13 PM, M. Warner Losh wrote: >> In message: <200901191619.n0JGJrhJ015123@svn.freebsd.org> >> Maxim Sobolev writes: >> : Author: sobomax >> : Date: Mon Jan 19 16:19:53 2009 >> : New Revision: 187437 >> : URL: http://svn.freebsd.org/changeset/base/187437 >> : >> : Log: >> : Mention the fact that the NTFS kernel support isn't >> : very well maintained and point user to sysutils/fusefs-ntfs, which >> : at the time of this writing seems to be a better alternative. >> : >> : Suggested by: luigi >> : MFC after: 2 weeks >> >> Again, I'd not MFC this to 6.x for sure and maybe not even to 7.x >> since ntfs works well there. >> >> Warner >> >> : Modified: >> : head/sys/conf/NOTES >> : >> : Modified: head/sys/conf/NOTES >> : ============================================================================== >> : --- head/sys/conf/NOTES Mon Jan 19 15:59:05 2009 (r187436) >> : +++ head/sys/conf/NOTES Mon Jan 19 16:19:53 2009 (r187437) >> : @@ -942,7 +942,11 @@ options HPFS #OS/2 File system >> : options MSDOSFS #MS DOS File System (FAT, FAT32) >> : options NFSSERVER #Network File System server >> : options NFSLOCKD #Network Lock Manager >> : -options NTFS #NT File System >> : + >> : +# NT File System. Read-mostly and it's not actively maintained. >> : +# For a better NTFS support consider sysutils/fusefs-ntfs port/package. >> : +options NTFS >> : + >> : options NULLFS #NULL filesystem >> : # Broken (depends on NCP): >> : #options NWFS #NetWare filesystem > > Uh, I got consistent panics on 7.x when mounting NTFS partitions > created with XP. > I was creating the partition without MSDOS 8.3 short filename > support though. I personally think that the copy of NTFS in the kernel > is stale and unusable for a lot of different use-cases, to be honest.. > -Garrett I moved 2x 320GB almost full NTFS partitions to my ZFS home server using mount_ntfs. ymmv ;-) -- Joao Barros From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 11:00:25 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37A5A10656BF; Tue, 20 Jan 2009 11:00:25 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from fallbackmx08.syd.optusnet.com.au (fallbackmx08.syd.optusnet.com.au [211.29.132.10]) by mx1.freebsd.org (Postfix) with ESMTP id B769F8FC1A; Tue, 20 Jan 2009 11:00:24 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from mail36.syd.optusnet.com.au (mail36.syd.optusnet.com.au [211.29.133.76]) by fallbackmx08.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n0K7qMZv023421; Tue, 20 Jan 2009 18:52:22 +1100 Received: from server.vk2pj.dyndns.org (c122-106-215-175.belrs3.nsw.optusnet.com.au [122.106.215.175]) by mail36.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n0K7qIVC020013 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 20 Jan 2009 18:52:19 +1100 X-Bogosity: Ham, spamicity=0.000000 Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by server.vk2pj.dyndns.org (8.14.3/8.14.3) with ESMTP id n0K7qIRE037048; Tue, 20 Jan 2009 18:52:18 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.14.3/8.14.3/Submit) id n0K7qIjT037047; Tue, 20 Jan 2009 18:52:18 +1100 (EST) (envelope-from peter) Date: Tue, 20 Jan 2009 18:52:18 +1100 From: Peter Jeremy To: "David O'Brien" Message-ID: <20090120075217.GN16116@server.vk2pj.dyndns.org> References: <200901161547.n0GFlZ4C012008@svn.freebsd.org> <20090117142021.92d5a40b.stas@FreeBSD.org> <20090119165030.GA18409@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bWEb1MG/o7IKOlQF" Content-Disposition: inline In-Reply-To: <20090119165030.GA18409@dragon.NUXI.org> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.18 (2008-05-17) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 11:00:26 -0000 --bWEb1MG/o7IKOlQF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2009-Jan-19 08:50:30 -0800, David O'Brien wrote: >Run VMware. Seriously. Or raise a serious discussion on developers@ >about this and get conciseness that cross building on MacOS X and >MS-Windows is a goal. Checking out and cross-building is not something that is limited to committers so I would request that any discussion occur on an open list. IMHO, if someone wants to do the legwork to enable FreeBSD to be built on OS-X or Windows and the result does not adversely impact the native build environment then this would seen to be a Good Thing. --=20 Peter Jeremy Please excuse any delays as the result of my ISP's inability to implement an MTA that is either RFC2821-compliant or matches their claimed behaviour. --bWEb1MG/o7IKOlQF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkl1grEACgkQ/opHv/APuIfbnwCfd9qjqiOlxfZKnp5Oq7/lkey9 hFUAoIaAkk1mi3/uYGQiG5hJLgLJC2OF =NSn2 -----END PGP SIGNATURE----- --bWEb1MG/o7IKOlQF-- From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 11:02:34 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADF231065676 for ; Tue, 20 Jan 2009 11:02:34 +0000 (UTC) (envelope-from christoph.mallon@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id E9DA78FC1E for ; Tue, 20 Jan 2009 11:02:33 +0000 (UTC) (envelope-from christoph.mallon@gmx.de) Received: (qmail invoked by alias); 20 Jan 2009 11:02:33 -0000 Received: from p54A3DE90.dip.t-dialin.net (EHLO tron.homeunix.org) [84.163.222.144] by mail.gmx.net (mp033) with SMTP; 20 Jan 2009 12:02:33 +0100 X-Authenticated: #1673122 X-Provags-ID: V01U2FsdGVkX1+XEqtffLKXGpws686K+uqNmXdmvmTGWG4zkogKty zGMULTTpYPSaOy Message-ID: <4975AF47.7070506@gmx.de> Date: Tue, 20 Jan 2009 12:02:31 +0100 From: Christoph Mallon User-Agent: Thunderbird 2.0.0.19 (X11/20090103) MIME-Version: 1.0 To: obrien@FreeBSD.org References: <200901161547.n0GFlZ4C012008@svn.freebsd.org> <20090117142021.92d5a40b.stas@FreeBSD.org> <20090119165030.GA18409@dragon.NUXI.org> <20090120012525.GC29741@dragon.NUXI.org> In-Reply-To: <20090120012525.GC29741@dragon.NUXI.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.62 Cc: src-committers@FreeBSD.org, svn-src-all@FreeBSD.org, Ed Schouten , Stanislav Sedov , Robert Watson , svn-src-head@FreeBSD.org Subject: Re: svn commit: r187332 - head/tools/regression/usr.bin/jot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 11:02:34 -0000 David O'Brien schrieb: > On Mon, Jan 19, 2009 at 04:55:04PM +0000, Robert Watson wrote: >> On Mon, 19 Jan 2009, David O'Brien wrote: >>> For changes like this to be reasoned because of building FreeBSD on >>> Windows there should consensus. For MacOS X - there is a case sensitive >>> FS. >> So I have to reformat my Mac OS X file systems in order to check out >> FreeBSD source trees on them because the jot(1) regression test relies on >> having two files in the same directory that differ only in case? :-) No > > Does it really prevent one from checking out the sources - the file name > collision should just cause a file to be overwritten. This case should > only be an issue if you're trying to run the tests. Of course SVN complains when it would create a file, which already exists. SVN is a VCS after all. If it would inadvertently plain overwrite existing data it would completely miss one core aspect of a VCS: preserving information. From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 11:27:45 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E5A810657A7; Tue, 20 Jan 2009 11:27:45 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5B3368FC0A; Tue, 20 Jan 2009 11:27:45 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KBRjDu043791; Tue, 20 Jan 2009 11:27:45 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KBRjui043789; Tue, 20 Jan 2009 11:27:45 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200901201127.n0KBRjui043789@svn.freebsd.org> From: Konstantin Belousov Date: Tue, 20 Jan 2009 11:27:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187467 - in head/sys: kern ufs/ffs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 11:27:54 -0000 Author: kib Date: Tue Jan 20 11:27:45 2009 New Revision: 187467 URL: http://svn.freebsd.org/changeset/base/187467 Log: FFS puts the extended attributes blocks at the negative blocks for the vnode, from -1 down. When vinvalbuf(vp, V_ALT) is done for the vnode, it incorrectly does vm_object_page_remove(0, 0), removing all pages from the underlying vm object, not only the pages that back the extended attributes data. Change vinvalbuf() to not remove any pages from the object when V_NORMAL or V_ALT are specified. Instead, the only in-tree caller in ffs_inode.c:ffs_truncate() that specifies V_ALT explicitely removes the corresponding page range. The V_NORMAL caller does vnode_pager_setsize(vp, 0) immediately after the call to vinvalbuf(V_NORMAL) already. Reported by: csjp Reviewed by: ups MFC after: 3 weeks Modified: head/sys/kern/vfs_subr.c head/sys/ufs/ffs/ffs_inode.c Modified: head/sys/kern/vfs_subr.c ============================================================================== --- head/sys/kern/vfs_subr.c Tue Jan 20 08:13:45 2009 (r187466) +++ head/sys/kern/vfs_subr.c Tue Jan 20 11:27:45 2009 (r187467) @@ -1156,7 +1156,7 @@ bufobj_invalbuf(struct bufobj *bo, int f /* * Destroy the copy in the VM cache, too. */ - if (bo->bo_object != NULL) { + if (bo->bo_object != NULL && (flags & (V_ALT | V_NORMAL)) == 0) { VM_OBJECT_LOCK(bo->bo_object); vm_object_page_remove(bo->bo_object, 0, 0, (flags & V_SAVE) ? TRUE : FALSE); Modified: head/sys/ufs/ffs/ffs_inode.c ============================================================================== --- head/sys/ufs/ffs/ffs_inode.c Tue Jan 20 08:13:45 2009 (r187466) +++ head/sys/ufs/ffs/ffs_inode.c Tue Jan 20 11:27:45 2009 (r187467) @@ -48,6 +48,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include #include @@ -151,6 +152,7 @@ ffs_truncate(vp, length, flags, cred, td struct fs *fs; struct buf *bp; struct ufsmount *ump; + vm_object_t object; int needextclean, softdepslowdown, extblocks; int offset, size, level, nblocks; int i, error, allerror; @@ -205,6 +207,13 @@ ffs_truncate(vp, length, flags, cred, td (void) chkdq(ip, -extblocks, NOCRED, 0); #endif vinvalbuf(vp, V_ALT, 0, 0); + if ((object = vp->v_object) != NULL) { + VM_OBJECT_LOCK(object); + vm_object_page_remove(object, + OFF_TO_IDX(lblktosize(fs, -extblocks)), 0, + FALSE); + VM_OBJECT_UNLOCK(object); + } ip->i_din2->di_extsize = 0; for (i = 0; i < NXADDR; i++) { oldblks[i] = ip->i_din2->di_extb[i]; From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 11:30:22 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB773106566C; Tue, 20 Jan 2009 11:30:22 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C9F398FC19; Tue, 20 Jan 2009 11:30:22 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KBUMUn043888; Tue, 20 Jan 2009 11:30:22 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KBUM01043886; Tue, 20 Jan 2009 11:30:22 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200901201130.n0KBUM01043886@svn.freebsd.org> From: Konstantin Belousov Date: Tue, 20 Jan 2009 11:30:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187468 - head/sys/ufs/ffs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 11:30:23 -0000 Author: kib Date: Tue Jan 20 11:30:22 2009 New Revision: 187468 URL: http://svn.freebsd.org/changeset/base/187468 Log: When extending inode size, we call vnode_pager_setsize(), to have a address space where to put vnode pages, and then call UFS_BALLOC(), to actually allocate new block and map it. When UFS_BALLOC() returns error, sometimes we forget to revert the vm object size increase, allowing for the pages that are not backed by the logical disk blocks. Revert vnode_pager_setsize() back when UFS_BALLOC() failed, for ffs_truncate() and ffs_write(). PR: 129956 Reviewed by: ups MFC after: 3 weeks Modified: head/sys/ufs/ffs/ffs_inode.c head/sys/ufs/ffs/ffs_vnops.c Modified: head/sys/ufs/ffs/ffs_inode.c ============================================================================== --- head/sys/ufs/ffs/ffs_inode.c Tue Jan 20 11:27:45 2009 (r187467) +++ head/sys/ufs/ffs/ffs_inode.c Tue Jan 20 11:30:22 2009 (r187468) @@ -305,8 +305,10 @@ ffs_truncate(vp, length, flags, cred, td vnode_pager_setsize(vp, length); flags |= BA_CLRBUF; error = UFS_BALLOC(vp, length - 1, 1, cred, flags, &bp); - if (error) + if (error) { + vnode_pager_setsize(vp, osize); return (error); + } ip->i_size = length; DIP_SET(ip, i_size, length); if (bp->b_bufsize == fs->fs_bsize) Modified: head/sys/ufs/ffs/ffs_vnops.c ============================================================================== --- head/sys/ufs/ffs/ffs_vnops.c Tue Jan 20 11:27:45 2009 (r187467) +++ head/sys/ufs/ffs/ffs_vnops.c Tue Jan 20 11:30:22 2009 (r187468) @@ -723,8 +723,10 @@ ffs_write(ap) /* XXX is uio->uio_offset the right thing here? */ error = UFS_BALLOC(vp, uio->uio_offset, xfersize, ap->a_cred, flags, &bp); - if (error != 0) + if (error != 0) { + vnode_pager_setsize(vp, ip->i_size); break; + } /* * If the buffer is not valid we have to clear out any * garbage data from the pages instantiated for the buffer. From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 11:34:28 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA06F10656D9; Tue, 20 Jan 2009 11:34:28 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C6F468FC24; Tue, 20 Jan 2009 11:34:28 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KBYSgs044019; Tue, 20 Jan 2009 11:34:28 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KBYShR044013; Tue, 20 Jan 2009 11:34:28 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <200901201134.n0KBYShR044013@svn.freebsd.org> From: Ed Schouten Date: Tue, 20 Jan 2009 11:34:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187469 - head/sys/dev/syscons/teken X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 11:34:30 -0000 Author: ed Date: Tue Jan 20 11:34:28 2009 New Revision: 187469 URL: http://svn.freebsd.org/changeset/base/187469 Log: Properly implement the VT100 SCS sequences in xterm-mode. Even though VT100-like devices can display non-ASCII characters, they do not use an 8-bit character set. Special escape sequences allow the VT100 to switch character maps. The special graphics character set stores the box drawing characters, starting at 0x60, ending at 0x7e. This means we now pass the character map tests in vttest, even the save/restore cursor test, combined with character maps. dialog(1) also works a lot better now. This commit also includes some other minor fixes: - Default to 24 lines in teken_demo when using xterm emulation. - Make white foreground and background work in teken_demo. Added: head/sys/dev/syscons/teken/teken_scs.h (contents, props changed) Modified: head/sys/dev/syscons/teken/sequences head/sys/dev/syscons/teken/teken.c head/sys/dev/syscons/teken/teken.h head/sys/dev/syscons/teken/teken_demo.c head/sys/dev/syscons/teken/teken_subr.h Modified: head/sys/dev/syscons/teken/sequences ============================================================================== --- head/sys/dev/syscons/teken/sequences Tue Jan 20 11:30:22 2009 (r187468) +++ head/sys/dev/syscons/teken/sequences Tue Jan 20 11:34:28 2009 (r187469) @@ -71,6 +71,16 @@ DSR Device Status Report ^[ [ ? n r ECH Erase character ^[ [ X n ED Erase display ^[ [ J r EL Erase line ^[ [ K r +G0SCS0 G0 SCS Special Graphics ^[ ( 0 +G0SCS1 G0 SCS US ASCII ^[ ( 1 +G0SCS2 G0 SCS Special Graphics ^[ ( 2 +G0SCSA G0 SCS UK National ^[ ( A +G0SCSB G0 SCS US ASCII ^[ ( B +G1SCS0 G1 SCS Special Graphics ^[ ) 0 +G1SCS1 G1 SCS US ASCII ^[ ) 1 +G1SCS2 G1 SCS Special Graphics ^[ ) 2 +G1SCSA G1 SCS UK National ^[ ) A +G1SCSB G1 SCS US ASCII ^[ ) B HPA Horizontal Position Absolute ^[ [ G n HPA Horizontal Position Absolute ^[ [ ` n HTS Horizontal Tab Set ^[ H @@ -81,16 +91,6 @@ NEL Next line ^[ E RI Reverse index ^[ M RIS Reset to Initial State ^[ c RM Reset Mode ^[ [ l r -SCS SCS ^[ ( 0 -SCS SCS ^[ ( 1 -SCS SCS ^[ ( 2 -SCS SCS ^[ ( A -SCS SCS ^[ ( B -SCS SCS ^[ ) 0 -SCS SCS ^[ ) 1 -SCS SCS ^[ ) 2 -SCS SCS ^[ ) A -SCS SCS ^[ ) B SD Pan Up ^[ [ T n SGR Set Graphic Rendition ^[ [ m v SM Set Mode ^[ [ h r Modified: head/sys/dev/syscons/teken/teken.c ============================================================================== --- head/sys/dev/syscons/teken/teken.c Tue Jan 20 11:30:22 2009 (r187468) +++ head/sys/dev/syscons/teken/teken.c Tue Jan 20 11:34:28 2009 (r187469) @@ -49,21 +49,27 @@ static FILE *df; #endif /* __FreeBSD__ && _KERNEL */ #include "teken.h" + #ifdef TEKEN_UTF8 #include "teken_wcwidth.h" #else /* !TEKEN_UTF8 */ -static inline int -teken_wcwidth(teken_char_t c __unused) -{ - #ifdef TEKEN_XTERM - return (c <= 0x1B) ? -1 : 1; +#define teken_wcwidth(c) ((c <= 0x1B) ? -1 : 1) #else /* !TEKEN_XTERM */ - return (1); +#define teken_wcwidth(c) (1) #endif /* TEKEN_XTERM */ -} #endif /* TEKEN_UTF8 */ +#if defined(TEKEN_XTERM) && defined(TEKEN_UTF8) +#include "teken_scs.h" +#else /* !(TEKEN_XTERM && TEKEN_UTF8) */ +#define teken_scs_process(t, c) (c) +#define teken_scs_restore(t) +#define teken_scs_save(t) +#define teken_scs_set(t, g, ts) +#define teken_scs_switch(t, g) +#endif /* TEKEN_XTERM && TEKEN_UTF8 */ + /* Private flags for teken_format_t. */ #define TF_REVERSE 0x08 @@ -229,6 +235,14 @@ teken_input_char(teken_t *t, teken_char_ case '\x0C': teken_subr_newpage(t); break; +#if defined(TEKEN_XTERM) && defined(TEKEN_UTF8) + case '\x0E': + teken_scs_switch(t, 1); + break; + case '\x0F': + teken_scs_switch(t, 0); + break; +#endif /* TEKEN_XTERM && TEKEN_UTF8 */ case '\r': teken_subr_carriage_return(t); break; Modified: head/sys/dev/syscons/teken/teken.h ============================================================================== --- head/sys/dev/syscons/teken/teken.h Tue Jan 20 11:30:22 2009 (r187468) +++ head/sys/dev/syscons/teken/teken.h Tue Jan 20 11:34:28 2009 (r187469) @@ -117,6 +117,10 @@ typedef struct { tf_respond_t *tf_respond; } teken_funcs_t; +#if defined(TEKEN_XTERM) && defined(TEKEN_UTF8) +typedef teken_char_t teken_scs_t(teken_char_t); +#endif /* TEKEN_XTERM && TEKEN_UTF8 */ + /* * Terminal state. */ @@ -146,12 +150,18 @@ struct __teken { teken_span_t t_originreg; #define T_NUMCOL 160 - unsigned int t_tabstops[T_NUMCOL / (sizeof(unsigned int) * 8)]; + unsigned int t_tabstops[T_NUMCOL / (sizeof(unsigned int) * 8)]; #ifdef TEKEN_UTF8 - unsigned int t_utf8_left; - teken_char_t t_utf8_partial; + unsigned int t_utf8_left; + teken_char_t t_utf8_partial; #endif /* TEKEN_UTF8 */ + +#if defined(TEKEN_XTERM) && defined(TEKEN_UTF8) + unsigned int t_curscs; + teken_scs_t *t_saved_curscs; + teken_scs_t *t_scs[2]; +#endif /* TEKEN_XTERM && TEKEN_UTF8 */ }; /* Initialize teken structure. */ Modified: head/sys/dev/syscons/teken/teken_demo.c ============================================================================== --- head/sys/dev/syscons/teken/teken_demo.c Tue Jan 20 11:30:22 2009 (r187468) +++ head/sys/dev/syscons/teken/teken_demo.c Tue Jan 20 11:34:28 2009 (r187469) @@ -70,7 +70,11 @@ struct pixel { }; #define NCOLS 80 +#ifdef TEKEN_XTERM +#define NROWS 24 +#else /* !TEKEN_XTERM */ #define NROWS 25 +#endif /* TEKEN_XTERM */ struct pixel buffer[NCOLS][NROWS]; static int ptfd; @@ -104,7 +108,7 @@ printchar(const teken_pos_t *p) if (px->a.ta_format & TF_BLINK) attr |= A_BLINK; - bkgdset(attr | COLOR_PAIR(px->a.ta_fgcolor + 8 * px->a.ta_bgcolor + 1)); + bkgdset(attr | COLOR_PAIR(px->a.ta_fgcolor + 8 * px->a.ta_bgcolor)); mvaddch(p->tp_row, p->tp_col, px->c); move(y, x); @@ -301,7 +305,7 @@ main(int argc __unused, char *argv[] __u start_color(); for (i = 0; i < 8; i++) for (j = 0; j < 8; j++) - init_pair(i + 8 * j + 1, ccolors[i], ccolors[j]); + init_pair(i + 8 * j, ccolors[i], ccolors[j]); redraw_border(); Added: head/sys/dev/syscons/teken/teken_scs.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/dev/syscons/teken/teken_scs.h Tue Jan 20 11:34:28 2009 (r187469) @@ -0,0 +1,98 @@ +/*- + * Copyright (c) 2009 Ed Schouten + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + +static void +teken_scs_set(teken_t *t, unsigned int g, teken_scs_t *ts) +{ + + t->t_scs[g] = ts; +} + +static void +teken_scs_switch(teken_t *t, unsigned int g) +{ + + t->t_curscs = g; +} + +static void +teken_scs_restore(teken_t *t) +{ + + t->t_scs[t->t_curscs] = t->t_saved_curscs; +} + +static void +teken_scs_save(teken_t *t) +{ + + t->t_saved_curscs = t->t_scs[t->t_curscs]; +} + +static teken_char_t +teken_scs_process(teken_t *t, teken_char_t c) +{ + + return (t->t_scs[t->t_curscs](c)); +} + +/* Unicode points for VT100 box drawing. */ +static const teken_char_t teken_boxdrawing[31] = { + 0x25c6, 0x2592, 0x2409, 0x240c, 0x240d, 0x240a, 0x00b0, 0x00b1, + 0x2424, 0x240b, 0x2518, 0x2510, 0x250c, 0x2514, 0x253c, 0x23ba, + 0x23bb, 0x2500, 0x23bc, 0x23bd, 0x251c, 0x2524, 0x2534, 0x252c, + 0x2502, 0x2264, 0x2265, 0x03c0, 0x2260, 0x00a3, 0x00b7 +}; + +static teken_char_t +teken_scs_special_graphics(teken_char_t c) +{ + + /* Box drawing. */ + if (c >= '`' && c <= '~') + return (teken_boxdrawing[c - '`']); + return (c); +} + +static teken_char_t +teken_scs_uk_national(teken_char_t c) +{ + + /* Pound sign. */ + if (c == '#') + return (0xa3); + return (c); +} + +static teken_char_t +teken_scs_us_ascii(teken_char_t c) +{ + + /* No processing. */ + return (c); +} Modified: head/sys/dev/syscons/teken/teken_subr.h ============================================================================== --- head/sys/dev/syscons/teken/teken_subr.h Tue Jan 20 11:30:22 2009 (r187468) +++ head/sys/dev/syscons/teken/teken_subr.h Tue Jan 20 11:34:28 2009 (r187469) @@ -30,6 +30,7 @@ static void teken_subr_cursor_up(teken_t static void teken_subr_erase_line(teken_t *, unsigned int); static void teken_subr_regular_character(teken_t *, teken_char_t); static void teken_subr_reset_to_initial_state(teken_t *); +static void teken_subr_save_cursor(teken_t *); static inline int teken_tab_isset(teken_t *t, unsigned int col) @@ -528,6 +529,48 @@ teken_subr_erase_line(teken_t *t, unsign } static void +teken_subr_g0_scs_special_graphics(teken_t *t __unused) +{ + + teken_scs_set(t, 0, teken_scs_special_graphics); +} + +static void +teken_subr_g0_scs_uk_national(teken_t *t __unused) +{ + + teken_scs_set(t, 0, teken_scs_uk_national); +} + +static void +teken_subr_g0_scs_us_ascii(teken_t *t __unused) +{ + + teken_scs_set(t, 0, teken_scs_us_ascii); +} + +static void +teken_subr_g1_scs_special_graphics(teken_t *t __unused) +{ + + teken_scs_set(t, 1, teken_scs_special_graphics); +} + +static void +teken_subr_g1_scs_uk_national(teken_t *t __unused) +{ + + teken_scs_set(t, 1, teken_scs_uk_national); +} + +static void +teken_subr_g1_scs_us_ascii(teken_t *t __unused) +{ + + teken_scs_set(t, 1, teken_scs_us_ascii); +} + +static void teken_subr_horizontal_position_absolute(teken_t *t, unsigned int col) { @@ -740,6 +783,8 @@ static void teken_subr_regular_character(teken_t *t, teken_char_t c) { int width; + + c = teken_scs_process(t, c); /* XXX: Don't process zero-width characters yet. */ width = teken_wcwidth(c); @@ -877,11 +922,15 @@ static void teken_subr_do_reset(teken_t *t) { - t->t_curattr = t->t_saved_curattr = t->t_defattr; + t->t_curattr = t->t_defattr; t->t_cursor.tp_row = t->t_cursor.tp_col = 0; - t->t_saved_cursor = t->t_cursor; t->t_stateflags = TS_AUTOWRAP; + teken_scs_set(t, 0, teken_scs_us_ascii); + teken_scs_set(t, 1, teken_scs_us_ascii); + teken_scs_switch(t, 0); + + teken_subr_save_cursor(t); teken_tab_default(t); } @@ -902,6 +951,7 @@ teken_subr_restore_cursor(teken_t *t) t->t_cursor = t->t_saved_cursor; t->t_curattr = t->t_saved_curattr; t->t_stateflags &= ~TS_WRAPPED; + teken_scs_restore(t); teken_funcs_cursor(t); } @@ -924,13 +974,7 @@ teken_subr_save_cursor(teken_t *t) t->t_saved_cursor = t->t_cursor; t->t_saved_curattr = t->t_curattr; -} - -static void -teken_subr_scs(teken_t *t __unused) -{ - - teken_printf("scs???\n"); + teken_scs_save(t); } static void From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 11:53:05 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B87D1065672; Tue, 20 Jan 2009 11:53:05 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from vlakno.cz (77-93-215-190.static.masterinter.net [77.93.215.190]) by mx1.freebsd.org (Postfix) with ESMTP id D69618FC1C; Tue, 20 Jan 2009 11:53:04 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from localhost (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 4D2EA9CB074; Tue, 20 Jan 2009 12:52:36 +0100 (CET) X-Virus-Scanned: amavisd-new at vlakno.cz Received: from vlakno.cz ([127.0.0.1]) by localhost (lev.vlakno.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZgTPl2q0Wqtr; Tue, 20 Jan 2009 12:52:34 +0100 (CET) Received: from vlk.vlakno.cz (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id F21379CB094; Tue, 20 Jan 2009 12:52:33 +0100 (CET) Received: (from rdivacky@localhost) by vlk.vlakno.cz (8.14.2/8.14.2/Submit) id n0KBqXY1044896; Tue, 20 Jan 2009 12:52:33 +0100 (CET) (envelope-from rdivacky) Date: Tue, 20 Jan 2009 12:52:33 +0100 From: Roman Divacky To: Konstantin Belousov Message-ID: <20090120115233.GA43828@freebsd.org> References: <200901201130.n0KBUM01043886@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200901201130.n0KBUM01043886@svn.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187468 - head/sys/ufs/ffs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 11:53:05 -0000 On Tue, Jan 20, 2009 at 11:30:22AM +0000, Konstantin Belousov wrote: > Author: kib > Date: Tue Jan 20 11:30:22 2009 > New Revision: 187468 > URL: http://svn.freebsd.org/changeset/base/187468 > > Log: > When extending inode size, we call vnode_pager_setsize(), to have a > address space where to put vnode pages, and then call UFS_BALLOC(), > to actually allocate new block and map it. When UFS_BALLOC() returns > error, sometimes we forget to revert the vm object size increase, > allowing for the pages that are not backed by the logical disk blocks. > > Revert vnode_pager_setsize() back when UFS_BALLOC() failed, for > ffs_truncate() and ffs_write(). can you describe in what scenario this can trigger? can it be that many smallish (a few tens of kB?) of mmaped files being read/write may cause this? thnx From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 11:54:12 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5072106566B; Tue, 20 Jan 2009 11:54:12 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from mail-gw1.york.ac.uk (mail-gw1.york.ac.uk [144.32.128.246]) by mx1.freebsd.org (Postfix) with ESMTP id 3009A8FC12; Tue, 20 Jan 2009 11:54:11 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from mail-gw7.york.ac.uk (mail-gw7.york.ac.uk [144.32.129.30]) by mail-gw1.york.ac.uk (8.13.6/8.13.6) with ESMTP id n0KBs6mb006651; Tue, 20 Jan 2009 11:54:06 GMT Received: from buffy-128.york.ac.uk ([144.32.128.160] helo=buffy.york.ac.uk) by mail-gw7.york.ac.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1LPFBG-00036k-Id; Tue, 20 Jan 2009 11:54:06 +0000 Received: from buffy.york.ac.uk (localhost [127.0.0.1]) by buffy.york.ac.uk (8.14.2/8.14.2) with ESMTP id n0KBs626013206; Tue, 20 Jan 2009 11:54:06 GMT (envelope-from gavin@FreeBSD.org) Received: (from ga9@localhost) by buffy.york.ac.uk (8.14.2/8.14.2/Submit) id n0KBs6lG013200; Tue, 20 Jan 2009 11:54:06 GMT (envelope-from gavin@FreeBSD.org) X-Authentication-Warning: buffy.york.ac.uk: ga9 set sender to gavin@FreeBSD.org using -f From: Gavin Atkinson To: "M. Warner Losh" In-Reply-To: <20090119.181124.-1270972755.imp@bsdimp.com> References: <200901191536.n0JFaPTN014129@svn.freebsd.org> <20090119.181124.-1270972755.imp@bsdimp.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 20 Jan 2009 11:54:05 +0000 Message-Id: <1232452445.22840.21.camel@buffy.york.ac.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.22.2 FreeBSD GNOME Team Port X-York-MailScanner: Found to be clean X-York-MailScanner-From: gavin@freebsd.org Cc: sobomax@FreeBSD.org, src-committers@FreeBSD.org, svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, svn-src-stable-7@FreeBSD.org, rwatson@FreeBSD.org Subject: Re: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 11:54:13 -0000 On Mon, 2009-01-19 at 18:11 -0700, M. Warner Losh wrote: > In message: > Robert Watson writes: > : > : On Mon, 19 Jan 2009, Maxim Sobolev wrote: > : > : > Author: sobomax > : > Date: Mon Jan 19 15:36:25 2009 > : > New Revision: 187434 > : > URL: http://svn.freebsd.org/changeset/base/187434 > : > > : > Log: > : > MFC: take NTFS option out to match i386 GENERIC. > : > : Are you going to modify UPDATING to say that "options NTFS" will now be > : required where it wasn't previously on amd64? Also, insta-MFC's are generally > : a bad idea, even for changes believed harmless, as they often have unexpected > : side effects. > > Especially since NTFS works very well in 6.x and I think in 7.x. It > is only in -current that there are issues exposed by other work... Do you know which other work exposed these issues? Or is it broken but nobody knows why? If the cause is known, this might make a good "junior kernel hacker" task, or whatever that page is called now, especially given other file systems have been changed and may serve as example code. Gavin From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 12:07:50 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 372C810656EB; Tue, 20 Jan 2009 12:07:50 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1E2058FC0A; Tue, 20 Jan 2009 12:07:50 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KC7noK044685; Tue, 20 Jan 2009 12:07:49 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KC7n57044684; Tue, 20 Jan 2009 12:07:49 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200901201207.n0KC7n57044684@svn.freebsd.org> From: Konstantin Belousov Date: Tue, 20 Jan 2009 12:07:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187470 - head/sys/amd64/amd64 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 12:07:57 -0000 Author: kib Date: Tue Jan 20 12:07:49 2009 New Revision: 187470 URL: http://svn.freebsd.org/changeset/base/187470 Log: The context switch to the 32bit binary does not properly restore the fsbase value. The switch loads the fs segment register, that invalidates the value in fsbase msr, thus value in %r9 can not be considered the current value for fsbase anymore. Unconditionally reload fsbase when switching to 32bit binary. PR: 130526 MFC after: 3 weeks Modified: head/sys/amd64/amd64/cpu_switch.S Modified: head/sys/amd64/amd64/cpu_switch.S ============================================================================== --- head/sys/amd64/amd64/cpu_switch.S Tue Jan 20 11:34:28 2009 (r187469) +++ head/sys/amd64/amd64/cpu_switch.S Tue Jan 20 12:07:49 2009 (r187470) @@ -199,6 +199,7 @@ done_load_seg: cmpq PCB_FSBASE(%r8),%r9 jz 1f /* Restore userland %fs */ +restore_fsbase: movl $MSR_FSBASE,%ecx movl PCB_FSBASE(%r8),%eax movl PCB_FSBASE+4(%r8),%edx @@ -281,7 +282,7 @@ load_seg: movl PCB_DS(%r8),%ds movl PCB_ES(%r8),%es movl PCB_FS(%r8),%fs - jmp done_load_seg + jmp restore_fsbase /* Restore userland %gs while preserving kernel gsbase */ 2: movq PCPU(GS32P),%rax movq PCB_GS32SD(%r8),%rcx From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 12:30:31 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A44BB106567F; Tue, 20 Jan 2009 12:30:31 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.terabit.net.ua (mail.terabit.net.ua [195.137.202.147]) by mx1.freebsd.org (Postfix) with ESMTP id 461E78FC25; Tue, 20 Jan 2009 12:30:31 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from skuns.zoral.com.ua ([91.193.166.194] helo=mail.zoral.com.ua) by mail.terabit.net.ua with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1LPFkT-0002DO-Lw; Tue, 20 Jan 2009 14:30:29 +0200 Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id n0KCUNo4097271 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 20 Jan 2009 14:30:23 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3) with ESMTP id n0KCUNv4011626; Tue, 20 Jan 2009 14:30:23 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3/Submit) id n0KCUMsL011625; Tue, 20 Jan 2009 14:30:22 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Tue, 20 Jan 2009 14:30:22 +0200 From: Kostik Belousov To: Roman Divacky Message-ID: <20090120123022.GB58517@deviant.kiev.zoral.com.ua> References: <200901201130.n0KBUM01043886@svn.freebsd.org> <20090120115233.GA43828@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="K8nIJk4ghYZn606h" Content-Disposition: inline In-Reply-To: <20090120115233.GA43828@freebsd.org> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua X-Virus-Scanned: mail.terabit.net.ua 1LPFkT-0002DO-Lw 62e3c7124d0766103d60a637b5db5861 X-Terabit: YES Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187468 - head/sys/ufs/ffs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 12:30:32 -0000 --K8nIJk4ghYZn606h Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 20, 2009 at 12:52:33PM +0100, Roman Divacky wrote: > On Tue, Jan 20, 2009 at 11:30:22AM +0000, Konstantin Belousov wrote: > > Author: kib > > Date: Tue Jan 20 11:30:22 2009 > > New Revision: 187468 > > URL: http://svn.freebsd.org/changeset/base/187468 > >=20 > > Log: > > When extending inode size, we call vnode_pager_setsize(), to have a > > address space where to put vnode pages, and then call UFS_BALLOC(), > > to actually allocate new block and map it. When UFS_BALLOC() returns > > error, sometimes we forget to revert the vm object size increase, > > allowing for the pages that are not backed by the logical disk blocks. > > =20 > > Revert vnode_pager_setsize() back when UFS_BALLOC() failed, for > > ffs_truncate() and ffs_write(). >=20 > can you describe in what scenario this can trigger? can it be that > many smallish (a few tens of kB?) of mmaped files being read/write > may cause this? The usual scenario is either a full partition or exceeded block quotas for the user that writes the file and then mmap it. --K8nIJk4ghYZn606h Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkl1w90ACgkQC3+MBN1Mb4iyHACfSP8J1KUPlxC2ujeEMrrI20El VLUAnitW3DyAtfIJt0uGl5gMRsaag9Ne =5Yfo -----END PGP SIGNATURE----- --K8nIJk4ghYZn606h-- From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 12:33:04 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECC5A1065672; Tue, 20 Jan 2009 12:33:04 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D0D1D8FC0C; Tue, 20 Jan 2009 12:33:04 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KCX4Fu045316; Tue, 20 Jan 2009 12:33:04 GMT (envelope-from jeff@svn.freebsd.org) Received: (from jeff@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KCX4u5045315; Tue, 20 Jan 2009 12:33:04 GMT (envelope-from jeff@svn.freebsd.org) Message-Id: <200901201233.n0KCX4u5045315@svn.freebsd.org> From: Jeff Roberson Date: Tue, 20 Jan 2009 12:33:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187471 - head/tools/sched X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 12:33:05 -0000 Author: jeff Date: Tue Jan 20 12:33:04 2009 New Revision: 187471 URL: http://svn.freebsd.org/changeset/base/187471 Log: - Permit timestamps to be as far as 2048 ticks apart before we complain about invalid timestamps. Nehalem CPUs seem to be synchronized but only within a fraction of a microsecond. - Make the Counter code more flexible to poor timestamps. In general we now complain a lot but render as much as we can. - Change the scaler behavior so it works better with very long and very short traces. We now set the maximum scale such that it properly displays the entire file by default and doesn't permit zooming out beyond the file. This improves other awkward navigation behavior. The interval is now set very small which can't be achieved by simply dragging the mouse. Clicking to the left of or right of the scaler bar will produce increments of a single, very small, interval now. Sponsored by: Nokia Modified: head/tools/sched/schedgraph.py Modified: head/tools/sched/schedgraph.py ============================================================================== --- head/tools/sched/schedgraph.py Tue Jan 20 12:07:49 2009 (r187470) +++ head/tools/sched/schedgraph.py Tue Jan 20 12:33:04 2009 (r187471) @@ -162,15 +162,12 @@ def ticks2sec(ticks): class Scaler(Frame): def __init__(self, master, target): Frame.__init__(self, master) - self.scale = Scale(self, command=self.scaleset, - from_=1000, to_=10000000, orient=HORIZONTAL, - resolution=1000) + self.scale = None + self.target = target self.label = Label(self, text="Ticks per pixel") self.label.pack(side=LEFT) - self.scale.pack(fill="both", expand=1) - self.target = target - self.scale.set(target.scaleget()) - self.initialized = 1 + self.resolution = 100 + self.setmax(10000) def scaleset(self, value): self.target.scaleset(int(value)) @@ -178,6 +175,20 @@ class Scaler(Frame): def set(self, value): self.scale.set(value) + def setmax(self, value): + # + # We can't reconfigure the to_ value so we delete the old + # window and make a new one when we resize. + # + if (self.scale != None): + self.scale.pack_forget() + self.scale.destroy() + self.scale = Scale(self, command=self.scaleset, + from_=100, to_=value, orient=HORIZONTAL, + resolution=self.resolution) + self.scale.pack(fill="both", expand=1) + self.scale.set(self.target.scaleget()) + class Status(Frame): def __init__(self, master): Frame.__init__(self, master) @@ -726,6 +737,11 @@ class CountEvent(Event): return (xpos) color = colormap.lookup("count") self.duration = duration = next.timestamp - self.timestamp + if (duration < 0): + duration = 0 + print "Unsynchronized timestamp" + print self.cpu, self.timestamp + print next.cpu, next.timestamp self.attrs.insert(0, ("count", self.count)) self.attrs.insert(1, ("duration", ticks2sec(duration))) delta = duration / canvas.ratio @@ -882,6 +898,7 @@ class KTRFile: self.crit = {} self.stathz = 0 self.eventcnt = 0 + self.taghash = {} self.parse(file) self.fixup() @@ -956,7 +973,8 @@ class KTRFile: if (dat == None): dat = dat1 if (self.checkstamp(timestamp) == 0): - print "Bad timestamp at", lineno, ":", line, + print "Bad timestamp at", lineno, ":", + print cpu, timestamp continue # # Build the table of optional attributes @@ -1021,20 +1039,22 @@ class KTRFile: timestamp = int(timestamp) if (self.timestamp_f == None): self.timestamp_f = timestamp; - if (self.timestamp_l != None and timestamp > self.timestamp_l): + if (self.timestamp_l != None and + timestamp -2048> self.timestamp_l): return (0) self.timestamp_l = timestamp; return (1) def makeid(self, group, id, type): - for source in sources: - if (source.name == id and source.group == group): - return source + tag = group + id + if (self.taghash.has_key(tag)): + return self.taghash[tag] if (type == "counter"): source = Counter(group, id) else: source = EventSource(group, id) sources.append(source) + self.taghash[tag] = source return (source) def findid(self, id): @@ -1053,7 +1073,7 @@ class KTRFile: return int(clockfreq * oneghz) # Check for a discovered clock - if (self.stathz != None): + if (self.stathz != 0): return (self.timespan() / self.ticks[0]) * int(self.stathz) # Pretend we have a 1ns clock print "WARNING: No clock discovered and no frequency ", @@ -1313,8 +1333,16 @@ class SchedGraph(Frame): self.names.draw() self.display.draw() self.status.startup("") - self.scale.set(250000) + # + # Configure scale related values + # + scalemax = ktrfile.timespan() / int(self.display["width"]) + width = int(root.geometry().split('x')[0]) + self.constwidth = width - int(self.display["width"]) + self.scale.setmax(scalemax) + self.scale.set(scalemax) self.display.xview_moveto(0) + self.bind("", self.resize) def mousepress(self, event): self.clicksource = self.sourceat(event.y) @@ -1452,8 +1480,7 @@ class SchedGraph(Frame): source.hidden = 0 size += sz idx += 1 - self.names.updatescroll() - self.display.updatescroll() + self.updatescroll() self.status.set("") # @@ -1496,8 +1523,7 @@ class SchedGraph(Frame): if (nstart >= stop): break; self.sourceshift(source, -size) - self.names.updatescroll() - self.display.updatescroll() + self.updatescroll() self.status.set("") def sourcehide(self, source): @@ -1530,8 +1556,7 @@ class SchedGraph(Frame): if (nstart < start): continue; self.sourceshift(source, off) - self.names.updatescroll() - self.display.updatescroll() + self.updatescroll() self.status.set("") def sourceat(self, ypos): @@ -1551,6 +1576,15 @@ class SchedGraph(Frame): self.names.yview(*args) self.display.yview(*args) + def resize(self, *args): + width = int(root.geometry().split('x')[0]) + scalemax = ktrfile.timespan() / (width - self.constwidth) + self.scale.setmax(scalemax) + + def updatescroll(self): + self.names.updatescroll() + self.display.updatescroll() + def setcolor(self, tag, color): self.display.setcolor(tag, color) From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 12:52:03 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 360D81065673; Tue, 20 Jan 2009 12:52:03 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 0DB568FC13; Tue, 20 Jan 2009 12:52:03 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id 941B746B06; Tue, 20 Jan 2009 07:52:02 -0500 (EST) Date: Tue, 20 Jan 2009 12:52:02 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Gavin Atkinson In-Reply-To: <1232452445.22840.21.camel@buffy.york.ac.uk> Message-ID: References: <200901191536.n0JFaPTN014129@svn.freebsd.org> <20090119.181124.-1270972755.imp@bsdimp.com> <1232452445.22840.21.camel@buffy.york.ac.uk> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Cc: sobomax@FreeBSD.org, svn-src-stable-7@FreeBSD.org, svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, "M. Warner Losh" Subject: Re: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 12:52:04 -0000 On Tue, 20 Jan 2009, Gavin Atkinson wrote: >> : Are you going to modify UPDATING to say that "options NTFS" will now be >> : required where it wasn't previously on amd64? Also, insta-MFC's are generally >> : a bad idea, even for changes believed harmless, as they often have unexpected >> : side effects. >> >> Especially since NTFS works very well in 6.x and I think in 7.x. It is >> only in -current that there are issues exposed by other work... > > Do you know which other work exposed these issues? Or is it broken but > nobody knows why? > > If the cause is known, this might make a good "junior kernel hacker" task, > or whatever that page is called now, especially given other file systems > have been changed and may serve as example code. I'm not sure if it's a stability issue per se, rather that as kernel interfaces for VFS are evolved to support more parallelism, etc, file systems without active maintenance are at risk of becoming less functional and eventually being dropped. I think the context of the previous thread was Attilio inquiring about expelling some of the less-recently maintained file systems from the kernel so as to make redoing VFS interfaces easier (since he'd have to touch fewer file systems). There may be other stability issues as well, needless to say. One of the biggest issues will be if we want to, at some point, remove all the scaffolding used to support non-MPSAFE file systems, as locking down file systems requires both quite a bit of expertise and quite a bit of time. On a similar note, in the network stack, we jettisoned netatm and neti4b support as they didn't have maintainers and there was no one to make them MPSAFE. We're going to do the same for network device drivers that aren't MPSAFE in the near future in order to remove the last bit of scaffolding there -- I originally planned to remove IFF_NEEDSGIANT last year, but deferred it since it seemd the usb2 project was working towards providing MPSAFE USB network device drivers, which is seems (on the whole) to have now done, so I should restart the removal of IFF_NEEDSGIANT for 8.0. Robert From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 14:06:30 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8602A106564A; Tue, 20 Jan 2009 14:06:30 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 745868FC13; Tue, 20 Jan 2009 14:06:30 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KE6Up6047130; Tue, 20 Jan 2009 14:06:30 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KE6U67047129; Tue, 20 Jan 2009 14:06:30 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <200901201406.n0KE6U67047129@svn.freebsd.org> From: Nathan Whitehorn Date: Tue, 20 Jan 2009 14:06:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187472 - head/sys/dev/ofw X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 14:06:31 -0000 Author: nwhitehorn Date: Tue Jan 20 14:06:30 2009 New Revision: 187472 URL: http://svn.freebsd.org/changeset/base/187472 Log: Set the wrong softc size when defining the ofw_iicbus class. Change it to the correct value. Modified: head/sys/dev/ofw/ofw_iicbus.c Modified: head/sys/dev/ofw/ofw_iicbus.c ============================================================================== --- head/sys/dev/ofw/ofw_iicbus.c Tue Jan 20 12:33:04 2009 (r187471) +++ head/sys/dev/ofw/ofw_iicbus.c Tue Jan 20 14:06:30 2009 (r187472) @@ -78,8 +78,8 @@ struct ofw_iicbus_devinfo { static devclass_t ofwiicbus_devclass; -DEFINE_CLASS_1(iicbus, ofw_iicbus_driver, ofw_iicbus_methods, 1 /* no softc */, - iicbus_driver); +DEFINE_CLASS_1(iicbus, ofw_iicbus_driver, ofw_iicbus_methods, + sizeof(struct iicbus_softc), iicbus_driver); DRIVER_MODULE(ofw_iicbus, iichb, ofw_iicbus_driver, ofwiicbus_devclass, 0, 0); MODULE_VERSION(ofw_iicbus, 1); MODULE_DEPEND(ofw_iicbus, iicbus, 1, 1, 1); From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 14:09:12 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E30B3106566B; Tue, 20 Jan 2009 14:09:12 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B73A08FC1C; Tue, 20 Jan 2009 14:09:12 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KE9CAK047243; Tue, 20 Jan 2009 14:09:12 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KE9Ctl047242; Tue, 20 Jan 2009 14:09:12 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <200901201409.n0KE9Ctl047242@svn.freebsd.org> From: Nathan Whitehorn Date: Tue, 20 Jan 2009 14:09:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187473 - head/sys/powerpc/powermac X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 14:09:13 -0000 Author: nwhitehorn Date: Tue Jan 20 14:09:12 2009 New Revision: 187473 URL: http://svn.freebsd.org/changeset/base/187473 Log: Fix a race condition in kiic(4) made possible by the way the device's STOP condition is sent. We used to put the bus in the STOP state, but returned without waiting for that to actually occur. Submitted by: Marco Trillo Modified: head/sys/powerpc/powermac/kiic.c Modified: head/sys/powerpc/powermac/kiic.c ============================================================================== --- head/sys/powerpc/powermac/kiic.c Tue Jan 20 14:06:30 2009 (r187472) +++ head/sys/powerpc/powermac/kiic.c Tue Jan 20 14:09:12 2009 (r187473) @@ -230,7 +230,7 @@ static void kiic_writereg(struct kiic_softc *sc, u_int reg, u_int val) { bus_write_1(sc->sc_reg, sc->sc_regstep * reg, val); - DELAY(10); /* XXX why? */ + DELAY(10); /* register access delay */ } static u_int @@ -289,18 +289,22 @@ kiic_intr(void *xsc) } if (isr & I2C_INT_DATA) { - if (sc->sc_resid > 0) { - if (sc->sc_flags & I2C_READING) { + if (sc->sc_flags & I2C_READING) { + if (sc->sc_resid > 0) { *sc->sc_data++ = kiic_readreg(sc, DATA); sc->sc_resid--; + } + + } else { + if (sc->sc_resid == 0) { + x = kiic_readreg(sc, CONTROL); + x |= I2C_CT_STOP; + kiic_writereg(sc, CONTROL, x); } else { kiic_writereg(sc, DATA, *sc->sc_data++); sc->sc_resid--; } } - - if (sc->sc_resid == 0) - wakeup(sc->sc_dev); } if (isr & I2C_INT_STOP) { @@ -317,7 +321,7 @@ static int kiic_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) { struct kiic_softc *sc; - int i, x, timo; + int i, x, timo, err; uint8_t addr; sc = device_get_softc(dev); @@ -341,6 +345,7 @@ kiic_transfer(device_t dev, struct iic_m sc->sc_flags = I2C_BUSY; addr = msgs[i].slave; timo = 1000 + sc->sc_resid * 200; + timo += 100000; if (msgs[i].flags & IIC_M_RD) { sc->sc_flags |= I2C_READING; @@ -353,19 +358,13 @@ kiic_transfer(device_t dev, struct iic_m x = kiic_readreg(sc, CONTROL) | I2C_CT_ADDR; kiic_writereg(sc, CONTROL, x); - mtx_sleep(dev, &sc->sc_mutex, 0, "kiic", timo); - - if (!(sc->sc_flags & I2C_READING)) { - x = kiic_readreg(sc, CONTROL) | I2C_CT_STOP; - kiic_writereg(sc, CONTROL, x); - } - - mtx_sleep(dev, &sc->sc_mutex, 0, "kiic", timo); - + err = mtx_sleep(dev, &sc->sc_mutex, 0, "kiic", timo); + msgs[i].len -= sc->sc_resid; - if (sc->sc_flags & I2C_ERROR) { - device_printf(sc->sc_dev, "I2C_ERROR\n"); + if ((sc->sc_flags & I2C_ERROR) || err == EWOULDBLOCK) { + device_printf(sc->sc_dev, "I2C error\n"); + sc->sc_flags = 0; mtx_unlock(&sc->sc_mutex); return (-1); } From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 16:35:35 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BB75106566C; Tue, 20 Jan 2009 16:35:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2AA368FC20; Tue, 20 Jan 2009 16:35:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KGZZVP050371; Tue, 20 Jan 2009 16:35:35 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KGZZUd050370; Tue, 20 Jan 2009 16:35:35 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901201635.n0KGZZUd050370@svn.freebsd.org> From: John Baldwin Date: Tue, 20 Jan 2009 16:35:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187474 - head/sys/ufs/ufs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 16:35:35 -0000 Author: jhb Date: Tue Jan 20 16:35:34 2009 New Revision: 187474 URL: http://svn.freebsd.org/changeset/base/187474 Log: Add a comment explaining why the "bufwait" / "dirhash" LOR reported by WITNESS will not actually result in a deadlock. Discussed with: kib MFC after: 1 week Modified: head/sys/ufs/ufs/ufs_dirhash.c Modified: head/sys/ufs/ufs/ufs_dirhash.c ============================================================================== --- head/sys/ufs/ufs/ufs_dirhash.c Tue Jan 20 14:09:12 2009 (r187473) +++ head/sys/ufs/ufs/ufs_dirhash.c Tue Jan 20 16:35:34 2009 (r187474) @@ -126,6 +126,18 @@ static struct mtx ufsdirhash_mtx; * free a dirhash structure that was recycled by ufsdirhash_recycle(). * * The dirhash lock may be held across io operations. + * + * WITNESS reports a lock order reversal between the "bufwait" lock + * and the "dirhash" lock. However, this specific reversal will not + * cause a deadlock. To get a deadlock, one would have to lock a + * buffer followed by the dirhash while a second thread locked a + * buffer while holding the dirhash lock. The second order can happen + * under a shared or exclusive vnode lock for the associated directory + * in lookup(). The first order, however, can only happen under an + * exclusive vnode lock (e.g. unlink(), rename(), etc.). Thus, for + * a thread to be doing a "bufwait" -> "dirhash" order, it has to hold + * an exclusive vnode lock. That exclusive vnode lock will prevent + * any other threads from doing a "dirhash" -> "bufwait" order. */ static void From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 17:15:12 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DAC9106566B; Tue, 20 Jan 2009 17:15:12 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 71DDD8FC17; Tue, 20 Jan 2009 17:15:12 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KHFCSq051201; Tue, 20 Jan 2009 17:15:12 GMT (envelope-from rdivacky@svn.freebsd.org) Received: (from rdivacky@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KHFCfw051198; Tue, 20 Jan 2009 17:15:12 GMT (envelope-from rdivacky@svn.freebsd.org) Message-Id: <200901201715.n0KHFCfw051198@svn.freebsd.org> From: Roman Divacky Date: Tue, 20 Jan 2009 17:15:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187475 - head/usr.bin/make X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 17:15:13 -0000 Author: rdivacky Date: Tue Jan 20 17:15:12 2009 New Revision: 187475 URL: http://svn.freebsd.org/changeset/base/187475 Log: Remove inlining of functions that are used mostly in different object files. This gets rid of gnu89 style inlining. Also silence gcc by assigning two variables NULL. This lets use to remove NO_WERROR. Approved by: kib (mentor) Approved by: harti Modified: head/usr.bin/make/Makefile head/usr.bin/make/buf.c head/usr.bin/make/suff.c Modified: head/usr.bin/make/Makefile ============================================================================== --- head/usr.bin/make/Makefile Tue Jan 20 16:35:34 2009 (r187474) +++ head/usr.bin/make/Makefile Tue Jan 20 17:15:12 2009 (r187475) @@ -8,7 +8,6 @@ SRCS= arch.c buf.c cond.c dir.c for.c ha lst.c main.c make.c parse.c proc.c shell.c str.c suff.c targ.c \ util.c var.c -NO_WERROR= WARNS?= 6 NO_SHARED?= YES Modified: head/usr.bin/make/buf.c ============================================================================== --- head/usr.bin/make/buf.c Tue Jan 20 16:35:34 2009 (r187474) +++ head/usr.bin/make/buf.c Tue Jan 20 17:15:12 2009 (r187475) @@ -58,7 +58,7 @@ __FBSDID("$FreeBSD$"); * Returns the number of bytes in the buffer. Doesn't include the * null-terminating byte. */ -inline size_t +size_t Buf_Size(const Buffer *buf) { @@ -70,7 +70,7 @@ Buf_Size(const Buffer *buf) * * @note Adding data to the Buffer object may invalidate the reference. */ -inline char * +char * Buf_Data(const Buffer *bp) { @@ -98,7 +98,7 @@ BufExpand(Buffer *bp, size_t nb) /** * Add a single byte to the buffer. */ -inline void +void Buf_AddByte(Buffer *bp, Byte byte) { Modified: head/usr.bin/make/suff.c ============================================================================== --- head/usr.bin/make/suff.c Tue Jan 20 16:35:34 2009 (r187474) +++ head/usr.bin/make/suff.c Tue Jan 20 17:15:12 2009 (r187475) @@ -514,6 +514,7 @@ Suff_AddTransform(char *line) Suff *s; /* source suffix */ Suff *t; /* target suffix */ + s = t = NULL; /* silence gcc */ gn = SuffTransFind(line); if (gn == NULL) { /* From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 17:18:34 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E49810656CE; Tue, 20 Jan 2009 17:18:34 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from vlakno.cz (77-93-215-190.static.masterinter.net [77.93.215.190]) by mx1.freebsd.org (Postfix) with ESMTP id B9A978FC19; Tue, 20 Jan 2009 17:18:32 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from localhost (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id B212E9CB072; Tue, 20 Jan 2009 18:18:05 +0100 (CET) X-Virus-Scanned: amavisd-new at vlakno.cz Received: from vlakno.cz ([127.0.0.1]) by localhost (lev.vlakno.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4uSRFi2l9l34; Tue, 20 Jan 2009 18:18:03 +0100 (CET) Received: from vlk.vlakno.cz (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 6CB659CB094; Tue, 20 Jan 2009 18:18:03 +0100 (CET) Received: (from rdivacky@localhost) by vlk.vlakno.cz (8.14.2/8.14.3/Submit) id n0KHI3tw038059; Tue, 20 Jan 2009 18:18:03 +0100 (CET) (envelope-from rdivacky) Date: Tue, 20 Jan 2009 18:18:03 +0100 From: Roman Divacky To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Message-ID: <20090120171803.GA37717@freebsd.org> References: <200901201715.n0KHFCfw051198@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200901201715.n0KHFCfw051198@svn.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: Subject: Re: svn commit: r187475 - head/usr.bin/make X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 17:18:35 -0000 On Tue, Jan 20, 2009 at 05:15:12PM +0000, Roman Divacky wrote: > Author: rdivacky > Date: Tue Jan 20 17:15:12 2009 > New Revision: 187475 > URL: http://svn.freebsd.org/changeset/base/187475 > > Log: > Remove inlining of functions that are used mostly in different object files. > This gets rid of gnu89 style inlining. Also silence gcc by assigning two > variables NULL. This lets use to remove NO_WERROR. does anyone know of some Makefile that is cpu intensive and not io bound? it might make sense to turn on -finline-functions in make but it would be nice to be able to measure the speedup (if any)... do we have some funny stuff written bsd make ? (computation of PI or something like that) roman From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 17:36:58 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FF8A1065700; Tue, 20 Jan 2009 17:36:58 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7E7B88FC29; Tue, 20 Jan 2009 17:36:58 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KHawCK051698; Tue, 20 Jan 2009 17:36:58 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KHawqd051697; Tue, 20 Jan 2009 17:36:58 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <200901201736.n0KHawqd051697@svn.freebsd.org> From: Alexander Motin Date: Tue, 20 Jan 2009 17:36:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187476 - head/sys/arm/at91 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 17:36:59 -0000 Author: mav Date: Tue Jan 20 17:36:58 2009 New Revision: 187476 URL: http://svn.freebsd.org/changeset/base/187476 Log: Implement MMCBR_IVAR_CAPS. It should better be implemented, or results can be unpredictable. PR: arm/128987 Modified: head/sys/arm/at91/at91_mci.c Modified: head/sys/arm/at91/at91_mci.c ============================================================================== --- head/sys/arm/at91/at91_mci.c Tue Jan 20 17:15:12 2009 (r187475) +++ head/sys/arm/at91/at91_mci.c Tue Jan 20 17:36:58 2009 (r187476) @@ -643,6 +643,9 @@ at91_mci_read_ivar(device_t bus, device_ case MMCBR_IVAR_VDD: *(int *)result = sc->host.ios.vdd; break; + case MMCBR_IVAR_CAPS: + *(int *)result = sc->host.caps; + break; case MMCBR_IVAR_MAX_DATA: *(int *)result = 1; break; @@ -683,6 +686,7 @@ at91_mci_write_ivar(device_t bus, device sc->host.ios.vdd = value; break; /* These are read-only */ + case MMCBR_IVAR_CAPS: case MMCBR_IVAR_HOST_OCR: case MMCBR_IVAR_F_MIN: case MMCBR_IVAR_F_MAX: From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 18:16:32 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39C4A106566C; Tue, 20 Jan 2009 18:16:32 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0F5FB8FC1B; Tue, 20 Jan 2009 18:16:32 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KIGV0u052782; Tue, 20 Jan 2009 18:16:31 GMT (envelope-from luigi@svn.freebsd.org) Received: (from luigi@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KIGVpR052780; Tue, 20 Jan 2009 18:16:31 GMT (envelope-from luigi@svn.freebsd.org) Message-Id: <200901201816.n0KIGVpR052780@svn.freebsd.org> From: Luigi Rizzo Date: Tue, 20 Jan 2009 18:16:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187477 - head/sbin/ipfw X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 18:16:33 -0000 Author: luigi Date: Tue Jan 20 18:16:31 2009 New Revision: 187477 URL: http://svn.freebsd.org/changeset/base/187477 Log: Fix a number of (innocuous) warnings, and remove a useless test. There are still several signed/unsigned warnings left, which require a bit more study for a proper fix. This file has grown beyond reasonable limits. We really need to split it into separate components (ipv4, ipv6, dummynet, nat, table, userland-kernel communication ...) so we can make mainteinance easier. MFC after: 1 weeks Modified: head/sbin/ipfw/ipfw2.c Modified: head/sbin/ipfw/ipfw2.c ============================================================================== --- head/sbin/ipfw/ipfw2.c Tue Jan 20 17:36:58 2009 (r187476) +++ head/sbin/ipfw/ipfw2.c Tue Jan 20 18:16:31 2009 (r187477) @@ -787,11 +787,12 @@ altq_set_enabled(int enabled) } static void -altq_fetch() +altq_fetch(void) { struct pfioc_altq pfioc; struct pf_altq *altq; - int pffd, mnr; + int pffd; + unsigned int mnr; if (altq_fetched) return; @@ -1315,7 +1316,7 @@ static struct _s_x ext6hdrcodes[] = { }; /* fills command for the extension header filtering */ -int +static int fill_ext6hdr( ipfw_insn *cmd, char *av) { int tok; @@ -1371,7 +1372,7 @@ fill_ext6hdr( ipfw_insn *cmd, char *av) return 1; } -void +static void print_ext6hdr( ipfw_insn *cmd ) { char sep = ' '; @@ -1432,7 +1433,7 @@ print_ext6hdr( ipfw_insn *cmd ) #define HAVE_IP (HAVE_PROTO | HAVE_SRCIP | HAVE_DSTIP) static void -show_prerequisites(int *flags, int want, int cmd) +show_prerequisites(int *flags, int want, int cmd __unused) { if (comment_only) return; @@ -1440,14 +1441,14 @@ show_prerequisites(int *flags, int want, *flags |= HAVE_OPTIONS; if ( !(*flags & HAVE_OPTIONS)) { - if ( !(*flags & HAVE_PROTO) && (want & HAVE_PROTO)) + if ( !(*flags & HAVE_PROTO) && (want & HAVE_PROTO)) { if ( (*flags & HAVE_PROTO4)) printf(" ip4"); else if ( (*flags & HAVE_PROTO6)) printf(" ip6"); else printf(" ip"); - + } if ( !(*flags & HAVE_SRCIP) && (want & HAVE_SRCIP)) printf(" from any"); if ( !(*flags & HAVE_DSTIP) && (want & HAVE_DSTIP)) @@ -1462,7 +1463,7 @@ show_ipfw(struct ip_fw *rule, int pcwidt static int twidth = 0; int l; ipfw_insn *cmd, *tagptr = NULL; - char *comment = NULL; /* ptr to comment if we have one */ + const char *comment = NULL; /* ptr to comment if we have one */ int proto = 0; /* default */ int flags = 0; /* prerequisites */ ipfw_insn_log *logptr = NULL; /* set if we find an O_LOG */ @@ -2814,7 +2815,7 @@ fill_ip(ipfw_insn_ip *cmd, char *av) */ char *t = NULL, *p = strpbrk(av, "/:,{"); int masklen; - char md, nd; + char md, nd = '\0'; if (p) { md = *p; @@ -3122,7 +3123,7 @@ fill_ip6(ipfw_insn_ip6 *cmd, char *av) * it's supported lists of flow-id, so in the o.arg1 we store how many * additional flow-id we want to filter, the basic is 1 */ -void +static void fill_flow6( ipfw_insn_u32 *cmd, char *av ) { u_int32_t type; /* Current flow number */ @@ -3155,9 +3156,8 @@ add_srcip6(ipfw_insn *cmd, char *av) { fill_ip6((ipfw_insn_ip6 *)cmd, av); - if (F_LEN(cmd) == 0) /* any */ - ; - if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn)) { /* "me" */ + if (F_LEN(cmd) == 0) { /* any */ + } else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn)) { /* "me" */ cmd->opcode = O_IP6_SRC_ME; } else if (F_LEN(cmd) == (F_INSN_SIZE(struct in6_addr) + F_INSN_SIZE(ipfw_insn))) { @@ -3174,9 +3174,8 @@ add_dstip6(ipfw_insn *cmd, char *av) { fill_ip6((ipfw_insn_ip6 *)cmd, av); - if (F_LEN(cmd) == 0) /* any */ - ; - if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn)) { /* "me" */ + if (F_LEN(cmd) == 0) { /* any */ + } else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn)) { /* "me" */ cmd->opcode = O_IP6_DST_ME; } else if (F_LEN(cmd) == (F_INSN_SIZE(struct in6_addr) + F_INSN_SIZE(ipfw_insn))) { @@ -3859,7 +3858,8 @@ static void show_nat(int ac, char **av); static void -print_nat_config(char *buf) { +print_nat_config(unsigned char *buf) +{ struct cfg_nat *n; int i, cnt, flag, off; struct cfg_redir *t; @@ -4227,7 +4227,7 @@ config_pipe(int ac, char **av) "flow_id mask must be 20 bit"); *p20 = (uint32_t)a; } else if (pa6 != NULL) { - if (a < 0 || a > 128) + if (a > 128) errx(EX_DATAERR, "in6addr invalid mask len"); else From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 18:18:11 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA08B106567D; Tue, 20 Jan 2009 18:18:11 +0000 (UTC) (envelope-from imp@BSDIMP.COM) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 690FA8FC2D; Tue, 20 Jan 2009 18:18:11 +0000 (UTC) (envelope-from imp@BSDIMP.COM) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0KIGMCq001274; Tue, 20 Jan 2009 11:16:22 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Tue, 20 Jan 2009 11:16:57 -0700 (MST) Message-Id: <20090120.111657.2035877114.imp@bsdimp.com> To: gavin@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <1232452445.22840.21.camel@buffy.york.ac.uk> References: <20090119.181124.-1270972755.imp@bsdimp.com> <1232452445.22840.21.camel@buffy.york.ac.uk> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: sobomax@FreeBSD.org, src-committers@FreeBSD.org, svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, svn-src-stable-7@FreeBSD.org, rwatson@FreeBSD.org Subject: Re: svn commit: r187434 - stable/7/sys/amd64/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 18:18:13 -0000 In message: <1232452445.22840.21.camel@buffy.york.ac.uk> Gavin Atkinson writes: : On Mon, 2009-01-19 at 18:11 -0700, M. Warner Losh wrote: : > In message: : > Robert Watson writes: : > : : > : On Mon, 19 Jan 2009, Maxim Sobolev wrote: : > : : > : > Author: sobomax : > : > Date: Mon Jan 19 15:36:25 2009 : > : > New Revision: 187434 : > : > URL: http://svn.freebsd.org/changeset/base/187434 : > : > : > : > Log: : > : > MFC: take NTFS option out to match i386 GENERIC. : > : : > : Are you going to modify UPDATING to say that "options NTFS" will now be : > : required where it wasn't previously on amd64? Also, insta-MFC's are generally : > : a bad idea, even for changes believed harmless, as they often have unexpected : > : side effects. : > : > Especially since NTFS works very well in 6.x and I think in 7.x. It : > is only in -current that there are issues exposed by other work... : : Do you know which other work exposed these issues? Or is it broken but : nobody knows why? : : If the cause is known, this might make a good "junior kernel hacker" : task, or whatever that page is called now, especially given other file : systems have been changed and may serve as example code. I just know it works for me, and has been the most reliable file system in the face of errors in the device that I've had to interact with in the tree. You'd likely have to go read the PR database to understand when/where it fails for people. Warner From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 19:02:00 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 183131065674; Tue, 20 Jan 2009 19:02:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 027068FC24; Tue, 20 Jan 2009 19:02:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KJ20hK053793; Tue, 20 Jan 2009 19:02:00 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KJ1xTL053784; Tue, 20 Jan 2009 19:01:59 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901201901.n0KJ1xTL053784@svn.freebsd.org> From: John Baldwin Date: Tue, 20 Jan 2009 19:01:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187478 - in stable/7/sys: . conf contrib/pf dev/ath/ath_hal dev/cxgb kern nfsclient ufs/ffs ufs/ufs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 19:02:01 -0000 Author: jhb Date: Tue Jan 20 19:01:59 2009 New Revision: 187478 URL: http://svn.freebsd.org/changeset/base/187478 Log: MFC: Close several races with using shared vnode locks for pathname lookups with UFS and enable shared lookups for UFS. - Change the name cache to fail lookups with EBADF if a directory vnode is recycled while it waits for a lock upgrade. - Rework the locking of the dirhash to use an sx lock and reference count on each hash structure. Using an sx lock instead of a mutex allows the lock to be held across disk I/O closing a number of races when using shared vnode locks that were previously handled by exclusive vnode locks. - Remove the 'i_ino' and 'i_reclen' fields from the i-node. i_ino is now a local variable in ufs_lookup(), and i_reclen is not needed since ufs_dirremove() always has the entire block holding the directory entry in memory when it updates the directory. - 'i_diroff' and 'i_offset' are now local variables in ufs_lookup(). 'i_diroff' is updated after a successful lookup. - Only set i_offset in the parent directory's i-node during a lookup for non-LOOKUP operations. - Remove the LOOKUP_SHARED option. One can set vfs.lookup_shared to 1 in either loader.conf or sysctl.conf instead. The default setting for vfs.lookup_shared is not changed and remains off by default. Modified: stable/7/sys/ (props changed) stable/7/sys/conf/options stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/kern/vfs_cache.c stable/7/sys/kern/vfs_lookup.c stable/7/sys/nfsclient/nfs_vnops.c stable/7/sys/ufs/ffs/ffs_vfsops.c stable/7/sys/ufs/ufs/dirhash.h stable/7/sys/ufs/ufs/inode.h stable/7/sys/ufs/ufs/ufs_dirhash.c stable/7/sys/ufs/ufs/ufs_lookup.c Modified: stable/7/sys/conf/options ============================================================================== --- stable/7/sys/conf/options Tue Jan 20 18:16:31 2009 (r187477) +++ stable/7/sys/conf/options Tue Jan 20 19:01:59 2009 (r187478) @@ -741,9 +741,6 @@ NI4BTEL opt_i4b.h #XXXBZ#NI4BING opt_i4b.h #XXXBZ#NI4BISPPP opt_i4b.h -# VFS options -LOOKUP_SHARED opt_vfs.h - # HWPMC options HWPMC_HOOKS Modified: stable/7/sys/kern/vfs_cache.c ============================================================================== --- stable/7/sys/kern/vfs_cache.c Tue Jan 20 18:16:31 2009 (r187477) +++ stable/7/sys/kern/vfs_cache.c Tue Jan 20 19:01:59 2009 (r187478) @@ -300,7 +300,9 @@ cache_zap(ncp) * succeeds, the vnode is returned in *vpp, and a status of -1 is * returned. If the lookup determines that the name does not exist * (negative cacheing), a status of ENOENT is returned. If the lookup - * fails, a status of zero is returned. + * fails, a status of zero is returned. If the directory vnode is + * recycled out from under us due to a forced unmount, a status of + * EBADF is returned. * * vpp is locked and ref'd on return. If we're looking up DOTDOT, dvp is * unlocked. If we're looking up . an extra ref is taken, but the lock is @@ -425,11 +427,19 @@ success: * When we lookup "." we still can be asked to lock it * differently... */ - ltype = cnp->cn_lkflags & (LK_SHARED | LK_EXCLUSIVE); - if (ltype == VOP_ISLOCKED(*vpp, td)) - return (-1); - else if (ltype == LK_EXCLUSIVE) - vn_lock(*vpp, LK_UPGRADE | LK_RETRY, td); + ltype = cnp->cn_lkflags & LK_TYPE_MASK; + if (ltype != VOP_ISLOCKED(*vpp, td)) { + if (ltype == LK_EXCLUSIVE) { + vn_lock(*vpp, LK_UPGRADE | LK_RETRY, td); + if ((*vpp)->v_iflag & VI_DOOMED) { + /* forced unmount */ + vrele(*vpp); + *vpp = NULL; + return (EBADF); + } + } else + vn_lock(*vpp, LK_DOWNGRADE | LK_RETRY, td); + } return (-1); } ltype = 0; /* silence gcc warning */ @@ -442,12 +452,14 @@ success: error = vget(*vpp, cnp->cn_lkflags | LK_INTERLOCK, td); if (cnp->cn_flags & ISDOTDOT) vn_lock(dvp, ltype | LK_RETRY, td); - if ((cnp->cn_flags & ISLASTCN) && (cnp->cn_lkflags & LK_EXCLUSIVE)) - ASSERT_VOP_ELOCKED(*vpp, "cache_lookup"); if (error) { *vpp = NULL; goto retry; } + if ((cnp->cn_flags & ISLASTCN) && + (cnp->cn_lkflags & LK_TYPE_MASK) == LK_EXCLUSIVE) { + ASSERT_VOP_ELOCKED(*vpp, "cache_lookup"); + } return (-1); } @@ -663,9 +675,9 @@ vfs_cache_lookup(ap) error = cache_lookup(dvp, vpp, cnp); if (error == 0) return (VOP_CACHEDLOOKUP(dvp, vpp, cnp)); - if (error == ENOENT) - return (error); - return (0); + if (error == -1) + return (0); + return (error); } Modified: stable/7/sys/kern/vfs_lookup.c ============================================================================== --- stable/7/sys/kern/vfs_lookup.c Tue Jan 20 18:16:31 2009 (r187477) +++ stable/7/sys/kern/vfs_lookup.c Tue Jan 20 19:01:59 2009 (r187478) @@ -39,7 +39,6 @@ __FBSDID("$FreeBSD$"); #include "opt_ktrace.h" #include "opt_mac.h" -#include "opt_vfs.h" #include #include @@ -88,13 +87,10 @@ nameiinit(void *dummy __unused) } SYSINIT(vfs, SI_SUB_VFS, SI_ORDER_SECOND, nameiinit, NULL); -#ifdef LOOKUP_SHARED -static int lookup_shared = 1; -#else static int lookup_shared = 0; -#endif SYSCTL_INT(_vfs, OID_AUTO, lookup_shared, CTLFLAG_RW, &lookup_shared, 0, "Enables/Disables shared locks for path name translation"); +TUNABLE_INT("vfs.lookup_shared", &lookup_shared); /* * Convert a pathname into a pointer to a locked vnode. Modified: stable/7/sys/nfsclient/nfs_vnops.c ============================================================================== --- stable/7/sys/nfsclient/nfs_vnops.c Tue Jan 20 18:16:31 2009 (r187477) +++ stable/7/sys/nfsclient/nfs_vnops.c Tue Jan 20 19:01:59 2009 (r187478) @@ -868,7 +868,10 @@ nfs_lookup(struct vop_lookup_args *ap) *vpp = NULLVP; return (error); } - if ((error = cache_lookup(dvp, vpp, cnp)) && error != ENOENT) { + error = cache_lookup(dvp, vpp, cnp); + if (error > 0 && error != ENOENT) + return (error); + if (error == -1) { struct vattr vattr; newvp = *vpp; Modified: stable/7/sys/ufs/ffs/ffs_vfsops.c ============================================================================== --- stable/7/sys/ufs/ffs/ffs_vfsops.c Tue Jan 20 18:16:31 2009 (r187477) +++ stable/7/sys/ufs/ffs/ffs_vfsops.c Tue Jan 20 19:01:59 2009 (r187478) @@ -852,7 +852,7 @@ ffs_mountfs(devvp, mp, td) * Initialize filesystem stat information in mount struct. */ MNT_ILOCK(mp); - mp->mnt_kern_flag |= MNTK_MPSAFE; + mp->mnt_kern_flag |= MNTK_MPSAFE | MNTK_LOOKUP_SHARED; MNT_IUNLOCK(mp); #ifdef UFS_EXTATTR #ifdef UFS_EXTATTR_AUTOSTART Modified: stable/7/sys/ufs/ufs/dirhash.h ============================================================================== --- stable/7/sys/ufs/ufs/dirhash.h Tue Jan 20 18:16:31 2009 (r187477) +++ stable/7/sys/ufs/ufs/dirhash.h Tue Jan 20 19:01:59 2009 (r187478) @@ -28,6 +28,9 @@ #ifndef _UFS_UFS_DIRHASH_H_ #define _UFS_UFS_DIRHASH_H_ +#include +#include + /* * For fast operations on large directories, we maintain a hash * that maps the file name to the offset of the directory entry within @@ -80,12 +83,14 @@ ((dh)->dh_hash[(slot) >> DH_BLKOFFSHIFT][(slot) & DH_BLKOFFMASK]) struct dirhash { - struct mtx dh_mtx; /* protects all fields except dh_list */ + struct sx dh_lock; /* protects all fields except list & score */ + int dh_refcount; doff_t **dh_hash; /* the hash array (2-level) */ int dh_narrays; /* number of entries in dh_hash */ int dh_hlen; /* total slots in the 2-level hash array */ int dh_hused; /* entries in use */ + int dh_memreq; /* Memory used. */ /* Free space statistics. XXX assumes DIRBLKSIZ is 512. */ u_int8_t *dh_blkfree; /* free DIRALIGN words in each dir block */ Modified: stable/7/sys/ufs/ufs/inode.h ============================================================================== --- stable/7/sys/ufs/ufs/inode.h Tue Jan 20 18:16:31 2009 (r187477) +++ stable/7/sys/ufs/ufs/inode.h Tue Jan 20 19:01:59 2009 (r187478) @@ -82,8 +82,6 @@ struct inode { doff_t i_endoff; /* End of useful stuff in directory. */ doff_t i_diroff; /* Offset in dir, where we found last entry. */ doff_t i_offset; /* Offset of free space in directory. */ - ino_t i_ino; /* Inode number of found directory. */ - u_int32_t i_reclen; /* Size of found directory entry. */ union { struct dirhash *dirhash; /* Hashing for large directories. */ Modified: stable/7/sys/ufs/ufs/ufs_dirhash.c ============================================================================== --- stable/7/sys/ufs/ufs/ufs_dirhash.c Tue Jan 20 18:16:31 2009 (r187477) +++ stable/7/sys/ufs/ufs/ufs_dirhash.c Tue Jan 20 19:01:59 2009 (r187478) @@ -46,7 +46,9 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include +#include #include #include @@ -88,15 +90,16 @@ static int ufsdirhash_findslot(struct di doff_t offset); static doff_t ufsdirhash_getprev(struct direct *dp, doff_t offset); static int ufsdirhash_recycle(int wanted); +static void ufsdirhash_free_locked(struct inode *ip); static uma_zone_t ufsdirhash_zone; #define DIRHASHLIST_LOCK() mtx_lock(&ufsdirhash_mtx) #define DIRHASHLIST_UNLOCK() mtx_unlock(&ufsdirhash_mtx) -#define DIRHASH_LOCK(dh) mtx_lock(&(dh)->dh_mtx) -#define DIRHASH_UNLOCK(dh) mtx_unlock(&(dh)->dh_mtx) #define DIRHASH_BLKALLOC_WAITOK() uma_zalloc(ufsdirhash_zone, M_WAITOK) #define DIRHASH_BLKFREE(ptr) uma_zfree(ufsdirhash_zone, (ptr)) +#define DIRHASH_ASSERT_LOCKED(dh) \ + sx_assert(&(dh)->dh_lock, SA_LOCKED) /* Dirhash list; recently-used entries are near the tail. */ static TAILQ_HEAD(, dirhash) ufsdirhash_list; @@ -105,14 +108,199 @@ static TAILQ_HEAD(, dirhash) ufsdirhash_ static struct mtx ufsdirhash_mtx; /* - * Locking order: - * ufsdirhash_mtx - * dh_mtx + * Locking: * - * The dh_mtx mutex should be acquired either via the inode lock, or via - * ufsdirhash_mtx. Only the owner of the inode may free the associated - * dirhash, but anything can steal its memory and set dh_hash to NULL. + * The relationship between inode and dirhash is protected either by an + * exclusive vnode lock or the vnode interlock where a shared vnode lock + * may be used. The dirhash_mtx is acquired after the dirhash lock. To + * handle teardown races, code wishing to lock the dirhash for an inode + * when using a shared vnode lock must obtain a private reference on the + * dirhash while holding the vnode interlock. They can drop it once they + * have obtained the dirhash lock and verified that the dirhash wasn't + * recycled while they waited for the dirhash lock. + * + * ufsdirhash_build() acquires a shared lock on the dirhash when it is + * successful. This lock is released after a call to ufsdirhash_lookup(). + * + * Functions requiring exclusive access use ufsdirhash_acquire() which may + * free a dirhash structure that was recycled by ufsdirhash_recycle(). + * + * The dirhash lock may be held across io operations. + */ + +static void +ufsdirhash_hold(struct dirhash *dh) +{ + + refcount_acquire(&dh->dh_refcount); +} + +static void +ufsdirhash_drop(struct dirhash *dh) +{ + + if (refcount_release(&dh->dh_refcount)) { + sx_destroy(&dh->dh_lock); + free(dh, M_DIRHASH); + } +} + +/* + * Release the lock on a dirhash. + */ +static void +ufsdirhash_release(struct dirhash *dh) +{ + + sx_unlock(&dh->dh_lock); +} + +/* + * Either acquire an existing hash locked shared or create a new hash and + * return it exclusively locked. May return NULL if the allocation fails. + * + * The vnode interlock is used to protect the i_dirhash pointer from + * simultaneous access while only a shared vnode lock is held. + */ +static struct dirhash * +ufsdirhash_create(struct inode *ip) +{ + struct dirhash *ndh; + struct dirhash *dh; + struct vnode *vp; + int error; + + error = 0; + ndh = dh = NULL; + vp = ip->i_vnode; + for (;;) { + /* Racy check for i_dirhash to prefetch an dirhash structure. */ + if (ip->i_dirhash == NULL && ndh == NULL) { + MALLOC(ndh, struct dirhash *, sizeof *dh, M_DIRHASH, + M_NOWAIT | M_ZERO); + if (ndh == NULL) + return (NULL); + refcount_init(&ndh->dh_refcount, 1); + sx_init(&ndh->dh_lock, "dirhash"); + sx_xlock(&ndh->dh_lock); + } + /* + * Check i_dirhash. If it's NULL just try to use a + * preallocated structure. If none exists loop and try again. + */ + VI_LOCK(vp); + dh = ip->i_dirhash; + if (dh == NULL) { + ip->i_dirhash = ndh; + VI_UNLOCK(vp); + if (ndh == NULL) + continue; + return (ndh); + } + ufsdirhash_hold(dh); + VI_UNLOCK(vp); + + /* Acquire a shared lock on existing hashes. */ + sx_slock(&dh->dh_lock); + + /* The hash could've been recycled while we were waiting. */ + VI_LOCK(vp); + if (ip->i_dirhash != dh) { + VI_UNLOCK(vp); + ufsdirhash_release(dh); + ufsdirhash_drop(dh); + continue; + } + VI_UNLOCK(vp); + ufsdirhash_drop(dh); + + /* If the hash is still valid we've succeeded. */ + if (dh->dh_hash != NULL) + break; + /* + * If the hash is NULL it has been recycled. Try to upgrade + * so we can recreate it. If we fail the upgrade, drop our + * lock and try again. + */ + if (sx_try_upgrade(&dh->dh_lock)) + break; + sx_sunlock(&dh->dh_lock); + } + /* Free the preallocated structure if it was not necessary. */ + if (ndh) { + ufsdirhash_release(ndh); + ufsdirhash_drop(ndh); + } + return (dh); +} + +/* + * Acquire an exclusive lock on an existing hash. Requires an exclusive + * vnode lock to protect the i_dirhash pointer. hashes that have been + * recycled are reclaimed here and NULL is returned. + */ +static struct dirhash * +ufsdirhash_acquire(struct inode *ip) +{ + struct dirhash *dh; + struct vnode *vp; + + ASSERT_VOP_ELOCKED(ip->i_vnode, __FUNCTION__); + + vp = ip->i_vnode; + dh = ip->i_dirhash; + if (dh == NULL) + return (NULL); + sx_xlock(&dh->dh_lock); + if (dh->dh_hash != NULL) + return (dh); + ufsdirhash_free_locked(ip); + return (NULL); +} + +/* + * Acquire exclusively and free the hash pointed to by ip. Works with a + * shared or exclusive vnode lock. */ +void +ufsdirhash_free(struct inode *ip) +{ + struct dirhash *dh; + struct vnode *vp; + + vp = ip->i_vnode; + for (;;) { + /* Grab a reference on this inode's dirhash if it has one. */ + VI_LOCK(vp); + dh = ip->i_dirhash; + if (dh == NULL) { + VI_UNLOCK(vp); + return; + } + ufsdirhash_hold(dh); + VI_UNLOCK(vp); + + /* Exclusively lock the dirhash. */ + sx_xlock(&dh->dh_lock); + + /* If this dirhash still belongs to this inode, then free it. */ + VI_LOCK(vp); + if (ip->i_dirhash == dh) { + VI_UNLOCK(vp); + ufsdirhash_drop(dh); + break; + } + VI_UNLOCK(vp); + + /* + * This inode's dirhash has changed while we were + * waiting for the dirhash lock, so try again. + */ + ufsdirhash_release(dh); + ufsdirhash_drop(dh); + } + ufsdirhash_free_locked(ip); +} /* * Attempt to build up a hash table for the directory contents in @@ -128,27 +316,23 @@ ufsdirhash_build(struct inode *ip) doff_t bmask, pos; int dirblocks, i, j, memreqd, nblocks, narrays, nslots, slot; - /* Check if we can/should use dirhash. */ - if (ip->i_dirhash == NULL) { - if (ip->i_size < ufs_mindirhashsize || OFSFMT(ip->i_vnode)) + /* Take care of a decreased sysctl value. */ + while (ufs_dirhashmem > ufs_dirhashmaxmem) + if (ufsdirhash_recycle(0) != 0) return (-1); - } else { - /* Hash exists, but sysctls could have changed. */ - if (ip->i_size < ufs_mindirhashsize || - ufs_dirhashmem > ufs_dirhashmaxmem) { + + /* Check if we can/should use dirhash. */ + if (ip->i_size < ufs_mindirhashsize || OFSFMT(ip->i_vnode) || + ip->i_effnlink == 0) { + if (ip->i_dirhash) ufsdirhash_free(ip); - return (-1); - } - /* Check if hash exists and is intact (note: unlocked read). */ - if (ip->i_dirhash->dh_hash != NULL) - return (0); - /* Free the old, recycled hash and build a new one. */ - ufsdirhash_free(ip); + return (-1); } - - /* Don't hash removed directories. */ - if (ip->i_effnlink == 0) + dh = ufsdirhash_create(ip); + if (dh == NULL) return (-1); + if (dh->dh_hash != NULL) + return (0); vp = ip->i_vnode; /* Allocate 50% more entries than this dir size could ever need. */ @@ -159,7 +343,6 @@ ufsdirhash_build(struct inode *ip) nslots = narrays * DH_NBLKOFF; dirblocks = howmany(ip->i_size, DIRBLKSIZ); nblocks = (dirblocks * 3 + 1) / 2; - memreqd = sizeof(*dh) + narrays * sizeof(*dh->dh_hash) + narrays * DH_NBLKOFF * sizeof(**dh->dh_hash) + nblocks * sizeof(*dh->dh_blkfree); @@ -167,33 +350,40 @@ ufsdirhash_build(struct inode *ip) if (memreqd + ufs_dirhashmem > ufs_dirhashmaxmem) { DIRHASHLIST_UNLOCK(); if (memreqd > ufs_dirhashmaxmem / 2) - return (-1); - + goto fail; /* Try to free some space. */ if (ufsdirhash_recycle(memreqd) != 0) - return (-1); + goto fail; /* Enough was freed, and list has been locked. */ } ufs_dirhashmem += memreqd; DIRHASHLIST_UNLOCK(); + /* Initialise the hash table and block statistics. */ + dh->dh_memreq = memreqd; + dh->dh_narrays = narrays; + dh->dh_hlen = nslots; + dh->dh_nblk = nblocks; + dh->dh_dirblks = dirblocks; + for (i = 0; i < DH_NFSTATS; i++) + dh->dh_firstfree[i] = -1; + dh->dh_firstfree[DH_NFSTATS] = 0; + dh->dh_hused = 0; + dh->dh_seqopt = 0; + dh->dh_seqoff = 0; + dh->dh_score = DH_SCOREINIT; + /* * Use non-blocking mallocs so that we will revert to a linear * lookup on failure rather than potentially blocking forever. */ - MALLOC(dh, struct dirhash *, sizeof *dh, M_DIRHASH, M_NOWAIT | M_ZERO); - if (dh == NULL) { - DIRHASHLIST_LOCK(); - ufs_dirhashmem -= memreqd; - DIRHASHLIST_UNLOCK(); - return (-1); - } - mtx_init(&dh->dh_mtx, "dirhash", NULL, MTX_DEF); MALLOC(dh->dh_hash, doff_t **, narrays * sizeof(dh->dh_hash[0]), M_DIRHASH, M_NOWAIT | M_ZERO); + if (dh->dh_hash == NULL) + goto fail; MALLOC(dh->dh_blkfree, u_int8_t *, nblocks * sizeof(dh->dh_blkfree[0]), M_DIRHASH, M_NOWAIT); - if (dh->dh_hash == NULL || dh->dh_blkfree == NULL) + if (dh->dh_blkfree == NULL) goto fail; for (i = 0; i < narrays; i++) { if ((dh->dh_hash[i] = DIRHASH_BLKALLOC_WAITOK()) == NULL) @@ -201,22 +391,8 @@ ufsdirhash_build(struct inode *ip) for (j = 0; j < DH_NBLKOFF; j++) dh->dh_hash[i][j] = DIRHASH_EMPTY; } - - /* Initialise the hash table and block statistics. */ - dh->dh_narrays = narrays; - dh->dh_hlen = nslots; - dh->dh_nblk = nblocks; - dh->dh_dirblks = dirblocks; for (i = 0; i < dirblocks; i++) dh->dh_blkfree[i] = DIRBLKSIZ / DIRALIGN; - for (i = 0; i < DH_NFSTATS; i++) - dh->dh_firstfree[i] = -1; - dh->dh_firstfree[DH_NFSTATS] = 0; - dh->dh_seqopt = 0; - dh->dh_seqoff = 0; - dh->dh_score = DH_SCOREINIT; - ip->i_dirhash = dh; - bmask = VFSTOUFS(vp->v_mount)->um_mountp->mnt_stat.f_iosize - 1; pos = 0; while (pos < ip->i_size) { @@ -254,63 +430,70 @@ ufsdirhash_build(struct inode *ip) TAILQ_INSERT_TAIL(&ufsdirhash_list, dh, dh_list); dh->dh_onlist = 1; DIRHASHLIST_UNLOCK(); + sx_downgrade(&dh->dh_lock); return (0); fail: - if (dh->dh_hash != NULL) { - for (i = 0; i < narrays; i++) - if (dh->dh_hash[i] != NULL) - DIRHASH_BLKFREE(dh->dh_hash[i]); - FREE(dh->dh_hash, M_DIRHASH); - } - if (dh->dh_blkfree != NULL) - FREE(dh->dh_blkfree, M_DIRHASH); - mtx_destroy(&dh->dh_mtx); - FREE(dh, M_DIRHASH); - ip->i_dirhash = NULL; - DIRHASHLIST_LOCK(); - ufs_dirhashmem -= memreqd; - DIRHASHLIST_UNLOCK(); + ufsdirhash_free_locked(ip); return (-1); } /* * Free any hash table associated with inode 'ip'. */ -void -ufsdirhash_free(struct inode *ip) +static void +ufsdirhash_free_locked(struct inode *ip) { struct dirhash *dh; - int i, mem; + struct vnode *vp; + int i; - if ((dh = ip->i_dirhash) == NULL) - return; + DIRHASH_ASSERT_LOCKED(ip->i_dirhash); + + /* + * Clear the pointer in the inode to prevent new threads from + * finding the dead structure. + */ + vp = ip->i_vnode; + VI_LOCK(vp); + dh = ip->i_dirhash; + ip->i_dirhash = NULL; + VI_UNLOCK(vp); + + /* + * Remove the hash from the list since we are going to free its + * memory. + */ DIRHASHLIST_LOCK(); - DIRHASH_LOCK(dh); if (dh->dh_onlist) TAILQ_REMOVE(&ufsdirhash_list, dh, dh_list); - DIRHASH_UNLOCK(dh); + ufs_dirhashmem -= dh->dh_memreq; DIRHASHLIST_UNLOCK(); - /* The dirhash pointed to by 'dh' is exclusively ours now. */ + /* + * At this point, any waiters for the lock should hold their + * own reference on the dirhash structure. They will drop + * that reference once they grab the vnode interlock and see + * that ip->i_dirhash is NULL. + */ + sx_xunlock(&dh->dh_lock); - mem = sizeof(*dh); + /* + * Handle partially recycled as well as fully constructed hashes. + */ if (dh->dh_hash != NULL) { for (i = 0; i < dh->dh_narrays; i++) - DIRHASH_BLKFREE(dh->dh_hash[i]); + if (dh->dh_hash[i] != NULL) + DIRHASH_BLKFREE(dh->dh_hash[i]); FREE(dh->dh_hash, M_DIRHASH); - FREE(dh->dh_blkfree, M_DIRHASH); - mem += dh->dh_narrays * sizeof(*dh->dh_hash) + - dh->dh_narrays * DH_NBLKOFF * sizeof(**dh->dh_hash) + - dh->dh_nblk * sizeof(*dh->dh_blkfree); + if (dh->dh_blkfree != NULL) + FREE(dh->dh_blkfree, M_DIRHASH); } - mtx_destroy(&dh->dh_mtx); - FREE(dh, M_DIRHASH); - ip->i_dirhash = NULL; - DIRHASHLIST_LOCK(); - ufs_dirhashmem -= mem; - DIRHASHLIST_UNLOCK(); + /* + * Drop the inode's reference to the data structure. + */ + ufsdirhash_drop(dh); } /* @@ -323,6 +506,8 @@ ufsdirhash_free(struct inode *ip) * prevoffp is non-NULL, the offset of the previous entry within * the DIRBLKSIZ-sized block is stored in *prevoffp (if the entry * is the first in a block, the start of the block is used). + * + * Must be called with the hash locked. Returns with the hash unlocked. */ int ufsdirhash_lookup(struct inode *ip, char *name, int namelen, doff_t *offp, @@ -334,48 +519,36 @@ ufsdirhash_lookup(struct inode *ip, char struct buf *bp; doff_t blkoff, bmask, offset, prevoff; int i, slot; + int error; - if ((dh = ip->i_dirhash) == NULL) - return (EJUSTRETURN); + dh = ip->i_dirhash; + KASSERT(dh != NULL && dh->dh_hash != NULL, + ("ufsdirhash_lookup: Invalid dirhash %p\n", dh)); + DIRHASH_ASSERT_LOCKED(dh); /* * Move this dirhash towards the end of the list if it has a - * score higher than the next entry, and acquire the dh_mtx. - * Optimise the case where it's already the last by performing - * an unlocked read of the TAILQ_NEXT pointer. - * - * In both cases, end up holding just dh_mtx. + * score higher than the next entry, and acquire the dh_lock. */ + DIRHASHLIST_LOCK(); if (TAILQ_NEXT(dh, dh_list) != NULL) { - DIRHASHLIST_LOCK(); - DIRHASH_LOCK(dh); /* * If the new score will be greater than that of the next * entry, then move this entry past it. With both mutexes * held, dh_next won't go away, but its dh_score could * change; that's not important since it is just a hint. */ - if (dh->dh_hash != NULL && - (dh_next = TAILQ_NEXT(dh, dh_list)) != NULL && + if ((dh_next = TAILQ_NEXT(dh, dh_list)) != NULL && dh->dh_score >= dh_next->dh_score) { KASSERT(dh->dh_onlist, ("dirhash: not on list")); TAILQ_REMOVE(&ufsdirhash_list, dh, dh_list); TAILQ_INSERT_AFTER(&ufsdirhash_list, dh_next, dh, dh_list); } - DIRHASHLIST_UNLOCK(); - } else { - /* Already the last, though that could change as we wait. */ - DIRHASH_LOCK(dh); - } - if (dh->dh_hash == NULL) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); - return (EJUSTRETURN); } - /* Update the score. */ if (dh->dh_score < DH_SCOREMAX) dh->dh_score++; + DIRHASHLIST_UNLOCK(); vp = ip->i_vnode; bmask = VFSTOUFS(vp->v_mount)->um_mountp->mnt_stat.f_iosize - 1; @@ -410,23 +583,23 @@ restart: slot = WRAPINCR(slot, dh->dh_hlen)) { if (offset == DIRHASH_DEL) continue; - DIRHASH_UNLOCK(dh); - if (offset < 0 || offset >= ip->i_size) panic("ufsdirhash_lookup: bad offset in hash array"); if ((offset & ~bmask) != blkoff) { if (bp != NULL) brelse(bp); blkoff = offset & ~bmask; - if (UFS_BLKATOFF(vp, (off_t)blkoff, NULL, &bp) != 0) - return (EJUSTRETURN); + if (UFS_BLKATOFF(vp, (off_t)blkoff, NULL, &bp) != 0) { + error = EJUSTRETURN; + goto fail; + } } dp = (struct direct *)(bp->b_data + (offset & bmask)); if (dp->d_reclen == 0 || dp->d_reclen > DIRBLKSIZ - (offset & (DIRBLKSIZ - 1))) { /* Corrupted directory. */ - brelse(bp); - return (EJUSTRETURN); + error = EJUSTRETURN; + goto fail; } if (dp->d_namlen == namelen && bcmp(dp->d_name, name, namelen) == 0) { @@ -436,8 +609,8 @@ restart: prevoff = ufsdirhash_getprev(dp, offset); if (prevoff == -1) { - brelse(bp); - return (EJUSTRETURN); + error = EJUSTRETURN; + goto fail; } } else prevoff = offset; @@ -448,20 +621,12 @@ restart: if (dh->dh_seqopt == 0 && dh->dh_seqoff == offset) dh->dh_seqopt = 1; dh->dh_seqoff = offset + DIRSIZ(0, dp); - *bpp = bp; *offp = offset; + ufsdirhash_release(dh); return (0); } - DIRHASH_LOCK(dh); - if (dh->dh_hash == NULL) { - DIRHASH_UNLOCK(dh); - if (bp != NULL) - brelse(bp); - ufsdirhash_free(ip); - return (EJUSTRETURN); - } /* * When the name doesn't match in the seqopt case, go back * and search normally. @@ -471,10 +636,12 @@ restart: goto restart; } } - DIRHASH_UNLOCK(dh); + error = ENOENT; +fail: + ufsdirhash_release(dh); if (bp != NULL) brelse(bp); - return (ENOENT); + return (error); } /* @@ -502,29 +669,22 @@ ufsdirhash_findfree(struct inode *ip, in doff_t pos, slotstart; int dirblock, error, freebytes, i; - if ((dh = ip->i_dirhash) == NULL) - return (-1); - DIRHASH_LOCK(dh); - if (dh->dh_hash == NULL) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); - return (-1); - } + dh = ip->i_dirhash; + KASSERT(dh != NULL && dh->dh_hash != NULL, + ("ufsdirhash_findfree: Invalid dirhash %p\n", dh)); + DIRHASH_ASSERT_LOCKED(dh); /* Find a directory block with the desired free space. */ dirblock = -1; for (i = howmany(slotneeded, DIRALIGN); i <= DH_NFSTATS; i++) if ((dirblock = dh->dh_firstfree[i]) != -1) break; - if (dirblock == -1) { - DIRHASH_UNLOCK(dh); + if (dirblock == -1) return (-1); - } KASSERT(dirblock < dh->dh_nblk && dh->dh_blkfree[dirblock] >= howmany(slotneeded, DIRALIGN), ("ufsdirhash_findfree: bad stats")); - DIRHASH_UNLOCK(dh); pos = dirblock * DIRBLKSIZ; error = UFS_BLKATOFF(ip->i_vnode, (off_t)pos, (char **)&dp, &bp); if (error) @@ -582,24 +742,18 @@ ufsdirhash_enduseful(struct inode *ip) struct dirhash *dh; int i; - if ((dh = ip->i_dirhash) == NULL) - return (-1); - DIRHASH_LOCK(dh); - if (dh->dh_hash == NULL) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); - return (-1); - } + dh = ip->i_dirhash; + DIRHASH_ASSERT_LOCKED(dh); + KASSERT(dh != NULL && dh->dh_hash != NULL, + ("ufsdirhash_enduseful: Invalid dirhash %p\n", dh)); - if (dh->dh_blkfree[dh->dh_dirblks - 1] != DIRBLKSIZ / DIRALIGN) { - DIRHASH_UNLOCK(dh); + if (dh->dh_blkfree[dh->dh_dirblks - 1] != DIRBLKSIZ / DIRALIGN) return (-1); - } for (i = dh->dh_dirblks - 1; i >= 0; i--) if (dh->dh_blkfree[i] != DIRBLKSIZ / DIRALIGN) break; - DIRHASH_UNLOCK(dh); + return ((doff_t)(i + 1) * DIRBLKSIZ); } @@ -614,15 +768,9 @@ ufsdirhash_add(struct inode *ip, struct struct dirhash *dh; int slot; - if ((dh = ip->i_dirhash) == NULL) + if ((dh = ufsdirhash_acquire(ip)) == NULL) return; - DIRHASH_LOCK(dh); - if (dh->dh_hash == NULL) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); - return; - } - + KASSERT(offset < dh->dh_dirblks * DIRBLKSIZ, ("ufsdirhash_add: bad offset")); /* @@ -630,8 +778,7 @@ ufsdirhash_add(struct inode *ip, struct * remove the hash entirely and let it be rebuilt later. */ if (dh->dh_hused >= (dh->dh_hlen * 3) / 4) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); + ufsdirhash_free_locked(ip); return; } @@ -645,7 +792,7 @@ ufsdirhash_add(struct inode *ip, struct /* Update the per-block summary info. */ ufsdirhash_adjfree(dh, offset, -DIRSIZ(0, dirp)); - DIRHASH_UNLOCK(dh); + ufsdirhash_release(dh); } /* @@ -659,14 +806,8 @@ ufsdirhash_remove(struct inode *ip, stru struct dirhash *dh; int slot; - if ((dh = ip->i_dirhash) == NULL) - return; - DIRHASH_LOCK(dh); - if (dh->dh_hash == NULL) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); + if ((dh = ufsdirhash_acquire(ip)) == NULL) return; - } KASSERT(offset < dh->dh_dirblks * DIRBLKSIZ, ("ufsdirhash_remove: bad offset")); @@ -678,7 +819,7 @@ ufsdirhash_remove(struct inode *ip, stru /* Update the per-block summary info. */ ufsdirhash_adjfree(dh, offset, DIRSIZ(0, dirp)); - DIRHASH_UNLOCK(dh); + ufsdirhash_release(dh); } /* @@ -692,14 +833,8 @@ ufsdirhash_move(struct inode *ip, struct struct dirhash *dh; int slot; - if ((dh = ip->i_dirhash) == NULL) + if ((dh = ufsdirhash_acquire(ip)) == NULL) return; - DIRHASH_LOCK(dh); - if (dh->dh_hash == NULL) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); - return; - } KASSERT(oldoff < dh->dh_dirblks * DIRBLKSIZ && newoff < dh->dh_dirblks * DIRBLKSIZ, @@ -707,7 +842,7 @@ ufsdirhash_move(struct inode *ip, struct /* Find the entry, and update the offset. */ slot = ufsdirhash_findslot(dh, dirp->d_name, dirp->d_namlen, oldoff); DH_ENTRY(dh, slot) = newoff; - DIRHASH_UNLOCK(dh); + ufsdirhash_release(dh); } /* @@ -720,22 +855,15 @@ ufsdirhash_newblk(struct inode *ip, doff struct dirhash *dh; int block; - if ((dh = ip->i_dirhash) == NULL) - return; - DIRHASH_LOCK(dh); - if (dh->dh_hash == NULL) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); + if ((dh = ufsdirhash_acquire(ip)) == NULL) return; - } KASSERT(offset == dh->dh_dirblks * DIRBLKSIZ, ("ufsdirhash_newblk: bad offset")); block = offset / DIRBLKSIZ; if (block >= dh->dh_nblk) { /* Out of space; must rebuild. */ - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); + ufsdirhash_free_locked(ip); return; } dh->dh_dirblks = block + 1; @@ -744,7 +872,7 @@ ufsdirhash_newblk(struct inode *ip, doff dh->dh_blkfree[block] = DIRBLKSIZ / DIRALIGN; if (dh->dh_firstfree[DH_NFSTATS] == -1) dh->dh_firstfree[DH_NFSTATS] = block; - DIRHASH_UNLOCK(dh); + ufsdirhash_release(dh); } /* @@ -756,14 +884,8 @@ ufsdirhash_dirtrunc(struct inode *ip, do struct dirhash *dh; int block, i; - if ((dh = ip->i_dirhash) == NULL) - return; - DIRHASH_LOCK(dh); - if (dh->dh_hash == NULL) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); + if ((dh = ufsdirhash_acquire(ip)) == NULL) return; - } KASSERT(offset <= dh->dh_dirblks * DIRBLKSIZ, ("ufsdirhash_dirtrunc: bad offset")); @@ -775,8 +897,7 @@ ufsdirhash_dirtrunc(struct inode *ip, do * if necessary. */ if (block < dh->dh_nblk / 8 && dh->dh_narrays > 1) { - DIRHASH_UNLOCK(dh); - ufsdirhash_free(ip); + ufsdirhash_free_locked(ip); return; } @@ -794,7 +915,7 @@ ufsdirhash_dirtrunc(struct inode *ip, do if (dh->dh_firstfree[i] >= block) panic("ufsdirhash_dirtrunc: first free corrupt"); dh->dh_dirblks = block; - DIRHASH_UNLOCK(dh); + ufsdirhash_release(dh); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 19:09:41 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EBB9C106564A; Tue, 20 Jan 2009 19:09:41 +0000 (UTC) (envelope-from das@FreeBSD.ORG) Received: from zim.MIT.EDU (ZIM.MIT.EDU [18.95.3.101]) by mx1.freebsd.org (Postfix) with ESMTP id A8CBE8FC17; Tue, 20 Jan 2009 19:09:41 +0000 (UTC) (envelope-from das@FreeBSD.ORG) Received: from zim.MIT.EDU (localhost [127.0.0.1]) by zim.MIT.EDU (8.14.3/8.14.2) with ESMTP id n0KJB4RU032928; Tue, 20 Jan 2009 14:11:04 -0500 (EST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by zim.MIT.EDU (8.14.3/8.14.2/Submit) id n0KJB40f032927; Tue, 20 Jan 2009 14:11:04 -0500 (EST) (envelope-from das@FreeBSD.ORG) Date: Tue, 20 Jan 2009 14:11:04 -0500 From: David Schultz To: Roman Divacky Message-ID: <20090120191104.GA32825@zim.MIT.EDU> Mail-Followup-To: Roman Divacky , src-committers@FreeBSD.ORG, svn-src-all@FreeBSD.ORG, svn-src-head@FreeBSD.ORG References: <200901201715.n0KHFCfw051198@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200901201715.n0KHFCfw051198@svn.freebsd.org> Cc: svn-src-head@FreeBSD.ORG, svn-src-all@FreeBSD.ORG, src-committers@FreeBSD.ORG Subject: Re: svn commit: r187475 - head/usr.bin/make X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 19:09:42 -0000 On Tue, Jan 20, 2009, Roman Divacky wrote: > Remove inlining of functions that are used mostly in different object files. > This gets rid of gnu89 style inlining. While I think fixing uses of 'inline' in the tree is a great goal, un-inlining accessor functions that compile down to a single machine instruction anyway may not be the best way to approach it. In cases like this, you can just use '__gnu89_inline', or even 'static inline' without causing any bloat. (In this particular case, I doubt that it really matters one way or the other.) From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 19:41:21 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B00D1065670; Tue, 20 Jan 2009 19:41:19 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7ECDC8FC0C; Tue, 20 Jan 2009 19:41:19 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KJfJhe054770; Tue, 20 Jan 2009 19:41:19 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KJfJUc054766; Tue, 20 Jan 2009 19:41:19 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901201941.n0KJfJUc054766@svn.freebsd.org> From: John Baldwin Date: Tue, 20 Jan 2009 19:41:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187480 - in stable/7/sys: . amd64/amd64 amd64/include contrib/pf dev/ath/ath_hal dev/cxgb i386/i386 i386/include X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 19:41:24 -0000 Author: jhb Date: Tue Jan 20 19:41:18 2009 New Revision: 187480 URL: http://svn.freebsd.org/changeset/base/187480 Log: MFC: Stop maintaining pv_list_count for i386 and amd64 since it was obsoleted by Peter's rewrite of the pv entry allocator. To avoid ABI breakage, the field in 'struct mdpage' has not been removed, but it has been renamed to 'pv_unused'. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/pmap.c stable/7/sys/amd64/include/pmap.h stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/i386/pmap.c stable/7/sys/i386/include/pmap.h Modified: stable/7/sys/amd64/amd64/pmap.c ============================================================================== --- stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 19:06:10 2009 (r187479) +++ stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 19:41:18 2009 (r187480) @@ -601,7 +601,6 @@ pmap_page_init(vm_page_t m) { TAILQ_INIT(&m->md.pv_list); - m->md.pv_list_count = 0; } /* @@ -1694,7 +1693,6 @@ pmap_collect(pmap_t locked_pmap, struct TAILQ_REMOVE(&m->md.pv_list, pv, pv_list); if (TAILQ_EMPTY(&m->md.pv_list)) vm_page_flag_clear(m, PG_WRITEABLE); - m->md.pv_list_count--; free_pv_entry(pmap, pv); if (pmap != locked_pmap) PMAP_UNLOCK(pmap); @@ -1842,7 +1840,6 @@ pmap_remove_entry(pmap_t pmap, vm_page_t } KASSERT(pv != NULL, ("pmap_remove_entry: pv not found")); TAILQ_REMOVE(&m->md.pv_list, pv, pv_list); - m->md.pv_list_count--; if (TAILQ_EMPTY(&m->md.pv_list)) vm_page_flag_clear(m, PG_WRITEABLE); free_pv_entry(pmap, pv); @@ -1862,7 +1859,6 @@ pmap_insert_entry(pmap_t pmap, vm_offset pv = get_pv_entry(pmap, FALSE); pv->pv_va = va; TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list); - m->md.pv_list_count++; } /* @@ -1879,7 +1875,6 @@ pmap_try_insert_pv_entry(pmap_t pmap, vm (pv = get_pv_entry(pmap, TRUE)) != NULL) { pv->pv_va = va; TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list); - m->md.pv_list_count++; return (TRUE); } else return (FALSE); @@ -2119,7 +2114,6 @@ pmap_remove_all(vm_page_t m) pmap_invalidate_page(pmap, pv->pv_va); pmap_free_zero_pages(free); TAILQ_REMOVE(&m->md.pv_list, pv, pv_list); - m->md.pv_list_count--; free_pv_entry(pmap, pv); PMAP_UNLOCK(pmap); } @@ -3029,7 +3023,6 @@ pmap_remove_pages(pmap_t pmap) PV_STAT(pv_entry_spare++); pv_entry_count--; pc->pc_map[field] |= bitmask; - m->md.pv_list_count--; TAILQ_REMOVE(&m->md.pv_list, pv, pv_list); if (TAILQ_EMPTY(&m->md.pv_list)) vm_page_flag_clear(m, PG_WRITEABLE); Modified: stable/7/sys/amd64/include/pmap.h ============================================================================== --- stable/7/sys/amd64/include/pmap.h Tue Jan 20 19:06:10 2009 (r187479) +++ stable/7/sys/amd64/include/pmap.h Tue Jan 20 19:41:18 2009 (r187480) @@ -229,7 +229,7 @@ struct pv_entry; struct pv_chunk; struct md_page { - int pv_list_count; + int pv_unused; TAILQ_HEAD(,pv_entry) pv_list; }; Modified: stable/7/sys/i386/i386/pmap.c ============================================================================== --- stable/7/sys/i386/i386/pmap.c Tue Jan 20 19:06:10 2009 (r187479) +++ stable/7/sys/i386/i386/pmap.c Tue Jan 20 19:41:18 2009 (r187480) @@ -525,7 +525,6 @@ pmap_page_init(vm_page_t m) { TAILQ_INIT(&m->md.pv_list); - m->md.pv_list_count = 0; } #ifdef PAE @@ -1763,7 +1762,6 @@ pmap_collect(pmap_t locked_pmap, struct TAILQ_REMOVE(&m->md.pv_list, pv, pv_list); if (TAILQ_EMPTY(&m->md.pv_list)) vm_page_flag_clear(m, PG_WRITEABLE); - m->md.pv_list_count--; free_pv_entry(pmap, pv); if (pmap != locked_pmap) PMAP_UNLOCK(pmap); @@ -1918,7 +1916,6 @@ pmap_remove_entry(pmap_t pmap, vm_page_t } KASSERT(pv != NULL, ("pmap_remove_entry: pv not found")); TAILQ_REMOVE(&m->md.pv_list, pv, pv_list); - m->md.pv_list_count--; if (TAILQ_EMPTY(&m->md.pv_list)) vm_page_flag_clear(m, PG_WRITEABLE); free_pv_entry(pmap, pv); @@ -1938,7 +1935,6 @@ pmap_insert_entry(pmap_t pmap, vm_offset pv = get_pv_entry(pmap, FALSE); pv->pv_va = va; TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list); - m->md.pv_list_count++; } /* @@ -1955,7 +1951,6 @@ pmap_try_insert_pv_entry(pmap_t pmap, vm (pv = get_pv_entry(pmap, TRUE)) != NULL) { pv->pv_va = va; TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list); - m->md.pv_list_count++; return (TRUE); } else return (FALSE); @@ -2173,7 +2168,6 @@ pmap_remove_all(vm_page_t m) pmap_invalidate_page(pmap, pv->pv_va); pmap_free_zero_pages(free); TAILQ_REMOVE(&m->md.pv_list, pv, pv_list); - m->md.pv_list_count--; free_pv_entry(pmap, pv); PMAP_UNLOCK(pmap); } @@ -3114,7 +3108,6 @@ pmap_remove_pages(pmap_t pmap) PV_STAT(pv_entry_spare++); pv_entry_count--; pc->pc_map[field] |= bitmask; - m->md.pv_list_count--; TAILQ_REMOVE(&m->md.pv_list, pv, pv_list); if (TAILQ_EMPTY(&m->md.pv_list)) vm_page_flag_clear(m, PG_WRITEABLE); Modified: stable/7/sys/i386/include/pmap.h ============================================================================== --- stable/7/sys/i386/include/pmap.h Tue Jan 20 19:06:10 2009 (r187479) +++ stable/7/sys/i386/include/pmap.h Tue Jan 20 19:41:18 2009 (r187480) @@ -316,7 +316,7 @@ struct pv_entry; struct pv_chunk; struct md_page { - int pv_list_count; + int pv_unused; TAILQ_HEAD(,pv_entry) pv_list; }; From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 19:43:53 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C1357106566B; Tue, 20 Jan 2009 19:43:53 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 8FF6F8FC18; Tue, 20 Jan 2009 19:43:53 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id 23EC846B38; Tue, 20 Jan 2009 14:43:53 -0500 (EST) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n0KJhaUs026295; Tue, 20 Jan 2009 14:43:47 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: "Antoine Brodin" Date: Tue, 20 Jan 2009 10:29:14 -0500 User-Agent: KMail/1.9.7 References: <200812171957.mBHJvCO2013765@svn.freebsd.org> <9bbcef730812271319g60e190acj4a68ee419edc7277@mail.gmail.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200901201029.14971.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 20 Jan 2009 14:43:47 -0500 (EST) X-Virus-Scanned: ClamAV 0.94.2/8881/Tue Jan 20 09:48:51 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.1 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00, DATE_IN_PAST_03_06 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, ivoras@freebsd.org Subject: Re: svn commit: r186252 - head/sys/kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 19:43:54 -0000 On Saturday 27 December 2008 4:47:45 pm Antoine Brodin wrote: > On Sat, Dec 27, 2008 at 10:19 PM, wrote: > > On 27/12/2008, Antoine Brodin wrote: > >> On Wed, Dec 17, 2008 at 8:57 PM, Ivan Voras wrote: > > > >> Modified: head/sys/kern/subr_param.c > >> [snip] > >>> +enum VM_GUEST { VM_GUEST_NO, VM_GUEST_VM, VM_GUEST_XEN }; > >>> + > >> [snip] > >>> - hz = detect_virtual() ? HZ_VM : HZ; > >>> + hz = vm_guest > VM_GUEST_NO ? HZ_VM : HZ; > >> [snip] > >> > >> Hi Ivan, > >> > >> Could you change VM_GUEST_NO / VM_GUEST_VM / VM_GUEST_XEN to a #define > >> or explicitly initialize them? > >> The magnitude comparison between vm_guest and VM_GUEST_NO looks like > >> gratuitous obfuscation. > > > > I think that the "enum" type is very well defined and its behaviour > > widely known so it is not necessary to break it into #defines. Would > > you be happy if I explicitly initalized the first member of the enum > > to signify its values are important? > > > > enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN }; > > > > I would be happy if you initialized explicitly the 3 values. > You use these values as an index in the vm_guest_sysctl_names array > and you compare them in init_param1() so I think it's better to be > explicit. The definition of enum values is well defined in C. Thus, one should not be explicitly initializing all the values, and using > to compare enum values is perfectly acceptable. -- John Baldwin From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 19:44:05 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 823681065701; Tue, 20 Jan 2009 19:44:05 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 51B098FC0A; Tue, 20 Jan 2009 19:44:05 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id F2F0346B06; Tue, 20 Jan 2009 14:44:04 -0500 (EST) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n0KJhaUu026295; Tue, 20 Jan 2009 14:43:58 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: Nick Hibma Date: Tue, 20 Jan 2009 12:48:47 -0500 User-Agent: KMail/1.9.7 References: <200901181850.n0IIoIIV083424@svn.freebsd.org> In-Reply-To: <200901181850.n0IIoIIV083424@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200901201248.47688.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 20 Jan 2009 14:43:58 -0500 (EST) X-Virus-Scanned: ClamAV 0.94.2/8881/Tue Jan 20 09:48:51 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-7@freebsd.org Subject: Re: svn commit: r187401 - stable/7/sys/dev/ata X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 19:44:06 -0000 On Sunday 18 January 2009 1:50:18 pm Nick Hibma wrote: > Author: n_hibma > Date: Sun Jan 18 18:50:18 2009 > New Revision: 187401 > URL: http://svn.freebsd.org/changeset/base/187401 > > Log: > Speling mistake. > > Modified: > stable/7/sys/dev/ata/ata-all.c > > Modified: stable/7/sys/dev/ata/ata-all.c > ============================================================================== > --- stable/7/sys/dev/ata/ata-all.c Sun Jan 18 18:26:52 2009 (r187400) > +++ stable/7/sys/dev/ata/ata-all.c Sun Jan 18 18:50:18 2009 (r187401) > @@ -127,7 +127,7 @@ ata_attach(device_t dev) > > /* reset the controller HW, the channel and device(s) */ > while (ATA_LOCKING(dev, ATA_LF_LOCK) != ch->unit) > - pause("ataatch", 1); > + pause("attach", 1); > ATA_RESET(dev); > ATA_LOCKING(dev, ATA_LF_UNLOCK); Actually, I suspect this was on purpose and was short for "ata attach". -- John Baldwin From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 19:44:16 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52B06106566B; Tue, 20 Jan 2009 19:44:16 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 22BCD8FC18; Tue, 20 Jan 2009 19:44:16 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id AB36646B3B; Tue, 20 Jan 2009 14:44:15 -0500 (EST) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n0KJhaUw026295; Tue, 20 Jan 2009 14:44:09 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: Patrick Hurrelmann Date: Tue, 20 Jan 2009 13:07:30 -0500 User-Agent: KMail/1.9.7 References: <200901072152.n07Lql7h000807@svn.freebsd.org> <200901151031.42725.jhb@freebsd.org> <20090120104612.2224983f@attini-ws2> In-Reply-To: <20090120104612.2224983f@attini-ws2> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200901201307.30983.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 20 Jan 2009 14:44:09 -0500 (EST) X-Virus-Scanned: ClamAV 0.94.2/8881/Tue Jan 20 09:48:51 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: svn-src-head@freebsd.org, Marius Strobl , src-committers@freebsd.org, svn-src-all@freebsd.org Subject: Re: svn commit: r186878 - head/sys/dev/mpt X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 19:44:17 -0000 On Tuesday 20 January 2009 4:46:12 am Patrick Hurrelmann wrote: > On Thu, 15 Jan 2009 10:31:42 -0500 > John Baldwin wrote: > > > On Wednesday 07 January 2009 4:52:47 pm Marius Strobl wrote: > > > Author: marius > > > Date: Wed Jan 7 21:52:47 2009 > > > New Revision: 186878 > > > URL: http://svn.freebsd.org/changeset/base/186878 > > > > > > Log: > > > Make the whole initiator mode part of mpt(4) endian-clean, > > > specifically SPI controllers now also work in big-endian > > > machines and some conversions relevant for FC and SAS > > > controllers as well as support for ILP32 machines which all > > > were omitted in previous attempts are now also implemented. > > > The IOCTL-interface is intentionally left (and where needed > > > actually changed) to be completely little-endian as otherwise > > > we would have to add conversion code for every possible > > > configuration page to mpt(4), which didn't seem the right > > > thing to do, neither did converting only half of the user- > > > interface to the native byte order. > > > This change was tested on amd64 (SAS+SPI), i386 (SAS) and > > > sparc64 (SAS+SPI). Due to lack of the necessary hardware > > > the target mode code is still left to be made endian-clean. > > > > > > Reviewed by: scottl > > > MFC after: 1 month > > > > If you wish to test the mpt_user interface on a big-endian machine > > you may use //depot/jhb/raid/usr.sbin/mptutil/... > > > > It is likely going to need a lot of sprinkled htole*() and letoh*() > > though. > > Hi John, > > great to hear that! I just checked out mptutil on 7.0 and it works > fine with a bunch of Dell PERC 5iR :) > > Do you mind if i grab the sources and create a port of it? I guess many > people are eagerly waiting to monitor their mpt arrays as stated on > several lists. This would also give mptutil a much greater base of > testers. Actually, I probably want to commit it into HEAD. If you want a monitoring daemon you can look at 'mptd' in the same p4 branch (and 'ard' for monitoring ata-raid volumes). -- John Baldwin From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 19:58:01 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB9C1106566B; Tue, 20 Jan 2009 19:58:01 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B9ECD8FC0C; Tue, 20 Jan 2009 19:58:01 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KJw1sW055126; Tue, 20 Jan 2009 19:58:01 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KJw1vr055125; Tue, 20 Jan 2009 19:58:01 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901201958.n0KJw1vr055125@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 20 Jan 2009 19:58:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187481 - head/sys/dev/re X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 19:58:02 -0000 Author: jkim Date: Tue Jan 20 19:58:01 2009 New Revision: 187481 URL: http://svn.freebsd.org/changeset/base/187481 Log: - Do not read and write RX configuration register multiple times. - Always program RX configuration register from scratch instead of doing read/modify/write. - Rename re_setmulti() to re_set_rxmode() to be reflect reality. - Simplify hash filter logic a little while I am here. Reviewed by: yongari (early version) Modified: head/sys/dev/re/if_re.c Modified: head/sys/dev/re/if_re.c ============================================================================== --- head/sys/dev/re/if_re.c Tue Jan 20 19:41:18 2009 (r187480) +++ head/sys/dev/re/if_re.c Tue Jan 20 19:58:01 2009 (r187481) @@ -266,7 +266,7 @@ static int re_miibus_readreg (device_t, static int re_miibus_writereg (device_t, int, int, int); static void re_miibus_statchg (device_t); -static void re_setmulti (struct rl_softc *); +static void re_set_rxmode (struct rl_softc *); static void re_reset (struct rl_softc *); static void re_setwol (struct rl_softc *); static void re_clrwol (struct rl_softc *); @@ -607,26 +607,23 @@ re_miibus_statchg(device_t dev) } /* - * Program the 64-bit multicast hash filter. + * Set the RX configuration and 64-bit multicast hash filter. */ static void -re_setmulti(struct rl_softc *sc) +re_set_rxmode(struct rl_softc *sc) { struct ifnet *ifp; - int h = 0; - u_int32_t hashes[2] = { 0, 0 }; struct ifmultiaddr *ifma; - u_int32_t rxfilt; - int mcnt = 0; + uint32_t hashes[2] = { 0, 0 }; + uint32_t h, rxfilt; RL_LOCK_ASSERT(sc); ifp = sc->rl_ifp; + rxfilt = RL_RXCFG_CONFIG | RL_RXCFG_RX_INDIV | RL_RXCFG_RX_BROAD; - rxfilt = CSR_READ_4(sc, RL_RXCFG); - rxfilt &= ~(RL_RXCFG_RX_ALLPHYS | RL_RXCFG_RX_MULTI); - if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) { + if (ifp->if_flags & (IFF_ALLMULTI | IFF_PROMISC)) { if (ifp->if_flags & IFF_PROMISC) rxfilt |= RL_RXCFG_RX_ALLPHYS; /* @@ -635,17 +632,10 @@ re_setmulti(struct rl_softc *sc) * promiscuous mode. */ rxfilt |= RL_RXCFG_RX_MULTI; - CSR_WRITE_4(sc, RL_RXCFG, rxfilt); - CSR_WRITE_4(sc, RL_MAR0, 0xFFFFFFFF); - CSR_WRITE_4(sc, RL_MAR4, 0xFFFFFFFF); - return; + hashes[0] = hashes[1] = 0xffffffff; + goto done; } - /* first, zot all the existing hash bits */ - CSR_WRITE_4(sc, RL_MAR0, 0); - CSR_WRITE_4(sc, RL_MAR4, 0); - - /* now program new ones */ IF_ADDR_LOCK(ifp); TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { if (ifma->ifma_addr->sa_family != AF_LINK) @@ -656,31 +646,29 @@ re_setmulti(struct rl_softc *sc) hashes[0] |= (1 << h); else hashes[1] |= (1 << (h - 32)); - mcnt++; } IF_ADDR_UNLOCK(ifp); - if (mcnt) + if (hashes[0] != 0 || hashes[1] != 0) { + /* + * For some unfathomable reason, RealTek decided to + * reverse the order of the multicast hash registers + * in the PCI Express parts. This means we have to + * write the hash pattern in reverse order for those + * devices. + */ + if ((sc->rl_flags & RL_FLAG_INVMAR) != 0) { + h = bswap32(hashes[0]); + hashes[0] = bswap32(hashes[1]); + hashes[1] = h; + } rxfilt |= RL_RXCFG_RX_MULTI; - else - rxfilt &= ~RL_RXCFG_RX_MULTI; + } +done: + CSR_WRITE_4(sc, RL_MAR0, hashes[0]); + CSR_WRITE_4(sc, RL_MAR4, hashes[1]); CSR_WRITE_4(sc, RL_RXCFG, rxfilt); - - /* - * For some unfathomable reason, RealTek decided to reverse - * the order of the multicast hash registers in the PCI Express - * parts. This means we have to write the hash pattern in reverse - * order for those devices. - */ - - if ((sc->rl_flags & RL_FLAG_INVMAR) != 0) { - CSR_WRITE_4(sc, RL_MAR0, bswap32(hashes[1])); - CSR_WRITE_4(sc, RL_MAR4, bswap32(hashes[0])); - } else { - CSR_WRITE_4(sc, RL_MAR0, hashes[0]); - CSR_WRITE_4(sc, RL_MAR4, hashes[1]); - } } static void @@ -2498,7 +2486,6 @@ re_init_locked(struct rl_softc *sc) { struct ifnet *ifp = sc->rl_ifp; struct mii_data *mii; - u_int32_t rxcfg = 0; uint16_t cfg; union { uint32_t align_dummy; @@ -2583,7 +2570,7 @@ re_init_locked(struct rl_softc *sc) CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_TX_ENB|RL_CMD_RX_ENB); /* - * Set the initial TX and RX configuration. + * Set the initial TX configuration. */ if (sc->rl_testmode) { if (sc->rl_type == RL_8169) @@ -2597,32 +2584,10 @@ re_init_locked(struct rl_softc *sc) CSR_WRITE_1(sc, RL_EARLY_TX_THRESH, 16); - CSR_WRITE_4(sc, RL_RXCFG, RL_RXCFG_CONFIG); - - /* Set the individual bit to receive frames for this host only. */ - rxcfg = CSR_READ_4(sc, RL_RXCFG); - rxcfg |= RL_RXCFG_RX_INDIV; - - /* If we want promiscuous mode, set the allframes bit. */ - if (ifp->if_flags & IFF_PROMISC) - rxcfg |= RL_RXCFG_RX_ALLPHYS; - else - rxcfg &= ~RL_RXCFG_RX_ALLPHYS; - CSR_WRITE_4(sc, RL_RXCFG, rxcfg); - - /* - * Set capture broadcast bit to capture broadcast frames. - */ - if (ifp->if_flags & IFF_BROADCAST) - rxcfg |= RL_RXCFG_RX_BROAD; - else - rxcfg &= ~RL_RXCFG_RX_BROAD; - CSR_WRITE_4(sc, RL_RXCFG, rxcfg); - /* - * Program the multicast filter, if necessary. + * Set the initial RX configuration. */ - re_setmulti(sc); + re_set_rxmode(sc); #ifdef DEVICE_POLLING /* @@ -2761,7 +2726,7 @@ re_ioctl(struct ifnet *ifp, u_long comma if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0) { if (((ifp->if_flags ^ sc->rl_if_flags) & (IFF_PROMISC | IFF_ALLMULTI)) != 0) - re_setmulti(sc); + re_set_rxmode(sc); } else re_init_locked(sc); } else { @@ -2774,7 +2739,7 @@ re_ioctl(struct ifnet *ifp, u_long comma case SIOCADDMULTI: case SIOCDELMULTI: RL_LOCK(sc); - re_setmulti(sc); + re_set_rxmode(sc); RL_UNLOCK(sc); break; case SIOCGIFMEDIA: From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 20:04:10 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99479106567D; Tue, 20 Jan 2009 20:04:10 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6D07E8FC17; Tue, 20 Jan 2009 20:04:10 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KK4AlW055303; Tue, 20 Jan 2009 20:04:10 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KK4AP8055301; Tue, 20 Jan 2009 20:04:10 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901202004.n0KK4AP8055301@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 20 Jan 2009 20:04:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187482 - in head/sys: dev/re pci X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 20:04:11 -0000 Author: jkim Date: Tue Jan 20 20:04:09 2009 New Revision: 187482 URL: http://svn.freebsd.org/changeset/base/187482 Log: Retire RL_FLAG_INVMAR bit to match its comment and reality. Modified: head/sys/dev/re/if_re.c head/sys/pci/if_rlreg.h Modified: head/sys/dev/re/if_re.c ============================================================================== --- head/sys/dev/re/if_re.c Tue Jan 20 19:58:01 2009 (r187481) +++ head/sys/dev/re/if_re.c Tue Jan 20 20:04:09 2009 (r187482) @@ -657,7 +657,7 @@ re_set_rxmode(struct rl_softc *sc) * write the hash pattern in reverse order for those * devices. */ - if ((sc->rl_flags & RL_FLAG_INVMAR) != 0) { + if ((sc->rl_flags & RL_FLAG_PCIE) != 0) { h = bswap32(hashes[0]); hashes[0] = bswap32(hashes[1]); hashes[1] = h; @@ -1234,22 +1234,21 @@ re_attach(device_t dev) break; case RL_HWREV_8100E: case RL_HWREV_8101E: - sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_INVMAR | - RL_FLAG_PHYWAKE | RL_FLAG_FASTETHER; + sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_PHYWAKE | + RL_FLAG_FASTETHER; break; case RL_HWREV_8102E: case RL_HWREV_8102EL: - sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_INVMAR | - RL_FLAG_PHYWAKE | RL_FLAG_PAR | RL_FLAG_DESCV2 | - RL_FLAG_MACSTAT | RL_FLAG_FASTETHER | RL_FLAG_CMDSTOP; + sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_PHYWAKE | + RL_FLAG_PAR | RL_FLAG_DESCV2 | RL_FLAG_MACSTAT | + RL_FLAG_FASTETHER | RL_FLAG_CMDSTOP; break; case RL_HWREV_8168_SPIN1: case RL_HWREV_8168_SPIN2: sc->rl_flags |= RL_FLAG_WOLRXENB; /* FALLTHROUGH */ case RL_HWREV_8168_SPIN3: - sc->rl_flags |= RL_FLAG_INVMAR | RL_FLAG_PHYWAKE | - RL_FLAG_MACSTAT; + sc->rl_flags |= RL_FLAG_PHYWAKE | RL_FLAG_MACSTAT; break; case RL_HWREV_8168C_SPIN2: sc->rl_flags |= RL_FLAG_MACSLEEP; @@ -1260,9 +1259,8 @@ re_attach(device_t dev) /* FALLTHROUGH */ case RL_HWREV_8168CP: case RL_HWREV_8168D: - sc->rl_flags |= RL_FLAG_INVMAR | RL_FLAG_PHYWAKE | - RL_FLAG_PAR | RL_FLAG_DESCV2 | RL_FLAG_MACSTAT | - RL_FLAG_CMDSTOP; + sc->rl_flags |= RL_FLAG_PHYWAKE | RL_FLAG_PAR | + RL_FLAG_DESCV2 | RL_FLAG_MACSTAT | RL_FLAG_CMDSTOP; /* * These controllers support jumbo frame but it seems * that enabling it requires touching additional magic Modified: head/sys/pci/if_rlreg.h ============================================================================== --- head/sys/pci/if_rlreg.h Tue Jan 20 19:58:01 2009 (r187481) +++ head/sys/pci/if_rlreg.h Tue Jan 20 20:04:09 2009 (r187482) @@ -879,7 +879,6 @@ struct rl_softc { int rl_txstart; uint32_t rl_flags; #define RL_FLAG_MSI 0x0001 -#define RL_FLAG_INVMAR 0x0004 #define RL_FLAG_PHYWAKE 0x0008 #define RL_FLAG_NOJUMBO 0x0010 #define RL_FLAG_PAR 0x0020 From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 20:22:29 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F31821065670; Tue, 20 Jan 2009 20:22:28 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E087F8FC13; Tue, 20 Jan 2009 20:22:28 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KKMSC0055679; Tue, 20 Jan 2009 20:22:28 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KKMS7f055677; Tue, 20 Jan 2009 20:22:28 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901202022.n0KKMS7f055677@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 20 Jan 2009 20:22:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187483 - in head/sys: dev/re pci X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 20:22:29 -0000 Author: jkim Date: Tue Jan 20 20:22:28 2009 New Revision: 187483 URL: http://svn.freebsd.org/changeset/base/187483 Log: - Add support for 8110SCe part. Some magic registers were taken from Linux driver. - Swap hardware revisions for 8110S and 8169S as Linux driver claims. Reviewed by: yongari (early version) Modified: head/sys/dev/re/if_re.c head/sys/pci/if_rlreg.h Modified: head/sys/dev/re/if_re.c ============================================================================== --- head/sys/dev/re/if_re.c Tue Jan 20 20:04:09 2009 (r187482) +++ head/sys/dev/re/if_re.c Tue Jan 20 20:22:28 2009 (r187483) @@ -199,9 +199,10 @@ static struct rl_hwrev re_hwrevs[] = { { RL_HWREV_8169, RL_8169, "8169"}, { RL_HWREV_8169S, RL_8169, "8169S"}, { RL_HWREV_8110S, RL_8169, "8110S"}, - { RL_HWREV_8169_8110SB, RL_8169, "8169SB"}, - { RL_HWREV_8169_8110SC, RL_8169, "8169SC"}, - { RL_HWREV_8169_8110SBL, RL_8169, "8169SBL"}, + { RL_HWREV_8169_8110SB, RL_8169, "8169SB/8110SB"}, + { RL_HWREV_8169_8110SC, RL_8169, "8169SC/8110SC"}, + { RL_HWREV_8169_8110SBL, RL_8169, "8169SBL/8110SBL"}, + { RL_HWREV_8169_8110SCE, RL_8169, "8169SC/8110SC"}, { RL_HWREV_8100, RL_8139, "8100"}, { RL_HWREV_8101, RL_8139, "8101"}, { RL_HWREV_8100E, RL_8169, "8100E"}, @@ -688,12 +689,10 @@ re_reset(struct rl_softc *sc) if (i == RL_TIMEOUT) device_printf(sc->rl_dev, "reset never completed!\n"); - if ((sc->rl_flags & RL_FLAG_PHY8169) != 0) + if ((sc->rl_flags & RL_FLAG_MACRESET) != 0) CSR_WRITE_1(sc, 0x82, 1); - if ((sc->rl_flags & RL_FLAG_PHY8110S) != 0) { - CSR_WRITE_1(sc, 0x82, 1); - re_gmii_writereg(sc->rl_dev, 1, 0x0B, 0); - } + if (sc->rl_hwrev == RL_HWREV_8169S) + re_gmii_writereg(sc->rl_dev, 1, 0x0b, 0); } #ifdef RE_DIAG @@ -1209,12 +1208,22 @@ re_attach(device_t dev) hw_rev = re_hwrevs; hwrev = CSR_READ_4(sc, RL_TXCFG); - device_printf(dev, "Chip rev. 0x%08x\n", hwrev & 0x7c800000); + switch (hwrev & 0x70000000) { + case 0x00000000: + case 0x10000000: + device_printf(dev, "Chip rev. 0x%08x\n", hwrev & 0xfc800000); + hwrev &= (RL_TXCFG_HWREV | 0x80000000); + break; + default: + device_printf(dev, "Chip rev. 0x%08x\n", hwrev & 0x7c800000); + hwrev &= RL_TXCFG_HWREV; + break; + } device_printf(dev, "MAC rev. 0x%08x\n", hwrev & 0x00700000); - hwrev &= RL_TXCFG_HWREV; while (hw_rev->rl_desc != NULL) { if (hw_rev->rl_rev == hwrev) { sc->rl_type = hw_rev->rl_type; + sc->rl_hwrev = hw_rev->rl_rev; break; } hw_rev++; @@ -1229,9 +1238,6 @@ re_attach(device_t dev) case RL_HWREV_8139CPLUS: sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_FASTETHER; break; - case RL_HWREV_8110S: - sc->rl_flags |= RL_FLAG_PHY8110S; - break; case RL_HWREV_8100E: case RL_HWREV_8101E: sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_PHYWAKE | @@ -1273,14 +1279,16 @@ re_attach(device_t dev) */ sc->rl_flags |= RL_FLAG_NOJUMBO; break; - case RL_HWREV_8169: - case RL_HWREV_8169S: - sc->rl_flags |= RL_FLAG_PHY8169; - break; case RL_HWREV_8169_8110SB: - case RL_HWREV_8169_8110SC: case RL_HWREV_8169_8110SBL: - sc->rl_flags |= RL_FLAG_PHYWAKE | RL_FLAG_PHY8169; + case RL_HWREV_8169_8110SC: + case RL_HWREV_8169_8110SCE: + sc->rl_flags |= RL_FLAG_PHYWAKE; + /* FALLTHROUGH */ + case RL_HWREV_8169: + case RL_HWREV_8169S: + case RL_HWREV_8110S: + sc->rl_flags |= RL_FLAG_MACRESET; break; default: break; @@ -2484,6 +2492,7 @@ re_init_locked(struct rl_softc *sc) { struct ifnet *ifp = sc->rl_ifp; struct mii_data *mii; + uint32_t reg; uint16_t cfg; union { uint32_t align_dummy; @@ -2519,6 +2528,17 @@ re_init_locked(struct rl_softc *sc) } else cfg |= RL_CPLUSCMD_RXENB | RL_CPLUSCMD_TXENB; CSR_WRITE_2(sc, RL_CPLUS_CMD, cfg); + if (sc->rl_hwrev == RL_HWREV_8169_8110SC || + sc->rl_hwrev == RL_HWREV_8169_8110SCE) { + reg = 0x000fff00; + if ((CSR_READ_1(sc, RL_CFG2) & RL_CFG2_PCI66MHZ) != 0) + reg |= 0x000000ff; + if (sc->rl_hwrev == RL_HWREV_8169_8110SCE) + reg |= 0x00f00000; + CSR_WRITE_4(sc, 0x7c, reg); + /* Disable interrupt mitigation. */ + CSR_WRITE_2(sc, 0xe2, 0); + } /* * Disable TSO if interface MTU size is greater than MSS * allowed in controller. Modified: head/sys/pci/if_rlreg.h ============================================================================== --- head/sys/pci/if_rlreg.h Tue Jan 20 20:04:09 2009 (r187482) +++ head/sys/pci/if_rlreg.h Tue Jan 20 20:22:28 2009 (r187483) @@ -154,8 +154,8 @@ /* Known revision codes. */ #define RL_HWREV_8169 0x00000000 -#define RL_HWREV_8110S 0x00800000 -#define RL_HWREV_8169S 0x04000000 +#define RL_HWREV_8169S 0x00800000 +#define RL_HWREV_8110S 0x04000000 #define RL_HWREV_8169_8110SB 0x10000000 #define RL_HWREV_8169_8110SC 0x18000000 #define RL_HWREV_8102EL 0x24800000 @@ -180,6 +180,7 @@ #define RL_HWREV_8101 0x74c00000 #define RL_HWREV_8100 0x78800000 #define RL_HWREV_8169_8110SBL 0x7CC00000 +#define RL_HWREV_8169_8110SCE 0x98000000 #define RL_TXDMA_16BYTES 0x00000000 #define RL_TXDMA_32BYTES 0x00000100 @@ -886,8 +887,7 @@ struct rl_softc { #define RL_FLAG_MACSTAT 0x0080 #define RL_FLAG_FASTETHER 0x0100 #define RL_FLAG_CMDSTOP 0x0200 -#define RL_FLAG_PHY8169 0x0400 -#define RL_FLAG_PHY8110S 0x0800 +#define RL_FLAG_MACRESET 0x0400 #define RL_FLAG_WOLRXENB 0x1000 #define RL_FLAG_MACSLEEP 0x2000 #define RL_FLAG_PCIE 0x4000 From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 20:32:49 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20B8F1065903; Tue, 20 Jan 2009 20:32:49 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0F1228FC16; Tue, 20 Jan 2009 20:32:49 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KKWmgB055927; Tue, 20 Jan 2009 20:32:48 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KKWmVZ055926; Tue, 20 Jan 2009 20:32:48 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200901202032.n0KKWmVZ055926@svn.freebsd.org> From: Nick Hibma Date: Tue, 20 Jan 2009 20:32:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187484 - stable/7/sys/dev/ata X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 20:32:49 -0000 Author: n_hibma Date: Tue Jan 20 20:32:48 2009 New Revision: 187484 URL: http://svn.freebsd.org/changeset/base/187484 Log: revert my previous commit. It was in error. I got primed by a few other similar typos in man-pages. Submitted by: jhb Modified: stable/7/sys/dev/ata/ata-all.c Modified: stable/7/sys/dev/ata/ata-all.c ============================================================================== --- stable/7/sys/dev/ata/ata-all.c Tue Jan 20 20:22:28 2009 (r187483) +++ stable/7/sys/dev/ata/ata-all.c Tue Jan 20 20:32:48 2009 (r187484) @@ -127,7 +127,7 @@ ata_attach(device_t dev) /* reset the controller HW, the channel and device(s) */ while (ATA_LOCKING(dev, ATA_LF_LOCK) != ch->unit) - pause("attach", 1); + pause("atatch", 1); ATA_RESET(dev); ATA_LOCKING(dev, ATA_LF_UNLOCK); From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 20:41:42 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C350106566C; Tue, 20 Jan 2009 20:41:42 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id ED78F8FC0A; Tue, 20 Jan 2009 20:41:41 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KKffHi056114; Tue, 20 Jan 2009 20:41:41 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KKffnr056112; Tue, 20 Jan 2009 20:41:41 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901202041.n0KKffnr056112@svn.freebsd.org> From: Alan Cox Date: Tue, 20 Jan 2009 20:41:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187485 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb i386/i386 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 20:41:43 -0000 Author: alc Date: Tue Jan 20 20:41:41 2009 New Revision: 187485 URL: http://svn.freebsd.org/changeset/base/187485 Log: MFC rev 180600 Simplify pmap_extract()'s control flow, making it more like the related functions pmap_extract_and_hold() and pmap_kextract(). Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/pmap.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/i386/pmap.c Modified: stable/7/sys/amd64/amd64/pmap.c ============================================================================== --- stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 20:32:48 2009 (r187484) +++ stable/7/sys/amd64/amd64/pmap.c Tue Jan 20 20:41:41 2009 (r187485) @@ -901,13 +901,12 @@ pmap_extract(pmap_t pmap, vm_offset_t va if (pdep != NULL) { pde = *pdep; if (pde) { - if ((pde & PG_PS) != 0) { + if ((pde & PG_PS) != 0) rtval = (pde & PG_PS_FRAME) | (va & PDRMASK); - PMAP_UNLOCK(pmap); - return rtval; + else { + pte = pmap_pde_to_pte(pdep, va); + rtval = (*pte & PG_FRAME) | (va & PAGE_MASK); } - pte = pmap_pde_to_pte(pdep, va); - rtval = (*pte & PG_FRAME) | (va & PAGE_MASK); } } PMAP_UNLOCK(pmap); Modified: stable/7/sys/i386/i386/pmap.c ============================================================================== --- stable/7/sys/i386/i386/pmap.c Tue Jan 20 20:32:48 2009 (r187484) +++ stable/7/sys/i386/i386/pmap.c Tue Jan 20 20:41:41 2009 (r187485) @@ -981,14 +981,13 @@ pmap_extract(pmap_t pmap, vm_offset_t va PMAP_LOCK(pmap); pde = pmap->pm_pdir[va >> PDRSHIFT]; if (pde != 0) { - if ((pde & PG_PS) != 0) { + if ((pde & PG_PS) != 0) rtval = (pde & PG_PS_FRAME) | (va & PDRMASK); - PMAP_UNLOCK(pmap); - return rtval; + else { + pte = pmap_pte(pmap, va); + rtval = (*pte & PG_FRAME) | (va & PAGE_MASK); + pmap_pte_release(pte); } - pte = pmap_pte(pmap, va); - rtval = (*pte & PG_FRAME) | (va & PAGE_MASK); - pmap_pte_release(pte); } PMAP_UNLOCK(pmap); return (rtval); From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 21:37:41 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 936141065674; Tue, 20 Jan 2009 21:37:41 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 82FED8FC1C; Tue, 20 Jan 2009 21:37:41 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KLbfqF057260; Tue, 20 Jan 2009 21:37:41 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KLbfKU057259; Tue, 20 Jan 2009 21:37:41 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200901202137.n0KLbfKU057259@svn.freebsd.org> From: Andrew Thompson Date: Tue, 20 Jan 2009 21:37:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187486 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 21:37:42 -0000 Author: thompsa Date: Tue Jan 20 21:37:41 2009 New Revision: 187486 URL: http://svn.freebsd.org/changeset/base/187486 Log: Dont assume $MACHINE is set, this breaks for regular builds. Reported by: pho Modified: head/sys/conf/newvers.sh Modified: head/sys/conf/newvers.sh ============================================================================== --- head/sys/conf/newvers.sh Tue Jan 20 20:41:41 2009 (r187485) +++ head/sys/conf/newvers.sh Tue Jan 20 21:37:41 2009 (r187486) @@ -91,7 +91,9 @@ for dir in /bin /usr/bin /usr/local/bin; if [ -x "${dir}/svnversion" ]; then svnversion=${dir}/svnversion SRCDIR=${d##*obj} - SRCDIR=${SRCDIR##/$MACHINE} + if [ -n "$MACHINE" ]; then + SRCDIR=${SRCDIR##/$MACHINE} + fi SRCDIR=${SRCDIR%%/sys/*} break fi From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 22:00:20 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 099881065709; Tue, 20 Jan 2009 22:00:20 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D0D6F8FC1A; Tue, 20 Jan 2009 22:00:19 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KM0JrY057841; Tue, 20 Jan 2009 22:00:19 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KM0JjF057840; Tue, 20 Jan 2009 22:00:19 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200901202200.n0KM0JjF057840@svn.freebsd.org> From: Konstantin Belousov Date: Tue, 20 Jan 2009 22:00:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187490 - head/sys/ufs/ffs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 22:00:20 -0000 Author: kib Date: Tue Jan 20 22:00:19 2009 New Revision: 187490 URL: http://svn.freebsd.org/changeset/base/187490 Log: The r187467 should remove all pages for V_NORMAL case too, because indirect block pages are not removed by the mentioned invocation of the vnode_pager_setsize(). Put a common code into the helper function ffs_pages_remove(). Reported and tested by: dchagin Reviewed by: ups MFC after: 3 weeks Modified: head/sys/ufs/ffs/ffs_inode.c Modified: head/sys/ufs/ffs/ffs_inode.c ============================================================================== --- head/sys/ufs/ffs/ffs_inode.c Tue Jan 20 21:57:07 2009 (r187489) +++ head/sys/ufs/ffs/ffs_inode.c Tue Jan 20 22:00:19 2009 (r187490) @@ -129,6 +129,18 @@ ffs_update(vp, waitfor) } } +static void +ffs_pages_remove(struct vnode *vp, vm_pindex_t start, vm_pindex_t end) +{ + vm_object_t object; + + if ((object = vp->v_object) == NULL) + return; + VM_OBJECT_LOCK(object); + vm_object_page_remove(object, start, end, FALSE); + VM_OBJECT_UNLOCK(object); +} + #define SINGLE 0 /* index of single indirect block */ #define DOUBLE 1 /* index of double indirect block */ #define TRIPLE 2 /* index of triple indirect block */ @@ -152,7 +164,6 @@ ffs_truncate(vp, length, flags, cred, td struct fs *fs; struct buf *bp; struct ufsmount *ump; - vm_object_t object; int needextclean, softdepslowdown, extblocks; int offset, size, level, nblocks; int i, error, allerror; @@ -207,13 +218,8 @@ ffs_truncate(vp, length, flags, cred, td (void) chkdq(ip, -extblocks, NOCRED, 0); #endif vinvalbuf(vp, V_ALT, 0, 0); - if ((object = vp->v_object) != NULL) { - VM_OBJECT_LOCK(object); - vm_object_page_remove(object, - OFF_TO_IDX(lblktosize(fs, -extblocks)), 0, - FALSE); - VM_OBJECT_UNLOCK(object); - } + ffs_pages_remove(vp, + OFF_TO_IDX(lblktosize(fs, -extblocks)), 0); ip->i_din2->di_extsize = 0; for (i = 0; i < NXADDR; i++) { oldblks[i] = ip->i_din2->di_extb[i]; @@ -290,6 +296,9 @@ ffs_truncate(vp, length, flags, cred, td IO_EXT | IO_NORMAL : IO_NORMAL); ASSERT_VOP_LOCKED(vp, "ffs_truncate1"); vinvalbuf(vp, needextclean ? 0 : V_NORMAL, 0, 0); + if (!needextclean) + ffs_pages_remove(vp, 0, + OFF_TO_IDX(lblktosize(fs, -extblocks))); vnode_pager_setsize(vp, 0); ip->i_flag |= IN_CHANGE | IN_UPDATE; return (ffs_update(vp, 0)); From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 22:17:06 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 023A9106566B; Tue, 20 Jan 2009 22:17:06 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E3C0E8FC08; Tue, 20 Jan 2009 22:17:05 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KMH5SV058354; Tue, 20 Jan 2009 22:17:05 GMT (envelope-from emax@svn.freebsd.org) Received: (from emax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KMH5U8058352; Tue, 20 Jan 2009 22:17:05 GMT (envelope-from emax@svn.freebsd.org) Message-Id: <200901202217.n0KMH5U8058352@svn.freebsd.org> From: Maksim Yevmenkin Date: Tue, 20 Jan 2009 22:17:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187494 - head/sys/dev/usb2/bluetooth X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 22:17:06 -0000 Author: emax Date: Tue Jan 20 22:17:05 2009 New Revision: 187494 URL: http://svn.freebsd.org/changeset/base/187494 Log: Update (well, actually rewrite mostly) ng_ubt2 driver for USB2. Reviewed by: HPS, alfred Blessed by: HPS Modified: head/sys/dev/usb2/bluetooth/ng_ubt2.c head/sys/dev/usb2/bluetooth/ng_ubt2_var.h Modified: head/sys/dev/usb2/bluetooth/ng_ubt2.c ============================================================================== --- head/sys/dev/usb2/bluetooth/ng_ubt2.c Tue Jan 20 22:06:07 2009 (r187493) +++ head/sys/dev/usb2/bluetooth/ng_ubt2.c Tue Jan 20 22:17:05 2009 (r187494) @@ -3,7 +3,7 @@ */ /*- - * Copyright (c) 2001-2002 Maksim Yevmenkin + * Copyright (c) 2001-2009 Maksim Yevmenkin * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -31,6 +31,69 @@ * $FreeBSD$ */ +/* + * NOTE: ng_ubt2 driver has a split personality. On one side it is + * a USB2 device driver and on the other it is a Netgraph node. This + * driver will *NOT* create traditional /dev/ enties, only Netgraph + * node. + * + * NOTE ON LOCKS USED: ng_ubt2 drives uses 3 locks (mutexes) + * + * 1) sc_if_mtx[0] - lock for device's interface #0. This lock is used + * by USB2 for any USB request going over device's interface #0, i.e. + * interrupt, control and bulk transfers. + * + * 2) sc_if_mtx[1] - lock for device's interface #1. This lock is used + * by USB2 for any USB request going over device's interface #1, i.e + * isoc. transfers. + * + * 3) sc_mbufq_mtx - lock for mbufq and task flags. This lock is used + * to protect device's outgoing mbuf queues and task flags. This lock + * *SHOULD NOT* be grabbed for a long time. In fact, think of it as a + * spin lock. + * + * NOTE ON LOCKING STRATEGY: ng_ubt2 driver operates in 3 different contexts. + * + * 1) USB context. This is where all the USB related stuff happens. All + * callbacks run in this context. All callbacks are called (by USB2) with + * appropriate interface lock held. It is (generally) allowed to grab + * any additional locks. + * + * 2) Netgraph context. This is where all the Netgraph related stuff happens. + * Since we mark node as WRITER, the Netgraph node will be "locked" (from + * Netgraph point of view). Any variable that is only modified from the + * Netgraph context does not require any additonal locking. It is generally + * *NOT* allowed to grab *ANY* additional lock. Whatever you do, *DO NOT* + * not grab any long-sleep lock in the Netgraph context. In fact, the only + * lock that is allowed in the Netgraph context is the sc_mbufq_mtx lock. + * + * 3) Taskqueue context. This is where ubt_task runs. Since we are NOT allowed + * to grab any locks in the Netgraph context, and, USB2 requires us to + * grab interface lock before doing things with transfers, we need to + * transition from the Netgraph context to the Taskqueue context before + * we can call into USB2 subsystem. + * + * So, to put everything together, the rules are as follows. + * It is OK to call from the USB context or the Taskqueue context into + * the Netgraph context (i.e. call NG_SEND_xxx functions). In other words + * it is allowed to call into the Netgraph context with locks held. + * Is it *NOT* OK to call from the Netgraph context into the USB context, + * because USB2 requires us to grab interface locks and we can not do that. + * To avoid this, we set task flags to indicate which actions we want to + * perform and schedule ubt_task which would run in the Taskqueue context. + * Is is OK to call from the Taskqueue context into the USB context, + * and, ubt_task does just that (i.e. grabs appropriate interface locks + * before calling into USB2). + * Access to the outgoing queues and task flags is controlled by the + * sc_mbufq_mtx lock. It is an unavoidable evil. Again, sc_mbufq_mtx should + * really be a spin lock. + * All USB callbacks accept Netgraph node pointer as private data. To + * ensure that Netgraph node pointer remains valid for the duration of the + * transfer, we grab a referrence to the node. In other words, if transfer is + * pending, then we should have a referrence on the node. NG_NODE_[NOT_]VALID + * macro is used to check if node is still present and pointer is valid. + */ + #include #include #include @@ -44,8 +107,11 @@ #include #include #include +#include +#include #include +#include #include #include @@ -57,71 +123,57 @@ #include #include -/* - * USB methods - */ - -static device_probe_t ubt_probe; -static device_attach_t ubt_attach; -static device_detach_t ubt_detach; - -static devclass_t ubt_devclass; - -static device_method_t ubt_methods[] = { - DEVMETHOD(device_probe, ubt_probe), - DEVMETHOD(device_attach, ubt_attach), - DEVMETHOD(device_detach, ubt_detach), - {0, 0} -}; - -static driver_t ubt_driver = { - .name = "ubt", - .methods = ubt_methods, - .size = sizeof(struct ubt_softc), -}; - -/* - * Netgraph methods - */ - -static ng_constructor_t ng_ubt_constructor; -static ng_shutdown_t ng_ubt_shutdown; -static ng_newhook_t ng_ubt_newhook; -static ng_connect_t ng_ubt_connect; -static ng_disconnect_t ng_ubt_disconnect; -static ng_rcvmsg_t ng_ubt_rcvmsg; -static ng_rcvdata_t ng_ubt_rcvdata; +static int ubt_modevent(module_t, int, void *); +static device_probe_t ubt_probe; +static device_attach_t ubt_attach; +static device_detach_t ubt_detach; + +static int ubt_task_schedule(ubt_softc_p, int); +static task_fn_t ubt_task; +static void ubt_xfer_start(ubt_softc_p, int); + +/* Netgraph methods */ +static ng_constructor_t ng_ubt_constructor; +static ng_shutdown_t ng_ubt_shutdown; +static ng_newhook_t ng_ubt_newhook; +static ng_connect_t ng_ubt_connect; +static ng_disconnect_t ng_ubt_disconnect; +static ng_rcvmsg_t ng_ubt_rcvmsg; +static ng_rcvdata_t ng_ubt_rcvdata; /* Queue length */ -static const struct ng_parse_struct_field ng_ubt_node_qlen_type_fields[] = +static const struct ng_parse_struct_field ng_ubt_node_qlen_type_fields[] = { - {"queue", &ng_parse_int32_type,}, - {"qlen", &ng_parse_int32_type,}, - {NULL,} + { "queue", &ng_parse_int32_type, }, + { "qlen", &ng_parse_int32_type, }, + { NULL, } }; -static const struct ng_parse_type ng_ubt_node_qlen_type = { +static const struct ng_parse_type ng_ubt_node_qlen_type = +{ &ng_parse_struct_type, &ng_ubt_node_qlen_type_fields }; /* Stat info */ -static const struct ng_parse_struct_field ng_ubt_node_stat_type_fields[] = +static const struct ng_parse_struct_field ng_ubt_node_stat_type_fields[] = { - {"pckts_recv", &ng_parse_uint32_type,}, - {"bytes_recv", &ng_parse_uint32_type,}, - {"pckts_sent", &ng_parse_uint32_type,}, - {"bytes_sent", &ng_parse_uint32_type,}, - {"oerrors", &ng_parse_uint32_type,}, - {"ierrors", &ng_parse_uint32_type,}, - {NULL,} + { "pckts_recv", &ng_parse_uint32_type, }, + { "bytes_recv", &ng_parse_uint32_type, }, + { "pckts_sent", &ng_parse_uint32_type, }, + { "bytes_sent", &ng_parse_uint32_type, }, + { "oerrors", &ng_parse_uint32_type, }, + { "ierrors", &ng_parse_uint32_type, }, + { NULL, } }; -static const struct ng_parse_type ng_ubt_node_stat_type = { +static const struct ng_parse_type ng_ubt_node_stat_type = +{ &ng_parse_struct_type, &ng_ubt_node_stat_type_fields }; /* Netgraph node command list */ -static const struct ng_cmdlist ng_ubt_cmdlist[] = { +static const struct ng_cmdlist ng_ubt_cmdlist[] = +{ { NGM_UBT_COOKIE, NGM_UBT_NODE_SET_DEBUG, @@ -164,315 +216,266 @@ static const struct ng_cmdlist ng_ubt_cm NULL, NULL }, - {0,} + { 0, } }; /* Netgraph node type */ -static struct ng_type typestruct = { - .version = NG_ABI_VERSION, - .name = NG_UBT_NODE_TYPE, - .constructor = ng_ubt_constructor, - .rcvmsg = ng_ubt_rcvmsg, - .shutdown = ng_ubt_shutdown, - .newhook = ng_ubt_newhook, - .connect = ng_ubt_connect, - .rcvdata = ng_ubt_rcvdata, - .disconnect = ng_ubt_disconnect, - .cmdlist = ng_ubt_cmdlist -}; - -/* USB methods */ - -static usb2_callback_t ubt_ctrl_write_callback; -static usb2_callback_t ubt_intr_read_callback; -static usb2_callback_t ubt_intr_read_clear_stall_callback; -static usb2_callback_t ubt_bulk_read_callback; -static usb2_callback_t ubt_bulk_read_clear_stall_callback; -static usb2_callback_t ubt_bulk_write_callback; -static usb2_callback_t ubt_bulk_write_clear_stall_callback; -static usb2_callback_t ubt_isoc_read_callback; -static usb2_callback_t ubt_isoc_write_callback; - -static int ubt_modevent(module_t, int, void *); -static void ubt_intr_read_complete(node_p, hook_p, void *, int); -static void ubt_bulk_read_complete(node_p, hook_p, void *, int); -static void ubt_isoc_read_complete(node_p, hook_p, void *, int); - -/* USB config */ -static const struct usb2_config ubt_config_if_0[UBT_IF_0_N_TRANSFER] = { - - [0] = { - .type = UE_BULK, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_OUT, - .mh.bufsize = UBT_BULK_WRITE_BUFFER_SIZE, - .mh.flags = {.pipe_bof = 1,}, - .mh.callback = &ubt_bulk_write_callback, - }, - - [1] = { - .type = UE_BULK, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_IN, - .mh.bufsize = UBT_BULK_READ_BUFFER_SIZE, - .mh.flags = {.pipe_bof = 1,.short_xfer_ok = 1,}, - .mh.callback = &ubt_bulk_read_callback, - }, - - [2] = { - .type = UE_INTERRUPT, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_IN, - .mh.flags = {.pipe_bof = 1,.short_xfer_ok = 1,}, - .mh.bufsize = 0x110, /* bytes */ - .mh.callback = &ubt_intr_read_callback, - }, - - [3] = { - .type = UE_CONTROL, - .endpoint = 0x00, /* Control pipe */ - .direction = UE_DIR_ANY, - .mh.bufsize = (sizeof(struct usb2_device_request) + UBT_CTRL_BUFFER_SIZE), - .mh.callback = &ubt_ctrl_write_callback, - .mh.timeout = 5000, /* 5 seconds */ - }, - - [4] = { - .type = UE_CONTROL, - .endpoint = 0x00, /* Control pipe */ - .direction = UE_DIR_ANY, - .mh.bufsize = sizeof(struct usb2_device_request), - .mh.callback = &ubt_bulk_write_clear_stall_callback, - .mh.timeout = 1000, /* 1 second */ - .mh.interval = 50, /* 50ms */ - }, - - [5] = { - .type = UE_CONTROL, - .endpoint = 0x00, /* Control pipe */ - .direction = UE_DIR_ANY, - .mh.bufsize = sizeof(struct usb2_device_request), - .mh.callback = &ubt_bulk_read_clear_stall_callback, - .mh.timeout = 1000, /* 1 second */ - .mh.interval = 50, /* 50ms */ - }, - - [6] = { - .type = UE_CONTROL, - .endpoint = 0x00, /* Control pipe */ - .direction = UE_DIR_ANY, - .mh.bufsize = sizeof(struct usb2_device_request), - .mh.callback = &ubt_intr_read_clear_stall_callback, - .mh.timeout = 1000, /* 1 second */ - .mh.interval = 50, /* 50ms */ - }, -}; - -/* USB config */ -static const struct usb2_config - ubt_config_if_1_full_speed[UBT_IF_1_N_TRANSFER] = { - - [0] = { - .type = UE_ISOCHRONOUS, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_IN, - .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ - .mh.frames = UBT_ISOC_NFRAMES, - .mh.flags = {.short_xfer_ok = 1,}, - .mh.callback = &ubt_isoc_read_callback, - }, - - [1] = { - .type = UE_ISOCHRONOUS, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_IN, - .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ - .mh.frames = UBT_ISOC_NFRAMES, - .mh.flags = {.short_xfer_ok = 1,}, - .mh.callback = &ubt_isoc_read_callback, - }, - - [2] = { - .type = UE_ISOCHRONOUS, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_OUT, - .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ - .mh.frames = UBT_ISOC_NFRAMES, - .mh.flags = {.short_xfer_ok = 1,}, - .mh.callback = &ubt_isoc_write_callback, - }, - - [3] = { - .type = UE_ISOCHRONOUS, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_OUT, - .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ - .mh.frames = UBT_ISOC_NFRAMES, - .mh.flags = {.short_xfer_ok = 1,}, - .mh.callback = &ubt_isoc_write_callback, - }, -}; - -/* USB config */ -static const struct usb2_config - ubt_config_if_1_high_speed[UBT_IF_1_N_TRANSFER] = { - - [0] = { - .type = UE_ISOCHRONOUS, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_IN, - .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ - .mh.frames = UBT_ISOC_NFRAMES * 8, - .mh.flags = {.short_xfer_ok = 1,}, - .mh.callback = &ubt_isoc_read_callback, - }, - - [1] = { - .type = UE_ISOCHRONOUS, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_IN, - .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ - .mh.frames = UBT_ISOC_NFRAMES * 8, - .mh.flags = {.short_xfer_ok = 1,}, - .mh.callback = &ubt_isoc_read_callback, - }, - - [2] = { - .type = UE_ISOCHRONOUS, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_OUT, - .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ - .mh.frames = UBT_ISOC_NFRAMES * 8, - .mh.flags = {.short_xfer_ok = 1,}, - .mh.callback = &ubt_isoc_write_callback, - }, - - [3] = { - .type = UE_ISOCHRONOUS, - .endpoint = UE_ADDR_ANY, - .direction = UE_DIR_OUT, - .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ - .mh.frames = UBT_ISOC_NFRAMES * 8, - .mh.flags = {.short_xfer_ok = 1,}, - .mh.callback = &ubt_isoc_write_callback, - }, +static struct ng_type typestruct = +{ + .version = NG_ABI_VERSION, + .name = NG_UBT_NODE_TYPE, + .constructor = ng_ubt_constructor, + .rcvmsg = ng_ubt_rcvmsg, + .shutdown = ng_ubt_shutdown, + .newhook = ng_ubt_newhook, + .connect = ng_ubt_connect, + .rcvdata = ng_ubt_rcvdata, + .disconnect = ng_ubt_disconnect, + .cmdlist = ng_ubt_cmdlist }; -/* - * Module - */ - -DRIVER_MODULE(ng_ubt, ushub, ubt_driver, ubt_devclass, ubt_modevent, 0); -MODULE_VERSION(ng_ubt, NG_BLUETOOTH_VERSION); -MODULE_DEPEND(ng_ubt, netgraph, NG_ABI_VERSION, NG_ABI_VERSION, NG_ABI_VERSION); -MODULE_DEPEND(ng_ubt, ng_hci, NG_BLUETOOTH_VERSION, NG_BLUETOOTH_VERSION, NG_BLUETOOTH_VERSION); -MODULE_DEPEND(ng_ubt, usb2_bluetooth, 1, 1, 1); -MODULE_DEPEND(ng_ubt, usb2_core, 1, 1, 1); - /**************************************************************************** **************************************************************************** ** USB specific **************************************************************************** ****************************************************************************/ +/* USB methods */ +static usb2_callback_t ubt_ctrl_write_callback; +static usb2_callback_t ubt_intr_read_callback; +static usb2_callback_t ubt_intr_read_clear_stall_callback; +static usb2_callback_t ubt_bulk_read_callback; +static usb2_callback_t ubt_bulk_read_clear_stall_callback; +static usb2_callback_t ubt_bulk_write_callback; +static usb2_callback_t ubt_bulk_write_clear_stall_callback; +static usb2_callback_t ubt_isoc_read_callback; +static usb2_callback_t ubt_isoc_write_callback; + +static int ubt_isoc_read_one_frame(struct usb2_xfer *, int); + /* - * Load/Unload the driver module + * USB config + * + * The following desribes usb transfers that could be submitted on USB device. + * + * Interface 0 on the USB device must present the following endpoints + * 1) Interrupt endpoint to receive HCI events + * 2) Bulk IN endpoint to receive ACL data + * 3) Bulk OUT endpoint to send ACL data + * + * Interface 1 on the USB device must present the following endpoints + * 1) Isochronous IN endpoint to receive SCO data + * 2) Isochronous OUT endpoint to send SCO data */ -static int -ubt_modevent(module_t mod, int event, void *data) +static const struct usb2_config ubt_config[UBT_N_TRANSFER] = { - int error; + /* + * Interface #0 + */ - switch (event) { - case MOD_LOAD: - error = ng_newtype(&typestruct); - if (error != 0) { - printf("%s: Could not register " - "Netgraph node type, error=%d\n", - NG_UBT_NODE_TYPE, error); - } - break; + /* Outgoing bulk transfer - ACL packets */ + [UBT_IF_0_BULK_DT_WR] = { + .type = UE_BULK, + .endpoint = UE_ADDR_ANY, + .direction = UE_DIR_OUT, + .mh.bufsize = UBT_BULK_WRITE_BUFFER_SIZE, + .mh.flags = { .pipe_bof = 1, }, + .mh.callback = &ubt_bulk_write_callback, + }, + /* Incoming bulk transfer - ACL packets */ + [UBT_IF_0_BULK_DT_RD] = { + .type = UE_BULK, + .endpoint = UE_ADDR_ANY, + .direction = UE_DIR_IN, + .mh.bufsize = UBT_BULK_READ_BUFFER_SIZE, + .mh.flags = { .pipe_bof = 1, .short_xfer_ok = 1, }, + .mh.callback = &ubt_bulk_read_callback, + }, + /* Incoming interrupt transfer - HCI events */ + [UBT_IF_0_INTR_DT_RD] = { + .type = UE_INTERRUPT, + .endpoint = UE_ADDR_ANY, + .direction = UE_DIR_IN, + .mh.flags = { .pipe_bof = 1, .short_xfer_ok = 1, }, + .mh.bufsize = UBT_INTR_BUFFER_SIZE, + .mh.callback = &ubt_intr_read_callback, + }, + /* Outgoing control transfer - HCI commands */ + [UBT_IF_0_CTRL_DT_WR] = { + .type = UE_CONTROL, + .endpoint = 0x00, /* control pipe */ + .direction = UE_DIR_ANY, + .mh.bufsize = UBT_CTRL_BUFFER_SIZE, + .mh.callback = &ubt_ctrl_write_callback, + .mh.timeout = 5000, /* 5 seconds */ + }, + /* Outgoing control transfer to clear stall on outgoing bulk transfer */ + [UBT_IF_0_BULK_CS_WR] = { + .type = UE_CONTROL, + .endpoint = 0x00, /* control pipe */ + .direction = UE_DIR_ANY, + .mh.bufsize = sizeof(struct usb2_device_request), + .mh.callback = &ubt_bulk_write_clear_stall_callback, + .mh.timeout = 1000, /* 1 second */ + .mh.interval = 50, /* 50ms */ + }, + /* Outgoing control transfer to clear stall on incoming bulk transfer */ + [UBT_IF_0_BULK_CS_RD] = { + .type = UE_CONTROL, + .endpoint = 0x00, /* control pipe */ + .direction = UE_DIR_ANY, + .mh.bufsize = sizeof(struct usb2_device_request), + .mh.callback = &ubt_bulk_read_clear_stall_callback, + .mh.timeout = 1000, /* 1 second */ + .mh.interval = 50, /* 50ms */ + }, + /* + * Outgoing control transfer to clear stall on incoming + * interrupt transfer + */ + [UBT_IF_0_INTR_CS_RD] = { + .type = UE_CONTROL, + .endpoint = 0x00, /* control pipe */ + .direction = UE_DIR_ANY, + .mh.bufsize = sizeof(struct usb2_device_request), + .mh.callback = &ubt_intr_read_clear_stall_callback, + .mh.timeout = 1000, /* 1 second */ + .mh.interval = 50, /* 50ms */ + }, - case MOD_UNLOAD: - error = ng_rmtype(&typestruct); - break; + /* + * Interface #1 + */ - default: - error = EOPNOTSUPP; - break; - } - return (error); -} /* ubt_modevent */ + /* Incoming isochronous transfer #1 - SCO packets */ + [UBT_IF_1_ISOC_DT_RD1] = { + .type = UE_ISOCHRONOUS, + .endpoint = UE_ADDR_ANY, + .direction = UE_DIR_IN, + .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ + .mh.frames = UBT_ISOC_NFRAMES, + .mh.flags = { .short_xfer_ok = 1, }, + .mh.callback = &ubt_isoc_read_callback, + }, + /* Incoming isochronous transfer #2 - SCO packets */ + [UBT_IF_1_ISOC_DT_RD2] = { + .type = UE_ISOCHRONOUS, + .endpoint = UE_ADDR_ANY, + .direction = UE_DIR_IN, + .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ + .mh.frames = UBT_ISOC_NFRAMES, + .mh.flags = { .short_xfer_ok = 1, }, + .mh.callback = &ubt_isoc_read_callback, + }, + /* Outgoing isochronous transfer #1 - SCO packets */ + [UBT_IF_1_ISOC_DT_WR1] = { + .type = UE_ISOCHRONOUS, + .endpoint = UE_ADDR_ANY, + .direction = UE_DIR_OUT, + .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ + .mh.frames = UBT_ISOC_NFRAMES, + .mh.flags = { .short_xfer_ok = 1, }, + .mh.callback = &ubt_isoc_write_callback, + }, + /* Outgoing isochronous transfer #2 - SCO packets */ + [UBT_IF_1_ISOC_DT_WR2] = { + .type = UE_ISOCHRONOUS, + .endpoint = UE_ADDR_ANY, + .direction = UE_DIR_OUT, + .mh.bufsize = 0, /* use "wMaxPacketSize * frames" */ + .mh.frames = UBT_ISOC_NFRAMES, + .mh.flags = { .short_xfer_ok = 1, }, + .mh.callback = &ubt_isoc_write_callback, + }, +}; /* * If for some reason device should not be attached then put * VendorID/ProductID pair into the list below. The format is * as follows: * - * { VENDOR_ID, PRODUCT_ID }, + * { USB_VPI(VENDOR_ID, PRODUCT_ID, 0) }, * * where VENDOR_ID and PRODUCT_ID are hex numbers. */ static const struct usb2_device_id ubt_ignore_devs[] = { /* AVM USB Bluetooth-Adapter BlueFritz! v1.0 */ - {USB_VPI(USB_VENDOR_AVM, 0x2200, 0)}, + { USB_VPI(USB_VENDOR_AVM, 0x2200, 0) }, }; /* List of supported bluetooth devices */ static const struct usb2_device_id ubt_devs[] = { - /* Generic Bluetooth class devices. */ - {USB_IFACE_CLASS(UDCLASS_WIRELESS), - USB_IFACE_SUBCLASS(UDSUBCLASS_RF), - USB_IFACE_PROTOCOL(UDPROTO_BLUETOOTH)}, + /* Generic Bluetooth class devices */ + { USB_IFACE_CLASS(UDCLASS_WIRELESS), + USB_IFACE_SUBCLASS(UDSUBCLASS_RF), + USB_IFACE_PROTOCOL(UDPROTO_BLUETOOTH) }, /* AVM USB Bluetooth-Adapter BlueFritz! v2.0 */ - {USB_VPI(USB_VENDOR_AVM, 0x3800, 0)}, + { USB_VPI(USB_VENDOR_AVM, 0x3800, 0) }, }; /* - * Probe for a USB Bluetooth device + * Probe for a USB Bluetooth device. + * USB context. */ static int ubt_probe(device_t dev) { - struct usb2_attach_arg *uaa = device_get_ivars(dev); + struct usb2_attach_arg *uaa = device_get_ivars(dev); - if (uaa->usb2_mode != USB_MODE_HOST) { + if (uaa->usb2_mode != USB_MODE_HOST) return (ENXIO); - } - if (uaa->info.bIfaceIndex != 0) { + + if (uaa->info.bIfaceIndex != 0) return (ENXIO); - } + if (usb2_lookup_id_by_uaa(ubt_ignore_devs, - sizeof(ubt_ignore_devs), uaa) == 0) { + sizeof(ubt_ignore_devs), uaa) == 0) return (ENXIO); - } + return (usb2_lookup_id_by_uaa(ubt_devs, sizeof(ubt_devs), uaa)); -} +} /* ubt_probe */ /* - * Attach the device + * Attach the device. + * USB context. */ static int ubt_attach(device_t dev) { - struct usb2_attach_arg *uaa = device_get_ivars(dev); - struct ubt_softc *sc = device_get_softc(dev); - const struct usb2_config *isoc_setup; - struct usb2_endpoint_descriptor *ed; - uint16_t wMaxPacketSize; - uint8_t alt_index; - uint8_t iface_index; - uint8_t i; - uint8_t j; + struct usb2_attach_arg *uaa = device_get_ivars(dev); + struct ubt_softc *sc = device_get_softc(dev); + struct usb2_endpoint_descriptor *ed; + uint16_t wMaxPacketSize; + uint8_t alt_index, iface_index, i, j; device_set_usb2_desc(dev); snprintf(sc->sc_name, sizeof(sc->sc_name), - "%s", device_get_nameunit(dev)); + "%s", device_get_nameunit(dev)); + + /* + * Create Netgraph node + */ + + sc->sc_hook = NULL; + + if (ng_make_node_common(&typestruct, &sc->sc_node) != 0) { + device_printf(dev, "could not create Netgraph node\n"); + return (ENXIO); + } + + /* Name Netgraph node */ + if (ng_name_node(sc->sc_node, sc->sc_name) != 0) { + device_printf(dev, "could not name Netgraph node\n"); + NG_NODE_UNREF(sc->sc_node); + return (ENXIO); + } + NG_NODE_SET_PRIVATE(sc->sc_node, sc); + NG_NODE_FORCE_WRITER(sc->sc_node); /* * Initialize device softc structure @@ -481,34 +484,28 @@ ubt_attach(device_t dev) /* state */ sc->sc_debug = NG_UBT_WARN_LEVEL; sc->sc_flags = 0; - NG_UBT_STAT_RESET(sc->sc_stat); + UBT_STAT_RESET(sc); - /* control pipe */ - NG_BT_MBUFQ_INIT(&sc->sc_cmdq, UBT_DEFAULT_QLEN); + /* initialize locks */ + mtx_init(&sc->sc_mbufq_mtx, "ubt mbufq", NULL, MTX_DEF); + mtx_init(&sc->sc_if_mtx[0], "ubt if0", NULL, MTX_DEF | MTX_RECURSE); + mtx_init(&sc->sc_if_mtx[1], "ubt if1", NULL, MTX_DEF | MTX_RECURSE); - /* bulk-out pipe */ + /* initialize packet queues */ + NG_BT_MBUFQ_INIT(&sc->sc_cmdq, UBT_DEFAULT_QLEN); NG_BT_MBUFQ_INIT(&sc->sc_aclq, UBT_DEFAULT_QLEN); + NG_BT_MBUFQ_INIT(&sc->sc_scoq, UBT_DEFAULT_QLEN); - /* isoc-out pipe */ - NG_BT_MBUFQ_INIT(&sc->sc_scoq, - (usb2_get_speed(uaa->device) == USB_SPEED_HIGH) ? - (2 * UBT_ISOC_NFRAMES * 8) : - (2 * UBT_ISOC_NFRAMES)); - - /* isoc-in pipe */ - NG_BT_MBUFQ_INIT(&sc->sc_sciq, - (usb2_get_speed(uaa->device) == USB_SPEED_HIGH) ? - (2 * UBT_ISOC_NFRAMES * 8) : - (2 * UBT_ISOC_NFRAMES)); - - /* netgraph part */ - sc->sc_node = NULL; - sc->sc_hook = NULL; + /* initialize glue task */ + sc->sc_task_flags = 0; + TASK_INIT(&sc->sc_task, 0, ubt_task, sc->sc_node); /* * Configure Bluetooth USB device. Discover all required USB * interfaces and endpoints. * + * Device is expected to be a high-speed device. + * * USB device must present two interfaces: * 1) Interface 0 that has 3 endpoints * 1) Interrupt endpoint to receive HCI events @@ -523,794 +520,1006 @@ ubt_attach(device_t dev) * configurations with different packet size. */ + bzero(&sc->sc_xfer, sizeof(sc->sc_xfer)); + /* * Interface 0 */ - mtx_init(&sc->sc_mtx, "ubt lock", NULL, MTX_DEF | MTX_RECURSE); - iface_index = 0; - if (usb2_transfer_setup - (uaa->device, &iface_index, sc->sc_xfer_if_0, ubt_config_if_0, - UBT_IF_0_N_TRANSFER, sc, &sc->sc_mtx)) { - device_printf(dev, "Could not allocate transfers " - "for interface 0!\n"); + if (usb2_transfer_setup(uaa->device, &iface_index, sc->sc_xfer, + ubt_config, UBT_IF_0_N_TRANSFER, + sc->sc_node, &sc->sc_if_mtx[0])) { + device_printf(dev, "could not allocate transfers for " \ + "interface 0!\n"); goto detach; } + /* * Interface 1 - * (search alternate settings, and find - * the descriptor with the largest + * (search alternate settings, and find the descriptor with the largest * wMaxPacketSize) */ - isoc_setup = - ((usb2_get_speed(uaa->device) == USB_SPEED_HIGH) ? - ubt_config_if_1_high_speed : - ubt_config_if_1_full_speed); wMaxPacketSize = 0; - - /* search through all the descriptors looking for bidir mode */ - - alt_index = 0 - 1; + alt_index = 0; i = 0; j = 0; + + /* Search through all the descriptors looking for bidir mode */ while (1) { uint16_t temp; - ed = usb2_find_edesc( - usb2_get_config_descriptor(uaa->device), 1, i, j); + ed = usb2_find_edesc(usb2_get_config_descriptor(uaa->device), + 1, i, j); if (ed == NULL) { - if (j == 0) { - /* end of interfaces */ - break; - } else { + if (j != 0) { /* next interface */ j = 0; - i++; + i ++; continue; } + + break; /* end of interfaces */ } + temp = UGETW(ed->wMaxPacketSize); if (temp > wMaxPacketSize) { wMaxPacketSize = temp; alt_index = i; } - j++; - } - if (usb2_set_alt_interface_index(uaa->device, 1, alt_index)) { - device_printf(dev, "Could not set alternate " - "setting %d for interface 1!\n", alt_index); - goto detach; - } - iface_index = 1; - if (usb2_transfer_setup - (uaa->device, &iface_index, sc->sc_xfer_if_1, - isoc_setup, UBT_IF_1_N_TRANSFER, sc, &sc->sc_mtx)) { - device_printf(dev, "Could not allocate transfers " - "for interface 1!\n"); - goto detach; + j ++; } - /* create Netgraph node */ - if (ng_make_node_common(&typestruct, &sc->sc_node) != 0) { - printf("%s: Could not create Netgraph node\n", - sc->sc_name); - sc->sc_node = NULL; + /* Set alt configuration only if we found it */ + if (wMaxPacketSize > 0 && + usb2_set_alt_interface_index(uaa->device, 1, alt_index)) { + device_printf(dev, "could not set alternate setting %d " \ + "for interface 1!\n", alt_index); goto detach; } - /* name node */ - if (ng_name_node(sc->sc_node, sc->sc_name) != 0) { - printf("%s: Could not name Netgraph node\n", - sc->sc_name); - NG_NODE_UNREF(sc->sc_node); - sc->sc_node = NULL; + iface_index = 1; + if (usb2_transfer_setup(uaa->device, &iface_index, + &sc->sc_xfer[UBT_IF_0_N_TRANSFER], + &ubt_config[UBT_IF_0_N_TRANSFER], UBT_IF_1_N_TRANSFER, + sc->sc_node, &sc->sc_if_mtx[1])) { + device_printf(dev, "could not allocate transfers for " \ + "interface 1!\n"); goto detach; } - NG_NODE_SET_PRIVATE(sc->sc_node, sc); - NG_NODE_FORCE_WRITER(sc->sc_node); - /* claim all interfaces on the device */ - - for (i = 1;; i++) { - - if (usb2_get_iface(uaa->device, i) == NULL) { - break; - } + /* Claim all interfaces on the device */ + for (i = 1; usb2_get_iface(uaa->device, i) != NULL; i ++) usb2_set_parent_iface(uaa->device, i, uaa->info.bIfaceIndex); - } - return (0); /* success */ + return (0); /* success */ detach: ubt_detach(dev); return (ENXIO); -} +} /* ubt_attach */ /* - * Detach the device + * Detach the device. + * USB context. */ int ubt_detach(device_t dev) { - struct ubt_softc *sc = device_get_softc(dev); + struct ubt_softc *sc = device_get_softc(dev); + node_p node = sc->sc_node; - /* destroy Netgraph node */ - - if (sc->sc_node != NULL) { - NG_NODE_SET_PRIVATE(sc->sc_node, NULL); - ng_rmnode_self(sc->sc_node); + /* Destroy Netgraph node */ + if (node != NULL) { sc->sc_node = NULL; - } - /* free USB transfers, if any */ - usb2_transfer_unsetup(sc->sc_xfer_if_0, UBT_IF_0_N_TRANSFER); - - usb2_transfer_unsetup(sc->sc_xfer_if_1, UBT_IF_1_N_TRANSFER); + NG_NODE_SET_PRIVATE(node, NULL); + NG_NODE_REALLY_DIE(node); + NG_NODE_REF(node); + ng_rmnode_self(node); + } - mtx_destroy(&sc->sc_mtx); + /* Free USB transfers, if any */ + usb2_transfer_unsetup(sc->sc_xfer, UBT_N_TRANSFER); - /* destroy queues */ + if (node != NULL) + NG_NODE_UNREF(node); + /* Destroy queues */ + UBT_MBUFQ_LOCK(sc); NG_BT_MBUFQ_DESTROY(&sc->sc_cmdq); NG_BT_MBUFQ_DESTROY(&sc->sc_aclq); NG_BT_MBUFQ_DESTROY(&sc->sc_scoq); - NG_BT_MBUFQ_DESTROY(&sc->sc_sciq); + UBT_MBUFQ_UNLOCK(sc); + + mtx_destroy(&sc->sc_if_mtx[0]); + mtx_destroy(&sc->sc_if_mtx[1]); + mtx_destroy(&sc->sc_mbufq_mtx); return (0); -} +} /* ubt_detach */ + +/* + * Called when outgoing control request (HCI command) has completed, i.e. + * HCI command was sent to the device. + * USB context. + */ static void ubt_ctrl_write_callback(struct usb2_xfer *xfer) { - struct ubt_softc *sc = xfer->priv_sc; - struct usb2_device_request req; - struct mbuf *m; + node_p node = xfer->priv_sc; + struct ubt_softc *sc; + struct usb2_device_request req; + struct mbuf *m; + + if (NG_NODE_NOT_VALID(node)) { + NG_NODE_UNREF(node); + return; /* netgraph node is gone */ + } + + sc = NG_NODE_PRIVATE(node); switch (USB_GET_STATE(xfer)) { case USB_ST_TRANSFERRED: -tr_transferred: + if (xfer->error != 0) + UBT_STAT_OERROR(sc); + else { + UBT_INFO(sc, "sent %d bytes to control pipe\n", + xfer->actlen); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 22:26:09 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B706106566B; Tue, 20 Jan 2009 22:26:09 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8B4938FC13; Tue, 20 Jan 2009 22:26:09 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KMQ9NB058612; Tue, 20 Jan 2009 22:26:09 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KMQ9wI058610; Tue, 20 Jan 2009 22:26:09 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <200901202226.n0KMQ9wI058610@svn.freebsd.org> From: Alexander Motin Date: Tue, 20 Jan 2009 22:26:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187495 - head/sys/netgraph X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 22:26:10 -0000 Author: mav Date: Tue Jan 20 22:26:09 2009 New Revision: 187495 URL: http://svn.freebsd.org/changeset/base/187495 Log: Check for infinite recursion possible on some broken PPTP/L2TP/... VPN setups. Mark packets with mbuf_tag on first interface passage and drop on second. PR: ports/129625, ports/125303, MFC after: 2 weeks Modified: head/sys/netgraph/ng_iface.c head/sys/netgraph/ng_iface.h Modified: head/sys/netgraph/ng_iface.c ============================================================================== --- head/sys/netgraph/ng_iface.c Tue Jan 20 22:17:05 2009 (r187494) +++ head/sys/netgraph/ng_iface.c Tue Jan 20 22:26:09 2009 (r187495) @@ -356,6 +356,7 @@ static int ng_iface_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst, struct rtentry *rt0) { + struct m_tag *mtag; uint32_t af; int error; @@ -366,6 +367,23 @@ ng_iface_output(struct ifnet *ifp, struc return (ENETDOWN); } + /* Protect from deadly infinite recursion. */ + while ((mtag = m_tag_locate(m, MTAG_NGIF, MTAG_NGIF_CALLED, NULL))) { + if (*(struct ifnet **)(mtag + 1) == ifp) { + log(LOG_NOTICE, "Loop detected on %s\n", ifp->if_xname); + m_freem(m); + return (EDEADLK); + } + } + mtag = m_tag_alloc(MTAG_NGIF, MTAG_NGIF_CALLED, sizeof(struct ifnet *), + M_NOWAIT); + if (mtag == NULL) { + m_freem(m); + return (ENOMEM); + } + *(struct ifnet **)(mtag + 1) = ifp; + m_tag_prepend(m, mtag); + /* BPF writes need to be handled specially. */ if (dst->sa_family == AF_UNSPEC) { bcopy(dst->sa_data, &af, sizeof(af)); Modified: head/sys/netgraph/ng_iface.h ============================================================================== --- head/sys/netgraph/ng_iface.h Tue Jan 20 22:17:05 2009 (r187494) +++ head/sys/netgraph/ng_iface.h Tue Jan 20 22:26:09 2009 (r187495) @@ -72,4 +72,7 @@ enum { NGM_IFACE_GET_IFINDEX, }; +#define MTAG_NGIF NGM_IFACE_COOKIE +#define MTAG_NGIF_CALLED 0 | MTAG_PERSISTENT + #endif /* _NETGRAPH_NG_IFACE_H_ */ From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 22:34:39 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0799A106566C; Tue, 20 Jan 2009 22:34:39 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EA5158FC08; Tue, 20 Jan 2009 22:34:38 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KMYcab058828; Tue, 20 Jan 2009 22:34:38 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KMYclD058827; Tue, 20 Jan 2009 22:34:38 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <200901202234.n0KMYclD058827@svn.freebsd.org> From: Ed Maste Date: Tue, 20 Jan 2009 22:34:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187496 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb vm X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 22:34:39 -0000 Author: emaste Date: Tue Jan 20 22:34:38 2009 New Revision: 187496 URL: http://svn.freebsd.org/changeset/base/187496 Log: MFC r181693: Fix REDZONE(9) on amd64 and perhaps other 64 bit targets -- ensure the space that redzone adds to the allocation for storing its metadata is at least as large as the metadata that it will store there. PR: kern/128744 Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/vm/redzone.c Modified: stable/7/sys/vm/redzone.c ============================================================================== --- stable/7/sys/vm/redzone.c Tue Jan 20 22:26:09 2009 (r187495) +++ stable/7/sys/vm/redzone.c Tue Jan 20 22:34:38 2009 (r187496) @@ -54,6 +54,8 @@ static u_long redzone_roundup(u_long n) { + if (n < REDZONE_HSIZE) + n = REDZONE_HSIZE; if (n <= 128) return (128); else if (n <= 256) From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 22:37:57 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04D71106564A; Tue, 20 Jan 2009 22:37:57 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E85DE8FC12; Tue, 20 Jan 2009 22:37:56 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KMbuEu058961; Tue, 20 Jan 2009 22:37:56 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KMbuNf058960; Tue, 20 Jan 2009 22:37:56 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <200901202237.n0KMbuNf058960@svn.freebsd.org> From: Xin LI Date: Tue, 20 Jan 2009 22:37:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187497 - stable/7/lib/libstand X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 22:37:57 -0000 Author: delphij Date: Tue Jan 20 22:37:56 2009 New Revision: 187497 URL: http://svn.freebsd.org/changeset/base/187497 Log: MFC r185037: Obey signedness flag in %z case. Modified: stable/7/lib/libstand/ (props changed) stable/7/lib/libstand/printf.c Modified: stable/7/lib/libstand/printf.c ============================================================================== --- stable/7/lib/libstand/printf.c Tue Jan 20 22:34:38 2009 (r187496) +++ stable/7/lib/libstand/printf.c Tue Jan 20 22:37:56 2009 (r187497) @@ -381,7 +381,7 @@ handle_sign: else if (lflag) num = va_arg(ap, long); else if (zflag) - num = va_arg(ap, size_t); + num = va_arg(ap, ssize_t); else num = va_arg(ap, int); number: From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 22:49:50 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6850B10656C1; Tue, 20 Jan 2009 22:49:50 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 57AEE8FC18; Tue, 20 Jan 2009 22:49:50 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KMnoDK059329; Tue, 20 Jan 2009 22:49:50 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KMno0c059325; Tue, 20 Jan 2009 22:49:50 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <200901202249.n0KMno0c059325@svn.freebsd.org> From: Xin LI Date: Tue, 20 Jan 2009 22:49:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187501 - head/sbin/fsck_ffs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 22:49:51 -0000 Author: delphij Date: Tue Jan 20 22:49:49 2009 New Revision: 187501 URL: http://svn.freebsd.org/changeset/base/187501 Log: Rename option 'C' to 'D' (damaged) in order to avoid a conflict with upcoming Juniper 'C' (clean) flag. Requested by: obrien MFC after: 1 week Modified: head/sbin/fsck_ffs/fsck.h head/sbin/fsck_ffs/fsck_ffs.8 head/sbin/fsck_ffs/fsutil.c head/sbin/fsck_ffs/main.c Modified: head/sbin/fsck_ffs/fsck.h ============================================================================== --- head/sbin/fsck_ffs/fsck.h Tue Jan 20 22:48:52 2009 (r187500) +++ head/sbin/fsck_ffs/fsck.h Tue Jan 20 22:49:49 2009 (r187501) @@ -270,7 +270,7 @@ char yflag; /* assume a yes response * int bkgrdflag; /* use a snapshot to run on an active system */ int bflag; /* location of alternate super block */ int debug; /* output debugging info */ -char catastrophicflag; /* run in catastrophic mode */ +char damagedflag; /* run in damaged mode */ int cvtlevel; /* convert to newer file system format */ int bkgrdcheck; /* determine if background check is possible */ int bkgrdsumadj; /* whether the kernel have ability to adjust superblock summary */ Modified: head/sbin/fsck_ffs/fsck_ffs.8 ============================================================================== --- head/sbin/fsck_ffs/fsck_ffs.8 Tue Jan 20 22:48:52 2009 (r187500) +++ head/sbin/fsck_ffs/fsck_ffs.8 Tue Jan 20 22:49:49 2009 (r187501) @@ -29,7 +29,7 @@ .\" @(#)fsck.8 8.4 (Berkeley) 5/9/95 .\" $FreeBSD$ .\" -.Dd April 10, 2008 +.Dd January 20, 2009 .Dt FSCK_FFS 8 .Os .Sh NAME @@ -38,7 +38,7 @@ .Nd file system consistency check and interactive repair .Sh SYNOPSIS .Nm -.Op Fl BCFpfny +.Op Fl BDFpfny .Op Fl b Ar block .Op Fl c Ar level .Op Fl m Ar mode @@ -175,26 +175,6 @@ Use the block specified immediately afte the super block for the file system. An alternate super block is usually located at block 32 for UFS1, and block 160 for UFS2. -.It Fl C -Run -.Nm -in 'catastrophic recovery' mode, which will enable certain aggressive -operations that can make -.Nm -to survive with file systems that has very serious data damage, which -is an useful last resort when on disk data damage is very serious -and causes -.Nm -to crash otherwise. Be -.Em very careful -using this flag, it is dangerous if there are data transmission hazards -because a false positive cylinder group magic number mismatch could -cause -.Em irrevertible data loss! -.Pp -This option implies the -.Fl f -flag. .It Fl c Convert the file system to the specified level. Note that the level of a file system can only be raised. @@ -228,6 +208,26 @@ are being converted at once. The format of a file system can be determined from the first line of output from .Xr dumpfs 8 . +.It Fl D +Run +.Nm +in 'damaged recovery' mode, which will enable certain aggressive +operations that can make +.Nm +to survive with file systems that has very serious data damage, which +is an useful last resort when on disk data damage is very serious +and causes +.Nm +to crash otherwise. Be +.Em very careful +using this flag, it is dangerous if there are data transmission hazards +because a false positive cylinder group magic number mismatch could +cause +.Em irrevertible data loss! +.Pp +This option implies the +.Fl f +flag. .It Fl f Force .Nm Modified: head/sbin/fsck_ffs/fsutil.c ============================================================================== --- head/sbin/fsck_ffs/fsutil.c Tue Jan 20 22:48:52 2009 (r187500) +++ head/sbin/fsck_ffs/fsutil.c Tue Jan 20 22:49:49 2009 (r187501) @@ -427,7 +427,7 @@ check_cgmagic(int cg, struct cg *cgp) if (!cg_chkmagic(cgp)) { pwarn("CG %d: BAD MAGIC NUMBER\n", cg); - if (catastrophicflag) { + if (damagedflag) { if (reply("CLEAR CG")) { memset(cgp, 0, (size_t)sblock.fs_cgsize); cgp->cg_initediblk = sblock.fs_ipg; Modified: head/sbin/fsck_ffs/main.c ============================================================================== --- head/sbin/fsck_ffs/main.c Tue Jan 20 22:48:52 2009 (r187500) +++ head/sbin/fsck_ffs/main.c Tue Jan 20 22:49:49 2009 (r187501) @@ -81,8 +81,8 @@ main(int argc, char *argv[]) sync(); skipclean = 1; - catastrophicflag = 0; - while ((ch = getopt(argc, argv, "b:Bc:CdfFm:npy")) != -1) { + damagedflag = 0; + while ((ch = getopt(argc, argv, "b:Bc:dDfFm:npy")) != -1) { switch (ch) { case 'b': skipclean = 0; @@ -106,8 +106,8 @@ main(int argc, char *argv[]) debug++; break; - case 'C': - catastrophicflag = 1; + case 'D': + damagedflag = 1; /* FALLTHROUGH */ case 'f': From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 22:51:34 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 501C21065692; Tue, 20 Jan 2009 22:51:34 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.delphij.net (delphij-pt.tunnel.tserv2.fmt.ipv6.he.net [IPv6:2001:470:1f03:2c9::2]) by mx1.freebsd.org (Postfix) with ESMTP id DE89C8FC20; Tue, 20 Jan 2009 22:51:33 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [211.166.10.233]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tarsier.delphij.net (Postfix) with ESMTPS id DA6912844E; Wed, 21 Jan 2009 06:51:32 +0800 (CST) Received: from localhost (tarsier.geekcn.org [211.166.10.233]) by tarsier.geekcn.org (Postfix) with ESMTP id 8B095EB1A59; Wed, 21 Jan 2009 06:51:32 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([211.166.10.233]) by localhost (mail.geekcn.org [211.166.10.233]) (amavisd-new, port 10024) with ESMTP id 0YXrQS0-H-7e; Wed, 21 Jan 2009 06:51:27 +0800 (CST) Received: from charlie.delphij.net (adsl-76-237-33-62.dsl.pltn13.sbcglobal.net [76.237.33.62]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTPSA id 00209EB0F33; Wed, 21 Jan 2009 06:51:22 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:reply-to:organization:user-agent: mime-version:to:cc:subject:references:in-reply-to: x-enigmail-version:openpgp:content-type:content-transfer-encoding; b=nfJzAJOqNf332eda9M6FurfGHnquMpL9WUnOfRNVLa7I2kXAUi8Fz/0RwRsB8xCW5 T0ke2lcJ+iV6hu+7IKbbg== Message-ID: <49765564.7000808@delphij.net> Date: Tue, 20 Jan 2009 14:51:16 -0800 From: Xin LI Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.19 (X11/20090112) MIME-Version: 1.0 To: d@delphij.net References: <200901120039.n0C0dMKX043214@svn.freebsd.org> <20090112083144.GA69408@dragon.NUXI.org> <4971AE26.70406@delphij.net> In-Reply-To: <4971AE26.70406@delphij.net> X-Enigmail-Version: 0.95.7 OpenPGP: id=18EDEBA0; url=http://www.delphij.net/delphij.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-src-stable-7@FreeBSD.ORG, svn-src-stable@FreeBSD.ORG, svn-src-all@FreeBSD.ORG, obrien@FreeBSD.ORG, src-committers@FreeBSD.ORG, Xin LI Subject: Re: svn commit: r187069 - stable/7/sbin/fsck_ffs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d@delphij.net List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 22:51:36 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, David, I have made a change to rename my 'C' to 'D' to avoid the conflict. I will MFC my change after 1 week settle to see if there is objections. Cheers, - -- Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkl2VWMACgkQi+vbBBjt66BPHQCfYMW9AIJ5W9Q8PVVg0YoSa+FD KfUAn27fXoHFnAqjUom2e3JGb5QeCH+j =atXi -----END PGP SIGNATURE----- From owner-svn-src-all@FreeBSD.ORG Tue Jan 20 23:25:28 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19D31106566C; Tue, 20 Jan 2009 23:25:28 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 098238FC16; Tue, 20 Jan 2009 23:25:28 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0KNPRee060227; Tue, 20 Jan 2009 23:25:27 GMT (envelope-from emax@svn.freebsd.org) Received: (from emax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0KNPR0A060226; Tue, 20 Jan 2009 23:25:27 GMT (envelope-from emax@svn.freebsd.org) Message-Id: <200901202325.n0KNPR0A060226@svn.freebsd.org> From: Maksim Yevmenkin Date: Tue, 20 Jan 2009 23:25:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187505 - head/sys/dev/usb2/bluetooth X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2009 23:25:28 -0000 Author: emax Date: Tue Jan 20 23:25:27 2009 New Revision: 187505 URL: http://svn.freebsd.org/changeset/base/187505 Log: Fix typo in comment Pointed out by: Daan Vreeken / Daan at vehosting dot nl Modified: head/sys/dev/usb2/bluetooth/ng_ubt2.c Modified: head/sys/dev/usb2/bluetooth/ng_ubt2.c ============================================================================== --- head/sys/dev/usb2/bluetooth/ng_ubt2.c Tue Jan 20 23:20:09 2009 (r187504) +++ head/sys/dev/usb2/bluetooth/ng_ubt2.c Tue Jan 20 23:25:27 2009 (r187505) @@ -64,7 +64,7 @@ * Netgraph point of view). Any variable that is only modified from the * Netgraph context does not require any additonal locking. It is generally * *NOT* allowed to grab *ANY* additional lock. Whatever you do, *DO NOT* - * not grab any long-sleep lock in the Netgraph context. In fact, the only + * grab any long-sleep lock in the Netgraph context. In fact, the only * lock that is allowed in the Netgraph context is the sc_mbufq_mtx lock. * * 3) Taskqueue context. This is where ubt_task runs. Since we are NOT allowed From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 00:26:45 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE49B106564A; Wed, 21 Jan 2009 00:26:45 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9D4358FC1D; Wed, 21 Jan 2009 00:26:45 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0L0QjZP061299; Wed, 21 Jan 2009 00:26:45 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0L0Qjfe061298; Wed, 21 Jan 2009 00:26:45 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <200901210026.n0L0Qjfe061298@svn.freebsd.org> From: Xin LI Date: Wed, 21 Jan 2009 00:26:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187506 - in stable/7/sys: . kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 00:26:46 -0000 Author: delphij Date: Wed Jan 21 00:26:45 2009 New Revision: 187506 URL: http://svn.freebsd.org/changeset/base/187506 Log: MFC r185036: Obey signedness flag in %z case. Modified: stable/7/sys/ (props changed) stable/7/sys/kern/subr_prf.c Modified: stable/7/sys/kern/subr_prf.c ============================================================================== --- stable/7/sys/kern/subr_prf.c Tue Jan 20 23:25:27 2009 (r187505) +++ stable/7/sys/kern/subr_prf.c Wed Jan 21 00:26:45 2009 (r187506) @@ -810,7 +810,7 @@ handle_sign: else if (lflag) num = va_arg(ap, long); else if (zflag) - num = va_arg(ap, size_t); + num = va_arg(ap, ssize_t); else if (hflag) num = (short)va_arg(ap, int); else if (cflag) From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 02:53:00 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B88FA106564A; Wed, 21 Jan 2009 02:53:00 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A64108FC0C; Wed, 21 Jan 2009 02:53:00 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0L2r0s4064104; Wed, 21 Jan 2009 02:53:00 GMT (envelope-from sam@svn.freebsd.org) Received: (from sam@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0L2r0ms064102; Wed, 21 Jan 2009 02:53:00 GMT (envelope-from sam@svn.freebsd.org) Message-Id: <200901210253.n0L2r0ms064102@svn.freebsd.org> From: Sam Leffler Date: Wed, 21 Jan 2009 02:53:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187510 - in head/sys/dev/ath/ath_hal: ar5211 ar5212 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 02:53:01 -0000 Author: sam Date: Wed Jan 21 02:53:00 2009 New Revision: 187510 URL: http://svn.freebsd.org/changeset/base/187510 Log: correct typo that left programmed sifs time in the slot time (to be applied on subsequent resets) Submitted by: Jiri Fojtasek Modified: head/sys/dev/ath/ath_hal/ar5211/ar5211_misc.c head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c Modified: head/sys/dev/ath/ath_hal/ar5211/ar5211_misc.c ============================================================================== --- head/sys/dev/ath/ath_hal/ar5211/ar5211_misc.c Wed Jan 21 01:31:08 2009 (r187509) +++ head/sys/dev/ath/ath_hal/ar5211/ar5211_misc.c Wed Jan 21 02:53:00 2009 (r187510) @@ -14,7 +14,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: ar5211_misc.c,v 1.7 2008/11/27 22:29:52 sam Exp $ + * $FreeBSD$ */ #include "opt_ah.h" @@ -432,7 +432,7 @@ ar5211SetSifsTime(struct ath_hal *ah, u_ } else { /* convert to system clocks */ OS_REG_WRITE(ah, AR_D_GBL_IFS_SIFS, ath_hal_mac_clks(ah, us)); - ahp->ah_slottime = us; + ahp->ah_sifstime = us; return AH_TRUE; } } Modified: head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c ============================================================================== --- head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c Wed Jan 21 01:31:08 2009 (r187509) +++ head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c Wed Jan 21 02:53:00 2009 (r187510) @@ -453,7 +453,7 @@ ar5212SetSifsTime(struct ath_hal *ah, u_ } else { /* convert to system clocks */ OS_REG_WRITE(ah, AR_D_GBL_IFS_SIFS, ath_hal_mac_clks(ah, us)); - ahp->ah_slottime = us; + ahp->ah_sifstime = us; return AH_TRUE; } } From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 04:19:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FFFB10656E1; Wed, 21 Jan 2009 04:19:18 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5DAAC8FC23; Wed, 21 Jan 2009 04:19:18 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0L4JIRS066136; Wed, 21 Jan 2009 04:19:18 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0L4JIG7066134; Wed, 21 Jan 2009 04:19:18 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200901210419.n0L4JIG7066134@svn.freebsd.org> From: Andrew Thompson Date: Wed, 21 Jan 2009 04:19:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187511 - in head/sys: kern sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 04:19:19 -0000 Author: thompsa Date: Wed Jan 21 04:19:18 2009 New Revision: 187511 URL: http://svn.freebsd.org/changeset/base/187511 Log: Add functions WITNESS so it can be asserted that the lock is not released for a section of code, this uses WITNESS_NORELEASE() and WITNESS_RELEASEOK() to mark the boundaries. Both functions require the lock to be held when calling. This is intended for scenarios like a bus asserting that the bus lock is not dropped during a driver call. There doesn't appear to be a man page to document this in. Reviewed by: jhb Modified: head/sys/kern/subr_witness.c head/sys/sys/lock.h Modified: head/sys/kern/subr_witness.c ============================================================================== --- head/sys/kern/subr_witness.c Wed Jan 21 02:53:00 2009 (r187510) +++ head/sys/kern/subr_witness.c Wed Jan 21 04:19:18 2009 (r187511) @@ -127,6 +127,7 @@ __FBSDID("$FreeBSD$"); #define LI_RECURSEMASK 0x0000ffff /* Recursion depth of lock instance. */ #define LI_EXCLUSIVE 0x00010000 /* Exclusive lock instance. */ +#define LI_NORELEASE 0x00020000 /* Lock not allowed to be released. */ /* Define this to check for blessed mutexes */ #undef BLESSING @@ -367,6 +368,7 @@ static struct witness_lock_order_data *w struct witness *parent, struct witness *child); static void witness_list_lock(struct lock_instance *instance); +static void witness_setflag(struct lock_object *lock, int flag, int set); #ifdef KDB #define witness_debugger(c) _witness_debugger(c, __func__) @@ -1509,6 +1511,11 @@ found: instance->li_line); panic("share->uexcl"); } + if ((instance->li_flags & LI_NORELEASE) != 0 && witness_watch > 0) { + printf("forbidden unlock of (%s) %s @ %s:%d\n", class->lc_name, + lock->lo_name, file, line); + panic("lock marked norelease"); + } /* If we are recursed, unrecurse. */ if ((instance->li_flags & LI_RECURSEMASK) > 0) { @@ -2224,6 +2231,48 @@ witness_assert(struct lock_object *lock, #endif /* INVARIANT_SUPPORT */ } +static void +witness_setflag(struct lock_object *lock, int flag, int set) +{ + struct lock_list_entry *lock_list; + struct lock_instance *instance; + struct lock_class *class; + + if (lock->lo_witness == NULL || witness_watch == -1 || panicstr != NULL) + return; + class = LOCK_CLASS(lock); + if (class->lc_flags & LC_SLEEPLOCK) + lock_list = curthread->td_sleeplocks; + else { + if (witness_skipspin) + return; + lock_list = PCPU_GET(spinlocks); + } + instance = find_instance(lock_list, lock); + if (instance == NULL) + panic("%s: lock (%s) %s not locked", __func__, + class->lc_name, lock->lo_name); + + if (set) + instance->li_flags |= flag; + else + instance->li_flags &= ~flag; +} + +void +witness_norelease(struct lock_object *lock) +{ + + witness_setflag(lock, LI_NORELEASE, 1); +} + +void +witness_releaseok(struct lock_object *lock) +{ + + witness_setflag(lock, LI_NORELEASE, 0); +} + #ifdef DDB static void witness_ddb_list(struct thread *td) Modified: head/sys/sys/lock.h ============================================================================== --- head/sys/sys/lock.h Wed Jan 21 02:53:00 2009 (r187510) +++ head/sys/sys/lock.h Wed Jan 21 04:19:18 2009 (r187511) @@ -216,6 +216,8 @@ int witness_warn(int, struct lock_object void witness_assert(struct lock_object *, int, const char *, int); void witness_display_spinlock(struct lock_object *, struct thread *); int witness_line(struct lock_object *); +void witness_norelease(struct lock_object *); +void witness_releaseok(struct lock_object *); const char *witness_file(struct lock_object *); void witness_thread_exit(struct thread *); @@ -267,6 +269,12 @@ void witness_thread_exit(struct thread * #define WITNESS_RESTORE(lock, n) \ witness_restore((lock), __CONCAT(n, __wf), __CONCAT(n, __wl)) +#define WITNESS_NORELEASE(lock) \ + witness_norelease(&(lock)->lock_object) + +#define WITNESS_RELEASEOK(lock) \ + witness_releaseok(&(lock)->lock_object) + #define WITNESS_FILE(lock) \ witness_file(lock) @@ -287,6 +295,8 @@ void witness_thread_exit(struct thread * #define WITNESS_SAVE_DECL(n) #define WITNESS_SAVE(lock, n) #define WITNESS_RESTORE(lock, n) +#define WITNESS_NORELEASE(lock) +#define WITNESS_RELEASEOK(lock) #define WITNESS_FILE(lock) ("?") #define WITNESS_LINE(lock) (0) #endif /* WITNESS */ From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 04:25:37 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16309106567E; Wed, 21 Jan 2009 04:25:37 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from mail-bw0-f13.google.com (mail-bw0-f13.google.com [209.85.218.13]) by mx1.freebsd.org (Postfix) with ESMTP id 0D5908FC1C; Wed, 21 Jan 2009 04:25:35 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by bwz6 with SMTP id 6so123921bwz.19 for ; Tue, 20 Jan 2009 20:25:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Z24l5/Z55f5bJYoiQN28j4YYJBhDDhKWFSRnFlT5RrI=; b=buLv09xbadfuIAHRrUWucwa99myODXw+giM2EsaCQ7i2FHfN42FGifF5cV0KHqm9mX zhsgXGr41r1ZMKmNZ+uMlAXl3Vbhp7nM/EaVdCTeptqIeeG4OvsmPA4/6h/aXW2bDRFo X9n+PicjUGzym5RLTf4tInp6TabkxsYMjBomQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=EVGzYOrpqQFUVofcxM4tstllfs0Oefis3wjRydCNI/3qvrou5CWWExXLGphIX+1HRX ADyIWvJugpqW6siir+sL8vdzgmo60yBb5dfIZ23a3dwFn0bZqFcRDQQTf067zN6J14wD II1A8YRFeXZQ9L2du+4jRagXdq02SENnzptEg= MIME-Version: 1.0 Received: by 10.181.136.4 with SMTP id o4mr1037173bkn.0.1232511934820; Tue, 20 Jan 2009 20:25:34 -0800 (PST) In-Reply-To: <70e8236f0901200222q4b00b7a5h8c3a35ab432f9cb2@mail.gmail.com> References: <200901191619.n0JGJrhJ015123@svn.freebsd.org> <20090119.181322.-625070925.imp@bsdimp.com> <7d6fde3d0901200052w20755420l94f0c02c547f53b7@mail.gmail.com> <70e8236f0901200222q4b00b7a5h8c3a35ab432f9cb2@mail.gmail.com> Date: Tue, 20 Jan 2009 20:25:34 -0800 Message-ID: <7d6fde3d0901202025m5073f93ex93fbf628751a4217@mail.gmail.com> From: Garrett Cooper To: =?ISO-8859-1?Q?Jo=E3o_Barros?= Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: svn-src-head@freebsd.org, sobomax@freebsd.org, svn-src-all@freebsd.org, "M. Warner Losh" Subject: Re: svn commit: r187437 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 04:25:37 -0000 On Tue, Jan 20, 2009 at 2:22 AM, Jo=E3o Barros wrot= e: > On Tue, Jan 20, 2009 at 8:52 AM, Garrett Cooper wrot= e: >> On Mon, Jan 19, 2009 at 5:13 PM, M. Warner Losh wrote: >>> In message: <200901191619.n0JGJrhJ015123@svn.freebsd.org> >>> Maxim Sobolev writes: >>> : Author: sobomax >>> : Date: Mon Jan 19 16:19:53 2009 >>> : New Revision: 187437 >>> : URL: http://svn.freebsd.org/changeset/base/187437 >>> : >>> : Log: >>> : Mention the fact that the NTFS kernel support isn't >>> : very well maintained and point user to sysutils/fusefs-ntfs, which >>> : at the time of this writing seems to be a better alternative. >>> : >>> : Suggested by: luigi >>> : MFC after: 2 weeks >>> >>> Again, I'd not MFC this to 6.x for sure and maybe not even to 7.x >>> since ntfs works well there. >>> >>> Warner >>> >>> : Modified: >>> : head/sys/conf/NOTES >>> : >>> : Modified: head/sys/conf/NOTES >>> : =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D >>> : --- head/sys/conf/NOTES Mon Jan 19 15:59:05 2009 (r18743= 6) >>> : +++ head/sys/conf/NOTES Mon Jan 19 16:19:53 2009 (r18743= 7) >>> : @@ -942,7 +942,11 @@ options HPFS #OS/2 File syst= em >>> : options MSDOSFS #MS DOS File System (FAT, FAT32= ) >>> : options NFSSERVER #Network File System server >>> : options NFSLOCKD #Network Lock Manager >>> : -options NTFS #NT File System >>> : + >>> : +# NT File System. Read-mostly and it's not actively maintained. >>> : +# For a better NTFS support consider sysutils/fusefs-ntfs port/packa= ge. >>> : +options NTFS >>> : + >>> : options NULLFS #NULL filesystem >>> : # Broken (depends on NCP): >>> : #options NWFS #NetWare filesystem >> >> Uh, I got consistent panics on 7.x when mounting NTFS partitions >> created with XP. >> I was creating the partition without MSDOS 8.3 short filename >> support though. I personally think that the copy of NTFS in the kernel >> is stale and unusable for a lot of different use-cases, to be honest.. >> -Garrett > > I moved 2x 320GB almost full NTFS partitions to my ZFS home server > using mount_ntfs. ymmv ;-) Yeah, I think the problem was either XP SP2 or the fact that I disabled the MSDOS 8.3 charset features in the registry in Windows. Either way, it looks like there are issues on certain architectures according to posters on current@. -Garrett From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 06:32:33 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1ECDC1065695; Wed, 21 Jan 2009 06:32:33 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0B1B08FC22; Wed, 21 Jan 2009 06:32:32 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0L6WWPJ068906; Wed, 21 Jan 2009 06:32:32 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0L6WW4Y068905; Wed, 21 Jan 2009 06:32:32 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901210632.n0L6WW4Y068905@svn.freebsd.org> From: Alan Cox Date: Wed, 21 Jan 2009 06:32:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187520 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 06:32:34 -0000 Author: alc Date: Wed Jan 21 06:32:32 2009 New Revision: 187520 URL: http://svn.freebsd.org/changeset/base/187520 Log: MFC rev 177851 Optimize pmap_pml4e() and pmap_pdpe() based upon two observations: The given pmap is never NULL, and therefore pmap_pml4e() can never return NULL. The pervasive use of these inline functions throughout the pmap makes these simple changes worthwhile. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/pmap.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/amd64/amd64/pmap.c ============================================================================== --- stable/7/sys/amd64/amd64/pmap.c Wed Jan 21 06:30:53 2009 (r187519) +++ stable/7/sys/amd64/amd64/pmap.c Wed Jan 21 06:32:32 2009 (r187520) @@ -290,8 +290,6 @@ static __inline pml4_entry_t * pmap_pml4e(pmap_t pmap, vm_offset_t va) { - if (!pmap) - return NULL; return (&pmap->pm_pml4[pmap_pml4e_index(va)]); } @@ -312,7 +310,7 @@ pmap_pdpe(pmap_t pmap, vm_offset_t va) pml4_entry_t *pml4e; pml4e = pmap_pml4e(pmap, va); - if (pml4e == NULL || (*pml4e & PG_V) == 0) + if ((*pml4e & PG_V) == 0) return NULL; return (pmap_pml4e_to_pdpe(pml4e, va)); } From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 06:55:27 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F190C1065673; Wed, 21 Jan 2009 06:55:27 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DE05E8FC0A; Wed, 21 Jan 2009 06:55:27 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0L6tRaY069445; Wed, 21 Jan 2009 06:55:27 GMT (envelope-from kientzle@svn.freebsd.org) Received: (from kientzle@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0L6tRur069441; Wed, 21 Jan 2009 06:55:27 GMT (envelope-from kientzle@svn.freebsd.org) Message-Id: <200901210655.n0L6tRur069441@svn.freebsd.org> From: Tim Kientzle Date: Wed, 21 Jan 2009 06:55:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187521 - in head/lib/libarchive: . test X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 06:55:28 -0000 Author: kientzle Date: Wed Jan 21 06:55:27 2009 New Revision: 187521 URL: http://svn.freebsd.org/changeset/base/187521 Log: Merge-from-Googlecode r419 In archive_write_disk: If archive_write_header() fails to create the file, that's a failure and should return ARCHIVE_FAILED. Metadata restore failures still return ARCHIVE_WARN, because that's non-critical. Fix test_write_disk_secure test to verify the correct return code in one case; add test_write_disk_failures to do another very simple test of restore failure. This should fix cpio coredumping when it tries to restore to a write-protected directory. Thanks to: Giorgos Keramidas MFC after: 30 days Added: head/lib/libarchive/test/test_write_disk_failures.c (contents, props changed) Modified: head/lib/libarchive/archive_write_disk.c head/lib/libarchive/test/Makefile head/lib/libarchive/test/test_write_disk_secure.c Modified: head/lib/libarchive/archive_write_disk.c ============================================================================== --- head/lib/libarchive/archive_write_disk.c Wed Jan 21 06:32:32 2009 (r187520) +++ head/lib/libarchive/archive_write_disk.c Wed Jan 21 06:55:27 2009 (r187521) @@ -484,7 +484,7 @@ _archive_write_header(struct archive *_a } /* We've created the object and are ready to pour data into it. */ - if (ret == ARCHIVE_OK) + if (ret >= ARCHIVE_WARN) a->archive.state = ARCHIVE_STATE_DATA; /* * If it's not open, tell our client not to try writing. @@ -843,7 +843,7 @@ edit_deep_directories(struct archive_wri *tail = '\0'; /* Terminate dir portion */ ret = create_dir(a, a->name); if (ret == ARCHIVE_OK && chdir(a->name) != 0) - ret = ARCHIVE_WARN; + ret = ARCHIVE_FAILED; *tail = '/'; /* Restore the / we removed. */ if (ret != ARCHIVE_OK) return; @@ -884,7 +884,7 @@ restore_entry(struct archive_write_disk /* We tried, but couldn't get rid of it. */ archive_set_error(&a->archive, errno, "Could not unlink"); - return(ARCHIVE_WARN); + return(ARCHIVE_FAILED); } } @@ -903,7 +903,7 @@ restore_entry(struct archive_write_disk && (a->flags & ARCHIVE_EXTRACT_NO_OVERWRITE)) { /* If we're not overwriting, we're done. */ archive_set_error(&a->archive, en, "Already exists"); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } /* @@ -918,7 +918,7 @@ restore_entry(struct archive_write_disk if (rmdir(a->name) != 0) { archive_set_error(&a->archive, errno, "Can't remove already-existing dir"); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } a->pst = NULL; /* Try again. */ @@ -945,7 +945,7 @@ restore_entry(struct archive_write_disk if (r != 0) { archive_set_error(&a->archive, errno, "Can't stat existing object"); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } /* @@ -974,7 +974,7 @@ restore_entry(struct archive_write_disk if (unlink(a->name) != 0) { archive_set_error(&a->archive, errno, "Can't unlink already-existing object"); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } a->pst = NULL; /* Try again. */ @@ -984,7 +984,7 @@ restore_entry(struct archive_write_disk if (rmdir(a->name) != 0) { archive_set_error(&a->archive, errno, "Can't remove already-existing dir"); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } /* Try again. */ en = create_filesystem_object(a); @@ -1007,7 +1007,7 @@ restore_entry(struct archive_write_disk if (en) { /* Everything failed; give up here. */ archive_set_error(&a->archive, en, "Can't create '%s'", a->name); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } a->pst = NULL; /* Cached stat data no longer valid. */ @@ -1393,7 +1393,7 @@ check_symlinks(struct archive_write_disk "Could not remove symlink %s", a->name); pn[0] = c; - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } a->pst = NULL; /* @@ -1417,7 +1417,7 @@ check_symlinks(struct archive_write_disk "Cannot remove intervening symlink %s", a->name); pn[0] = c; - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } a->pst = NULL; } else { @@ -1425,7 +1425,7 @@ check_symlinks(struct archive_write_disk "Cannot extract through symlink %s", a->name); pn[0] = c; - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } } } @@ -1551,7 +1551,7 @@ create_parent_dir(struct archive_write_d * Create the specified dir, recursing to create parents as necessary. * * Returns ARCHIVE_OK if the path exists when we're done here. - * Otherwise, returns ARCHIVE_WARN. + * Otherwise, returns ARCHIVE_FAILED. * Assumes path is in mutable storage; path is unchanged on exit. */ static int @@ -1596,18 +1596,18 @@ create_dir(struct archive_write_disk *a, if ((a->flags & ARCHIVE_EXTRACT_NO_OVERWRITE)) { archive_set_error(&a->archive, EEXIST, "Can't create directory '%s'", path); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } if (unlink(path) != 0) { archive_set_error(&a->archive, errno, "Can't create directory '%s': " "Conflicting file cannot be removed"); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } } else if (errno != ENOENT && errno != ENOTDIR) { /* Stat failed? */ archive_set_error(&a->archive, errno, "Can't test directory '%s'", path); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } else if (slash != NULL) { *slash = '\0'; r = create_dir(a, path); @@ -1648,7 +1648,7 @@ create_dir(struct archive_write_disk *a, return (ARCHIVE_OK); archive_set_error(&a->archive, errno, "Failed to create dir '%s'", path); - return (ARCHIVE_WARN); + return (ARCHIVE_FAILED); } /* Modified: head/lib/libarchive/test/Makefile ============================================================================== --- head/lib/libarchive/test/Makefile Wed Jan 21 06:32:32 2009 (r187520) +++ head/lib/libarchive/test/Makefile Wed Jan 21 06:55:27 2009 (r187521) @@ -58,6 +58,7 @@ TESTS= \ test_write_compress.c \ test_write_compress_program.c \ test_write_disk.c \ + test_write_disk_failures.c \ test_write_disk_hardlink.c \ test_write_disk_perms.c \ test_write_disk_secure.c \ Added: head/lib/libarchive/test/test_write_disk_failures.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lib/libarchive/test/test_write_disk_failures.c Wed Jan 21 06:55:27 2009 (r187521) @@ -0,0 +1,62 @@ +/*- + * Copyright (c) 2003-2007 Tim Kientzle + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +#include "test.h" +__FBSDID("$FreeBSD$"); + +#if ARCHIVE_VERSION_NUMBER >= 1009000 + +#define UMASK 022 + + +#endif + +DEFINE_TEST(test_write_disk_failures) +{ +#if ARCHIVE_VERSION_NUMBER < 1009000 + skipping("archive_write_disk interface"); +#else + struct archive_entry *ae; + struct archive *a; + + /* Force the umask to something predictable. */ + umask(UMASK); + + /* A directory that we can't write to. */ + assertEqualInt(0, mkdir("dir", 0555)); + + /* Try to extract a regular file into the directory above. */ + assert((ae = archive_entry_new()) != NULL); + archive_entry_copy_pathname(ae, "dir/file"); + archive_entry_set_mode(ae, S_IFREG | 0755); + archive_entry_set_size(ae, 8); + assert((a = archive_write_disk_new()) != NULL); + archive_write_disk_set_options(a, ARCHIVE_EXTRACT_TIME); + archive_entry_set_mtime(ae, 123456789, 0); + assertEqualIntA(a, ARCHIVE_FAILED, archive_write_header(a, ae)); + assertEqualIntA(a, 0, archive_write_finish_entry(a)); + assertEqualInt(0, archive_write_finish(a)); + archive_entry_free(ae); +#endif +} Modified: head/lib/libarchive/test/test_write_disk_secure.c ============================================================================== --- head/lib/libarchive/test/test_write_disk_secure.c Wed Jan 21 06:32:32 2009 (r187520) +++ head/lib/libarchive/test/test_write_disk_secure.c Wed Jan 21 06:55:27 2009 (r187521) @@ -80,7 +80,7 @@ DEFINE_TEST(test_write_disk_secure) archive_entry_set_mode(ae, S_IFREG | 0777); archive_write_disk_set_options(a, ARCHIVE_EXTRACT_SECURE_SYMLINKS); failure("Extracting a file through a symlink should fail here."); - assertEqualInt(ARCHIVE_WARN, archive_write_header(a, ae)); + assertEqualInt(ARCHIVE_FAILED, archive_write_header(a, ae)); archive_entry_free(ae); assert(0 == archive_write_finish_entry(a)); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 07:33:19 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2D2E106564A; Wed, 21 Jan 2009 07:33:18 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C4CC18FC0A; Wed, 21 Jan 2009 07:33:18 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0L7XIYq070138; Wed, 21 Jan 2009 07:33:18 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0L7XIsn070136; Wed, 21 Jan 2009 07:33:18 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901210733.n0L7XIsn070136@svn.freebsd.org> From: Alan Cox Date: Wed, 21 Jan 2009 07:33:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187522 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb i386/i386 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 07:33:19 -0000 Author: alc Date: Wed Jan 21 07:33:18 2009 New Revision: 187522 URL: http://svn.freebsd.org/changeset/base/187522 Log: MFC rev 180846 Style fixes to several function definitions. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/pmap.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/i386/pmap.c Modified: stable/7/sys/amd64/amd64/pmap.c ============================================================================== --- stable/7/sys/amd64/amd64/pmap.c Wed Jan 21 06:55:27 2009 (r187521) +++ stable/7/sys/amd64/amd64/pmap.c Wed Jan 21 07:33:18 2009 (r187522) @@ -2602,9 +2602,8 @@ pmap_kenter_temporary(vm_paddr_t pa, int * are taken, but the code works. */ void -pmap_object_init_pt(pmap_t pmap, vm_offset_t addr, - vm_object_t object, vm_pindex_t pindex, - vm_size_t size) +pmap_object_init_pt(pmap_t pmap, vm_offset_t addr, vm_object_t object, + vm_pindex_t pindex, vm_size_t size) { vm_offset_t va; vm_page_t p, pdpg; @@ -2728,7 +2727,7 @@ pmap_change_wiring(pmap_t pmap, vm_offse void pmap_copy(pmap_t dst_pmap, pmap_t src_pmap, vm_offset_t dst_addr, vm_size_t len, - vm_offset_t src_addr) + vm_offset_t src_addr) { vm_page_t free; vm_offset_t addr; @@ -3339,10 +3338,7 @@ pmap_unmapdev(vm_offset_t va, vm_size_t } int -pmap_change_attr(va, size, mode) - vm_offset_t va; - vm_size_t size; - int mode; +pmap_change_attr(vm_offset_t va, vm_size_t size, int mode) { vm_offset_t base, offset, tmpva; pd_entry_t *pde; Modified: stable/7/sys/i386/i386/pmap.c ============================================================================== --- stable/7/sys/i386/i386/pmap.c Wed Jan 21 06:55:27 2009 (r187521) +++ stable/7/sys/i386/i386/pmap.c Wed Jan 21 07:33:18 2009 (r187522) @@ -2674,9 +2674,8 @@ pmap_kenter_temporary(vm_paddr_t pa, int * are taken, but the code works. */ void -pmap_object_init_pt(pmap_t pmap, vm_offset_t addr, - vm_object_t object, vm_pindex_t pindex, - vm_size_t size) +pmap_object_init_pt(pmap_t pmap, vm_offset_t addr, vm_object_t object, + vm_pindex_t pindex, vm_size_t size) { vm_page_t p; @@ -2781,7 +2780,7 @@ pmap_change_wiring(pmap_t pmap, vm_offse void pmap_copy(pmap_t dst_pmap, pmap_t src_pmap, vm_offset_t dst_addr, vm_size_t len, - vm_offset_t src_addr) + vm_offset_t src_addr) { vm_page_t free; vm_offset_t addr; @@ -3409,10 +3408,7 @@ pmap_unmapdev(vm_offset_t va, vm_size_t } int -pmap_change_attr(va, size, mode) - vm_offset_t va; - vm_size_t size; - int mode; +pmap_change_attr(vm_offset_t va, vm_size_t size, int mode) { vm_offset_t base, offset, tmpva; pt_entry_t *pte; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 07:41:24 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 787C2106564A; Wed, 21 Jan 2009 07:41:24 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 659148FC08; Wed, 21 Jan 2009 07:41:24 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0L7fOdg070344; Wed, 21 Jan 2009 07:41:24 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0L7fODh070343; Wed, 21 Jan 2009 07:41:24 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <200901210741.n0L7fODh070343@svn.freebsd.org> From: Alan Cox Date: Wed, 21 Jan 2009 07:41:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187523 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 07:41:25 -0000 Author: alc Date: Wed Jan 21 07:41:24 2009 New Revision: 187523 URL: http://svn.freebsd.org/changeset/base/187523 Log: MFC rev 175325 Make pmap_is_prefaultable() more TLB friendly. Specifically, make it use the kernel's direct map instead of the pmap's recursive mapping to access the lowest level in the page table. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/pmap.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/amd64/amd64/pmap.c ============================================================================== --- stable/7/sys/amd64/amd64/pmap.c Wed Jan 21 07:33:18 2009 (r187522) +++ stable/7/sys/amd64/amd64/pmap.c Wed Jan 21 07:41:24 2009 (r187523) @@ -3091,7 +3091,7 @@ pmap_is_prefaultable(pmap_t pmap, vm_off PMAP_LOCK(pmap); pde = pmap_pde(pmap, addr); if (pde != NULL && (*pde & PG_V)) { - pte = vtopte(addr); + pte = pmap_pde_to_pte(pde, addr); rv = (*pte & PG_V) == 0; } PMAP_UNLOCK(pmap); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 08:30:04 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01C13106566C; Wed, 21 Jan 2009 08:30:04 +0000 (UTC) (envelope-from remko@elvandar.org) Received: from websrv01.jr-hosting.nl (websrv01.jr-hosting.nl [78.47.69.233]) by mx1.freebsd.org (Postfix) with ESMTP id AF4E98FC08; Wed, 21 Jan 2009 08:30:03 +0000 (UTC) (envelope-from remko@elvandar.org) Received: from localhost ([127.0.0.1] helo=galain.elvandar.org) by websrv01.jr-hosting.nl with esmtpa (Exim 4.69 (FreeBSD)) (envelope-from ) id 1LPY2c-0002ZX-Fp; Wed, 21 Jan 2009 09:02:26 +0100 Received: from 145.7.91.133 (SquirrelMail authenticated user remko) by galain.elvandar.org with HTTP; Wed, 21 Jan 2009 09:02:26 +0100 (CET) Message-ID: <961384553be4a4a010d185658b355981.squirrel@galain.elvandar.org> In-Reply-To: <200901202217.n0KMH5U8058352@svn.freebsd.org> References: <200901202217.n0KMH5U8058352@svn.freebsd.org> Date: Wed, 21 Jan 2009 09:02:26 +0100 (CET) From: "Remko Lodder" To: "Maksim Yevmenkin" User-Agent: SquirrelMail/1.4.16 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187494 - head/sys/dev/usb2/bluetooth X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: remko@elvandar.org List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 08:30:04 -0000 On Tue, January 20, 2009 11:17 pm, Maksim Yevmenkin wrote: > Author: emax > Date: Tue Jan 20 22:17:05 2009 > New Revision: 187494 > URL: http://svn.freebsd.org/changeset/base/187494 > > Log: > Update (well, actually rewrite mostly) ng_ubt2 driver for USB2. > > Reviewed by: HPS, alfred > Blessed by: HPS > nice! good work ;) -- /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 10:51:55 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4317D106564A; Wed, 21 Jan 2009 10:51:55 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 320858FC12; Wed, 21 Jan 2009 10:51:55 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LAptxj073947; Wed, 21 Jan 2009 10:51:55 GMT (envelope-from phk@svn.freebsd.org) Received: (from phk@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LAptHZ073946; Wed, 21 Jan 2009 10:51:55 GMT (envelope-from phk@svn.freebsd.org) Message-Id: <200901211051.n0LAptHZ073946@svn.freebsd.org> From: Poul-Henning Kamp Date: Wed, 21 Jan 2009 10:51:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187524 - head/share/zoneinfo X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 10:51:55 -0000 Author: phk Date: Wed Jan 21 10:51:54 2009 New Revision: 187524 URL: http://svn.freebsd.org/changeset/base/187524 Log: Latest bulletin C from Daniel GAMBIS: no leap at the end of june 2009. Modified: head/share/zoneinfo/leapseconds Modified: head/share/zoneinfo/leapseconds ============================================================================== --- head/share/zoneinfo/leapseconds Wed Jan 21 07:41:24 2009 (r187523) +++ head/share/zoneinfo/leapseconds Wed Jan 21 10:51:54 2009 (r187524) @@ -58,28 +58,19 @@ Leap 2008 Dec 31 23:59:60 + S # e-mail : services.iers@obspm.fr # http://hpiers.obspm.fr/eop-pc # -# Paris, 4 July 2008 +# Paris, 15 January 2009 # -# Bulletin C 36 +# Bulletin C 37 # # To authorities responsible # for the measurement and # distribution of time # -# UTC TIME STEP -# on the 1st of January 2009 -# -# A positive leap second will be introduced at the end of December 2008. -# The sequence of dates of the UTC second markers will be: -# -# 2008 December 31, 23h 59m 59s -# 2008 December 31, 23h 59m 60s -# 2009 January 1, 0h 0m 0s -# -# The difference between UTC and the International Atomic Time TAI is: -# -# from 2006 January 1, 0h UTC, to 2009 January 1 0h UTC : UTC-TAI = - 33s -# from 2009 January 1, 0h UTC, until further notice : UTC-TAI = - 34s +# NO positive leap second will be introduced at the end of June 2009. +# The difference between Coordinated Universal Time UTC and the +# International Atomic Time TAI is : +# +# from 2009 January 1, 0h UTC, until further notice : UTC-TAI = -34 s # # Leap seconds can be introduced in UTC at the end of the months of December # or June, depending on the evolution of UT1-TAI. Bulletin C is mailed every From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 12:11:19 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9FA01065861; Wed, 21 Jan 2009 12:11:19 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: from acme.spoerlein.net (cl-43.dus-01.de.sixxs.net [IPv6:2a01:198:200:2a::2]) by mx1.freebsd.org (Postfix) with ESMTP id 530078FC1E; Wed, 21 Jan 2009 12:11:19 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: from roadrunner.spoerlein.net (e180170197.adsl.alicedsl.de [85.180.170.197]) by acme.spoerlein.net (8.14.2/8.14.2) with ESMTP id n0LCBFjo073619 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 21 Jan 2009 13:11:16 +0100 (CET) (envelope-from uspoerlein@gmail.com) Received: from roadrunner.spoerlein.net (localhost [127.0.0.1]) by roadrunner.spoerlein.net (8.14.3/8.14.3) with ESMTP id n0LCBDGb077079 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 21 Jan 2009 13:11:13 +0100 (CET) (envelope-from uspoerlein@gmail.com) Received: (from uqs@localhost) by roadrunner.spoerlein.net (8.14.3/8.14.3/Submit) id n0LCBCh1077078; Wed, 21 Jan 2009 13:11:12 +0100 (CET) (envelope-from uspoerlein@gmail.com) Date: Wed, 21 Jan 2009 13:11:12 +0100 From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= To: Peter Wemm Message-ID: <20090121121111.GA1440@roadrunner.spoerlein.net> Mail-Followup-To: Peter Wemm , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org References: <200901210741.n0L7fODh070343@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200901210741.n0L7fODh070343@svn.freebsd.org> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187523 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 12:11:21 -0000 Just picking a random commit, but since a couple of days, nearly all commits to stable/7/sys contain the props changed line for > Modified: > stable/7/sys/ (props changed) > stable/7/sys/contrib/pf/ (props changed) > stable/7/sys/dev/ath/ath_hal/ (props changed) > stable/7/sys/dev/cxgb/ (props changed) It's always these four. What's up with that? Cheers, Ulrich Spörlein -- None are more hopelessly enslaved than those who falsely believe they are free -- Johann Wolfgang von Goethe From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 13:16:21 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3069D10656CF; Wed, 21 Jan 2009 13:16:21 +0000 (UTC) (envelope-from dimitry@andric.com) Received: from tensor.andric.com (cl-327.ede-01.nl.sixxs.net [IPv6:2001:7b8:2ff:146::2]) by mx1.freebsd.org (Postfix) with ESMTP id E509D8FC20; Wed, 21 Jan 2009 13:16:20 +0000 (UTC) (envelope-from dimitry@andric.com) Received: from [IPv6:2001:7b8:3a7:0:1416:e549:1db8:acb8] (unknown [IPv6:2001:7b8:3a7:0:1416:e549:1db8:acb8]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 98EF511F838; Wed, 21 Jan 2009 14:16:19 +0100 (CET) Message-ID: <49772025.9050807@andric.com> Date: Wed, 21 Jan 2009 14:16:21 +0100 From: Dimitry Andric User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1b3pre) Gecko/20090116 Shredder/3.0b2pre MIME-Version: 1.0 To: Peter Wemm , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org References: <200901210741.n0L7fODh070343@svn.freebsd.org> <20090121121111.GA1440@roadrunner.spoerlein.net> In-Reply-To: <20090121121111.GA1440@roadrunner.spoerlein.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: svn commit: r187523 - in stable/7/sys: . amd64/amd64 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 13:16:23 -0000 On 2009-01-21 13:11, Ulrich Sp=C3=B6rlein wrote: > Just picking a random commit, but since a couple of days, nearly all > commits to stable/7/sys contain the props changed line for >=20 >> Modified: >> stable/7/sys/ (props changed) >> stable/7/sys/contrib/pf/ (props changed) >> stable/7/sys/dev/ath/ath_hal/ (props changed) >> stable/7/sys/dev/cxgb/ (props changed) >=20 > It's always these four. What's up with that? Looks like Subversion merge information (since it says "props changed"). From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 14:22:06 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFA151065AE9; Wed, 21 Jan 2009 14:22:06 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C6E198FC12; Wed, 21 Jan 2009 14:22:06 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LEM6eU079928; Wed, 21 Jan 2009 14:22:06 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LEM6g0079927; Wed, 21 Jan 2009 14:22:06 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <200901211422.n0LEM6g0079927@svn.freebsd.org> From: Alexander Motin Date: Wed, 21 Jan 2009 14:22:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187525 - head/sys/dev/mmc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 14:22:17 -0000 Author: mav Date: Wed Jan 21 14:22:06 2009 New Revision: 187525 URL: http://svn.freebsd.org/changeset/base/187525 Log: Fix copy/paste mistake in variable name. This could lead to using incorrect bus frequency. Modified: head/sys/dev/mmc/mmc.c Modified: head/sys/dev/mmc/mmc.c ============================================================================== --- head/sys/dev/mmc/mmc.c Wed Jan 21 10:51:54 2009 (r187524) +++ head/sys/dev/mmc/mmc.c Wed Jan 21 14:22:06 2009 (r187525) @@ -1326,7 +1326,7 @@ mmc_calculate_clock(struct mmc_softc *sc max_timing = ivar->timing; if (ivar->tran_speed < max_dtr) max_dtr = ivar->tran_speed; - if (ivar->hs_tran_speed < max_dtr) + if (ivar->hs_tran_speed < max_hs_dtr) max_hs_dtr = ivar->hs_tran_speed; } for (i = 0; i < nkid; i++) { From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 14:42:01 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41F871065879; Wed, 21 Jan 2009 14:42:01 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2EE9A8FC2B; Wed, 21 Jan 2009 14:42:01 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LEg1Mi080310; Wed, 21 Jan 2009 14:42:01 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LEg09X080306; Wed, 21 Jan 2009 14:42:00 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211442.n0LEg09X080306@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 14:42:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187526 - in head/sys: kern nfsclient ufs/ufs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 14:42:02 -0000 Author: jhb Date: Wed Jan 21 14:42:00 2009 New Revision: 187526 URL: http://svn.freebsd.org/changeset/base/187526 Log: Move the VA_MARKATIME flag for VOP_SETATTR() out into its own VOP: VOP_MARKATIME() since unlike the rest of VOP_SETATTR(), VA_MARKATIME can be performed while holding a shared vnode lock (the same functionality is done internally by VOP_READ which can run with a shared vnode lock). Add missing locking of the vnode interlock to the ufs implementation and remove a special note and test from the NFS client about not supporting the feature. Inspired by: ups Tested by: pho Modified: head/sys/kern/vfs_subr.c head/sys/kern/vnode_if.src head/sys/nfsclient/nfs_vnops.c head/sys/ufs/ufs/ufs_vnops.c Modified: head/sys/kern/vfs_subr.c ============================================================================== --- head/sys/kern/vfs_subr.c Wed Jan 21 14:22:06 2009 (r187525) +++ head/sys/kern/vfs_subr.c Wed Jan 21 14:42:00 2009 (r187526) @@ -4206,18 +4206,15 @@ vfs_read_dirent(struct vop_readdir_args /* * Mark for update the access time of the file if the filesystem - * supports VA_MARK_ATIME. This functionality is used by execve + * supports VOP_MARKATIME. This functionality is used by execve * and mmap, so we want to avoid the synchronous I/O implied by * directly setting va_atime for the sake of efficiency. */ void vfs_mark_atime(struct vnode *vp, struct ucred *cred) { - struct vattr atimeattr; if ((vp->v_mount->mnt_flag & (MNT_NOATIME | MNT_RDONLY)) == 0) { - VATTR_NULL(&atimeattr); - atimeattr.va_vaflags |= VA_MARK_ATIME; - (void)VOP_SETATTR(vp, &atimeattr, cred); + (void)VOP_MARKATIME(vp); } } Modified: head/sys/kern/vnode_if.src ============================================================================== --- head/sys/kern/vnode_if.src Wed Jan 21 14:22:06 2009 (r187525) +++ head/sys/kern/vnode_if.src Wed Jan 21 14:42:00 2009 (r187526) @@ -171,6 +171,11 @@ vop_setattr { IN struct ucred *cred; }; +%% markatime vp L L L + +vop_markatime { + IN struct vnode *vp; +}; %% read vp L L L Modified: head/sys/nfsclient/nfs_vnops.c ============================================================================== --- head/sys/nfsclient/nfs_vnops.c Wed Jan 21 14:22:06 2009 (r187525) +++ head/sys/nfsclient/nfs_vnops.c Wed Jan 21 14:42:00 2009 (r187526) @@ -707,9 +707,9 @@ nfs_setattr(struct vop_setattr_args *ap) #endif /* - * Setting of flags and marking of atimes are not supported. + * Setting of flags is not supported. */ - if (vap->va_flags != VNOVAL || (vap->va_vaflags & VA_MARK_ATIME)) + if (vap->va_flags != VNOVAL) return (EOPNOTSUPP); /* Modified: head/sys/ufs/ufs/ufs_vnops.c ============================================================================== --- head/sys/ufs/ufs/ufs_vnops.c Wed Jan 21 14:22:06 2009 (r187525) +++ head/sys/ufs/ufs/ufs_vnops.c Wed Jan 21 14:42:00 2009 (r187526) @@ -98,6 +98,7 @@ static vop_create_t ufs_create; static vop_getattr_t ufs_getattr; static vop_link_t ufs_link; static int ufs_makeinode(int mode, struct vnode *, struct vnode **, struct componentname *); +static vop_markatime_t ufs_markatime; static vop_mkdir_t ufs_mkdir; static vop_mknod_t ufs_mknod; static vop_open_t ufs_open; @@ -491,17 +492,6 @@ ufs_setattr(ap) ((int)vap->va_bytes != VNOVAL) || (vap->va_gen != VNOVAL)) { return (EINVAL); } - /* - * Mark for update the file's access time for vfs_mark_atime(). - * We are doing this here to avoid some of the checks done - * below -- this operation is done by request of the kernel and - * should bypass some security checks. Things like read-only - * checks get handled by other levels (e.g., ffs_update()). - */ - if (vap->va_vaflags & VA_MARK_ATIME) { - ip->i_flag |= IN_ACCESS; - return (0); - } if (vap->va_flags != VNOVAL) { if (vp->v_mount->mnt_flag & MNT_RDONLY) return (EROFS); @@ -663,6 +653,25 @@ ufs_setattr(ap) } /* + * Mark this file's access time for update for vfs_mark_atime(). This + * is called from execve() and mmap(). + */ +static int +ufs_markatime(ap) + struct vop_markatime_args /* { + struct vnode *a_vp; + } */ *ap; +{ + struct vnode *vp = ap->a_vp; + struct inode *ip = VTOI(vp); + + VI_LOCK(vp); + ip->i_flag |= IN_ACCESS; + VI_UNLOCK(vp); + return (0); +} + +/* * Change the mode on a file. * Inode must be locked before calling. */ @@ -2481,6 +2490,7 @@ struct vop_vector ufs_vnodeops = { .vop_rename = ufs_rename, .vop_rmdir = ufs_rmdir, .vop_setattr = ufs_setattr, + .vop_markatime = ufs_markatime, #ifdef MAC .vop_setlabel = vop_stdsetlabel_ea, #endif @@ -2511,6 +2521,7 @@ struct vop_vector ufs_fifoops = { .vop_read = VOP_PANIC, .vop_reclaim = ufs_reclaim, .vop_setattr = ufs_setattr, + .vop_markatime = ufs_markatime, #ifdef MAC .vop_setlabel = vop_stdsetlabel_ea, #endif From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 14:43:35 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F2F1106584B; Wed, 21 Jan 2009 14:43:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4D1B88FC13; Wed, 21 Jan 2009 14:43:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LEhZ4m080377; Wed, 21 Jan 2009 14:43:35 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LEhZAI080376; Wed, 21 Jan 2009 14:43:35 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211443.n0LEhZAI080376@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 14:43:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187527 - head/sys/vm X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 14:43:37 -0000 Author: jhb Date: Wed Jan 21 14:43:35 2009 New Revision: 187527 URL: http://svn.freebsd.org/changeset/base/187527 Log: Now that vfs_markatime() no longer requires an exclusive lock due to the VOP_MARKATIME() changes, use a shared vnode lock for mmap(). Submitted by: ups Modified: head/sys/vm/vm_mmap.c Modified: head/sys/vm/vm_mmap.c ============================================================================== --- head/sys/vm/vm_mmap.c Wed Jan 21 14:42:00 2009 (r187526) +++ head/sys/vm/vm_mmap.c Wed Jan 21 14:43:35 2009 (r187527) @@ -1160,7 +1160,7 @@ vm_mmap_vnode(struct thread *td, vm_size mp = vp->v_mount; cred = td->td_ucred; vfslocked = VFS_LOCK_GIANT(mp); - if ((error = vget(vp, LK_EXCLUSIVE, td)) != 0) { + if ((error = vget(vp, LK_SHARED, td)) != 0) { VFS_UNLOCK_GIANT(vfslocked); return (error); } @@ -1177,7 +1177,7 @@ vm_mmap_vnode(struct thread *td, vm_size if (obj->handle != vp) { vput(vp); vp = (struct vnode*)obj->handle; - vget(vp, LK_EXCLUSIVE, td); + vget(vp, LK_SHARED, td); } type = OBJT_VNODE; handle = vp; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 14:51:38 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF9D4106564A; Wed, 21 Jan 2009 14:51:38 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 92EB48FC08; Wed, 21 Jan 2009 14:51:38 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LEpcOD080590; Wed, 21 Jan 2009 14:51:38 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LEpcN3080587; Wed, 21 Jan 2009 14:51:38 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200901211451.n0LEpcN3080587@svn.freebsd.org> From: Konstantin Belousov Date: Wed, 21 Jan 2009 14:51:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187528 - in head/sys: kern sys ufs/ufs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 14:51:39 -0000 Author: kib Date: Wed Jan 21 14:51:38 2009 New Revision: 187528 URL: http://svn.freebsd.org/changeset/base/187528 Log: Move the code from ufs_lookup.c used to do dotdot lookup, into the helper function. It is supposed to be useful for any filesystem that has to unlock dvp to walk to the ".." entry in lookup routine. Requested by: jhb Tested by: pho MFC after: 1 month Modified: head/sys/kern/vfs_vnops.c head/sys/sys/vnode.h head/sys/ufs/ufs/ufs_lookup.c Modified: head/sys/kern/vfs_vnops.c ============================================================================== --- head/sys/kern/vfs_vnops.c Wed Jan 21 14:43:35 2009 (r187527) +++ head/sys/kern/vfs_vnops.c Wed Jan 21 14:51:38 2009 (r187528) @@ -1286,3 +1286,35 @@ vn_extattr_rm(struct vnode *vp, int iofl return (error); } + +int +vn_vget_ino(struct vnode *vp, ino_t ino, int lkflags, struct vnode **rvp) +{ + struct mount *mp; + int ltype, error; + + mp = vp->v_mount; + ltype = VOP_ISLOCKED(vp); + KASSERT(ltype == LK_EXCLUSIVE || ltype == LK_SHARED, + ("vn_vget_ino: vp not locked")); + for (;;) { + error = vfs_busy(mp, MBF_NOWAIT); + if (error == 0) + break; + VOP_UNLOCK(vp, 0); + pause("vn_vget", 1); + vn_lock(vp, ltype | LK_RETRY); + if (vp->v_iflag & VI_DOOMED) + return (ENOENT); + } + VOP_UNLOCK(vp, 0); + error = VFS_VGET(mp, ino, lkflags, rvp); + vfs_unbusy(mp); + vn_lock(vp, ltype | LK_RETRY); + if (vp->v_iflag & VI_DOOMED) { + if (error == 0) + vput(*rvp); + error = ENOENT; + } + return (error); +} Modified: head/sys/sys/vnode.h ============================================================================== --- head/sys/sys/vnode.h Wed Jan 21 14:43:35 2009 (r187527) +++ head/sys/sys/vnode.h Wed Jan 21 14:51:38 2009 (r187528) @@ -636,6 +636,9 @@ int vn_extattr_set(struct vnode *vp, int const char *attrname, int buflen, char *buf, struct thread *td); int vn_extattr_rm(struct vnode *vp, int ioflg, int attrnamespace, const char *attrname, struct thread *td); +int vn_vget_ino(struct vnode *vp, ino_t ino, int lkflags, + struct vnode **rvp); + int vfs_cache_lookup(struct vop_lookup_args *ap); void vfs_timestamp(struct timespec *); void vfs_write_resume(struct mount *mp); Modified: head/sys/ufs/ufs/ufs_lookup.c ============================================================================== --- head/sys/ufs/ufs/ufs_lookup.c Wed Jan 21 14:43:35 2009 (r187527) +++ head/sys/ufs/ufs/ufs_lookup.c Wed Jan 21 14:51:38 2009 (r187528) @@ -157,7 +157,6 @@ ufs_lookup(ap) int nameiop = cnp->cn_nameiop; ino_t ino; int ltype; - struct mount *mp; bp = NULL; slotoffset = -1; @@ -578,27 +577,7 @@ found: */ pdp = vdp; if (flags & ISDOTDOT) { - ltype = VOP_ISLOCKED(pdp); - mp = pdp->v_mount; - for (;;) { - error = vfs_busy(mp, MBF_NOWAIT); - if (error == 0) - break; - VOP_UNLOCK(pdp, 0); - pause("ufs_dd", 1); - vn_lock(pdp, ltype | LK_RETRY); - if (pdp->v_iflag & VI_DOOMED) - return (ENOENT); - } - VOP_UNLOCK(pdp, 0); /* race to get the inode */ - error = VFS_VGET(mp, ino, cnp->cn_lkflags, &tdp); - vfs_unbusy(mp); - vn_lock(pdp, ltype | LK_RETRY); - if (pdp->v_iflag & VI_DOOMED) { - if (error == 0) - vput(tdp); - error = ENOENT; - } + error = vn_vget_ino(pdp, ino, cnp->cn_lkflags, &tdp); if (error) return (error); *vpp = tdp; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 15:01:36 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BC231065670; Wed, 21 Jan 2009 15:01:36 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 48C798FC17; Wed, 21 Jan 2009 15:01:36 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LF1aLu080912; Wed, 21 Jan 2009 15:01:36 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LF1agR080911; Wed, 21 Jan 2009 15:01:36 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211501.n0LF1agR080911@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 15:01:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187529 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb i386/cpufreq X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 15:01:36 -0000 Author: jhb Date: Wed Jan 21 15:01:36 2009 New Revision: 187529 URL: http://svn.freebsd.org/changeset/base/187529 Log: MFC: If we are unable to obtain a frequency list from either ACPI or the static tables, then attempt to build a simple list containing just the high and low frequencies if the hw.est.msr_info tunable is set to 1. By default this is disabled. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/cpufreq/est.c Modified: stable/7/sys/i386/cpufreq/est.c ============================================================================== --- stable/7/sys/i386/cpufreq/est.c Wed Jan 21 14:51:38 2009 (r187528) +++ stable/7/sys/i386/cpufreq/est.c Wed Jan 21 15:01:36 2009 (r187529) @@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$"); #include #include "cpufreq_if.h" +#include #include #include @@ -71,6 +72,7 @@ typedef struct { struct est_softc { device_t dev; int acpi_settings; + int msr_settings; freq_info *freq_list; }; @@ -92,6 +94,8 @@ struct est_softc { const char intel_id[] = "GenuineIntel"; const char centaur_id[] = "CentaurHauls"; +static int msr_info_enabled = 0; +TUNABLE_INT("hw.est.msr_info", &msr_info_enabled); /* Default bus clock value for Centrino processors. */ #define INTEL_BUS_CLK 100 @@ -898,6 +902,7 @@ static int est_detach(device_t parent); static int est_get_info(device_t dev); static int est_acpi_info(device_t dev, freq_info **freqs); static int est_table_info(device_t dev, uint64_t msr, freq_info **freqs); +static int est_msr_info(device_t dev, uint64_t msr, freq_info **freqs); static freq_info *est_get_current(freq_info *freq_list); static int est_settings(device_t dev, struct cf_setting *sets, int *count); static int est_set(device_t dev, const struct cf_setting *set); @@ -1039,7 +1044,7 @@ est_detach(device_t dev) return (error); sc = device_get_softc(dev); - if (sc->acpi_settings) + if (sc->acpi_settings || sc->msr_settings) free(sc->freq_list, M_DEVBUF); return (0); } @@ -1063,6 +1068,8 @@ est_get_info(device_t dev) error = est_table_info(dev, msr, &sc->freq_list); if (error) error = est_acpi_info(dev, &sc->freq_list); + if (error) + error = est_msr_info(dev, msr, &sc->freq_list); if (error) { printf( @@ -1168,6 +1175,91 @@ est_table_info(device_t dev, uint64_t ms return (0); } +static int +bus_speed_ok(int bus) +{ + + switch (bus) { + case 100: + case 133: + case 333: + return (1); + default: + return (0); + } +} + +/* + * Flesh out a simple rate table containing the high and low frequencies + * based on the current clock speed and the upper 32 bits of the MSR. + */ +static int +est_msr_info(device_t dev, uint64_t msr, freq_info **freqs) +{ + struct est_softc *sc; + freq_info *fp; + int bus, freq, volts; + uint16_t id; + + if (!msr_info_enabled) + return (EOPNOTSUPP); + + /* Figure out the bus clock. */ + freq = tsc_freq / 1000000; + id = msr >> 32; + bus = freq / (id >> 8); + device_printf(dev, "Guessed bus clock (high) of %d MHz\n", bus); + if (!bus_speed_ok(bus)) { + /* We may be running on the low frequency. */ + id = msr >> 48; + bus = freq / (id >> 8); + device_printf(dev, "Guessed bus clock (low) of %d MHz\n", bus); + if (!bus_speed_ok(bus)) + return (EOPNOTSUPP); + + /* Calculate high frequency. */ + id = msr >> 32; + freq = ((id >> 8) & 0xff) * bus; + } + + /* Fill out a new freq table containing just the high and low freqs. */ + sc = device_get_softc(dev); + fp = malloc(sizeof(freq_info) * 3, M_DEVBUF, M_WAITOK | M_ZERO); + + /* First, the high frequency. */ + volts = id & 0xff; + if (volts != 0) { + volts <<= 4; + volts += 700; + } + fp[0].freq = freq; + fp[0].volts = volts; + fp[0].id16 = id; + fp[0].power = CPUFREQ_VAL_UNKNOWN; + device_printf(dev, "Guessed high setting of %d MHz @ %d Mv\n", freq, + volts); + + /* Second, the low frequency. */ + id = msr >> 48; + freq = ((id >> 8) & 0xff) * bus; + volts = id & 0xff; + if (volts != 0) { + volts <<= 4; + volts += 700; + } + fp[1].freq = freq; + fp[1].volts = volts; + fp[1].id16 = id; + fp[1].power = CPUFREQ_VAL_UNKNOWN; + device_printf(dev, "Guessed low setting of %d MHz @ %d Mv\n", freq, + volts); + + /* Table is already terminated due to M_ZERO. */ + sc->msr_settings = TRUE; + *freqs = fp; + return (0); +} + static void est_get_id16(uint16_t *id16_p) { From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 15:04:06 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1A03106567D; Wed, 21 Jan 2009 15:04:06 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BE8BD8FC18; Wed, 21 Jan 2009 15:04:06 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LF46E2081010; Wed, 21 Jan 2009 15:04:06 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LF46BP081009; Wed, 21 Jan 2009 15:04:06 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <200901211504.n0LF46BP081009@svn.freebsd.org> From: Ed Maste Date: Wed, 21 Jan 2009 15:04:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187530 - in stable/6/sys: . vm X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 15:04:11 -0000 Author: emaste Date: Wed Jan 21 15:04:06 2009 New Revision: 187530 URL: http://svn.freebsd.org/changeset/base/187530 Log: MFC r181693: Fix REDZONE(9) on amd64 and perhaps other 64 bit targets -- ensure the space that redzone adds to the allocation for storing its metadata is at least as large as the metadata that it will store there. PR: kern/128744 Modified: stable/6/sys/ (props changed) stable/6/sys/vm/redzone.c Modified: stable/6/sys/vm/redzone.c ============================================================================== --- stable/6/sys/vm/redzone.c Wed Jan 21 15:01:36 2009 (r187529) +++ stable/6/sys/vm/redzone.c Wed Jan 21 15:04:06 2009 (r187530) @@ -54,6 +54,8 @@ static u_long redzone_roundup(u_long n) { + if (n < REDZONE_HSIZE) + n = REDZONE_HSIZE; if (n <= 128) return (128); else if (n <= 256) From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 15:06:54 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 092FC106585F; Wed, 21 Jan 2009 15:06:54 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E773B8FC24; Wed, 21 Jan 2009 15:06:53 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LF6ris081131; Wed, 21 Jan 2009 15:06:53 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LF6rwP081130; Wed, 21 Jan 2009 15:06:53 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200901211506.n0LF6rwP081130@svn.freebsd.org> From: Konstantin Belousov Date: Wed, 21 Jan 2009 15:06:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187531 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb ufs/ufs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 15:06:57 -0000 Author: kib Date: Wed Jan 21 15:06:53 2009 New Revision: 187531 URL: http://svn.freebsd.org/changeset/base/187531 Log: MFC r185170. r185556: Busy ufs filesystem around block of code that does ".." lookup. Do not lock vnode interlock around reading of v_iflag to check VI_DOOMED. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/ufs/ufs/ufs_lookup.c Modified: stable/7/sys/ufs/ufs/ufs_lookup.c ============================================================================== --- stable/7/sys/ufs/ufs/ufs_lookup.c Wed Jan 21 15:04:06 2009 (r187530) +++ stable/7/sys/ufs/ufs/ufs_lookup.c Wed Jan 21 15:06:53 2009 (r187531) @@ -158,6 +158,7 @@ ufs_lookup(ap) struct thread *td = cnp->cn_thread; ino_t ino; int ltype; + struct mount *mp; bp = NULL; slotoffset = -1; @@ -579,9 +580,26 @@ found: pdp = vdp; if (flags & ISDOTDOT) { ltype = VOP_ISLOCKED(pdp, td); + mp = pdp->v_mount; + for (;;) { + error = vfs_busy(mp, LK_NOWAIT, NULL, td); + if (error == 0) + break; + VOP_UNLOCK(pdp, 0, td); + pause("ufs_dd", 1); + vn_lock(pdp, ltype | LK_RETRY, td); + if (pdp->v_iflag & VI_DOOMED) + return (ENOENT); + } VOP_UNLOCK(pdp, 0, td); /* race to get the inode */ - error = VFS_VGET(pdp->v_mount, ino, cnp->cn_lkflags, &tdp); + error = VFS_VGET(mp, ino, cnp->cn_lkflags, &tdp); + vfs_unbusy(mp, td); vn_lock(pdp, ltype | LK_RETRY, td); + if (pdp->v_iflag & VI_DOOMED) { + if (error == 0) + vput(tdp); + error = ENOENT; + } if (error) return (error); *vpp = tdp; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 15:19:38 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA4D6106567A; Wed, 21 Jan 2009 15:19:38 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A82EF8FC12; Wed, 21 Jan 2009 15:19:38 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LFJcVT081416; Wed, 21 Jan 2009 15:19:38 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LFJc3x081415; Wed, 21 Jan 2009 15:19:38 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211519.n0LFJc3x081415@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 15:19:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187532 - stable/7/gnu/usr.bin/gdb/kgdb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 15:19:39 -0000 Author: jhb Date: Wed Jan 21 15:19:38 2009 New Revision: 187532 URL: http://svn.freebsd.org/changeset/base/187532 Log: MFC: Use existing GDB routines for parsing the section table of klds in the 'add-kld' command. Modified: stable/7/gnu/usr.bin/gdb/kgdb/ (props changed) stable/7/gnu/usr.bin/gdb/kgdb/kld.c Modified: stable/7/gnu/usr.bin/gdb/kgdb/kld.c ============================================================================== --- stable/7/gnu/usr.bin/gdb/kgdb/kld.c Wed Jan 21 15:06:53 2009 (r187531) +++ stable/7/gnu/usr.bin/gdb/kgdb/kld.c Wed Jan 21 15:19:38 2009 (r187532) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -196,39 +197,14 @@ find_kld_address (char *arg, CORE_ADDR * return (0); } -struct add_section_info { - struct section_addr_info *section_addrs; - int sect_index; - CORE_ADDR base_addr; -}; - -static void -add_section (bfd *bfd, asection *sect, void *arg) -{ - struct add_section_info *asi = arg; - CORE_ADDR address; - char *name; - - /* Ignore non-resident sections. */ - if ((bfd_get_section_flags(bfd, sect) & (SEC_ALLOC | SEC_LOAD)) == 0) - return; - - name = xstrdup(bfd_get_section_name(bfd, sect)); - make_cleanup(xfree, name); - address = asi->base_addr + bfd_get_section_vma(bfd, sect); - asi->section_addrs->other[asi->sect_index].name = name; - asi->section_addrs->other[asi->sect_index].addr = address; - asi->section_addrs->other[asi->sect_index].sectindex = sect->index; - printf_unfiltered("\t%s_addr = %s\n", name, local_hex_string(address)); - asi->sect_index++; -} - static void load_kld (char *path, CORE_ADDR base_addr, int from_tty) { - struct add_section_info asi; + struct section_addr_info *sap; + struct section_table *sections = NULL, *sections_end = NULL, *s; struct cleanup *cleanup; bfd *bfd; + int i; /* Open the kld. */ bfd = bfd_openr(path, gnutarget); @@ -244,19 +220,30 @@ load_kld (char *path, CORE_ADDR base_add if (bfd_get_section_by_name (bfd, ".text") == NULL) error("\"%s\": can't find text section", path); - printf_unfiltered("add symbol table from file \"%s\" at\n", path); + /* Build a section table from the bfd and relocate the sections. */ + if (build_section_table (bfd, §ions, §ions_end)) + error("\"%s\": can't find file sections", path); + cleanup = make_cleanup(xfree, sections); + for (s = sections; s < sections_end; s++) { + s->addr += base_addr; + s->endaddr += base_addr; + } + + /* Build a section addr info to pass to symbol_file_add(). */ + sap = build_section_addr_info_from_section_table (sections, + sections_end); + cleanup = make_cleanup((make_cleanup_ftype *)free_section_addr_info, + sap); - /* Build a section table for symbol_file_add() from the bfd sections. */ - asi.section_addrs = alloc_section_addr_info(bfd_count_sections(bfd)); - cleanup = make_cleanup(xfree, asi.section_addrs); - asi.sect_index = 0; - asi.base_addr = base_addr; - bfd_map_over_sections(bfd, add_section, &asi); + printf_unfiltered("add symbol table from file \"%s\" at\n", path); + for (i = 0; i < sap->num_sections; i++) + printf_unfiltered("\t%s_addr = %s\n", sap->other[i].name, + local_hex_string(sap->other[i].addr)); if (from_tty && (!query("%s", ""))) error("Not confirmed."); - symbol_file_add(path, from_tty, asi.section_addrs, 0, OBJF_USERLOADED); + symbol_file_add(path, from_tty, sap, 0, OBJF_USERLOADED); do_cleanups(cleanup); } From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 15:25:01 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76112106566B; Wed, 21 Jan 2009 15:25:01 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 635C98FC18; Wed, 21 Jan 2009 15:25:01 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LFP0eY081609; Wed, 21 Jan 2009 15:25:00 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LFP0jn081608; Wed, 21 Jan 2009 15:25:00 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211525.n0LFP0jn081608@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 15:25:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187533 - stable/6/gnu/usr.bin/gdb/kgdb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 15:25:02 -0000 Author: jhb Date: Wed Jan 21 15:25:00 2009 New Revision: 187533 URL: http://svn.freebsd.org/changeset/base/187533 Log: MFC: Use existing GDB routines for parsing the section table of klds in the 'add-kld' command. Modified: stable/6/gnu/usr.bin/gdb/kgdb/ (props changed) stable/6/gnu/usr.bin/gdb/kgdb/kld.c Modified: stable/6/gnu/usr.bin/gdb/kgdb/kld.c ============================================================================== --- stable/6/gnu/usr.bin/gdb/kgdb/kld.c Wed Jan 21 15:19:38 2009 (r187532) +++ stable/6/gnu/usr.bin/gdb/kgdb/kld.c Wed Jan 21 15:25:00 2009 (r187533) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -196,39 +197,14 @@ find_kld_address (char *arg, CORE_ADDR * return (0); } -struct add_section_info { - struct section_addr_info *section_addrs; - int sect_index; - CORE_ADDR base_addr; -}; - -static void -add_section (bfd *bfd, asection *sect, void *arg) -{ - struct add_section_info *asi = arg; - CORE_ADDR address; - char *name; - - /* Ignore non-resident sections. */ - if ((bfd_get_section_flags(bfd, sect) & (SEC_ALLOC | SEC_LOAD)) == 0) - return; - - name = xstrdup(bfd_get_section_name(bfd, sect)); - make_cleanup(xfree, name); - address = asi->base_addr + bfd_get_section_vma(bfd, sect); - asi->section_addrs->other[asi->sect_index].name = name; - asi->section_addrs->other[asi->sect_index].addr = address; - asi->section_addrs->other[asi->sect_index].sectindex = sect->index; - printf_unfiltered("\t%s_addr = %s\n", name, local_hex_string(address)); - asi->sect_index++; -} - static void load_kld (char *path, CORE_ADDR base_addr, int from_tty) { - struct add_section_info asi; + struct section_addr_info *sap; + struct section_table *sections = NULL, *sections_end = NULL, *s; struct cleanup *cleanup; bfd *bfd; + int i; /* Open the kld. */ bfd = bfd_openr(path, gnutarget); @@ -244,19 +220,30 @@ load_kld (char *path, CORE_ADDR base_add if (bfd_get_section_by_name (bfd, ".text") == NULL) error("\"%s\": can't find text section", path); - printf_unfiltered("add symbol table from file \"%s\" at\n", path); + /* Build a section table from the bfd and relocate the sections. */ + if (build_section_table (bfd, §ions, §ions_end)) + error("\"%s\": can't find file sections", path); + cleanup = make_cleanup(xfree, sections); + for (s = sections; s < sections_end; s++) { + s->addr += base_addr; + s->endaddr += base_addr; + } + + /* Build a section addr info to pass to symbol_file_add(). */ + sap = build_section_addr_info_from_section_table (sections, + sections_end); + cleanup = make_cleanup((make_cleanup_ftype *)free_section_addr_info, + sap); - /* Build a section table for symbol_file_add() from the bfd sections. */ - asi.section_addrs = alloc_section_addr_info(bfd_count_sections(bfd)); - cleanup = make_cleanup(xfree, asi.section_addrs); - asi.sect_index = 0; - asi.base_addr = base_addr; - bfd_map_over_sections(bfd, add_section, &asi); + printf_unfiltered("add symbol table from file \"%s\" at\n", path); + for (i = 0; i < sap->num_sections; i++) + printf_unfiltered("\t%s_addr = %s\n", sap->other[i].name, + local_hex_string(sap->other[i].addr)); if (from_tty && (!query("%s", ""))) error("Not confirmed."); - symbol_file_add(path, from_tty, asi.section_addrs, 0, OBJF_USERLOADED); + symbol_file_add(path, from_tty, sap, 0, OBJF_USERLOADED); do_cleanups(cleanup); } From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 15:51:16 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3F5A1065677; Wed, 21 Jan 2009 15:51:16 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9DC088FC27; Wed, 21 Jan 2009 15:51:16 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LFpG6B082200; Wed, 21 Jan 2009 15:51:16 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LFpGQP082185; Wed, 21 Jan 2009 15:51:16 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200901211551.n0LFpGQP082185@svn.freebsd.org> From: Konstantin Belousov Date: Wed, 21 Jan 2009 15:51:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187534 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb fs/devfs fs/fdescfs fs/hpfs fs/msdosfs fs/ntfs fs/portalfs fs/pseudofs fs/smbfs fs/tmpfs fs/udf gnu/fs/xfs/FreeBSD kern ... X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 15:51:17 -0000 Author: kib Date: Wed Jan 21 15:51:15 2009 New Revision: 187534 URL: http://svn.freebsd.org/changeset/base/187534 Log: MFC r183211: Initialize birthtime fields in vn_stat() to prevent stat(2) from returning uninitialized birthtime. Most file systems don't initialize birthtime properly in their VOP_GETTATTR(). MFC r183212: Initialize va_flags and va_filerev properly in VOP_GETATTR(). Don't initialize va_vaflags and va_spare because they are not part of the VOP_GETATTR() API. Also don't initialize birthtime to ctime or zero. MFC rr183213: Initialize va_rdev to NODEV and va_fsid to VNOVAL before the VOP_GETATTR() call in vn_stat(). Thus if a file system doesn't initialize those fields in VOP_GETATTR() they will have a sane default value. MFC r183214: Initialize va_rdev to NODEV instead of 0 or VNOVAL in VOP_GETATTR(). NODEV is more appropriate when va_rdev doesn't have a meaningful value. MFC r183215: fdescfs, devfs, mqueuefs, nfs, portalfs, pseudofs, tmpfs and xfs initialize the vattr structure in VOP_GETATTR() with VATTR_NULL(), vattr_null() or by zeroing it. Remove these to allow preinitialization of fields work in vn_stat(). This is needed to get birthtime initialized correctly. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/fs/devfs/devfs_vnops.c stable/7/sys/fs/fdescfs/fdesc_vnops.c stable/7/sys/fs/hpfs/hpfs_vnops.c stable/7/sys/fs/msdosfs/msdosfs_vnops.c stable/7/sys/fs/ntfs/ntfs_vnops.c stable/7/sys/fs/portalfs/portal_vnops.c stable/7/sys/fs/pseudofs/pseudofs_vnops.c stable/7/sys/fs/smbfs/smbfs_node.c stable/7/sys/fs/tmpfs/tmpfs_vnops.c stable/7/sys/fs/udf/udf_vnops.c stable/7/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c stable/7/sys/kern/uipc_mqueue.c stable/7/sys/kern/vfs_vnops.c stable/7/sys/nfsclient/nfs_vnops.c stable/7/sys/ufs/ufs/ufs_vnops.c Modified: stable/7/sys/fs/devfs/devfs_vnops.c ============================================================================== --- stable/7/sys/fs/devfs/devfs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/devfs/devfs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -507,8 +507,6 @@ devfs_getattr(struct vop_getattr_args *a KASSERT(de != NULL, ("Null dir dirent in devfs_getattr vp=%p", vp)); } - bzero((caddr_t) vap, sizeof(*vap)); - vattr_null(vap); vap->va_uid = de->de_uid; vap->va_gid = de->de_gid; vap->va_mode = de->de_mode; @@ -551,6 +549,7 @@ devfs_getattr(struct vop_getattr_args *a } vap->va_gen = 0; vap->va_flags = 0; + vap->va_filerev = 0; vap->va_nlink = de->de_links; vap->va_fileid = de->de_inode; Modified: stable/7/sys/fs/fdescfs/fdesc_vnops.c ============================================================================== --- stable/7/sys/fs/fdescfs/fdesc_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/fdescfs/fdesc_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -391,8 +391,6 @@ fdesc_getattr(ap) switch (VTOFDESC(vp)->fd_type) { case Froot: - VATTR_NULL(vap); - vap->va_mode = S_IRUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH; vap->va_type = VDIR; vap->va_nlink = 2; @@ -407,8 +405,9 @@ fdesc_getattr(ap) vap->va_ctime = vap->va_mtime; vap->va_gen = 0; vap->va_flags = 0; - vap->va_rdev = 0; + vap->va_rdev = NODEV; vap->va_bytes = 0; + vap->va_filerev = 0; break; case Fdesc: @@ -421,7 +420,6 @@ fdesc_getattr(ap) error = fo_stat(fp, &stb, ap->a_td->td_ucred, ap->a_td); fdrop(fp, ap->a_td); if (error == 0) { - VATTR_NULL(vap); vap->va_type = IFTOVT(stb.st_mode); vap->va_mode = stb.st_mode; #define FDRX (VREAD|VEXEC) @@ -456,6 +454,8 @@ fdesc_getattr(ap) vap->va_ctime = stb.st_ctimespec; vap->va_uid = stb.st_uid; vap->va_gid = stb.st_gid; + vap->va_gen = 0; + vap->va_filerev = 0; } break; Modified: stable/7/sys/fs/hpfs/hpfs_vnops.c ============================================================================== --- stable/7/sys/fs/hpfs/hpfs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/hpfs/hpfs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -425,7 +425,7 @@ hpfs_getattr(ap) vap->va_nlink = 1; vap->va_uid = hp->h_uid; vap->va_gid = hp->h_gid; - vap->va_rdev = 0; /* XXX UNODEV ? */ + vap->va_rdev = NODEV; vap->va_size = hp->h_fn.fn_size; vap->va_bytes = ((hp->h_fn.fn_size + DEV_BSIZE-1) & ~(DEV_BSIZE-1)) + DEV_BSIZE; Modified: stable/7/sys/fs/msdosfs/msdosfs_vnops.c ============================================================================== --- stable/7/sys/fs/msdosfs/msdosfs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/msdosfs/msdosfs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -335,7 +335,7 @@ msdosfs_getattr(ap) vap->va_uid = pmp->pm_uid; vap->va_gid = pmp->pm_gid; vap->va_nlink = 1; - vap->va_rdev = 0; + vap->va_rdev = NODEV; vap->va_size = dep->de_FileSize; fattime2timespec(dep->de_MDate, dep->de_MTime, 0, 0, &vap->va_mtime); vap->va_ctime = vap->va_mtime; Modified: stable/7/sys/fs/ntfs/ntfs_vnops.c ============================================================================== --- stable/7/sys/fs/ntfs/ntfs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/ntfs/ntfs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -191,7 +191,7 @@ ntfs_getattr(ap) vap->va_nlink = (ip->i_nlink || ip->i_flag & IN_LOADED ? ip->i_nlink : 1); vap->va_uid = ip->i_mp->ntm_uid; vap->va_gid = ip->i_mp->ntm_gid; - vap->va_rdev = 0; /* XXX UNODEV ? */ + vap->va_rdev = NODEV; vap->va_size = fp->f_size; vap->va_bytes = fp->f_allocated; vap->va_atime = ntfs_nttimetounix(fp->f_times.t_access); Modified: stable/7/sys/fs/portalfs/portal_vnops.c ============================================================================== --- stable/7/sys/fs/portalfs/portal_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/portalfs/portal_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -453,8 +453,6 @@ portal_getattr(ap) struct vnode *vp = ap->a_vp; struct vattr *vap = ap->a_vap; - bzero(vap, sizeof(*vap)); - vattr_null(vap); vap->va_uid = 0; vap->va_gid = 0; vap->va_size = DEV_BSIZE; @@ -464,9 +462,10 @@ portal_getattr(ap) vap->va_ctime = vap->va_mtime; vap->va_gen = 0; vap->va_flags = 0; - vap->va_rdev = 0; + vap->va_rdev = NODEV; /* vap->va_qbytes = 0; */ vap->va_bytes = 0; + vap->va_filerev = 0; /* vap->va_qsize = 0; */ if (vp->v_vflag & VV_ROOT) { vap->va_type = VDIR; Modified: stable/7/sys/fs/pseudofs/pseudofs_vnops.c ============================================================================== --- stable/7/sys/fs/pseudofs/pseudofs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/pseudofs/pseudofs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -191,12 +191,12 @@ pfs_getattr(struct vop_getattr_args *va) if (!pfs_visible(curthread, pn, pvd->pvd_pid, &proc)) PFS_RETURN (ENOENT); - VATTR_NULL(vap); vap->va_type = vn->v_type; vap->va_fileid = pn_fileno(pn, pvd->pvd_pid); vap->va_flags = 0; vap->va_blocksize = PAGE_SIZE; vap->va_bytes = vap->va_size = 0; + vap->va_filerev = 0; vap->va_fsid = vn->v_mount->mnt_stat.f_fsid.val[0]; vap->va_nlink = 1; nanotime(&vap->va_ctime); Modified: stable/7/sys/fs/smbfs/smbfs_node.c ============================================================================== --- stable/7/sys/fs/smbfs/smbfs_node.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/smbfs/smbfs_node.c Wed Jan 21 15:51:15 2009 (r187534) @@ -438,7 +438,7 @@ smbfs_attr_cachelookup(struct vnode *vp, va->va_atime = va->va_ctime = va->va_mtime; /* time file changed */ va->va_gen = VNOVAL; /* generation number of file */ va->va_flags = 0; /* flags defined for file */ - va->va_rdev = VNOVAL; /* device the special file represents */ + va->va_rdev = NODEV; /* device the special file represents */ va->va_bytes = va->va_size; /* bytes of disk space held by file */ va->va_filerev = 0; /* file modification number */ va->va_vaflags = 0; /* operations flags */ Modified: stable/7/sys/fs/tmpfs/tmpfs_vnops.c ============================================================================== --- stable/7/sys/fs/tmpfs/tmpfs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/tmpfs/tmpfs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -344,8 +344,6 @@ tmpfs_getattr(struct vop_getattr_args *v node = VP_TO_TMPFS_NODE(vp); - VATTR_NULL(vap); - tmpfs_update(vp); vap->va_type = vp->v_type; @@ -364,11 +362,9 @@ tmpfs_getattr(struct vop_getattr_args *v vap->va_gen = node->tn_gen; vap->va_flags = node->tn_flags; vap->va_rdev = (vp->v_type == VBLK || vp->v_type == VCHR) ? - node->tn_rdev : VNOVAL; + node->tn_rdev : NODEV; vap->va_bytes = round_page(node->tn_size); - vap->va_filerev = VNOVAL; - vap->va_vaflags = 0; - vap->va_spare = VNOVAL; /* XXX */ + vap->va_filerev = 0; return 0; } Modified: stable/7/sys/fs/udf/udf_vnops.c ============================================================================== --- stable/7/sys/fs/udf/udf_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/fs/udf/udf_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -279,7 +279,7 @@ udf_getattr(struct vop_getattr_args *a) udf_timetotimespec(&fentry->atime, &vap->va_atime); udf_timetotimespec(&fentry->mtime, &vap->va_mtime); vap->va_ctime = vap->va_mtime; /* XXX Stored as an Extended Attribute */ - vap->va_rdev = 0; /* XXX */ + vap->va_rdev = NODEV; if (vp->v_type & VDIR) { /* * Directories that are recorded within their ICB will show Modified: stable/7/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c ============================================================================== --- stable/7/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -241,7 +241,6 @@ _xfs_getattr( /* extract the xfs vnode from the private data */ //xfs_vnode_t *xvp = (xfs_vnode_t *)vp->v_data; - VATTR_NULL(vap); memset(&va,0,sizeof(xfs_vattr_t)); va.va_mask = XFS_AT_STAT|XFS_AT_GENCOUNT|XFS_AT_XFLAGS; @@ -274,15 +273,9 @@ _xfs_getattr( /* * Fields with no direct equivalent in XFS - * leave initialized by VATTR_NULL */ -#if 0 vap->va_filerev = 0; - vap->va_birthtime = va.va_ctime; - vap->va_vaflags = 0; vap->va_flags = 0; - vap->va_spare = 0; -#endif return (0); } Modified: stable/7/sys/kern/uipc_mqueue.c ============================================================================== --- stable/7/sys/kern/uipc_mqueue.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/kern/uipc_mqueue.c Wed Jan 21 15:51:15 2009 (r187534) @@ -1133,7 +1133,6 @@ mqfs_getattr(struct vop_getattr_args *ap struct vattr *vap = ap->a_vap; int error = 0; - VATTR_NULL(vap); vap->va_type = vp->v_type; vap->va_mode = pn->mn_mode; vap->va_nlink = 1; @@ -1150,10 +1149,9 @@ mqfs_getattr(struct vop_getattr_args *ap vap->va_birthtime = pn->mn_birth; vap->va_gen = 0; vap->va_flags = 0; - vap->va_rdev = 0; + vap->va_rdev = NODEV; vap->va_bytes = 0; vap->va_filerev = 0; - vap->va_vaflags = 0; return (error); } Modified: stable/7/sys/kern/vfs_vnops.c ============================================================================== --- stable/7/sys/kern/vfs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/kern/vfs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -641,6 +641,17 @@ vn_stat(vp, sb, active_cred, file_cred, #endif vap = &vattr; + + /* + * Initialize defaults for new and unusual fields, so that file + * systems which don't support these fields don't need to know + * about them. + */ + vap->va_birthtime.tv_sec = -1; + vap->va_birthtime.tv_nsec = 0; + vap->va_fsid = VNOVAL; + vap->va_rdev = NODEV; + error = VOP_GETATTR(vp, vap, active_cred, td); if (error) return (error); Modified: stable/7/sys/nfsclient/nfs_vnops.c ============================================================================== --- stable/7/sys/nfsclient/nfs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/nfsclient/nfs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -631,6 +631,8 @@ nfs_getattr(struct vop_getattr_args *ap) { struct vnode *vp = ap->a_vp; struct nfsnode *np = VTONFS(vp); + struct vattr *vap = ap->a_vap; + struct vattr vattr; caddr_t bpos, dpos; int error = 0; struct mbuf *mreq, *mrep, *md, *mb; @@ -646,12 +648,12 @@ nfs_getattr(struct vop_getattr_args *ap) /* * First look in the cache. */ - if (nfs_getattrcache(vp, ap->a_vap) == 0) + if (nfs_getattrcache(vp, &vattr) == 0) goto nfsmout; if (v3 && nfsaccess_cache_timeout > 0) { nfsstats.accesscache_misses++; nfs3_access_otw(vp, NFSV3ACCESS_ALL, ap->a_td, ap->a_cred); - if (nfs_getattrcache(vp, ap->a_vap) == 0) + if (nfs_getattrcache(vp, &vattr) == 0) goto nfsmout; } nfsstats.rpccnt[NFSPROC_GETATTR]++; @@ -661,10 +663,28 @@ nfs_getattr(struct vop_getattr_args *ap) nfsm_fhtom(vp, v3); nfsm_request(vp, NFSPROC_GETATTR, ap->a_td, ap->a_cred); if (!error) { - nfsm_loadattr(vp, ap->a_vap); + nfsm_loadattr(vp, &vattr); } m_freem(mrep); nfsmout: + vap->va_type = vattr.va_type; + vap->va_mode = vattr.va_mode; + vap->va_nlink = vattr.va_nlink; + vap->va_uid = vattr.va_uid; + vap->va_gid = vattr.va_gid; + vap->va_fsid = vattr.va_fsid; + vap->va_fileid = vattr.va_fileid; + vap->va_size = vattr.va_size; + vap->va_blocksize = vattr.va_blocksize; + vap->va_atime = vattr.va_atime; + vap->va_mtime = vattr.va_mtime; + vap->va_ctime = vattr.va_ctime; + vap->va_gen = vattr.va_gen; + vap->va_flags = vattr.va_flags; + vap->va_rdev = vattr.va_rdev; + vap->va_bytes = vattr.va_bytes; + vap->va_filerev = vattr.va_filerev; + return (error); } Modified: stable/7/sys/ufs/ufs/ufs_vnops.c ============================================================================== --- stable/7/sys/ufs/ufs/ufs_vnops.c Wed Jan 21 15:25:00 2009 (r187533) +++ stable/7/sys/ufs/ufs/ufs_vnops.c Wed Jan 21 15:51:15 2009 (r187534) @@ -445,8 +445,6 @@ ufs_getattr(ap) vap->va_mtime.tv_nsec = ip->i_din1->di_mtimensec; vap->va_ctime.tv_sec = ip->i_din1->di_ctime; vap->va_ctime.tv_nsec = ip->i_din1->di_ctimensec; - vap->va_birthtime.tv_sec = 0; - vap->va_birthtime.tv_nsec = 0; vap->va_bytes = dbtob((u_quad_t)ip->i_din1->di_blocks); } else { vap->va_rdev = ip->i_din2->di_rdev; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 16:14:44 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 699B4106566C; Wed, 21 Jan 2009 16:14:44 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 55B8E8FC18; Wed, 21 Jan 2009 16:14:44 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LGEiP6082750; Wed, 21 Jan 2009 16:14:44 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LGEiFM082747; Wed, 21 Jan 2009 16:14:44 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211614.n0LGEiFM082747@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 16:14:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187535 - in stable/7/sys: . compat/freebsd32 compat/ia32 contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 16:14:45 -0000 Author: jhb Date: Wed Jan 21 16:14:43 2009 New Revision: 187535 URL: http://svn.freebsd.org/changeset/base/187535 Log: MFC: Add support for installing 32-bit system calls from kernel modules. Modified: stable/7/sys/ (props changed) stable/7/sys/compat/freebsd32/freebsd32_misc.c stable/7/sys/compat/freebsd32/freebsd32_util.h stable/7/sys/compat/ia32/ia32_sysvec.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/compat/freebsd32/freebsd32_misc.c ============================================================================== --- stable/7/sys/compat/freebsd32/freebsd32_misc.c Wed Jan 21 15:51:15 2009 (r187534) +++ stable/7/sys/compat/freebsd32/freebsd32_misc.c Wed Jan 21 16:14:43 2009 (r187535) @@ -2589,3 +2589,83 @@ freebsd32_xxx(struct thread *td, struct return (error); } #endif + +int +syscall32_register(int *offset, struct sysent *new_sysent, + struct sysent *old_sysent) +{ + if (*offset == NO_SYSCALL) { + int i; + + for (i = 1; i < SYS_MAXSYSCALL; ++i) + if (freebsd32_sysent[i].sy_call == + (sy_call_t *)lkmnosys) + break; + if (i == SYS_MAXSYSCALL) + return (ENFILE); + *offset = i; + } else if (*offset < 0 || *offset >= SYS_MAXSYSCALL) + return (EINVAL); + else if (freebsd32_sysent[*offset].sy_call != (sy_call_t *)lkmnosys && + freebsd32_sysent[*offset].sy_call != (sy_call_t *)lkmressys) + return (EEXIST); + + *old_sysent = freebsd32_sysent[*offset]; + freebsd32_sysent[*offset] = *new_sysent; + return 0; +} + +int +syscall32_deregister(int *offset, struct sysent *old_sysent) +{ + + if (*offset) + freebsd32_sysent[*offset] = *old_sysent; + return 0; +} + +int +syscall32_module_handler(struct module *mod, int what, void *arg) +{ + struct syscall_module_data *data = (struct syscall_module_data*)arg; + modspecific_t ms; + int error; + + switch (what) { + case MOD_LOAD: + error = syscall32_register(data->offset, data->new_sysent, + &data->old_sysent); + if (error) { + /* Leave a mark so we know to safely unload below. */ + data->offset = NULL; + return error; + } + ms.intval = *data->offset; + MOD_XLOCK; + module_setspecific(mod, &ms); + MOD_XUNLOCK; + if (data->chainevh) + error = data->chainevh(mod, what, data->chainarg); + return (error); + case MOD_UNLOAD: + /* + * MOD_LOAD failed, so just return without calling the + * chained handler since we didn't pass along the MOD_LOAD + * event. + */ + if (data->offset == NULL) + return (0); + if (data->chainevh) { + error = data->chainevh(mod, what, data->chainarg); + if (error) + return (error); + } + error = syscall32_deregister(data->offset, &data->old_sysent); + return (error); + default: + error = EOPNOTSUPP; + if (data->chainevh) + error = data->chainevh(mod, what, data->chainarg); + return (error); + } +} Modified: stable/7/sys/compat/freebsd32/freebsd32_util.h ============================================================================== --- stable/7/sys/compat/freebsd32/freebsd32_util.h Wed Jan 21 15:51:15 2009 (r187534) +++ stable/7/sys/compat/freebsd32/freebsd32_util.h Wed Jan 21 16:14:43 2009 (r187535) @@ -28,14 +28,16 @@ * $FreeBSD$ */ -#include -#include -#include - +#ifndef _COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ +#define _COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ +#include #include #include -#include + +#include +#include +#include struct freebsd32_ps_strings { u_int32_t ps_argvstr; /* first of 0 or more argument strings */ @@ -50,3 +52,35 @@ struct freebsd32_ps_strings { #define FREEBSD32_PS_STRINGS \ (FREEBSD32_USRSTACK - sizeof(struct freebsd32_ps_strings)) + +extern struct sysent freebsd32_sysent[]; + +#define SYSCALL32_MODULE(name, offset, new_sysent, evh, arg) \ +static struct syscall_module_data name##_syscall32_mod = { \ + evh, arg, offset, new_sysent, { 0, NULL } \ +}; \ + \ +static moduledata_t name##32_mod = { \ + #name, \ + syscall32_module_handler, \ + &name##_syscall32_mod \ +}; \ +DECLARE_MODULE(name##32, name##32_mod, SI_SUB_SYSCALLS, SI_ORDER_MIDDLE) + +#define SYSCALL32_MODULE_HELPER(syscallname) \ +static int syscallname##_syscall32 = FREEBSD32_SYS_##syscallname; \ +static struct sysent syscallname##_sysent32 = { \ + (sizeof(struct syscallname ## _args ) \ + / sizeof(register_t)), \ + (sy_call_t *)& syscallname \ +}; \ +SYSCALL32_MODULE(syscallname, \ + & syscallname##_syscall32, & syscallname##_sysent32,\ + NULL, NULL); + +int syscall32_register(int *offset, struct sysent *new_sysent, + struct sysent *old_sysent); +int syscall32_deregister(int *offset, struct sysent *old_sysent); +int syscall32_module_handler(struct module *mod, int what, void *arg); + +#endif /* !_COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ */ Modified: stable/7/sys/compat/ia32/ia32_sysvec.c ============================================================================== --- stable/7/sys/compat/ia32/ia32_sysvec.c Wed Jan 21 15:51:15 2009 (r187534) +++ stable/7/sys/compat/ia32/ia32_sysvec.c Wed Jan 21 16:14:43 2009 (r187535) @@ -96,8 +96,6 @@ CTASSERT(sizeof(struct ia32_sigframe4) = static register_t *ia32_copyout_strings(struct image_params *imgp); static void ia32_fixlimit(struct rlimit *rl, int which); -extern struct sysent freebsd32_sysent[]; - SYSCTL_NODE(_compat, OID_AUTO, ia32, CTLFLAG_RW, 0, "ia32 mode"); static u_long ia32_maxdsiz = IA32_MAXDSIZ; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 16:28:15 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7996A1065672; Wed, 21 Jan 2009 16:28:15 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 668328FC16; Wed, 21 Jan 2009 16:28:15 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LGSF83083051; Wed, 21 Jan 2009 16:28:15 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LGSFev083048; Wed, 21 Jan 2009 16:28:15 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211628.n0LGSFev083048@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 16:28:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187536 - in stable/6/sys: . compat/freebsd32 compat/ia32 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 16:28:16 -0000 Author: jhb Date: Wed Jan 21 16:28:15 2009 New Revision: 187536 URL: http://svn.freebsd.org/changeset/base/187536 Log: MFC: Add support for installing 32-bit system calls from kernel modules. Modified: stable/6/sys/ (props changed) stable/6/sys/compat/freebsd32/freebsd32_misc.c stable/6/sys/compat/freebsd32/freebsd32_util.h stable/6/sys/compat/ia32/ia32_sysvec.c Modified: stable/6/sys/compat/freebsd32/freebsd32_misc.c ============================================================================== --- stable/6/sys/compat/freebsd32/freebsd32_misc.c Wed Jan 21 16:14:43 2009 (r187535) +++ stable/6/sys/compat/freebsd32/freebsd32_misc.c Wed Jan 21 16:28:15 2009 (r187536) @@ -2298,3 +2298,83 @@ freebsd32_xxx(struct thread *td, struct } #endif + +int +syscall32_register(int *offset, struct sysent *new_sysent, + struct sysent *old_sysent) +{ + if (*offset == NO_SYSCALL) { + int i; + + for (i = 1; i < SYS_MAXSYSCALL; ++i) + if (freebsd32_sysent[i].sy_call == + (sy_call_t *)lkmnosys) + break; + if (i == SYS_MAXSYSCALL) + return (ENFILE); + *offset = i; + } else if (*offset < 0 || *offset >= SYS_MAXSYSCALL) + return (EINVAL); + else if (freebsd32_sysent[*offset].sy_call != (sy_call_t *)lkmnosys && + freebsd32_sysent[*offset].sy_call != (sy_call_t *)lkmressys) + return (EEXIST); + + *old_sysent = freebsd32_sysent[*offset]; + freebsd32_sysent[*offset] = *new_sysent; + return 0; +} + +int +syscall32_deregister(int *offset, struct sysent *old_sysent) +{ + + if (*offset) + freebsd32_sysent[*offset] = *old_sysent; + return 0; +} + +int +syscall32_module_handler(struct module *mod, int what, void *arg) +{ + struct syscall_module_data *data = (struct syscall_module_data*)arg; + modspecific_t ms; + int error; + + switch (what) { + case MOD_LOAD: + error = syscall32_register(data->offset, data->new_sysent, + &data->old_sysent); + if (error) { + /* Leave a mark so we know to safely unload below. */ + data->offset = NULL; + return error; + } + ms.intval = *data->offset; + MOD_XLOCK; + module_setspecific(mod, &ms); + MOD_XUNLOCK; + if (data->chainevh) + error = data->chainevh(mod, what, data->chainarg); + return (error); + case MOD_UNLOAD: + /* + * MOD_LOAD failed, so just return without calling the + * chained handler since we didn't pass along the MOD_LOAD + * event. + */ + if (data->offset == NULL) + return (0); + if (data->chainevh) { + error = data->chainevh(mod, what, data->chainarg); + if (error) + return (error); + } + error = syscall32_deregister(data->offset, &data->old_sysent); + return (error); + default: + error = EOPNOTSUPP; + if (data->chainevh) + error = data->chainevh(mod, what, data->chainarg); + return (error); + } +} Modified: stable/6/sys/compat/freebsd32/freebsd32_util.h ============================================================================== --- stable/6/sys/compat/freebsd32/freebsd32_util.h Wed Jan 21 16:14:43 2009 (r187535) +++ stable/6/sys/compat/freebsd32/freebsd32_util.h Wed Jan 21 16:28:15 2009 (r187536) @@ -28,14 +28,16 @@ * $FreeBSD$ */ -#include -#include -#include - +#ifndef _COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ +#define _COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ +#include #include #include -#include + +#include +#include +#include struct freebsd32_ps_strings { u_int32_t ps_argvstr; /* first of 0 or more argument strings */ @@ -50,3 +52,35 @@ struct freebsd32_ps_strings { #define FREEBSD32_PS_STRINGS \ (FREEBSD32_USRSTACK - sizeof(struct freebsd32_ps_strings)) + +extern struct sysent freebsd32_sysent[]; + +#define SYSCALL32_MODULE(name, offset, new_sysent, evh, arg) \ +static struct syscall_module_data name##_syscall32_mod = { \ + evh, arg, offset, new_sysent, { 0, NULL } \ +}; \ + \ +static moduledata_t name##32_mod = { \ + #name, \ + syscall32_module_handler, \ + &name##_syscall32_mod \ +}; \ +DECLARE_MODULE(name##32, name##32_mod, SI_SUB_SYSCALLS, SI_ORDER_MIDDLE) + +#define SYSCALL32_MODULE_HELPER(syscallname) \ +static int syscallname##_syscall32 = FREEBSD32_SYS_##syscallname; \ +static struct sysent syscallname##_sysent32 = { \ + (sizeof(struct syscallname ## _args ) \ + / sizeof(register_t)), \ + (sy_call_t *)& syscallname \ +}; \ +SYSCALL32_MODULE(syscallname, \ + & syscallname##_syscall32, & syscallname##_sysent32,\ + NULL, NULL); + +int syscall32_register(int *offset, struct sysent *new_sysent, + struct sysent *old_sysent); +int syscall32_deregister(int *offset, struct sysent *old_sysent); +int syscall32_module_handler(struct module *mod, int what, void *arg); + +#endif /* !_COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ */ Modified: stable/6/sys/compat/ia32/ia32_sysvec.c ============================================================================== --- stable/6/sys/compat/ia32/ia32_sysvec.c Wed Jan 21 16:14:43 2009 (r187535) +++ stable/6/sys/compat/ia32/ia32_sysvec.c Wed Jan 21 16:28:15 2009 (r187536) @@ -95,8 +95,6 @@ CTASSERT(sizeof(struct ia32_sigframe4) = static register_t *ia32_copyout_strings(struct image_params *imgp); static void ia32_fixlimit(struct rlimit *rl, int which); -extern struct sysent freebsd32_sysent[]; - SYSCTL_NODE(_compat, OID_AUTO, ia32, CTLFLAG_RW, 0, "ia32 mode"); struct sysentvec ia32_freebsd_sysvec = { From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:03:55 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A37ED1065749; Wed, 21 Jan 2009 17:03:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 84B908FC14; Wed, 21 Jan 2009 17:03:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LH3tOu083890; Wed, 21 Jan 2009 17:03:55 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LH3t0a083886; Wed, 21 Jan 2009 17:03:55 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211703.n0LH3t0a083886@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 17:03:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187537 - in stable/6/sys: . compat/freebsd32 kern sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:03:56 -0000 Author: jhb Date: Wed Jan 21 17:03:55 2009 New Revision: 187537 URL: http://svn.freebsd.org/changeset/base/187537 Log: MFC: Split most of getdirentries() out into a kern_getdirentries() and add a freebsd32 frontend to fix a data corruption bug with 32-bit binaries. Modified: stable/6/sys/ (props changed) stable/6/sys/compat/freebsd32/freebsd32_misc.c stable/6/sys/compat/freebsd32/syscalls.master stable/6/sys/kern/vfs_syscalls.c stable/6/sys/sys/syscallsubr.h Modified: stable/6/sys/compat/freebsd32/freebsd32_misc.c ============================================================================== --- stable/6/sys/compat/freebsd32/freebsd32_misc.c Wed Jan 21 16:28:15 2009 (r187536) +++ stable/6/sys/compat/freebsd32/freebsd32_misc.c Wed Jan 21 17:03:55 2009 (r187537) @@ -1702,6 +1702,24 @@ freebsd32_ftruncate(struct thread *td, s return (ftruncate(td, &ap)); } +int +freebsd32_getdirentries(struct thread *td, + struct freebsd32_getdirentries_args *uap) +{ + long base; + int32_t base32; + int error; + + error = kern_getdirentries(td, uap->fd, uap->buf, uap->count, &base); + if (error) + return (error); + if (uap->basep != NULL) { + base32 = base; + error = copyout(&base32, uap->basep, sizeof(int32_t)); + } + return (error); +} + struct sf_hdtr32 { uint32_t headers; int hdr_cnt; Modified: stable/6/sys/compat/freebsd32/syscalls.master ============================================================================== --- stable/6/sys/compat/freebsd32/syscalls.master Wed Jan 21 16:28:15 2009 (r187536) +++ stable/6/sys/compat/freebsd32/syscalls.master Wed Jan 21 17:03:55 2009 (r187537) @@ -355,8 +355,8 @@ 195 AUE_SETRLIMIT MNOPROTO { int setrlimit(u_int which, \ struct rlimit *rlp); } setrlimit \ __setrlimit_args int -196 AUE_GETDIRENTRIES MNOPROTO { int getdirentries(int fd, char *buf, \ - u_int count, long *basep); } +196 AUE_GETDIRENTRIES MSTD { int freebsd32_getdirentries(int fd, \ + char *buf, u_int count, int32_t *basep); } 197 AUE_MMAP MSTD { caddr_t freebsd32_mmap(caddr_t addr, \ size_t len, int prot, int flags, int fd, \ int pad, u_int32_t poslo, \ Modified: stable/6/sys/kern/vfs_syscalls.c ============================================================================== --- stable/6/sys/kern/vfs_syscalls.c Wed Jan 21 16:28:15 2009 (r187536) +++ stable/6/sys/kern/vfs_syscalls.c Wed Jan 21 17:03:55 2009 (r187537) @@ -3688,6 +3688,21 @@ getdirentries(td, uap) long *basep; } */ *uap; { + long base; + int error; + + error = kern_getdirentries(td, uap->fd, uap->buf, uap->count, &base); + if (error) + return (error); + if (uap->basep != NULL) + error = copyout(&base, uap->basep, sizeof(long)); + return (error); +} + +int +kern_getdirentries(struct thread *td, int fd, char *buf, u_int count, + long *basep) +{ struct vnode *vp; struct file *fp; struct uio auio; @@ -3696,10 +3711,10 @@ getdirentries(td, uap) long loff; int error, eofflag; - AUDIT_ARG(fd, uap->fd); + AUDIT_ARG(fd, fd); if (uap->count > INT_MAX) return (EINVAL); - if ((error = getvnode(td->td_proc->p_fd, uap->fd, &fp)) != 0) + if ((error = getvnode(td->td_proc->p_fd, fd, &fp)) != 0) return (error); if ((fp->f_flag & FREAD) == 0) { fdrop(fp, td); @@ -3713,14 +3728,14 @@ unionread: error = EINVAL; goto fail; } - aiov.iov_base = uap->buf; - aiov.iov_len = uap->count; + aiov.iov_base = buf; + aiov.iov_len = count; auio.uio_iov = &aiov; auio.uio_iovcnt = 1; auio.uio_rw = UIO_READ; auio.uio_segflg = UIO_USERSPACE; auio.uio_td = td; - auio.uio_resid = uap->count; + auio.uio_resid = count; /* vn_lock(vp, LK_SHARED | LK_RETRY, td); */ vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); AUDIT_ARG(vnode, vp, ARG_VNODE1); @@ -3737,7 +3752,7 @@ unionread: VFS_UNLOCK_GIANT(vfslocked); goto fail; } - if (uap->count == auio.uio_resid && + if (count == auio.uio_resid && (vp->v_vflag & VV_ROOT) && (vp->v_mount->mnt_flag & MNT_UNION)) { struct vnode *tvp = vp; @@ -3752,10 +3767,8 @@ unionread: } VOP_UNLOCK(vp, 0, td); VFS_UNLOCK_GIANT(vfslocked); - if (uap->basep != NULL) { - error = copyout(&loff, uap->basep, sizeof(long)); - } - td->td_retval[0] = uap->count - auio.uio_resid; + *basep = loff; + td->td_retval[0] = count - auio.uio_resid; fail: fdrop(fp, td); return (error); Modified: stable/6/sys/sys/syscallsubr.h ============================================================================== --- stable/6/sys/sys/syscallsubr.h Wed Jan 21 16:28:15 2009 (r187536) +++ stable/6/sys/sys/syscallsubr.h Wed Jan 21 17:03:55 2009 (r187537) @@ -79,6 +79,8 @@ int kern_fstat(struct thread *td, int fd int kern_fstatfs(struct thread *td, int fd, struct statfs *buf); int kern_futimes(struct thread *td, int fd, struct timeval *tptr, enum uio_seg tptrseg); +int kern_getdirentries(struct thread *td, int fd, char *buf, u_int count, + long *basep); int kern_getfsstat(struct thread *td, struct statfs **buf, size_t bufsize, enum uio_seg bufseg, int flags); int kern_getitimer(struct thread *, u_int, struct itimerval *); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:07:23 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB3D7106566B; Wed, 21 Jan 2009 17:07:23 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B7DFF8FC12; Wed, 21 Jan 2009 17:07:23 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LH7NJA084038; Wed, 21 Jan 2009 17:07:23 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LH7N6T084034; Wed, 21 Jan 2009 17:07:23 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211707.n0LH7N6T084034@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 17:07:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187538 - stable/6/sys/compat/freebsd32 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:07:25 -0000 Author: jhb Date: Wed Jan 21 17:07:23 2009 New Revision: 187538 URL: http://svn.freebsd.org/changeset/base/187538 Log: Regen. Modified: stable/6/sys/compat/freebsd32/freebsd32_proto.h stable/6/sys/compat/freebsd32/freebsd32_syscall.h stable/6/sys/compat/freebsd32/freebsd32_syscalls.c stable/6/sys/compat/freebsd32/freebsd32_sysent.c Modified: stable/6/sys/compat/freebsd32/freebsd32_proto.h ============================================================================== --- stable/6/sys/compat/freebsd32/freebsd32_proto.h Wed Jan 21 17:03:55 2009 (r187537) +++ stable/6/sys/compat/freebsd32/freebsd32_proto.h Wed Jan 21 17:07:23 2009 (r187538) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.50.2.16 2008/04/24 10:46:17 dfr Exp + * created from FreeBSD: stable/6/sys/compat/freebsd32/syscalls.master 187537 2009-01-21 17:03:55Z jhb */ #ifndef _FREEBSD32_SYSPROTO_H_ @@ -163,6 +163,12 @@ struct freebsd32_lstat_args { char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; char ub_l_[PADL_(struct stat32 *)]; struct stat32 * ub; char ub_r_[PADR_(struct stat32 *)]; }; +struct freebsd32_getdirentries_args { + char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; + char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)]; + char count_l_[PADL_(u_int)]; u_int count; char count_r_[PADR_(u_int)]; + char basep_l_[PADL_(int32_t *)]; int32_t * basep; char basep_r_[PADR_(int32_t *)]; +}; struct freebsd32_mmap_args { char addr_l_[PADL_(caddr_t)]; caddr_t addr; char addr_r_[PADR_(caddr_t)]; char len_l_[PADL_(size_t)]; size_t len; char len_r_[PADR_(size_t)]; @@ -349,6 +355,7 @@ int freebsd32_pwrite(struct thread *, st int freebsd32_stat(struct thread *, struct freebsd32_stat_args *); int freebsd32_fstat(struct thread *, struct freebsd32_fstat_args *); int freebsd32_lstat(struct thread *, struct freebsd32_lstat_args *); +int freebsd32_getdirentries(struct thread *, struct freebsd32_getdirentries_args *); int freebsd32_mmap(struct thread *, struct freebsd32_mmap_args *); int freebsd32_lseek(struct thread *, struct freebsd32_lseek_args *); int freebsd32_truncate(struct thread *, struct freebsd32_truncate_args *); Modified: stable/6/sys/compat/freebsd32/freebsd32_syscall.h ============================================================================== --- stable/6/sys/compat/freebsd32/freebsd32_syscall.h Wed Jan 21 17:03:55 2009 (r187537) +++ stable/6/sys/compat/freebsd32/freebsd32_syscall.h Wed Jan 21 17:07:23 2009 (r187538) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.50.2.16 2008/04/24 10:46:17 dfr Exp + * created from FreeBSD: stable/6/sys/compat/freebsd32/syscalls.master 187537 2009-01-21 17:03:55Z jhb */ #define FREEBSD32_SYS_syscall 0 @@ -177,7 +177,7 @@ #define FREEBSD32_SYS_fpathconf 192 #define FREEBSD32_SYS_getrlimit 194 #define FREEBSD32_SYS_setrlimit 195 -#define FREEBSD32_SYS_getdirentries 196 +#define FREEBSD32_SYS_freebsd32_getdirentries 196 #define FREEBSD32_SYS_freebsd32_mmap 197 #define FREEBSD32_SYS___syscall 198 #define FREEBSD32_SYS_freebsd32_lseek 199 Modified: stable/6/sys/compat/freebsd32/freebsd32_syscalls.c ============================================================================== --- stable/6/sys/compat/freebsd32/freebsd32_syscalls.c Wed Jan 21 17:03:55 2009 (r187537) +++ stable/6/sys/compat/freebsd32/freebsd32_syscalls.c Wed Jan 21 17:07:23 2009 (r187538) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.50.2.16 2008/04/24 10:46:17 dfr Exp + * created from FreeBSD: stable/6/sys/compat/freebsd32/syscalls.master 187537 2009-01-21 17:03:55Z jhb */ const char *freebsd32_syscallnames[] = { @@ -203,7 +203,7 @@ const char *freebsd32_syscallnames[] = { "#193", /* 193 = nosys */ "getrlimit", /* 194 = getrlimit */ "setrlimit", /* 195 = setrlimit */ - "getdirentries", /* 196 = getdirentries */ + "freebsd32_getdirentries", /* 196 = freebsd32_getdirentries */ "freebsd32_mmap", /* 197 = freebsd32_mmap */ "__syscall", /* 198 = __syscall */ "freebsd32_lseek", /* 199 = freebsd32_lseek */ Modified: stable/6/sys/compat/freebsd32/freebsd32_sysent.c ============================================================================== --- stable/6/sys/compat/freebsd32/freebsd32_sysent.c Wed Jan 21 17:03:55 2009 (r187537) +++ stable/6/sys/compat/freebsd32/freebsd32_sysent.c Wed Jan 21 17:07:23 2009 (r187538) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.50.2.16 2008/04/24 10:46:17 dfr Exp + * created from FreeBSD: stable/6/sys/compat/freebsd32/syscalls.master 187537 2009-01-21 17:03:55Z jhb */ #include "opt_compat.h" @@ -229,7 +229,7 @@ struct sysent freebsd32_sysent[] = { { 0, (sy_call_t *)nosys, AUE_NULL }, /* 193 = nosys */ { SYF_MPSAFE | AS(__getrlimit_args), (sy_call_t *)getrlimit, AUE_GETRLIMIT }, /* 194 = getrlimit */ { SYF_MPSAFE | AS(__setrlimit_args), (sy_call_t *)setrlimit, AUE_SETRLIMIT }, /* 195 = setrlimit */ - { SYF_MPSAFE | AS(getdirentries_args), (sy_call_t *)getdirentries, AUE_GETDIRENTRIES }, /* 196 = getdirentries */ + { SYF_MPSAFE | AS(freebsd32_getdirentries_args), (sy_call_t *)freebsd32_getdirentries, AUE_GETDIRENTRIES }, /* 196 = freebsd32_getdirentries */ { SYF_MPSAFE | AS(freebsd32_mmap_args), (sy_call_t *)freebsd32_mmap, AUE_MMAP }, /* 197 = freebsd32_mmap */ { SYF_MPSAFE | 0, (sy_call_t *)nosys, AUE_NULL }, /* 198 = __syscall */ { SYF_MPSAFE | AS(freebsd32_lseek_args), (sy_call_t *)freebsd32_lseek, AUE_LSEEK }, /* 199 = freebsd32_lseek */ From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:07:46 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B78791065673; Wed, 21 Jan 2009 17:07:46 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A422C8FC21; Wed, 21 Jan 2009 17:07:46 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LH7k53084094; Wed, 21 Jan 2009 17:07:46 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LH7kJ1084093; Wed, 21 Jan 2009 17:07:46 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901211707.n0LH7kJ1084093@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 21 Jan 2009 17:07:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187539 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb pci X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:07:47 -0000 Author: jkim Date: Wed Jan 21 17:07:46 2009 New Revision: 187539 URL: http://svn.freebsd.org/changeset/base/187539 Log: MFC: Add support for AMD64 Family 10h processors. PR: kern/128331 Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/pci/agp_amd64.c Modified: stable/7/sys/pci/agp_amd64.c ============================================================================== --- stable/7/sys/pci/agp_amd64.c Wed Jan 21 17:07:23 2009 (r187538) +++ stable/7/sys/pci/agp_amd64.c Wed Jan 21 17:07:46 2009 (r187539) @@ -167,14 +167,16 @@ agp_amd64_attach(device_t dev) { struct agp_amd64_softc *sc = device_get_softc(dev); struct agp_gatt *gatt; + uint32_t devid; int i, n, error; - for (i = 0, n = 0; i < PCI_SLOTMAX && n < AMD64_MAX_MCTRL; i++) - if (pci_cfgregread(0, i, 3, 0, 4) == 0x11031022) { + for (i = 0, n = 0; i < PCI_SLOTMAX && n < AMD64_MAX_MCTRL; i++) { + devid = pci_cfgregread(0, i, 3, 0, 4); + if (devid == 0x11031022 || devid == 0x12031022) { sc->mctrl[n] = i; n++; } - + } if (n == 0) return (ENXIO); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:13:31 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 834CC1065672; Wed, 21 Jan 2009 17:13:31 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 707678FC1C; Wed, 21 Jan 2009 17:13:31 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LHDVcE084280; Wed, 21 Jan 2009 17:13:31 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LHDVQg084279; Wed, 21 Jan 2009 17:13:31 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211713.n0LHDVQg084279@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 17:13:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187540 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb dev/mfi X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:13:32 -0000 Author: jhb Date: Wed Jan 21 17:13:31 2009 New Revision: 187540 URL: http://svn.freebsd.org/changeset/base/187540 Log: MFC: Fix the maximum transfer size for mfi(4) disk devices to not exceed the maximum number of scatter/gather elements supported in the bus dma tag. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/dev/mfi/mfi_disk.c Modified: stable/7/sys/dev/mfi/mfi_disk.c ============================================================================== --- stable/7/sys/dev/mfi/mfi_disk.c Wed Jan 21 17:07:46 2009 (r187539) +++ stable/7/sys/dev/mfi/mfi_disk.c Wed Jan 21 17:13:31 2009 (r187540) @@ -136,7 +136,8 @@ mfi_disk_attach(device_t dev) sc->ld_disk = disk_alloc(); sc->ld_disk->d_drv1 = sc; - sc->ld_disk->d_maxsize = sc->ld_controller->mfi_max_io * secsize; + sc->ld_disk->d_maxsize = min(sc->ld_controller->mfi_max_io * secsize, + (sc->ld_controller->mfi_max_sge - 1) * PAGE_SIZE); sc->ld_disk->d_name = "mfid"; sc->ld_disk->d_open = mfi_disk_open; sc->ld_disk->d_close = mfi_disk_close; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:16:03 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE105106566B; Wed, 21 Jan 2009 17:16:03 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9BAE98FC18; Wed, 21 Jan 2009 17:16:03 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LHG3kd084391; Wed, 21 Jan 2009 17:16:03 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LHG3RG084390; Wed, 21 Jan 2009 17:16:03 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211716.n0LHG3RG084390@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 17:16:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187541 - in stable/6/sys: . dev/mfi X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:16:04 -0000 Author: jhb Date: Wed Jan 21 17:16:03 2009 New Revision: 187541 URL: http://svn.freebsd.org/changeset/base/187541 Log: MFC: Fix the maximum transfer size for mfi(4) disk devices to not exceed the maximum number of scatter/gather elements supported in the bus dma tag. Modified: stable/6/sys/ (props changed) stable/6/sys/dev/mfi/mfi_disk.c Modified: stable/6/sys/dev/mfi/mfi_disk.c ============================================================================== --- stable/6/sys/dev/mfi/mfi_disk.c Wed Jan 21 17:13:31 2009 (r187540) +++ stable/6/sys/dev/mfi/mfi_disk.c Wed Jan 21 17:16:03 2009 (r187541) @@ -136,7 +136,8 @@ mfi_disk_attach(device_t dev) sc->ld_disk = disk_alloc(); sc->ld_disk->d_drv1 = sc; - sc->ld_disk->d_maxsize = sc->ld_controller->mfi_max_io * secsize; + sc->ld_disk->d_maxsize = min(sc->ld_controller->mfi_max_io * secsize, + (sc->ld_controller->mfi_max_sge - 1) * PAGE_SIZE); sc->ld_disk->d_name = "mfid"; sc->ld_disk->d_open = mfi_disk_open; sc->ld_disk->d_close = mfi_disk_close; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:23:06 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B51441065689; Wed, 21 Jan 2009 17:23:06 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A242F8FC12; Wed, 21 Jan 2009 17:23:06 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LHN6E4084593; Wed, 21 Jan 2009 17:23:06 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LHN6PS084592; Wed, 21 Jan 2009 17:23:06 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200901211723.n0LHN6PS084592@svn.freebsd.org> From: Nick Hibma Date: Wed, 21 Jan 2009 17:23:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187542 - stable/7/sys/dev/ata X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:23:07 -0000 Author: n_hibma Date: Wed Jan 21 17:23:06 2009 New Revision: 187542 URL: http://svn.freebsd.org/changeset/base/187542 Log: Couple of pointy hats to me, please. Not only did I make an unnecessary commit, I actually managed to screw up the revert as well. Submitted by: quite a few people... Modified: stable/7/sys/dev/ata/ata-all.c Modified: stable/7/sys/dev/ata/ata-all.c ============================================================================== --- stable/7/sys/dev/ata/ata-all.c Wed Jan 21 17:16:03 2009 (r187541) +++ stable/7/sys/dev/ata/ata-all.c Wed Jan 21 17:23:06 2009 (r187542) @@ -127,7 +127,7 @@ ata_attach(device_t dev) /* reset the controller HW, the channel and device(s) */ while (ATA_LOCKING(dev, ATA_LF_LOCK) != ch->unit) - pause("atatch", 1); + pause("ataatch", 1); ATA_RESET(dev); ATA_LOCKING(dev, ATA_LF_UNLOCK); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:28:24 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FC76106566C; Wed, 21 Jan 2009 17:28:24 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4DD868FC1B; Wed, 21 Jan 2009 17:28:24 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LHSOXh084771; Wed, 21 Jan 2009 17:28:24 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LHSO7n084770; Wed, 21 Jan 2009 17:28:24 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <200901211728.n0LHSO7n084770@svn.freebsd.org> From: Warner Losh Date: Wed, 21 Jan 2009 17:28:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187543 - head/sys/dev/mmc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:28:25 -0000 Author: imp Date: Wed Jan 21 17:28:24 2009 New Revision: 187543 URL: http://svn.freebsd.org/changeset/base/187543 Log: Make the command reporting be under boot verbose. Also, report a few other things under boot verbose. Small style nit to make new code look like old code in this file. Modified: head/sys/dev/mmc/mmc.c Modified: head/sys/dev/mmc/mmc.c ============================================================================== --- head/sys/dev/mmc/mmc.c Wed Jan 21 17:23:06 2009 (r187542) +++ head/sys/dev/mmc/mmc.c Wed Jan 21 17:28:24 2009 (r187543) @@ -340,7 +340,9 @@ mmc_wait_for_cmd(struct mmc_softc *sc, s memset(cmd->resp, 0, sizeof(cmd->resp)); cmd->retries = retries; mreq.cmd = cmd; -/* printf("CMD: %x ARG %x\n", cmd->opcode, cmd->arg); */ + if (bootverbose) + device_printf(sc->dev, "CMD: %#x ARG %#x\n", cmd->opcode, + cmd->arg); mmc_wait_for_req(sc, &mreq); return (cmd->error); } @@ -629,6 +631,7 @@ mmc_set_timing(struct mmc_softc *sc, int { int err; uint8_t value; + u_char switch_res[64]; switch (timing) { case bus_timing_normal: @@ -640,14 +643,11 @@ mmc_set_timing(struct mmc_softc *sc, int default: return (MMC_ERR_INVALID); } - if (mmcbr_get_mode(sc->dev) == mode_sd) { - u_char switch_res[64]; - + if (mmcbr_get_mode(sc->dev) == mode_sd) err = mmc_sd_switch(sc, 1, 0, value, switch_res); - } else { + else err = mmc_switch(sc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING, value); - } return (err); } @@ -1255,8 +1255,12 @@ mmc_go_discovery(struct mmc_softc *sc) mmcbr_set_mode(dev, mode_sd); mmc_power_up(sc); mmcbr_set_bus_mode(dev, pushpull); + if (bootverbose) + device_printf(sc->dev, "Idle cards for SD probe\n"); mmc_idle_cards(sc); err = mmc_send_if_cond(sc, 1); + if (bootverbose) + device_printf(sc->dev, "SD: SEND_IF_CONF %d\n", err); if (mmc_send_app_op_cond(sc, err ? 0 : MMC_OCR_CCS, &ocr) != MMC_ERR_NONE) { /* From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:32:26 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A90FB1065674; Wed, 21 Jan 2009 17:32:26 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 955688FC1E; Wed, 21 Jan 2009 17:32:26 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LHWQHi084921; Wed, 21 Jan 2009 17:32:26 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LHWQoE084920; Wed, 21 Jan 2009 17:32:26 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901211732.n0LHWQoE084920@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 21 Jan 2009 17:32:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187544 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb dev/fdc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:32:27 -0000 Author: jkim Date: Wed Jan 21 17:32:26 2009 New Revision: 187544 URL: http://svn.freebsd.org/changeset/base/187544 Log: MFC: r184976 - Revive fdc(4) per-device flag 0x10, which was removed in r1.284[1]. - If the flag is set and auto-select fails, assume disk is not present. - Set disk empty flag only when the floppy controller reset is needed. It fixes regression introduced in r1.311, which prevented it from ignoring errors. Now fdformat(1) and dd(1) with conv=noerror option can continue when read/write errors occur as they should. - Do not retry disk probing as it is extremely slow and pointless. - Move the disk probing code into a separate function. - Do not reset disk empty flag if write-protect check fails somehow. PR: kern/116538[1] Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/dev/fdc/fdc.c Modified: stable/7/sys/dev/fdc/fdc.c ============================================================================== --- stable/7/sys/dev/fdc/fdc.c Wed Jan 21 17:28:24 2009 (r187543) +++ stable/7/sys/dev/fdc/fdc.c Wed Jan 21 17:32:26 2009 (r187544) @@ -97,6 +97,8 @@ __FBSDID("$FreeBSD$"); * fd_drivetype; on i386 machines, if * given as 0, use RTC type for fd0 * and fd1 */ +#define FD_NO_CHLINE 0x10 /* drive does not support changeline + * aka. unit attention */ #define FD_NO_PROBE 0x20 /* don't probe drive (seek test), just * assume it is there */ @@ -263,6 +265,7 @@ struct fd_data { static driver_intr_t fdc_intr; static driver_filter_t fdc_intr_fast; static void fdc_reset(struct fdc_data *); +static int fd_probe_disk(struct fd_data *, int *); SYSCTL_NODE(_debug, OID_AUTO, fdc, CTLFLAG_RW, 0, "fdc driver"); @@ -768,9 +771,11 @@ fdc_worker(struct fdc_data *fdc) (fdc->retry >= retries || (fd->options & FDOPT_NORETRY))) { if ((debugflags & 4)) printf("Too many retries (EIO)\n"); - mtx_lock(&fdc->fdc_mtx); - fd->flags |= FD_EMPTY; - mtx_unlock(&fdc->fdc_mtx); + if (fdc->flags & FDC_NEEDS_RESET) { + mtx_lock(&fdc->fdc_mtx); + fd->flags |= FD_EMPTY; + mtx_unlock(&fdc->fdc_mtx); + } return (fdc_biodone(fdc, EIO)); } @@ -836,65 +841,12 @@ fdc_worker(struct fdc_data *fdc) fdctl_wr(fdc, fd->ft->trans); if (bp->bio_cmd & BIO_PROBE) { - - if (!(fdin_rd(fdc) & FDI_DCHG) && !(fd->flags & FD_EMPTY)) + if ((!(device_get_flags(fd->dev) & FD_NO_CHLINE) && + !(fdin_rd(fdc) & FDI_DCHG) && + !(fd->flags & FD_EMPTY)) || + fd_probe_disk(fd, &need_recal) == 0) return (fdc_biodone(fdc, 0)); - - /* - * Try to find out if we have a disk in the drive - * - * First recal, then seek to cyl#1, this clears the - * old condition on the disk change line so we can - * examine it for current status - */ - if (debugflags & 0x40) - printf("New disk in probe\n"); - mtx_lock(&fdc->fdc_mtx); - fd->flags |= FD_NEWDISK; - mtx_unlock(&fdc->fdc_mtx); - retry_line = __LINE__; - if (fdc_cmd(fdc, 2, NE7CMD_RECAL, fd->fdsu, 0)) - return (1); - tsleep(fdc, PRIBIO, "fdrecal", hz); - retry_line = __LINE__; - if (fdc_sense_int(fdc, &st0, &cyl) == FD_NOT_VALID) - return (1); /* XXX */ - retry_line = __LINE__; - if ((st0 & 0xc0) || cyl != 0) - return (1); - - /* Seek to track 1 */ - retry_line = __LINE__; - if (fdc_cmd(fdc, 3, NE7CMD_SEEK, fd->fdsu, 1, 0)) - return (1); - tsleep(fdc, PRIBIO, "fdseek", hz); - retry_line = __LINE__; - if (fdc_sense_int(fdc, &st0, &cyl) == FD_NOT_VALID) - return (1); /* XXX */ - need_recal |= (1 << fd->fdsu); - if (fdin_rd(fdc) & FDI_DCHG) { - if (debugflags & 0x40) - printf("Empty in probe\n"); - mtx_lock(&fdc->fdc_mtx); - fd->flags |= FD_EMPTY; - mtx_unlock(&fdc->fdc_mtx); - } else { - if (debugflags & 0x40) - printf("Got disk in probe\n"); - mtx_lock(&fdc->fdc_mtx); - fd->flags &= ~FD_EMPTY; - mtx_unlock(&fdc->fdc_mtx); - retry_line = __LINE__; - if(fdc_sense_drive(fdc, &st3) != 0) - return (1); - mtx_lock(&fdc->fdc_mtx); - if(st3 & NE7_ST3_WP) - fd->flags |= FD_WP; - else - fd->flags &= ~FD_WP; - mtx_unlock(&fdc->fdc_mtx); - } - return (fdc_biodone(fdc, 0)); + return (1); } /* @@ -1238,6 +1190,71 @@ fd_enqueue(struct fd_data *fd, struct bi mtx_unlock(&fdc->fdc_mtx); } +/* + * Try to find out if we have a disk in the drive. + */ +static int +fd_probe_disk(struct fd_data *fd, int *recal) +{ + struct fdc_data *fdc; + int st0, st3, cyl; + int oopts, ret; + + fdc = fd->fdc; + oopts = fd->options; + fd->options |= FDOPT_NOERRLOG | FDOPT_NORETRY; + ret = 1; + + /* + * First recal, then seek to cyl#1, this clears the old condition on + * the disk change line so we can examine it for current status. + */ + if (debugflags & 0x40) + printf("New disk in probe\n"); + mtx_lock(&fdc->fdc_mtx); + fd->flags |= FD_NEWDISK; + mtx_unlock(&fdc->fdc_mtx); + if (fdc_cmd(fdc, 2, NE7CMD_RECAL, fd->fdsu, 0)) + goto done; + tsleep(fdc, PRIBIO, "fdrecal", hz); + if (fdc_sense_int(fdc, &st0, &cyl) == FD_NOT_VALID) + goto done; /* XXX */ + if ((st0 & 0xc0) || cyl != 0) + goto done; + + /* Seek to track 1 */ + if (fdc_cmd(fdc, 3, NE7CMD_SEEK, fd->fdsu, 1, 0)) + goto done; + tsleep(fdc, PRIBIO, "fdseek", hz); + if (fdc_sense_int(fdc, &st0, &cyl) == FD_NOT_VALID) + goto done; /* XXX */ + *recal |= (1 << fd->fdsu); + if (fdin_rd(fdc) & FDI_DCHG) { + if (debugflags & 0x40) + printf("Empty in probe\n"); + mtx_lock(&fdc->fdc_mtx); + fd->flags |= FD_EMPTY; + mtx_unlock(&fdc->fdc_mtx); + } else { + if (fdc_sense_drive(fdc, &st3) != 0) + goto done; + if (debugflags & 0x40) + printf("Got disk in probe\n"); + mtx_lock(&fdc->fdc_mtx); + fd->flags &= ~FD_EMPTY; + if (st3 & NE7_ST3_WP) + fd->flags |= FD_WP; + else + fd->flags &= ~FD_WP; + mtx_unlock(&fdc->fdc_mtx); + } + ret = 0; + +done: + fd->options = oopts; + return (ret); +} + static int fdmisccmd(struct fd_data *fd, u_int cmd, void *data) { @@ -1350,7 +1367,7 @@ fdautoselect(struct fd_data *fd) if (debugflags & 0x40) device_printf(fd->dev, "autoselection failed\n"); fdsettype(fd, fd_native_types[fd->type]); - return (0); + return (-1); } else { if (debugflags & 0x40) { device_printf(fd->dev, @@ -1411,7 +1428,13 @@ fd_access(struct g_provider *pp, int r, if (fd->flags & FD_EMPTY) return (ENXIO); if (fd->flags & FD_NEWDISK) { - fdautoselect(fd); + if (fdautoselect(fd) != 0 && + (device_get_flags(fd->dev) & FD_NO_CHLINE)) { + mtx_lock(&fdc->fdc_mtx); + fd->flags |= FD_EMPTY; + mtx_unlock(&fdc->fdc_mtx); + return (ENXIO); + } mtx_lock(&fdc->fdc_mtx); fd->flags &= ~FD_NEWDISK; mtx_unlock(&fdc->fdc_mtx); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:33:46 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8467D106566B; Wed, 21 Jan 2009 17:33:46 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 587C48FC24; Wed, 21 Jan 2009 17:33:46 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LHXk1C085007; Wed, 21 Jan 2009 17:33:46 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LHXkma085006; Wed, 21 Jan 2009 17:33:46 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200901211733.n0LHXkma085006@svn.freebsd.org> From: Andrew Thompson Date: Wed, 21 Jan 2009 17:33:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-svnadmin@freebsd.org X-SVN-Group: svnadmin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187545 - svnadmin/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:33:47 -0000 Author: thompsa Date: Wed Jan 21 17:33:45 2009 New Revision: 187545 URL: http://svn.freebsd.org/changeset/base/187545 Log: Bump my size limit. Modified: svnadmin/conf/sizelimit.conf Modified: svnadmin/conf/sizelimit.conf ============================================================================== --- svnadmin/conf/sizelimit.conf Wed Jan 21 17:32:26 2009 (r187544) +++ svnadmin/conf/sizelimit.conf Wed Jan 21 17:33:45 2009 (r187545) @@ -20,3 +20,4 @@ des lstewart obrien +thompsa From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:34:14 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5174106568C; Wed, 21 Jan 2009 17:34:14 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A383A8FC1C; Wed, 21 Jan 2009 17:34:14 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LHYEeY085055; Wed, 21 Jan 2009 17:34:14 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LHYEAG085054; Wed, 21 Jan 2009 17:34:14 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <200901211734.n0LHYEAG085054@svn.freebsd.org> From: Warner Losh Date: Wed, 21 Jan 2009 17:34:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187546 - head/sys/dev/mmc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:34:15 -0000 Author: imp Date: Wed Jan 21 17:34:14 2009 New Revision: 187546 URL: http://svn.freebsd.org/changeset/base/187546 Log: Fix minor style nit for file consistency. Modified: head/sys/dev/mmc/mmc.c Modified: head/sys/dev/mmc/mmc.c ============================================================================== --- head/sys/dev/mmc/mmc.c Wed Jan 21 17:33:45 2009 (r187545) +++ head/sys/dev/mmc/mmc.c Wed Jan 21 17:34:14 2009 (r187546) @@ -586,11 +586,11 @@ mmc_sd_switch(struct mmc_softc *sc, uint static int mmc_set_card_bus_width(struct mmc_softc *sc, uint16_t rca, int width) { + struct mmc_command cmd; int err; + uint8_t value; if (mmcbr_get_mode(sc->dev) == mode_sd) { - struct mmc_command cmd; - memset(&cmd, 0, sizeof(struct mmc_command)); cmd.opcode = ACMD_SET_BUS_WIDTH; cmd.flags = MMC_RSP_R1 | MMC_CMD_AC; @@ -606,8 +606,6 @@ mmc_set_card_bus_width(struct mmc_softc } err = mmc_wait_for_app_cmd(sc, rca, &cmd, CMD_RETRIES); } else { - uint8_t value; - switch (width) { case bus_width_1: value = EXT_CSD_BUS_WIDTH_1; @@ -621,7 +619,8 @@ mmc_set_card_bus_width(struct mmc_softc default: return (MMC_ERR_INVALID); } - err = mmc_switch(sc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH, value); + err = mmc_switch(sc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH, + value); } return (err); } From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:39:11 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AF321065670; Wed, 21 Jan 2009 17:39:11 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 787D08FC08; Wed, 21 Jan 2009 17:39:11 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LHdBDG085218; Wed, 21 Jan 2009 17:39:11 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LHdBpi085217; Wed, 21 Jan 2009 17:39:11 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <200901211739.n0LHdBpi085217@svn.freebsd.org> From: Warner Losh Date: Wed, 21 Jan 2009 17:39:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187548 - head/sys/arm/at91 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:39:13 -0000 Author: imp Date: Wed Jan 21 17:39:11 2009 New Revision: 187548 URL: http://svn.freebsd.org/changeset/base/187548 Log: o The f_max is really at91_master_clock / 2, not 30MHz, so compute it as such. o Only set 4-bit caps on those boards that have 4-bit caps (this means that because we don't set wire4 yet, this forces us to always use 1-bit bus). o Don't test wire4 when setting up the bus width, since bad things will happen if we do. # This likely won't fix the busted at91 sd card support, but these are # needful changes for correctness. Modified: head/sys/arm/at91/at91_mci.c Modified: head/sys/arm/at91/at91_mci.c ============================================================================== --- head/sys/arm/at91/at91_mci.c Wed Jan 21 17:36:06 2009 (r187547) +++ head/sys/arm/at91/at91_mci.c Wed Jan 21 17:39:11 2009 (r187548) @@ -199,9 +199,12 @@ at91_mci_attach(device_t dev) goto out; } sc->host.f_min = 375000; - sc->host.f_max = 30000000; + sc->host.f_max = at91_master_clock / 2; /* Typically 30MHz */ sc->host.host_ocr = MMC_OCR_320_330 | MMC_OCR_330_340; - sc->host.caps = MMC_CAP_4_BIT_DATA; + if (sc->wire4) + sc->host.caps = MMC_CAP_4_BIT_DATA; + else + sc->host.caps = 0; child = device_add_child(dev, "mmc", 0); device_set_ivars(dev, &sc->host); err = bus_generic_attach(dev); @@ -294,7 +297,7 @@ at91_mci_update_ios(device_t brdev, devi else clkdiv = (at91_master_clock / ios->clock) / 2; } - if (ios->bus_width == bus_width_4 && sc->wire4) + if (ios->bus_width == bus_width_4) WR4(sc, MCI_SDCR, RD4(sc, MCI_SDCR) | MCI_SDCR_SDCBUS); else WR4(sc, MCI_SDCR, RD4(sc, MCI_SDCR) & ~MCI_SDCR_SDCBUS); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 17:49:24 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53C42106566B; Wed, 21 Jan 2009 17:49:24 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 429498FC20; Wed, 21 Jan 2009 17:49:24 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LHnOZg085522; Wed, 21 Jan 2009 17:49:24 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LHnOTm085521; Wed, 21 Jan 2009 17:49:24 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <200901211749.n0LHnOTm085521@svn.freebsd.org> From: Warner Losh Date: Wed, 21 Jan 2009 17:49:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187551 - head/sys/dev/mmc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 17:49:24 -0000 Author: imp Date: Wed Jan 21 17:49:23 2009 New Revision: 187551 URL: http://svn.freebsd.org/changeset/base/187551 Log: Default to normal bus timing mode on SD cards. In practice, most cards people have today support high speed mode, so the timing field would be initialized to bus_timing_hs, but there are some slow cards... Modified: head/sys/dev/mmc/mmc.c Modified: head/sys/dev/mmc/mmc.c ============================================================================== --- head/sys/dev/mmc/mmc.c Wed Jan 21 17:42:57 2009 (r187550) +++ head/sys/dev/mmc/mmc.c Wed Jan 21 17:49:23 2009 (r187551) @@ -1118,6 +1118,7 @@ mmc_discover_cards(struct mmc_softc *sc) mmc_app_send_scr(sc, ivar->rca, ivar->raw_scr); mmc_app_decode_scr(ivar->raw_scr, &ivar->scr); /* Get card switch capabilities. */ + ivar->timing = bus_timing_normal; if ((ivar->scr.sda_vsn >= 1) && (ivar->csd.ccc & (1<<10))) { mmc_sd_switch(sc, 0, 0, 0xF, switch_res); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 18:26:10 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B0AC106564A; Wed, 21 Jan 2009 18:26:10 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 882B38FC1A; Wed, 21 Jan 2009 18:26:10 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LIQAla086269; Wed, 21 Jan 2009 18:26:10 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LIQAit086268; Wed, 21 Jan 2009 18:26:10 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211826.n0LIQAit086268@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 18:26:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187552 - in stable/7/sys: . compat/linprocfs contrib/pf dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 18:26:11 -0000 Author: jhb Date: Wed Jan 21 18:26:10 2009 New Revision: 187552 URL: http://svn.freebsd.org/changeset/base/187552 Log: MFC: Don't leak a reference on the /compat/linux vnode everytime the linprocfs 'mtab' file is read. Modified: stable/7/sys/ (props changed) stable/7/sys/compat/linprocfs/linprocfs.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/compat/linprocfs/linprocfs.c ============================================================================== --- stable/7/sys/compat/linprocfs/linprocfs.c Wed Jan 21 17:49:23 2009 (r187551) +++ stable/7/sys/compat/linprocfs/linprocfs.c Wed Jan 21 18:26:10 2009 (r187552) @@ -315,11 +315,13 @@ linprocfs_domtab(PFS_FILL_ARGS) NDINIT(&nd, LOOKUP, FOLLOW | MPSAFE, UIO_SYSSPACE, linux_emul_path, td); flep = NULL; error = namei(&nd); - VFS_UNLOCK_GIANT(NDHASGIANT(&nd)); - if (error != 0 || vn_fullpath(td, nd.ni_vp, &dlep, &flep) != 0) - lep = linux_emul_path; - else - lep = dlep; + lep = linux_emul_path; + if (error == 0) { + if (vn_fullpath(td, nd.ni_vp, &dlep, &flep) != 0) + lep = dlep; + vrele(nd.ni_vp); + VFS_UNLOCK_GIANT(NDHASGIANT(&nd)); + } lep_len = strlen(lep); mtx_lock(&mountlist_mtx); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 18:32:43 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9321D106564A; Wed, 21 Jan 2009 18:32:43 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 804DB8FC29; Wed, 21 Jan 2009 18:32:43 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LIWhCa086516; Wed, 21 Jan 2009 18:32:43 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LIWhig086513; Wed, 21 Jan 2009 18:32:43 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211832.n0LIWhig086513@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 18:32:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187553 - in stable/7/sys: . contrib/pf dev/cxgb kern sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 18:32:44 -0000 Author: jhb Date: Wed Jan 21 18:32:43 2009 New Revision: 187553 URL: http://svn.freebsd.org/changeset/base/187553 Log: MFC: Invoke MOD_QUIESCE on all modules in a linker file (kld) before unloading any modules. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/kern/kern_linker.c stable/7/sys/kern/kern_module.c stable/7/sys/sys/module.h Modified: stable/7/sys/kern/kern_linker.c ============================================================================== --- stable/7/sys/kern/kern_linker.c Wed Jan 21 18:26:10 2009 (r187552) +++ stable/7/sys/kern/kern_linker.c Wed Jan 21 18:32:43 2009 (r187553) @@ -587,7 +587,30 @@ linker_file_unload(linker_file_t file, i " informing modules\n")); /* - * Inform any modules associated with this file. + * Quiesce all the modules to give them a chance to veto the unload. + */ + MOD_SLOCK; + for (mod = TAILQ_FIRST(&file->modules); mod; + mod = module_getfnext(mod)) { + + error = module_quiesce(mod); + if (error != 0 && flags != LINKER_UNLOAD_FORCE) { + KLD_DPF(FILE, ("linker_file_unload: module %s" + " vetoed unload\n", module_getname(mod))); + /* + * XXX: Do we need to tell all the quiesced modules + * that they can resume work now via a new module + * event? + */ + MOD_SUNLOCK; + return (error); + } + } + MOD_SUNLOCK; + + /* + * Inform any modules associated with this file that they are + * being be unloaded. */ MOD_XLOCK; for (mod = TAILQ_FIRST(&file->modules); mod; mod = next) { @@ -597,9 +620,9 @@ linker_file_unload(linker_file_t file, i /* * Give the module a chance to veto the unload. */ - if ((error = module_unload(mod, flags)) != 0) { - KLD_DPF(FILE, ("linker_file_unload: module %p" - " vetoes unload\n", mod)); + if ((error = module_unload(mod)) != 0) { + KLD_DPF(FILE, ("linker_file_unload: module %s" + " failed unload\n", mod)); return (error); } MOD_XLOCK; Modified: stable/7/sys/kern/kern_module.c ============================================================================== --- stable/7/sys/kern/kern_module.c Wed Jan 21 18:26:10 2009 (r187552) +++ stable/7/sys/kern/kern_module.c Wed Jan 21 18:32:43 2009 (r187553) @@ -196,9 +196,7 @@ module_release(module_t mod) TAILQ_REMOVE(&modules, mod, link); if (mod->file) TAILQ_REMOVE(&mod->file->modules, mod, flink); - MOD_XUNLOCK; free(mod, M_MODULE); - MOD_XLOCK; } } @@ -232,16 +230,25 @@ module_lookupbyid(int modid) } int -module_unload(module_t mod, int flags) +module_quiesce(module_t mod) { int error; mtx_lock(&Giant); error = MOD_EVENT(mod, MOD_QUIESCE); + mtx_unlock(&Giant); if (error == EOPNOTSUPP || error == EINVAL) error = 0; - if (error == 0 || flags == LINKER_UNLOAD_FORCE) - error = MOD_EVENT(mod, MOD_UNLOAD); + return (error); +} + +int +module_unload(module_t mod) +{ + int error; + + mtx_lock(&Giant); + error = MOD_EVENT(mod, MOD_UNLOAD); mtx_unlock(&Giant); return (error); } @@ -262,6 +269,14 @@ module_getfnext(module_t mod) return (TAILQ_NEXT(mod, flink)); } +const char * +module_getname(module_t mod) +{ + + MOD_LOCK_ASSERT; + return (mod->name); +} + void module_setspecific(module_t mod, modspecific_t *datap) { Modified: stable/7/sys/sys/module.h ============================================================================== --- stable/7/sys/sys/module.h Wed Jan 21 18:26:10 2009 (r187552) +++ stable/7/sys/sys/module.h Wed Jan 21 18:32:43 2009 (r187553) @@ -141,11 +141,13 @@ void module_register_init(const void *); int module_register(const struct moduledata *, struct linker_file *); module_t module_lookupbyname(const char *); module_t module_lookupbyid(int); +int module_quiesce(module_t); void module_reference(module_t); void module_release(module_t); -int module_unload(module_t, int flags); +int module_unload(module_t); int module_getid(module_t); module_t module_getfnext(module_t); +const char * module_getname(module_t); void module_setspecific(module_t, modspecific_t *); struct linker_file *module_file(module_t); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 18:35:49 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB615106570F; Wed, 21 Jan 2009 18:35:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A2CB88FC0C; Wed, 21 Jan 2009 18:35:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LIZmLJ086638; Wed, 21 Jan 2009 18:35:48 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LIZmCf086637; Wed, 21 Jan 2009 18:35:48 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211835.n0LIZmCf086637@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 18:35:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187554 - in stable/7/sys: . contrib/pf dev/cxgb kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 18:35:55 -0000 Author: jhb Date: Wed Jan 21 18:35:48 2009 New Revision: 187554 URL: http://svn.freebsd.org/changeset/base/187554 Log: MFC: Reorder modules during initialization to ensure that MOD_QUIESCE and MOD_UNLOAD events are posted to kernel modules in the reverse order of MOD_LOAD events. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/kern/kern_module.c Modified: stable/7/sys/kern/kern_module.c ============================================================================== --- stable/7/sys/kern/kern_module.c Wed Jan 21 18:32:43 2009 (r187553) +++ stable/7/sys/kern/kern_module.c Wed Jan 21 18:35:48 2009 (r187554) @@ -130,6 +130,21 @@ module_register_init(const void *arg) printf("module_register_init: MOD_LOAD (%s, %p, %p) error" " %d\n", data->name, (void *)data->evhand, data->priv, error); + } else { + MOD_XLOCK; + if (mod->file) { + /* + * Once a module is succesfully loaded, move + * it to the head of the module list for this + * linker file. This resorts the list so that + * when the kernel linker iterates over the + * modules to unload them, it will unload them + * in the reverse order they were loaded. + */ + TAILQ_REMOVE(&mod->file->modules, mod, flink); + TAILQ_INSERT_HEAD(&mod->file->modules, mod, flink); + } + MOD_XUNLOCK; } mtx_unlock(&Giant); } From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 18:38:13 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E513106564A; Wed, 21 Jan 2009 18:38:13 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2BC7E8FC19; Wed, 21 Jan 2009 18:38:13 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LIcDx6086719; Wed, 21 Jan 2009 18:38:13 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LIcDEs086718; Wed, 21 Jan 2009 18:38:13 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211838.n0LIcDEs086718@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 18:38:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187555 - in stable/7/sys: . contrib/pf dev/cxgb sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 18:38:14 -0000 Author: jhb Date: Wed Jan 21 18:38:12 2009 New Revision: 187555 URL: http://svn.freebsd.org/changeset/base/187555 Log: MFC: Use ints and a pointer to represent the spare fields used by the old sigevent structure rather than using a char array with explicit knowledge about padding. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/sys/aio.h Modified: stable/7/sys/sys/aio.h ============================================================================== --- stable/7/sys/sys/aio.h Wed Jan 21 18:35:48 2009 (r187554) +++ stable/7/sys/sys/aio.h Wed Jan 21 18:38:12 2009 (r187555) @@ -69,7 +69,8 @@ typedef struct aiocb { off_t aio_offset; /* File offset for I/O */ volatile void *aio_buf; /* I/O buffer in process space */ size_t aio_nbytes; /* Number of bytes for I/O */ - char __spare__[sizeof(int) * 2 + sizeof(void *)]; /* osigevent. */ + int __spare__[2]; + void *__spare2__; int aio_lio_opcode; /* LIO opcode */ int aio_reqprio; /* Request priority -- ignored */ struct __aiocb_private _aiocb_private; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 18:47:53 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FB8D10656F3; Wed, 21 Jan 2009 18:47:53 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 119368FC1A; Wed, 21 Jan 2009 18:47:53 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LIlqnk087015; Wed, 21 Jan 2009 18:47:52 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LIlq5J087014; Wed, 21 Jan 2009 18:47:52 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <200901211847.n0LIlq5J087014@svn.freebsd.org> From: Colin Percival Date: Wed, 21 Jan 2009 18:47:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-releng@freebsd.org X-SVN-Group: releng MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187558 - releng/6.4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 18:47:54 -0000 Author: cperciva Date: Wed Jan 21 18:47:52 2009 New Revision: 187558 URL: http://svn.freebsd.org/changeset/base/187558 Log: Fix typo: FreeBSD 6.4 is at -p3, not at -p9. Approved by: so (cperciva) Modified: releng/6.4/UPDATING Modified: releng/6.4/UPDATING ============================================================================== --- releng/6.4/UPDATING Wed Jan 21 18:45:39 2009 (r187557) +++ releng/6.4/UPDATING Wed Jan 21 18:47:52 2009 (r187558) @@ -8,7 +8,7 @@ Items affecting the ports and packages s /usr/ports/UPDATING. Please read that file before running portupgrade. -20090113: p9 FreeBSD-SA-09:03.ntpd, FreeBSD-SA-09:04.bind +20090113: p3 FreeBSD-SA-09:03.ntpd, FreeBSD-SA-09:04.bind Correct ntpd cryptographic signature bypass. [09:03] Correct BIND DNSSEC incorrect checks for malformed From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 18:52:34 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38FB01065675; Wed, 21 Jan 2009 18:52:34 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2464A8FC2A; Wed, 21 Jan 2009 18:52:34 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LIqY3B087134; Wed, 21 Jan 2009 18:52:34 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LIqYMS087131; Wed, 21 Jan 2009 18:52:34 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211852.n0LIqYMS087131@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 18:52:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187559 - in stable/7/sys: . compat/freebsd32 contrib/pf dev/cxgb kern modules/aio X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 18:52:35 -0000 Author: jhb Date: Wed Jan 21 18:52:33 2009 New Revision: 187559 URL: http://svn.freebsd.org/changeset/base/187559 Log: MFC: Add 32-bit compat system calls for VFS_AIO. Modified: stable/7/sys/ (props changed) stable/7/sys/compat/freebsd32/syscalls.master stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/kern/vfs_aio.c stable/7/sys/modules/aio/Makefile Modified: stable/7/sys/compat/freebsd32/syscalls.master ============================================================================== --- stable/7/sys/compat/freebsd32/syscalls.master Wed Jan 21 18:47:52 2009 (r187558) +++ stable/7/sys/compat/freebsd32/syscalls.master Wed Jan 21 18:52:33 2009 (r187559) @@ -456,9 +456,13 @@ u_int nfds, int timeout); } 253 AUE_ISSETUGID NOPROTO { int issetugid(void); } 254 AUE_LCHOWN NOPROTO { int lchown(char *path, int uid, int gid); } -255 AUE_NULL UNIMPL nosys -256 AUE_NULL UNIMPL nosys -257 AUE_NULL UNIMPL nosys +255 AUE_NULL NOSTD { int freebsd32_aio_read( \ + struct aiocb32 *aiocbp); } +256 AUE_NULL NOSTD { int freebsd32_aio_write( \ + struct aiocb32 *aiocbp); } +257 AUE_NULL NOSTD { int freebsd32_lio_listio(int mode, \ + struct aiocb32 * const *acb_list, \ + int nent, struct sigevent *sig); } 258 AUE_NULL UNIMPL nosys 259 AUE_NULL UNIMPL nosys 260 AUE_NULL UNIMPL nosys @@ -537,13 +541,22 @@ 312 AUE_SETRESGID NOPROTO { int setresgid(gid_t rgid, gid_t egid, \ gid_t sgid); } 313 AUE_NULL OBSOL signanosleep -314 AUE_NULL UNIMPL aio_return -315 AUE_NULL UNIMPL aio_suspend -316 AUE_NULL UNIMPL aio_cancel -317 AUE_NULL UNIMPL aio_error -318 AUE_NULL UNIMPL aio_read -319 AUE_NULL UNIMPL aio_write -320 AUE_NULL UNIMPL lio_listio +314 AUE_NULL NOSTD { int freebsd32_aio_return( \ + struct aiocb32 *aiocbp); } +315 AUE_NULL NOSTD { int freebsd32_aio_suspend( \ + struct aiocb32 * const * aiocbp, int nent, \ + const struct timespec32 *timeout); } +316 AUE_NULL NOSTD { int freebsd32_aio_cancel(int fd, \ + struct aiocb32 *aiocbp); } +317 AUE_NULL NOSTD { int freebsd32_aio_error( \ + struct aiocb32 *aiocbp); } +318 AUE_NULL NOSTD { int freebsd32_oaio_read( \ + struct oaiocb32 *aiocbp); } +319 AUE_NULL NOSTD { int freebsd32_oaio_write( \ + struct oaiocb32 *aiocbp); } +320 AUE_NULL NOSTD { int freebsd32_olio_listio(int mode, \ + struct oaiocb32 * const *acb_list, \ + int nent, struct osigevent32 *sig); } 321 AUE_NULL NOPROTO { int yield(void); } 322 AUE_NULL OBSOL thr_sleep 323 AUE_NULL OBSOL thr_wakeup @@ -620,7 +633,9 @@ 358 AUE_EXTATTR_DELETE_FILE NOPROTO { int extattr_delete_file( \ const char *path, int attrnamespace, \ const char *attrname); } -359 AUE_NULL UNIMPL aio_waitcomplete +359 AUE_NULL NOSTD { int freebsd32_aio_waitcomplete( \ + struct aiocb32 **aiocbp, \ + struct timespec32 *timeout); } 360 AUE_GETRESUID NOPROTO { int getresuid(uid_t *ruid, uid_t *euid, \ uid_t *suid); } 361 AUE_GETRESGID NOPROTO { int getresgid(gid_t *rgid, gid_t *egid, \ @@ -770,7 +785,8 @@ 462 AUE_NULL UNIMPL kmq_unlink 463 AUE_NULL NOPROTO { int abort2(const char *why, int nargs, void **args); } 464 AUE_NULL NOPROTO { int thr_set_name(long id, const char *name); } -465 AUE_NULL UNIMPL aio_fsync +465 AUE_NULL NOSTD { int freebsd32_aio_fsync(int op, \ + struct aiocb32 *aiocbp); } 466 AUE_RTPRIO NOPROTO { int rtprio_thread(int function, \ lwpid_t lwpid, struct rtprio *rtp); } 467 AUE_NULL UNIMPL nosys Modified: stable/7/sys/kern/vfs_aio.c ============================================================================== --- stable/7/sys/kern/vfs_aio.c Wed Jan 21 18:47:52 2009 (r187558) +++ stable/7/sys/kern/vfs_aio.c Wed Jan 21 18:52:33 2009 (r187559) @@ -21,6 +21,8 @@ #include __FBSDID("$FreeBSD$"); +#include "opt_compat.h" + #include #include #include @@ -121,6 +123,8 @@ static uint64_t jobseqno; FEATURE(aio, "Asynchronous I/O"); +static MALLOC_DEFINE(M_LIO, "lio", "listio aio control block list"); + static SYSCTL_NODE(_vfs, OID_AUTO, aio, CTLFLAG_RW, 0, "Async IO management"); static int max_aio_procs = MAX_AIO_PROCS; @@ -308,6 +312,20 @@ struct kaioinfo { #define KAIO_RUNDOWN 0x1 /* process is being run down */ #define KAIO_WAKEUP 0x2 /* wakeup process when there is a significant event */ +/* + * Operations used to interact with userland aio control blocks. + * Different ABIs provide their own operations. + */ +struct aiocb_ops { + int (*copyin)(struct aiocb *ujob, struct aiocb *kjob); + long (*fetch_status)(struct aiocb *ujob); + long (*fetch_error)(struct aiocb *ujob); + int (*store_status)(struct aiocb *ujob, long status); + int (*store_error)(struct aiocb *ujob, long error); + int (*store_kernelinfo)(struct aiocb *ujob, long jobref); + int (*store_aiocb)(struct aiocb **ujobp, struct aiocb *ujob); +}; + static TAILQ_HEAD(,aiothreadlist) aio_freeproc; /* (c) Idle daemons */ static struct sema aio_newproc_sem; static struct mtx aio_job_mtx; @@ -321,7 +339,7 @@ static int aio_free_entry(struct aiocbli static void aio_process(struct aiocblist *aiocbe); static int aio_newproc(int *); int aio_aqueue(struct thread *td, struct aiocb *job, - struct aioliojob *lio, int type, int osigev); + struct aioliojob *lio, int type, struct aiocb_ops *ops); static void aio_physwakeup(struct buf *bp); static void aio_proc_rundown(void *arg, struct proc *p); static void aio_proc_rundown_exec(void *arg, struct proc *p, struct image_params *imgp); @@ -333,7 +351,6 @@ static int aio_unload(void); static void aio_bio_done_notify(struct proc *userp, struct aiocblist *aiocbe, int type); #define DONE_BUF 1 #define DONE_QUEUE 2 -static int do_lio_listio(struct thread *td, struct lio_listio_args *uap, int oldsigev); static int aio_kick(struct proc *userp); static void aio_kick_nowait(struct proc *userp); static void aio_kick_helper(void *context, int pending); @@ -1322,13 +1339,122 @@ aio_swake_cb(struct socket *so, struct s SOCKBUF_UNLOCK(sb); } +static int +convert_old_sigevent(struct osigevent *osig, struct sigevent *nsig) +{ + + /* + * Only SIGEV_NONE, SIGEV_SIGNAL, and SIGEV_KEVENT are + * supported by AIO with the old sigevent structure. + */ + nsig->sigev_notify = osig->sigev_notify; + switch (nsig->sigev_notify) { + case SIGEV_NONE: + break; + case SIGEV_SIGNAL: + nsig->sigev_signo = osig->__sigev_u.__sigev_signo; + break; + case SIGEV_KEVENT: + nsig->sigev_notify_kqueue = + osig->__sigev_u.__sigev_notify_kqueue; + nsig->sigev_value.sival_ptr = osig->sigev_value.sival_ptr; + break; + default: + return (EINVAL); + } + return (0); +} + +static int +aiocb_copyin_old_sigevent(struct aiocb *ujob, struct aiocb *kjob) +{ + struct oaiocb *ojob; + int error; + + bzero(kjob, sizeof(struct aiocb)); + error = copyin(ujob, kjob, sizeof(struct oaiocb)); + if (error) + return (error); + ojob = (struct oaiocb *)kjob; + return (convert_old_sigevent(&ojob->aio_sigevent, &kjob->aio_sigevent)); +} + +static int +aiocb_copyin(struct aiocb *ujob, struct aiocb *kjob) +{ + + return (copyin(ujob, kjob, sizeof(struct aiocb))); +} + +static long +aiocb_fetch_status(struct aiocb *ujob) +{ + + return (fuword(&ujob->_aiocb_private.status)); +} + +static long +aiocb_fetch_error(struct aiocb *ujob) +{ + + return (fuword(&ujob->_aiocb_private.error)); +} + +static int +aiocb_store_status(struct aiocb *ujob, long status) +{ + + return (suword(&ujob->_aiocb_private.status, status)); +} + +static int +aiocb_store_error(struct aiocb *ujob, long error) +{ + + return (suword(&ujob->_aiocb_private.error, error)); +} + +static int +aiocb_store_kernelinfo(struct aiocb *ujob, long jobref) +{ + + return (suword(&ujob->_aiocb_private.kernelinfo, jobref)); +} + +static int +aiocb_store_aiocb(struct aiocb **ujobp, struct aiocb *ujob) +{ + + return (suword(ujobp, (long)ujob)); +} + +static struct aiocb_ops aiocb_ops = { + .copyin = aiocb_copyin, + .fetch_status = aiocb_fetch_status, + .fetch_error = aiocb_fetch_error, + .store_status = aiocb_store_status, + .store_error = aiocb_store_error, + .store_kernelinfo = aiocb_store_kernelinfo, + .store_aiocb = aiocb_store_aiocb, +}; + +static struct aiocb_ops aiocb_ops_osigevent = { + .copyin = aiocb_copyin_old_sigevent, + .fetch_status = aiocb_fetch_status, + .fetch_error = aiocb_fetch_error, + .store_status = aiocb_store_status, + .store_error = aiocb_store_error, + .store_kernelinfo = aiocb_store_kernelinfo, + .store_aiocb = aiocb_store_aiocb, +}; + /* * Queue a new AIO request. Choosing either the threaded or direct physio VCHR * technique is done in this code. */ int aio_aqueue(struct thread *td, struct aiocb *job, struct aioliojob *lj, - int type, int oldsigev) + int type, struct aiocb_ops *ops) { struct proc *p = td->td_proc; struct file *fp; @@ -1347,13 +1473,13 @@ aio_aqueue(struct thread *td, struct aio ki = p->p_aioinfo; - suword(&job->_aiocb_private.status, -1); - suword(&job->_aiocb_private.error, 0); - suword(&job->_aiocb_private.kernelinfo, -1); + ops->store_status(job, -1); + ops->store_error(job, 0); + ops->store_kernelinfo(job, -1); if (num_queue_count >= max_queue_count || ki->kaio_count >= ki->kaio_qallowed_count) { - suword(&job->_aiocb_private.error, EAGAIN); + ops->store_error(job, EAGAIN); return (EAGAIN); } @@ -1362,16 +1488,9 @@ aio_aqueue(struct thread *td, struct aio aiocbe->outputcharge = 0; knlist_init(&aiocbe->klist, AIO_MTX(ki), NULL, NULL, NULL); - if (oldsigev) { - bzero(&aiocbe->uaiocb, sizeof(struct aiocb)); - error = copyin(job, &aiocbe->uaiocb, sizeof(struct oaiocb)); - bcopy(&aiocbe->uaiocb.__spare__, &aiocbe->uaiocb.aio_sigevent, - sizeof(struct osigevent)); - } else { - error = copyin(job, &aiocbe->uaiocb, sizeof(struct aiocb)); - } + error = ops->copyin(job, &aiocbe->uaiocb); if (error) { - suword(&job->_aiocb_private.error, error); + ops->store_error(job, error); uma_zfree(aiocb_zone, aiocbe); return (error); } @@ -1380,11 +1499,11 @@ aio_aqueue(struct thread *td, struct aio aiocbe->uaiocb.aio_sigevent.sigev_notify != SIGEV_SIGNAL && aiocbe->uaiocb.aio_sigevent.sigev_notify != SIGEV_THREAD_ID && aiocbe->uaiocb.aio_sigevent.sigev_notify != SIGEV_NONE) { - suword(&job->_aiocb_private.error, EINVAL); + ops->store_error(job, EINVAL); uma_zfree(aiocb_zone, aiocbe); return (EINVAL); } - + if ((aiocbe->uaiocb.aio_sigevent.sigev_notify == SIGEV_SIGNAL || aiocbe->uaiocb.aio_sigevent.sigev_notify == SIGEV_THREAD_ID) && !_SIG_VALID(aiocbe->uaiocb.aio_sigevent.sigev_signo)) { @@ -1416,7 +1535,7 @@ aio_aqueue(struct thread *td, struct aio } if (error) { uma_zfree(aiocb_zone, aiocbe); - suword(&job->_aiocb_private.error, error); + ops->store_error(job, error); return (error); } @@ -1436,7 +1555,7 @@ aio_aqueue(struct thread *td, struct aio jid = jobrefid++; aiocbe->seqno = jobseqno++; mtx_unlock(&aio_job_mtx); - error = suword(&job->_aiocb_private.kernelinfo, jid); + error = ops->store_kernelinfo(job, jid); if (error) { error = EINVAL; goto aqueue_fail; @@ -1467,12 +1586,12 @@ aqueue_fail: if (error) { fdrop(fp, td); uma_zfree(aiocb_zone, aiocbe); - suword(&job->_aiocb_private.error, error); + ops->store_error(job, error); goto done; } no_kqueue: - suword(&job->_aiocb_private.error, EINPROGRESS); + ops->store_error(job, EINPROGRESS); aiocbe->uaiocb._aiocb_private.error = EINPROGRESS; aiocbe->userproc = p; aiocbe->cred = crhold(td->td_ucred); @@ -1528,7 +1647,7 @@ no_kqueue: #if 0 if (error > 0) { aiocbe->uaiocb._aiocb_private.error = error; - suword(&job->_aiocb_private.error, error); + ops->store_error(job, error); goto done; } #endif @@ -1643,19 +1762,17 @@ aio_kick_helper(void *context, int pendi * Support the aio_return system call, as a side-effect, kernel resources are * released. */ -int -aio_return(struct thread *td, struct aio_return_args *uap) +static int +kern_aio_return(struct thread *td, struct aiocb *uaiocb, struct aiocb_ops *ops) { struct proc *p = td->td_proc; struct aiocblist *cb; - struct aiocb *uaiocb; struct kaioinfo *ki; int status, error; ki = p->p_aioinfo; if (ki == NULL) return (EINVAL); - uaiocb = uap->aiocbp; AIO_LOCK(ki); TAILQ_FOREACH(cb, &ki->kaio_done, plist) { if (cb->uuaiocb == uaiocb) @@ -1675,8 +1792,8 @@ aio_return(struct thread *td, struct aio } aio_free_entry(cb); AIO_UNLOCK(ki); - suword(&uaiocb->_aiocb_private.error, error); - suword(&uaiocb->_aiocb_private.status, status); + ops->store_error(uaiocb, error); + ops->store_status(uaiocb, status); } else { error = EINVAL; AIO_UNLOCK(ki); @@ -1684,37 +1801,32 @@ aio_return(struct thread *td, struct aio return (error); } +int +aio_return(struct thread *td, struct aio_return_args *uap) +{ + + return (kern_aio_return(td, uap->aiocbp, &aiocb_ops)); +} + /* * Allow a process to wakeup when any of the I/O requests are completed. */ -int -aio_suspend(struct thread *td, struct aio_suspend_args *uap) +static int +kern_aio_suspend(struct thread *td, int njoblist, struct aiocb **ujoblist, + struct timespec *ts) { struct proc *p = td->td_proc; struct timeval atv; - struct timespec ts; - struct aiocb *const *cbptr, *cbp; struct kaioinfo *ki; struct aiocblist *cb, *cbfirst; - struct aiocb **ujoblist; - int njoblist; - int error; - int timo; - int i; - - if (uap->nent < 0 || uap->nent > AIO_LISTIO_MAX) - return (EINVAL); + int error, i, timo; timo = 0; - if (uap->timeout) { - /* Get timespec struct. */ - if ((error = copyin(uap->timeout, &ts, sizeof(ts))) != 0) - return (error); - - if (ts.tv_nsec < 0 || ts.tv_nsec >= 1000000000) + if (ts) { + if (ts->tv_nsec < 0 || ts->tv_nsec >= 1000000000) return (EINVAL); - TIMESPEC_TO_TIMEVAL(&atv, &ts); + TIMESPEC_TO_TIMEVAL(&atv, ts); if (itimerfix(&atv)) return (EINVAL); timo = tvtohz(&atv); @@ -1724,22 +1836,8 @@ aio_suspend(struct thread *td, struct ai if (ki == NULL) return (EAGAIN); - njoblist = 0; - ujoblist = uma_zalloc(aiol_zone, M_WAITOK); - cbptr = uap->aiocbp; - - for (i = 0; i < uap->nent; i++) { - cbp = (struct aiocb *)(intptr_t)fuword(&cbptr[i]); - if (cbp == 0) - continue; - ujoblist[njoblist] = cbp; - njoblist++; - } - - if (njoblist == 0) { - uma_zfree(aiol_zone, ujoblist); + if (njoblist == 0) return (0); - } AIO_LOCK(ki); for (;;) { @@ -1769,6 +1867,31 @@ aio_suspend(struct thread *td, struct ai } RETURN: AIO_UNLOCK(ki); + return (error); +} + +int +aio_suspend(struct thread *td, struct aio_suspend_args *uap) +{ + struct timespec ts, *tsp; + struct aiocb **ujoblist; + int error; + + if (uap->nent < 0 || uap->nent > AIO_LISTIO_MAX) + return (EINVAL); + + if (uap->timeout) { + /* Get timespec struct. */ + if ((error = copyin(uap->timeout, &ts, sizeof(ts))) != 0) + return (error); + tsp = &ts; + } else + tsp = NULL; + + ujoblist = uma_zalloc(aiol_zone, M_WAITOK); + error = copyin(uap->aiocbp, ujoblist, uap->nent * sizeof(ujoblist[0])); + if (error == 0) + error = kern_aio_suspend(td, uap->nent, ujoblist, tsp); uma_zfree(aiol_zone, ujoblist); return (error); } @@ -1876,8 +1999,8 @@ done: * only. For a user mode async implementation, it would be best to do it in * a userland subroutine. */ -int -aio_error(struct thread *td, struct aio_error_args *uap) +static int +kern_aio_error(struct thread *td, struct aiocb *aiocbp, struct aiocb_ops *ops) { struct proc *p = td->td_proc; struct aiocblist *cb; @@ -1892,7 +2015,7 @@ aio_error(struct thread *td, struct aio_ AIO_LOCK(ki); TAILQ_FOREACH(cb, &ki->kaio_all, allist) { - if (cb->uuaiocb == uap->aiocbp) { + if (cb->uuaiocb == aiocbp) { if (cb->jobstate == JOBST_JOBFINISHED) td->td_retval[0] = cb->uaiocb._aiocb_private.error; @@ -1907,9 +2030,9 @@ aio_error(struct thread *td, struct aio_ /* * Hack for failure of aio_aqueue. */ - status = fuword(&uap->aiocbp->_aiocb_private.status); + status = ops->fetch_status(aiocbp); if (status == -1) { - td->td_retval[0] = fuword(&uap->aiocbp->_aiocb_private.error); + td->td_retval[0] = ops->fetch_error(aiocbp); return (0); } @@ -1917,19 +2040,27 @@ aio_error(struct thread *td, struct aio_ return (0); } +int +aio_error(struct thread *td, struct aio_error_args *uap) +{ + + return (kern_aio_error(td, uap->aiocbp, &aiocb_ops)); +} + /* syscall - asynchronous read from a file (REALTIME) */ int oaio_read(struct thread *td, struct oaio_read_args *uap) { - return aio_aqueue(td, (struct aiocb *)uap->aiocbp, NULL, LIO_READ, 1); + return (aio_aqueue(td, (struct aiocb *)uap->aiocbp, NULL, LIO_READ, + &aiocb_ops_osigevent)); } int aio_read(struct thread *td, struct aio_read_args *uap) { - return aio_aqueue(td, uap->aiocbp, NULL, LIO_READ, 0); + return (aio_aqueue(td, uap->aiocbp, NULL, LIO_READ, &aiocb_ops)); } /* syscall - asynchronous write to a file (REALTIME) */ @@ -1937,47 +2068,34 @@ int oaio_write(struct thread *td, struct oaio_write_args *uap) { - return aio_aqueue(td, (struct aiocb *)uap->aiocbp, NULL, LIO_WRITE, 1); + return (aio_aqueue(td, (struct aiocb *)uap->aiocbp, NULL, LIO_WRITE, + &aiocb_ops_osigevent)); } int aio_write(struct thread *td, struct aio_write_args *uap) { - return aio_aqueue(td, uap->aiocbp, NULL, LIO_WRITE, 0); -} - -/* syscall - list directed I/O (REALTIME) */ -int -olio_listio(struct thread *td, struct olio_listio_args *uap) -{ - return do_lio_listio(td, (struct lio_listio_args *)uap, 1); -} - -/* syscall - list directed I/O (REALTIME) */ -int -lio_listio(struct thread *td, struct lio_listio_args *uap) -{ - return do_lio_listio(td, uap, 0); + return (aio_aqueue(td, uap->aiocbp, NULL, LIO_WRITE, &aiocb_ops)); } static int -do_lio_listio(struct thread *td, struct lio_listio_args *uap, int oldsigev) +kern_lio_listio(struct thread *td, int mode, struct aiocb * const *uacb_list, + struct aiocb **acb_list, int nent, struct sigevent *sig, + struct aiocb_ops *ops) { struct proc *p = td->td_proc; - struct aiocb *iocb, * const *cbptr; + struct aiocb *iocb; struct kaioinfo *ki; struct aioliojob *lj; struct kevent kev; - int nent; int error; int nerror; int i; - if ((uap->mode != LIO_NOWAIT) && (uap->mode != LIO_WAIT)) + if ((mode != LIO_NOWAIT) && (mode != LIO_WAIT)) return (EINVAL); - nent = uap->nent; if (nent < 0 || nent > AIO_LISTIO_MAX) return (EINVAL); @@ -1996,21 +2114,13 @@ do_lio_listio(struct thread *td, struct /* * Setup signal. */ - if (uap->sig && (uap->mode == LIO_NOWAIT)) { - bzero(&lj->lioj_signal, sizeof(&lj->lioj_signal)); - error = copyin(uap->sig, &lj->lioj_signal, - oldsigev ? sizeof(struct osigevent) : - sizeof(struct sigevent)); - if (error) { - uma_zfree(aiolio_zone, lj); - return (error); - } - + if (sig && (mode == LIO_NOWAIT)) { + bcopy(sig, &lj->lioj_signal, sizeof(lj->lioj_signal)); if (lj->lioj_signal.sigev_notify == SIGEV_KEVENT) { /* Assume only new style KEVENT */ kev.filter = EVFILT_LIO; kev.flags = EV_ADD | EV_ENABLE | EV_FLAG1; - kev.ident = (uintptr_t)uap->acb_list; /* something unique */ + kev.ident = (uintptr_t)uacb_list; /* something unique */ kev.data = (intptr_t)lj; /* pass user defined sigval data */ kev.udata = lj->lioj_signal.sigev_value.sival_ptr; @@ -2050,11 +2160,10 @@ do_lio_listio(struct thread *td, struct * Get pointers to the list of I/O requests. */ nerror = 0; - cbptr = uap->acb_list; - for (i = 0; i < uap->nent; i++) { - iocb = (struct aiocb *)(intptr_t)fuword(&cbptr[i]); - if (((intptr_t)iocb != -1) && ((intptr_t)iocb != 0)) { - error = aio_aqueue(td, iocb, lj, LIO_NOP, oldsigev); + for (i = 0; i < nent; i++) { + iocb = acb_list[i]; + if (iocb != NULL) { + error = aio_aqueue(td, iocb, lj, LIO_NOP, ops); if (error != 0) nerror++; } @@ -2062,7 +2171,7 @@ do_lio_listio(struct thread *td, struct error = 0; AIO_LOCK(ki); - if (uap->mode == LIO_WAIT) { + if (mode == LIO_WAIT) { while (lj->lioj_count - 1 != lj->lioj_finished_count) { ki->kaio_flags |= KAIO_WAKEUP; error = msleep(&p->p_aioinfo, AIO_MTX(ki), @@ -2105,6 +2214,75 @@ do_lio_listio(struct thread *td, struct return (error); } +/* syscall - list directed I/O (REALTIME) */ +int +olio_listio(struct thread *td, struct olio_listio_args *uap) +{ + struct aiocb **acb_list; + struct sigevent *sigp, sig; + struct osigevent osig; + int error, nent; + + if ((uap->mode != LIO_NOWAIT) && (uap->mode != LIO_WAIT)) + return (EINVAL); + + nent = uap->nent; + if (nent < 0 || nent > AIO_LISTIO_MAX) + return (EINVAL); + + if (uap->sig && (uap->mode == LIO_NOWAIT)) { + error = copyin(uap->sig, &osig, sizeof(osig)); + if (error) + return (error); + error = convert_old_sigevent(&osig, &sig); + if (error) + return (error); + sigp = &sig; + } else + sigp = NULL; + + acb_list = malloc(sizeof(struct aiocb *) * nent, M_LIO, M_WAITOK); + error = copyin(uap->acb_list, acb_list, nent * sizeof(acb_list[0])); + if (error == 0) + error = kern_lio_listio(td, uap->mode, + (struct aiocb * const *)uap->acb_list, acb_list, nent, sigp, + &aiocb_ops_osigevent); + free(acb_list, M_LIO); + return (error); +} + +/* syscall - list directed I/O (REALTIME) */ +int +lio_listio(struct thread *td, struct lio_listio_args *uap) +{ + struct aiocb **acb_list; + struct sigevent *sigp, sig; + int error, nent; + + if ((uap->mode != LIO_NOWAIT) && (uap->mode != LIO_WAIT)) + return (EINVAL); + + nent = uap->nent; + if (nent < 0 || nent > AIO_LISTIO_MAX) + return (EINVAL); + + if (uap->sig && (uap->mode == LIO_NOWAIT)) { + error = copyin(uap->sig, &sig, sizeof(sig)); + if (error) + return (error); + sigp = &sig; + } else + sigp = NULL; + + acb_list = malloc(sizeof(struct aiocb *) * nent, M_LIO, M_WAITOK); + error = copyin(uap->acb_list, acb_list, nent * sizeof(acb_list[0])); + if (error == 0) + error = kern_lio_listio(td, uap->mode, uap->acb_list, acb_list, + nent, sigp, &aiocb_ops); + free(acb_list, M_LIO); + return (error); +} + /* * Called from interrupt thread for physio, we should return as fast * as possible, so we schedule a biohelper task. @@ -2156,30 +2334,25 @@ biohelper(void *context, int pending) } /* syscall - wait for the next completion of an aio request */ -int -aio_waitcomplete(struct thread *td, struct aio_waitcomplete_args *uap) +static int +kern_aio_waitcomplete(struct thread *td, struct aiocb **aiocbp, + struct timespec *ts, struct aiocb_ops *ops) { struct proc *p = td->td_proc; struct timeval atv; - struct timespec ts; struct kaioinfo *ki; struct aiocblist *cb; struct aiocb *uuaiocb; int error, status, timo; - suword(uap->aiocbp, (long)NULL); + ops->store_aiocb(aiocbp, NULL); timo = 0; - if (uap->timeout) { - /* Get timespec struct. */ - error = copyin(uap->timeout, &ts, sizeof(ts)); - if (error) - return (error); - - if ((ts.tv_nsec < 0) || (ts.tv_nsec >= 1000000000)) + if (ts) { + if ((ts->tv_nsec < 0) || (ts->tv_nsec >= 1000000000)) return (EINVAL); - TIMESPEC_TO_TIMEVAL(&atv, &ts); + TIMESPEC_TO_TIMEVAL(&atv, ts); if (itimerfix(&atv)) return (EINVAL); timo = tvtohz(&atv); @@ -2217,9 +2390,9 @@ aio_waitcomplete(struct thread *td, stru } aio_free_entry(cb); AIO_UNLOCK(ki); - suword(uap->aiocbp, (long)uuaiocb); - suword(&uuaiocb->_aiocb_private.error, error); - suword(&uuaiocb->_aiocb_private.status, status); + ops->store_aiocb(aiocbp, uuaiocb); + ops->store_error(uuaiocb, error); + ops->store_status(uuaiocb, status); } else AIO_UNLOCK(ki); @@ -2227,17 +2400,43 @@ aio_waitcomplete(struct thread *td, stru } int -aio_fsync(struct thread *td, struct aio_fsync_args *uap) +aio_waitcomplete(struct thread *td, struct aio_waitcomplete_args *uap) +{ + struct timespec ts, *tsp; + int error; + + if (uap->timeout) { + /* Get timespec struct. */ + error = copyin(uap->timeout, &ts, sizeof(ts)); + if (error) + return (error); + tsp = &ts; + } else + tsp = NULL; + + return (kern_aio_waitcomplete(td, uap->aiocbp, tsp, &aiocb_ops)); +} + +static int +kern_aio_fsync(struct thread *td, int op, struct aiocb *aiocbp, + struct aiocb_ops *ops) { struct proc *p = td->td_proc; struct kaioinfo *ki; - if (uap->op != O_SYNC) /* XXX lack of O_DSYNC */ + if (op != O_SYNC) /* XXX lack of O_DSYNC */ return (EINVAL); ki = p->p_aioinfo; if (ki == NULL) aio_init_aioinfo(p); - return aio_aqueue(td, uap->aiocbp, NULL, LIO_SYNC, 0); + return (aio_aqueue(td, aiocbp, NULL, LIO_SYNC, ops)); +} + +int +aio_fsync(struct thread *td, struct aio_fsync_args *uap) +{ + + return (kern_aio_fsync(td, uap->op, uap->aiocbp, &aiocb_ops)); } /* kqueue attach function */ @@ -2325,3 +2524,433 @@ filt_lio(struct knote *kn, long hint) return (lj->lioj_flags & LIOJ_KEVENT_POSTED); } + +#ifdef COMPAT_IA32 +#include +#include +#include +#include +#include +#include +#include + +struct __aiocb_private32 { + int32_t status; + int32_t error; + uint32_t kernelinfo; +}; + +typedef struct oaiocb32 { + int aio_fildes; /* File descriptor */ + uint64_t aio_offset __packed; /* File offset for I/O */ + uint32_t aio_buf; /* I/O buffer in process space */ + uint32_t aio_nbytes; /* Number of bytes for I/O */ + struct osigevent32 aio_sigevent; /* Signal to deliver */ + int aio_lio_opcode; /* LIO opcode */ + int aio_reqprio; /* Request priority -- ignored */ + struct __aiocb_private32 _aiocb_private; +} oaiocb32_t; + +typedef struct aiocb32 { + int32_t aio_fildes; /* File descriptor */ + uint64_t aio_offset __packed; /* File offset for I/O */ + uint32_t aio_buf; /* I/O buffer in process space */ + uint32_t aio_nbytes; /* Number of bytes for I/O */ + int __spare__[2]; + uint32_t __spare2__; + int aio_lio_opcode; /* LIO opcode */ + int aio_reqprio; /* Request priority -- ignored */ + struct __aiocb_private32 _aiocb_private; + struct sigevent32 aio_sigevent; /* Signal to deliver */ +} aiocb32_t; + +static int +convert_old_sigevent32(struct osigevent32 *osig, struct sigevent *nsig) +{ + + /* + * Only SIGEV_NONE, SIGEV_SIGNAL, and SIGEV_KEVENT are + * supported by AIO with the old sigevent structure. + */ + CP(*osig, *nsig, sigev_notify); + switch (nsig->sigev_notify) { + case SIGEV_NONE: + break; + case SIGEV_SIGNAL: + nsig->sigev_signo = osig->__sigev_u.__sigev_signo; + break; + case SIGEV_KEVENT: + nsig->sigev_notify_kqueue = + osig->__sigev_u.__sigev_notify_kqueue; + PTRIN_CP(*osig, *nsig, sigev_value.sival_ptr); + break; + default: + return (EINVAL); + } + return (0); +} + +static int +aiocb32_copyin_old_sigevent(struct aiocb *ujob, struct aiocb *kjob) +{ + struct oaiocb32 job32; + int error; + + bzero(kjob, sizeof(struct aiocb)); + error = copyin(ujob, &job32, sizeof(job32)); + if (error) + return (error); + + CP(job32, *kjob, aio_fildes); + CP(job32, *kjob, aio_offset); + PTRIN_CP(job32, *kjob, aio_buf); + CP(job32, *kjob, aio_nbytes); + CP(job32, *kjob, aio_lio_opcode); + CP(job32, *kjob, aio_reqprio); + CP(job32, *kjob, _aiocb_private.status); + CP(job32, *kjob, _aiocb_private.error); + PTRIN_CP(job32, *kjob, _aiocb_private.kernelinfo); + return (convert_old_sigevent32(&job32.aio_sigevent, + &kjob->aio_sigevent)); +} + +static int +convert_sigevent32(struct sigevent32 *sig32, struct sigevent *sig) +{ + + CP(*sig32, *sig, sigev_notify); + switch (sig->sigev_notify) { + case SIGEV_NONE: + break; + case SIGEV_THREAD_ID: + CP(*sig32, *sig, sigev_notify_thread_id); + /* FALLTHROUGH */ + case SIGEV_SIGNAL: + CP(*sig32, *sig, sigev_signo); + break; + case SIGEV_KEVENT: + CP(*sig32, *sig, sigev_notify_kqueue); + PTRIN_CP(*sig32, *sig, sigev_value.sival_ptr); + break; + default: + return (EINVAL); + } + return (0); +} + +static int +aiocb32_copyin(struct aiocb *ujob, struct aiocb *kjob) +{ + struct aiocb32 job32; + int error; + + error = copyin(ujob, &job32, sizeof(job32)); + if (error) + return (error); + CP(job32, *kjob, aio_fildes); + CP(job32, *kjob, aio_offset); + PTRIN_CP(job32, *kjob, aio_buf); + CP(job32, *kjob, aio_nbytes); + CP(job32, *kjob, aio_lio_opcode); + CP(job32, *kjob, aio_reqprio); + CP(job32, *kjob, _aiocb_private.status); + CP(job32, *kjob, _aiocb_private.error); + PTRIN_CP(job32, *kjob, _aiocb_private.kernelinfo); + return (convert_sigevent32(&job32.aio_sigevent, &kjob->aio_sigevent)); +} + +static long +aiocb32_fetch_status(struct aiocb *ujob) +{ + struct aiocb32 *ujob32; + + ujob32 = (struct aiocb32 *)ujob; + return (fuword32(&ujob32->_aiocb_private.status)); +} + +static long +aiocb32_fetch_error(struct aiocb *ujob) +{ + struct aiocb32 *ujob32; + + ujob32 = (struct aiocb32 *)ujob; + return (fuword32(&ujob32->_aiocb_private.error)); +} + +static int +aiocb32_store_status(struct aiocb *ujob, long status) +{ + struct aiocb32 *ujob32; + + ujob32 = (struct aiocb32 *)ujob; + return (suword32(&ujob32->_aiocb_private.status, status)); +} + +static int +aiocb32_store_error(struct aiocb *ujob, long error) +{ + struct aiocb32 *ujob32; + + ujob32 = (struct aiocb32 *)ujob; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 18:54:36 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 079A6106566C; Wed, 21 Jan 2009 18:54:36 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E97D88FC19; Wed, 21 Jan 2009 18:54:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LIsZne087258; Wed, 21 Jan 2009 18:54:35 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LIsZ7b087257; Wed, 21 Jan 2009 18:54:35 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901211854.n0LIsZ7b087257@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 18:54:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187561 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 18:54:36 -0000 Author: jhb Date: Wed Jan 21 18:54:35 2009 New Revision: 187561 URL: http://svn.freebsd.org/changeset/base/187561 Log: MFC: Add a new KTR tracepoint in the KTR_CALLOUT class to note when a callout routine finishes executing. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/kern/kern_timeout.c Modified: stable/7/sys/kern/kern_timeout.c ============================================================================== --- stable/7/sys/kern/kern_timeout.c Wed Jan 21 18:53:46 2009 (r187560) +++ stable/7/sys/kern/kern_timeout.c Wed Jan 21 18:54:35 2009 (r187561) @@ -290,6 +290,7 @@ softclock(void *dummy) lastfunc = c_func; } #endif + CTR1(KTR_CALLOUT, "callout %p finished", c); if ((c_flags & CALLOUT_RETURNUNLOCKED) == 0) mtx_unlock(c_mtx); skip: From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 19:43:11 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3026410656C1; Wed, 21 Jan 2009 19:43:11 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1CD6C8FC1A; Wed, 21 Jan 2009 19:43:11 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LJhBXv088176; Wed, 21 Jan 2009 19:43:11 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LJhADQ088174; Wed, 21 Jan 2009 19:43:10 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <200901211943.n0LJhADQ088174@svn.freebsd.org> From: Ed Schouten Date: Wed, 21 Jan 2009 19:43:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187562 - head/sys/dev/syscons/teken X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 19:43:12 -0000 Author: ed Date: Wed Jan 21 19:43:10 2009 New Revision: 187562 URL: http://svn.freebsd.org/changeset/base/187562 Log: Add Unicode rendering to the teken demo application. Some time ago I tried adding Unicode rendering to the teken demo application, but I didn't get it working. It seems I forgot to call setlocale(). Polish this code and make sure it doesn't get lost. Also a small fix for my previous commit: all Unicode characters in teken_boxdrawing are below 0x10000, so store them as 16-bit values. Modified: head/sys/dev/syscons/teken/teken_demo.c head/sys/dev/syscons/teken/teken_scs.h Modified: head/sys/dev/syscons/teken/teken_demo.c ============================================================================== --- head/sys/dev/syscons/teken/teken_demo.c Wed Jan 21 18:54:35 2009 (r187561) +++ head/sys/dev/syscons/teken/teken_demo.c Wed Jan 21 19:43:10 2009 (r187562) @@ -31,6 +31,7 @@ #include #include #include +#include #include #include #include @@ -83,7 +84,8 @@ static void printchar(const teken_pos_t *p) { int y, x, attr = 0; - struct pixel *px, pt; + struct pixel *px; + char str[5] = { 0 }; assert(p->tp_row < NROWS); assert(p->tp_col < NCOLS); @@ -92,14 +94,26 @@ printchar(const teken_pos_t *p) px = &buffer[p->tp_col][p->tp_row]; - if (px->c >= 0x80) { - /* Mark UTF-8 chars (we don't support it). */ - px = &pt; - px->c = '?'; - px->a.ta_format = TF_BOLD; - px->a.ta_fgcolor = TC_BROWN; - px->a.ta_bgcolor = TC_RED; + /* Convert Unicode to UTF-8. */ +#ifdef TEKEN_UTF8 + if (px->c < 0x80) { + str[0] = px->c; + } else if (px->c < 0x800) { + str[0] = 0xc0 | (px->c >> 6); + str[1] = 0x80 | (px->c & 0x3f); + } else if (px->c < 0x10000) { + str[0] = 0xe0 | (px->c >> 12); + str[1] = 0x80 | ((px->c >> 6) & 0x3f); + str[2] = 0x80 | (px->c & 0x3f); + } else { + str[0] = 0xf0 | (px->c >> 18); + str[1] = 0x80 | ((px->c >> 12) & 0x3f); + str[2] = 0x80 | ((px->c >> 6) & 0x3f); + str[3] = 0x80 | (px->c & 0x3f); } +#else /* !TEKEN_UTF8 */ + str[0] = px->c; +#endif /* TEKEN_UTF8 */ if (px->a.ta_format & TF_BOLD) attr |= A_BOLD; @@ -109,7 +123,7 @@ printchar(const teken_pos_t *p) attr |= A_BLINK; bkgdset(attr | COLOR_PAIR(px->a.ta_fgcolor + 8 * px->a.ta_bgcolor)); - mvaddch(p->tp_row, p->tp_col, px->c); + mvaddstr(p->tp_row, p->tp_col, str); move(y, x); } @@ -272,9 +286,16 @@ main(int argc __unused, char *argv[] __u fd_set rfds; char b[256]; ssize_t bl; - const int ccolors[8] = { COLOR_BLACK, COLOR_RED, COLOR_GREEN, COLOR_YELLOW, COLOR_BLUE, COLOR_MAGENTA, COLOR_CYAN, COLOR_WHITE }; + const int ccolors[8] = { + COLOR_BLACK, COLOR_RED, COLOR_GREEN, COLOR_YELLOW, + COLOR_BLUE, COLOR_MAGENTA, COLOR_CYAN, COLOR_WHITE + }; int i, j; +#ifdef TEKEN_UTF8 + setlocale(LC_CTYPE, "UTF-8"); +#endif /* TEKEN_UTF8 */ + tp.tp_row = ws.ws_row = NROWS; tp.tp_col = ws.ws_col = NCOLS; Modified: head/sys/dev/syscons/teken/teken_scs.h ============================================================================== --- head/sys/dev/syscons/teken/teken_scs.h Wed Jan 21 18:54:35 2009 (r187561) +++ head/sys/dev/syscons/teken/teken_scs.h Wed Jan 21 19:43:10 2009 (r187562) @@ -62,7 +62,7 @@ teken_scs_process(teken_t *t, teken_char } /* Unicode points for VT100 box drawing. */ -static const teken_char_t teken_boxdrawing[31] = { +static const uint16_t teken_boxdrawing[31] = { 0x25c6, 0x2592, 0x2409, 0x240c, 0x240d, 0x240a, 0x00b0, 0x00b1, 0x2424, 0x240b, 0x2518, 0x2510, 0x250c, 0x2514, 0x253c, 0x23ba, 0x23bb, 0x2500, 0x23bc, 0x23bd, 0x251c, 0x2524, 0x2534, 0x252c, From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 20:05:12 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C34410656C4; Wed, 21 Jan 2009 20:05:12 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 68C928FC19; Wed, 21 Jan 2009 20:05:12 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LK5C9D088669; Wed, 21 Jan 2009 20:05:12 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LK5CUJ088665; Wed, 21 Jan 2009 20:05:12 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901212005.n0LK5CUJ088665@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 20:05:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187563 - stable/7/sys/compat/freebsd32 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 20:05:13 -0000 Author: jhb Date: Wed Jan 21 20:05:12 2009 New Revision: 187563 URL: http://svn.freebsd.org/changeset/base/187563 Log: Regen. Modified: stable/7/sys/compat/freebsd32/freebsd32_proto.h stable/7/sys/compat/freebsd32/freebsd32_syscall.h stable/7/sys/compat/freebsd32/freebsd32_syscalls.c stable/7/sys/compat/freebsd32/freebsd32_sysent.c Modified: stable/7/sys/compat/freebsd32/freebsd32_proto.h ============================================================================== --- stable/7/sys/compat/freebsd32/freebsd32_proto.h Wed Jan 21 19:43:10 2009 (r187562) +++ stable/7/sys/compat/freebsd32/freebsd32_proto.h Wed Jan 21 20:05:12 2009 (r187563) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 184469 2008-10-30 13:14:45Z jhb + * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 187559 2009-01-21 18:52:33Z jhb */ #ifndef _FREEBSD32_SYSPROTO_H_ @@ -215,6 +215,18 @@ struct freebsd32_nanosleep_args { char rqtp_l_[PADL_(const struct timespec32 *)]; const struct timespec32 * rqtp; char rqtp_r_[PADR_(const struct timespec32 *)]; char rmtp_l_[PADL_(struct timespec32 *)]; struct timespec32 * rmtp; char rmtp_r_[PADR_(struct timespec32 *)]; }; +struct freebsd32_aio_read_args { + char aiocbp_l_[PADL_(struct aiocb32 *)]; struct aiocb32 * aiocbp; char aiocbp_r_[PADR_(struct aiocb32 *)]; +}; +struct freebsd32_aio_write_args { + char aiocbp_l_[PADL_(struct aiocb32 *)]; struct aiocb32 * aiocbp; char aiocbp_r_[PADR_(struct aiocb32 *)]; +}; +struct freebsd32_lio_listio_args { + char mode_l_[PADL_(int)]; int mode; char mode_r_[PADR_(int)]; + char acb_list_l_[PADL_(struct aiocb32 *const *)]; struct aiocb32 *const * acb_list; char acb_list_r_[PADR_(struct aiocb32 *const *)]; + char nent_l_[PADL_(int)]; int nent; char nent_r_[PADR_(int)]; + char sig_l_[PADL_(struct sigevent *)]; struct sigevent * sig; char sig_r_[PADR_(struct sigevent *)]; +}; struct freebsd32_lutimes_args { char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; char tptr_l_[PADL_(struct timeval32 *)]; struct timeval32 * tptr; char tptr_r_[PADR_(struct timeval32 *)]; @@ -235,6 +247,33 @@ struct freebsd32_modstat_args { char modid_l_[PADL_(int)]; int modid; char modid_r_[PADR_(int)]; char stat_l_[PADL_(struct module_stat32 *)]; struct module_stat32 * stat; char stat_r_[PADR_(struct module_stat32 *)]; }; +struct freebsd32_aio_return_args { + char aiocbp_l_[PADL_(struct aiocb32 *)]; struct aiocb32 * aiocbp; char aiocbp_r_[PADR_(struct aiocb32 *)]; +}; +struct freebsd32_aio_suspend_args { + char aiocbp_l_[PADL_(struct aiocb32 *const *)]; struct aiocb32 *const * aiocbp; char aiocbp_r_[PADR_(struct aiocb32 *const *)]; + char nent_l_[PADL_(int)]; int nent; char nent_r_[PADR_(int)]; + char timeout_l_[PADL_(const struct timespec32 *)]; const struct timespec32 * timeout; char timeout_r_[PADR_(const struct timespec32 *)]; +}; +struct freebsd32_aio_cancel_args { + char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; + char aiocbp_l_[PADL_(struct aiocb32 *)]; struct aiocb32 * aiocbp; char aiocbp_r_[PADR_(struct aiocb32 *)]; +}; +struct freebsd32_aio_error_args { + char aiocbp_l_[PADL_(struct aiocb32 *)]; struct aiocb32 * aiocbp; char aiocbp_r_[PADR_(struct aiocb32 *)]; +}; +struct freebsd32_oaio_read_args { + char aiocbp_l_[PADL_(struct oaiocb32 *)]; struct oaiocb32 * aiocbp; char aiocbp_r_[PADR_(struct oaiocb32 *)]; +}; +struct freebsd32_oaio_write_args { + char aiocbp_l_[PADL_(struct oaiocb32 *)]; struct oaiocb32 * aiocbp; char aiocbp_r_[PADR_(struct oaiocb32 *)]; +}; +struct freebsd32_olio_listio_args { + char mode_l_[PADL_(int)]; int mode; char mode_r_[PADR_(int)]; + char acb_list_l_[PADL_(struct oaiocb32 *const *)]; struct oaiocb32 *const * acb_list; char acb_list_r_[PADR_(struct oaiocb32 *const *)]; + char nent_l_[PADL_(int)]; int nent; char nent_r_[PADR_(int)]; + char sig_l_[PADL_(struct osigevent32 *)]; struct osigevent32 * sig; char sig_r_[PADR_(struct osigevent32 *)]; +}; struct freebsd32_sigtimedwait_args { char set_l_[PADL_(const sigset_t *)]; const sigset_t * set; char set_r_[PADR_(const sigset_t *)]; char info_l_[PADL_(siginfo_t *)]; siginfo_t * info; char info_r_[PADR_(siginfo_t *)]; @@ -244,6 +283,10 @@ struct freebsd32_sigwaitinfo_args { char set_l_[PADL_(const sigset_t *)]; const sigset_t * set; char set_r_[PADR_(const sigset_t *)]; char info_l_[PADL_(siginfo_t *)]; siginfo_t * info; char info_r_[PADR_(siginfo_t *)]; }; +struct freebsd32_aio_waitcomplete_args { + char aiocbp_l_[PADL_(struct aiocb32 **)]; struct aiocb32 ** aiocbp; char aiocbp_r_[PADR_(struct aiocb32 **)]; + char timeout_l_[PADL_(struct timespec32 *)]; struct timespec32 * timeout; char timeout_r_[PADR_(struct timespec32 *)]; +}; struct freebsd32_kevent_args { char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; char changelist_l_[PADL_(const struct kevent32 *)]; const struct kevent32 * changelist; char changelist_r_[PADR_(const struct kevent32 *)]; @@ -305,6 +348,10 @@ struct freebsd32_thr_new_args { char param_l_[PADL_(struct thr_param32 *)]; struct thr_param32 * param; char param_r_[PADR_(struct thr_param32 *)]; char param_size_l_[PADL_(int)]; int param_size; char param_size_r_[PADR_(int)]; }; +struct freebsd32_aio_fsync_args { + char op_l_[PADL_(int)]; int op; char op_r_[PADR_(int)]; + char aiocbp_l_[PADL_(struct aiocb32 *)]; struct aiocb32 * aiocbp; char aiocbp_r_[PADR_(struct aiocb32 *)]; +}; struct freebsd32_pread_args { char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; char buf_l_[PADL_(void *)]; void * buf; char buf_r_[PADR_(void *)]; @@ -408,12 +455,23 @@ int freebsd32_clock_gettime(struct threa int freebsd32_clock_settime(struct thread *, struct freebsd32_clock_settime_args *); int freebsd32_clock_getres(struct thread *, struct freebsd32_clock_getres_args *); int freebsd32_nanosleep(struct thread *, struct freebsd32_nanosleep_args *); +int freebsd32_aio_read(struct thread *, struct freebsd32_aio_read_args *); +int freebsd32_aio_write(struct thread *, struct freebsd32_aio_write_args *); +int freebsd32_lio_listio(struct thread *, struct freebsd32_lio_listio_args *); int freebsd32_lutimes(struct thread *, struct freebsd32_lutimes_args *); int freebsd32_preadv(struct thread *, struct freebsd32_preadv_args *); int freebsd32_pwritev(struct thread *, struct freebsd32_pwritev_args *); int freebsd32_modstat(struct thread *, struct freebsd32_modstat_args *); +int freebsd32_aio_return(struct thread *, struct freebsd32_aio_return_args *); +int freebsd32_aio_suspend(struct thread *, struct freebsd32_aio_suspend_args *); +int freebsd32_aio_cancel(struct thread *, struct freebsd32_aio_cancel_args *); +int freebsd32_aio_error(struct thread *, struct freebsd32_aio_error_args *); +int freebsd32_oaio_read(struct thread *, struct freebsd32_oaio_read_args *); +int freebsd32_oaio_write(struct thread *, struct freebsd32_oaio_write_args *); +int freebsd32_olio_listio(struct thread *, struct freebsd32_olio_listio_args *); int freebsd32_sigtimedwait(struct thread *, struct freebsd32_sigtimedwait_args *); int freebsd32_sigwaitinfo(struct thread *, struct freebsd32_sigwaitinfo_args *); +int freebsd32_aio_waitcomplete(struct thread *, struct freebsd32_aio_waitcomplete_args *); int freebsd32_kevent(struct thread *, struct freebsd32_kevent_args *); int freebsd32_nmount(struct thread *, struct freebsd32_nmount_args *); int freebsd32_sendfile(struct thread *, struct freebsd32_sendfile_args *); @@ -427,6 +485,7 @@ int freebsd32_umtx_unlock(struct thread int freebsd32_thr_suspend(struct thread *, struct freebsd32_thr_suspend_args *); int freebsd32_umtx_op(struct thread *, struct freebsd32_umtx_op_args *); int freebsd32_thr_new(struct thread *, struct freebsd32_thr_new_args *); +int freebsd32_aio_fsync(struct thread *, struct freebsd32_aio_fsync_args *); int freebsd32_pread(struct thread *, struct freebsd32_pread_args *); int freebsd32_pwrite(struct thread *, struct freebsd32_pwrite_args *); int freebsd32_mmap(struct thread *, struct freebsd32_mmap_args *); @@ -618,12 +677,23 @@ int freebsd6_freebsd32_ftruncate(struct #define FREEBSD32_SYS_AUE_freebsd32_clock_settime AUE_CLOCK_SETTIME #define FREEBSD32_SYS_AUE_freebsd32_clock_getres AUE_NULL #define FREEBSD32_SYS_AUE_freebsd32_nanosleep AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_aio_read AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_aio_write AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_lio_listio AUE_NULL #define FREEBSD32_SYS_AUE_freebsd32_lutimes AUE_LUTIMES #define FREEBSD32_SYS_AUE_freebsd32_preadv AUE_PREADV #define FREEBSD32_SYS_AUE_freebsd32_pwritev AUE_PWRITEV #define FREEBSD32_SYS_AUE_freebsd32_modstat AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_aio_return AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_aio_suspend AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_aio_cancel AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_aio_error AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_oaio_read AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_oaio_write AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_olio_listio AUE_NULL #define FREEBSD32_SYS_AUE_freebsd32_sigtimedwait AUE_SIGWAIT #define FREEBSD32_SYS_AUE_freebsd32_sigwaitinfo AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_aio_waitcomplete AUE_NULL #define FREEBSD32_SYS_AUE_freebsd32_kevent AUE_NULL #define FREEBSD32_SYS_AUE_freebsd32_nmount AUE_NMOUNT #define FREEBSD32_SYS_AUE_freebsd32_sendfile AUE_SENDFILE @@ -637,6 +707,7 @@ int freebsd6_freebsd32_ftruncate(struct #define FREEBSD32_SYS_AUE_freebsd32_thr_suspend AUE_NULL #define FREEBSD32_SYS_AUE_freebsd32_umtx_op AUE_NULL #define FREEBSD32_SYS_AUE_freebsd32_thr_new AUE_NULL +#define FREEBSD32_SYS_AUE_freebsd32_aio_fsync AUE_NULL #define FREEBSD32_SYS_AUE_freebsd32_pread AUE_PREAD #define FREEBSD32_SYS_AUE_freebsd32_pwrite AUE_PWRITE #define FREEBSD32_SYS_AUE_freebsd32_mmap AUE_MMAP Modified: stable/7/sys/compat/freebsd32/freebsd32_syscall.h ============================================================================== --- stable/7/sys/compat/freebsd32/freebsd32_syscall.h Wed Jan 21 19:43:10 2009 (r187562) +++ stable/7/sys/compat/freebsd32/freebsd32_syscall.h Wed Jan 21 20:05:12 2009 (r187563) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 184469 2008-10-30 13:14:45Z jhb + * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 187559 2009-01-21 18:52:33Z jhb */ #define FREEBSD32_SYS_syscall 0 @@ -210,6 +210,9 @@ #define FREEBSD32_SYS_openbsd_poll 252 #define FREEBSD32_SYS_issetugid 253 #define FREEBSD32_SYS_lchown 254 +#define FREEBSD32_SYS_freebsd32_aio_read 255 +#define FREEBSD32_SYS_freebsd32_aio_write 256 +#define FREEBSD32_SYS_freebsd32_lio_listio 257 #define FREEBSD32_SYS_getdents 272 #define FREEBSD32_SYS_lchmod 274 #define FREEBSD32_SYS_netbsd_lchown 275 @@ -237,6 +240,13 @@ #define FREEBSD32_SYS_setresuid 311 #define FREEBSD32_SYS_setresgid 312 /* 313 is obsolete signanosleep */ +#define FREEBSD32_SYS_freebsd32_aio_return 314 +#define FREEBSD32_SYS_freebsd32_aio_suspend 315 +#define FREEBSD32_SYS_freebsd32_aio_cancel 316 +#define FREEBSD32_SYS_freebsd32_aio_error 317 +#define FREEBSD32_SYS_freebsd32_oaio_read 318 +#define FREEBSD32_SYS_freebsd32_oaio_write 319 +#define FREEBSD32_SYS_freebsd32_olio_listio 320 #define FREEBSD32_SYS_yield 321 /* 322 is obsolete thr_sleep */ /* 323 is obsolete thr_wakeup */ @@ -274,6 +284,7 @@ #define FREEBSD32_SYS_extattr_set_file 356 #define FREEBSD32_SYS_extattr_get_file 357 #define FREEBSD32_SYS_extattr_delete_file 358 +#define FREEBSD32_SYS_freebsd32_aio_waitcomplete 359 #define FREEBSD32_SYS_getresuid 360 #define FREEBSD32_SYS_getresgid 361 #define FREEBSD32_SYS_kqueue 362 @@ -326,6 +337,7 @@ #define FREEBSD32_SYS_sigqueue 456 #define FREEBSD32_SYS_abort2 463 #define FREEBSD32_SYS_thr_set_name 464 +#define FREEBSD32_SYS_freebsd32_aio_fsync 465 #define FREEBSD32_SYS_rtprio_thread 466 #define FREEBSD32_SYS_sctp_peeloff 471 #define FREEBSD32_SYS_sctp_generic_sendmsg 472 Modified: stable/7/sys/compat/freebsd32/freebsd32_syscalls.c ============================================================================== --- stable/7/sys/compat/freebsd32/freebsd32_syscalls.c Wed Jan 21 19:43:10 2009 (r187562) +++ stable/7/sys/compat/freebsd32/freebsd32_syscalls.c Wed Jan 21 20:05:12 2009 (r187563) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 184469 2008-10-30 13:14:45Z jhb + * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 187559 2009-01-21 18:52:33Z jhb */ const char *freebsd32_syscallnames[] = { @@ -262,9 +262,9 @@ const char *freebsd32_syscallnames[] = { "openbsd_poll", /* 252 = openbsd_poll */ "issetugid", /* 253 = issetugid */ "lchown", /* 254 = lchown */ - "#255", /* 255 = nosys */ - "#256", /* 256 = nosys */ - "#257", /* 257 = nosys */ + "freebsd32_aio_read", /* 255 = freebsd32_aio_read */ + "freebsd32_aio_write", /* 256 = freebsd32_aio_write */ + "freebsd32_lio_listio", /* 257 = freebsd32_lio_listio */ "#258", /* 258 = nosys */ "#259", /* 259 = nosys */ "#260", /* 260 = nosys */ @@ -321,13 +321,13 @@ const char *freebsd32_syscallnames[] = { "setresuid", /* 311 = setresuid */ "setresgid", /* 312 = setresgid */ "obs_signanosleep", /* 313 = obsolete signanosleep */ - "#314", /* 314 = aio_return */ - "#315", /* 315 = aio_suspend */ - "#316", /* 316 = aio_cancel */ - "#317", /* 317 = aio_error */ - "#318", /* 318 = aio_read */ - "#319", /* 319 = aio_write */ - "#320", /* 320 = lio_listio */ + "freebsd32_aio_return", /* 314 = freebsd32_aio_return */ + "freebsd32_aio_suspend", /* 315 = freebsd32_aio_suspend */ + "freebsd32_aio_cancel", /* 316 = freebsd32_aio_cancel */ + "freebsd32_aio_error", /* 317 = freebsd32_aio_error */ + "freebsd32_oaio_read", /* 318 = freebsd32_oaio_read */ + "freebsd32_oaio_write", /* 319 = freebsd32_oaio_write */ + "freebsd32_olio_listio", /* 320 = freebsd32_olio_listio */ "yield", /* 321 = yield */ "obs_thr_sleep", /* 322 = obsolete thr_sleep */ "obs_thr_wakeup", /* 323 = obsolete thr_wakeup */ @@ -366,7 +366,7 @@ const char *freebsd32_syscallnames[] = { "extattr_set_file", /* 356 = extattr_set_file */ "extattr_get_file", /* 357 = extattr_get_file */ "extattr_delete_file", /* 358 = extattr_delete_file */ - "#359", /* 359 = aio_waitcomplete */ + "freebsd32_aio_waitcomplete", /* 359 = freebsd32_aio_waitcomplete */ "getresuid", /* 360 = getresuid */ "getresgid", /* 361 = getresgid */ "kqueue", /* 362 = kqueue */ @@ -472,7 +472,7 @@ const char *freebsd32_syscallnames[] = { "#462", /* 462 = kmq_unlink */ "abort2", /* 463 = abort2 */ "thr_set_name", /* 464 = thr_set_name */ - "#465", /* 465 = aio_fsync */ + "freebsd32_aio_fsync", /* 465 = freebsd32_aio_fsync */ "rtprio_thread", /* 466 = rtprio_thread */ "#467", /* 467 = nosys */ "#468", /* 468 = nosys */ Modified: stable/7/sys/compat/freebsd32/freebsd32_sysent.c ============================================================================== --- stable/7/sys/compat/freebsd32/freebsd32_sysent.c Wed Jan 21 19:43:10 2009 (r187562) +++ stable/7/sys/compat/freebsd32/freebsd32_sysent.c Wed Jan 21 20:05:12 2009 (r187563) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 184469 2008-10-30 13:14:45Z jhb + * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 187559 2009-01-21 18:52:33Z jhb */ #include "opt_compat.h" @@ -293,9 +293,9 @@ struct sysent freebsd32_sysent[] = { { AS(openbsd_poll_args), (sy_call_t *)openbsd_poll, AUE_POLL, NULL, 0, 0 }, /* 252 = openbsd_poll */ { 0, (sy_call_t *)issetugid, AUE_ISSETUGID, NULL, 0, 0 }, /* 253 = issetugid */ { AS(lchown_args), (sy_call_t *)lchown, AUE_LCHOWN, NULL, 0, 0 }, /* 254 = lchown */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 255 = nosys */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 256 = nosys */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 257 = nosys */ + { AS(freebsd32_aio_read_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 255 = freebsd32_aio_read */ + { AS(freebsd32_aio_write_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 256 = freebsd32_aio_write */ + { AS(freebsd32_lio_listio_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 257 = freebsd32_lio_listio */ { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 258 = nosys */ { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 259 = nosys */ { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 260 = nosys */ @@ -352,13 +352,13 @@ struct sysent freebsd32_sysent[] = { { AS(setresuid_args), (sy_call_t *)setresuid, AUE_SETRESUID, NULL, 0, 0 }, /* 311 = setresuid */ { AS(setresgid_args), (sy_call_t *)setresgid, AUE_SETRESGID, NULL, 0, 0 }, /* 312 = setresgid */ { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 313 = obsolete signanosleep */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 314 = aio_return */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 315 = aio_suspend */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 316 = aio_cancel */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 317 = aio_error */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 318 = aio_read */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 319 = aio_write */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 320 = lio_listio */ + { AS(freebsd32_aio_return_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 314 = freebsd32_aio_return */ + { AS(freebsd32_aio_suspend_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 315 = freebsd32_aio_suspend */ + { AS(freebsd32_aio_cancel_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 316 = freebsd32_aio_cancel */ + { AS(freebsd32_aio_error_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 317 = freebsd32_aio_error */ + { AS(freebsd32_oaio_read_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 318 = freebsd32_oaio_read */ + { AS(freebsd32_oaio_write_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 319 = freebsd32_oaio_write */ + { AS(freebsd32_olio_listio_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 320 = freebsd32_olio_listio */ { 0, (sy_call_t *)yield, AUE_NULL, NULL, 0, 0 }, /* 321 = yield */ { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 322 = obsolete thr_sleep */ { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 323 = obsolete thr_wakeup */ @@ -397,7 +397,7 @@ struct sysent freebsd32_sysent[] = { { AS(extattr_set_file_args), (sy_call_t *)extattr_set_file, AUE_EXTATTR_SET_FILE, NULL, 0, 0 }, /* 356 = extattr_set_file */ { AS(extattr_get_file_args), (sy_call_t *)extattr_get_file, AUE_EXTATTR_GET_FILE, NULL, 0, 0 }, /* 357 = extattr_get_file */ { AS(extattr_delete_file_args), (sy_call_t *)extattr_delete_file, AUE_EXTATTR_DELETE_FILE, NULL, 0, 0 }, /* 358 = extattr_delete_file */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 359 = aio_waitcomplete */ + { AS(freebsd32_aio_waitcomplete_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 359 = freebsd32_aio_waitcomplete */ { AS(getresuid_args), (sy_call_t *)getresuid, AUE_GETRESUID, NULL, 0, 0 }, /* 360 = getresuid */ { AS(getresgid_args), (sy_call_t *)getresgid, AUE_GETRESGID, NULL, 0, 0 }, /* 361 = getresgid */ { 0, (sy_call_t *)kqueue, AUE_KQUEUE, NULL, 0, 0 }, /* 362 = kqueue */ @@ -503,7 +503,7 @@ struct sysent freebsd32_sysent[] = { { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 462 = kmq_unlink */ { AS(abort2_args), (sy_call_t *)abort2, AUE_NULL, NULL, 0, 0 }, /* 463 = abort2 */ { AS(thr_set_name_args), (sy_call_t *)thr_set_name, AUE_NULL, NULL, 0, 0 }, /* 464 = thr_set_name */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 465 = aio_fsync */ + { AS(freebsd32_aio_fsync_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0 }, /* 465 = freebsd32_aio_fsync */ { AS(rtprio_thread_args), (sy_call_t *)rtprio_thread, AUE_RTPRIO, NULL, 0, 0 }, /* 466 = rtprio_thread */ { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 467 = nosys */ { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 468 = nosys */ From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 20:08:17 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E90081065673; Wed, 21 Jan 2009 20:08:17 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D7F098FC18; Wed, 21 Jan 2009 20:08:17 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LK8HUF088751; Wed, 21 Jan 2009 20:08:17 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LK8HeN088749; Wed, 21 Jan 2009 20:08:17 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901212008.n0LK8HeN088749@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 20:08:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187564 - in head/sys: kern ufs/ufs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 20:08:18 -0000 Author: jhb Date: Wed Jan 21 20:08:17 2009 New Revision: 187564 URL: http://svn.freebsd.org/changeset/base/187564 Log: Fix a few style bogons. Submitted by: bde Modified: head/sys/kern/vfs_subr.c head/sys/ufs/ufs/ufs_vnops.c Modified: head/sys/kern/vfs_subr.c ============================================================================== --- head/sys/kern/vfs_subr.c Wed Jan 21 20:05:12 2009 (r187563) +++ head/sys/kern/vfs_subr.c Wed Jan 21 20:08:17 2009 (r187564) @@ -4214,7 +4214,6 @@ void vfs_mark_atime(struct vnode *vp, struct ucred *cred) { - if ((vp->v_mount->mnt_flag & (MNT_NOATIME | MNT_RDONLY)) == 0) { + if ((vp->v_mount->mnt_flag & (MNT_NOATIME | MNT_RDONLY)) == 0) (void)VOP_MARKATIME(vp); - } } Modified: head/sys/ufs/ufs/ufs_vnops.c ============================================================================== --- head/sys/ufs/ufs/ufs_vnops.c Wed Jan 21 20:05:12 2009 (r187563) +++ head/sys/ufs/ufs/ufs_vnops.c Wed Jan 21 20:08:17 2009 (r187564) @@ -2477,6 +2477,7 @@ struct vop_vector ufs_vnodeops = { .vop_inactive = ufs_inactive, .vop_link = ufs_link, .vop_lookup = vfs_cache_lookup, + .vop_markatime = ufs_markatime, .vop_mkdir = ufs_mkdir, .vop_mknod = ufs_mknod, .vop_open = ufs_open, @@ -2490,7 +2491,6 @@ struct vop_vector ufs_vnodeops = { .vop_rename = ufs_rename, .vop_rmdir = ufs_rmdir, .vop_setattr = ufs_setattr, - .vop_markatime = ufs_markatime, #ifdef MAC .vop_setlabel = vop_stdsetlabel_ea, #endif @@ -2517,11 +2517,11 @@ struct vop_vector ufs_fifoops = { .vop_getattr = ufs_getattr, .vop_inactive = ufs_inactive, .vop_kqfilter = ufsfifo_kqfilter, + .vop_markatime = ufs_markatime, .vop_print = ufs_print, .vop_read = VOP_PANIC, .vop_reclaim = ufs_reclaim, .vop_setattr = ufs_setattr, - .vop_markatime = ufs_markatime, #ifdef MAC .vop_setlabel = vop_stdsetlabel_ea, #endif From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 20:16:12 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9520810656DE; Wed, 21 Jan 2009 20:16:12 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 804398FC29; Wed, 21 Jan 2009 20:16:12 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LKGCe8088957; Wed, 21 Jan 2009 20:16:12 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LKGCHO088949; Wed, 21 Jan 2009 20:16:12 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901212016.n0LKGCHO088949@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 21 Jan 2009 20:16:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187565 - in stable/7/sys: . amd64/amd64 amd64/include contrib/pf dev/ath/ath_hal dev/cxgb i386/i386 i386/include X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 20:16:14 -0000 Author: jkim Date: Wed Jan 21 20:16:11 2009 New Revision: 187565 URL: http://svn.freebsd.org/changeset/base/187565 Log: MFC: Detect Advanced Power Management Information for AMD CPUs. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/identcpu.c stable/7/sys/amd64/amd64/initcpu.c stable/7/sys/amd64/include/md_var.h stable/7/sys/amd64/include/specialreg.h stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/i386/identcpu.c stable/7/sys/i386/i386/initcpu.c stable/7/sys/i386/include/md_var.h stable/7/sys/i386/include/specialreg.h Modified: stable/7/sys/amd64/amd64/identcpu.c ============================================================================== --- stable/7/sys/amd64/amd64/identcpu.c Wed Jan 21 20:08:17 2009 (r187564) +++ stable/7/sys/amd64/amd64/identcpu.c Wed Jan 21 20:16:11 2009 (r187565) @@ -447,6 +447,10 @@ identify_cpu(void) amd_feature = regs[3] & ~(cpu_feature & 0x0183f3ff); amd_feature2 = regs[2]; } + if (cpu_exthigh >= 0x80000007) { + do_cpuid(0x80000007, regs); + amd_pminfo = regs[3]; + } if (cpu_exthigh >= 0x80000008) { do_cpuid(0x80000008, regs); cpu_procinfo2 = regs[2]; Modified: stable/7/sys/amd64/amd64/initcpu.c ============================================================================== --- stable/7/sys/amd64/amd64/initcpu.c Wed Jan 21 20:08:17 2009 (r187564) +++ stable/7/sys/amd64/amd64/initcpu.c Wed Jan 21 20:16:11 2009 (r187565) @@ -53,6 +53,7 @@ u_int cpu_feature; /* Feature flags */ u_int cpu_feature2; /* Feature flags */ u_int amd_feature; /* AMD feature flags */ u_int amd_feature2; /* AMD feature flags */ +u_int amd_pminfo; /* AMD advanced power management info */ u_int cpu_high; /* Highest arg to CPUID */ u_int cpu_exthigh; /* Highest arg to extended CPUID */ u_int cpu_id; /* Stepping ID */ Modified: stable/7/sys/amd64/include/md_var.h ============================================================================== --- stable/7/sys/amd64/include/md_var.h Wed Jan 21 20:08:17 2009 (r187564) +++ stable/7/sys/amd64/include/md_var.h Wed Jan 21 20:16:11 2009 (r187565) @@ -44,6 +44,7 @@ extern u_int cpu_feature; extern u_int cpu_feature2; extern u_int amd_feature; extern u_int amd_feature2; +extern u_int amd_pminfo; extern u_int cpu_fxsr; extern u_int cpu_high; extern u_int cpu_id; Modified: stable/7/sys/amd64/include/specialreg.h ============================================================================== --- stable/7/sys/amd64/include/specialreg.h Wed Jan 21 20:08:17 2009 (r187564) +++ stable/7/sys/amd64/include/specialreg.h Wed Jan 21 20:16:11 2009 (r187565) @@ -156,6 +156,19 @@ #define CPUID_LOCAL_APIC_ID 0xff000000 /* + * AMD extended function 8000_0007h edx info + */ +#define AMDPM_TS 0x00000001 +#define AMDPM_FID 0x00000002 +#define AMDPM_VID 0x00000004 +#define AMDPM_TTP 0x00000008 +#define AMDPM_TM 0x00000010 +#define AMDPM_STC 0x00000020 +#define AMDPM_100MHZ_STEPS 0x00000040 +#define AMDPM_HW_PSTATE 0x00000080 +#define AMDPM_TSC_INVARIANT 0x00000100 + +/* * AMD extended function 8000_0008h ecx info */ #define AMDID_CMP_CORES 0x000000ff Modified: stable/7/sys/i386/i386/identcpu.c ============================================================================== --- stable/7/sys/i386/i386/identcpu.c Wed Jan 21 20:08:17 2009 (r187564) +++ stable/7/sys/i386/i386/identcpu.c Wed Jan 21 20:16:11 2009 (r187565) @@ -1088,6 +1088,10 @@ finishidentcpu(void) amd_feature = regs[3] & ~(cpu_feature & 0x0183f3ff); amd_feature2 = regs[2]; } + if (cpu_exthigh >= 0x80000007) { + do_cpuid(0x80000007, regs); + amd_pminfo = regs[3]; + } if (cpu_exthigh >= 0x80000008) { do_cpuid(0x80000008, regs); cpu_procinfo2 = regs[2]; Modified: stable/7/sys/i386/i386/initcpu.c ============================================================================== --- stable/7/sys/i386/i386/initcpu.c Wed Jan 21 20:08:17 2009 (r187564) +++ stable/7/sys/i386/i386/initcpu.c Wed Jan 21 20:16:11 2009 (r187565) @@ -82,6 +82,7 @@ u_int cpu_feature = 0; /* Feature flags u_int cpu_feature2 = 0; /* Feature flags */ u_int amd_feature = 0; /* AMD feature flags */ u_int amd_feature2 = 0; /* AMD feature flags */ +u_int amd_pminfo = 0; /* AMD advanced power management info */ u_int via_feature_rng = 0; /* VIA RNG features */ u_int via_feature_xcrypt = 0; /* VIA ACE features */ u_int cpu_high = 0; /* Highest arg to CPUID */ Modified: stable/7/sys/i386/include/md_var.h ============================================================================== --- stable/7/sys/i386/include/md_var.h Wed Jan 21 20:08:17 2009 (r187564) +++ stable/7/sys/i386/include/md_var.h Wed Jan 21 20:16:11 2009 (r187565) @@ -49,6 +49,7 @@ extern u_int cpu_feature; extern u_int cpu_feature2; extern u_int amd_feature; extern u_int amd_feature2; +extern u_int amd_pminfo; extern u_int via_feature_rng; extern u_int via_feature_xcrypt; extern u_int cpu_fxsr; Modified: stable/7/sys/i386/include/specialreg.h ============================================================================== --- stable/7/sys/i386/include/specialreg.h Wed Jan 21 20:08:17 2009 (r187564) +++ stable/7/sys/i386/include/specialreg.h Wed Jan 21 20:16:11 2009 (r187565) @@ -158,6 +158,19 @@ #define CPUID_LOCAL_APIC_ID 0xff000000 /* + * AMD extended function 8000_0007h edx info + */ +#define AMDPM_TS 0x00000001 +#define AMDPM_FID 0x00000002 +#define AMDPM_VID 0x00000004 +#define AMDPM_TTP 0x00000008 +#define AMDPM_TM 0x00000010 +#define AMDPM_STC 0x00000020 +#define AMDPM_100MHZ_STEPS 0x00000040 +#define AMDPM_HW_PSTATE 0x00000080 +#define AMDPM_TSC_INVARIANT 0x00000100 + +/* * AMD extended function 8000_0008h ecx info */ #define AMDID_CMP_CORES 0x000000ff From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 20:44:43 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 149631065DD2; Wed, 21 Jan 2009 20:44:43 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 009258FC17; Wed, 21 Jan 2009 20:44:43 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LKigYJ090753; Wed, 21 Jan 2009 20:44:42 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LKig3S090752; Wed, 21 Jan 2009 20:44:42 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901212044.n0LKig3S090752@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 21 Jan 2009 20:44:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187566 - head/sys/contrib/altq/altq X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 20:44:44 -0000 Author: jkim Date: Wed Jan 21 20:44:42 2009 New Revision: 187566 URL: http://svn.freebsd.org/changeset/base/187566 Log: Change __FreeBSD_version to prepare for merging r184102. Modified: head/sys/contrib/altq/altq/altq_subr.c Modified: head/sys/contrib/altq/altq/altq_subr.c ============================================================================== --- head/sys/contrib/altq/altq/altq_subr.c Wed Jan 21 20:16:11 2009 (r187565) +++ head/sys/contrib/altq/altq/altq_subr.c Wed Jan 21 20:44:42 2009 (r187566) @@ -910,7 +910,7 @@ tsc_freq_changed(void *arg, const struct if (status != 0) return; -#if (__FreeBSD_version >= 800050) && (defined(__amd64__) || defined(__i386__)) +#if (__FreeBSD_version >= 701102) && (defined(__amd64__) || defined(__i386__)) /* If TSC is P-state invariant, don't do anything. */ if (tsc_is_invariant) return; From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 20:53:37 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C94710656FA; Wed, 21 Jan 2009 20:53:37 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 874008FC12; Wed, 21 Jan 2009 20:53:37 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LKrbOA090972; Wed, 21 Jan 2009 20:53:37 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LKrbEt090963; Wed, 21 Jan 2009 20:53:37 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901212053.n0LKrbEt090963@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 21 Jan 2009 20:53:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187567 - in stable/7/sys: . amd64/amd64 amd64/include contrib/altq/altq contrib/pf dev/ath/ath_hal dev/cxgb i386/i386 i386/include i386/isa X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 20:53:39 -0000 Author: jkim Date: Wed Jan 21 20:53:36 2009 New Revision: 187567 URL: http://svn.freebsd.org/changeset/base/187567 Log: MFC: Turn off CPU frequency change notifiers when the TSC is P-state invariant or it is forced by setting 'kern.timecounter.invariant_tsc' tunable to non-zero. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/identcpu.c stable/7/sys/amd64/amd64/prof_machdep.c stable/7/sys/amd64/amd64/tsc.c stable/7/sys/amd64/include/clock.h stable/7/sys/contrib/altq/altq/altq_subr.c stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/i386/identcpu.c stable/7/sys/i386/i386/tsc.c stable/7/sys/i386/include/clock.h stable/7/sys/i386/isa/prof_machdep.c Modified: stable/7/sys/amd64/amd64/identcpu.c ============================================================================== --- stable/7/sys/amd64/amd64/identcpu.c Wed Jan 21 20:44:42 2009 (r187566) +++ stable/7/sys/amd64/amd64/identcpu.c Wed Jan 21 20:53:36 2009 (r187567) @@ -345,6 +345,12 @@ printcpuinfo(void) "AuthenticAMD") == 0) cpu_feature &= ~CPUID_HTT; + if (!tsc_is_invariant && + (amd_pminfo & AMDPM_TSC_INVARIANT)) { + tsc_is_invariant = 1; + printf("\n P-state invariant TSC"); + } + /* * If this CPU supports HTT or CMP then mention the * number of physical/logical cores it contains. @@ -405,8 +411,11 @@ panicifcpuunsupported(void) static void tsc_freq_changed(void *arg, const struct cf_level *level, int status) { - /* If there was an error during the transition, don't do anything. */ - if (status != 0) + /* + * If there was an error during the transition or + * TSC is P-state invariant, don't do anything. + */ + if (status != 0 || tsc_is_invariant) return; /* Total setting for this level gives the new frequency in MHz. */ Modified: stable/7/sys/amd64/amd64/prof_machdep.c ============================================================================== --- stable/7/sys/amd64/amd64/prof_machdep.c Wed Jan 21 20:44:42 2009 (r187566) +++ stable/7/sys/amd64/amd64/prof_machdep.c Wed Jan 21 20:53:36 2009 (r187567) @@ -387,8 +387,11 @@ static void tsc_freq_changed(void *arg, const struct cf_level *level, int status) { - /* If there was an error during the transition, don't do anything. */ - if (status != 0) + /* + * If there was an error during the transition or + * TSC is P-state invariant, don't do anything. + */ + if (status != 0 || tsc_is_invariant) return; if (cputime_prof_active && cputime_clock == CPUTIME_CLOCK_TSC) printf("warning: cpu freq changed while profiling active\n"); Modified: stable/7/sys/amd64/amd64/tsc.c ============================================================================== --- stable/7/sys/amd64/amd64/tsc.c Wed Jan 21 20:44:42 2009 (r187566) +++ stable/7/sys/amd64/amd64/tsc.c Wed Jan 21 20:53:36 2009 (r187567) @@ -53,8 +53,13 @@ __FBSDID("$FreeBSD$"); uint64_t tsc_freq; int tsc_is_broken; +int tsc_is_invariant; static eventhandler_tag tsc_levels_tag, tsc_pre_tag, tsc_post_tag; +SYSCTL_INT(_kern_timecounter, OID_AUTO, invariant_tsc, CTLFLAG_RDTUN, + &tsc_is_invariant, 0, "Indicates whether the TSC is P-state invariant"); +TUNABLE_INT("kern.timecounter.invariant_tsc", &tsc_is_invariant); + #ifdef SMP static int smp_tsc; SYSCTL_INT(_kern_timecounter, OID_AUTO, smp_tsc, CTLFLAG_RDTUN, &smp_tsc, 0, @@ -179,11 +184,12 @@ static void tsc_freq_changing(void *arg, const struct cf_level *level, int *status) { - if (*status != 0 || timecounter != &tsc_timecounter) + if (*status != 0 || timecounter != &tsc_timecounter || + tsc_is_invariant) return; printf("timecounter TSC must not be in use when " - "changing frequencies; change denied\n"); + "changing frequencies; change denied\n"); *status = EBUSY; } @@ -191,8 +197,11 @@ tsc_freq_changing(void *arg, const struc static void tsc_freq_changed(void *arg, const struct cf_level *level, int status) { - /* If there was an error during the transition, don't do anything. */ - if (status != 0) + /* + * If there was an error during the transition or + * TSC is P-state invariant, don't do anything. + */ + if (status != 0 || tsc_is_invariant) return; /* Total setting for this level gives the new frequency in MHz. */ Modified: stable/7/sys/amd64/include/clock.h ============================================================================== --- stable/7/sys/amd64/include/clock.h Wed Jan 21 20:44:42 2009 (r187566) +++ stable/7/sys/amd64/include/clock.h Wed Jan 21 20:53:36 2009 (r187567) @@ -22,6 +22,7 @@ extern u_int timer_freq; extern int timer0_max_count; extern uint64_t tsc_freq; extern int tsc_is_broken; +extern int tsc_is_invariant; void i8254_init(void); Modified: stable/7/sys/contrib/altq/altq/altq_subr.c ============================================================================== --- stable/7/sys/contrib/altq/altq/altq_subr.c Wed Jan 21 20:44:42 2009 (r187566) +++ stable/7/sys/contrib/altq/altq/altq_subr.c Wed Jan 21 20:53:36 2009 (r187567) @@ -910,6 +910,12 @@ tsc_freq_changed(void *arg, const struct if (status != 0) return; +#if (__FreeBSD_version >= 701102) && (defined(__amd64__) || defined(__i386__)) + /* If TSC is P-state invariant, don't do anything. */ + if (tsc_is_invariant) + return; +#endif + /* Total setting for this level gives the new frequency in MHz. */ init_machclk(); } Modified: stable/7/sys/i386/i386/identcpu.c ============================================================================== --- stable/7/sys/i386/i386/identcpu.c Wed Jan 21 20:44:42 2009 (r187566) +++ stable/7/sys/i386/i386/identcpu.c Wed Jan 21 20:53:36 2009 (r187567) @@ -842,6 +842,12 @@ printcpuinfo(void) "AuthenticAMD") == 0) cpu_feature &= ~CPUID_HTT; + if (!tsc_is_invariant && + (amd_pminfo & AMDPM_TSC_INVARIANT)) { + tsc_is_invariant = 1; + printf("\n P-state invariant TSC"); + } + /* * If this CPU supports HTT or CMP then mention the * number of physical/logical cores it contains. @@ -1058,8 +1064,11 @@ identifycyrix(void) static void tsc_freq_changed(void *arg, const struct cf_level *level, int status) { - /* If there was an error during the transition, don't do anything. */ - if (status != 0) + /* + * If there was an error during the transition or + * TSC is P-state invariant, don't do anything. + */ + if (status != 0 || tsc_is_invariant) return; /* Total setting for this level gives the new frequency in MHz. */ Modified: stable/7/sys/i386/i386/tsc.c ============================================================================== --- stable/7/sys/i386/i386/tsc.c Wed Jan 21 20:44:42 2009 (r187566) +++ stable/7/sys/i386/i386/tsc.c Wed Jan 21 20:53:36 2009 (r187567) @@ -48,9 +48,14 @@ __FBSDID("$FreeBSD$"); uint64_t tsc_freq; int tsc_is_broken; +int tsc_is_invariant; u_int tsc_present; static eventhandler_tag tsc_levels_tag, tsc_pre_tag, tsc_post_tag; +SYSCTL_INT(_kern_timecounter, OID_AUTO, invariant_tsc, CTLFLAG_RDTUN, + &tsc_is_invariant, 0, "Indicates whether the TSC is P-state invariant"); +TUNABLE_INT("kern.timecounter.invariant_tsc", &tsc_is_invariant); + #ifdef SMP static int smp_tsc; SYSCTL_INT(_kern_timecounter, OID_AUTO, smp_tsc, CTLFLAG_RDTUN, &smp_tsc, 0, @@ -198,11 +203,12 @@ static void tsc_freq_changing(void *arg, const struct cf_level *level, int *status) { - if (*status != 0 || timecounter != &tsc_timecounter) + if (*status != 0 || timecounter != &tsc_timecounter || + tsc_is_invariant) return; printf("timecounter TSC must not be in use when " - "changing frequencies; change denied\n"); + "changing frequencies; change denied\n"); *status = EBUSY; } @@ -210,8 +216,11 @@ tsc_freq_changing(void *arg, const struc static void tsc_freq_changed(void *arg, const struct cf_level *level, int status) { - /* If there was an error during the transition, don't do anything. */ - if (status != 0) + /* + * If there was an error during the transition or + * TSC is P-state invariant, don't do anything. + */ + if (status != 0 || tsc_is_invariant) return; /* Total setting for this level gives the new frequency in MHz. */ Modified: stable/7/sys/i386/include/clock.h ============================================================================== --- stable/7/sys/i386/include/clock.h Wed Jan 21 20:44:42 2009 (r187566) +++ stable/7/sys/i386/include/clock.h Wed Jan 21 20:53:36 2009 (r187567) @@ -22,6 +22,7 @@ extern u_int timer_freq; extern int timer0_max_count; extern uint64_t tsc_freq; extern int tsc_is_broken; +extern int tsc_is_invariant; void i8254_init(void); Modified: stable/7/sys/i386/isa/prof_machdep.c ============================================================================== --- stable/7/sys/i386/isa/prof_machdep.c Wed Jan 21 20:44:42 2009 (r187566) +++ stable/7/sys/i386/isa/prof_machdep.c Wed Jan 21 20:53:36 2009 (r187567) @@ -357,8 +357,11 @@ static void tsc_freq_changed(void *arg, const struct cf_level *level, int status) { - /* If there was an error during the transition, don't do anything. */ - if (status != 0) + /* + * If there was an error during the transition or + * TSC is P-state invariant, don't do anything. + */ + if (status != 0 || tsc_is_invariant) return; if (cputime_prof_active && cputime_clock == CPUTIME_CLOCK_TSC) printf("warning: cpu freq changed while profiling active\n"); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 20:57:28 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8155610656C7; Wed, 21 Jan 2009 20:57:28 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 558858FC13; Wed, 21 Jan 2009 20:57:28 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LKvS55091115; Wed, 21 Jan 2009 20:57:28 GMT (envelope-from joerg@svn.freebsd.org) Received: (from joerg@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LKvSAg091113; Wed, 21 Jan 2009 20:57:28 GMT (envelope-from joerg@svn.freebsd.org) Message-Id: <200901212057.n0LKvSAg091113@svn.freebsd.org> From: Joerg Wunsch Date: Wed, 21 Jan 2009 20:57:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187568 - head/sys/dev/usb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 20:57:29 -0000 Author: joerg Date: Wed Jan 21 20:57:28 2009 New Revision: 187568 URL: http://svn.freebsd.org/changeset/base/187568 Log: Add the dresden elektronik SensorTerminalBoard which uses an FT245. Modified: head/sys/dev/usb/uftdi.c head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/uftdi.c ============================================================================== --- head/sys/dev/usb/uftdi.c Wed Jan 21 20:53:36 2009 (r187567) +++ head/sys/dev/usb/uftdi.c Wed Jan 21 20:57:28 2009 (r187568) @@ -186,6 +186,9 @@ uftdi_match(device_t self) if (uaa->vendor == USB_VENDOR_MELCO && (uaa->product == USB_PRODUCT_MELCO_PCOPRS1)) return (UMATCH_VENDOR_PRODUCT); + if (uaa->vendor == USB_VENDOR_DRESDENELEKTRONIK && + (uaa->product == USB_PRODUCT_DRESDENELEKTRONIK_SENSORTERMINALBOARD)) + return (UMATCH_VENDOR_PRODUCT); return (UMATCH_NONE); } @@ -316,6 +319,18 @@ uftdi_attach(device_t self) } break; + case USB_VENDOR_DRESDENELEKTRONIK: + switch( uaa->product ){ + case USB_PRODUCT_DRESDENELEKTRONIK_SENSORTERMINALBOARD: + sc->sc_type = UFTDI_TYPE_8U232AM; + sc->sc_hdrlen = 0; + break; + + default: /* Can't happen */ + goto bad; + } + break; + default: /* Can't happen */ goto bad; } Modified: head/sys/dev/usb/usbdevs ============================================================================== --- head/sys/dev/usb/usbdevs Wed Jan 21 20:53:36 2009 (r187567) +++ head/sys/dev/usb/usbdevs Wed Jan 21 20:57:28 2009 (r187568) @@ -623,6 +623,7 @@ vendor QCOM 0x18e8 Qcom vendor LINKSYS3 0x1915 Linksys vendor QUALCOMMINC 0x19d2 Qualcomm, Incorporated vendor STELERA 0x1a8d Stelera Wireless +vendor DRESDENELEKTRONIK 0x1cf1 dresden elektronik vendor DLINK 0x2001 D-Link vendor PLANEX2 0x2019 Planex Communications vendor ERICSSON 0x2282 Ericsson @@ -1169,6 +1170,9 @@ product DMI CFSM_RW 0xa109 CF/SM Reader /* DrayTek products */ product DRAYTEK VIGOR550 0x0550 Vigor550 +/* dresden elektronik products */ +product DRESDENELEKTRONIK SENSORTERMINALBOARD 0x0001 SensorTerminalBoard + /* Dynastream Innovations */ product DYNASTREAM ANTDEVBOARD 0x1003 ANT dev board From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 20:57:54 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9614310656C7; Wed, 21 Jan 2009 20:57:54 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8282F8FC18; Wed, 21 Jan 2009 20:57:54 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LKvsdM091157; Wed, 21 Jan 2009 20:57:54 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LKvsSP091156; Wed, 21 Jan 2009 20:57:54 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901212057.n0LKvsSP091156@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 21 Jan 2009 20:57:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187569 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb i386/cpufreq X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 20:57:57 -0000 Author: jkim Date: Wed Jan 21 20:57:54 2009 New Revision: 187569 URL: http://svn.freebsd.org/changeset/base/187569 Log: MFC: Use power management information for AMD CPUs from identcpu.c. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/cpufreq/powernow.c Modified: stable/7/sys/i386/cpufreq/powernow.c ============================================================================== --- stable/7/sys/i386/cpufreq/powernow.c Wed Jan 21 20:57:28 2009 (r187568) +++ stable/7/sys/i386/cpufreq/powernow.c Wed Jan 21 20:57:54 2009 (r187569) @@ -758,22 +758,6 @@ pn_decode_pst(device_t dev) return (ENODEV); } -/* - * TODO: this should be done in sys/ARCH/ARCH/identcpu.c - */ -static int -cpu_is_powernow_capable(void) -{ - u_int regs[4]; - - if (strcmp(cpu_vendor, "AuthenticAMD") != 0 || - cpu_exthigh < 0x80000007) - return (FALSE); - - do_cpuid(0x80000007, regs); - return (regs[3] & 0x6); -} - static int pn_decode_acpi(device_t dev, device_t perf_dev) { @@ -883,7 +867,7 @@ pn_identify(driver_t *driver, device_t p { device_t child; - if (cpu_is_powernow_capable() == 0) + if ((amd_pminfo & (AMDPM_FID | AMDPM_VID)) == 0) return; switch (cpu_id & 0xf00) { case 0x600: From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 21:01:03 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06E141065674; Wed, 21 Jan 2009 21:01:03 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E7F218FC36; Wed, 21 Jan 2009 21:01:02 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LL12F5091285; Wed, 21 Jan 2009 21:01:02 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LL12Gn091284; Wed, 21 Jan 2009 21:01:02 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901212101.n0LL12Gn091284@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 21 Jan 2009 21:01:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187570 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb i386/cpufreq X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 21:01:04 -0000 Author: jkim Date: Wed Jan 21 21:01:02 2009 New Revision: 187570 URL: http://svn.freebsd.org/changeset/base/187570 Log: MFC: Do not use PowerNow! if FID or VID is missing. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/cpufreq/powernow.c Modified: stable/7/sys/i386/cpufreq/powernow.c ============================================================================== --- stable/7/sys/i386/cpufreq/powernow.c Wed Jan 21 20:57:54 2009 (r187569) +++ stable/7/sys/i386/cpufreq/powernow.c Wed Jan 21 21:01:02 2009 (r187570) @@ -867,7 +867,7 @@ pn_identify(driver_t *driver, device_t p { device_t child; - if ((amd_pminfo & (AMDPM_FID | AMDPM_VID)) == 0) + if ((amd_pminfo & AMDPM_FID) == 0 || (amd_pminfo & AMDPM_VID) == 0) return; switch (cpu_id & 0xf00) { case 0x600: From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 21:28:22 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CA9E1065679; Wed, 21 Jan 2009 21:28:22 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 191CF8FC1B; Wed, 21 Jan 2009 21:28:22 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LLSLQ1091843; Wed, 21 Jan 2009 21:28:22 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LLSLU8091839; Wed, 21 Jan 2009 21:28:21 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901212128.n0LLSLU8091839@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 21 Jan 2009 21:28:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187572 - in stable/7/sys: . amd64/amd64 amd64/include contrib/pf dev/ath/ath_hal dev/cxgb i386/i386 i386/include X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 21:28:23 -0000 Author: jkim Date: Wed Jan 21 21:28:21 2009 New Revision: 187572 URL: http://svn.freebsd.org/changeset/base/187572 Log: MFC: Set tsc_is_invariant for some known AMD CPUs even if BIOS does not advertise it. Modified: stable/7/sys/ (props changed) stable/7/sys/amd64/amd64/identcpu.c stable/7/sys/amd64/include/specialreg.h stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/i386/i386/identcpu.c stable/7/sys/i386/include/specialreg.h Modified: stable/7/sys/amd64/amd64/identcpu.c ============================================================================== --- stable/7/sys/amd64/amd64/identcpu.c Wed Jan 21 21:24:36 2009 (r187571) +++ stable/7/sys/amd64/amd64/identcpu.c Wed Jan 21 21:28:21 2009 (r187572) @@ -345,10 +345,17 @@ printcpuinfo(void) "AuthenticAMD") == 0) cpu_feature &= ~CPUID_HTT; + /* + * If this CPU supports P-state invariant TSC then + * mention the capability. + */ if (!tsc_is_invariant && - (amd_pminfo & AMDPM_TSC_INVARIANT)) { + (strcmp(cpu_vendor, "AuthenticAMD") == 0 && + ((amd_pminfo & AMDPM_TSC_INVARIANT) != 0 || + AMD64_CPU_FAMILY(cpu_id) >= 0x10 || + cpu_id == 0x60fb2))) { tsc_is_invariant = 1; - printf("\n P-state invariant TSC"); + printf("\n TSC: P-state invariant"); } /* Modified: stable/7/sys/amd64/include/specialreg.h ============================================================================== --- stable/7/sys/amd64/include/specialreg.h Wed Jan 21 21:24:36 2009 (r187571) +++ stable/7/sys/amd64/include/specialreg.h Wed Jan 21 21:28:21 2009 (r187572) @@ -148,6 +148,21 @@ #define AMDID2_PREFETCH 0x00000100 /* + * CPUID instruction 1 eax info + */ +#define CPUID_STEPPING 0x0000000f +#define CPUID_MODEL 0x000000f0 +#define CPUID_FAMILY 0x00000f00 +#define CPUID_EXT_MODEL 0x000f0000 +#define CPUID_EXT_FAMILY 0x0ff00000 +#define AMD64_CPU_MODEL(id) \ + ((((id) & CPUID_MODEL) >> 4) | \ + (((id) & CPUID_EXT_MODEL) >> 12)) +#define AMD64_CPU_FAMILY(id) \ + ((((id) & CPUID_FAMILY) >> 8) + \ + (((id) & CPUID_EXT_FAMILY) >> 20)) + +/* * CPUID instruction 1 ebx info */ #define CPUID_BRAND_INDEX 0x000000ff Modified: stable/7/sys/i386/i386/identcpu.c ============================================================================== --- stable/7/sys/i386/i386/identcpu.c Wed Jan 21 21:24:36 2009 (r187571) +++ stable/7/sys/i386/i386/identcpu.c Wed Jan 21 21:28:21 2009 (r187572) @@ -842,10 +842,17 @@ printcpuinfo(void) "AuthenticAMD") == 0) cpu_feature &= ~CPUID_HTT; + /* + * If this CPU supports P-state invariant TSC then + * mention the capability. + */ if (!tsc_is_invariant && - (amd_pminfo & AMDPM_TSC_INVARIANT)) { + (strcmp(cpu_vendor, "AuthenticAMD") == 0 && + ((amd_pminfo & AMDPM_TSC_INVARIANT) != 0 || + I386_CPU_FAMILY(cpu_id) >= 0x10 || + cpu_id == 0x60fb2))) { tsc_is_invariant = 1; - printf("\n P-state invariant TSC"); + printf("\n TSC: P-state invariant"); } /* Modified: stable/7/sys/i386/include/specialreg.h ============================================================================== --- stable/7/sys/i386/include/specialreg.h Wed Jan 21 21:24:36 2009 (r187571) +++ stable/7/sys/i386/include/specialreg.h Wed Jan 21 21:28:21 2009 (r187572) @@ -150,6 +150,23 @@ #define AMDID2_PREFETCH 0x00000100 /* + * CPUID instruction 1 eax info + */ +#define CPUID_STEPPING 0x0000000f +#define CPUID_MODEL 0x000000f0 +#define CPUID_FAMILY 0x00000f00 +#define CPUID_EXT_MODEL 0x000f0000 +#define CPUID_EXT_FAMILY 0x0ff00000 +#define I386_CPU_MODEL(id) \ + ((((id) & CPUID_MODEL) >> 4) | \ + ((((id) & CPUID_FAMILY) >= 0x600) ? \ + (((id) & CPUID_EXT_MODEL) >> 12) : 0)) +#define I386_CPU_FAMILY(id) \ + ((((id) & CPUID_FAMILY) >> 8) + \ + ((((id) & CPUID_FAMILY) == 0xf00) ? \ + (((id) & CPUID_EXT_FAMILY) >> 20) : 0)) + +/* * CPUID instruction 1 ebx info */ #define CPUID_BRAND_INDEX 0x000000ff From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 21:29:00 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6529106568C; Wed, 21 Jan 2009 21:29:00 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2CC48FC1C; Wed, 21 Jan 2009 21:29:00 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LLT0F1091892; Wed, 21 Jan 2009 21:29:00 GMT (envelope-from tabthorpe@svn.freebsd.org) Received: (from tabthorpe@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LLT0YA091891; Wed, 21 Jan 2009 21:29:00 GMT (envelope-from tabthorpe@svn.freebsd.org) Message-Id: <200901212129.n0LLT0YA091891@svn.freebsd.org> From: Thomas Abthorpe Date: Wed, 21 Jan 2009 21:29:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187573 - head/share/man/man7 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 21:29:02 -0000 Author: tabthorpe (ports committer) Date: Wed Jan 21 21:29:00 2009 New Revision: 187573 URL: http://svn.freebsd.org/changeset/base/187573 Log: - Document targets run-depends-list and build-depends-list PR: docs/127575 Submitted by: Walter Venable Approved by: keramida MFC after: 3 days Modified: head/share/man/man7/ports.7 Modified: head/share/man/man7/ports.7 ============================================================================== --- head/share/man/man7/ports.7 Wed Jan 21 21:28:21 2009 (r187572) +++ head/share/man/man7/ports.7 Wed Jan 21 21:29:00 2009 (r187573) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 22, 2008 +.Dd January 21, 2009 .Dt PORTS 7 .Os .Sh NAME @@ -196,11 +196,14 @@ Fetch the distfiles of the port and all .It Cm fetch-recursive-list Show list of files that would be retrieved by .Cm fetch-recursive . +.It Cm run-depends-list , build-depends-list +Print a list of all the compile and run dependencies, and dependencies +of those dependencies, by port directory. .It Cm all-depends-list Print a list of all dependencies for the port. .It Cm pretty-print-run-depends-list , pretty-print-build-depends-list Print a list of all the compile and run dependencies, and dependencies -of those dependencies. +of those dependencies, by port name and version. .It Cm missing Print a list of missing dependencies to be installed for the port. .It Cm clean @@ -251,6 +254,8 @@ and Like .Cm package , but makes a package for each depending port as well. +.It Cm package-name +Prints the name with version of the port. .It Cm readmes Create a port's .Pa README.html . From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 21:31:44 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D14121065678; Wed, 21 Jan 2009 21:31:44 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BE5218FC1A; Wed, 21 Jan 2009 21:31:44 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LLVi2s091993; Wed, 21 Jan 2009 21:31:44 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LLViIo091992; Wed, 21 Jan 2009 21:31:44 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200901212131.n0LLViIo091992@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 21 Jan 2009 21:31:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187574 - in stable/7/sys: . contrib/pf dev/acpica dev/ath/ath_hal dev/cxgb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 21:31:46 -0000 Author: jkim Date: Wed Jan 21 21:31:44 2009 New Revision: 187574 URL: http://svn.freebsd.org/changeset/base/187574 Log: MFC: Make sure legacy replacement route is turned off when enbling HPET. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/acpica/acpi_hpet.c stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) Modified: stable/7/sys/dev/acpica/acpi_hpet.c ============================================================================== --- stable/7/sys/dev/acpica/acpi_hpet.c Wed Jan 21 21:29:00 2009 (r187573) +++ stable/7/sys/dev/acpica/acpi_hpet.c Wed Jan 21 21:31:44 2009 (r187574) @@ -83,7 +83,9 @@ hpet_enable(struct acpi_hpet_softc *sc) uint32_t val; val = bus_read_4(sc->mem_res, HPET_CONFIG); - bus_write_4(sc->mem_res, HPET_CONFIG, val | HPET_CNF_ENABLE); + val &= ~HPET_CNF_LEG_RT; + val |= HPET_CNF_ENABLE; + bus_write_4(sc->mem_res, HPET_CONFIG, val); } static void @@ -92,7 +94,8 @@ hpet_disable(struct acpi_hpet_softc *sc) uint32_t val; val = bus_read_4(sc->mem_res, HPET_CONFIG); - bus_write_4(sc->mem_res, HPET_CONFIG, val & ~HPET_CNF_ENABLE); + val &= ~HPET_CNF_ENABLE; + bus_write_4(sc->mem_res, HPET_CONFIG, val); } /* Discover the HPET via the ACPI table of the same name. */ From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 21:48:47 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3376F106566B; Wed, 21 Jan 2009 21:48:47 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 21E928FC1A; Wed, 21 Jan 2009 21:48:47 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LLmlhj092328; Wed, 21 Jan 2009 21:48:47 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LLmlh0092327; Wed, 21 Jan 2009 21:48:47 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901212148.n0LLmlh0092327@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 21:48:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187575 - stable/6/sys/kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 21:48:48 -0000 Author: jhb Date: Wed Jan 21 21:48:46 2009 New Revision: 187575 URL: http://svn.freebsd.org/changeset/base/187575 Log: Fix build. Pointy hat to: jhb Modified: stable/6/sys/kern/vfs_syscalls.c Modified: stable/6/sys/kern/vfs_syscalls.c ============================================================================== --- stable/6/sys/kern/vfs_syscalls.c Wed Jan 21 21:31:44 2009 (r187574) +++ stable/6/sys/kern/vfs_syscalls.c Wed Jan 21 21:48:46 2009 (r187575) @@ -3712,7 +3712,7 @@ kern_getdirentries(struct thread *td, in int error, eofflag; AUDIT_ARG(fd, fd); - if (uap->count > INT_MAX) + if (count > INT_MAX) return (EINVAL); if ((error = getvnode(td->td_proc->p_fd, fd, &fp)) != 0) return (error); From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 22:05:08 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A0541065672; Wed, 21 Jan 2009 22:05:08 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mail.cksoft.de (mail.cksoft.de [62.111.66.27]) by mx1.freebsd.org (Postfix) with ESMTP id B2FA68FC17; Wed, 21 Jan 2009 22:05:07 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from localhost (amavis.str.cksoft.de [192.168.74.71]) by mail.cksoft.de (Postfix) with ESMTP id 2591D41C705; Wed, 21 Jan 2009 23:05:06 +0100 (CET) X-Virus-Scanned: amavisd-new at cksoft.de Received: from mail.cksoft.de ([62.111.66.27]) by localhost (amavis.str.cksoft.de [192.168.74.71]) (amavisd-new, port 10024) with ESMTP id C+OoDpzk8zA7; Wed, 21 Jan 2009 23:05:05 +0100 (CET) Received: by mail.cksoft.de (Postfix, from userid 66) id C176C41C6DB; Wed, 21 Jan 2009 23:05:05 +0100 (CET) Received: from maildrop.int.zabbadoz.net (maildrop.int.zabbadoz.net [10.111.66.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.int.zabbadoz.net (Postfix) with ESMTP id 9657A4448D5; Wed, 21 Jan 2009 22:00:19 +0000 (UTC) Date: Wed, 21 Jan 2009 22:00:19 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@maildrop.int.zabbadoz.net To: Jung-uk Kim In-Reply-To: <200901212044.n0LKig3S090752@svn.freebsd.org> Message-ID: <20090121215905.F45399@maildrop.int.zabbadoz.net> References: <200901212044.n0LKig3S090752@svn.freebsd.org> X-OpenPGP-Key: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187566 - head/sys/contrib/altq/altq X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 22:05:08 -0000 On Wed, 21 Jan 2009, Jung-uk Kim wrote: > Author: jkim > Date: Wed Jan 21 20:44:42 2009 > New Revision: 187566 > URL: http://svn.freebsd.org/changeset/base/187566 > > Log: > Change __FreeBSD_version to prepare for merging r184102. > > Modified: > head/sys/contrib/altq/altq/altq_subr.c > > Modified: head/sys/contrib/altq/altq/altq_subr.c > ============================================================================== > --- head/sys/contrib/altq/altq/altq_subr.c Wed Jan 21 20:16:11 2009 (r187565) > +++ head/sys/contrib/altq/altq/altq_subr.c Wed Jan 21 20:44:42 2009 (r187566) > @@ -910,7 +910,7 @@ tsc_freq_changed(void *arg, const struct > if (status != 0) > return; > > -#if (__FreeBSD_version >= 800050) && (defined(__amd64__) || defined(__i386__)) > +#if (__FreeBSD_version >= 701102) && (defined(__amd64__) || defined(__i386__)) > /* If TSC is P-state invariant, don't do anything. */ > if (tsc_is_invariant) > return; Doesn't that leave a gap now for 800000 to 800050? -- Bjoern A. Zeeb The greatest risk is not taking one. From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 22:12:05 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from [127.0.0.1] (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id 5906A106566C; Wed, 21 Jan 2009 22:12:03 +0000 (UTC) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: "Bjoern A. Zeeb" Date: Wed, 21 Jan 2009 17:11:46 -0500 User-Agent: KMail/1.6.2 References: <200901212044.n0LKig3S090752@svn.freebsd.org> <20090121215905.F45399@maildrop.int.zabbadoz.net> In-Reply-To: <20090121215905.F45399@maildrop.int.zabbadoz.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200901211711.54287.jkim@FreeBSD.org> Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187566 - head/sys/contrib/altq/altq X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 22:12:05 -0000 On Wednesday 21 January 2009 05:00 pm, Bjoern A. Zeeb wrote: > On Wed, 21 Jan 2009, Jung-uk Kim wrote: > > Author: jkim > > Date: Wed Jan 21 20:44:42 2009 > > New Revision: 187566 > > URL: http://svn.freebsd.org/changeset/base/187566 > > > > Log: > > Change __FreeBSD_version to prepare for merging r184102. > > > > Modified: > > head/sys/contrib/altq/altq/altq_subr.c > > > > Modified: head/sys/contrib/altq/altq/altq_subr.c > > ================================================================= > >============= --- head/sys/contrib/altq/altq/altq_subr.c Wed Jan > > 21 20:16:11 2009 (r187565) +++ > > head/sys/contrib/altq/altq/altq_subr.c Wed Jan 21 20:44:42 > > 2009 (r187566) @@ -910,7 +910,7 @@ tsc_freq_changed(void *arg, > > const struct if (status != 0) > > return; > > > > -#if (__FreeBSD_version >= 800050) && (defined(__amd64__) || > > defined(__i386__)) +#if (__FreeBSD_version >= 701102) && > > (defined(__amd64__) || defined(__i386__)) /* If TSC is P-state > > invariant, don't do anything. */ > > if (tsc_is_invariant) > > return; > > Doesn't that leave a gap now for 800000 to 800050? Don't we have "-CURRENT has no seat belt" policy? Jung-uk Kim From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 23:10:06 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA368106566B; Wed, 21 Jan 2009 23:10:06 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A742B8FC1B; Wed, 21 Jan 2009 23:10:06 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LNA625093949; Wed, 21 Jan 2009 23:10:06 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LNA6cM093944; Wed, 21 Jan 2009 23:10:06 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200901212310.n0LNA6cM093944@svn.freebsd.org> From: John Baldwin Date: Wed, 21 Jan 2009 23:10:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187576 - in head/sys/dev: ppbus ppc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 23:10:07 -0000 Author: jhb Date: Wed Jan 21 23:10:06 2009 New Revision: 187576 URL: http://svn.freebsd.org/changeset/base/187576 Log: Add locking to ppc and ppbus and mark the whole lot MPSAFE: - To avoid having a bunch of locks that end up always getting acquired as a group, give each ppc(4) device a mutex which it shares with all the child devices including ppbus(4), lpt(4), plip(4), etc. This mutex is then used for all the locking. - Rework the interrupt handling stuff yet again. Now ppbus drivers setup their interrupt handler during attach and tear it down during detach like most other drivers. ppbus(4) only invokes the interrupt handler of the device that currently owns the bus (if any) when an interrupt occurs, however. Also, interrupt handlers in general now accept their softc pointers as their argument rather than the device_t. Another feature of the ppbus interrupt handlers is that they are called with the parent ppc device's lock already held. This minimizes the number of lock operations during an interrupt. - Mark plip(4), lpt(4), pcfclock(4), ppi(4), vpo(4) MPSAFE. - lpbb(4) uses the ppc lock instead of Giant. - Other plip(4) changes: - Add a mutex to protect the global tables in plip(4) and free them on module unload. - Add a detach routine. - Split out the init/stop code from the ioctl routine into separate functions. - Other lpt(4) changes: - Use device_printf(). - Use a dedicated callout for the lptout timer. - Allocate the I/O buffers at attach and detach rather than during open and close as this simplifies the locking at the cost of 1024+32 bytes when the driver is attached. - Other ppi(4) changes: - Use an sx lock to serialize open and close. - Remove unused HADBUS flag. - Add a detach routine. - Use a malloc'd buffer for each read and write to avoid races with concurrent read/write. - Other pps(4) changes: - Use a callout rather than a callout handle with timeout(). - Conform to the new ppbus requirements (regular mutex, non-filter interrupt handler). pps(4) is probably going to have to become a standalone driver that doesn't use ppbus(4) to satisfy it's requirements for low latency as a result. - Use an sx lock to serialize open and close. - Other vpo(4) changes: - Use the parent ppc device's lock to create the CAM sim instead of Giant. - Other ppc(4) changes: - Fix ppc_isa's detach method to detach instead of calling attach. Tested by: no one :-( Modified: head/sys/dev/ppbus/if_plip.c head/sys/dev/ppbus/immio.c head/sys/dev/ppbus/lpbb.c head/sys/dev/ppbus/lpt.c head/sys/dev/ppbus/pcfclock.c head/sys/dev/ppbus/ppb_1284.c head/sys/dev/ppbus/ppb_base.c head/sys/dev/ppbus/ppb_msq.c head/sys/dev/ppbus/ppbconf.c head/sys/dev/ppbus/ppbconf.h head/sys/dev/ppbus/ppi.c head/sys/dev/ppbus/pps.c head/sys/dev/ppbus/vpo.c head/sys/dev/ppbus/vpoio.c head/sys/dev/ppc/ppc.c head/sys/dev/ppc/ppc_acpi.c head/sys/dev/ppc/ppc_isa.c head/sys/dev/ppc/ppc_pci.c head/sys/dev/ppc/ppc_puc.c head/sys/dev/ppc/ppcreg.h head/sys/dev/ppc/ppcvar.h Modified: head/sys/dev/ppbus/if_plip.c ============================================================================== --- head/sys/dev/ppbus/if_plip.c Wed Jan 21 21:48:46 2009 (r187575) +++ head/sys/dev/ppbus/if_plip.c Wed Jan 21 23:10:06 2009 (r187576) @@ -152,8 +152,12 @@ struct lp_data { int sc_iferrs; struct resource *res_irq; + void *sc_intr_cookie; }; +static struct mtx lp_tables_lock; +MTX_SYSINIT(lp_tables, &lp_tables_lock, "plip tables", MTX_DEF); + /* Tables for the lp# interface */ static u_char *txmith; #define txmitl (txmith + (1 * LPIPTBLSIZE)) @@ -170,13 +174,41 @@ static int lpinittables(void); static int lpioctl(struct ifnet *, u_long, caddr_t); static int lpoutput(struct ifnet *, struct mbuf *, struct sockaddr *, struct rtentry *); +static void lpstop(struct lp_data *); static void lp_intr(void *); +static int lp_module_handler(module_t, int, void *); #define DEVTOSOFTC(dev) \ ((struct lp_data *)device_get_softc(dev)) static devclass_t lp_devclass; +static int +lp_module_handler(module_t mod, int what, void *arg) +{ + + switch (what) { + case MOD_UNLOAD: + mtx_lock(&lp_tables_lock); + if (txmith != NULL) { + free(txmith, M_DEVBUF); + txmith = NULL; + } + if (ctxmith != NULL) { + free(ctxmith, M_DEVBUF); + ctxmith = NULL; + } + mtx_unlock(&lp_tables_lock); + break; + case MOD_LOAD: + case MOD_QUIESCE: + break; + default: + return (EOPNOTSUPP); + } + return (0); +} + static void lp_identify(driver_t *driver, device_t parent) { @@ -201,7 +233,7 @@ lp_attach(device_t dev) { struct lp_data *lp = DEVTOSOFTC(dev); struct ifnet *ifp; - int rid = 0; + int error, rid = 0; lp->sc_dev = dev; @@ -224,8 +256,7 @@ lp_attach(device_t dev) ifp->if_softc = lp; if_initname(ifp, device_get_name(dev), device_get_unit(dev)); ifp->if_mtu = LPMTU; - ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST | - IFF_NEEDSGIANT; + ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST; ifp->if_ioctl = lpioctl; ifp->if_output = lpoutput; ifp->if_hdrlen = 0; @@ -235,8 +266,39 @@ lp_attach(device_t dev) bpfattach(ifp, DLT_NULL, sizeof(u_int32_t)); + /* + * Attach our interrupt handler. It is only called while we + * own the ppbus. + */ + error = bus_setup_intr(dev, lp->res_irq, INTR_TYPE_NET | INTR_MPSAFE, + NULL, lp_intr, lp, &lp->sc_intr_cookie); + if (error) { + bpfdetach(ifp); + if_detach(ifp); + bus_release_resource(dev, SYS_RES_IRQ, 0, lp->res_irq); + device_printf(dev, "Unable to register interrupt handler\n"); + return (error); + } + return (0); } + +static int +lp_detach(device_t dev) +{ + struct lp_data *sc = device_get_softc(dev); + device_t ppbus = device_get_parent(dev); + + ppb_lock(ppbus); + lpstop(sc); + ppb_unlock(ppbus); + bpfdetach(sc->sc_ifp); + if_detach(sc->sc_ifp); + bus_teardown_intr(dev, sc->res_irq, sc->sc_intr_cookie); + bus_release_resource(dev, SYS_RES_IRQ, 0, sc->res_irq); + return (0); +} + /* * Build the translation tables for the LPIP (BSD unix) protocol. * We don't want to calculate these nasties in our tight loop, so we @@ -247,17 +309,22 @@ lpinittables(void) { int i; + mtx_lock(&lp_tables_lock); if (txmith == NULL) txmith = malloc(4 * LPIPTBLSIZE, M_DEVBUF, M_NOWAIT); - if (txmith == NULL) + if (txmith == NULL) { + mtx_unlock(&lp_tables_lock); return (1); + } if (ctxmith == NULL) ctxmith = malloc(4 * LPIPTBLSIZE, M_DEVBUF, M_NOWAIT); - if (ctxmith == NULL) + if (ctxmith == NULL) { + mtx_unlock(&lp_tables_lock); return (1); + } for (i = 0; i < LPIPTBLSIZE; i++) { ctxmith[i] = (i & 0xF0) >> 4; @@ -272,10 +339,61 @@ lpinittables(void) trecvh[i] = ((~i) & 0x80) | ((i & 0x38) << 1); trecvl[i] = (((~i) & 0x80) >> 4) | ((i & 0x38) >> 3); } + mtx_unlock(&lp_tables_lock); return (0); } +static void +lpstop(struct lp_data *sc) +{ + device_t ppbus = device_get_parent(sc->sc_dev); + + ppb_assert_locked(ppbus); + ppb_wctr(ppbus, 0x00); + sc->sc_ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE); + free(sc->sc_ifbuf, M_DEVBUF); + sc->sc_ifbuf = NULL; + + /* IFF_UP is not set, try to release the bus anyway */ + ppb_release_bus(ppbus, sc->sc_dev); +} + +static int +lpinit_locked(struct ifnet *ifp) +{ + struct lp_data *sc = ifp->if_softc; + device_t dev = sc->sc_dev; + device_t ppbus = device_get_parent(dev); + int error; + + ppb_assert_locked(ppbus); + error = ppb_request_bus(ppbus, dev, PPB_DONTWAIT); + if (error) + return (error); + + /* Now IFF_UP means that we own the bus */ + ppb_set_mode(ppbus, PPB_COMPATIBLE); + + if (lpinittables()) { + ppb_release_bus(ppbus, dev); + return (ENOBUFS); + } + + sc->sc_ifbuf = malloc(sc->sc_ifp->if_mtu + MLPIPHDRLEN, + M_DEVBUF, M_NOWAIT); + if (sc->sc_ifbuf == NULL) { + ppb_release_bus(ppbus, dev); + return (ENOBUFS); + } + + ppb_wctr(ppbus, IRQENABLE); + + ifp->if_drv_flags |= IFF_DRV_RUNNING; + ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; + return (0); +} + /* * Process an ioctl request. */ @@ -288,7 +406,6 @@ lpioctl(struct ifnet *ifp, u_long cmd, c struct ifaddr *ifa = (struct ifaddr *)data; struct ifreq *ifr = (struct ifreq *)data; u_char *ptr; - void *ih; int error; switch (cmd) { @@ -301,67 +418,32 @@ lpioctl(struct ifnet *ifp, u_long cmd, c ifp->if_flags |= IFF_UP; /* FALLTHROUGH */ case SIOCSIFFLAGS: + error = 0; + ppb_lock(ppbus); if ((!(ifp->if_flags & IFF_UP)) && - (ifp->if_drv_flags & IFF_DRV_RUNNING)) { - - ppb_wctr(ppbus, 0x00); - ifp->if_drv_flags &= ~IFF_DRV_RUNNING; - - /* IFF_UP is not set, try to release the bus anyway */ - ppb_release_bus(ppbus, dev); - break; - } - if (((ifp->if_flags & IFF_UP)) && - (!(ifp->if_drv_flags & IFF_DRV_RUNNING))) { - - /* XXX - * Should the request be interruptible? - */ - if ((error = ppb_request_bus(ppbus, dev, PPB_WAIT | - PPB_INTR))) - return (error); + (ifp->if_drv_flags & IFF_DRV_RUNNING)) + lpstop(sc); + else if (((ifp->if_flags & IFF_UP)) && + (!(ifp->if_drv_flags & IFF_DRV_RUNNING))) + error = lpinit_locked(ifp); + ppb_unlock(ppbus); + return (error); - /* Now IFF_UP means that we own the bus */ - ppb_set_mode(ppbus, PPB_COMPATIBLE); - - if (lpinittables()) { - ppb_release_bus(ppbus, dev); - return (ENOBUFS); - } - - sc->sc_ifbuf = malloc(sc->sc_ifp->if_mtu + MLPIPHDRLEN, - M_DEVBUF, M_WAITOK); - if (sc->sc_ifbuf == NULL) { - ppb_release_bus(ppbus, dev); + case SIOCSIFMTU: + ppb_lock(ppbus); + if (ifp->if_drv_flags & IFF_DRV_RUNNING) { + ptr = malloc(ifr->ifr_mtu + MLPIPHDRLEN, M_DEVBUF, + M_NOWAIT); + if (ptr == NULL) { + ppb_unlock(ppbus); return (ENOBUFS); } - - /* - * Attach our interrupt handler. It is - * detached later when the bus is released. - */ - if ((error = bus_setup_intr(dev, sc->res_irq, - INTR_TYPE_NET, NULL, lp_intr, dev, &ih))) { - ppb_release_bus(ppbus, dev); - return (error); - } - - ppb_wctr(ppbus, IRQENABLE); - ifp->if_drv_flags |= IFF_DRV_RUNNING; - } - break; - - case SIOCSIFMTU: - ptr = sc->sc_ifbuf; - sc->sc_ifbuf = malloc(ifr->ifr_mtu + MLPIPHDRLEN, M_DEVBUF, - M_NOWAIT); - if (sc->sc_ifbuf == NULL) { + if (sc->sc_ifbuf) + free(sc->sc_ifbuf, M_DEVBUF); sc->sc_ifbuf = ptr; - return (ENOBUFS); } - if (ptr) - free(ptr, M_DEVBUF); sc->sc_ifp->if_mtu = ifr->ifr_mtu; + ppb_unlock(ppbus); break; case SIOCGIFMTU: @@ -417,14 +499,14 @@ clpinbyte(int spin, device_t ppbus) { u_char c, cl; - while((ppb_rstr(ppbus) & CLPIP_SHAKE)) + while ((ppb_rstr(ppbus) & CLPIP_SHAKE)) if (!--spin) { return (-1); } cl = ppb_rstr(ppbus); ppb_wdtr(ppbus, 0x10); - while(!(ppb_rstr(ppbus) & CLPIP_SHAKE)) + while (!(ppb_rstr(ppbus) & CLPIP_SHAKE)) if (!--spin) { return (-1); } @@ -445,16 +527,14 @@ lptap(struct ifnet *ifp, struct mbuf *m) static void lp_intr(void *arg) { - device_t dev = (device_t)arg; - device_t ppbus = device_get_parent(dev); - struct lp_data *sc = DEVTOSOFTC(dev); - int len, s, j; + struct lp_data *sc = arg; + device_t ppbus = device_get_parent(sc->sc_dev); + int len, j; u_char *bp; u_char c, cl; struct mbuf *top; - s = splhigh(); - + ppb_assert_locked(ppbus); if (sc->sc_ifp->if_flags & IFF_LINK0) { /* Ack. the request */ @@ -500,13 +580,15 @@ lp_intr(void *arg) top = m_devget(sc->sc_ifbuf + CLPIPHDRLEN, len, 0, sc->sc_ifp, 0); if (top) { + ppb_unlock(ppbus); if (bpf_peers_present(sc->sc_ifp->if_bpf)) lptap(sc->sc_ifp, top); /* mbuf is free'd on failure. */ netisr_queue(NETISR_IP, top); + ppb_lock(ppbus); } - goto done; + return; } while ((ppb_rstr(ppbus) & LPIP_SHAKE)) { len = sc->sc_ifp->if_mtu + LPIPHDRLEN; @@ -517,7 +599,7 @@ lp_intr(void *arg) ppb_wdtr(ppbus, 8); j = LPMAXSPIN2; - while((ppb_rstr(ppbus) & LPIP_SHAKE)) + while ((ppb_rstr(ppbus) & LPIP_SHAKE)) if (!--j) goto err; @@ -550,14 +632,16 @@ lp_intr(void *arg) top = m_devget(sc->sc_ifbuf + LPIPHDRLEN, len, 0, sc->sc_ifp, 0); if (top) { + ppb_unlock(ppbus); if (bpf_peers_present(sc->sc_ifp->if_bpf)) lptap(sc->sc_ifp, top); /* mbuf is free'd on failure. */ netisr_queue(NETISR_IP, top); + ppb_lock(ppbus); } } - goto done; + return; err: ppb_wdtr(ppbus, 0); @@ -575,9 +659,6 @@ err: sc->sc_ifp->if_drv_flags &= ~IFF_DRV_RUNNING; sc->sc_iferrs = 0; } - -done: - splx(s); } static __inline int @@ -602,7 +683,7 @@ lpoutput(struct ifnet *ifp, struct mbuf struct lp_data *sc = ifp->if_softc; device_t dev = sc->sc_dev; device_t ppbus = device_get_parent(dev); - int s, err; + int err; struct mbuf *mm; u_char *cp = "\0\0"; u_char chksum = 0; @@ -611,19 +692,18 @@ lpoutput(struct ifnet *ifp, struct mbuf /* We need a sensible value if we abort */ cp++; - ifp->if_drv_flags |= IFF_DRV_RUNNING; + ppb_lock(ppbus); + ifp->if_drv_flags |= IFF_DRV_OACTIVE; err = 1; /* assume we're aborting because of an error */ - s = splhigh(); - /* Suspend (on laptops) or receive-errors might have taken us offline */ ppb_wctr(ppbus, IRQENABLE); if (ifp->if_flags & IFF_LINK0) { if (!(ppb_rstr(ppbus) & CLPIP_SHAKE)) { lprintf("&"); - lp_intr(dev); + lp_intr(sc); } /* Alert other end to pending packet */ @@ -681,6 +761,7 @@ lpoutput(struct ifnet *ifp, struct mbuf err = 0; /* No errors */ nend: + ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; if (err) { /* if we didn't timeout... */ ifp->if_oerrors++; lprintf("X"); @@ -695,15 +776,15 @@ lpoutput(struct ifnet *ifp, struct mbuf if (!(ppb_rstr(ppbus) & CLPIP_SHAKE)) { lprintf("^"); - lp_intr(dev); + lp_intr(sc); } - (void) splx(s); + ppb_unlock(ppbus); return (0); } if (ppb_rstr(ppbus) & LPIP_SHAKE) { lprintf("&"); - lp_intr(dev); + lp_intr(sc); } if (lpoutbyte(0x08, LPMAXSPIN1, ppbus)) @@ -726,6 +807,7 @@ end: --cp; ppb_wdtr(ppbus, txmitl[*cp] ^ 0x17); + ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; if (err) { /* if we didn't timeout... */ ifp->if_oerrors++; lprintf("X"); @@ -740,10 +822,10 @@ end: if (ppb_rstr(ppbus) & LPIP_SHAKE) { lprintf("^"); - lp_intr(dev); + lp_intr(sc); } - (void) splx(s); + ppb_unlock(ppbus); return (0); } @@ -752,6 +834,7 @@ static device_method_t lp_methods[] = { DEVMETHOD(device_identify, lp_identify), DEVMETHOD(device_probe, lp_probe), DEVMETHOD(device_attach, lp_attach), + DEVMETHOD(device_detach, lp_detach), { 0, 0 } }; @@ -762,5 +845,5 @@ static driver_t lp_driver = { sizeof(struct lp_data), }; -DRIVER_MODULE(plip, ppbus, lp_driver, lp_devclass, 0, 0); +DRIVER_MODULE(plip, ppbus, lp_driver, lp_devclass, lp_module_handler, 0); MODULE_DEPEND(plip, ppbus, 1, 1, 1); Modified: head/sys/dev/ppbus/immio.c ============================================================================== --- head/sys/dev/ppbus/immio.c Wed Jan 21 21:48:46 2009 (r187575) +++ head/sys/dev/ppbus/immio.c Wed Jan 21 23:10:06 2009 (r187576) @@ -606,6 +606,7 @@ imm_attach(struct vpoio_data *vpo) /* * Initialize mode dependent in/out microsequences */ + ppb_lock(ppbus); if ((error = ppb_request_bus(ppbus, vpo->vpo_dev, PPB_WAIT))) goto error; @@ -632,6 +633,7 @@ imm_attach(struct vpoio_data *vpo) ppb_release_bus(ppbus, vpo->vpo_dev); error: + ppb_unlock(ppbus); return (error); } Modified: head/sys/dev/ppbus/lpbb.c ============================================================================== --- head/sys/dev/ppbus/lpbb.c Wed Jan 21 21:48:46 2009 (r187575) +++ head/sys/dev/ppbus/lpbb.c Wed Jan 21 23:10:06 2009 (r187576) @@ -103,16 +103,16 @@ lpbb_callback(device_t dev, int index, c case IIC_REQUEST_BUS: /* request the ppbus */ how = *(int *)data; - mtx_lock(&Giant); + ppb_lock(ppbus); error = ppb_request_bus(ppbus, dev, how); - mtx_unlock(&Giant); + ppb_unlock(ppbus); break; case IIC_RELEASE_BUS: /* release the ppbus */ - mtx_lock(&Giant); + ppb_lock(ppbus); error = ppb_release_bus(ppbus, dev); - mtx_unlock(&Giant); + ppb_unlock(ppbus); break; default: @@ -129,25 +129,38 @@ lpbb_callback(device_t dev, int index, c #define ALIM 0x20 #define I2CKEY 0x50 +/* Reset bus by setting SDA first and then SCL. */ +static void +lpbb_reset_bus(device_t dev) +{ + device_t ppbus = device_get_parent(dev); + + ppb_assert_locked(ppbus); + ppb_wdtr(ppbus, (u_char)~SDA_out); + ppb_wctr(ppbus, (u_char)(ppb_rctr(ppbus) | SCL_out)); +} + static int lpbb_getscl(device_t dev) { + device_t ppbus = device_get_parent(dev); int rval; - mtx_lock(&Giant); - rval = ((ppb_rstr(device_get_parent(dev)) & SCL_in) == SCL_in); - mtx_unlock(&Giant); + ppb_lock(ppbus); + rval = ((ppb_rstr(ppbus) & SCL_in) == SCL_in); + ppb_unlock(ppbus); return (rval); } static int lpbb_getsda(device_t dev) { + device_t ppbus = device_get_parent(dev); int rval; - mtx_lock(&Giant); - rval = ((ppb_rstr(device_get_parent(dev)) & SDA_in) == SDA_in); - mtx_unlock(&Giant); + ppb_lock(ppbus); + rval = ((ppb_rstr(ppbus) & SDA_in) == SDA_in); + ppb_unlock(ppbus); return (rval); } @@ -156,12 +169,12 @@ lpbb_setsda(device_t dev, char val) { device_t ppbus = device_get_parent(dev); - mtx_lock(&Giant); + ppb_lock(ppbus); if (val == 0) ppb_wdtr(ppbus, (u_char)SDA_out); else ppb_wdtr(ppbus, (u_char)~SDA_out); - mtx_unlock(&Giant); + ppb_unlock(ppbus); } static void @@ -169,12 +182,12 @@ lpbb_setscl(device_t dev, unsigned char { device_t ppbus = device_get_parent(dev); - mtx_lock(&Giant); + ppb_lock(ppbus); if (val == 0) ppb_wctr(ppbus, (u_char)(ppb_rctr(ppbus) & ~SCL_out)); else ppb_wctr(ppbus, (u_char)(ppb_rctr(ppbus) | SCL_out)); - mtx_unlock(&Giant); + ppb_unlock(ppbus); } static int @@ -182,23 +195,24 @@ lpbb_detect(device_t dev) { device_t ppbus = device_get_parent(dev); + ppb_lock(ppbus); if (ppb_request_bus(ppbus, dev, PPB_DONTWAIT)) { + ppb_unlock(ppbus); device_printf(dev, "can't allocate ppbus\n"); return (0); } - /* reset bus */ - lpbb_setsda(dev, 1); - lpbb_setscl(dev, 1); + lpbb_reset_bus(dev); if ((ppb_rstr(ppbus) & I2CKEY) || ((ppb_rstr(ppbus) & ALIM) != ALIM)) { - ppb_release_bus(ppbus, dev); + ppb_unlock(ppbus); return (0); } ppb_release_bus(ppbus, dev); + ppb_unlock(ppbus); return (1); } @@ -208,18 +222,17 @@ lpbb_reset(device_t dev, u_char speed, u { device_t ppbus = device_get_parent(dev); - mtx_lock(&Giant); + ppb_lock(ppbus); if (ppb_request_bus(ppbus, dev, PPB_DONTWAIT)) { + ppb_unlock(ppbus); device_printf(dev, "can't allocate ppbus\n"); return (0); } - /* reset bus */ - lpbb_setsda(dev, 1); - lpbb_setscl(dev, 1); + lpbb_reset_bus(dev); ppb_release_bus(ppbus, dev); - mtx_unlock(&Giant); + ppb_unlock(ppbus); return (IIC_ENOADDR); } Modified: head/sys/dev/ppbus/lpt.c ============================================================================== --- head/sys/dev/ppbus/lpt.c Wed Jan 21 21:48:46 2009 (r187575) +++ head/sys/dev/ppbus/lpt.c Wed Jan 21 23:10:06 2009 (r187576) @@ -105,9 +105,9 @@ static int volatile lptflag = 1; #define BUFSTATSIZE 32 struct lpt_data { - device_t dev; - struct cdev *cdev; - struct cdev *cdev_bypass; + device_t sc_dev; + struct cdev *sc_cdev; + struct cdev *sc_cdev_bypass; short sc_state; /* default case: negative prime, negative ack, handshake strobe, prime once */ @@ -130,9 +130,10 @@ struct lpt_data { #define LP_ENABLE_IRQ 0x04 /* enable IRQ on open */ #define LP_ENABLE_EXT 0x10 /* we shall use advanced mode when possible */ u_char sc_backoff ; /* time to call lptout() again */ + struct callout sc_timer; - struct resource *intr_resource; /* interrupt resource */ - void *intr_cookie; /* interrupt registration cookie */ + struct resource *sc_intr_resource; /* interrupt resource */ + void *sc_intr_cookie; /* interrupt cookie */ }; #define LPT_NAME "lpt" /* our official name */ @@ -144,8 +145,7 @@ static int lpt_detect(device_t dev); #define DEVTOSOFTC(dev) \ ((struct lpt_data *)device_get_softc(dev)) -static void lptintr(device_t dev); -static void lpt_intr(void *arg); /* without spls */ +static void lptintr(void *arg); static devclass_t lpt_devclass; @@ -183,7 +183,6 @@ static d_ioctl_t lptioctl; static struct cdevsw lpt_cdevsw = { .d_version = D_VERSION, - .d_flags = D_NEEDGIANT, .d_open = lptopen, .d_close = lptclose, .d_read = lptread, @@ -199,13 +198,17 @@ lpt_request_ppbus(device_t dev, int how) struct lpt_data *sc = DEVTOSOFTC(dev); int error; + /* + * We might already have the bus for a write(2) after an interrupted + * write(2) call. + */ + ppb_assert_locked(ppbus); if (sc->sc_state & HAVEBUS) return (0); - /* we have the bus only if the request succeded */ - if ((error = ppb_request_bus(ppbus, dev, how)) == 0) + error = ppb_request_bus(ppbus, dev, how); + if (error == 0) sc->sc_state |= HAVEBUS; - return (error); } @@ -216,9 +219,12 @@ lpt_release_ppbus(device_t dev) struct lpt_data *sc = DEVTOSOFTC(dev); int error = 0; - if ((error = ppb_release_bus(ppbus, dev)) == 0) - sc->sc_state &= ~HAVEBUS; - + ppb_assert_locked(ppbus); + if (sc->sc_state & HAVEBUS) { + error = ppb_release_bus(ppbus, dev); + if (error == 0) + sc->sc_state &= ~HAVEBUS; + } return (error); } @@ -306,24 +312,25 @@ lpt_detect(device_t dev) status = 1; /* assume success */ + ppb_lock(ppbus); if ((error = lpt_request_ppbus(dev, PPB_DONTWAIT))) { - printf(LPT_NAME ": cannot alloc ppbus (%d)!\n", error); - status = 0; - goto end_probe; + ppb_unlock(ppbus); + device_printf(dev, "cannot alloc ppbus (%d)!\n", error); + return (0); } for (i = 0; i < 18 && status; i++) if (!lpt_port_test(ppbus, testbyte[i], 0xff)) { status = 0; - goto end_probe; + break; } -end_probe: /* write 0's to control and data ports */ ppb_wdtr(ppbus, 0); ppb_wctr(ppbus, 0); lpt_release_ppbus(dev); + ppb_unlock(ppbus); return (status); } @@ -363,21 +370,33 @@ lpt_attach(device_t dev) int error; sc->sc_primed = 0; /* not primed yet */ + ppb_init_callout(ppbus, &sc->sc_timer, 0); + ppb_lock(ppbus); if ((error = lpt_request_ppbus(dev, PPB_DONTWAIT))) { - printf(LPT_NAME ": cannot alloc ppbus (%d)!\n", error); + ppb_unlock(ppbus); + device_printf(dev, "cannot alloc ppbus (%d)!\n", error); return (0); } ppb_wctr(ppbus, LPC_NINIT); - - /* check if we can use interrupt, should be done by ppc stuff */ - lprintf(("oldirq %x\n", sc->sc_irq)); + ppb_unlock(ppbus); + lpt_release_ppbus(dev); /* declare our interrupt handler */ - sc->intr_resource = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, + sc->sc_intr_resource = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_SHAREABLE); - if (sc->intr_resource) { + if (sc->sc_intr_resource) { + error = bus_setup_intr(dev, sc->sc_intr_resource, + INTR_TYPE_TTY | INTR_MPSAFE, NULL, lptintr, sc, + &sc->sc_intr_cookie); + if (error) { + bus_release_resource(dev, SYS_RES_IRQ, rid, + sc->sc_intr_resource); + device_printf(dev, + "Unable to register interrupt handler\n"); + return (error); + } sc->sc_irq = LP_HAS_IRQ | LP_USE_IRQ | LP_ENABLE_IRQ; device_printf(dev, "Interrupt-driven port\n"); } else { @@ -386,17 +405,17 @@ lpt_attach(device_t dev) } lprintf(("irq %x\n", sc->sc_irq)); - lpt_release_ppbus(dev); - - sc->dev = dev; - sc->cdev = make_dev(&lpt_cdevsw, unit, + sc->sc_inbuf = malloc(BUFSIZE, M_DEVBUF, M_WAITOK); + sc->sc_statbuf = malloc(BUFSTATSIZE, M_DEVBUF, M_WAITOK); + sc->sc_dev = dev; + sc->sc_cdev = make_dev(&lpt_cdevsw, unit, UID_ROOT, GID_WHEEL, 0600, LPT_NAME "%d", unit); - sc->cdev->si_drv1 = sc; - sc->cdev->si_drv2 = 0; - sc->cdev_bypass = make_dev(&lpt_cdevsw, unit, + sc->sc_cdev->si_drv1 = sc; + sc->sc_cdev->si_drv2 = 0; + sc->sc_cdev_bypass = make_dev(&lpt_cdevsw, unit, UID_ROOT, GID_WHEEL, 0600, LPT_NAME "%d.ctl", unit); - sc->cdev_bypass->si_drv1 = sc; - sc->cdev_bypass->si_drv2 = (void *)LP_BYPASS; + sc->sc_cdev_bypass->si_drv1 = sc; + sc->sc_cdev_bypass->si_drv2 = (void *)LP_BYPASS; return (0); } @@ -404,15 +423,21 @@ static int lpt_detach(device_t dev) { struct lpt_data *sc = DEVTOSOFTC(dev); + device_t ppbus = device_get_parent(dev); - destroy_dev(sc->cdev); - destroy_dev(sc->cdev_bypass); + destroy_dev(sc->sc_cdev); + destroy_dev(sc->sc_cdev_bypass); + ppb_lock(ppbus); lpt_release_ppbus(dev); - if (sc->intr_resource != 0) { - BUS_TEARDOWN_INTR(device_get_parent(dev), dev, - sc->intr_resource, sc->intr_cookie); - bus_release_resource(dev, SYS_RES_IRQ, 0, sc->intr_resource); + ppb_unlock(ppbus); + callout_drain(&sc->sc_timer); + if (sc->sc_intr_resource != NULL) { + bus_teardown_intr(dev, sc->sc_intr_resource, + sc->sc_intr_cookie); + bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_intr_resource); } + free(sc->sc_inbuf, M_DEVBUF); + free(sc->sc_statbuf, M_DEVBUF); return (0); } @@ -420,18 +445,17 @@ lpt_detach(device_t dev) static void lptout(void *arg) { - device_t dev = (device_t)arg; - struct lpt_data *sc = DEVTOSOFTC(dev); -#ifdef LPT_DEBUG + struct lpt_data *sc = arg; + device_t dev = sc->sc_dev; device_t ppbus = device_get_parent(dev); -#endif + ppb_assert_locked(ppbus); lprintf(("T %x ", ppb_rstr(ppbus))); if (sc->sc_state & OPEN) { sc->sc_backoff++; if (sc->sc_backoff > hz/LPTOUTMAX) sc->sc_backoff = sc->sc_backoff > hz/LPTOUTMAX; - timeout(lptout, (caddr_t)dev, sc->sc_backoff); + callout_reset(&sc->sc_timer, sc->sc_backoff, lptout, sc); } else sc->sc_state &= ~TOUT; @@ -442,7 +466,7 @@ lptout(void *arg) * Avoid possible hangs due to missed interrupts */ if (sc->sc_xfercnt) { - lptintr(dev); + lptintr(sc); } else { sc->sc_state &= ~OBUSY; wakeup(dev); @@ -458,17 +482,19 @@ lptout(void *arg) static int lptopen(struct cdev *dev, int flags, int fmt, struct thread *td) { - int s; int trys, err; struct lpt_data *sc = dev->si_drv1; - device_t lptdev = sc->dev; + device_t lptdev = sc->sc_dev; device_t ppbus = device_get_parent(lptdev); if (!sc) return (ENXIO); + ppb_lock(ppbus); if (sc->sc_state) { - lprintf((LPT_NAME ": still open %x\n", sc->sc_state)); + lprintf(("%s: still open %x\n", device_get_nameunit(lptdev), + sc->sc_state)); + ppb_unlock(ppbus); return(EBUSY); } else sc->sc_state |= LPTINIT; @@ -478,6 +504,7 @@ lptopen(struct cdev *dev, int flags, int /* Check for open with BYPASS flag set. */ if (sc->sc_flags & LP_BYPASS) { sc->sc_state = OPEN; + ppb_unlock(ppbus); return(0); } @@ -485,11 +512,12 @@ lptopen(struct cdev *dev, int flags, int if ((err = lpt_request_ppbus(lptdev, PPB_WAIT|PPB_INTR)) != 0) { /* give it a chance to try later */ sc->sc_state = 0; + ppb_unlock(ppbus); return (err); } - s = spltty(); - lprintf((LPT_NAME " flags 0x%x\n", sc->sc_flags)); + lprintf(("%s flags 0x%x\n", device_get_nameunit(lptdev), + sc->sc_flags)); /* set IRQ status according to ENABLE_IRQ flag */ @@ -514,21 +542,21 @@ lptopen(struct cdev *dev, int flags, int do { /* ran out of waiting for the printer */ if (trys++ >= LPINITRDY*4) { - splx(s); sc->sc_state = 0; lprintf(("status %x\n", ppb_rstr(ppbus))); lpt_release_ppbus(lptdev); + ppb_unlock(ppbus); return (EBUSY); } /* wait 1/4 second, give up if we get a signal */ - if (tsleep(lptdev, LPPRI|PCATCH, "lptinit", hz/4) != - EWOULDBLOCK) { + if (ppb_sleep(ppbus, lptdev, LPPRI | PCATCH, "lptinit", + hz / 4) != EWOULDBLOCK) { sc->sc_state = 0; - splx(s); lpt_release_ppbus(lptdev); + ppb_unlock(ppbus); return (EBUSY); } @@ -548,22 +576,20 @@ lptopen(struct cdev *dev, int flags, int ppb_wctr(ppbus, sc->sc_control); sc->sc_state = OPEN; - sc->sc_inbuf = malloc(BUFSIZE, M_DEVBUF, M_WAITOK); - sc->sc_statbuf = malloc(BUFSTATSIZE, M_DEVBUF, M_WAITOK); sc->sc_xfercnt = 0; - splx(s); - - /* release the ppbus */ - lpt_release_ppbus(lptdev); /* only use timeout if using interrupt */ lprintf(("irq %x\n", sc->sc_irq)); if (sc->sc_irq & LP_USE_IRQ) { sc->sc_state |= TOUT; - timeout(lptout, (caddr_t)lptdev, - (sc->sc_backoff = hz/LPTOUTINITIAL)); + sc->sc_backoff = hz / LPTOUTINITIAL; + callout_reset(&sc->sc_timer, sc->sc_backoff, lptout, sc); } + /* release the ppbus */ + lpt_release_ppbus(lptdev); + ppb_unlock(ppbus); + lprintf(("opened.\n")); return(0); } @@ -578,17 +604,21 @@ static int lptclose(struct cdev *dev, int flags, int fmt, struct thread *td) { struct lpt_data *sc = dev->si_drv1; - device_t lptdev = sc->dev; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-all@FreeBSD.ORG Wed Jan 21 23:10:43 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C9FE10656C5; Wed, 21 Jan 2009 23:10:43 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 611F18FC1A; Wed, 21 Jan 2009 23:10:43 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0LNAhTK093992; Wed, 21 Jan 2009 23:10:43 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0LNAhoS093991; Wed, 21 Jan 2009 23:10:43 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200901212310.n0LNAhoS093991@svn.freebsd.org> From: Nick Hibma Date: Wed, 21 Jan 2009 23:10:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187577 - stable/7/sys/dev/usb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2009 23:10:44 -0000 Author: n_hibma Date: Wed Jan 21 23:10:43 2009 New Revision: 187577 URL: http://svn.freebsd.org/changeset/base/187577 Log: Sync this file with HEAD r183874. - Remove a redundant MOD_LOAD function - Reduce the attach priority for the attach function to give other drivers, like the to be committed u3g driver a better chance at attaching to the 3G devices with a ZeroCD / TruInstall mass storage device. Modified: stable/7/sys/dev/usb/umass.c Modified: stable/7/sys/dev/usb/umass.c ============================================================================== --- stable/7/sys/dev/usb/umass.c Wed Jan 21 23:10:06 2009 (r187576) +++ stable/7/sys/dev/usb/umass.c Wed Jan 21 23:10:43 2009 (r187577) @@ -574,6 +574,10 @@ static struct umass_devdescr_t umass_dev UMASS_PROTO_SCSI | UMASS_PROTO_BBB, NO_INQUIRY }, + { USB_VENDOR_NETAC, USB_PRODUCT_NETAC_ONLYDISK, RID_WILDCARD, + UMASS_PROTO_SCSI | UMASS_PROTO_BBB, + IGNORE_RESIDUE + }, { USB_VENDOR_NETCHIP, USB_PRODUCT_NETCHIP_CLIK_40, RID_WILDCARD, UMASS_PROTO_ATAPI, NO_INQUIRY @@ -606,6 +610,10 @@ static struct umass_devdescr_t umass_dev UMASS_PROTO_SCSI, NO_QUIRKS }, + { USB_VENDOR_ONSPEC, USB_PRODUCT_ONSPEC_SDS_HOTFIND_D, RID_WILDCARD, + UMASS_PROTO_SCSI | UMASS_PROTO_BBB, + NO_GETMAXLUN | NO_SYNCHRONIZE_CACHE + }, { USB_VENDOR_ONSPEC, USB_PRODUCT_ONSPEC_MDCFE_B_CF_READER, RID_WILDCARD, UMASS_PROTO_SCSI, NO_QUIRKS @@ -1264,7 +1272,7 @@ umass_match_proto(struct umass_softc *sc return(UMATCH_NONE); } - return(UMATCH_DEVCLASS_DEVSUBCLASS_DEVPROTO); + return(UMATCH_IFACECLASS_IFACESUBCLASS_IFACEPROTO); } static int @@ -1276,6 +1284,7 @@ umass_match(device_t self) sc->sc_dev = self; if (uaa->iface == NULL) return(UMATCH_NONE); + return(umass_match_proto(sc, uaa->iface, uaa->device)); } @@ -3276,17 +3285,6 @@ umass_cam_quirk_cb(struct umass_softc *s xpt_done(ccb); } -static int -umass_driver_load(module_t mod, int what, void *arg) -{ - switch (what) { - case MOD_UNLOAD: - case MOD_LOAD: - default: - return(usbd_driver_load(mod, what, arg)); - } -} - /* * SCSI specific functions */ @@ -3526,7 +3524,7 @@ umass_atapi_transform(struct umass_softc /* (even the comment is missing) */ -DRIVER_MODULE(umass, uhub, umass_driver, umass_devclass, umass_driver_load, 0); +DRIVER_MODULE(umass, uhub, umass_driver, umass_devclass, usbd_driver_load, 0); From owner-svn-src-all@FreeBSD.ORG Thu Jan 22 05:05:57 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CEC6106564A; Thu, 22 Jan 2009 05:05:57 +0000 (UTC) (envelope-from takawata@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EFB318FC16; Thu, 22 Jan 2009 05:05:56 +0000 (UTC) (envelope-from takawata@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0M55uOC001379; Thu, 22 Jan 2009 05:05:56 GMT (envelope-from takawata@svn.freebsd.org) Received: (from takawata@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0M55uoP001378; Thu, 22 Jan 2009 05:05:56 GMT (envelope-from takawata@svn.freebsd.org) Message-Id: <200901220505.n0M55uoP001378@svn.freebsd.org> From: Takanori Watanabe Date: Thu, 22 Jan 2009 05:05:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187579 - head/sys/dev/usb2/serial X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2009 05:05:57 -0000 Author: takawata Date: Thu Jan 22 05:05:56 2009 New Revision: 187579 URL: http://svn.freebsd.org/changeset/base/187579 Log: Rename sc_is_pseudo to sc_nobulk member in ufoma_softc. That was pseudo ucom because it used home brew tty interface. Now, it is integrated to usb serial framework, so it is not pseudo ucom any more. Modified: head/sys/dev/usb2/serial/ufoma2.c Modified: head/sys/dev/usb2/serial/ufoma2.c ============================================================================== --- head/sys/dev/usb2/serial/ufoma2.c Thu Jan 22 04:24:15 2009 (r187578) +++ head/sys/dev/usb2/serial/ufoma2.c Thu Jan 22 05:05:56 2009 (r187579) @@ -175,7 +175,7 @@ struct ufoma_softc { uint16_t sc_line; uint8_t sc_num_msg; - uint8_t sc_is_pseudo; + uint8_t sc_nobulk; uint8_t sc_ctrl_iface_no; uint8_t sc_ctrl_iface_index; uint8_t sc_data_iface_no; @@ -449,9 +449,9 @@ ufoma_attach(device_t dev) } if ((mad->bType == UMCPC_ACM_TYPE_AB5) || (mad->bType == UMCPC_ACM_TYPE_AB6)) { - sc->sc_is_pseudo = 1; + sc->sc_nobulk = 1; } else { - sc->sc_is_pseudo = 0; + sc->sc_nobulk = 0; if (ufoma_modem_setup(dev, sc, uaa)) { goto detach; } @@ -764,7 +764,7 @@ ufoma_intr_callback(struct usb2_xfer *xf } switch (pkt.bNotification) { case UCDC_N_RESPONSE_AVAILABLE: - if (!(sc->sc_is_pseudo)) { + if (!(sc->sc_nobulk)) { DPRINTF("Wrong serial state!\n"); break; } @@ -775,7 +775,7 @@ ufoma_intr_callback(struct usb2_xfer *xf break; case UCDC_N_SERIAL_STATE: - if (sc->sc_is_pseudo) { + if (sc->sc_nobulk) { DPRINTF("Wrong serial state!\n"); break; } @@ -952,7 +952,7 @@ ufoma_cfg_set_break(struct usb2_com_soft struct usb2_device_request req; uint16_t wValue; - if (sc->sc_is_pseudo || + if (sc->sc_nobulk || (sc->sc_currentmode == UMCPC_ACM_MODE_OBEX)) { return; } @@ -1004,7 +1004,7 @@ ufoma_cfg_set_dtr(struct usb2_com_softc { struct ufoma_softc *sc = ucom->sc_parent; - if (sc->sc_is_pseudo) { + if (sc->sc_nobulk) { return; } if (onoff) @@ -1020,7 +1020,7 @@ ufoma_cfg_set_rts(struct usb2_com_softc { struct ufoma_softc *sc = ucom->sc_parent; - if (sc->sc_is_pseudo) { + if (sc->sc_nobulk) { return; } if (onoff) @@ -1044,7 +1044,7 @@ ufoma_cfg_param(struct usb2_com_softc *u struct usb2_device_request req; struct usb2_cdc_line_state ls; - if (sc->sc_is_pseudo || + if (sc->sc_nobulk || (sc->sc_currentmode == UMCPC_ACM_MODE_OBEX)) { return; } @@ -1175,7 +1175,7 @@ ufoma_start_read(struct usb2_com_softc * usb2_transfer_start(sc->sc_ctrl_xfer[UFOMA_CTRL_ENDPT_INTR]); /* start data transfer */ - if (sc->sc_is_pseudo) { + if (sc->sc_nobulk) { usb2_transfer_start(sc->sc_ctrl_xfer[UFOMA_CTRL_ENDPT_READ]); } else { usb2_transfer_start(sc->sc_bulk_xfer[UFOMA_BULK_ENDPT_READ]); @@ -1192,7 +1192,7 @@ ufoma_stop_read(struct usb2_com_softc *u usb2_transfer_stop(sc->sc_ctrl_xfer[UFOMA_CTRL_ENDPT_INTR_CLEAR]); /* stop data transfer */ - if (sc->sc_is_pseudo) { + if (sc->sc_nobulk) { usb2_transfer_stop(sc->sc_ctrl_xfer[UFOMA_CTRL_ENDPT_READ]); } else { usb2_transfer_stop(sc->sc_bulk_xfer[UFOMA_BULK_ENDPT_READ_CLEAR]); @@ -1205,7 +1205,7 @@ ufoma_start_write(struct usb2_com_softc { struct ufoma_softc *sc = ucom->sc_parent; - if (sc->sc_is_pseudo) { + if (sc->sc_nobulk) { usb2_transfer_start(sc->sc_ctrl_xfer[UFOMA_CTRL_ENDPT_WRITE]); } else { usb2_transfer_start(sc->sc_bulk_xfer[UFOMA_BULK_ENDPT_WRITE]); @@ -1217,7 +1217,7 @@ ufoma_stop_write(struct usb2_com_softc * { struct ufoma_softc *sc = ucom->sc_parent; - if (sc->sc_is_pseudo) { + if (sc->sc_nobulk) { usb2_transfer_stop(sc->sc_ctrl_xfer[UFOMA_CTRL_ENDPT_WRITE]); } else { usb2_transfer_stop(sc->sc_bulk_xfer[UFOMA_BULK_ENDPT_WRITE_CLEAR]); From owner-svn-src-all@FreeBSD.ORG Thu Jan 22 06:21:30 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FF471065686; Thu, 22 Jan 2009 06:21:30 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7E7A48FC17; Thu, 22 Jan 2009 06:21:30 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0M6LUau002746; Thu, 22 Jan 2009 06:21:30 GMT (envelope-from jeff@svn.freebsd.org) Received: (from jeff@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0M6LU5v002745; Thu, 22 Jan 2009 06:21:30 GMT (envelope-from jeff@svn.freebsd.org) Message-Id: <200901220621.n0M6LU5v002745@svn.freebsd.org> From: Jeff Roberson Date: Thu, 22 Jan 2009 06:21:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187580 - head/tools/sched X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2009 06:21:31 -0000 Author: jeff Date: Thu Jan 22 06:21:30 2009 New Revision: 187580 URL: http://svn.freebsd.org/changeset/base/187580 Log: - Update my copyright. - Print human readable time as a float with two digits of precision. Use ns now as well since clock periods are well into the hundreds of picoseconds now. - Show the average duration in the stats frame. This is often more useful than total duration. Modified: head/tools/sched/schedgraph.py Modified: head/tools/sched/schedgraph.py ============================================================================== --- head/tools/sched/schedgraph.py Thu Jan 22 05:05:56 2009 (r187579) +++ head/tools/sched/schedgraph.py Thu Jan 22 06:21:30 2009 (r187580) @@ -1,6 +1,6 @@ #!/usr/local/bin/python -# Copyright (c) 2002-2003, Jeffrey Roberson +# Copyright (c) 2002-2003, 2009, Jeffrey Roberson # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -149,15 +149,19 @@ class Colormap: return (color) def ticks2sec(ticks): - us = ticksps / 1000000 - ticks /= us + ticks = float(ticks) + ns = float(ticksps) / 1000000000 + ticks /= ns if (ticks < 1000): - return (str(ticks) + "us") + return ("%.2fns" % ticks) ticks /= 1000 if (ticks < 1000): - return (str(ticks) + "ms") + return ("%.2fus" % ticks) ticks /= 1000 - return (str(ticks) + "s") + if (ticks < 1000): + return ("%.2fms" % ticks) + ticks /= 1000 + return ("%.2fs" % ticks) class Scaler(Frame): def __init__(self, master, target): @@ -443,7 +447,7 @@ class SourceStats(Toplevel): self.resizable(0, 0) self.title(source.name + " statistics") self.evframe = LabelFrame(self, - text="Event Frequency and Duration") + text="Event Count, Duration, Avg Duration") self.evframe.grid(row=0, column=0, sticky=E+W) eventtypes={} for event in self.source.events: @@ -466,15 +470,22 @@ class SourceStats(Toplevel): ypos = 0 for event in events: (name, c, d) = event - l = Label(self.evframe, text=name, bd=1, - relief=SUNKEN, anchor=W, width=30) - m = Label(self.evframe, text=str(c), bd=1, - relief=SUNKEN, anchor=W, width=10) - r = Label(self.evframe, text=ticks2sec(d), - bd=1, relief=SUNKEN, width=10) - l.grid(row=ypos, column=0, sticky=E+W) - m.grid(row=ypos, column=1, sticky=E+W) - r.grid(row=ypos, column=2, sticky=E+W) + Label(self.evframe, text=name, bd=1, + relief=SUNKEN, anchor=W, width=30).grid( + row=ypos, column=0, sticky=W+E) + Label(self.evframe, text=str(c), bd=1, + relief=SUNKEN, anchor=W, width=10).grid( + row=ypos, column=1, sticky=W+E) + Label(self.evframe, text=ticks2sec(d), + bd=1, relief=SUNKEN, width=10).grid( + row=ypos, column=2, sticky=W+E) + if (d and c): + d /= c + else: + d = 0 + Label(self.evframe, text=ticks2sec(d), + bd=1, relief=SUNKEN, width=10).grid( + row=ypos, column=3, sticky=W+E) ypos += 1 From owner-svn-src-all@FreeBSD.ORG Thu Jan 22 07:13:07 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78E631065672 for ; Thu, 22 Jan 2009 07:13:07 +0000 (UTC) (envelope-from jroberson@jroberson.net) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.178]) by mx1.freebsd.org (Postfix) with ESMTP id 558908FC0C for ; Thu, 22 Jan 2009 07:13:07 +0000 (UTC) (envelope-from jroberson@jroberson.net) Received: by wa-out-1112.google.com with SMTP id m34so2281455wag.27 for ; Wed, 21 Jan 2009 23:13:07 -0800 (PST) Received: by 10.115.32.8 with SMTP id k8mr150251waj.54.1232607100897; Wed, 21 Jan 2009 22:51:40 -0800 (PST) Received: from ?10.0.1.199? (udp005586uds.hawaiiantel.net [72.234.105.237]) by mx.google.com with ESMTPS id m28sm12132947poh.11.2009.01.21.22.51.36 (version=SSLv3 cipher=RC4-MD5); Wed, 21 Jan 2009 22:51:38 -0800 (PST) Date: Wed, 21 Jan 2009 20:48:43 -1000 (HST) From: Jeff Roberson X-X-Sender: jroberson@desktop To: John Baldwin In-Reply-To: <200901212310.n0LNA6cM093944@svn.freebsd.org> Message-ID: <20090121204615.H983@desktop> References: <200901212310.n0LNA6cM093944@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r187576 - in head/sys/dev: ppbus ppc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2009 07:13:07 -0000 On Wed, 21 Jan 2009, John Baldwin wrote: > Author: jhb > Date: Wed Jan 21 23:10:06 2009 > New Revision: 187576 > URL: http://svn.freebsd.org/changeset/base/187576 > > Log: > Add locking to ppc and ppbus and mark the whole lot MPSAFE: Looks like there might be some kinks still: ppc0: port 0x378-0x37f,0x778-0x77f irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/9 bytes threshold ppc0: [ITHREAD] ppbus0: on ppc0 panic: mutex ppc0 not owned at ../../../dev/ppc/ppc.c:1983 cpuid = 0 KDB: enter: panic [thread pid 0 tid 100000 ] Stopped at kdb_enter+0x3d: movq $0,0x652ea8(%rip) _mtx_assert() at _mtx_assert+0xdc ppc_write_ivar() at ppc_write_ivar+0x6e ppbus_attach() at ppbus_attach+0x14b Thanks, Jeff > - To avoid having a bunch of locks that end up always getting acquired as > a group, give each ppc(4) device a mutex which it shares with all the > child devices including ppbus(4), lpt(4), plip(4), etc. This mutex > is then used for all the locking. > - Rework the interrupt handling stuff yet again. Now ppbus drivers setup > their interrupt handler during attach and tear it down during detach > like most other drivers. ppbus(4) only invokes the interrupt handler > of the device that currently owns the bus (if any) when an interrupt > occurs, however. Also, interrupt handlers in general now accept their > softc pointers as their argument rather than the device_t. Another > feature of the ppbus interrupt handlers is that they are called with > the parent ppc device's lock already held. This minimizes the number > of lock operations during an interrupt. > - Mark plip(4), lpt(4), pcfclock(4), ppi(4), vpo(4) MPSAFE. > - lpbb(4) uses the ppc lock instead of Giant. > - Other plip(4) changes: > - Add a mutex to protect the global tables in plip(4) and free them on > module unload. > - Add a detach routine. > - Split out the init/stop code from the ioctl routine into separate > functions. > - Other lpt(4) changes: > - Use device_printf(). > - Use a dedicated callout for the lptout timer. > - Allocate the I/O buffers at attach and detach rather than during > open and close as this simplifies the locking at the cost of > 1024+32 bytes when the driver is attached. > - Other ppi(4) changes: > - Use an sx lock to serialize open and close. > - Remove unused HADBUS flag. > - Add a detach routine. > - Use a malloc'd buffer for each read and write to avoid races with > concurrent read/write. > - Other pps(4) changes: > - Use a callout rather than a callout handle with timeout(). > - Conform to the new ppbus requirements (regular mutex, non-filter > interrupt handler). pps(4) is probably going to have to become a > standalone driver that doesn't use ppbus(4) to satisfy it's > requirements for low latency as a result. > - Use an sx lock to serialize open and close. > - Other vpo(4) changes: > - Use the parent ppc device's lock to create the CAM sim instead of > Giant. > - Other ppc(4) changes: > - Fix ppc_isa's detach method to detach instead of calling attach. > > Tested by: no one :-( > > Modified: > head/sys/dev/ppbus/if_plip.c > head/sys/dev/ppbus/immio.c > head/sys/dev/ppbus/lpbb.c > head/sys/dev/ppbus/lpt.c > head/sys/dev/ppbus/pcfclock.c > head/sys/dev/ppbus/ppb_1284.c > head/sys/dev/ppbus/ppb_base.c > head/sys/dev/ppbus/ppb_msq.c > head/sys/dev/ppbus/ppbconf.c > head/sys/dev/ppbus/ppbconf.h > head/sys/dev/ppbus/ppi.c > head/sys/dev/ppbus/pps.c > head/sys/dev/ppbus/vpo.c > head/sys/dev/ppbus/vpoio.c > head/sys/dev/ppc/ppc.c > head/sys/dev/ppc/ppc_acpi.c > head/sys/dev/ppc/ppc_isa.c > head/sys/dev/ppc/ppc_pci.c > head/sys/dev/ppc/ppc_puc.c > head/sys/dev/ppc/ppcreg.h > head/sys/dev/ppc/ppcvar.h > > Modified: head/sys/dev/ppbus/if_plip.c > ============================================================================== > --- head/sys/dev/ppbus/if_plip.c Wed Jan 21 21:48:46 2009 (r187575) > +++ head/sys/dev/ppbus/if_plip.c Wed Jan 21 23:10:06 2009 (r187576) > @@ -152,8 +152,12 @@ struct lp_data { > int sc_iferrs; > > struct resource *res_irq; > + void *sc_intr_cookie; > }; > > +static struct mtx lp_tables_lock; > +MTX_SYSINIT(lp_tables, &lp_tables_lock, "plip tables", MTX_DEF); > + > /* Tables for the lp# interface */ > static u_char *txmith; > #define txmitl (txmith + (1 * LPIPTBLSIZE)) > @@ -170,13 +174,41 @@ static int lpinittables(void); > static int lpioctl(struct ifnet *, u_long, caddr_t); > static int lpoutput(struct ifnet *, struct mbuf *, struct sockaddr *, > struct rtentry *); > +static void lpstop(struct lp_data *); > static void lp_intr(void *); > +static int lp_module_handler(module_t, int, void *); > > #define DEVTOSOFTC(dev) \ > ((struct lp_data *)device_get_softc(dev)) > > static devclass_t lp_devclass; > > +static int > +lp_module_handler(module_t mod, int what, void *arg) > +{ > + > + switch (what) { > + case MOD_UNLOAD: > + mtx_lock(&lp_tables_lock); > + if (txmith != NULL) { > + free(txmith, M_DEVBUF); > + txmith = NULL; > + } > + if (ctxmith != NULL) { > + free(ctxmith, M_DEVBUF); > + ctxmith = NULL; > + } > + mtx_unlock(&lp_tables_lock); > + break; > + case MOD_LOAD: > + case MOD_QUIESCE: > + break; > + default: > + return (EOPNOTSUPP); > + } > + return (0); > +} > + > static void > lp_identify(driver_t *driver, device_t parent) > { > @@ -201,7 +233,7 @@ lp_attach(device_t dev) > { > struct lp_data *lp = DEVTOSOFTC(dev); > struct ifnet *ifp; > - int rid = 0; > + int error, rid = 0; > > lp->sc_dev = dev; > > @@ -224,8 +256,7 @@ lp_attach(device_t dev) > ifp->if_softc = lp; > if_initname(ifp, device_get_name(dev), device_get_unit(dev)); > ifp->if_mtu = LPMTU; > - ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST | > - IFF_NEEDSGIANT; > + ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST; > ifp->if_ioctl = lpioctl; > ifp->if_output = lpoutput; > ifp->if_hdrlen = 0; > @@ -235,8 +266,39 @@ lp_attach(device_t dev) > > bpfattach(ifp, DLT_NULL, sizeof(u_int32_t)); > > + /* > + * Attach our interrupt handler. It is only called while we > + * own the ppbus. > + */ > + error = bus_setup_intr(dev, lp->res_irq, INTR_TYPE_NET | INTR_MPSAFE, > + NULL, lp_intr, lp, &lp->sc_intr_cookie); > + if (error) { > + bpfdetach(ifp); > + if_detach(ifp); > + bus_release_resource(dev, SYS_RES_IRQ, 0, lp->res_irq); > + device_printf(dev, "Unable to register interrupt handler\n"); > + return (error); > + } > + > return (0); > } > + > +static int > +lp_detach(device_t dev) > +{ > + struct lp_data *sc = device_get_softc(dev); > + device_t ppbus = device_get_parent(dev); > + > + ppb_lock(ppbus); > + lpstop(sc); > + ppb_unlock(ppbus); > + bpfdetach(sc->sc_ifp); > + if_detach(sc->sc_ifp); > + bus_teardown_intr(dev, sc->res_irq, sc->sc_intr_cookie); > + bus_release_resource(dev, SYS_RES_IRQ, 0, sc->res_irq); > + return (0); > +} > + > /* > * Build the translation tables for the LPIP (BSD unix) protocol. > * We don't want to calculate these nasties in our tight loop, so we > @@ -247,17 +309,22 @@ lpinittables(void) > { > int i; > > + mtx_lock(&lp_tables_lock); > if (txmith == NULL) > txmith = malloc(4 * LPIPTBLSIZE, M_DEVBUF, M_NOWAIT); > > - if (txmith == NULL) > + if (txmith == NULL) { > + mtx_unlock(&lp_tables_lock); > return (1); > + } > > if (ctxmith == NULL) > ctxmith = malloc(4 * LPIPTBLSIZE, M_DEVBUF, M_NOWAIT); > > - if (ctxmith == NULL) > + if (ctxmith == NULL) { > + mtx_unlock(&lp_tables_lock); > return (1); > + } > > for (i = 0; i < LPIPTBLSIZE; i++) { > ctxmith[i] = (i & 0xF0) >> 4; > @@ -272,10 +339,61 @@ lpinittables(void) > trecvh[i] = ((~i) & 0x80) | ((i & 0x38) << 1); > trecvl[i] = (((~i) & 0x80) >> 4) | ((i & 0x38) >> 3); > } > + mtx_unlock(&lp_tables_lock); > > return (0); > } > > +static void > +lpstop(struct lp_data *sc) > +{ > + device_t ppbus = device_get_parent(sc->sc_dev); > + > + ppb_assert_locked(ppbus); > + ppb_wctr(ppbus, 0x00); > + sc->sc_ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE); > + free(sc->sc_ifbuf, M_DEVBUF); > + sc->sc_ifbuf = NULL; > + > + /* IFF_UP is not set, try to release the bus anyway */ > + ppb_release_bus(ppbus, sc->sc_dev); > +} > + > +static int > +lpinit_locked(struct ifnet *ifp) > +{ > + struct lp_data *sc = ifp->if_softc; > + device_t dev = sc->sc_dev; > + device_t ppbus = device_get_parent(dev); > + int error; > + > + ppb_assert_locked(ppbus); > + error = ppb_request_bus(ppbus, dev, PPB_DONTWAIT); > + if (error) > + return (error); > + > + /* Now IFF_UP means that we own the bus */ > + ppb_set_mode(ppbus, PPB_COMPATIBLE); > + > + if (lpinittables()) { > + ppb_release_bus(ppbus, dev); > + return (ENOBUFS); > + } > + > + sc->sc_ifbuf = malloc(sc->sc_ifp->if_mtu + MLPIPHDRLEN, > + M_DEVBUF, M_NOWAIT); > + if (sc->sc_ifbuf == NULL) { > + ppb_release_bus(ppbus, dev); > + return (ENOBUFS); > + } > + > + ppb_wctr(ppbus, IRQENABLE); > + > + ifp->if_drv_flags |= IFF_DRV_RUNNING; > + ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; > + return (0); > +} > + > /* > * Process an ioctl request. > */ > @@ -288,7 +406,6 @@ lpioctl(struct ifnet *ifp, u_long cmd, c > struct ifaddr *ifa = (struct ifaddr *)data; > struct ifreq *ifr = (struct ifreq *)data; > u_char *ptr; > - void *ih; > int error; > > switch (cmd) { > @@ -301,67 +418,32 @@ lpioctl(struct ifnet *ifp, u_long cmd, c > ifp->if_flags |= IFF_UP; > /* FALLTHROUGH */ > case SIOCSIFFLAGS: > + error = 0; > + ppb_lock(ppbus); > if ((!(ifp->if_flags & IFF_UP)) && > - (ifp->if_drv_flags & IFF_DRV_RUNNING)) { > - > - ppb_wctr(ppbus, 0x00); > - ifp->if_drv_flags &= ~IFF_DRV_RUNNING; > - > - /* IFF_UP is not set, try to release the bus anyway */ > - ppb_release_bus(ppbus, dev); > - break; > - } > - if (((ifp->if_flags & IFF_UP)) && > - (!(ifp->if_drv_flags & IFF_DRV_RUNNING))) { > - > - /* XXX > - * Should the request be interruptible? > - */ > - if ((error = ppb_request_bus(ppbus, dev, PPB_WAIT | > - PPB_INTR))) > - return (error); > + (ifp->if_drv_flags & IFF_DRV_RUNNING)) > + lpstop(sc); > + else if (((ifp->if_flags & IFF_UP)) && > + (!(ifp->if_drv_flags & IFF_DRV_RUNNING))) > + error = lpinit_locked(ifp); > + ppb_unlock(ppbus); > + return (error); > > - /* Now IFF_UP means that we own the bus */ > - ppb_set_mode(ppbus, PPB_COMPATIBLE); > - > - if (lpinittables()) { > - ppb_release_bus(ppbus, dev); > - return (ENOBUFS); > - } > - > - sc->sc_ifbuf = malloc(sc->sc_ifp->if_mtu + MLPIPHDRLEN, > - M_DEVBUF, M_WAITOK); > - if (sc->sc_ifbuf == NULL) { > - ppb_release_bus(ppbus, dev); > + case SIOCSIFMTU: > + ppb_lock(ppbus); > + if (ifp->if_drv_flags & IFF_DRV_RUNNING) { > + ptr = malloc(ifr->ifr_mtu + MLPIPHDRLEN, M_DEVBUF, > + M_NOWAIT); > + if (ptr == NULL) { > + ppb_unlock(ppbus); > return (ENOBUFS); > } > - > - /* > - * Attach our interrupt handler. It is > - * detached later when the bus is released. > - */ > - if ((error = bus_setup_intr(dev, sc->res_irq, > - INTR_TYPE_NET, NULL, lp_intr, dev, &ih))) { > - ppb_release_bus(ppbus, dev); > - return (error); > - } > - > - ppb_wctr(ppbus, IRQENABLE); > - ifp->if_drv_flags |= IFF_DRV_RUNNING; > - } > - break; > - > - case SIOCSIFMTU: > - ptr = sc->sc_ifbuf; > - sc->sc_ifbuf = malloc(ifr->ifr_mtu + MLPIPHDRLEN, M_DEVBUF, > - M_NOWAIT); > - if (sc->sc_ifbuf == NULL) { > + if (sc->sc_ifbuf) > + free(sc->sc_ifbuf, M_DEVBUF); > sc->sc_ifbuf = ptr; > - return (ENOBUFS); > } > - if (ptr) > - free(ptr, M_DEVBUF); > sc->sc_ifp->if_mtu = ifr->ifr_mtu; > + ppb_unlock(ppbus); > break; > > case SIOCGIFMTU: > @@ -417,14 +499,14 @@ clpinbyte(int spin, device_t ppbus) > { > u_char c, cl; > > - while((ppb_rstr(ppbus) & CLPIP_SHAKE)) > + while ((ppb_rstr(ppbus) & CLPIP_SHAKE)) > if (!--spin) { > return (-1); > } > cl = ppb_rstr(ppbus); > ppb_wdtr(ppbus, 0x10); > > - while(!(ppb_rstr(ppbus) & CLPIP_SHAKE)) > + while (!(ppb_rstr(ppbus) & CLPIP_SHAKE)) > if (!--spin) { > return (-1); > } > @@ -445,16 +527,14 @@ lptap(struct ifnet *ifp, struct mbuf *m) > static void > lp_intr(void *arg) > { > - device_t dev = (device_t)arg; > - device_t ppbus = device_get_parent(dev); > - struct lp_data *sc = DEVTOSOFTC(dev); > - int len, s, j; > + struct lp_data *sc = arg; > + device_t ppbus = device_get_parent(sc->sc_dev); > + int len, j; > u_char *bp; > u_char c, cl; > struct mbuf *top; > > - s = splhigh(); > - > + ppb_assert_locked(ppbus); > if (sc->sc_ifp->if_flags & IFF_LINK0) { > > /* Ack. the request */ > @@ -500,13 +580,15 @@ lp_intr(void *arg) > top = m_devget(sc->sc_ifbuf + CLPIPHDRLEN, len, 0, sc->sc_ifp, > 0); > if (top) { > + ppb_unlock(ppbus); > if (bpf_peers_present(sc->sc_ifp->if_bpf)) > lptap(sc->sc_ifp, top); > > /* mbuf is free'd on failure. */ > netisr_queue(NETISR_IP, top); > + ppb_lock(ppbus); > } > - goto done; > + return; > } > while ((ppb_rstr(ppbus) & LPIP_SHAKE)) { > len = sc->sc_ifp->if_mtu + LPIPHDRLEN; > @@ -517,7 +599,7 @@ lp_intr(void *arg) > ppb_wdtr(ppbus, 8); > > j = LPMAXSPIN2; > - while((ppb_rstr(ppbus) & LPIP_SHAKE)) > + while ((ppb_rstr(ppbus) & LPIP_SHAKE)) > if (!--j) > goto err; > > @@ -550,14 +632,16 @@ lp_intr(void *arg) > top = m_devget(sc->sc_ifbuf + LPIPHDRLEN, len, 0, sc->sc_ifp, > 0); > if (top) { > + ppb_unlock(ppbus); > if (bpf_peers_present(sc->sc_ifp->if_bpf)) > lptap(sc->sc_ifp, top); > > /* mbuf is free'd on failure. */ > netisr_queue(NETISR_IP, top); > + ppb_lock(ppbus); > } > } > - goto done; > + return; > > err: > ppb_wdtr(ppbus, 0); > @@ -575,9 +659,6 @@ err: > sc->sc_ifp->if_drv_flags &= ~IFF_DRV_RUNNING; > sc->sc_iferrs = 0; > } > - > -done: > - splx(s); > } > > static __inline int > @@ -602,7 +683,7 @@ lpoutput(struct ifnet *ifp, struct mbuf > struct lp_data *sc = ifp->if_softc; > device_t dev = sc->sc_dev; > device_t ppbus = device_get_parent(dev); > - int s, err; > + int err; > struct mbuf *mm; > u_char *cp = "\0\0"; > u_char chksum = 0; > @@ -611,19 +692,18 @@ lpoutput(struct ifnet *ifp, struct mbuf > > /* We need a sensible value if we abort */ > cp++; > - ifp->if_drv_flags |= IFF_DRV_RUNNING; > + ppb_lock(ppbus); > + ifp->if_drv_flags |= IFF_DRV_OACTIVE; > > err = 1; /* assume we're aborting because of an error */ > > - s = splhigh(); > - > /* Suspend (on laptops) or receive-errors might have taken us offline */ > ppb_wctr(ppbus, IRQENABLE); > > if (ifp->if_flags & IFF_LINK0) { > if (!(ppb_rstr(ppbus) & CLPIP_SHAKE)) { > lprintf("&"); > - lp_intr(dev); > + lp_intr(sc); > } > > /* Alert other end to pending packet */ > @@ -681,6 +761,7 @@ lpoutput(struct ifnet *ifp, struct mbuf > err = 0; /* No errors */ > > nend: > + ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; > if (err) { /* if we didn't timeout... */ > ifp->if_oerrors++; > lprintf("X"); > @@ -695,15 +776,15 @@ lpoutput(struct ifnet *ifp, struct mbuf > > if (!(ppb_rstr(ppbus) & CLPIP_SHAKE)) { > lprintf("^"); > - lp_intr(dev); > + lp_intr(sc); > } > - (void) splx(s); > + ppb_unlock(ppbus); > return (0); > } > > if (ppb_rstr(ppbus) & LPIP_SHAKE) { > lprintf("&"); > - lp_intr(dev); > + lp_intr(sc); > } > > if (lpoutbyte(0x08, LPMAXSPIN1, ppbus)) > @@ -726,6 +807,7 @@ end: > --cp; > ppb_wdtr(ppbus, txmitl[*cp] ^ 0x17); > > + ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; > if (err) { /* if we didn't timeout... */ > ifp->if_oerrors++; > lprintf("X"); > @@ -740,10 +822,10 @@ end: > > if (ppb_rstr(ppbus) & LPIP_SHAKE) { > lprintf("^"); > - lp_intr(dev); > + lp_intr(sc); > } > > - (void) splx(s); > + ppb_unlock(ppbus); > return (0); > } > > @@ -752,6 +834,7 @@ static device_method_t lp_methods[] = { > DEVMETHOD(device_identify, lp_identify), > DEVMETHOD(device_probe, lp_probe), > DEVMETHOD(device_attach, lp_attach), > + DEVMETHOD(device_detach, lp_detach), > > { 0, 0 } > }; > @@ -762,5 +845,5 @@ static driver_t lp_driver = { > sizeof(struct lp_data), > }; > > -DRIVER_MODULE(plip, ppbus, lp_driver, lp_devclass, 0, 0); > +DRIVER_MODULE(plip, ppbus, lp_driver, lp_devclass, lp_module_handler, 0); > MODULE_DEPEND(plip, ppbus, 1, 1, 1); > > Modified: head/sys/dev/ppbus/immio.c > ============================================================================== > --- head/sys/dev/ppbus/immio.c Wed Jan 21 21:48:46 2009 (r187575) > +++ head/sys/dev/ppbus/immio.c Wed Jan 21 23:10:06 2009 (r187576) > @@ -606,6 +606,7 @@ imm_attach(struct vpoio_data *vpo) > /* > * Initialize mode dependent in/out microsequences > */ > + ppb_lock(ppbus); > if ((error = ppb_request_bus(ppbus, vpo->vpo_dev, PPB_WAIT))) > goto error; > > @@ -632,6 +633,7 @@ imm_attach(struct vpoio_data *vpo) > > ppb_release_bus(ppbus, vpo->vpo_dev); > error: > + ppb_unlock(ppbus); > return (error); > } > > > Modified: head/sys/dev/ppbus/lpbb.c > ============================================================================== > --- head/sys/dev/ppbus/lpbb.c Wed Jan 21 21:48:46 2009 (r187575) > +++ head/sys/dev/ppbus/lpbb.c Wed Jan 21 23:10:06 2009 (r187576) > @@ -103,16 +103,16 @@ lpbb_callback(device_t dev, int index, c > case IIC_REQUEST_BUS: > /* request the ppbus */ > how = *(int *)data; > - mtx_lock(&Giant); > + ppb_lock(ppbus); > error = ppb_request_bus(ppbus, dev, how); > - mtx_unlock(&Giant); > + ppb_unlock(ppbus); > break; > > case IIC_RELEASE_BUS: > /* release the ppbus */ > - mtx_lock(&Giant); > + ppb_lock(ppbus); > error = ppb_release_bus(ppbus, dev); > - mtx_unlock(&Giant); > + ppb_unlock(ppbus); > break; > > default: > @@ -129,25 +129,38 @@ lpbb_callback(device_t dev, int index, c > #define ALIM 0x20 > #define I2CKEY 0x50 > > +/* Reset bus by setting SDA first and then SCL. */ > +static void > +lpbb_reset_bus(device_t dev) > +{ > + device_t ppbus = device_get_parent(dev); > + > + ppb_assert_locked(ppbus); > + ppb_wdtr(ppbus, (u_char)~SDA_out); > + ppb_wctr(ppbus, (u_char)(ppb_rctr(ppbus) | SCL_out)); > +} > + > static int > lpbb_getscl(device_t dev) > { > + device_t ppbus = device_get_parent(dev); > int rval; > > - mtx_lock(&Giant); > - rval = ((ppb_rstr(device_get_parent(dev)) & SCL_in) == SCL_in); > - mtx_unlock(&Giant); > + ppb_lock(ppbus); > + rval = ((ppb_rstr(ppbus) & SCL_in) == SCL_in); > + ppb_unlock(ppbus); > return (rval); > } > > static int > lpbb_getsda(device_t dev) > { > + device_t ppbus = device_get_parent(dev); > int rval; > > - mtx_lock(&Giant); > - rval = ((ppb_rstr(device_get_parent(dev)) & SDA_in) == SDA_in); > - mtx_unlock(&Giant); > + ppb_lock(ppbus); > + rval = ((ppb_rstr(ppbus) & SDA_in) == SDA_in); > + ppb_unlock(ppbus); > return (rval); > } > > @@ -156,12 +169,12 @@ lpbb_setsda(device_t dev, char val) > { > device_t ppbus = device_get_parent(dev); > > - mtx_lock(&Giant); > + ppb_lock(ppbus); > if (val == 0) > ppb_wdtr(ppbus, (u_char)SDA_out); > else > ppb_wdtr(ppbus, (u_char)~SDA_out); > - mtx_unlock(&Giant); > + ppb_unlock(ppbus); > } > > static void > @@ -169,12 +182,12 @@ lpbb_setscl(device_t dev, unsigned char > { > device_t ppbus = device_get_parent(dev); > > - mtx_lock(&Giant); > + ppb_lock(ppbus); > if (val == 0) > ppb_wctr(ppbus, (u_char)(ppb_rctr(ppbus) & ~SCL_out)); > else > ppb_wctr(ppbus, (u_char)(ppb_rctr(ppbus) | SCL_out)); > - mtx_unlock(&Giant); > + ppb_unlock(ppbus); > } > > static int > @@ -182,23 +195,24 @@ lpbb_detect(device_t dev) > { > device_t ppbus = device_get_parent(dev); > > + ppb_lock(ppbus); > if (ppb_request_bus(ppbus, dev, PPB_DONTWAIT)) { > + ppb_unlock(ppbus); > device_printf(dev, "can't allocate ppbus\n"); > return (0); > } > > - /* reset bus */ > - lpbb_setsda(dev, 1); > - lpbb_setscl(dev, 1); > + lpbb_reset_bus(dev); > > if ((ppb_rstr(ppbus) & I2CKEY) || > ((ppb_rstr(ppbus) & ALIM) != ALIM)) { > - > ppb_release_bus(ppbus, dev); > + ppb_unlock(ppbus); > return (0); > } > > ppb_release_bus(ppbus, dev); > + ppb_unlock(ppbus); > > return (1); > } > @@ -208,18 +222,17 @@ lpbb_reset(device_t dev, u_char speed, u > { > device_t ppbus = device_get_parent(dev); > > - mtx_lock(&Giant); > + ppb_lock(ppbus); > if (ppb_request_bus(ppbus, dev, PPB_DONTWAIT)) { > + ppb_unlock(ppbus); > device_printf(dev, "can't allocate ppbus\n"); > return (0); > } > > - /* reset bus */ > - lpbb_setsda(dev, 1); > - lpbb_setscl(dev, 1); > + lpbb_reset_bus(dev); > > ppb_release_bus(ppbus, dev); > - mtx_unlock(&Giant); > + ppb_unlock(ppbus); > > return (IIC_ENOADDR); > } > > Modified: head/sys/dev/ppbus/lpt.c > ============================================================================== > --- head/sys/dev/ppbus/lpt.c Wed Jan 21 21:48:46 2009 (r187575) > +++ head/sys/dev/ppbus/lpt.c Wed Jan 21 23:10:06 2009 (r187576) > @@ -105,9 +105,9 @@ static int volatile lptflag = 1; > #define BUFSTATSIZE 32 > > struct lpt_data { > - device_t dev; > - struct cdev *cdev; > - struct cdev *cdev_bypass; > + device_t sc_dev; > + struct cdev *sc_cdev; > + struct cdev *sc_cdev_bypass; > short sc_state; > /* default case: negative prime, negative ack, handshake strobe, > prime once */ > @@ -130,9 +130,10 @@ struct lpt_data { > #define LP_ENABLE_IRQ 0x04 /* enable IRQ on open */ > #define LP_ENABLE_EXT 0x10 /* we shall use advanced mode when possible */ > u_char sc_backoff ; /* time to call lptout() again */ > + struct callout sc_timer; > > - struct resource *intr_resource; /* interrupt resource */ > - void *intr_cookie; /* interrupt registration cookie */ > + struct resource *sc_intr_resource; /* interrupt resource */ > + void *sc_intr_cookie; /* interrupt cookie */ > }; > > #define LPT_NAME "lpt" /* our official name */ > @@ -144,8 +145,7 @@ static int lpt_detect(device_t dev); > #define DEVTOSOFTC(dev) \ > ((struct lpt_data *)device_get_softc(dev)) > > -static void lptintr(device_t dev); > -static void lpt_intr(void *arg); /* without spls */ > +static void lptintr(void *arg); > > static devclass_t lpt_devclass; > > @@ -183,7 +183,6 @@ static d_ioctl_t lptioctl; > > static struct cdevsw lpt_cdevsw = { > .d_version = D_VERSION, > - .d_flags = D_NEEDGIANT, > .d_open = lptopen, > .d_close = lptclose, > .d_read = lptread, > @@ -199,13 +198,17 @@ lpt_request_ppbus(device_t dev, int how) > struct lpt_data *sc = DEVTOSOFTC(dev); > int error; > > + /* > + * We might already have the bus for a write(2) after an interrupted > + * write(2) call. > + */ > + ppb_assert_locked(ppbus); > if (sc->sc_state & HAVEBUS) > return (0); > > - /* we have the bus only if the request succeded */ > - if ((error = ppb_request_bus(ppbus, dev, how)) == 0) > + error = ppb_request_bus(ppbus, dev, how); > + if (error == 0) > sc->sc_state |= HAVEBUS; > - > return (error); > } > > @@ -216,9 +219,12 @@ lpt_release_ppbus(device_t dev) > struct lpt_data *sc = DEVTOSOFTC(dev); > int error = 0; > > - if ((error = ppb_release_bus(ppbus, dev)) == 0) > - sc->sc_state &= ~HAVEBUS; > - > + ppb_assert_locked(ppbus); > + if (sc->sc_state & HAVEBUS) { > + error = ppb_release_bus(ppbus, dev); > + if (error == 0) > + sc->sc_state &= ~HAVEBUS; > + } > return (error); > } > > @@ -306,24 +312,25 @@ lpt_detect(device_t dev) > > status = 1; /* assume success */ > > + ppb_lock(ppbus); > if ((error = lpt_request_ppbus(dev, PPB_DONTWAIT))) { > - printf(LPT_NAME ": cannot alloc ppbus (%d)!\n", error); > - status = 0; > - goto end_probe; > + ppb_unlock(ppbus); > + device_printf(dev, "cannot alloc ppbus (%d)!\n", error); > + return (0); > } > > for (i = 0; i < 18 && status; i++) > if (!lpt_port_test(ppbus, testbyte[i], 0xff)) { > status = 0; > - goto end_probe; > + break; > } > > -end_probe: > /* write 0's to control and data ports */ > ppb_wdtr(ppbus, 0); > ppb_wctr(ppbus, 0); > > lpt_release_ppbus(dev); > + ppb_unlock(ppbus); > > return (status); > } > @@ -363,21 +370,33 @@ lpt_attach(device_t dev) > int error; > > sc->sc_primed = 0; /* not primed yet */ > + ppb_init_callout(ppbus, &sc->sc_timer, 0); > > + ppb_lock(ppbus); > if ((error = lpt_request_ppbus(dev, PPB_DONTWAIT))) { > - printf(LPT_NAME ": cannot alloc ppbus (%d)!\n", error); > + ppb_unlock(ppbus); > + device_printf(dev, "cannot alloc ppbus (%d)!\n", error); > return (0); > } > > ppb_wctr(ppbus, LPC_NINIT); > - > - /* check if we can use interrupt, should be done by ppc stuff */ > - lprintf(("oldirq %x\n", sc->sc_irq)); > + ppb_unlock(ppbus); > + lpt_release_ppbus(dev); > > /* declare our interrupt handler */ > - sc->intr_resource = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, > + sc->sc_intr_resource = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, > RF_SHAREABLE); > - if (sc->intr_resource) { > + if (sc->sc_intr_resource) { > + error = bus_setup_intr(dev, sc->sc_intr_resource, > + INTR_TYPE_TTY | INTR_MPSAFE, NULL, lptintr, sc, > + &sc->sc_intr_cookie); > + if (error) { > + bus_release_resource(dev, SYS_RES_IRQ, rid, > + sc->sc_intr_resource); > + device_printf(dev, > + "Unable to register interrupt handler\n"); > + return (error); > + } > sc->sc_irq = LP_HAS_IRQ | LP_USE_IRQ | LP_ENABLE_IRQ; > device_printf(dev, "Interrupt-driven port\n"); > } else { > @@ -386,17 +405,17 @@ lpt_attach(device_t dev) > } > lprintf(("irq %x\n", sc->sc_irq)); > > - lpt_release_ppbus(dev); > - > - sc->dev = dev; > - sc->cdev = make_dev(&lpt_cdevsw, unit, > + sc->sc_inbuf = malloc(BUFSIZE, M_DEVBUF, M_WAITOK); > + sc->sc_statbuf = malloc(BUFSTATSIZE, M_DEVBUF, M_WAITOK); > + sc->sc_dev = dev; > + sc->sc_cdev = make_dev(&lpt_cdevsw, unit, > UID_ROOT, GID_WHEEL, 0600, LPT_NAME "%d", unit); > - sc->cdev->si_drv1 = sc; > - sc->cdev->si_drv2 = 0; > - sc->cdev_bypass = make_dev(&lpt_cdevsw, unit, > + sc->sc_cdev->si_drv1 = sc; > + sc->sc_cdev->si_drv2 = 0; > + sc->sc_cdev_bypass = make_dev(&lpt_cdevsw, unit, > UID_ROOT, GID_WHEEL, 0600, LPT_NAME "%d.ctl", unit); > - sc->cdev_bypass->si_drv1 = sc; > - sc->cdev_bypass->si_drv2 = (void *)LP_BYPASS; > + sc->sc_cdev_bypass->si_drv1 = sc; > + sc->sc_cdev_bypass->si_drv2 = (void *)LP_BYPASS; > return (0); > } > > @@ -404,15 +423,21 @@ static int > lpt_detach(device_t dev) > { > struct lpt_data *sc = DEVTOSOFTC(dev); > + device_t ppbus = device_get_parent(dev); > > - destroy_dev(sc->cdev); > - destroy_dev(sc->cdev_bypass); > + destroy_dev(sc->sc_cdev); > + destroy_dev(sc->sc_cdev_bypass); > + ppb_lock(ppbus); > lpt_release_ppbus(dev); > - if (sc->intr_resource != 0) { > - BUS_TEARDOWN_INTR(device_get_parent(dev), dev, > - sc->intr_resource, sc->intr_cookie); > - bus_release_resource(dev, SYS_RES_IRQ, 0, sc->intr_resource); > + ppb_unlock(ppbus); > + callout_drain(&sc->sc_timer); > + if (sc->sc_intr_resource != NULL) { > + bus_teardown_intr(dev, sc->sc_intr_resource, > + sc->sc_intr_cookie); > + bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_intr_resource); > } > + free(sc->sc_inbuf, M_DEVBUF); > + free(sc->sc_statbuf, M_DEVBUF); > > return (0); > } > @@ -420,18 +445,17 @@ lpt_detach(device_t dev) > static void > lptout(void *arg) > { > - device_t dev = (device_t)arg; > - struct lpt_data *sc = DEVTOSOFTC(dev); > -#ifdef LPT_DEBUG > + struct lpt_data *sc = arg; > + device_t dev = sc->sc_dev; > device_t ppbus = device_get_parent(dev); > -#endif > > + ppb_assert_locked(ppbus); > lprintf(("T %x ", ppb_rstr(ppbus))); > if (sc->sc_state & OPEN) { > sc->sc_backoff++; > if (sc->sc_backoff > hz/LPTOUTMAX) > sc->sc_backoff = sc->sc_backoff > hz/LPTOUTMAX; > - timeout(lptout, (caddr_t)dev, sc->sc_backoff); > + callout_reset(&sc->sc_timer, sc->sc_backoff, lptout, sc); > } else > sc->sc_state &= ~TOUT; > > @@ -442,7 +466,7 @@ lptout(void *arg) > * Avoid possible hangs due to missed interrupts > */ > if (sc->sc_xfercnt) { > - lptintr(dev); > + lptintr(sc); > } else { > sc->sc_state &= ~OBUSY; > wakeup(dev); > @@ -458,17 +482,19 @@ lptout(void *arg) > static int > lptopen(struct cdev *dev, int flags, int fmt, struct thread *td) > { > - int s; > int trys, err; > struct lpt_data *sc = dev->si_drv1; > - device_t lptdev = sc->dev; > + device_t lptdev = sc->sc_dev; > device_t ppbus = device_get_parent(lptdev); > > if (!sc) > return (ENXIO); > > + ppb_lock(ppbus); > if (sc->sc_state) { > - lprintf((LPT_NAME ": still open %x\n", sc->sc_state)); > + lprintf(("%s: still open %x\n", device_get_nameunit(lptdev), > + sc->sc_state)); > + ppb_unlock(ppbus); > return(EBUSY); > } else > sc->sc_state |= LPTINIT; > @@ -478,6 +504,7 @@ lptopen(struct cdev *dev, int flags, int > /* Check for open with BYPASS flag set. */ > if (sc->sc_flags & LP_BYPASS) { > sc->sc_state = OPEN; > + ppb_unlock(ppbus); > return(0); > } > > @@ -485,11 +512,12 @@ lptopen(struct cdev *dev, int flags, int > if ((err = lpt_request_ppbus(lptdev, PPB_WAIT|PPB_INTR)) != 0) { > /* give it a chance to try later */ > sc->sc_state = 0; > + ppb_unlock(ppbus); > return (err); > } > > - s = spltty(); > - lprintf((LPT_NAME " flags 0x%x\n", sc->sc_flags)); > + lprintf(("%s flags 0x%x\n", device_get_nameunit(lptdev), > + sc->sc_flags)); > > /* set IRQ status according to ENABLE_IRQ flag > */ > @@ -514,21 +542,21 @@ lptopen(struct cdev *dev, int flags, int > do { > /* ran out of waiting for the printer */ > if (trys++ >= LPINITRDY*4) { > - splx(s); > sc->sc_state = 0; > lprintf(("status %x\n", ppb_rstr(ppbus))); > > lpt_release_ppbus(lptdev); > + ppb_unlock(ppbus); > return (EBUSY); > } > > /* wait 1/4 second, give up if we get a signal */ > - if (tsleep(lptdev, LPPRI|PCATCH, "lptinit", hz/4) != > - EWOULDBLOCK) { > + if (ppb_sleep(ppbus, lptdev, LPPRI | PCATCH, "lptinit", > + hz / 4) != EWOULDBLOCK) { > sc->sc_state = 0; > - splx(s); > > lpt_release_ppbus(lptdev); > + ppb_unlock(ppbus); > return (EBUSY); > } > > @@ -548,22 +576,20 @@ lptopen(struct cdev *dev, int flags, int > ppb_wctr(ppbus, sc->sc_control); > > sc->sc_state = OPEN; > - sc->sc_inbuf = malloc(BUFSIZE, M_DEVBUF, M_WAITOK); > - sc->sc_statbuf = malloc(BUFSTATSIZE, M_DEVBUF, M_WAITOK); > sc->sc_xfercnt = 0; > - splx(s); > - > - /* release the ppbus */ > - lpt_release_ppbus(lptdev); > > /* only use timeout if using interrupt */ > lprintf(("irq %x\n", sc->sc_irq)); > if (sc->sc_irq & LP_USE_IRQ) { > sc->sc_state |= TOUT; > - timeout(lptout, (caddr_t)lptdev, > - (sc->sc_backoff = hz/LPTOUTINITIAL)); > + sc->sc_backoff = hz / LPTOUTINITIAL; > + callout_reset(&sc->sc_timer, sc->sc_backoff, lptout, sc); > } > > + /* release the ppbus */ > + lpt_release_ppbus(lptdev); > + ppb_unlock(ppbus); > + > lprintf(("opened.\n")); > return(0); > } > @@ -578,17 +604,21 @@ static int > lptclose(struct cdev *dev, int flags, int fmt, struct thread *td) > { > struct lpt_data *sc = dev->si_drv1; > - device_t lptdev = sc->dev; > > *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** > From owner-svn-src-all@FreeBSD.ORG Thu Jan 22 08:14:29 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13A3C106568C; Thu, 22 Jan 2009 08:14:29 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 013608FC18; Thu, 22 Jan 2009 08:14:29 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0M8ESMe004933; Thu, 22 Jan 2009 08:14:28 GMT (envelope-from das@svn.freebsd.org) Received: (from das@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0M8ESfc004930; Thu, 22 Jan 2009 08:14:28 GMT (envelope-from das@svn.freebsd.org) Message-Id: <200901220814.n0M8ESfc004930@svn.freebsd.org> From: David Schultz Date: Thu, 22 Jan 2009 08:14:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187582 - head/lib/libc/stdio X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2009 08:14:29 -0000 Author: das Date: Thu Jan 22 08:14:28 2009 New Revision: 187582 URL: http://svn.freebsd.org/changeset/base/187582 Log: Add support for multibyte thousands_sep encodings, e.g., U+066C. The integer thousands' separator code is rewritten in order to avoid having to preallocate a buffer for the largest possible digit string with the most possible instances of the longest possible multibyte thousands' separator. The new version inserts thousands' separators for integers using the same code as floating point. Modified: head/lib/libc/stdio/printfcommon.h head/lib/libc/stdio/vfprintf.c head/lib/libc/stdio/vfwprintf.c Modified: head/lib/libc/stdio/printfcommon.h ============================================================================== --- head/lib/libc/stdio/printfcommon.h Thu Jan 22 06:39:31 2009 (r187581) +++ head/lib/libc/stdio/printfcommon.h Thu Jan 22 08:14:28 2009 (r187582) @@ -54,10 +54,8 @@ static int exponent(CHAR *, int, CHAR); #endif /* !NO_FLOATING_POINT */ -static CHAR *__ujtoa(uintmax_t, CHAR *, int, int, const char *, int, char, - const char *); -static CHAR *__ultoa(u_long, CHAR *, int, int, const char *, int, char, - const char *); +static CHAR *__ujtoa(uintmax_t, CHAR *, int, int, const char *); +static CHAR *__ultoa(u_long, CHAR *, int, int, const char *); #define NIOV 8 struct io_state { @@ -158,12 +156,10 @@ io_flush(struct io_state *iop) * use the given digits. */ static CHAR * -__ultoa(u_long val, CHAR *endp, int base, int octzero, const char *xdigs, - int needgrp, char thousep, const char *grp) +__ultoa(u_long val, CHAR *endp, int base, int octzero, const char *xdigs) { CHAR *cp = endp; long sval; - int ndig; /* * Handle the three cases separately, in the hope of getting @@ -175,7 +171,6 @@ __ultoa(u_long val, CHAR *endp, int base *--cp = to_char(val); return (cp); } - ndig = 0; /* * On many machines, unsigned arithmetic is harder than * signed arithmetic, so we do at most one unsigned mod and @@ -184,29 +179,11 @@ __ultoa(u_long val, CHAR *endp, int base */ if (val > LONG_MAX) { *--cp = to_char(val % 10); - ndig++; sval = val / 10; } else sval = val; do { *--cp = to_char(sval % 10); - ndig++; - /* - * If (*grp == CHAR_MAX) then no more grouping - * should be performed. - */ - if (needgrp && ndig == *grp && *grp != CHAR_MAX - && sval > 9) { - *--cp = thousep; - ndig = 0; - /* - * If (*(grp+1) == '\0') then we have to - * use *grp character (last grouping rule) - * for all next cases - */ - if (*(grp+1) != '\0') - grp++; - } sval /= 10; } while (sval != 0); break; @@ -235,50 +212,28 @@ __ultoa(u_long val, CHAR *endp, int base /* Identical to __ultoa, but for intmax_t. */ static CHAR * -__ujtoa(uintmax_t val, CHAR *endp, int base, int octzero, const char *xdigs, - int needgrp, char thousep, const char *grp) +__ujtoa(uintmax_t val, CHAR *endp, int base, int octzero, const char *xdigs) { CHAR *cp = endp; intmax_t sval; - int ndig; /* quick test for small values; __ultoa is typically much faster */ /* (perhaps instead we should run until small, then call __ultoa?) */ if (val <= ULONG_MAX) - return (__ultoa((u_long)val, endp, base, octzero, xdigs, - needgrp, thousep, grp)); + return (__ultoa((u_long)val, endp, base, octzero, xdigs)); switch (base) { case 10: if (val < 10) { *--cp = to_char(val % 10); return (cp); } - ndig = 0; if (val > INTMAX_MAX) { *--cp = to_char(val % 10); - ndig++; sval = val / 10; } else sval = val; do { *--cp = to_char(sval % 10); - ndig++; - /* - * If (*grp == CHAR_MAX) then no more grouping - * should be performed. - */ - if (needgrp && *grp != CHAR_MAX && ndig == *grp - && sval > 9) { - *--cp = thousep; - ndig = 0; - /* - * If (*(grp+1) == '\0') then we have to - * use *grp character (last grouping rule) - * for all next cases - */ - if (*(grp+1) != '\0') - grp++; - } sval /= 10; } while (sval != 0); break; Modified: head/lib/libc/stdio/vfprintf.c ============================================================================== --- head/lib/libc/stdio/vfprintf.c Thu Jan 22 06:39:31 2009 (r187581) +++ head/lib/libc/stdio/vfprintf.c Thu Jan 22 08:14:28 2009 (r187582) @@ -72,6 +72,75 @@ static char *__wcsconv(wchar_t *, int); #define CHAR char #include "printfcommon.h" +struct grouping_state { + char *thousands_sep; /* locale-specific thousands separator */ + int thousep_len; /* length of thousands_sep */ + const char *grouping; /* locale-specific numeric grouping rules */ + int lead; /* sig figs before decimal or group sep */ + int nseps; /* number of group separators with ' */ + int nrepeats; /* number of repeats of the last group */ +}; + +/* + * Initialize the thousands' grouping state in preparation to print a + * number with ndigits digits. This routine returns the total number + * of bytes that will be needed. + */ +static int +grouping_init(struct grouping_state *gs, int ndigits) +{ + struct lconv *locale; + + locale = localeconv(); + gs->grouping = locale->grouping; + gs->thousands_sep = locale->thousands_sep; + gs->thousep_len = strlen(gs->thousands_sep); + + gs->nseps = gs->nrepeats = 0; + gs->lead = ndigits; + while (*gs->grouping != CHAR_MAX) { + if (gs->lead <= *gs->grouping) + break; + gs->lead -= *gs->grouping; + if (*(gs->grouping+1)) { + gs->nseps++; + gs->grouping++; + } else + gs->nrepeats++; + } + return ((gs->nseps + gs->nrepeats) * gs->thousep_len); +} + +/* + * Print a number with thousands' separators. + */ +static int +grouping_print(struct grouping_state *gs, struct io_state *iop, + const CHAR *cp, const CHAR *ep) +{ + const CHAR *cp0 = cp; + + if (io_printandpad(iop, cp, ep, gs->lead, zeroes)) + return (-1); + cp += gs->lead; + while (gs->nseps > 0 || gs->nrepeats > 0) { + if (gs->nrepeats > 0) + gs->nrepeats--; + else { + gs->grouping--; + gs->nseps--; + } + if (io_print(iop, gs->thousands_sep, gs->thousep_len)) + return (-1); + if (io_printandpad(iop, cp, ep, *gs->grouping, zeroes)) + return (-1); + cp += *gs->grouping; + } + if (cp > ep) + cp = ep; + return (cp - cp0); +} + /* * Flush out all the vectors defined by the given uio, * then reset it so that it can be reused. @@ -210,12 +279,14 @@ vfprintf(FILE * __restrict fp, const cha /* * The size of the buffer we use as scratch space for integer - * conversions, among other things. Technically, we would need the - * most space for base 10 conversions with thousands' grouping - * characters between each pair of digits. 100 bytes is a - * conservative overestimate even for a 128-bit uintmax_t. + * conversions, among other things. We need enough space to + * write a uintmax_t in octal (plus one byte). */ -#define BUF 100 +#if UINTMAX_MAX <= UINT64_MAX +#define BUF 32 +#else +#error "BUF must be large enough to format a uintmax_t" +#endif /* * Non-MT-safe version @@ -232,8 +303,7 @@ __vfprintf(FILE *fp, const char *fmt0, v int width; /* width from format (%8d), or 0 */ int prec; /* precision from format; <0 for N/A */ char sign; /* sign prefix (' ', '+', '-', or \0) */ - char thousands_sep; /* locale specific thousands separator */ - const char *grouping; /* locale specific numeric grouping rules */ + struct grouping_state gs; /* thousands' grouping info */ #ifndef NO_FLOATING_POINT /* @@ -261,12 +331,9 @@ __vfprintf(FILE *fp, const char *fmt0, v char expchar; /* exponent character: [eEpP\0] */ char *dtoaend; /* pointer to end of converted digits */ int expsize; /* character count for expstr */ - int lead; /* sig figs before decimal or group sep */ int ndig; /* actual number of digits returned by dtoa */ char expstr[MAXEXPDIG+2]; /* buffer for exponent string: e+ZZZ */ char *dtoaresult; /* buffer allocated by dtoa */ - int nseps; /* number of group separators with ' */ - int nrepeats; /* number of repeats of the last group */ #endif u_long ulval; /* integer arguments %[diouxX] */ uintmax_t ujval; /* %j, %ll, %q, %t, %z integers */ @@ -378,8 +445,6 @@ __vfprintf(FILE *fp, const char *fmt0, v if (prepwrite(fp) != 0) return (EOF); - thousands_sep = '\0'; - grouping = NULL; convbuf = NULL; fmt = (char *)fmt0; argtable = NULL; @@ -416,6 +481,7 @@ __vfprintf(FILE *fp, const char *fmt0, v dprec = 0; width = 0; prec = -1; + gs.grouping = NULL; sign = '\0'; ox[1] = '\0'; @@ -453,8 +519,6 @@ reswitch: switch (ch) { goto rflag; case '\'': flags |= GROUPING; - thousands_sep = *(localeconv()->thousands_sep); - grouping = localeconv()->grouping; goto rflag; case '.': if ((ch = *fmt++) == '*') { @@ -685,23 +749,8 @@ fp_common: /* space for decimal pt and following digits */ if (prec || flags & ALT) size += prec + decpt_len; - if (grouping && expt > 0) { - /* space for thousands' grouping */ - nseps = nrepeats = 0; - lead = expt; - while (*grouping != CHAR_MAX) { - if (lead <= *grouping) - break; - lead -= *grouping; - if (*(grouping+1)) { - nseps++; - grouping++; - } else - nrepeats++; - } - size += nseps + nrepeats; - } else - lead = expt; + if ((flags & GROUPING) && expt > 0) + size += grouping_init(&gs, expt); } break; #endif /* !NO_FLOATING_POINT */ @@ -842,20 +891,18 @@ number: if ((dprec = prec) >= 0) if (ujval != 0 || prec != 0 || (flags & ALT && base == 8)) cp = __ujtoa(ujval, cp, base, - flags & ALT, xdigs, - flags & GROUPING, thousands_sep, - grouping); + flags & ALT, xdigs); } else { if (ulval != 0 || prec != 0 || (flags & ALT && base == 8)) cp = __ultoa(ulval, cp, base, - flags & ALT, xdigs, - flags & GROUPING, thousands_sep, - grouping); + flags & ALT, xdigs); } size = buf + BUF - cp; if (size > BUF) /* should never happen */ abort(); + if ((flags & GROUPING) && size != 0) + size += grouping_init(&gs, size); break; default: /* "%?" prints ?, unless ? is NUL */ if (ch == '\0') @@ -911,13 +958,19 @@ number: if ((dprec = prec) >= 0) if ((flags & (LADJUST|ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes); - /* leading zeroes from decimal precision */ - PAD(dprec - size, zeroes); - /* the string or number proper */ #ifndef NO_FLOATING_POINT if ((flags & FPT) == 0) { - PRINT(cp, size); +#endif + /* leading zeroes from decimal precision */ + PAD(dprec - size, zeroes); + if (gs.grouping) { + if (grouping_print(&gs, &io, cp, buf+BUF) < 0) + goto error; + } else { + PRINT(cp, size); + } +#ifndef NO_FLOATING_POINT } else { /* glue together f_p fragments */ if (!expchar) { /* %[fF] or sufficiently short %[gG] */ if (expt <= 0) { @@ -928,24 +981,16 @@ number: if ((dprec = prec) >= 0) /* already handled initial 0's */ prec += expt; } else { - PRINTANDPAD(cp, dtoaend, lead, zeroes); - cp += lead; - if (grouping) { - while (nseps>0 || nrepeats>0) { - if (nrepeats > 0) - nrepeats--; - else { - grouping--; - nseps--; - } - PRINT(&thousands_sep, - 1); - PRINTANDPAD(cp,dtoaend, - *grouping, zeroes); - cp += *grouping; - } - if (cp > dtoaend) - cp = dtoaend; + if (gs.grouping) { + n = grouping_print(&gs, &io, + cp, dtoaend); + if (n < 0) + goto error; + cp += n; + } else { + PRINTANDPAD(cp, dtoaend, + expt, zeroes); + cp += expt; } if (prec || flags & ALT) PRINT(decimal_point,decpt_len); @@ -962,8 +1007,6 @@ number: if ((dprec = prec) >= 0) PRINT(expstr, expsize); } } -#else - PRINT(cp, size); #endif /* left-adjusting padding (always blank) */ if (flags & LADJUST) Modified: head/lib/libc/stdio/vfwprintf.c ============================================================================== --- head/lib/libc/stdio/vfwprintf.c Thu Jan 22 06:39:31 2009 (r187581) +++ head/lib/libc/stdio/vfwprintf.c Thu Jan 22 08:14:28 2009 (r187582) @@ -74,6 +74,14 @@ static wchar_t *__mbsconv(char *, int); #define CHAR wchar_t #include "printfcommon.h" +struct grouping_state { + wchar_t thousands_sep; /* locale-specific thousands separator */ + const char *grouping; /* locale-specific numeric grouping rules */ + int lead; /* sig figs before decimal or group sep */ + int nseps; /* number of group separators with ' */ + int nrepeats; /* number of repeats of the last group */ +}; + static const mbstate_t initial_mbs; static inline wchar_t @@ -90,6 +98,79 @@ get_decpt(void) return (decpt); } +static inline wchar_t +get_thousep(void) +{ + mbstate_t mbs; + wchar_t thousep; + int nconv; + + mbs = initial_mbs; + nconv = mbrtowc(&thousep, localeconv()->thousands_sep, + MB_CUR_MAX, &mbs); + if (nconv == (size_t)-1 || nconv == (size_t)-2) + thousep = '\0'; /* failsafe */ + return (thousep); +} + +/* + * Initialize the thousands' grouping state in preparation to print a + * number with ndigits digits. This routine returns the total number + * of wide characters that will be printed. + */ +static int +grouping_init(struct grouping_state *gs, int ndigits) +{ + + gs->grouping = localeconv()->grouping; + gs->thousands_sep = get_thousep(); + + gs->nseps = gs->nrepeats = 0; + gs->lead = ndigits; + while (*gs->grouping != CHAR_MAX) { + if (gs->lead <= *gs->grouping) + break; + gs->lead -= *gs->grouping; + if (*(gs->grouping+1)) { + gs->nseps++; + gs->grouping++; + } else + gs->nrepeats++; + } + return (gs->nseps + gs->nrepeats); +} + +/* + * Print a number with thousands' separators. + */ +static int +grouping_print(struct grouping_state *gs, struct io_state *iop, + const CHAR *cp, const CHAR *ep) +{ + const CHAR *cp0 = cp; + + if (io_printandpad(iop, cp, ep, gs->lead, zeroes)) + return (-1); + cp += gs->lead; + while (gs->nseps > 0 || gs->nrepeats > 0) { + if (gs->nrepeats > 0) + gs->nrepeats--; + else { + gs->grouping--; + gs->nseps--; + } + if (io_print(iop, &gs->thousands_sep, 1)) + return (-1); + if (io_printandpad(iop, cp, ep, *gs->grouping, zeroes)) + return (-1); + cp += *gs->grouping; + } + if (cp > ep) + cp = ep; + return (cp - cp0); +} + + /* * Flush out all the vectors defined by the given uio, * then reset it so that it can be reused. @@ -280,12 +361,14 @@ vfwprintf(FILE * __restrict fp, const wc /* * The size of the buffer we use as scratch space for integer - * conversions, among other things. Technically, we would need the - * most space for base 10 conversions with thousands' grouping - * characters between each pair of digits. 100 bytes is a - * conservative overestimate even for a 128-bit uintmax_t. + * conversions, among other things. We need enough space to + * write a uintmax_t in octal (plus one byte). */ -#define BUF 100 +#if UINTMAX_MAX <= UINT64_MAX +#define BUF 32 +#else +#error "BUF must be large enough to format a uintmax_t" +#endif /* * Non-MT-safe version @@ -302,8 +385,7 @@ __vfwprintf(FILE *fp, const wchar_t *fmt int width; /* width from format (%8d), or 0 */ int prec; /* precision from format; <0 for N/A */ wchar_t sign; /* sign prefix (' ', '+', '-', or \0) */ - wchar_t thousands_sep; /* locale specific thousands separator */ - const char *grouping; /* locale specific numeric grouping rules */ + struct grouping_state gs; /* thousands' grouping info */ #ifndef NO_FLOATING_POINT /* * We can decompose the printed representation of floating @@ -329,12 +411,9 @@ __vfwprintf(FILE *fp, const wchar_t *fmt char expchar; /* exponent character: [eEpP\0] */ char *dtoaend; /* pointer to end of converted digits */ int expsize; /* character count for expstr */ - int lead; /* sig figs before decimal or group sep */ int ndig; /* actual number of digits returned by dtoa */ wchar_t expstr[MAXEXPDIG+2]; /* buffer for exponent string: e+ZZZ */ char *dtoaresult; /* buffer allocated by dtoa */ - int nseps; /* number of group separators with ' */ - int nrepeats; /* number of repeats of the last group */ #endif u_long ulval; /* integer arguments %[diouxX] */ uintmax_t ujval; /* %j, %ll, %q, %t, %z integers */ @@ -442,8 +521,6 @@ __vfwprintf(FILE *fp, const wchar_t *fmt if (prepwrite(fp) != 0) return (EOF); - thousands_sep = '\0'; - grouping = NULL; convbuf = NULL; fmt = (wchar_t *)fmt0; argtable = NULL; @@ -477,6 +554,7 @@ __vfwprintf(FILE *fp, const wchar_t *fmt dprec = 0; width = 0; prec = -1; + gs.grouping = NULL; sign = '\0'; ox[1] = '\0'; @@ -514,8 +592,6 @@ reswitch: switch (ch) { goto rflag; case '\'': flags |= GROUPING; - thousands_sep = *(localeconv()->thousands_sep); - grouping = localeconv()->grouping; goto rflag; case '.': if ((ch = *fmt++) == '*') { @@ -739,23 +815,8 @@ fp_common: /* space for decimal pt and following digits */ if (prec || flags & ALT) size += prec + 1; - if (grouping && expt > 0) { - /* space for thousands' grouping */ - nseps = nrepeats = 0; - lead = expt; - while (*grouping != CHAR_MAX) { - if (lead <= *grouping) - break; - lead -= *grouping; - if (*(grouping+1)) { - nseps++; - grouping++; - } else - nrepeats++; - } - size += nseps + nrepeats; - } else - lead = expt; + if ((flags & GROUPING) && expt > 0) + size += grouping_init(&gs, expt); } break; #endif /* !NO_FLOATING_POINT */ @@ -899,20 +960,18 @@ number: if ((dprec = prec) >= 0) if (ujval != 0 || prec != 0 || (flags & ALT && base == 8)) cp = __ujtoa(ujval, cp, base, - flags & ALT, xdigs, - flags & GROUPING, thousands_sep, - grouping); + flags & ALT, xdigs); } else { if (ulval != 0 || prec != 0 || (flags & ALT && base == 8)) cp = __ultoa(ulval, cp, base, - flags & ALT, xdigs, - flags & GROUPING, thousands_sep, - grouping); + flags & ALT, xdigs); } size = buf + BUF - cp; if (size > BUF) /* should never happen */ abort(); + if ((flags & GROUPING) && size != 0) + size += grouping_init(&gs, size); break; default: /* "%?" prints ?, unless ? is NUL */ if (ch == '\0') @@ -968,13 +1027,19 @@ number: if ((dprec = prec) >= 0) if ((flags & (LADJUST|ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes); - /* leading zeroes from decimal precision */ - PAD(dprec - size, zeroes); - /* the string or number proper */ #ifndef NO_FLOATING_POINT if ((flags & FPT) == 0) { - PRINT(cp, size); +#endif + /* leading zeroes from decimal precision */ + PAD(dprec - size, zeroes); + if (gs.grouping) { + if (grouping_print(&gs, &io, cp, buf+BUF) < 0) + goto error; + } else { + PRINT(cp, size); + } +#ifndef NO_FLOATING_POINT } else { /* glue together f_p fragments */ if (!expchar) { /* %[fF] or sufficiently short %[gG] */ if (expt <= 0) { @@ -985,25 +1050,16 @@ number: if ((dprec = prec) >= 0) /* already handled initial 0's */ prec += expt; } else { - PRINTANDPAD(cp, convbuf + ndig, lead, zeroes); - cp += lead; - if (grouping) { - while (nseps>0 || nrepeats>0) { - if (nrepeats > 0) - nrepeats--; - else { - grouping--; - nseps--; - } - PRINT(&thousands_sep, - 1); - PRINTANDPAD(cp, - convbuf + ndig, - *grouping, zeroes); - cp += *grouping; - } - if (cp > convbuf + ndig) - cp = convbuf + ndig; + if (gs.grouping) { + n = grouping_print(&gs, &io, + cp, convbuf + ndig); + if (n < 0) + goto error; + cp += n; + } else { + PRINTANDPAD(cp, convbuf + ndig, + expt, zeroes); + cp += expt; } if (prec || flags & ALT) PRINT(&decimal_point, 1); @@ -1021,8 +1077,6 @@ number: if ((dprec = prec) >= 0) PRINT(expstr, expsize); } } -#else - PRINT(cp, size); #endif /* left-adjusting padding (always blank) */ if (flags & LADJUST) From owner-svn-src-all@FreeBSD.ORG Thu Jan 22 08:29:39 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A55C106564A; Thu, 22 Jan 2009 08:29:39 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6E6C48FC23; Thu, 22 Jan 2009 08:29:39 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0M8TdwG005259; Thu, 22 Jan 2009 08:29:39 GMT (envelope-from trhodes@svn.freebsd.org) Received: (from trhodes@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0M8Tdnw005257; Thu, 22 Jan 2009 08:29:39 GMT (envelope-from trhodes@svn.freebsd.org) Message-Id: <200901220829.n0M8Tdnw005257@svn.freebsd.org> From: Tom Rhodes Date: Thu, 22 Jan 2009 08:29:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187583 - head/contrib/smbfs/mount_smbfs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2009 08:29:40 -0000 Author: trhodes Date: Thu Jan 22 08:29:39 2009 New Revision: 187583 URL: http://svn.freebsd.org/changeset/base/187583 Log: Document the "-U" option. While it is not part of the getopt(), it is accepted through smb_ctx_init() in lib/smb/ctx.c. PR: 117013 Submitted by: Tom Evans (original version) Modified: head/contrib/smbfs/mount_smbfs/mount_smbfs.8 head/contrib/smbfs/mount_smbfs/mount_smbfs.c Modified: head/contrib/smbfs/mount_smbfs/mount_smbfs.8 ============================================================================== --- head/contrib/smbfs/mount_smbfs/mount_smbfs.8 Thu Jan 22 08:14:28 2009 (r187582) +++ head/contrib/smbfs/mount_smbfs/mount_smbfs.8 Thu Jan 22 08:29:39 2009 (r187583) @@ -1,6 +1,6 @@ .\" $Id: mount_smbfs.8,v 1.10 2002/04/16 02:47:41 bp Exp $ .\" $FreeBSD$ -.Dd March 10, 2000 +.Dd January 21, 2008 .Dt MOUNT_SMBFS 8 .Os .Sh NAME @@ -16,6 +16,7 @@ .Op Fl O Ar cowner : Ns Ar cgroup Ns / Ns Ar sowner : Ns Ar sgroup .Op Fl R Ar retrycount .Op Fl T Ar timeout +.Op Fl U Ar username .Op Fl W Ar workgroup .Op Fl c Ar case .Op Fl d Ar mode @@ -77,6 +78,8 @@ Default is 4. .It Fl T Ar timeout Timeout in seconds for each request. Default is 15. +.It Fl U Ar username +Username to authenticate with. .It Fl W Ar workgroup This option specifies the workgroup to be used in the authentication request. .It Fl c Ar case Modified: head/contrib/smbfs/mount_smbfs/mount_smbfs.c ============================================================================== --- head/contrib/smbfs/mount_smbfs/mount_smbfs.c Thu Jan 22 08:14:28 2009 (r187582) +++ head/contrib/smbfs/mount_smbfs/mount_smbfs.c Thu Jan 22 08:29:39 2009 (r187583) @@ -295,7 +295,7 @@ usage(void) "usage: mount_smbfs [-E cs1:cs2] [-I host] [-L locale] [-M crights:srights]", " [-N] [-O cowner:cgroup/sowner:sgroup] [-R retrycount]", " [-T timeout] [-W workgroup] [-c case] [-d mode] [-f mode]", - " [-g gid] [-n opt] [-u uid] //user@server/share node"); + " [-g gid] [-n opt] [-u uid] [-U username] //user@server/share node"); exit (1); } From owner-svn-src-all@FreeBSD.ORG Thu Jan 22 09:24:08 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A16181065677 for ; Thu, 22 Jan 2009 09:24:08 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from mx0.deglitch.com (backbone.deglitch.com [78.110.53.255]) by mx1.freebsd.org (Postfix) with ESMTP id 1A8E98FC17 for ; Thu, 22 Jan 2009 09:24:08 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from DSPAM-Daemon (localhost [127.0.0.1]) by mx0.deglitch.com (Postfix) with SMTP id B4EEE8FC51 for ; Thu, 22 Jan 2009 12:18:41 +0300 (MSK) Received: from orion.SpringDaemons.com (drsun1.dialup.corbina.ru [85.21.245.235]) by mx0.deglitch.com (Postfix) with ESMTPA id 2728A8FC18; Thu, 22 Jan 2009 12:18:38 +0300 (MSK) Received: from orion (localhost [127.0.0.1]) by orion.SpringDaemons.com (Postfix) with SMTP id D97A8398F3; Thu, 22 Jan 2009 12:18:37 +0300 (MSK) Date: Thu, 22 Jan 2009 12:18:37 +0300 From: Stanislav Sedov To: Garrett Cooper Message-Id: <20090122121837.c647f497.stas@FreeBSD.org> In-Reply-To: <7d6fde3d0901200052w20755420l94f0c02c547f53b7@mail.gmail.com> References: <200901191619.n0JGJrhJ015123@svn.freebsd.org> <20090119.181322.-625070925.imp@bsdimp.com> <7d6fde3d0901200052w20755420l94f0c02c547f53b7@mail.gmail.com> Organization: The FreeBSD Project X-XMPP: ssedov@jabber.ru X-Voice: +7 916 849 20 23 X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-DSPAM-Result: Whitelisted X-DSPAM-Processed: Thu Jan 22 12:18:41 2009 X-DSPAM-Confidence: 0.9899 X-DSPAM-Improbability: 1 in 9809 chance of being spam X-DSPAM-Probability: 0.0000 X-DSPAM-Signature: 497839f1967004324918418 Cc: svn-src-head@freebsd.org, sobomax@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, "M. Warner Losh" Subject: Re: svn commit: r187437 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2009 09:24:08 -0000 On Tue, 20 Jan 2009 00:52:28 -0800 Garrett Cooper mentioned: > On Mon, Jan 19, 2009 at 5:13 PM, M. Warner Losh wrote: > > In message: <200901191619.n0JGJrhJ015123@svn.freebsd.org> > > Maxim Sobolev writes: > > : Author: sobomax > > : Date: Mon Jan 19 16:19:53 2009 > > : New Revision: 187437 > > : URL: http://svn.freebsd.org/changeset/base/187437 > > : > > : Log: > > : Mention the fact that the NTFS kernel support isn't > > : very well maintained and point user to sysutils/fusefs-ntfs, which > > : at the time of this writing seems to be a better alternative. > > : > > : Suggested by: luigi > > : MFC after: 2 weeks > > > > Again, I'd not MFC this to 6.x for sure and maybe not even to 7.x > > since ntfs works well there. > > > > Warner > > > > : Modified: > > : head/sys/conf/NOTES > > : > > : Modified: head/sys/conf/NOTES > > : ============================================================================== > > : --- head/sys/conf/NOTES Mon Jan 19 15:59:05 2009 (r187436) > > : +++ head/sys/conf/NOTES Mon Jan 19 16:19:53 2009 (r187437) > > : @@ -942,7 +942,11 @@ options HPFS #OS/2 File system > > : options MSDOSFS #MS DOS File System (FAT, FAT32) > > : options NFSSERVER #Network File System server > > : options NFSLOCKD #Network Lock Manager > > : -options NTFS #NT File System > > : + > > : +# NT File System. Read-mostly and it's not actively maintained. > > : +# For a better NTFS support consider sysutils/fusefs-ntfs port/package. > > : +options NTFS > > : + > > : options NULLFS #NULL filesystem > > : # Broken (depends on NCP): > > : #options NWFS #NetWare filesystem > > Uh, I got consistent panics on 7.x when mounting NTFS partitions > created with XP. > I was creating the partition without MSDOS 8.3 short filename > support though. I personally think that the copy of NTFS in the kernel > is stale and unusable for a lot of different use-cases, to be honest.. But it works well for a lot of cases (e.g. works fine for me on current with Vista NTFS) and much better in some situations than fuse. Thus the latter can't replace its functionality fully. We'd better fix bugs you're experiencing (btw I haven't seen any with ntfs driver so far). -- Stanislav Sedov ST4096-RIPE !DSPAM:497839f1967004324918418! From owner-svn-src-all@FreeBSD.ORG Thu Jan 22 09:39:12 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F385C1065672; Thu, 22 Jan 2009 09:39:11 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E16C58FC2F; Thu, 22 Jan 2009 09:39:11 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0M9dBSl006566; Thu, 22 Jan 2009 09:39:11 GMT (envelope-from maxim@svn.freebsd.org) Received: (from maxim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0M9dBqx006565; Thu, 22 Jan 2009 09:39:11 GMT (envelope-from maxim@svn.freebsd.org) Message-Id: <200901220939.n0M9dBqx006565@svn.freebsd.org> From: Maxim Konovalov Date: Thu, 22 Jan 2009 09:39:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187584 - stable/7/usr.bin/netstat X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2009 09:39:12 -0000 Author: maxim Date: Thu Jan 22 09:39:11 2009 New Revision: 187584 URL: http://svn.freebsd.org/changeset/base/187584 Log: MFC r187134: respect -ss flags for icmp6 "histogram of error messages" section. Modified: stable/7/usr.bin/netstat/inet6.c Modified: stable/7/usr.bin/netstat/inet6.c ============================================================================== --- stable/7/usr.bin/netstat/inet6.c Thu Jan 22 08:29:39 2009 (r187583) +++ stable/7/usr.bin/netstat/inet6.c Thu Jan 22 09:39:11 2009 (r187584) @@ -866,7 +866,8 @@ icmp6_stats(u_long off, const char *name #define p(f, m) if (icmp6stat.f || sflag <= 1) \ printf(m, (uintmax_t)icmp6stat.f, plural(icmp6stat.f)) -#define p_5(f, m) printf(m, (uintmax_t)icmp6stat.f) +#define p_5(f, m) if (icmp6stat.f || sflag <= 1) \ + printf(m, (uintmax_t)icmp6stat.f) p(icp6s_error, "\t%ju call%s to icmp6_error\n"); p(icp6s_canterror, From owner-svn-src-all@FreeBSD.ORG Thu Jan 22 10:29:10 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28213106564A; Thu, 22 Jan 2009 10:29:10 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1728A8FC16; Thu, 22 Jan 2009 10:29:10 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MAT91d007518; Thu, 22 Jan 2009 10:29:09 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MAT99j007517; Thu, 22 Jan 2009 10:29:09 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <200901221029.n0MAT99j007517@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Thu, 22 Jan 2009 10:29:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187585 - head/sys/netinet X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2009 10:29:11 -0000 Author: bz Date: Thu Jan 22 10:29:09 2009 New Revision: 187585 URL: http://svn.freebsd.org/changeset/base/187585 Log: Add externs to fix build with VIMAGE_GLOBALS after r187289. Modified: head/sys/netinet/tcp_var.h Modified: head/sys/netinet/tcp_var.h ============================================================================== --- head/sys/netinet/tcp_var.h Thu Jan 22 09:39:11 2009 (r187584) +++ head/sys/netinet/tcp_var.h Thu Jan 22 10:29:09 2009 (r187585) @@ -540,6 +540,8 @@ extern int tcp_insecure_rst; extern int tcp_do_autorcvbuf; extern int tcp_autorcvbuf_inc; extern int tcp_autorcvbuf_max; +extern int tcp_do_rfc3465; +extern int tcp_abc_l_var; extern int tcp_do_tso; extern int tcp_do_autosndbuf; From owner-svn-src-all@FreeBSD.ORG Thu Jan 22 11:21:04 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1D25106568B; Thu, 22 Jan 2009 11:21:03 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DE2BB8FC2C; Thu, 22 Jan 2009 11:21:03 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MBL3IX011123; Thu, 22 Jan 2009 11:21:03 GMT (envelope-from edwin@svn.freebsd.org) Received: (from edwin@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MBL3UR011117; Thu, 22 Jan 2009 11:21:03 GMT (envelope-from edwin@svn.freebsd.org) Message-Id: <200901221121.n0MBL3UR011117@svn.freebsd.org> From: Edwin Groothuis Date: Thu, 22 Jan 2009 11:21:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r187586 - vendor/tzdata/dist X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2009 11:21:05 -0000 Author: edwin Date: Thu Jan 22 11:21:03 2009 New Revision: 187586 URL: http://svn.freebsd.org/changeset/base/187586 Log: Vendor import of tzdata2009a: - Asia/Katmandu -> Asia/Kathmandu - Fix historical references to DST in Switzerland - Correct rules for America/Resolute (Nunavut) - Cuba didn't have DST in 2005. Modified: vendor/tzdata/dist/asia vendor/tzdata/dist/backward vendor/tzdata/dist/europe vendor/tzdata/dist/northamerica vendor/tzdata/dist/zone.tab Modified: vendor/tzdata/dist/asia ============================================================================== --- vendor/tzdata/dist/asia Thu Jan 22 10:29:09 2009 (r187585) +++ vendor/tzdata/dist/asia Thu Jan 22 11:21:03 2009 (r187586) @@ -1,4 +1,4 @@ -# @(#)asia 8.24 +# @(#)asia 8.25 #
 
 # This data is by no means authoritative; if you think you know better,
@@ -1474,7 +1474,7 @@ Zone	Asia/Choibalsan	7:38:00 -	LMT	1905 
 
 # Nepal
 # Zone	NAME		GMTOFF	RULES	FORMAT	[UNTIL]
-Zone	Asia/Katmandu	5:41:16 -	LMT	1920
+Zone	Asia/Kathmandu	5:41:16 -	LMT	1920
 			5:30	-	IST	1986
 			5:45	-	NPT	# Nepal Time
 

Modified: vendor/tzdata/dist/backward
==============================================================================
--- vendor/tzdata/dist/backward	Thu Jan 22 10:29:09 2009	(r187585)
+++ vendor/tzdata/dist/backward	Thu Jan 22 11:21:03 2009	(r187586)
@@ -1,4 +1,4 @@
-# @(#)backward	8.6
+# @(#)backward	8.7
 
 # This file provides links between current names for time zones
 # and their old names.  Many names changed in late 1993.
@@ -24,6 +24,7 @@ Link	America/St_Thomas	America/Virgin
 Link	Asia/Ashgabat		Asia/Ashkhabad
 Link	Asia/Chongqing		Asia/Chungking
 Link	Asia/Dhaka		Asia/Dacca
+Link	Asia/Kathmandu		Asia/Katmandu
 Link	Asia/Kolkata		Asia/Calcutta
 Link	Asia/Macau		Asia/Macao
 Link	Asia/Jerusalem		Asia/Tel_Aviv

Modified: vendor/tzdata/dist/europe
==============================================================================
--- vendor/tzdata/dist/europe	Thu Jan 22 10:29:09 2009	(r187585)
+++ vendor/tzdata/dist/europe	Thu Jan 22 11:21:03 2009	(r187586)
@@ -1,4 +1,4 @@
-# @(#)europe	8.18
+# @(#)europe	8.20
 # 
 
 # This data is by no means authoritative; if you think you know better,
@@ -2313,11 +2313,64 @@ Zone Europe/Stockholm	1:12:12 -	LMT	1879
 # mean time in preference to apparent time -- Geneva from 1780 ....
 # Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
 # From Whitman (who writes ``Midnight?''):
-Rule	Swiss	1940	only	-	Nov	 2	0:00	1:00	S
-Rule	Swiss	1940	only	-	Dec	31	0:00	0	-
+# Rule	Swiss	1940	only	-	Nov	 2	0:00	1:00	S
+# Rule	Swiss	1940	only	-	Dec	31	0:00	0	-
 # From Shanks & Pottenger:
-Rule	Swiss	1941	1942	-	May	Sun>=1	2:00	1:00	S
-Rule	Swiss	1941	1942	-	Oct	Sun>=1	0:00	0	-
+# Rule	Swiss	1941	1942	-	May	Sun>=1	2:00	1:00	S
+# Rule	Swiss	1941	1942	-	Oct	Sun>=1	0:00	0	-
+
+# From Alois Treindl (2008-12-17):
+# I have researched the DST usage in Switzerland during the 1940ies.
+#
+# As I wrote in an earlier message, I suspected the current tzdata values
+# to be wrong. This is now verified.
+#
+# I have found copies of the original ruling by the Swiss Federal
+# government, in 'Eidgen[o]ssische Gesetzessammlung 1941 and 1942' (Swiss
+# federal law collection)...
+#
+# DST began on Monday 5 May 1941, 1:00 am by shifting the clocks to 2:00 am
+# DST ended on Monday 6 Oct 1941, 2:00 am by shifting the clocks to 1:00 am.
+#
+# DST began on Monday, 4 May 1942 at 01:00 am
+# DST ended on Monday, 5 Oct 1942 at 02:00 am
+#
+# There was no DST in 1940, I have checked the law collection carefully.
+# It is also indicated by the fact that the 1942 entry in the law
+# collection points back to 1941 as a reference, but no reference to any
+# other years are made.
+#
+# Newspaper articles I have read in the archives on 6 May 1941 reported
+# about the introduction of DST (Sommerzeit in German) during the previous
+# night as an absolute novelty, because this was the first time that such
+# a thing had happened in Switzerland.
+#
+# I have also checked 1916, because one book source (Gabriel, Traite de
+# l'heure dans le monde) claims that Switzerland had DST in 1916. This is
+# false, no official document could be found. Probably Gabriel got misled
+# by references to Germany, which introduced DST in 1916 for the first time.
+#
+# The tzdata rules for Switzerland must be changed to:
+# Rule  Swiss   1941    1942    -       May     Mon>=1  1:00    1:00    S
+# Rule  Swiss   1941    1942    -       Oct     Mon>=1  2:00    0       -
+#
+# The 1940 rules must be deleted.
+#
+# One further detail for Switzerland, which is probably out of scope for
+# most users of tzdata:
+# The zone file
+# Zone    Europe/Zurich   0:34:08 -       LMT     1848 Sep 12
+#                          0:29:44 -       BMT     1894 Jun #Bern Mean Time
+#                          1:00    Swiss   CE%sT   1981
+#                          1:00    EU      CE%sT
+# describes all of Switzerland correctly, with the exception of
+# the Cantone Geneve (Geneva, Genf). Between 1848 and 1894 Geneve did not
+# follow Bern Mean Time but kept its own local mean time.
+# To represent this, an extra zone would be needed.
+
+# Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
+Rule	Swiss	1941	1942	-	May	Mon>=1	1:00	1:00	S
+Rule	Swiss	1941	1942	-	Oct	Mon>=1	2:00	0	-
 # Zone	NAME		GMTOFF	RULES	FORMAT	[UNTIL]
 Zone	Europe/Zurich	0:34:08 -	LMT	1848 Sep 12
 			0:29:44	-	BMT	1894 Jun # Bern Mean Time

Modified: vendor/tzdata/dist/northamerica
==============================================================================
--- vendor/tzdata/dist/northamerica	Thu Jan 22 10:29:09 2009	(r187585)
+++ vendor/tzdata/dist/northamerica	Thu Jan 22 11:21:03 2009	(r187586)
@@ -1,4 +1,4 @@
-# @(#)northamerica	8.24
+# @(#)northamerica	8.26
 # 
 
 # also includes Central America and the Caribbean
@@ -1742,9 +1742,13 @@ Zone America/Dawson_Creek -8:00:56 -	LMT
 # The individual that answered the phone confirmed that the clocks did not
 # move at the end of daylight saving on October 29/2006.  He also told me that
 # the clocks did not move this past weekend (March 11/2007)....
-#
-# America/Resolute should use the "Canada" Rule up to October 29/2006.
-# After that it should be fixed on Eastern Standard Time until further notice.
+
+# From Chris Walton (2008-11-13):
+# ...the residents of Resolute believe that they are changing "time zones"
+# twice a year.  In winter months, local time is qualified with "Eastern
+# Time" which is really "Eastern Standard Time (UTC-5)".  In summer
+# months, local time is qualified with "Central Time" which is really
+# "Central Daylight Time (UTC-5)"...
 
 # Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
 Rule	NT_YK	1918	only	-	Apr	14	2:00	1:00	D
@@ -1772,11 +1776,14 @@ Zone America/Iqaluit	0	-	zzz	1942 Aug # 
 			-6:00	Canada	C%sT	2000 Oct 29 2:00
 			-5:00	Canada	E%sT
 # aka Qausuittuq
+# Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
+Rule	Resolute 2006	max	-	Nov	Sun>=1	2:00	0	ES
+Rule	Resolute 2007	max	-	Mar	Sun>=8	2:00	0	CD
 Zone America/Resolute	0	-	zzz	1947 Aug 31 # Resolute founded
 			-6:00	NT_YK	C%sT	2000 Oct 29 2:00
 			-5:00	-	EST	2001 Apr  1 3:00
 			-6:00	Canada	C%sT	2006 Oct 29 2:00
-			-5:00	-	EST
+			-5:00	Resolute	%sT
 # aka Kangiqiniq
 Zone America/Rankin_Inlet 0	-	zzz	1957 # Rankin Inlet founded
 			-6:00	NT_YK	C%sT	2000 Oct 29 2:00
@@ -2280,7 +2287,7 @@ Rule	Cuba	1996	only	-	Oct	 6	0:00s	0	S
 Rule	Cuba	1997	only	-	Oct	12	0:00s	0	S
 Rule	Cuba	1998	1999	-	Mar	lastSun	0:00s	1:00	D
 Rule	Cuba	1998	2003	-	Oct	lastSun	0:00s	0	S
-Rule	Cuba	2000	2006	-	Apr	Sun>=1	0:00s	1:00	D
+Rule	Cuba	2000	2004	-	Apr	Sun>=1	0:00s	1:00	D
 Rule	Cuba	2006	max	-	Oct	lastSun	0:00s	0	S
 Rule	Cuba	2007	only	-	Mar	Sun>=8	0:00s	1:00	D
 Rule	Cuba	2008	max	-	Mar	Sun>=15	0:00s	1:00	D

Modified: vendor/tzdata/dist/zone.tab
==============================================================================
--- vendor/tzdata/dist/zone.tab	Thu Jan 22 10:29:09 2009	(r187585)
+++ vendor/tzdata/dist/zone.tab	Thu Jan 22 11:21:03 2009	(r187586)
@@ -1,4 +1,4 @@
-# @(#)zone.tab	8.21
+# @(#)zone.tab	8.26
 #
 # TZ zone descriptions
 #
@@ -116,7 +116,7 @@ CA	+4901-08816	America/Nipigon	Eastern T
 CA	+4823-08915	America/Thunder_Bay	Eastern Time - Thunder Bay, Ontario
 CA	+6344-06828	America/Iqaluit	Eastern Time - east Nunavut - most locations
 CA	+6608-06544	America/Pangnirtung	Eastern Time - Pangnirtung, Nunavut
-CA	+744144-0944945	America/Resolute	Eastern Time - Resolute, Nunavut
+CA	+744144-0944945	America/Resolute	Eastern Standard Time - Resolute, Nunavut
 CA	+484531-0913718	America/Atikokan	Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut
 CA	+624900-0920459	America/Rankin_Inlet	Central Time - central Nunavut
 CA	+4953-09709	America/Winnipeg	Central Time - Manitoba & west Ontario
@@ -292,7 +292,7 @@ NG	+0627+00324	Africa/Lagos
 NI	+1209-08617	America/Managua
 NL	+5222+00454	Europe/Amsterdam
 NO	+5955+01045	Europe/Oslo
-NP	+2743+08519	Asia/Katmandu
+NP	+2743+08519	Asia/Kathmandu
 NR	-0031+16655	Pacific/Nauru
 NU	-1901-16955	Pacific/Niue
 NZ	-3652+17446	Pacific/Auckland	most locations

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 11:22:05 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 1E3BE1065751;
	Thu, 22 Jan 2009 11:22:05 +0000 (UTC)
	(envelope-from edwin@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 6DF148FC2C;
	Thu, 22 Jan 2009 11:22:02 +0000 (UTC)
	(envelope-from edwin@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MBM24o011190;
	Thu, 22 Jan 2009 11:22:02 GMT (envelope-from edwin@svn.freebsd.org)
Received: (from edwin@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MBM2K4011189;
	Thu, 22 Jan 2009 11:22:02 GMT (envelope-from edwin@svn.freebsd.org)
Message-Id: <200901221122.n0MBM2K4011189@svn.freebsd.org>
From: Edwin Groothuis 
Date: Thu, 22 Jan 2009 11:22:02 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-vendor@freebsd.org
X-SVN-Group: vendor
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187587 - vendor/tzdata/tzdata2009a
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 11:22:06 -0000

Author: edwin
Date: Thu Jan 22 11:22:01 2009
New Revision: 187587
URL: http://svn.freebsd.org/changeset/base/187587

Log:
  MFV of tzdata2009a:
  
  - Asia/Katmandu -> Asia/Kathmandu
  - Fix historical references to DST in Switzerland
  - Correct rules for America/Resolute (Nunavut)
  - Cuba didn't have DST in 2005.

Added:
  vendor/tzdata/tzdata2009a/
     - copied from r187586, vendor/tzdata/dist/

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 11:24:43 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id F30DB106566B;
	Thu, 22 Jan 2009 11:24:42 +0000 (UTC)
	(envelope-from edwin@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id DF2B98FC19;
	Thu, 22 Jan 2009 11:24:42 +0000 (UTC)
	(envelope-from edwin@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MBOg5u011305;
	Thu, 22 Jan 2009 11:24:42 GMT (envelope-from edwin@svn.freebsd.org)
Received: (from edwin@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MBOgPs011300;
	Thu, 22 Jan 2009 11:24:42 GMT (envelope-from edwin@svn.freebsd.org)
Message-Id: <200901221124.n0MBOgPs011300@svn.freebsd.org>
From: Edwin Groothuis 
Date: Thu, 22 Jan 2009 11:24:42 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187588 - head/share/zoneinfo
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 11:24:43 -0000

Author: edwin
Date: Thu Jan 22 11:24:42 2009
New Revision: 187588
URL: http://svn.freebsd.org/changeset/base/187588

Log:
  MFV of tzdata2009a
  
  - Asia/Katmandu -> Asia/Kathmandu
  - Fix historical references to DST in Switzerland
  - Correct rules for America/Resolute (Nunavut)
  - Cuba didn't have DST in 2005.
  
  MFC after:	1 week

Modified:
  head/share/zoneinfo/   (props changed)
  head/share/zoneinfo/asia
  head/share/zoneinfo/backward
  head/share/zoneinfo/europe
  head/share/zoneinfo/northamerica
  head/share/zoneinfo/zone.tab

Modified: head/share/zoneinfo/asia
==============================================================================
--- head/share/zoneinfo/asia	Thu Jan 22 11:22:01 2009	(r187587)
+++ head/share/zoneinfo/asia	Thu Jan 22 11:24:42 2009	(r187588)
@@ -1,4 +1,4 @@
-# @(#)asia	8.24
+# @(#)asia	8.25
 # 
 
 # This data is by no means authoritative; if you think you know better,
@@ -1474,7 +1474,7 @@ Zone	Asia/Choibalsan	7:38:00 -	LMT	1905 
 
 # Nepal
 # Zone	NAME		GMTOFF	RULES	FORMAT	[UNTIL]
-Zone	Asia/Katmandu	5:41:16 -	LMT	1920
+Zone	Asia/Kathmandu	5:41:16 -	LMT	1920
 			5:30	-	IST	1986
 			5:45	-	NPT	# Nepal Time
 

Modified: head/share/zoneinfo/backward
==============================================================================
--- head/share/zoneinfo/backward	Thu Jan 22 11:22:01 2009	(r187587)
+++ head/share/zoneinfo/backward	Thu Jan 22 11:24:42 2009	(r187588)
@@ -1,4 +1,4 @@
-# @(#)backward	8.6
+# @(#)backward	8.7
 
 # This file provides links between current names for time zones
 # and their old names.  Many names changed in late 1993.
@@ -24,6 +24,7 @@ Link	America/St_Thomas	America/Virgin
 Link	Asia/Ashgabat		Asia/Ashkhabad
 Link	Asia/Chongqing		Asia/Chungking
 Link	Asia/Dhaka		Asia/Dacca
+Link	Asia/Kathmandu		Asia/Katmandu
 Link	Asia/Kolkata		Asia/Calcutta
 Link	Asia/Macau		Asia/Macao
 Link	Asia/Jerusalem		Asia/Tel_Aviv

Modified: head/share/zoneinfo/europe
==============================================================================
--- head/share/zoneinfo/europe	Thu Jan 22 11:22:01 2009	(r187587)
+++ head/share/zoneinfo/europe	Thu Jan 22 11:24:42 2009	(r187588)
@@ -1,4 +1,4 @@
-# @(#)europe	8.18
+# @(#)europe	8.20
 # 
 
 # This data is by no means authoritative; if you think you know better,
@@ -2313,11 +2313,64 @@ Zone Europe/Stockholm	1:12:12 -	LMT	1879
 # mean time in preference to apparent time -- Geneva from 1780 ....
 # Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
 # From Whitman (who writes ``Midnight?''):
-Rule	Swiss	1940	only	-	Nov	 2	0:00	1:00	S
-Rule	Swiss	1940	only	-	Dec	31	0:00	0	-
+# Rule	Swiss	1940	only	-	Nov	 2	0:00	1:00	S
+# Rule	Swiss	1940	only	-	Dec	31	0:00	0	-
 # From Shanks & Pottenger:
-Rule	Swiss	1941	1942	-	May	Sun>=1	2:00	1:00	S
-Rule	Swiss	1941	1942	-	Oct	Sun>=1	0:00	0	-
+# Rule	Swiss	1941	1942	-	May	Sun>=1	2:00	1:00	S
+# Rule	Swiss	1941	1942	-	Oct	Sun>=1	0:00	0	-
+
+# From Alois Treindl (2008-12-17):
+# I have researched the DST usage in Switzerland during the 1940ies.
+#
+# As I wrote in an earlier message, I suspected the current tzdata values
+# to be wrong. This is now verified.
+#
+# I have found copies of the original ruling by the Swiss Federal
+# government, in 'Eidgen[o]ssische Gesetzessammlung 1941 and 1942' (Swiss
+# federal law collection)...
+#
+# DST began on Monday 5 May 1941, 1:00 am by shifting the clocks to 2:00 am
+# DST ended on Monday 6 Oct 1941, 2:00 am by shifting the clocks to 1:00 am.
+#
+# DST began on Monday, 4 May 1942 at 01:00 am
+# DST ended on Monday, 5 Oct 1942 at 02:00 am
+#
+# There was no DST in 1940, I have checked the law collection carefully.
+# It is also indicated by the fact that the 1942 entry in the law
+# collection points back to 1941 as a reference, but no reference to any
+# other years are made.
+#
+# Newspaper articles I have read in the archives on 6 May 1941 reported
+# about the introduction of DST (Sommerzeit in German) during the previous
+# night as an absolute novelty, because this was the first time that such
+# a thing had happened in Switzerland.
+#
+# I have also checked 1916, because one book source (Gabriel, Traite de
+# l'heure dans le monde) claims that Switzerland had DST in 1916. This is
+# false, no official document could be found. Probably Gabriel got misled
+# by references to Germany, which introduced DST in 1916 for the first time.
+#
+# The tzdata rules for Switzerland must be changed to:
+# Rule  Swiss   1941    1942    -       May     Mon>=1  1:00    1:00    S
+# Rule  Swiss   1941    1942    -       Oct     Mon>=1  2:00    0       -
+#
+# The 1940 rules must be deleted.
+#
+# One further detail for Switzerland, which is probably out of scope for
+# most users of tzdata:
+# The zone file
+# Zone    Europe/Zurich   0:34:08 -       LMT     1848 Sep 12
+#                          0:29:44 -       BMT     1894 Jun #Bern Mean Time
+#                          1:00    Swiss   CE%sT   1981
+#                          1:00    EU      CE%sT
+# describes all of Switzerland correctly, with the exception of
+# the Cantone Geneve (Geneva, Genf). Between 1848 and 1894 Geneve did not
+# follow Bern Mean Time but kept its own local mean time.
+# To represent this, an extra zone would be needed.
+
+# Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
+Rule	Swiss	1941	1942	-	May	Mon>=1	1:00	1:00	S
+Rule	Swiss	1941	1942	-	Oct	Mon>=1	2:00	0	-
 # Zone	NAME		GMTOFF	RULES	FORMAT	[UNTIL]
 Zone	Europe/Zurich	0:34:08 -	LMT	1848 Sep 12
 			0:29:44	-	BMT	1894 Jun # Bern Mean Time

Modified: head/share/zoneinfo/northamerica
==============================================================================
--- head/share/zoneinfo/northamerica	Thu Jan 22 11:22:01 2009	(r187587)
+++ head/share/zoneinfo/northamerica	Thu Jan 22 11:24:42 2009	(r187588)
@@ -1,4 +1,4 @@
-# @(#)northamerica	8.24
+# @(#)northamerica	8.26
 # 
 
 # also includes Central America and the Caribbean
@@ -1742,9 +1742,13 @@ Zone America/Dawson_Creek -8:00:56 -	LMT
 # The individual that answered the phone confirmed that the clocks did not
 # move at the end of daylight saving on October 29/2006.  He also told me that
 # the clocks did not move this past weekend (March 11/2007)....
-#
-# America/Resolute should use the "Canada" Rule up to October 29/2006.
-# After that it should be fixed on Eastern Standard Time until further notice.
+
+# From Chris Walton (2008-11-13):
+# ...the residents of Resolute believe that they are changing "time zones"
+# twice a year.  In winter months, local time is qualified with "Eastern
+# Time" which is really "Eastern Standard Time (UTC-5)".  In summer
+# months, local time is qualified with "Central Time" which is really
+# "Central Daylight Time (UTC-5)"...
 
 # Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
 Rule	NT_YK	1918	only	-	Apr	14	2:00	1:00	D
@@ -1772,11 +1776,14 @@ Zone America/Iqaluit	0	-	zzz	1942 Aug # 
 			-6:00	Canada	C%sT	2000 Oct 29 2:00
 			-5:00	Canada	E%sT
 # aka Qausuittuq
+# Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
+Rule	Resolute 2006	max	-	Nov	Sun>=1	2:00	0	ES
+Rule	Resolute 2007	max	-	Mar	Sun>=8	2:00	0	CD
 Zone America/Resolute	0	-	zzz	1947 Aug 31 # Resolute founded
 			-6:00	NT_YK	C%sT	2000 Oct 29 2:00
 			-5:00	-	EST	2001 Apr  1 3:00
 			-6:00	Canada	C%sT	2006 Oct 29 2:00
-			-5:00	-	EST
+			-5:00	Resolute	%sT
 # aka Kangiqiniq
 Zone America/Rankin_Inlet 0	-	zzz	1957 # Rankin Inlet founded
 			-6:00	NT_YK	C%sT	2000 Oct 29 2:00
@@ -2280,7 +2287,7 @@ Rule	Cuba	1996	only	-	Oct	 6	0:00s	0	S
 Rule	Cuba	1997	only	-	Oct	12	0:00s	0	S
 Rule	Cuba	1998	1999	-	Mar	lastSun	0:00s	1:00	D
 Rule	Cuba	1998	2003	-	Oct	lastSun	0:00s	0	S
-Rule	Cuba	2000	2006	-	Apr	Sun>=1	0:00s	1:00	D
+Rule	Cuba	2000	2004	-	Apr	Sun>=1	0:00s	1:00	D
 Rule	Cuba	2006	max	-	Oct	lastSun	0:00s	0	S
 Rule	Cuba	2007	only	-	Mar	Sun>=8	0:00s	1:00	D
 Rule	Cuba	2008	max	-	Mar	Sun>=15	0:00s	1:00	D

Modified: head/share/zoneinfo/zone.tab
==============================================================================
--- head/share/zoneinfo/zone.tab	Thu Jan 22 11:22:01 2009	(r187587)
+++ head/share/zoneinfo/zone.tab	Thu Jan 22 11:24:42 2009	(r187588)
@@ -1,4 +1,4 @@
-# @(#)zone.tab	8.21
+# @(#)zone.tab	8.26
 #
 # TZ zone descriptions
 #
@@ -116,7 +116,7 @@ CA	+4901-08816	America/Nipigon	Eastern T
 CA	+4823-08915	America/Thunder_Bay	Eastern Time - Thunder Bay, Ontario
 CA	+6344-06828	America/Iqaluit	Eastern Time - east Nunavut - most locations
 CA	+6608-06544	America/Pangnirtung	Eastern Time - Pangnirtung, Nunavut
-CA	+744144-0944945	America/Resolute	Eastern Time - Resolute, Nunavut
+CA	+744144-0944945	America/Resolute	Eastern Standard Time - Resolute, Nunavut
 CA	+484531-0913718	America/Atikokan	Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut
 CA	+624900-0920459	America/Rankin_Inlet	Central Time - central Nunavut
 CA	+4953-09709	America/Winnipeg	Central Time - Manitoba & west Ontario
@@ -292,7 +292,7 @@ NG	+0627+00324	Africa/Lagos
 NI	+1209-08617	America/Managua
 NL	+5222+00454	Europe/Amsterdam
 NO	+5955+01045	Europe/Oslo
-NP	+2743+08519	Asia/Katmandu
+NP	+2743+08519	Asia/Kathmandu
 NR	-0031+16655	Pacific/Nauru
 NU	-1901-16955	Pacific/Niue
 NZ	-3652+17446	Pacific/Auckland	most locations

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 11:41:46 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 8D1E21065672;
	Thu, 22 Jan 2009 11:41:46 +0000 (UTC)
	(envelope-from edwin@mavetju.org)
Received: from k7.mavetju.org (ppp121-44-45-171.lns10.syd7.internode.on.net
	[121.44.45.171])
	by mx1.freebsd.org (Postfix) with ESMTP id 416878FC0A;
	Thu, 22 Jan 2009 11:41:46 +0000 (UTC)
	(envelope-from edwin@mavetju.org)
Received: by k7.mavetju.org (Postfix, from userid 1001)
	id 46B5745049; Thu, 22 Jan 2009 22:24:57 +1100 (EST)
Date: Thu, 22 Jan 2009 22:24:57 +1100
From: Edwin Groothuis 
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-vendor@freebsd.org
Message-ID: <20090122112457.GA70689@mavetju.org>
References: <200901221122.n0MBM2K4011189@svn.freebsd.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200901221122.n0MBM2K4011189@svn.freebsd.org>
User-Agent: Mutt/1.4.2.3i
Cc: 
Subject: Re: svn commit: r187587 - vendor/tzdata/tzdata2009a
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 11:41:47 -0000

On Thu, Jan 22, 2009 at 11:22:02AM +0000, Edwin Groothuis wrote:
> Author: edwin
> Date: Thu Jan 22 11:22:01 2009
> New Revision: 187587
> URL: http://svn.freebsd.org/changeset/base/187587
> 
> Log:
>   MFV of tzdata2009a:

Tag of tzdata2009a that is.

-- 
Edwin Groothuis		Website: http://www.mavetju.org/
edwin@mavetju.org	Weblog:  http://www.mavetju.org/weblog/

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 15:35:55 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 3F8ED1065673;
	Thu, 22 Jan 2009 15:35:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 2F9D68FC16;
	Thu, 22 Jan 2009 15:35:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MFZs12015986;
	Thu, 22 Jan 2009 15:35:54 GMT (envelope-from jhb@svn.freebsd.org)
Received: (from jhb@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MFZspe015985;
	Thu, 22 Jan 2009 15:35:54 GMT (envelope-from jhb@svn.freebsd.org)
Message-Id: <200901221535.n0MFZspe015985@svn.freebsd.org>
From: John Baldwin 
Date: Thu, 22 Jan 2009 15:35:54 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187591 - head/sys/dev/ppbus
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 15:35:55 -0000

Author: jhb
Date: Thu Jan 22 15:35:54 2009
New Revision: 187591
URL: http://svn.freebsd.org/changeset/base/187591

Log:
  Fix a compile bogon.  'ppbus' is used by two different sets of debug code
  in lptout().
  
  Reported by:	several

Modified:
  head/sys/dev/ppbus/lpt.c

Modified: head/sys/dev/ppbus/lpt.c
==============================================================================
--- head/sys/dev/ppbus/lpt.c	Thu Jan 22 14:30:35 2009	(r187590)
+++ head/sys/dev/ppbus/lpt.c	Thu Jan 22 15:35:54 2009	(r187591)
@@ -447,7 +447,9 @@ lptout(void *arg)
 {
 	struct lpt_data *sc = arg;
 	device_t dev = sc->sc_dev;
+#if defined(INVARIANTS) || defined(LPT_DEBUG)
 	device_t ppbus = device_get_parent(dev);
+#endif
 
 	ppb_assert_locked(ppbus);
 	lprintf(("T %x ", ppb_rstr(ppbus)));

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 15:36:12 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 859121065692;
	Thu, 22 Jan 2009 15:36:12 +0000 (UTC)
	(envelope-from cognet@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 753628FC32;
	Thu, 22 Jan 2009 15:36:12 +0000 (UTC)
	(envelope-from cognet@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MFaCOL016028;
	Thu, 22 Jan 2009 15:36:12 GMT (envelope-from cognet@svn.freebsd.org)
Received: (from cognet@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MFaCb0016027;
	Thu, 22 Jan 2009 15:36:12 GMT (envelope-from cognet@svn.freebsd.org)
Message-Id: <200901221536.n0MFaCb0016027@svn.freebsd.org>
From: Olivier Houchard 
Date: Thu, 22 Jan 2009 15:36:12 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187592 - head/sys/arm/include
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 15:36:15 -0000

Author: cognet
Date: Thu Jan 22 15:36:11 2009
New Revision: 187592
URL: http://svn.freebsd.org/changeset/base/187592

Log:
  Add a comment explaining what ARM_KERN_DIRECTMAP is all about.
  
  Suggested by:	raj

Modified:
  head/sys/arm/include/vmparam.h

Modified: head/sys/arm/include/vmparam.h
==============================================================================
--- head/sys/arm/include/vmparam.h	Thu Jan 22 15:35:54 2009	(r187591)
+++ head/sys/arm/include/vmparam.h	Thu Jan 22 15:36:11 2009	(r187592)
@@ -97,6 +97,13 @@
 
 #define VM_MIN_ADDRESS          (0x00001000)
 #ifdef ARM_USE_SMALL_ALLOC
+/* 
+ * ARM_KERN_DIRECTMAP is used to make sure there's enough space between
+ * VM_MAXUSER_ADDRESS and KERNBASE to map the whole memory.
+ * It has to be a compile-time constant, even if arm_init_smallalloc(),
+ * which will do the mapping, gets the real amount of memory at runtime,
+ * because VM_MAXUSER_ADDRESS is a constant.
+ */
 #ifndef ARM_KERN_DIRECTMAP
 #define ARM_KERN_DIRECTMAP 512 * 1024 * 1024 /* 512 MB */
 #endif

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 15:41:54 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id E36FA1065670;
	Thu, 22 Jan 2009 15:41:54 +0000 (UTC) (envelope-from jhb@freebsd.org)
Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42])
	by mx1.freebsd.org (Postfix) with ESMTP id B61078FC18;
	Thu, 22 Jan 2009 15:41:54 +0000 (UTC) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net
	[98.109.39.197])
	by cyrus.watson.org (Postfix) with ESMTPSA id 5AF0E46B0C;
	Thu, 22 Jan 2009 10:41:54 -0500 (EST)
Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0)
	by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n0MFfgo0043174;
	Thu, 22 Jan 2009 10:41:48 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin 
To: Jeff Roberson 
Date: Thu, 22 Jan 2009 10:16:57 -0500
User-Agent: KMail/1.9.7
References: <200901212310.n0LNA6cM093944@svn.freebsd.org>
	<20090121204615.H983@desktop>
In-Reply-To: <20090121204615.H983@desktop>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200901221016.58349.jhb@freebsd.org>
X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by
	milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]);
	Thu, 22 Jan 2009 10:41:48 -0500 (EST)
X-Virus-Scanned: ClamAV 0.94.2/8892/Thu Jan 22 09:34:53 2009 on
	server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 
	autolearn=ham version=3.1.3
X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx
Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org,
	src-committers@freebsd.org
Subject: Re: svn commit: r187576 - in head/sys/dev: ppbus ppc
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 15:41:55 -0000

On Thursday 22 January 2009 1:48:43 am Jeff Roberson wrote:
> On Wed, 21 Jan 2009, John Baldwin wrote:
> 
> > Author: jhb
> > Date: Wed Jan 21 23:10:06 2009
> > New Revision: 187576
> > URL: http://svn.freebsd.org/changeset/base/187576
> >
> > Log:
> >  Add locking to ppc and ppbus and mark the whole lot MPSAFE:
> 
> Looks like there might be some kinks still:
> 
> ppc0:  port 0x378-0x37f,0x778-0x77f irq 7 drq 3 on acpi0
> ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
> ppc0: FIFO with 16/16/9 bytes threshold
> ppc0: [ITHREAD]
> ppbus0:  on ppc0
> panic: mutex ppc0 not owned at ../../../dev/ppc/ppc.c:1983
> cpuid = 0
> KDB: enter: panic
> [thread pid 0 tid 100000 ]
> Stopped at      kdb_enter+0x3d: movq    $0,0x652ea8(%rip)
> _mtx_assert() at _mtx_assert+0xdc
> ppc_write_ivar() at ppc_write_ivar+0x6e
> ppbus_attach() at ppbus_attach+0x14b

Grrr, I had booted this a while ago.  This should fix that particular 
assertion:

--- //depot/user/jhb/acpipci/dev/ppbus/ppbconf.c#20
+++ /home/jhb/work/p4/acpipci/dev/ppbus/ppbconf.c
@@ -393,8 +393,10 @@
 	ppb->ppc_irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
 	    RF_SHAREABLE);
 	if (ppb->ppc_irq_res != NULL) {
+		mtx_lock(ppb->ppc_lock);
 		error = BUS_WRITE_IVAR(device_get_parent(dev), dev,
 		    PPC_IVAR_INTR_HANDLER, (uintptr_t)&ppbus_intr);
+		mtx_unlock(ppb->ppc_lock);
 		if (error) {
 			device_printf(dev, "Unable to set interrupt handler\n");
 			return (error);

-- 
John Baldwin

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 15:52:13 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id B3EFC1065673;
	Thu, 22 Jan 2009 15:52:13 +0000 (UTC)
	(envelope-from n_hibma@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 992BA8FC1E;
	Thu, 22 Jan 2009 15:52:13 +0000 (UTC)
	(envelope-from n_hibma@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MFqD4m016337;
	Thu, 22 Jan 2009 15:52:13 GMT (envelope-from n_hibma@svn.freebsd.org)
Received: (from n_hibma@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MFqDSB016336;
	Thu, 22 Jan 2009 15:52:13 GMT (envelope-from n_hibma@svn.freebsd.org)
Message-Id: <200901221552.n0MFqDSB016336@svn.freebsd.org>
From: Nick Hibma 
Date: Thu, 22 Jan 2009 15:52:13 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187593 - stable/7/sys/dev/usb
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 15:52:14 -0000

Author: n_hibma
Date: Thu Jan 22 15:52:13 2009
New Revision: 187593
URL: http://svn.freebsd.org/changeset/base/187593

Log:
  MFC the IDs for the u3g MFC across.
  
  This fixes the build breakage introduced by me yesterday evening.

Modified:
  stable/7/sys/dev/usb/usbdevs

Modified: stable/7/sys/dev/usb/usbdevs
==============================================================================
--- stable/7/sys/dev/usb/usbdevs	Thu Jan 22 15:36:11 2009	(r187592)
+++ stable/7/sys/dev/usb/usbdevs	Thu Jan 22 15:52:13 2009	(r187593)
@@ -608,6 +608,7 @@ vendor GLOBALSUN	0x16ab	Global Sun Techn
 vendor ANYDATA		0x16d5	AnyDATA Corporation
 vendor JABLOTRON	0x16d6	Jablotron
 vendor CMOTECH		0x16d8	CMOTECH Co., Ltd.
+vendor AXESSTEL		0x1726  Axesstel Co., Ltd.
 vendor LINKSYS4		0x1737	Linksys
 vendor SENAO		0x1740	Senao
 vendor METAGEEK		0x1781	MetaGeek
@@ -829,6 +830,7 @@ product ANCHOR EZLINK		0x2720	EZLINK
 
 /* AnyData products */
 product ANYDATA ADU_E100X	0x6501	CDMA 2000 1xRTT/EV-DO USB Modem
+product ANYDATA ADU_500A	0x6502	CDMA 2000 EV-DO USB Modem
 
 /* AOX, Inc. products */
 product AOX USB101		0x0008	Ethernet
@@ -906,6 +908,9 @@ product ATMEL AT76C505A		0x7614	AT76c505
 /* Avision products */
 product AVISION 1200U		0x0268	1200U scanner
 
+/* Axesstel products */
+product AXESSTEL DATAMODEM	0x1000  Data Modem
+
 /* Baltech products */
 product BALTECH CARDREADER	0x9999	Card reader
 
@@ -1009,9 +1014,11 @@ product CISCOLINKSYS WUSB54GR	0x0023	WUS
 product CISCOLINKSYS WUSBF54G	0x0024	WUSBF54G
 
 /* CMOTECH products */
-product CMOTECH CNU510		0x5141	CMOTECH CDMA Technologies USB modem
+product CMOTECH XSSTICKDISK	0xf000	XSStick (disk mode)
+product CMOTECH CNU510		0x5141	CDMA Technologies USB modem
 product CMOTECH CNU550		0x5543	CDMA 2000 1xRTT/1xEVDO USB modem
-product CMOTECH CDMA_MODEM1	0x6280	CMOTECH CDMA Technologies USB modem
+product CMOTECH XSSTICKW12	0x6006	4G Systems XSStick W12
+product CMOTECH CDMA_MODEM1	0x6280	CDMA Technologies USB modem
 
 /* Compaq products */
 product COMPAQ IPAQPOCKETPC	0x0003	iPAQ PocketPC
@@ -1086,6 +1093,7 @@ product DALLAS J6502		0x4201	J-6502 spea
 product DELL PORT		0x0058	Port Replicator
 product DELL BC02		0x8000	BC02 Bluetooth USB Adapter
 product DELL TM350		0x8103	TrueMobile 350 Bluetooth USB Adapter
+product DELL U740		0x8135	Dell U740 CDMA
 
 /* Delorme Paublishing products */
 product DELORME EARTHMATE	0x0100	Earthmate GPS
@@ -1403,6 +1411,7 @@ product HTC SMARTPHONE		0x0a51	SmartPhon
 
 /* HUAWEI products */
 product HUAWEI MOBILE		0x1001	Huawei Mobile
+product HUAWEI E220		0x1003	Huawei HSDPA modem
 
 /* HUAWEI 3com products */
 product HUAWEI3COM WUB320G	0x0009	Aolynk WUB320g
@@ -1758,6 +1767,7 @@ product NEODIO ND5010		0x5010	Multi-form
 
 /* Netac products */
 product NETAC CF_CARD		0x1060	USB-CF-Card
+product NETAC ONLYDISK		0x0003	OnlyDisk
 
 /* NetChip Technology Products */
 product NETCHIP TURBOCONNECT	0x1080	Turbo-Connect
@@ -1788,13 +1798,21 @@ product NOVATECH NV902		0x9020	NovaTech 
 product NOVATECH RT2573		0x9021	RT2573
 
 /* Novatel Wireless products */
+product NOVATEL V640		0x1100	Merlin V620
 product NOVATEL CDMA_MODEM	0x1110	Novatel Wireless Merlin CDMA
 product NOVATEL V620		0x1110	Merlin V620
-product NOVATEL V720		0x1130	Merlin V720
 product NOVATEL V740		0x1120	Merlin V740
+product NOVATEL V720		0x1130	Merlin V720
 product NOVATEL U740		0x1400	Merlin U740
+product NOVATEL U740_2		0x1410	Merlin U740
+product NOVATEL U870		0x1420	Merlin U870
+product NOVATEL XU870		0x1430	Merlin XU870
+product NOVATEL X950D		0x1450	Merlin X950D
+product NOVATEL ES620		0x2100	ES620 CDMA
 product NOVATEL U720		0x2110	Merlin U720
 product NOVATEL U727		0x4100	Merlin U727 CDMA
+product NOVATEL MC950D		0x4400	Novatel MC950D HSUPA
+product NOVATEL ZEROCD		0x5010	Novatel ZeroCD
 product NOVATEL2 FLEXPACKGPS	0x0100	NovAtel FlexPack GPS receiver
 
 /* Merlin products */
@@ -1809,6 +1827,7 @@ product OMNIVISION OV511	0x0511	OV511 Ca
 product OMNIVISION OV511PLUS	0xa511	OV511+ Camera
 
 /* OnSpec Electronic, Inc. */
+product ONSPEC SDS_HOTFIND_D	0x0400	SDS-infrared.com Hotfind-D Infrared Camera
 product ONSPEC MDCFE_B_CF_READER	0xa000	MDCFE-B USB CF Reader
 product ONSPEC CFMS_RW		0xa001	SIIG/Datafab Memory Stick+CF Reader/Writer
 product ONSPEC READER		0xa003	Datafab-based Reader
@@ -1819,11 +1838,15 @@ product ONSPEC CFSM_COMBO	0xa109	USB to 
 product ONSPEC UCF100		0xa400	FlashLink UCF-100 CompactFlash Reader
 product ONSPEC2 IMAGEMATE_SDDR55	0xa103	ImageMate SDDR55
 
+
 /* Option products */
 product OPTION VODAFONEMC3G	0x5000	Vodafone Mobile Connect 3G datacard
 product OPTION GT3G		0x6000	GlobeTrotter 3G datacard
 product OPTION GT3GQUAD		0x6300	GlobeTrotter 3G QUAD datacard
 product OPTION GT3GPLUS		0x6600	GlobeTrotter 3G+ datacard
+product OPTION GTMAX36		0x6701	GlobeTrotter Max 3.6 Modem
+product OPTION GTMAXHSUPA	0x7001	GlobeTrotter HSUPA
+
 
 /* OQO */
 product OQO WIFI01		0x0002	model 01 WiFi interface
@@ -1946,6 +1969,7 @@ product QUALCOMM CDMA_MSM	0x6000	CDMA Te
 product QUALCOMM2 RWT_FCT	0x3100	RWT FCT-CDMA 2000 1xRTT modem
 product QUALCOMM2 CDMA_MSM	0x3196	CDMA Technologies MSM modem
 product QUALCOMMINC CDMA_MSM	0x0001	CDMA Technologies MSM modem
+product QUALCOMMINC ZTE_STOR	0x2000	USB ZTE Storage
 
 /* Qtronix products */
 product QTRONIX 980N		0x2011	Scorpion-980N keyboard
@@ -2056,9 +2080,32 @@ product SIEMENS3 X75		0x0004	X75
 
 /* Sierra Wireless products */
 product SIERRA AIRCARD580	0x0112	Sierra Wireless AirCard 580
+product SIERRA AIRCARD595	0x0019	Sierra Wireless AirCard 595
+product SIERRA AC595U		0x0120	Sierra Wireless AirCard 595U
+product SIERRA AC597E		0x0021	Sierra Wireless AirCard 597E
+product SIERRA C597		0x0023	Sierra Wireless Compass 597
+product SIERRA AC880		0x6850	Sierra Wireless AirCard 880
+product SIERRA AC881		0x6851	Sierra Wireless AirCard 881
+product SIERRA AC880E		0x6852	Sierra Wireless AirCard 880E
+product SIERRA AC881E		0x6853	Sierra Wireless AirCard 881E
+product SIERRA AC880U		0x6855	Sierra Wireless AirCard 880U
+product SIERRA AC881U		0x6856	Sierra Wireless AirCard 881U
+product SIERRA EM5625		0x0017	EM5625
 product SIERRA MC5720		0x0218	MC5720 Wireless Modem
+product SIERRA MC5720_2		0x0018	MC5720
+product SIERRA MC5725		0x0020	MC5725
+product SIERRA MINI5725		0x0220	Sierra Wireless miniPCI 5275
+product SIERRA MC8755_2		0x6802	MC8755
+product SIERRA MC8765		0x6803	MC8765
+product SIERRA MC8755		0x6804	MC8755
 product SIERRA AC875U		0x6812	AC875U HSDPA USB Modem
 product SIERRA MC8755_3		0x6813	MC8755 HSDPA
+product SIERRA MC8775_2		0x6815	MC8775
+product SIERRA AIRCARD875	0x6820	Aircard 875 HSDPA
+product SIERRA MC8780		0x6832	MC8780
+product SIERRA MC8781		0x6833	MC8781
+product SIERRA TRUINSTALL	0x0fff	Aircard Tru Installer
+
 
 /* Sigmatel products */
 product SIGMATEL I_BEAD100	0x8008	i-Bead 100 MP3 Player

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 17:06:34 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 17949106567C;
	Thu, 22 Jan 2009 17:06:34 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id EB30A8FC1A;
	Thu, 22 Jan 2009 17:06:33 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MH6XLD017770;
	Thu, 22 Jan 2009 17:06:33 GMT (envelope-from jkim@svn.freebsd.org)
Received: (from jkim@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MH6XN1017768;
	Thu, 22 Jan 2009 17:06:33 GMT (envelope-from jkim@svn.freebsd.org)
Message-Id: <200901221706.n0MH6XN1017768@svn.freebsd.org>
From: Jung-uk Kim 
Date: Thu, 22 Jan 2009 17:06:33 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187594 - in head/sys: compat/linprocfs i386/cpufreq
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 17:06:45 -0000

Author: jkim
Date: Thu Jan 22 17:06:33 2009
New Revision: 187594
URL: http://svn.freebsd.org/changeset/base/187594

Log:
  Replace couple of strcmp(cpu_vendor, "foo") with cpu_vendor_id for i386
  and hide i386-specific code under #ifdef.

Modified:
  head/sys/compat/linprocfs/linprocfs.c
  head/sys/i386/cpufreq/smist.c

Modified: head/sys/compat/linprocfs/linprocfs.c
==============================================================================
--- head/sys/compat/linprocfs/linprocfs.c	Thu Jan 22 15:52:13 2009	(r187593)
+++ head/sys/compat/linprocfs/linprocfs.c	Thu Jan 22 17:06:33 2009	(r187594)
@@ -276,11 +276,17 @@ linprocfs_docpuinfo(PFS_FILL_ARGS)
 
 	sbuf_cat(sb, "flags\t\t:");
 
-	if (!strcmp(cpu_vendor, "AuthenticAMD") && (class < 6)) {
-		flags[16] = "fcmov";
-	} else if (!strcmp(cpu_vendor, "CyrixInstead")) {
+#ifdef __i386__
+	switch (cpu_vendor_id) {
+	case CPU_VENDOR_AMD:
+		if (class < 6)
+			flags[16] = "fcmov";
+		break;
+	case CPU_VENDOR_CYRIX:
 		flags[24] = "cxmmx";
+		break;
 	}
+#endif
 
 	for (i = 0; i < 32; i++)
 		if (cpu_feature & (1 << i))

Modified: head/sys/i386/cpufreq/smist.c
==============================================================================
--- head/sys/i386/cpufreq/smist.c	Thu Jan 22 15:52:13 2009	(r187593)
+++ head/sys/i386/cpufreq/smist.c	Thu Jan 22 17:06:33 2009	(r187594)
@@ -285,7 +285,7 @@ smist_identify(driver_t *driver, device_
 		return;
 
 	/* Check for a supported processor */
-	if (strcmp(cpu_vendor, "GenuineIntel") != 0)
+	if (cpu_vendor_id != CPU_VENDOR_INTEL)
 		return;
 	switch (cpu_id & 0xff0) {
 	case 0x680:	/* Pentium III [coppermine] */

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 17:41:57 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 5DDDF106566C;
	Thu, 22 Jan 2009 17:41:57 +0000 (UTC) (envelope-from imp@bsdimp.com)
Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85])
	by mx1.freebsd.org (Postfix) with ESMTP id 079B28FC1A;
	Thu, 22 Jan 2009 17:41:56 +0000 (UTC) (envelope-from imp@bsdimp.com)
Received: from localhost (localhost [127.0.0.1])
	by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0MHeZqS049487;
	Thu, 22 Jan 2009 10:40:35 -0700 (MST) (envelope-from imp@bsdimp.com)
Date: Thu, 22 Jan 2009 10:41:14 -0700 (MST)
Message-Id: <20090122.104114.1927899760.imp@bsdimp.com>
To: jeff@FreeBSD.org
From: "M. Warner Losh" 
In-Reply-To: <200901220621.n0M6LU5v002745@svn.freebsd.org>
References: <200901220621.n0M6LU5v002745@svn.freebsd.org>
X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI)
Mime-Version: 1.0
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org,
	src-committers@FreeBSD.org
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 17:41:57 -0000

In message: <200901220621.n0M6LU5v002745@svn.freebsd.org>
            Jeff Roberson  writes:
: Author: jeff
: Date: Thu Jan 22 06:21:30 2009
: New Revision: 187580
: URL: http://svn.freebsd.org/changeset/base/187580
: 
: Log:
:    - Update my copyright.
: +# Copyright (c) 2002-2003, 2009, Jeffrey Roberson 

Stylistically, this should be 2002-2009.  We don't need to list each
and every year, so the project's policy is to list the earliest and
the latest year.

See, for example, http://www.oppedahl.com/copyrights/ for the
reasoning behind this.

Warner

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 18:43:47 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 4A2A2106566C;
	Thu, 22 Jan 2009 18:43:47 +0000 (UTC)
	(envelope-from schweikh@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 385AD8FC0C;
	Thu, 22 Jan 2009 18:43:47 +0000 (UTC)
	(envelope-from schweikh@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MIhlYN019602;
	Thu, 22 Jan 2009 18:43:47 GMT
	(envelope-from schweikh@svn.freebsd.org)
Received: (from schweikh@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MIhlkB019601;
	Thu, 22 Jan 2009 18:43:47 GMT
	(envelope-from schweikh@svn.freebsd.org)
Message-Id: <200901221843.n0MIhlkB019601@svn.freebsd.org>
From: Jens Schweikhardt 
Date: Thu, 22 Jan 2009 18:43:47 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187595 - stable/7/share/man/man7
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 18:43:48 -0000

Author: schweikh
Date: Thu Jan 22 18:43:46 2009
New Revision: 187595
URL: http://svn.freebsd.org/changeset/base/187595

Log:
  MFC: Correct typo.
  
  PR:		docs/129820
  Submitted by:	Marius Korsmo 

Modified:
  stable/7/share/man/man7/ports.7

Modified: stable/7/share/man/man7/ports.7
==============================================================================
--- stable/7/share/man/man7/ports.7	Thu Jan 22 17:06:33 2009	(r187594)
+++ stable/7/share/man/man7/ports.7	Thu Jan 22 18:43:46 2009	(r187595)
@@ -322,7 +322,7 @@ To find ports that contain
 in either of the name, path, info
 fields, ignore the rest of the record.
 .Pp
-By default the search is not case-nsensitive.
+By default the search is not case-sensitive.
 In order to make it case-sensitive you can use the
 .Va icase
 variable:

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 18:45:12 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 0A756106568B;
	Thu, 22 Jan 2009 18:45:12 +0000 (UTC)
	(envelope-from schweikh@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id EACB18FC35;
	Thu, 22 Jan 2009 18:45:11 +0000 (UTC)
	(envelope-from schweikh@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MIjB9r019687;
	Thu, 22 Jan 2009 18:45:11 GMT
	(envelope-from schweikh@svn.freebsd.org)
Received: (from schweikh@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MIjBp5019686;
	Thu, 22 Jan 2009 18:45:11 GMT
	(envelope-from schweikh@svn.freebsd.org)
Message-Id: <200901221845.n0MIjBp5019686@svn.freebsd.org>
From: Jens Schweikhardt 
Date: Thu, 22 Jan 2009 18:45:11 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org
X-SVN-Group: stable-6
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187596 - stable/6/share/man/man7
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 18:45:14 -0000

Author: schweikh
Date: Thu Jan 22 18:45:11 2009
New Revision: 187596
URL: http://svn.freebsd.org/changeset/base/187596

Log:
  MFC: Correct typo.
  
  PR:     docs/129820
  Submitted by:   Marius Korsmo 

Modified:
  stable/6/share/man/man7/ports.7

Modified: stable/6/share/man/man7/ports.7
==============================================================================
--- stable/6/share/man/man7/ports.7	Thu Jan 22 18:43:46 2009	(r187595)
+++ stable/6/share/man/man7/ports.7	Thu Jan 22 18:45:11 2009	(r187596)
@@ -320,7 +320,7 @@ To find ports that contain
 in either of the name, path, info
 fields, ignore the rest of the record.
 .Pp
-By default the search is not case-nsensitive.
+By default the search is not case-sensitive.
 In order to make it case-sensitive you can use the
 .Va icase
 variable:

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 18:48:03 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id BDEBC1065670;
	Thu, 22 Jan 2009 18:48:03 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42])
	by mx1.freebsd.org (Postfix) with ESMTP id 960D48FC26;
	Thu, 22 Jan 2009 18:48:03 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from fledge.watson.org (fledge.watson.org [65.122.17.41])
	by cyrus.watson.org (Postfix) with ESMTPS id 380ED46B09;
	Thu, 22 Jan 2009 13:48:03 -0500 (EST)
Date: Thu, 22 Jan 2009 18:48:03 +0000 (GMT)
From: Robert Watson 
X-X-Sender: robert@fledge.watson.org
To: "M. Warner Losh" 
In-Reply-To: <20090122.104114.1927899760.imp@bsdimp.com>
Message-ID: 
References: <200901220621.n0M6LU5v002745@svn.freebsd.org>
	<20090122.104114.1927899760.imp@bsdimp.com>
User-Agent: Alpine 2.00 (BSF 1167 2008-08-23)
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
Cc: svn-src-head@FreeBSD.org, jeff@FreeBSD.org, src-committers@FreeBSD.org,
	svn-src-all@FreeBSD.org
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 18:48:05 -0000

On Thu, 22 Jan 2009, M. Warner Losh wrote:

> In message: <200901220621.n0M6LU5v002745@svn.freebsd.org>
>            Jeff Roberson  writes:
> : Author: jeff
> : Date: Thu Jan 22 06:21:30 2009
> : New Revision: 187580
> : URL: http://svn.freebsd.org/changeset/base/187580
> :
> : Log:
> :    - Update my copyright.
> : +# Copyright (c) 2002-2003, 2009, Jeffrey Roberson 
>
> Stylistically, this should be 2002-2009.  We don't need to list each and 
> every year, so the project's policy is to list the earliest and the latest 
> year.
>
> See, for example, http://www.oppedahl.com/copyrights/ for the reasoning 
> behind this.

FWIW, the one case where I don't really do that is when I worked on some code 
on my own and hence hold the copyright for it, then did some work under a 
contract for a customer on it such that they own the copyright on 
enhancements, and then I do some further work on my own.  In that case, I'll 
leave a discontinuity to reflect the fact that the copyright on changes made 
in the gap were assigned elsewhere.  Not clear this is the right thing to do, 
but I'm fairly sure at least some of my customers are more comfortable with 
that as it leaves no confusion in the source as to which bits they 
sponsored/own.

Robert N M Watson
Computer Laboratory
University of Cambridge

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 19:42:27 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 43FF010656CE;
	Thu, 22 Jan 2009 19:42:27 +0000 (UTC)
	(envelope-from thompsa@FreeBSD.org)
Received: from pele.citylink.co.nz (pele.citylink.co.nz [202.8.44.226])
	by mx1.freebsd.org (Postfix) with ESMTP id 008C28FC29;
	Thu, 22 Jan 2009 19:42:26 +0000 (UTC)
	(envelope-from thompsa@FreeBSD.org)
Received: from localhost (localhost [127.0.0.1])
	by pele.citylink.co.nz (Postfix) with ESMTP id 647D9FEEE;
	Fri, 23 Jan 2009 08:42:26 +1300 (NZDT)
X-Virus-Scanned: Debian amavisd-new at citylink.co.nz
Received: from pele.citylink.co.nz ([127.0.0.1])
	by localhost (pele.citylink.co.nz [127.0.0.1]) (amavisd-new, port 10024)
	with ESMTP id I9qKDwte7fVN; Fri, 23 Jan 2009 08:42:23 +1300 (NZDT)
Received: from citylink.fud.org.nz (unknown [202.8.44.45])
	by pele.citylink.co.nz (Postfix) with ESMTP;
	Fri, 23 Jan 2009 08:42:23 +1300 (NZDT)
Received: by citylink.fud.org.nz (Postfix, from userid 1001)
	id 812291142D; Fri, 23 Jan 2009 08:42:22 +1300 (NZDT)
Date: Thu, 22 Jan 2009 11:42:22 -0800
From: Andrew Thompson 
To: Jung-uk Kim 
Message-ID: <20090122194222.GC84458@citylink.fud.org.nz>
References: <200901221706.n0MH6XN1017768@svn.freebsd.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200901221706.n0MH6XN1017768@svn.freebsd.org>
User-Agent: Mutt/1.5.17 (2007-11-01)
Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org,
	src-committers@freebsd.org
Subject: Re: svn commit: r187594 - in head/sys: compat/linprocfs i386/cpufreq
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 19:42:28 -0000

On Thu, Jan 22, 2009 at 05:06:33PM +0000, Jung-uk Kim wrote:
> Author: jkim
> Date: Thu Jan 22 17:06:33 2009
> New Revision: 187594
> URL: http://svn.freebsd.org/changeset/base/187594
> 
> Log:
>   Replace couple of strcmp(cpu_vendor, "foo") with cpu_vendor_id for i386
>   and hide i386-specific code under #ifdef.
> 
> Modified:
>   head/sys/compat/linprocfs/linprocfs.c
>   head/sys/i386/cpufreq/smist.c
> 
> Modified: head/sys/i386/cpufreq/smist.c
> ==============================================================================
> --- head/sys/i386/cpufreq/smist.c	Thu Jan 22 15:52:13 2009	(r187593)
> +++ head/sys/i386/cpufreq/smist.c	Thu Jan 22 17:06:33 2009	(r187594)
> @@ -285,7 +285,7 @@ smist_identify(driver_t *driver, device_
>  		return;
>  
>  	/* Check for a supported processor */
> -	if (strcmp(cpu_vendor, "GenuineIntel") != 0)
> +	if (cpu_vendor_id != CPU_VENDOR_INTEL)
>  		return;
>  	switch (cpu_id & 0xff0) {
>  	case 0x680:	/* Pentium III [coppermine] */

This needs 


cheers,
Andrew

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 20:24:54 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 983DE106566C;
	Thu, 22 Jan 2009 20:24:54 +0000 (UTC)
	(envelope-from sobomax@FreeBSD.org)
Received: from sippysoft.com (gk1.360sip.com [72.236.70.240])
	by mx1.freebsd.org (Postfix) with ESMTP id 44BA08FC20;
	Thu, 22 Jan 2009 20:24:54 +0000 (UTC)
	(envelope-from sobomax@FreeBSD.org)
Received: from [192.168.1.38] (S0106001372fd1e07.vs.shawcable.net
	[70.71.171.106]) (authenticated bits=0)
	by sippysoft.com (8.13.8/8.13.8) with ESMTP id n0MKOqLU048519
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Thu, 22 Jan 2009 12:24:53 -0800 (PST)
	(envelope-from sobomax@FreeBSD.org)
Message-ID: <4978D5F9.50506@FreeBSD.org>
Date: Thu, 22 Jan 2009 12:24:25 -0800
From: Maxim Sobolev 
Organization: Sippy Software, Inc.
User-Agent: Thunderbird 2.0.0.19 (Windows/20081209)
MIME-Version: 1.0
To: Jung-uk Kim 
References: <200901221706.n0MH6XN1017768@svn.freebsd.org>
In-Reply-To: <200901221706.n0MH6XN1017768@svn.freebsd.org>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org,
	src-committers@FreeBSD.org
Subject: Re: svn: head/sys: compat/linprocfs i386/cpufreq
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 20:24:55 -0000

Jung-uk Kim wrote:
> Author: jkim
> Date: Thu Jan 22 17:06:33 2009
> New Revision: 187594
> URL: http://svn.freebsd.org/changeset/base/187594
> 
> Log:
>   Replace couple of strcmp(cpu_vendor, "foo") with cpu_vendor_id for i386

What about amd64?

-Maxim

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 20:29:07 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 5B3081065680;
	Thu, 22 Jan 2009 20:29:07 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 49E468FC22;
	Thu, 22 Jan 2009 20:29:07 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MKT70Z021554;
	Thu, 22 Jan 2009 20:29:07 GMT (envelope-from jkim@svn.freebsd.org)
Received: (from jkim@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MKT7pU021553;
	Thu, 22 Jan 2009 20:29:07 GMT (envelope-from jkim@svn.freebsd.org)
Message-Id: <200901222029.n0MKT7pU021553@svn.freebsd.org>
From: Jung-uk Kim 
Date: Thu, 22 Jan 2009 20:29:07 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187597 - head/sys/i386/cpufreq
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 20:29:08 -0000

Author: jkim
Date: Thu Jan 22 20:29:07 2009
New Revision: 187597
URL: http://svn.freebsd.org/changeset/base/187597

Log:
  Include a missing header file.
  
  Reported by:	thompsa, "build universe"

Modified:
  head/sys/i386/cpufreq/smist.c

Modified: head/sys/i386/cpufreq/smist.c
==============================================================================
--- head/sys/i386/cpufreq/smist.c	Thu Jan 22 18:45:11 2009	(r187596)
+++ head/sys/i386/cpufreq/smist.c	Thu Jan 22 20:29:07 2009	(r187597)
@@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$");
 #include 
 
 #include 
+#include 
 #include 
 #include 
 

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 20:36:40 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from [127.0.0.1] (freefall.freebsd.org [IPv6:2001:4f8:fff6::28])
	by hub.freebsd.org (Postfix) with ESMTP id 44E3E10656C1;
	Thu, 22 Jan 2009 20:36:39 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
From: Jung-uk Kim 
To: Maxim Sobolev 
Date: Thu, 22 Jan 2009 15:36:17 -0500
User-Agent: KMail/1.6.2
References: <200901221706.n0MH6XN1017768@svn.freebsd.org>
	<4978D5F9.50506@FreeBSD.org>
In-Reply-To: <4978D5F9.50506@FreeBSD.org>
MIME-Version: 1.0
Content-Disposition: inline
Content-Type: text/plain;
  charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Message-Id: <200901221536.19137.jkim@FreeBSD.org>
Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org,
	src-committers@FreeBSD.org
Subject: Re: svn: head/sys: compat/linprocfs i386/cpufreq
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 20:36:41 -0000

On Thursday 22 January 2009 03:24 pm, Maxim Sobolev wrote:
> Jung-uk Kim wrote:
> > Author: jkim
> > Date: Thu Jan 22 17:06:33 2009
> > New Revision: 187594
> > URL: http://svn.freebsd.org/changeset/base/187594
> >
> > Log:
> >   Replace couple of strcmp(cpu_vendor, "foo") with cpu_vendor_id
> > for i386
>
> What about amd64?

It is #ifdef'ed out in linprocfs.c and smist.c is i386-specific, i.e., 
it does not compile on amd64.

Jung-uk Kim

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 20:55:12 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 3827710656D3;
	Thu, 22 Jan 2009 20:55:11 +0000 (UTC)
	(envelope-from ivoras@gmail.com)
Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.157])
	by mx1.freebsd.org (Postfix) with ESMTP id C60598FC14;
	Thu, 22 Jan 2009 20:55:10 +0000 (UTC)
	(envelope-from ivoras@gmail.com)
Received: by fg-out-1718.google.com with SMTP id l26so2774008fgb.35
	for ; Thu, 22 Jan 2009 12:55:10 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=domainkey-signature:mime-version:sender:received:in-reply-to
	:references:date:x-google-sender-auth:message-id:subject:from:to:cc
	:content-type:content-transfer-encoding;
	bh=tZGMEXptN6+/huVpBK29a+xBi4v8hpnTE2rmwGQEyvM=;
	b=vBo0npuSq9crf0d6Is6GEl6es9sJ4t4xRhxavzS47WVU01yeiuBS7ImrTGOavmt8vX
	x47kn7I/WuQTPZXIH4oTlM7SAvnYzZzuOxksNHaOTHFXPPl9wPUscTVx2SXs2gWGyJp7
	4ieNVrzV8ldKoqivYT7pOakhn/DmCloBSjYHg=
DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma;
	h=mime-version:sender:in-reply-to:references:date
	:x-google-sender-auth:message-id:subject:from:to:cc:content-type
	:content-transfer-encoding;
	b=YOr0JERaLkCC0q8VnDWeS3V9LoDcpXzSPCZQgWvg2c8HXYdhtv8xfXR6liZB2amdSd
	BsiwrNBz8cR4S/ywmu94v9WwH/PS8ro3zE1A8QMBXkwK4ioG8m4sA4kbStZ6G3spZ7/9
	r8sqKoqtYwMzBwhN1ejqF/MELP0ns/q7yQLKI=
MIME-Version: 1.0
Sender: ivoras@gmail.com
Received: by 10.181.154.16 with SMTP id g16mr3428279bko.179.1232657709853; 
	Thu, 22 Jan 2009 12:55:09 -0800 (PST)
In-Reply-To: 
References: <200901220621.n0M6LU5v002745@svn.freebsd.org>
	<20090122.104114.1927899760.imp@bsdimp.com>
	
Date: Thu, 22 Jan 2009 21:55:09 +0100
X-Google-Sender-Auth: bf54f4c895920d90
Message-ID: <9bbcef730901221255u5767d16bo230da23542a171d7@mail.gmail.com>
From: Ivan Voras 
To: Robert Watson 
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
Cc: svn-src-head@freebsd.org, jeff@freebsd.org, src-committers@freebsd.org,
	svn-src-all@freebsd.org, "M. Warner Losh" 
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 20:55:13 -0000

2009/1/22 Robert Watson :

> FWIW, the one case where I don't really do that is when I worked on some
> code on my own and hence hold the copyright for it, then did some work under
> a contract for a customer on it such that they own the copyright on
> enhancements, and then I do some further work on my own.  In that case, I'll
> leave a discontinuity to reflect the fact that the copyright on changes made
> in the gap were assigned elsewhere.  Not clear this is the right thing to
> do, but I'm fairly sure at least some of my customers are more comfortable
> with that as it leaves no confusion in the source as to which bits they
> sponsored/own.

Of course this is purely cosmetic as "one year" is a terrible
granularity for commits to a moving target :)

(i.e. legally it's worthless information)

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 21:04:46 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id B1EF9106566B;
	Thu, 22 Jan 2009 21:04:46 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id A039A8FC1D;
	Thu, 22 Jan 2009 21:04:46 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ML4knS022268;
	Thu, 22 Jan 2009 21:04:46 GMT (envelope-from jkim@svn.freebsd.org)
Received: (from jkim@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ML4kh6022266;
	Thu, 22 Jan 2009 21:04:46 GMT (envelope-from jkim@svn.freebsd.org)
Message-Id: <200901222104.n0ML4kh6022266@svn.freebsd.org>
From: Jung-uk Kim 
Date: Thu, 22 Jan 2009 21:04:46 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187598 - in head/sys: amd64/amd64 i386/i386
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 21:04:47 -0000

Author: jkim
Date: Thu Jan 22 21:04:46 2009
New Revision: 187598
URL: http://svn.freebsd.org/changeset/base/187598

Log:
  VIA Nano processor has a special MSR (CENT_HARDWARECTRL3) bit 32 to determine
  whether TSC is P-state invariant or not.  In fact, this MSR is writable but
  we just leave it at the BIOS default for now.

Modified:
  head/sys/amd64/amd64/identcpu.c
  head/sys/i386/i386/identcpu.c

Modified: head/sys/amd64/amd64/identcpu.c
==============================================================================
--- head/sys/amd64/amd64/identcpu.c	Thu Jan 22 20:29:07 2009	(r187597)
+++ head/sys/amd64/amd64/identcpu.c	Thu Jan 22 21:04:46 2009	(r187598)
@@ -392,7 +392,8 @@ printcpuinfo(void)
 				break;
 			case CPU_VENDOR_CENTAUR:
 				if (AMD64_CPU_FAMILY(cpu_id) == 0x6 &&
-				    AMD64_CPU_MODEL(cpu_id) >= 0xf)
+				    AMD64_CPU_MODEL(cpu_id) >= 0xf &&
+				    (rdmsr(0x1203) & 0x100000000ULL) == 0)
 					tsc_is_invariant = 1;
 				break;
 			}

Modified: head/sys/i386/i386/identcpu.c
==============================================================================
--- head/sys/i386/i386/identcpu.c	Thu Jan 22 20:29:07 2009	(r187597)
+++ head/sys/i386/i386/identcpu.c	Thu Jan 22 21:04:46 2009	(r187598)
@@ -887,7 +887,8 @@ printcpuinfo(void)
 				break;
 			case CPU_VENDOR_CENTAUR:
 				if (I386_CPU_FAMILY(cpu_id) == 0x6 &&
-				    I386_CPU_MODEL(cpu_id) >= 0xf)
+				    I386_CPU_MODEL(cpu_id) >= 0xf &&
+				    (rdmsr(0x1203) & 0x100000000ULL) == 0)
 					tsc_is_invariant = 1;
 				break;
 			}

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 21:54:27 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 31894106566B;
	Thu, 22 Jan 2009 21:54:27 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 1E84F8FC0A;
	Thu, 22 Jan 2009 21:54:27 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MLsRd4023146;
	Thu, 22 Jan 2009 21:54:27 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MLsRbh023144;
	Thu, 22 Jan 2009 21:54:27 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <200901222154.n0MLsRbh023144@svn.freebsd.org>
From: Warner Losh 
Date: Thu, 22 Jan 2009 21:54:27 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187599 - head/sys/arm/at91
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 21:54:27 -0000

Author: imp
Date: Thu Jan 22 21:54:26 2009
New Revision: 187599
URL: http://svn.freebsd.org/changeset/base/187599

Log:
  Store at91_master_clock in a global variable as opposed to a compile
  time constant.  This allows us to potentially change it at runtime or
  autodetect it early in the boot (the latter being much more likely to
  have a good outcome).

Modified:
  head/sys/arm/at91/at91.c
  head/sys/arm/at91/at91var.h

Modified: head/sys/arm/at91/at91.c
==============================================================================
--- head/sys/arm/at91/at91.c	Thu Jan 22 21:04:46 2009	(r187598)
+++ head/sys/arm/at91/at91.c	Thu Jan 22 21:54:26 2009	(r187599)
@@ -50,6 +50,8 @@ static struct at91_softc *at91_softc;
 
 static void at91_eoi(void *);
 
+uint32_t at91_master_clock = AT91C_MASTER_CLOCK;
+
 static int
 at91_bs_map(void *t, bus_addr_t bpa, bus_size_t size, int flags,
     bus_space_handle_t *bshp)

Modified: head/sys/arm/at91/at91var.h
==============================================================================
--- head/sys/arm/at91/at91var.h	Thu Jan 22 21:04:46 2009	(r187598)
+++ head/sys/arm/at91/at91var.h	Thu Jan 22 21:54:26 2009	(r187599)
@@ -43,4 +43,6 @@ struct at91_ivar {
 	struct resource_list resources;
 };
 
+extern uint32_t at91_master_clock;
+
 #endif /* _AT91VAR_H_ */

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 21:55:04 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id B3E441065672;
	Thu, 22 Jan 2009 21:55:04 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id A01E18FC18;
	Thu, 22 Jan 2009 21:55:04 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MLt4CS023210;
	Thu, 22 Jan 2009 21:55:04 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MLt4mf023209;
	Thu, 22 Jan 2009 21:55:04 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <200901222155.n0MLt4mf023209@svn.freebsd.org>
From: Warner Losh 
Date: Thu, 22 Jan 2009 21:55:04 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187600 - head/sys/arm/at91
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 21:55:05 -0000

Author: imp
Date: Thu Jan 22 21:55:04 2009
New Revision: 187600
URL: http://svn.freebsd.org/changeset/base/187600

Log:
  Remove now-redundant declaration.

Modified:
  head/sys/arm/at91/at91_mci.c

Modified: head/sys/arm/at91/at91_mci.c
==============================================================================
--- head/sys/arm/at91/at91_mci.c	Thu Jan 22 21:54:26 2009	(r187599)
+++ head/sys/arm/at91/at91_mci.c	Thu Jan 22 21:55:04 2009	(r187600)
@@ -277,7 +277,6 @@ at91_mci_getaddr(void *arg, bus_dma_segm
 static int
 at91_mci_update_ios(device_t brdev, device_t reqdev)
 {
-	uint32_t at91_master_clock = AT91C_MASTER_CLOCK;
 	struct at91_mci_softc *sc;
 	struct mmc_host *host;
 	struct mmc_ios *ios;

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 21:55:38 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 120D5106566C;
	Thu, 22 Jan 2009 21:55:38 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id F2FB08FC1B;
	Thu, 22 Jan 2009 21:55:37 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MLtboM023255;
	Thu, 22 Jan 2009 21:55:37 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MLtbLj023253;
	Thu, 22 Jan 2009 21:55:37 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <200901222155.n0MLtbLj023253@svn.freebsd.org>
From: Warner Losh 
Date: Thu, 22 Jan 2009 21:55:37 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187601 - head/sys/arm/at91
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 21:55:39 -0000

Author: imp
Date: Thu Jan 22 21:55:37 2009
New Revision: 187601
URL: http://svn.freebsd.org/changeset/base/187601

Log:
  Use at91_master_clock instead of AT91C_MASTER_CLOCK.

Modified:
  head/sys/arm/at91/at91_twi.c
  head/sys/arm/at91/at91_twireg.h

Modified: head/sys/arm/at91/at91_twi.c
==============================================================================
--- head/sys/arm/at91/at91_twi.c	Thu Jan 22 21:55:04 2009	(r187600)
+++ head/sys/arm/at91/at91_twi.c	Thu Jan 22 21:55:37 2009	(r187601)
@@ -41,6 +41,7 @@ __FBSDID("$FreeBSD$");
 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -128,7 +129,7 @@ at91_twi_attach(device_t dev)
 		AT91_TWI_LOCK_DESTROY(sc);
 		goto out;
 	}
-	sc->cwgr = TWI_CWGR_CKDIV(8 * AT91C_MASTER_CLOCK / TWI_FASTEST_CLOCK) |
+	sc->cwgr = TWI_CWGR_CKDIV(8 * at91_master_clock / TWI_FASTEST_CLOCK) |
 	    TWI_CWGR_CHDIV(TWI_CWGR_DIV(TWI_DEF_CLK)) |
 	    TWI_CWGR_CLDIV(TWI_CWGR_DIV(TWI_DEF_CLK));
 	WR4(sc, TWI_CR, TWI_CR_SWRST);

Modified: head/sys/arm/at91/at91_twireg.h
==============================================================================
--- head/sys/arm/at91/at91_twireg.h	Thu Jan 22 21:55:04 2009	(r187600)
+++ head/sys/arm/at91/at91_twireg.h	Thu Jan 22 21:55:37 2009	(r187601)
@@ -63,7 +63,7 @@
 #define TWI_CWGR_CKDIV(x) ((x) << 16)	/* Clock Divider */
 #define TWI_CWGR_CHDIV(x) ((x) << 8)	/* Clock High Divider */
 #define TWI_CWGR_CLDIV(x) ((x) << 0)	/* Clock Low Divider */
-#define TWI_CWGR_DIV(rate) ((AT91C_MASTER_CLOCK /(4*(rate))) - 2)
+#define TWI_CWGR_DIV(rate) ((at91_master_clock /(4*(rate))) - 2)
 
 /* TWI_SR */
 /* TWI_IER */

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 21:56:41 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7B07A106566B;
	Thu, 22 Jan 2009 21:56:41 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 5D0F58FC14;
	Thu, 22 Jan 2009 21:56:41 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MLuffw023314;
	Thu, 22 Jan 2009 21:56:41 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MLufpn023311;
	Thu, 22 Jan 2009 21:56:41 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <200901222156.n0MLufpn023311@svn.freebsd.org>
From: Warner Losh 
Date: Thu, 22 Jan 2009 21:56:41 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187602 - head/sys/arm/at91
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 21:56:41 -0000

Author: imp
Date: Thu Jan 22 21:56:41 2009
New Revision: 187602
URL: http://svn.freebsd.org/changeset/base/187602

Log:
  Migrate towards using at91_master_clock.  Initialize the clocks for
  the serial port class when we set the devclass since it is now
  no-longer a compile time constant.  Eliminate the pci include, as it
  isn't relevant or necessary.

Modified:
  head/sys/arm/at91/uart_bus_at91usart.c
  head/sys/arm/at91/uart_cpu_at91rm9200usart.c
  head/sys/arm/at91/uart_dev_at91usart.c

Modified: head/sys/arm/at91/uart_bus_at91usart.c
==============================================================================
--- head/sys/arm/at91/uart_bus_at91usart.c	Thu Jan 22 21:55:37 2009	(r187601)
+++ head/sys/arm/at91/uart_bus_at91usart.c	Thu Jan 22 21:56:41 2009	(r187602)
@@ -38,13 +38,12 @@ __FBSDID("$FreeBSD$");
 #include 
 #include 
 
-#include 
-
 #include 
 #include 
 #include 
 
 #include 
+#include 
 
 #include "uart_if.h"
 
@@ -103,6 +102,8 @@ usart_at91rm92_probe(device_t dev)
 		break;
 	}
 	sc->sc_class = &at91_usart_class;
+	if (sc->sc_class->uc_rclk == 0)
+		sc->sc_class->uc_rclk = at91_master_clock;
 	return (uart_bus_probe(dev, 0, 0, 0, device_get_unit(dev)));
 }
 

Modified: head/sys/arm/at91/uart_cpu_at91rm9200usart.c
==============================================================================
--- head/sys/arm/at91/uart_cpu_at91rm9200usart.c	Thu Jan 22 21:55:37 2009	(r187601)
+++ head/sys/arm/at91/uart_cpu_at91rm9200usart.c	Thu Jan 22 21:56:41 2009	(r187602)
@@ -35,12 +35,16 @@ __FBSDID("$FreeBSD$");
 #include 
 #include 
 #include 
+#include 
+#include 
 #include 
 
 #include 
+#include 
 #include 
 
 #include 
+#include 
 
 bus_space_tag_t uart_bus_space_io;
 bus_space_tag_t uart_bus_space_mem;
@@ -60,6 +64,8 @@ uart_cpu_getdev(int devtype, struct uart
 	struct uart_class *class;
 
 	class = &at91_usart_class;
+	if (class->uc_rclk == 0)
+		class->uc_rclk = at91_master_clock;
 	di->ops = uart_getops(class);
 	di->bas.chan = 0;
 	di->bas.bst = &at91_bs_tag;

Modified: head/sys/arm/at91/uart_dev_at91usart.c
==============================================================================
--- head/sys/arm/at91/uart_dev_at91usart.c	Thu Jan 22 21:55:37 2009	(r187601)
+++ head/sys/arm/at91/uart_dev_at91usart.c	Thu Jan 22 21:56:41 2009	(r187602)
@@ -45,10 +45,11 @@ __FBSDID("$FreeBSD$");
 #include 
 #include 
 #include 
+#include 
 
 #include "uart_if.h"
 
-#define DEFAULT_RCLK		AT91C_MASTER_CLOCK
+#define DEFAULT_RCLK		at91_master_clock
 #define	USART_BUFFER_SIZE	128
 
 /*
@@ -684,6 +685,5 @@ struct uart_class at91_usart_class = {
 	at91_usart_methods,
 	sizeof(struct at91_usart_softc),
 	.uc_ops = &at91_usart_ops,
-	.uc_range = 8,
-	.uc_rclk = DEFAULT_RCLK
+	.uc_range = 8
 };

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 22:29:21 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 66D04106566C;
	Thu, 22 Jan 2009 22:29:21 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 526DD8FC17;
	Thu, 22 Jan 2009 22:29:21 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MMTLg5024142;
	Thu, 22 Jan 2009 22:29:21 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MMTLdF024141;
	Thu, 22 Jan 2009 22:29:21 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <200901222229.n0MMTLdF024141@svn.freebsd.org>
From: Warner Losh 
Date: Thu, 22 Jan 2009 22:29:21 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187603 - head/sys/arm/at91
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 22:29:22 -0000

Author: imp
Date: Thu Jan 22 22:29:21 2009
New Revision: 187603
URL: http://svn.freebsd.org/changeset/base/187603

Log:
  Don't over-commit the DMA.  Use the passed in size of the transfer
  rather than a fixed 512...  This fixes the mount root problem on at91.
  Prior to the SD card reorg, all data transfers were 512 bytes, so we
  didn't notice.

Modified:
  head/sys/arm/at91/at91_mci.c

Modified: head/sys/arm/at91/at91_mci.c
==============================================================================
--- head/sys/arm/at91/at91_mci.c	Thu Jan 22 21:56:41 2009	(r187602)
+++ head/sys/arm/at91/at91_mci.c	Thu Jan 22 22:29:21 2009	(r187603)
@@ -313,7 +313,6 @@ at91_mci_start_cmd(struct at91_mci_softc
 	int i;
 	struct mmc_data *data;
 	struct mmc_request *req;
-	size_t block_size = 1 << 9;	// Fixed, per mmc/sd spec for 2GB cards
 	void *vaddr;
 	bus_addr_t paddr;
 
@@ -355,7 +354,7 @@ at91_mci_start_cmd(struct at91_mci_softc
 	// Set block size and turn on PDC mode for dma xfer and disable
 	// PDC until we're ready.
 	mr = RD4(sc, MCI_MR) & ~MCI_MR_BLKLEN;
-	WR4(sc, MCI_MR, mr | (block_size << 16) | MCI_MR_PDCMODE);
+	WR4(sc, MCI_MR, mr | (data->len << 16) | MCI_MR_PDCMODE);
 	WR4(sc, PDC_PTCR, PDC_PTCR_RXTDIS | PDC_PTCR_TXTDIS);
 	if (cmdr & MCI_CMDR_TRCMD_START) {
 		if (cmdr & MCI_CMDR_TRDIR)

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 22:58:59 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 4FC171065707;
	Thu, 22 Jan 2009 22:58:59 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42])
	by mx1.freebsd.org (Postfix) with ESMTP id 218DB8FC19;
	Thu, 22 Jan 2009 22:58:59 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from fledge.watson.org (fledge.watson.org [65.122.17.41])
	by cyrus.watson.org (Postfix) with ESMTPS id BA04446B09;
	Thu, 22 Jan 2009 17:58:58 -0500 (EST)
Date: Thu, 22 Jan 2009 22:58:58 +0000 (GMT)
From: Robert Watson 
X-X-Sender: robert@fledge.watson.org
To: Ivan Voras 
In-Reply-To: <9bbcef730901221255u5767d16bo230da23542a171d7@mail.gmail.com>
Message-ID: 
References: <200901220621.n0M6LU5v002745@svn.freebsd.org>
	<20090122.104114.1927899760.imp@bsdimp.com>
	
	<9bbcef730901221255u5767d16bo230da23542a171d7@mail.gmail.com>
User-Agent: Alpine 2.00 (BSF 1167 2008-08-23)
MIME-Version: 1.0
Content-Type: MULTIPART/MIXED;
	BOUNDARY="621616949-1415937769-1232665138=:66510"
Cc: svn-src-head@freebsd.org, jeff@freebsd.org, src-committers@freebsd.org,
	svn-src-all@freebsd.org, "M. Warner Losh" 
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 22:59:00 -0000

  This message is in MIME format.  The first part should be readable text,
  while the remaining parts are likely unreadable without MIME-aware tools.

--621616949-1415937769-1232665138=:66510
Content-Type: TEXT/PLAIN; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8BIT

On Thu, 22 Jan 2009, Ivan Voras wrote:

> 2009/1/22 Robert Watson :
>
>> FWIW, the one case where I don't really do that is when I worked on some 
>> code on my own and hence hold the copyright for it, then did some work 
>> under a contract for a customer on it such that they own the copyright on 
>> enhancements, and then I do some further work on my own.  In that case, 
>> I'll leave a discontinuity to reflect the fact that the copyright on 
>> changes made in the gap were assigned elsewhere.  Not clear this is the 
>> right thing to do, but I'm fairly sure at least some of my customers are 
>> more comfortable with that as it leaves no confusion in the source as to 
>> which bits they sponsored/own.
>
> Of course this is purely cosmetic as "one year" is a terrible granularity 
> for commits to a moving target :)
>
> (i.e. legally it's worthless information)

Sorry, that simply isn't the case, as copyright expiration doesn't track the 
exact moment at which something was created.  Copyright law varies by country, 
but US copyright law is of particular importance to the FreeBSD Project, so I 
direct you to the US Copyright Office's rather helpful circular 92, which 
provides a useful summary:

   § 305. Duration of copyright: Terminal date

   All terms of copyright provided by sections 302 through 304 run to the end
   of the calendar year in which they would otherwise expire.

So the year of creation really is the date that matters. And as nebulous as 
the far-off expiration of copyright dates may seem to you now, remember that: 
(a) we work on software that includes copyrights almost 30 years old, and (b) 
copyright law has an annoying propensity to change out from under you.

Robert N M Watson
Computer Laboratory
University of Cambridge
--621616949-1415937769-1232665138=:66510--

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 23:00:45 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id BE2FE106567A;
	Thu, 22 Jan 2009 23:00:45 +0000 (UTC) (envelope-from imp@bsdimp.com)
Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85])
	by mx1.freebsd.org (Postfix) with ESMTP id 7394F8FC1A;
	Thu, 22 Jan 2009 23:00:45 +0000 (UTC) (envelope-from imp@bsdimp.com)
Received: from localhost (localhost [127.0.0.1])
	by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0MMw6Tb054105;
	Thu, 22 Jan 2009 15:58:06 -0700 (MST) (envelope-from imp@bsdimp.com)
Date: Thu, 22 Jan 2009 15:58:45 -0700 (MST)
Message-Id: <20090122.155845.-928179489.imp@bsdimp.com>
To: rwatson@FreeBSD.org
From: "M. Warner Losh" 
In-Reply-To: 
References: <200901220621.n0M6LU5v002745@svn.freebsd.org>
	<20090122.104114.1927899760.imp@bsdimp.com>
	
X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI)
Mime-Version: 1.0
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Cc: svn-src-head@FreeBSD.org, jeff@FreeBSD.org, src-committers@FreeBSD.org,
	svn-src-all@FreeBSD.org
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 23:00:46 -0000

In message: 
            Robert Watson  writes:
: On Thu, 22 Jan 2009, M. Warner Losh wrote:
: 
: > In message: <200901220621.n0M6LU5v002745@svn.freebsd.org>
: >            Jeff Roberson  writes:
: > : Author: jeff
: > : Date: Thu Jan 22 06:21:30 2009
: > : New Revision: 187580
: > : URL: http://svn.freebsd.org/changeset/base/187580
: > :
: > : Log:
: > :    - Update my copyright.
: > : +# Copyright (c) 2002-2003, 2009, Jeffrey Roberson 
: >
: > Stylistically, this should be 2002-2009.  We don't need to list each and 
: > every year, so the project's policy is to list the earliest and the latest 
: > year.
: >
: > See, for example, http://www.oppedahl.com/copyrights/ for the reasoning 
: > behind this.
: 
: FWIW, the one case where I don't really do that is when I worked on some code 
: on my own and hence hold the copyright for it, then did some work under a 
: contract for a customer on it such that they own the copyright on 
: enhancements, and then I do some further work on my own.  In that case, I'll 
: leave a discontinuity to reflect the fact that the copyright on changes made 
: in the gap were assigned elsewhere.  Not clear this is the right thing to do, 
: but I'm fairly sure at least some of my customers are more comfortable with 
: that as it leaves no confusion in the source as to which bits they 
: sponsored/own.

True, but that's a fairly rare circumstance relative to the project as
a whole.

Warner

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 23:03:15 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id D9274106566C;
	Thu, 22 Jan 2009 23:03:15 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42])
	by mx1.freebsd.org (Postfix) with ESMTP id AD6588FC1E;
	Thu, 22 Jan 2009 23:03:15 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from fledge.watson.org (fledge.watson.org [65.122.17.41])
	by cyrus.watson.org (Postfix) with ESMTPS id 6674246B06;
	Thu, 22 Jan 2009 18:03:15 -0500 (EST)
Date: Thu, 22 Jan 2009 23:03:15 +0000 (GMT)
From: Robert Watson 
X-X-Sender: robert@fledge.watson.org
To: "M. Warner Losh" 
In-Reply-To: <20090122.155845.-928179489.imp@bsdimp.com>
Message-ID: 
References: <200901220621.n0M6LU5v002745@svn.freebsd.org>
	<20090122.104114.1927899760.imp@bsdimp.com>
	
	<20090122.155845.-928179489.imp@bsdimp.com>
User-Agent: Alpine 2.00 (BSF 1167 2008-08-23)
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
Cc: svn-src-head@FreeBSD.org, jeff@FreeBSD.org, src-committers@FreeBSD.org,
	svn-src-all@FreeBSD.org
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 23:03:16 -0000

On Thu, 22 Jan 2009, M. Warner Losh wrote:

> : FWIW, the one case where I don't really do that is when I worked on some code
> : on my own and hence hold the copyright for it, then did some work under a
> : contract for a customer on it such that they own the copyright on
> : enhancements, and then I do some further work on my own.  In that case, I'll
> : leave a discontinuity to reflect the fact that the copyright on changes made
> : in the gap were assigned elsewhere.  Not clear this is the right thing to do,
> : but I'm fairly sure at least some of my customers are more comfortable with
> : that as it leaves no confusion in the source as to which bits they
> : sponsored/own.
>
> True, but that's a fairly rare circumstance relative to the project as a 
> whole.

Possibly, but I also think that while most committers are quite careful about 
getting the permission of their employers to release code, many are less 
careful than they should be about attributing copyright to their employers as 
they may not understand the implications of work-for-hire.

Robert N M Watson
Computer Laboratory
University of Cambridge

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 23:06:41 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id A3FE6106567A;
	Thu, 22 Jan 2009 23:06:41 +0000 (UTC) (envelope-from imp@bsdimp.com)
Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85])
	by mx1.freebsd.org (Postfix) with ESMTP id 3A1538FC1A;
	Thu, 22 Jan 2009 23:06:41 +0000 (UTC) (envelope-from imp@bsdimp.com)
Received: from localhost (localhost [127.0.0.1])
	by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0MN3V66054227;
	Thu, 22 Jan 2009 16:03:31 -0700 (MST) (envelope-from imp@bsdimp.com)
Date: Thu, 22 Jan 2009 16:04:10 -0700 (MST)
Message-Id: <20090122.160410.-1305646724.imp@bsdimp.com>
To: rwatson@FreeBSD.org
From: "M. Warner Losh" 
In-Reply-To: 
References: 
	<9bbcef730901221255u5767d16bo230da23542a171d7@mail.gmail.com>
	
X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI)
Mime-Version: 1.0
Content-Type: Text/Plain; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable
Cc: svn-src-head@FreeBSD.org, jeff@FreeBSD.org, src-committers@FreeBSD.org,
	ivoras@FreeBSD.org, svn-src-all@FreeBSD.org
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 23:06:42 -0000

In message: 
            Robert Watson  writes:
: On Thu, 22 Jan 2009, Ivan Voras wrote:
: =

: > 2009/1/22 Robert Watson :
: >
: >> FWIW, the one case where I don't really do that is when I worked o=
n some =

: >> code on my own and hence hold the copyright for it, then did some =
work =

: >> under a contract for a customer on it such that they own the copyr=
ight on =

: >> enhancements, and then I do some further work on my own.  In that =
case, =

: >> I'll leave a discontinuity to reflect the fact that the copyright =
on =

: >> changes made in the gap were assigned elsewhere.  Not clear this i=
s the =

: >> right thing to do, but I'm fairly sure at least some of my custome=
rs are =

: >> more comfortable with that as it leaves no confusion in the source=
 as to =

: >> which bits they sponsored/own.
: >
: > Of course this is purely cosmetic as "one year" is a terrible granu=
larity =

: > for commits to a moving target :)
: >
: > (i.e. legally it's worthless information)
: =

: Sorry, that simply isn't the case, as copyright expiration doesn't tr=
ack the =

: exact moment at which something was created.  Copyright law varies by=
 country, =

: but US copyright law is of particular importance to the FreeBSD Proje=
ct, so I =

: direct you to the US Copyright Office's rather helpful circular 92, w=
hich =

: provides a useful summary:
: =

:    =A7 305. Duration of copyright: Terminal date
: =

:    All terms of copyright provided by sections 302 through 304 run to=
 the end
:    of the calendar year in which they would otherwise expire.
: =

: So the year of creation really is the date that matters. And as nebul=
ous as =

: the far-off expiration of copyright dates may seem to you now, rememb=
er that: =

: (a) we work on software that includes copyrights almost 30 years old,=
 and (b) =

: copyright law has an annoying propensity to change out from under you=
.=


Also, works fixed in tangible form in the last half of the year expire
as if they'd been fixed in that form in the following year.  Which is
why you see books 'Copyright (c) 2009' starting in about October...

Warner

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 23:08:23 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 2F6E8106564A;
	Thu, 22 Jan 2009 23:08:23 +0000 (UTC)
	(envelope-from sobomax@FreeBSD.org)
Received: from sippysoft.com (gk1.360sip.com [72.236.70.240])
	by mx1.freebsd.org (Postfix) with ESMTP id E58758FC12;
	Thu, 22 Jan 2009 23:08:22 +0000 (UTC)
	(envelope-from sobomax@FreeBSD.org)
Received: from [192.168.1.38] (S0106001372fd1e07.vs.shawcable.net
	[70.71.171.106]) (authenticated bits=0)
	by sippysoft.com (8.13.8/8.13.8) with ESMTP id n0MN8LEm057063
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Thu, 22 Jan 2009 15:08:22 -0800 (PST)
	(envelope-from sobomax@FreeBSD.org)
Message-ID: <4978FC49.9080806@FreeBSD.org>
Date: Thu, 22 Jan 2009 15:07:53 -0800
From: Maxim Sobolev 
Organization: Sippy Software, Inc.
User-Agent: Thunderbird 2.0.0.19 (Windows/20081209)
MIME-Version: 1.0
To: Jung-uk Kim 
References: <200901221706.n0MH6XN1017768@svn.freebsd.org>
	<4978D5F9.50506@FreeBSD.org> <200901221536.19137.jkim@FreeBSD.org>
In-Reply-To: <200901221536.19137.jkim@FreeBSD.org>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org,
	src-committers@FreeBSD.org
Subject: Re: svn: head/sys: compat/linprocfs i386/cpufreq
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 23:08:23 -0000

Jung-uk Kim wrote:
> On Thursday 22 January 2009 03:24 pm, Maxim Sobolev wrote:
>> Jung-uk Kim wrote:
>>> Author: jkim
>>> Date: Thu Jan 22 17:06:33 2009
>>> New Revision: 187594
>>> URL: http://svn.freebsd.org/changeset/base/187594
>>>
>>> Log:
>>>   Replace couple of strcmp(cpu_vendor, "foo") with cpu_vendor_id
>>> for i386
>> What about amd64?
> 
> It is #ifdef'ed out in linprocfs.c and smist.c is i386-specific, i.e., 
> it does not compile on amd64.

No, it's not. The function linprocfs_docpuinfo() are the same for both 
amd64 and i386, so that you've just broken it for amd64 with this commit.

-Maxim

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 23:10:09 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 5C3281065675;
	Thu, 22 Jan 2009 23:10:09 +0000 (UTC) (envelope-from imp@bsdimp.com)
Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85])
	by mx1.freebsd.org (Postfix) with ESMTP id EF50F8FC0C;
	Thu, 22 Jan 2009 23:10:08 +0000 (UTC) (envelope-from imp@bsdimp.com)
Received: from localhost (localhost [127.0.0.1])
	by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n0MN7KDd054286;
	Thu, 22 Jan 2009 16:07:20 -0700 (MST) (envelope-from imp@bsdimp.com)
Date: Thu, 22 Jan 2009 16:07:59 -0700 (MST)
Message-Id: <20090122.160759.1633422730.imp@bsdimp.com>
To: rwatson@FreeBSD.org
From: "M. Warner Losh" 
In-Reply-To: 
References: 
	<20090122.155845.-928179489.imp@bsdimp.com>
	
X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI)
Mime-Version: 1.0
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Cc: svn-src-head@FreeBSD.org, jeff@FreeBSD.org, src-committers@FreeBSD.org,
	svn-src-all@FreeBSD.org
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 23:10:12 -0000

In message: 
            Robert Watson  writes:
: On Thu, 22 Jan 2009, M. Warner Losh wrote:
: 
: > : FWIW, the one case where I don't really do that is when I worked on some code
: > : on my own and hence hold the copyright for it, then did some work under a
: > : contract for a customer on it such that they own the copyright on
: > : enhancements, and then I do some further work on my own.  In that case, I'll
: > : leave a discontinuity to reflect the fact that the copyright on changes made
: > : in the gap were assigned elsewhere.  Not clear this is the right thing to do,
: > : but I'm fairly sure at least some of my customers are more comfortable with
: > : that as it leaves no confusion in the source as to which bits they
: > : sponsored/own.
: >
: > True, but that's a fairly rare circumstance relative to the project as a 
: > whole.
: 
: Possibly, but I also think that while most committers are quite careful about 
: getting the permission of their employers to release code, many are less 
: careful than they should be about attributing copyright to their employers as 
: they may not understand the implications of work-for-hire.

Very true.

Warner

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 23:25:29 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 13A261065673;
	Thu, 22 Jan 2009 23:25:29 +0000 (UTC)
	(envelope-from luigi@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id F15DE8FC0C;
	Thu, 22 Jan 2009 23:25:28 +0000 (UTC)
	(envelope-from luigi@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MNPSqR025185;
	Thu, 22 Jan 2009 23:25:28 GMT (envelope-from luigi@svn.freebsd.org)
Received: (from luigi@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MNPSnD025183;
	Thu, 22 Jan 2009 23:25:28 GMT (envelope-from luigi@svn.freebsd.org)
Message-Id: <200901222325.n0MNPSnD025183@svn.freebsd.org>
From: Luigi Rizzo 
Date: Thu, 22 Jan 2009 23:25:28 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187604 - head/sbin/ipfw
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 23:25:29 -0000

Author: luigi
Date: Thu Jan 22 23:25:28 2009
New Revision: 187604
URL: http://svn.freebsd.org/changeset/base/187604

Log:
  remove some useless #include,
  document why timeconv.h is needed
  
  MFC after:	3 days

Modified:
  head/sbin/ipfw/ipfw2.c

Modified: head/sbin/ipfw/ipfw2.c
==============================================================================
--- head/sbin/ipfw/ipfw2.c	Thu Jan 22 22:29:21 2009	(r187603)
+++ head/sbin/ipfw/ipfw2.c	Thu Jan 22 23:25:28 2009	(r187604)
@@ -20,30 +20,24 @@
  * $FreeBSD$
  */
 
-#include 
-#include 
+#include 
 #include 
 #include 
 #include 
-#include 
 #include 
-#include 
 
 #include 
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
 #include 
 #include 
-#include 
 #include 
-#include 	/* XXX do we need this ? */
-#include 
 #include 
+#include 	/* _long_to_time */
 #include 
 #include 
 

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 23:34:55 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id C32381065672;
	Thu, 22 Jan 2009 23:34:55 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id AB8278FC17;
	Thu, 22 Jan 2009 23:34:55 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0MNYtvB025399;
	Thu, 22 Jan 2009 23:34:55 GMT (envelope-from bz@svn.freebsd.org)
Received: (from bz@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0MNYt7r025398;
	Thu, 22 Jan 2009 23:34:55 GMT (envelope-from bz@svn.freebsd.org)
Message-Id: <200901222334.n0MNYt7r025398@svn.freebsd.org>
From: "Bjoern A. Zeeb" 
Date: Thu, 22 Jan 2009 23:34:55 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187605 - in stable/7/sys: . compat/freebsd32
	contrib/pf dev/cxgb
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 23:34:56 -0000

Author: bz
Date: Thu Jan 22 23:34:55 2009
New Revision: 187605
URL: http://svn.freebsd.org/changeset/base/187605

Log:
  MFC: r185898
  
    Add 32-bit compat support for AIO.
  
    As I had comitted this as a fix for r185878 in HEAD, it seems
    this was missed with the MFC at r187559. Unbreak the build.

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/compat/freebsd32/freebsd32_signal.h
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)

Modified: stable/7/sys/compat/freebsd32/freebsd32_signal.h
==============================================================================
--- stable/7/sys/compat/freebsd32/freebsd32_signal.h	Thu Jan 22 23:25:28 2009	(r187604)
+++ stable/7/sys/compat/freebsd32/freebsd32_signal.h	Thu Jan 22 23:34:55 2009	(r187605)
@@ -36,6 +36,9 @@ struct sigaltstack32 {
 };
 
 union sigval32 {
+	int			sival_int;
+	u_int32_t		sival_ptr;
+	/* 6.0 compatibility */
 	int			sigval_int;
 	u_int32_t		sigval_ptr;
 };
@@ -70,6 +73,29 @@ struct siginfo32 {
 	} _reason;
 };
 
+struct osigevent32 {
+	int	sigev_notify;		/* Notification type */
+	union {
+		int	__sigev_signo;	/* Signal number */
+		int	__sigev_notify_kqueue;
+	} __sigev_u;
+	union sigval32 sigev_value;	/* Signal value */
+};
+
+struct sigevent32 {
+	int	sigev_notify;		/* Notification type */
+	int	sigev_signo;		/* Signal number */
+	union sigval32 sigev_value;	/* Signal value */
+	union {
+		__lwpid_t	_threadid;
+		struct {
+			uint32_t _function;
+			uint32_t _attribute;
+		} _sigev_thread;
+		uint32_t __spare__[8];
+	} _sigev_un;
+};
+
 void siginfo_to_siginfo32(siginfo_t *src, struct siginfo32 *dst);
 
 #endif /* !_COMPAT_FREEBSD32_SIGNAL_H_ */

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 23:35:07 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7C0B21065679;
	Thu, 22 Jan 2009 23:35:07 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from mail.cksoft.de (mail.cksoft.de [62.111.66.27])
	by mx1.freebsd.org (Postfix) with ESMTP id 238C58FC12;
	Thu, 22 Jan 2009 23:35:07 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from localhost (amavis.str.cksoft.de [192.168.74.71])
	by mail.cksoft.de (Postfix) with ESMTP id 520F741C615;
	Fri, 23 Jan 2009 00:35:06 +0100 (CET)
X-Virus-Scanned: amavisd-new at cksoft.de
Received: from mail.cksoft.de ([62.111.66.27])
	by localhost (amavis.str.cksoft.de [192.168.74.71]) (amavisd-new,
	port 10024)
	with ESMTP id RvYPliorkkWa; Fri, 23 Jan 2009 00:35:06 +0100 (CET)
Received: by mail.cksoft.de (Postfix, from userid 66)
	id 039E441C60F; Fri, 23 Jan 2009 00:35:06 +0100 (CET)
Received: from maildrop.int.zabbadoz.net (maildrop.int.zabbadoz.net
	[10.111.66.10])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mail.int.zabbadoz.net (Postfix) with ESMTP id 399664448D5;
	Thu, 22 Jan 2009 23:31:20 +0000 (UTC)
Date: Thu, 22 Jan 2009 23:31:20 +0000 (UTC)
From: "Bjoern A. Zeeb" 
X-X-Sender: bz@maildrop.int.zabbadoz.net
To: John Baldwin 
In-Reply-To: <200812111532.17651.jhb@freebsd.org>
Message-ID: <20090122233042.P45399@maildrop.int.zabbadoz.net>
References: <200812102056.mBAKuJ97042379@svn.freebsd.org>
	<49415FFD.5070400@gritton.org> <200812111532.17651.jhb@freebsd.org>
X-OpenPGP-Key: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org,
	src-committers@freebsd.org, James Gritton 
Subject: Re: svn commit: r185878 - in head/sys: compat/freebsd32 kern
 modules/aio
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 23:35:08 -0000

On Thu, 11 Dec 2008, John Baldwin wrote:

> On Thursday 11 December 2008 01:46:21 pm James Gritton wrote:
>> freebsd32_aio_waitcomplete() has a small error:
>>
>> @@ -2824,7 +2824,7 @@
>>  freebsd32_aio_waitcomplete(struct thread *td,
>>      struct freebsd32_aio_waitcomplete_args *uap)
>>  {
>> -    struct timespec ts32;
>> +    struct timespec32 ts32;
>>     struct timespec ts, *tsp;
>>     int error;
>>
>> - Jamie
>
> Oof. :(  I think my aiotest thing doesn't call aio_waitcomplete() so I missed
> this. :(

I think this has never been fixed in HEAD?

-- 
Bjoern A. Zeeb                      The greatest risk is not taking one.

From owner-svn-src-all@FreeBSD.ORG  Thu Jan 22 23:50:51 2009
Return-Path: 
Delivered-To: svn-src-all@FreeBSD.org
Received: from [127.0.0.1] (freefall.freebsd.org [IPv6:2001:4f8:fff6::28])
	by hub.freebsd.org (Postfix) with ESMTP id 916A41065713;
	Thu, 22 Jan 2009 23:50:50 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
From: Jung-uk Kim 
To: Maxim Sobolev 
Date: Thu, 22 Jan 2009 18:50:36 -0500
User-Agent: KMail/1.6.2
References: <200901221706.n0MH6XN1017768@svn.freebsd.org>
	<200901221536.19137.jkim@FreeBSD.org>
	<4978FC49.9080806@FreeBSD.org>
In-Reply-To: <4978FC49.9080806@FreeBSD.org>
MIME-Version: 1.0
Content-Disposition: inline
Content-Type: text/plain;
  charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Message-Id: <200901221850.37708.jkim@FreeBSD.org>
Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org,
	src-committers@FreeBSD.org
Subject: Re: svn: head/sys: compat/linprocfs i386/cpufreq
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 22 Jan 2009 23:50:51 -0000

On Thursday 22 January 2009 06:07 pm, Maxim Sobolev wrote:
> Jung-uk Kim wrote:
> > On Thursday 22 January 2009 03:24 pm, Maxim Sobolev wrote:
> >> Jung-uk Kim wrote:
> >>> Author: jkim
> >>> Date: Thu Jan 22 17:06:33 2009
> >>> New Revision: 187594
> >>> URL: http://svn.freebsd.org/changeset/base/187594
> >>>
> >>> Log:
> >>>   Replace couple of strcmp(cpu_vendor, "foo") with
> >>> cpu_vendor_id for i386
> >>
> >> What about amd64?
> >
> > It is #ifdef'ed out in linprocfs.c and smist.c is i386-specific,
> > i.e., it does not compile on amd64.
>
> No, it's not. The function linprocfs_docpuinfo() are the same for
> both amd64 and i386, so that you've just broken it for amd64 with
> this commit.

#ifdef was added with it:

http://docs.freebsd.org/cgi/mid.cgi?200901221706.n0MH6XN1017768

Jung-uk Kim

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 00:19:16 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7BD29106564A;
	Fri, 23 Jan 2009 00:19:16 +0000 (UTC)
	(envelope-from ivoras@gmail.com)
Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.152])
	by mx1.freebsd.org (Postfix) with ESMTP id 4B0538FC17;
	Fri, 23 Jan 2009 00:19:15 +0000 (UTC)
	(envelope-from ivoras@gmail.com)
Received: by fg-out-1718.google.com with SMTP id l26so2844337fgb.35
	for ; Thu, 22 Jan 2009 16:19:14 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
	h=domainkey-signature:mime-version:sender:received:in-reply-to
	:references:date:x-google-sender-auth:message-id:subject:from:to:cc
	:content-type:content-transfer-encoding;
	bh=1ct1D7vdlwVppfHoDB9nGJrimR3i5gGh/JjSS1p545E=;
	b=MPspI9XI4iXq916KBeN0HmdZsXMTIdtOafohu35k/lQuFIWY44ZASYFEhw/Nl1kGtF
	bSz1I8719VXnhXg8GWNeG+j+KRrVMS+dII/a8TlKoXCImlyAkQs1e6vbRbGkCXcTZwfX
	HAZzpVPr4SV25y+zKfHQZP3BGaxOhbZSL2hCQ=
DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma;
	h=mime-version:sender:in-reply-to:references:date
	:x-google-sender-auth:message-id:subject:from:to:cc:content-type
	:content-transfer-encoding;
	b=gowDr1gKbtsvrCGqVqqOZ62Yp0y4Y5XxpiYORp7vC3D4EkSHYrlUbB1dlzpLyQw/nP
	mNOE/Ty/HUEPQGtonuAGR1wKuGae7+u/oU+SJZDW55x8HVqn0hO2AEUdDrBFzIcIsa6E
	CYuaJwPqOIiQUjM/zZyFQ8/GGfS9EMFTMuORM=
MIME-Version: 1.0
Sender: ivoras@gmail.com
Received: by 10.181.199.6 with SMTP id b6mr796067bkq.68.1232669953822; Thu, 22 
	Jan 2009 16:19:13 -0800 (PST)
In-Reply-To: 
References: <200901220621.n0M6LU5v002745@svn.freebsd.org>
	<20090122.104114.1927899760.imp@bsdimp.com>
	
	<9bbcef730901221255u5767d16bo230da23542a171d7@mail.gmail.com>
	
Date: Fri, 23 Jan 2009 01:19:13 +0100
X-Google-Sender-Auth: 6041d85ad9255ca7
Message-ID: <9bbcef730901221619x390f3daau8104cf8912c4a237@mail.gmail.com>
From: Ivan Voras 
To: Robert Watson 
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
Cc: svn-src-head@freebsd.org, jeff@freebsd.org, src-committers@freebsd.org,
	svn-src-all@freebsd.org, "M. Warner Losh" 
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 00:19:17 -0000

2009/1/22 Robert Watson :
> On Thu, 22 Jan 2009, Ivan Voras wrote:
>
>> 2009/1/22 Robert Watson :
>>
>>> FWIW, the one case where I don't really do that is when I worked on som=
e
>>> code on my own and hence hold the copyright for it, then did some work =
under
>>> a contract for a customer on it such that they own the copyright on
>>> enhancements, and then I do some further work on my own.  In that case,=
 I'll
>>> leave a discontinuity to reflect the fact that the copyright on changes=
 made
>>> in the gap were assigned elsewhere.  Not clear this is the right thing =
to
>>> do, but I'm fairly sure at least some of my customers are more comforta=
ble
>>> with that as it leaves no confusion in the source as to which bits they
>>> sponsored/own.
>>
>> Of course this is purely cosmetic as "one year" is a terrible granularit=
y
>> for commits to a moving target :)
>>
>> (i.e. legally it's worthless information)
>
> Sorry, that simply isn't the case, as copyright expiration doesn't track =
the
> exact moment at which something was created.  Copyright law varies by
> country, but US copyright law is of particular importance to the FreeBSD
> Project, so I direct you to the US Copyright Office's rather helpful
> circular 92, which provides a useful summary:
>
>  =C2=A7 305. Duration of copyright: Terminal date
>
>  All terms of copyright provided by sections 302 through 304 run to the e=
nd
>  of the calendar year in which they would otherwise expire.
>
> So the year of creation really is the date that matters. And as nebulous =
as
> the far-off expiration of copyright dates may seem to you now, remember
> that: (a) we work on software that includes copyrights almost 30 years ol=
d,
> and (b) copyright law has an annoying propensity to change out from under
> you.

Thanks!

I'm not a lawyer (very obviously - no talent for it all :) ) and was
probably wrongly interpreting the Geneva copyright convention.

Can someone write a "practical guide to FreeBSD copyright matters for
developers" somewhere - wiki perhaps? (it could also include
GPL-related guidelines - GPLv3 even if there's consensus about it).

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 00:51:26 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 2A1DE1065672;
	Fri, 23 Jan 2009 00:51:26 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 091478FC23;
	Fri, 23 Jan 2009 00:51:26 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N0pPXO026782;
	Fri, 23 Jan 2009 00:51:25 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N0pPTp026781;
	Fri, 23 Jan 2009 00:51:25 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <200901230051.n0N0pPTp026781@svn.freebsd.org>
From: Warner Losh 
Date: Fri, 23 Jan 2009 00:51:25 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187606 - head/sys/arm/at91
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 00:51:26 -0000

Author: imp
Date: Fri Jan 23 00:51:25 2009
New Revision: 187606
URL: http://svn.freebsd.org/changeset/base/187606

Log:
  Move to having a caps flag.  Newer versions of the AT91 family don't
  need the bouncing, so save a few copies in that case.  Also convert
  4-bit code selection to using it.

Modified:
  head/sys/arm/at91/at91_mci.c

Modified: head/sys/arm/at91/at91_mci.c
==============================================================================
--- head/sys/arm/at91/at91_mci.c	Thu Jan 22 23:34:55 2009	(r187605)
+++ head/sys/arm/at91/at91_mci.c	Fri Jan 23 00:51:25 2009	(r187606)
@@ -67,6 +67,9 @@ __FBSDID("$FreeBSD$");
 struct at91_mci_softc {
 	void *intrhand;			/* Interrupt handle */
 	device_t dev;
+	int sc_cap;
+#define	CAP_HAS_4WIRE		1	/* Has 4 wire bus */
+#define	CAP_NEEDS_BOUNCE	2	/* broken hardware needing bounce */
 	int flags;
 #define CMD_STARTED	1
 #define STOP_STARTED	2
@@ -77,7 +80,6 @@ struct at91_mci_softc {
 	bus_dmamap_t map;
 	int mapped;
 	struct mmc_host host;
-	int wire4;
 	int bus_busy;
 	struct mmc_request *req;
 	struct mmc_command *curcmd;
@@ -167,6 +169,7 @@ at91_mci_attach(device_t dev)
 	device_t child;
 
 	sc->dev = dev;
+	sc->sc_cap = CAP_NEEDS_BOUNCE;
 	err = at91_mci_activate(dev);
 	if (err)
 		goto out;
@@ -201,7 +204,7 @@ at91_mci_attach(device_t dev)
 	sc->host.f_min = 375000;
 	sc->host.f_max = at91_master_clock / 2;	/* Typically 30MHz */
 	sc->host.host_ocr = MMC_OCR_320_330 | MMC_OCR_330_340;
-	if (sc->wire4)
+	if (sc->sc_cap & CAP_HAS_4WIRE)
 		sc->host.caps = MMC_CAP_4_BIT_DATA;
 	else
 		sc->host.caps = 0;
@@ -301,6 +304,7 @@ at91_mci_update_ios(device_t brdev, devi
 	else
 		WR4(sc, MCI_SDCR, RD4(sc, MCI_SDCR) & ~MCI_SDCR_SDCBUS);
 	WR4(sc, MCI_MR, (RD4(sc, MCI_MR) & ~MCI_MR_CLKDIV) | clkdiv);
+	/* Do we need a settle time here? */
 	/* XXX We need to turn the device on/off here with a GPIO pin */
 	return (0);
 }
@@ -360,13 +364,15 @@ at91_mci_start_cmd(struct at91_mci_softc
 		if (cmdr & MCI_CMDR_TRDIR)
 			vaddr = cmd->data->data;
 		else {
-			if (data->len != BBSZ)
-				panic("Write multiblock write support");
-			vaddr = sc->bounce_buffer;
-			src = (uint32_t *)cmd->data->data;
-			dst = (uint32_t *)vaddr;
-			for (i = 0; i < data->len / 4; i++)
-				dst[i] = bswap32(src[i]);
+			if (sc->sc_cap & CAP_NEEDS_BOUNCE) {
+				vaddr = sc->bounce_buffer;
+				src = (uint32_t *)cmd->data->data;
+				dst = (uint32_t *)vaddr;
+				for (i = 0; i < data->len / 4; i++)
+					dst[i] = bswap32(src[i]);
+			}
+			else
+				vaddr = cmd->data->data;
 		}
 		data->xfer_len = 0;
 		if (bus_dmamap_load(sc->dmatag, sc->map, vaddr, data->len,
@@ -497,10 +503,12 @@ at91_mci_read_done(struct at91_mci_softc
 	bus_dmamap_sync(sc->dmatag, sc->map, BUS_DMASYNC_POSTREAD);
 	bus_dmamap_unload(sc->dmatag, sc->map);
 	sc->mapped--;
-	walker = (uint32_t *)cmd->data->data;
-	len = cmd->data->len / 4;
-	for (i = 0; i < len; i++)
-		walker[i] = bswap32(walker[i]);
+	if (sc->sc_cap & CAP_NEEDS_BOUNCE) {
+		walker = (uint32_t *)cmd->data->data;
+		len = cmd->data->len / 4;
+		for (i = 0; i < len; i++)
+			walker[i] = bswap32(walker[i]);
+	}
 	// Finish up the sequence...
 	WR4(sc, MCI_IDR, MCI_SR_ENDRX);
 	WR4(sc, MCI_IER, MCI_SR_RXBUFF);

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 00:58:15 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 14C77106566B;
	Fri, 23 Jan 2009 00:58:15 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id F20AA8FC08;
	Fri, 23 Jan 2009 00:58:14 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N0wErf026936;
	Fri, 23 Jan 2009 00:58:14 GMT (envelope-from trhodes@svn.freebsd.org)
Received: (from trhodes@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N0wEjY026935;
	Fri, 23 Jan 2009 00:58:14 GMT (envelope-from trhodes@svn.freebsd.org)
Message-Id: <200901230058.n0N0wEjY026935@svn.freebsd.org>
From: Tom Rhodes 
Date: Fri, 23 Jan 2009 00:58:14 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187607 - head/usr.bin/truss
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 00:58:15 -0000

Author: trhodes
Date: Fri Jan 23 00:58:14 2009
New Revision: 187607
URL: http://svn.freebsd.org/changeset/base/187607

Log:
  Attaching to the init process returns EINVAL,
  so give an example that is more likely to work.
  Stolen from the ktrace(1) manual page.
  
  PR:		128222
  Submitted by:	Mateusz Guzik 

Modified:
  head/usr.bin/truss/truss.1

Modified: head/usr.bin/truss/truss.1
==============================================================================
--- head/usr.bin/truss/truss.1	Fri Jan 23 00:51:25 2009	(r187606)
+++ head/usr.bin/truss/truss.1	Fri Jan 23 00:58:14 2009	(r187607)
@@ -1,6 +1,6 @@
 .\" $FreeBSD$
 .\"
-.Dd January 2, 2004
+.Dd January 22, 2009
 .Dt TRUSS 1
 .Os
 .Sh NAME
@@ -85,7 +85,7 @@ options are mutually exclusive.)
 # Do the same, but put the output into a file
 .Dl $ truss -o /tmp/truss.out /bin/echo hello
 # Follow an already-running process
-.Dl $ truss -p 1
+.Dl $ truss -p 34
 .Sh SEE ALSO
 .Xr kdump 1 ,
 .Xr ktrace 1 ,

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 03:15:29 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 3714F106566B;
	Fri, 23 Jan 2009 03:15:29 +0000 (UTC) (envelope-from sam@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 25D3D8FC08;
	Fri, 23 Jan 2009 03:15:29 +0000 (UTC) (envelope-from sam@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N3FSGU029675;
	Fri, 23 Jan 2009 03:15:28 GMT (envelope-from sam@svn.freebsd.org)
Received: (from sam@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N3FSOY029674;
	Fri, 23 Jan 2009 03:15:28 GMT (envelope-from sam@svn.freebsd.org)
Message-Id: <200901230315.n0N3FSOY029674@svn.freebsd.org>
From: Sam Leffler 
Date: Fri, 23 Jan 2009 03:15:28 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187608 - head/sys/dev/ath
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 03:15:29 -0000

Author: sam
Date: Fri Jan 23 03:15:28 2009
New Revision: 187608
URL: http://svn.freebsd.org/changeset/base/187608

Log:
  don't run the calibration code if scanning, we won't be on the home channel

Modified:
  head/sys/dev/ath/if_ath.c

Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c	Fri Jan 23 00:58:14 2009	(r187607)
+++ head/sys/dev/ath/if_ath.c	Fri Jan 23 03:15:28 2009	(r187608)
@@ -5793,9 +5793,12 @@ ath_calibrate(void *arg)
 	struct ath_softc *sc = arg;
 	struct ath_hal *ah = sc->sc_ah;
 	struct ifnet *ifp = sc->sc_ifp;
+	struct ieee80211com *ic = ifp->if_l2com;
 	HAL_BOOL longCal, isCalDone;
 	int nextcal;
 
+	if (ic->ic_flags & IEEE80211_F_SCAN)	/* defer, off channel */
+		goto restart;
 	longCal = (ticks - sc->sc_lastlongcal >= ath_longcalinterval*hz);
 	if (longCal) {
 		sc->sc_stats.ast_per_cal++;
@@ -5833,6 +5836,7 @@ ath_calibrate(void *arg)
 		sc->sc_stats.ast_per_calfail++;
 	}
 	if (!isCalDone) {
+restart:
 		/*
 		 * Use a shorter interval to potentially collect multiple
 		 * data samples required to complete calibration.  Once

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 03:46:44 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id A2D521065670;
	Fri, 23 Jan 2009 03:46:44 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 921348FC16;
	Fri, 23 Jan 2009 03:46:44 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N3ki8v030251;
	Fri, 23 Jan 2009 03:46:44 GMT
	(envelope-from keramida@svn.freebsd.org)
Received: (from keramida@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N3kisr030250;
	Fri, 23 Jan 2009 03:46:44 GMT
	(envelope-from keramida@svn.freebsd.org)
Message-Id: <200901230346.n0N3kisr030250@svn.freebsd.org>
From: Giorgos Keramidas 
Date: Fri, 23 Jan 2009 03:46:44 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187609 - head/bin/dd
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 03:46:45 -0000

Author: keramida (doc committer)
Date: Fri Jan 23 03:46:44 2009
New Revision: 187609
URL: http://svn.freebsd.org/changeset/base/187609

Log:
  Add an example of using bs=2048 to duplicate data CD-ROMs.
  
  This should be a bit useful for users who look at the manpage and
  then try to copy data CD-ROM disks using dd.  A lot of us know
  that bs=2048 is required, but it still manages to cause a bit of
  grief to those who haven't heard about it.
  
  PR:		bin/130857
  Submitted by:	Tri Brotoharsono < mail at tribrotoharsono.net >
  MFC after:	3 days

Modified:
  head/bin/dd/dd.1

Modified: head/bin/dd/dd.1
==============================================================================
--- head/bin/dd/dd.1	Fri Jan 23 03:15:28 2009	(r187608)
+++ head/bin/dd/dd.1	Fri Jan 23 03:46:44 2009	(r187609)
@@ -392,6 +392,11 @@ Remove parity bit from a file:
 Check for (even) parity errors on a file:
 .Pp
 .Dl "dd if=file conv=pareven | cmp -x - file"
+.Pp
+To create an image of a Mode-1 CD-ROM, which is a commonly used format
+for data CD-ROM disks, use a block size of 2048 bytes:
+.Pp
+.Dl "dd if=/dev/acd0 of=filename.iso bs=2048"
 .Sh SEE ALSO
 .Xr cp 1 ,
 .Xr mt 1 ,

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 05:04:50 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 74E7C1065673;
	Fri, 23 Jan 2009 05:04:50 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 2EE988FC1D;
	Fri, 23 Jan 2009 05:04:50 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N54oq1031700;
	Fri, 23 Jan 2009 05:04:50 GMT (envelope-from weongyo@svn.freebsd.org)
Received: (from weongyo@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N54oD8031697;
	Fri, 23 Jan 2009 05:04:50 GMT (envelope-from weongyo@svn.freebsd.org)
Message-Id: <200901230504.n0N54oD8031697@svn.freebsd.org>
From: Weongyo Jeong 
Date: Fri, 23 Jan 2009 05:04:50 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187610 - in head: share/man/man4 sys/dev/usb
	sys/modules/urtw
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 05:04:50 -0000

Author: weongyo
Date: Fri Jan 23 05:04:49 2009
New Revision: 187610
URL: http://svn.freebsd.org/changeset/base/187610

Log:
  Add a new USB wireless driver, urtw(4) for supporting Realtek's 8187L
  chipset.

Added:
  head/share/man/man4/urtw.4   (contents, props changed)
  head/sys/dev/usb/if_urtw.c   (contents, props changed)
  head/sys/dev/usb/if_urtwreg.h   (contents, props changed)
  head/sys/dev/usb/if_urtwvar.h   (contents, props changed)
  head/sys/modules/urtw/
  head/sys/modules/urtw/Makefile   (contents, props changed)
Modified:
  head/sys/dev/usb/usbdevs

Added: head/share/man/man4/urtw.4
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/share/man/man4/urtw.4	Fri Jan 23 05:04:49 2009	(r187610)
@@ -0,0 +1,118 @@
+.\" Copyright (c) 2008 Weongyo Jeong
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"    notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"    notice, this list of conditions and the following disclaimer in the
+.\"    documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.Dd November 15 2008 $
+.Dt URTW 4
+.Os
+.Sh NAME
+.Nm urtw
+.Nd Realtek RTL8187L USB IEEE 802.11b/g wireless network device
+.Sh SYNOPSIS
+To compile this driver into the kernel,
+place the following lines in your kernel configuration file:
+.Bd -ragged -offset indent
+.Cd "device ehci"
+.Cd "device uhci"
+.Cd "device ohci"
+.Cd "device usb"
+.Cd "device urtw"
+.Cd "device wlan"
+.Ed
+.Pp
+Alternatively, to load the driver as a module at boot time,
+place the following line in
+.Xr loader.conf 5 :
+.Bd -literal -offset indent
+if_urtw_load="YES"
+.Ed
+.Sh DESCRIPTION
+The
+.Nm
+driver supports USB 802.11b/g wireless adapters based on the
+Realtek RTL8187L.
+.Pp
+.Nm
+supports
+.Cm station
+and
+.Cm monitor
+mode operation.
+Only one virtual interface may be configured at any time.
+For more information on configuring this device, see
+.Xr ifconfig 8 .
+.Sh HARDWARE
+The following adapters should work:
+.Pp
+.Bl -column "Card                        " "Radio    " "Bus" -compact -offset 6n
+.It Em "Card	Radio	Bus"
+.It Li "Netgear WG111v2" Ta RTL8225 Ta USB
+.It Li "Safehome WLG-1500SMA5" Ta RTL8225 Ta USB
+.It Li "Shuttle XPC Accessory PN20" Ta RTL8225 Ta USB
+.El
+.Sh EXAMPLES
+Join an existing BSS network (i.e., connect to an access point):
+.Pp
+.Bd -literal -offset indent
+ifconfig wlan create wlandev urtw0 inet 192.168.0.20 \e
+    netmask 0xffffff00
+.Ed
+.Pp
+Join a specific BSS network with network name
+.Dq Li my_net :
+.Pp
+.Dl "ifconfig wlan create wlandev urtw0 ssid my_net up"
+.Pp
+Join a specific BSS network with 64-bit WEP encryption:
+.Bd -literal -offset indent
+ifconfig wlan create wlandev urtw0 ssid my_net \e
+	wepmode on wepkey 0x1234567890 weptxkey 1 up
+.Ed
+.Sh SEE ALSO
+.Xr intro 4 ,
+.Xr netintro 4 ,
+.Xr usb 4 ,
+.Xr wlan 4 ,
+.Xr wlan_ccmp 4 ,
+.Xr wlan_tkip 4 ,
+.Xr wlan_wep 4 ,
+.Xr ifconfig 8 ,
+.Xr wpa_supplicant 8
+.Rs
+.%T Realtek
+.%O http://www.realtek.com.tw
+.Re
+.Sh HISTORY
+The
+.Nm
+device driver first appeared in
+.Fx 8.0 .
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An Weongyo Jeong
+.Aq weongyo@FreeBSD.org .

Added: head/sys/dev/usb/if_urtw.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/dev/usb/if_urtw.c	Fri Jan 23 05:04:49 2009	(r187610)
@@ -0,0 +1,3324 @@
+/*-
+ * Copyright (c) 2008 Weongyo Jeong 
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include 
+__FBSDID("$FreeBSD$");
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+#include 
+#include 
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#ifdef INET
+#include 
+#include 
+#include 
+#include 
+#include 
+#endif
+
+#include 
+#include 
+#include 
+
+#include 
+#include 
+#include 
+#include "usbdevs.h"
+
+#include 
+#include 
+
+SYSCTL_NODE(_hw_usb, OID_AUTO, urtw, CTLFLAG_RW, 0, "USB Realtek 8187L");
+#ifdef URTW_DEBUG
+int urtw_debug = 0;
+SYSCTL_INT(_hw_usb_urtw, OID_AUTO, debug, CTLFLAG_RW, &urtw_debug, 0,
+    "control debugging printfs");
+TUNABLE_INT("hw.usb.urtw.debug", &urtw_debug);
+enum {
+	URTW_DEBUG_XMIT		= 0x00000001,	/* basic xmit operation */
+	URTW_DEBUG_RECV		= 0x00000002,	/* basic recv operation */
+	URTW_DEBUG_RESET	= 0x00000004,	/* reset processing */
+	URTW_DEBUG_TX_PROC	= 0x00000008,	/* tx ISR proc */
+	URTW_DEBUG_RX_PROC	= 0x00000010,	/* rx ISR proc */
+	URTW_DEBUG_STATE	= 0x00000020,	/* 802.11 state transitions */
+	URTW_DEBUG_STAT		= 0x00000040,	/* statistic */
+	URTW_DEBUG_ANY		= 0xffffffff
+};
+#define	DPRINTF(sc, m, fmt, ...) do {				\
+	if (sc->sc_debug & (m))					\
+		printf(fmt, __VA_ARGS__);			\
+} while (0)
+#else
+#define	DPRINTF(sc, m, fmt, ...) do {				\
+	(void) sc;						\
+} while (0)
+#endif
+int urtw_preamble_mode = URTW_PREAMBLE_MODE_LONG;
+SYSCTL_INT(_hw_usb_urtw, OID_AUTO, preamble_mode, CTLFLAG_RW,
+    &urtw_preamble_mode, 0, "set the preable mode (long or short)");
+TUNABLE_INT("hw.usb.urtw.preamble_mode", &urtw_preamble_mode);
+
+/* recognized device vendors/products */
+static const struct usb_devno urtw_devs[] = {
+#define	URTW_DEV(v,p) { USB_VENDOR_##v, USB_PRODUCT_##v##_##p }
+	URTW_DEV(REALTEK, RTL8187),
+	URTW_DEV(NETGEAR, WG111V2)
+#undef URTW_DEV
+};
+
+#define urtw_read8_m(sc, val, data)	do {			\
+	error = urtw_read8_c(sc, val, data);			\
+	if (error != 0)						\
+		goto fail;					\
+} while (0)
+#define urtw_write8_m(sc, val, data)	do {			\
+	error = urtw_write8_c(sc, val, data);			\
+	if (error != 0)						\
+		goto fail;					\
+} while (0)
+#define urtw_read16_m(sc, val, data)	do {			\
+	error = urtw_read16_c(sc, val, data);			\
+	if (error != 0)						\
+		goto fail;					\
+} while (0)
+#define urtw_write16_m(sc, val, data)	do {			\
+	error = urtw_write16_c(sc, val, data);			\
+	if (error != 0)						\
+		goto fail;					\
+} while (0)
+#define urtw_read32_m(sc, val, data)	do {			\
+	error = urtw_read32_c(sc, val, data);			\
+	if (error != 0)						\
+		goto fail;					\
+} while (0)
+#define urtw_write32_m(sc, val, data)	do {			\
+	error = urtw_write32_c(sc, val, data);			\
+	if (error != 0)						\
+		goto fail;					\
+} while (0)
+#define urtw_8187_write_phy_ofdm(sc, val, data)	do {		\
+	error = urtw_8187_write_phy_ofdm_c(sc, val, data);	\
+	if (error != 0)						\
+		goto fail;					\
+} while (0)
+#define urtw_8187_write_phy_cck(sc, val, data)	do {		\
+	error = urtw_8187_write_phy_cck_c(sc, val, data);	\
+	if (error != 0)						\
+		goto fail;					\
+} while (0)
+#define urtw_8225_write(sc, val, data)	do {			\
+	error = urtw_8225_write_c(sc, val, data);		\
+	if (error != 0)						\
+		goto fail;					\
+} while (0)
+
+struct urtw_pair {
+	uint32_t	reg;
+	uint32_t	val;
+};
+
+static uint8_t urtw_8225_agc[] = {
+	0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b,
+	0x9a, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x91, 0x90,
+	0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x86, 0x85,
+	0x84, 0x83, 0x82, 0x81, 0x80, 0x3f, 0x3e, 0x3d, 0x3c, 0x3b, 0x3a,
+	0x39, 0x38, 0x37, 0x36, 0x35, 0x34, 0x33, 0x32, 0x31, 0x30, 0x2f,
+	0x2e, 0x2d, 0x2c, 0x2b, 0x2a, 0x29, 0x28, 0x27, 0x26, 0x25, 0x24,
+	0x23, 0x22, 0x21, 0x20, 0x1f, 0x1e, 0x1d, 0x1c, 0x1b, 0x1a, 0x19,
+	0x18, 0x17, 0x16, 0x15, 0x14, 0x13, 0x12, 0x11, 0x10, 0x0f, 0x0e,
+	0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03,
+	0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
+	0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
+	0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01
+};
+
+static uint32_t urtw_8225_channel[] = {
+	0x0000,		/* dummy channel 0  */
+	0x085c,		/* 1  */
+	0x08dc,		/* 2  */
+	0x095c,		/* 3  */
+	0x09dc,		/* 4  */
+	0x0a5c,		/* 5  */
+	0x0adc,		/* 6  */
+	0x0b5c,		/* 7  */
+	0x0bdc,		/* 8  */
+	0x0c5c,		/* 9  */
+	0x0cdc,		/* 10  */
+	0x0d5c,		/* 11  */
+	0x0ddc,		/* 12  */
+	0x0e5c,		/* 13  */
+	0x0f72,		/* 14  */
+};
+
+static uint8_t urtw_8225_gain[] = {
+	0x23, 0x88, 0x7c, 0xa5,		/* -82dbm  */
+	0x23, 0x88, 0x7c, 0xb5,		/* -82dbm  */
+	0x23, 0x88, 0x7c, 0xc5,		/* -82dbm  */
+	0x33, 0x80, 0x79, 0xc5,		/* -78dbm  */
+	0x43, 0x78, 0x76, 0xc5,		/* -74dbm  */
+	0x53, 0x60, 0x73, 0xc5,		/* -70dbm  */
+	0x63, 0x58, 0x70, 0xc5,		/* -66dbm  */
+};
+
+static struct urtw_pair urtw_8225_rf_part1[] = {
+	{ 0x00, 0x0067 }, { 0x01, 0x0fe0 }, { 0x02, 0x044d }, { 0x03, 0x0441 },
+	{ 0x04, 0x0486 }, { 0x05, 0x0bc0 }, { 0x06, 0x0ae6 }, { 0x07, 0x082a },
+	{ 0x08, 0x001f }, { 0x09, 0x0334 }, { 0x0a, 0x0fd4 }, { 0x0b, 0x0391 },
+	{ 0x0c, 0x0050 }, { 0x0d, 0x06db }, { 0x0e, 0x0029 }, { 0x0f, 0x0914 },
+};
+
+static struct urtw_pair urtw_8225_rf_part2[] = {
+	{ 0x00, 0x01 }, { 0x01, 0x02 }, { 0x02, 0x42 }, { 0x03, 0x00 },
+	{ 0x04, 0x00 }, { 0x05, 0x00 }, { 0x06, 0x40 }, { 0x07, 0x00 },
+	{ 0x08, 0x40 }, { 0x09, 0xfe }, { 0x0a, 0x09 }, { 0x0b, 0x80 },
+	{ 0x0c, 0x01 }, { 0x0e, 0xd3 }, { 0x0f, 0x38 }, { 0x10, 0x84 },
+	{ 0x11, 0x06 }, { 0x12, 0x20 }, { 0x13, 0x20 }, { 0x14, 0x00 },
+	{ 0x15, 0x40 }, { 0x16, 0x00 }, { 0x17, 0x40 }, { 0x18, 0xef },
+	{ 0x19, 0x19 }, { 0x1a, 0x20 }, { 0x1b, 0x76 }, { 0x1c, 0x04 },
+	{ 0x1e, 0x95 }, { 0x1f, 0x75 }, { 0x20, 0x1f }, { 0x21, 0x27 },
+	{ 0x22, 0x16 }, { 0x24, 0x46 }, { 0x25, 0x20 }, { 0x26, 0x90 },
+	{ 0x27, 0x88 }
+};
+
+static struct urtw_pair urtw_8225_rf_part3[] = {
+	{ 0x00, 0x98 }, { 0x03, 0x20 }, { 0x04, 0x7e }, { 0x05, 0x12 },
+	{ 0x06, 0xfc }, { 0x07, 0x78 }, { 0x08, 0x2e }, { 0x10, 0x9b },
+	{ 0x11, 0x88 }, { 0x12, 0x47 }, { 0x13, 0xd0 }, { 0x19, 0x00 },
+	{ 0x1a, 0xa0 }, { 0x1b, 0x08 }, { 0x40, 0x86 }, { 0x41, 0x8d },
+	{ 0x42, 0x15 }, { 0x43, 0x18 }, { 0x44, 0x1f }, { 0x45, 0x1e },
+	{ 0x46, 0x1a }, { 0x47, 0x15 }, { 0x48, 0x10 }, { 0x49, 0x0a },
+	{ 0x4a, 0x05 }, { 0x4b, 0x02 }, { 0x4c, 0x05 }
+};
+
+static uint16_t urtw_8225_rxgain[] = {
+	0x0400, 0x0401, 0x0402, 0x0403, 0x0404, 0x0405, 0x0408, 0x0409,
+	0x040a, 0x040b, 0x0502, 0x0503, 0x0504, 0x0505, 0x0540, 0x0541,
+	0x0542, 0x0543, 0x0544, 0x0545, 0x0580, 0x0581, 0x0582, 0x0583,
+	0x0584, 0x0585, 0x0588, 0x0589, 0x058a, 0x058b, 0x0643, 0x0644,
+	0x0645, 0x0680, 0x0681, 0x0682, 0x0683, 0x0684, 0x0685, 0x0688,
+	0x0689, 0x068a, 0x068b, 0x068c, 0x0742, 0x0743, 0x0744, 0x0745,
+	0x0780, 0x0781, 0x0782, 0x0783, 0x0784, 0x0785, 0x0788, 0x0789,
+	0x078a, 0x078b, 0x078c, 0x078d, 0x0790, 0x0791, 0x0792, 0x0793,
+	0x0794, 0x0795, 0x0798, 0x0799, 0x079a, 0x079b, 0x079c, 0x079d,
+	0x07a0, 0x07a1, 0x07a2, 0x07a3, 0x07a4, 0x07a5, 0x07a8, 0x07a9,
+	0x07aa, 0x07ab, 0x07ac, 0x07ad, 0x07b0, 0x07b1, 0x07b2, 0x07b3,
+	0x07b4, 0x07b5, 0x07b8, 0x07b9, 0x07ba, 0x07bb, 0x07bb
+};
+
+static uint8_t urtw_8225_threshold[] = {
+	0x8d, 0x8d, 0x8d, 0x8d, 0x9d, 0xad, 0xbd,
+};
+
+static uint8_t urtw_8225_tx_gain_cck_ofdm[] = {
+	0x02, 0x06, 0x0e, 0x1e, 0x3e, 0x7e
+};
+
+static uint8_t urtw_8225_txpwr_cck[] = {
+	0x18, 0x17, 0x15, 0x11, 0x0c, 0x08, 0x04, 0x02,
+	0x1b, 0x1a, 0x17, 0x13, 0x0e, 0x09, 0x04, 0x02,
+	0x1f, 0x1e, 0x1a, 0x15, 0x10, 0x0a, 0x05, 0x02,
+	0x22, 0x21, 0x1d, 0x18, 0x11, 0x0b, 0x06, 0x02,
+	0x26, 0x25, 0x21, 0x1b, 0x14, 0x0d, 0x06, 0x03,
+	0x2b, 0x2a, 0x25, 0x1e, 0x16, 0x0e, 0x07, 0x03
+};
+
+static uint8_t urtw_8225_txpwr_cck_ch14[] = {
+	0x18, 0x17, 0x15, 0x0c, 0x00, 0x00, 0x00, 0x00,
+	0x1b, 0x1a, 0x17, 0x0e, 0x00, 0x00, 0x00, 0x00,
+	0x1f, 0x1e, 0x1a, 0x0f, 0x00, 0x00, 0x00, 0x00,
+	0x22, 0x21, 0x1d, 0x11, 0x00, 0x00, 0x00, 0x00,
+	0x26, 0x25, 0x21, 0x13, 0x00, 0x00, 0x00, 0x00,
+	0x2b, 0x2a, 0x25, 0x15, 0x00, 0x00, 0x00, 0x00
+};
+
+static uint8_t urtw_8225_txpwr_ofdm[]={
+	0x80, 0x90, 0xa2, 0xb5, 0xcb, 0xe4
+};
+
+static uint8_t urtw_8225v2_gain_bg[]={
+	0x23, 0x15, 0xa5,		/* -82-1dbm  */
+	0x23, 0x15, 0xb5,		/* -82-2dbm  */
+	0x23, 0x15, 0xc5,		/* -82-3dbm  */
+	0x33, 0x15, 0xc5,		/* -78dbm  */
+	0x43, 0x15, 0xc5,		/* -74dbm  */
+	0x53, 0x15, 0xc5,		/* -70dbm  */
+	0x63, 0x15, 0xc5,		/* -66dbm  */
+};
+
+static struct urtw_pair urtw_8225v2_rf_part1[] = {
+	{ 0x00, 0x02bf }, { 0x01, 0x0ee0 }, { 0x02, 0x044d }, { 0x03, 0x0441 },
+	{ 0x04, 0x08c3 }, { 0x05, 0x0c72 }, { 0x06, 0x00e6 }, { 0x07, 0x082a },
+	{ 0x08, 0x003f }, { 0x09, 0x0335 }, { 0x0a, 0x09d4 }, { 0x0b, 0x07bb },
+	{ 0x0c, 0x0850 }, { 0x0d, 0x0cdf }, { 0x0e, 0x002b }, { 0x0f, 0x0114 }
+};
+
+static struct urtw_pair urtw_8225v2_rf_part2[] = {
+	{ 0x00, 0x01 }, { 0x01, 0x02 }, { 0x02, 0x42 }, { 0x03, 0x00 },
+	{ 0x04, 0x00 },	{ 0x05, 0x00 }, { 0x06, 0x40 }, { 0x07, 0x00 },
+	{ 0x08, 0x40 }, { 0x09, 0xfe }, { 0x0a, 0x08 }, { 0x0b, 0x80 },
+	{ 0x0c, 0x01 }, { 0x0d, 0x43 }, { 0x0e, 0xd3 }, { 0x0f, 0x38 },
+	{ 0x10, 0x84 }, { 0x11, 0x07 }, { 0x12, 0x20 }, { 0x13, 0x20 },
+	{ 0x14, 0x00 }, { 0x15, 0x40 }, { 0x16, 0x00 }, { 0x17, 0x40 },
+	{ 0x18, 0xef }, { 0x19, 0x19 }, { 0x1a, 0x20 }, { 0x1b, 0x15 },
+	{ 0x1c, 0x04 }, { 0x1d, 0xc5 }, { 0x1e, 0x95 }, { 0x1f, 0x75 },
+	{ 0x20, 0x1f }, { 0x21, 0x17 }, { 0x22, 0x16 }, { 0x23, 0x80 },
+	{ 0x24, 0x46 }, { 0x25, 0x00 }, { 0x26, 0x90 }, { 0x27, 0x88 }
+};
+
+static struct urtw_pair urtw_8225v2_rf_part3[] = {
+	{ 0x00, 0x98 }, { 0x03, 0x20 }, { 0x04, 0x7e }, { 0x05, 0x12 },
+	{ 0x06, 0xfc }, { 0x07, 0x78 }, { 0x08, 0x2e }, { 0x09, 0x11 },
+	{ 0x0a, 0x17 }, { 0x0b, 0x11 }, { 0x10, 0x9b }, { 0x11, 0x88 },
+	{ 0x12, 0x47 }, { 0x13, 0xd0 }, { 0x19, 0x00 }, { 0x1a, 0xa0 },
+	{ 0x1b, 0x08 }, { 0x1d, 0x00 }, { 0x40, 0x86 }, { 0x41, 0x9d },
+	{ 0x42, 0x15 }, { 0x43, 0x18 }, { 0x44, 0x36 }, { 0x45, 0x35 },
+	{ 0x46, 0x2e }, { 0x47, 0x25 }, { 0x48, 0x1c }, { 0x49, 0x12 },
+	{ 0x4a, 0x09 }, { 0x4b, 0x04 }, { 0x4c, 0x05 }
+};
+
+static uint16_t urtw_8225v2_rxgain[] = {
+	0x0000, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0008, 0x0009,
+	0x000a, 0x000b, 0x0102, 0x0103, 0x0104, 0x0105, 0x0140, 0x0141,
+	0x0142, 0x0143, 0x0144, 0x0145, 0x0180, 0x0181, 0x0182, 0x0183,
+	0x0184, 0x0185, 0x0188, 0x0189, 0x018a, 0x018b, 0x0243, 0x0244,
+	0x0245, 0x0280, 0x0281, 0x0282, 0x0283, 0x0284, 0x0285, 0x0288,
+	0x0289, 0x028a, 0x028b, 0x028c, 0x0342, 0x0343, 0x0344, 0x0345,
+	0x0380, 0x0381, 0x0382, 0x0383, 0x0384, 0x0385, 0x0388, 0x0389,
+	0x038a, 0x038b, 0x038c, 0x038d, 0x0390, 0x0391, 0x0392, 0x0393,
+	0x0394, 0x0395, 0x0398, 0x0399, 0x039a, 0x039b, 0x039c, 0x039d,
+	0x03a0, 0x03a1, 0x03a2, 0x03a3, 0x03a4, 0x03a5, 0x03a8, 0x03a9,
+	0x03aa, 0x03ab, 0x03ac, 0x03ad, 0x03b0, 0x03b1, 0x03b2, 0x03b3,
+	0x03b4, 0x03b5, 0x03b8, 0x03b9, 0x03ba, 0x03bb, 0x03bb
+};
+
+static uint8_t urtw_8225v2_tx_gain_cck_ofdm[] = {
+	0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
+	0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
+	0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11,
+	0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
+	0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,
+	0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,
+};
+
+static uint8_t urtw_8225v2_txpwr_cck[] = {
+	0x36, 0x35, 0x2e, 0x25, 0x1c, 0x12, 0x09, 0x04
+};
+
+static uint8_t urtw_8225v2_txpwr_cck_ch14[] = {
+	0x36, 0x35, 0x2e, 0x1b, 0x00, 0x00, 0x00, 0x00
+};
+
+static struct urtw_pair urtw_ratetable[] = {
+	{  2,  0 }, {   4,  1 }, { 11, 2 }, { 12, 4 }, { 18, 5 },
+	{ 22,  3 }, {  24,  6 }, { 36, 7 }, { 48, 8 }, { 72, 9 },
+	{ 96, 10 }, { 108, 11 }
+};
+
+static struct ieee80211vap *urtw_vap_create(struct ieee80211com *,
+			    const char name[IFNAMSIZ], int unit, int opmode,
+			    int flags, const uint8_t bssid[IEEE80211_ADDR_LEN],
+			    const uint8_t mac[IEEE80211_ADDR_LEN]);
+static void		urtw_vap_delete(struct ieee80211vap *);
+static void		urtw_init(void *);
+static void		urtw_stop(struct ifnet *, int);
+static int		urtw_ioctl(struct ifnet *, u_long, caddr_t);
+static void		urtw_start(struct ifnet *);
+static int		urtw_alloc_rx_data_list(struct urtw_softc *);
+static int		urtw_alloc_tx_data_list(struct urtw_softc *);
+static void		urtw_free_data_list(struct urtw_softc *,
+			    usbd_pipe_handle, usbd_pipe_handle,
+			    struct urtw_data data[], int);
+static int		urtw_raw_xmit(struct ieee80211_node *, struct mbuf *,
+			    const struct ieee80211_bpf_params *);
+static void		urtw_scan_start(struct ieee80211com *);
+static void		urtw_scan_end(struct ieee80211com *);
+static void		urtw_set_channel(struct ieee80211com *);
+static void		urtw_update_mcast(struct ifnet *);
+static void		urtw_rxeof(usbd_xfer_handle, usbd_private_handle,
+			    usbd_status);
+static int		urtw_tx_start(struct urtw_softc *,
+			    struct ieee80211_node *, struct mbuf *, int);
+static void		urtw_txeof_low(usbd_xfer_handle, usbd_private_handle,
+			    usbd_status);
+static void		urtw_txeof_normal(usbd_xfer_handle, 
+			    usbd_private_handle, usbd_status);
+static int		urtw_newstate(struct ieee80211vap *,
+			    enum ieee80211_state, int);
+static void		urtw_ledtask(void *);
+static void		urtw_ledusbtask(void *);
+static void		urtw_ctxtask(void *);
+static void		urtw_task(void *);
+static void		urtw_watchdog(void *);
+static void		urtw_set_multi(void *);
+static int		urtw_isbmode(uint16_t);
+static uint16_t		urtw_rate2rtl(int);
+static uint16_t		urtw_rtl2rate(int);
+static usbd_status	urtw_set_rate(struct urtw_softc *);
+static usbd_status	urtw_update_msr(struct urtw_softc *);
+static usbd_status	urtw_read8_c(struct urtw_softc *, int, uint8_t *);
+static usbd_status	urtw_read16_c(struct urtw_softc *, int, uint16_t *);
+static usbd_status	urtw_read32_c(struct urtw_softc *, int, uint32_t *);
+static usbd_status	urtw_write8_c(struct urtw_softc *, int, uint8_t);
+static usbd_status	urtw_write16_c(struct urtw_softc *, int, uint16_t);
+static usbd_status	urtw_write32_c(struct urtw_softc *, int, uint32_t);
+static usbd_status	urtw_eprom_cs(struct urtw_softc *, int);
+static usbd_status	urtw_eprom_ck(struct urtw_softc *);
+static usbd_status	urtw_eprom_sendbits(struct urtw_softc *, int16_t *,
+			    int);
+static usbd_status	urtw_eprom_read32(struct urtw_softc *, uint32_t,
+			    uint32_t *);
+static usbd_status	urtw_eprom_readbit(struct urtw_softc *, int16_t *);
+static usbd_status	urtw_eprom_writebit(struct urtw_softc *, int16_t);
+static usbd_status	urtw_get_macaddr(struct urtw_softc *);
+static usbd_status	urtw_get_txpwr(struct urtw_softc *);
+static usbd_status	urtw_get_rfchip(struct urtw_softc *);
+static usbd_status	urtw_led_init(struct urtw_softc *);
+static usbd_status	urtw_8185_rf_pins_enable(struct urtw_softc *);
+static usbd_status	urtw_8185_tx_antenna(struct urtw_softc *, uint8_t);
+static usbd_status	urtw_8187_write_phy(struct urtw_softc *, uint8_t,
+			    uint32_t);
+static usbd_status	urtw_8187_write_phy_ofdm_c(struct urtw_softc *,
+			    uint8_t, uint32_t);
+static usbd_status	urtw_8187_write_phy_cck_c(struct urtw_softc *, uint8_t,
+			    uint32_t);
+static usbd_status	urtw_8225_setgain(struct urtw_softc *, int16_t);
+static usbd_status	urtw_8225_usb_init(struct urtw_softc *);
+static usbd_status	urtw_8225_write_c(struct urtw_softc *, uint8_t,
+			    uint16_t);
+static usbd_status	urtw_8225_write_s16(struct urtw_softc *, uint8_t, int,
+			    uint16_t *);
+static usbd_status	urtw_8225_read(struct urtw_softc *, uint8_t,
+			    uint32_t *);
+static usbd_status	urtw_8225_rf_init(struct urtw_softc *);
+static usbd_status	urtw_8225_rf_set_chan(struct urtw_softc *, int);
+static usbd_status	urtw_8225_rf_set_sens(struct urtw_softc *, int);
+static usbd_status	urtw_8225_set_txpwrlvl(struct urtw_softc *, int);
+static usbd_status	urtw_8225v2_rf_init(struct urtw_softc *);
+static usbd_status	urtw_8225v2_rf_set_chan(struct urtw_softc *, int);
+static usbd_status	urtw_8225v2_set_txpwrlvl(struct urtw_softc *, int);
+static usbd_status	urtw_8225v2_setgain(struct urtw_softc *, int16_t);
+static usbd_status	urtw_8225_isv2(struct urtw_softc *, int *);
+static usbd_status	urtw_read8e(struct urtw_softc *, int, uint8_t *);
+static usbd_status	urtw_write8e(struct urtw_softc *, int, uint8_t);
+static usbd_status	urtw_8180_set_anaparam(struct urtw_softc *, uint32_t);
+static usbd_status	urtw_8185_set_anaparam2(struct urtw_softc *, uint32_t);
+static usbd_status	urtw_open_pipes(struct urtw_softc *);
+static usbd_status	urtw_close_pipes(struct urtw_softc *);
+static usbd_status	urtw_intr_enable(struct urtw_softc *);
+static usbd_status	urtw_intr_disable(struct urtw_softc *);
+static usbd_status	urtw_reset(struct urtw_softc *);
+static usbd_status	urtw_led_on(struct urtw_softc *, int);
+static usbd_status	urtw_led_ctl(struct urtw_softc *, int);
+static usbd_status	urtw_led_blink(struct urtw_softc *);
+static usbd_status	urtw_led_mode0(struct urtw_softc *, int);
+static usbd_status	urtw_led_mode1(struct urtw_softc *, int);
+static usbd_status	urtw_led_mode2(struct urtw_softc *, int);
+static usbd_status	urtw_led_mode3(struct urtw_softc *, int);
+static usbd_status	urtw_rx_setconf(struct urtw_softc *);
+static usbd_status	urtw_rx_enable(struct urtw_softc *);
+static usbd_status	urtw_tx_enable(struct urtw_softc *sc);
+
+static int
+urtw_match(device_t dev)
+{
+	struct usb_attach_arg *uaa = device_get_ivars(dev);
+	const struct usb_devno *ud;
+
+	if (uaa->iface != NULL)
+		return UMATCH_NONE;
+	ud = usb_lookup(urtw_devs, uaa->vendor, uaa->product);
+
+	return (ud != NULL ? UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
+}
+
+static int
+urtw_attach(device_t dev)
+{
+	int ret = 0;
+	struct urtw_softc *sc = device_get_softc(dev);
+	struct usb_attach_arg *uaa = device_get_ivars(dev);
+	struct ieee80211com *ic;
+	struct ifnet *ifp;
+	uint8_t bands;
+	uint32_t data;
+	usbd_status error;
+
+	sc->sc_dev = dev;
+	sc->sc_udev = uaa->device;
+#ifdef URTW_DEBUG
+	sc->sc_debug = urtw_debug;
+#endif
+
+	mtx_init(&sc->sc_mtx, device_get_nameunit(sc->sc_dev), MTX_NETWORK_LOCK,
+	    MTX_DEF);
+	callout_init(&sc->sc_led_ch, 0);
+	callout_init(&sc->sc_watchdog_ch, 0);
+	usb_init_task(&sc->sc_ledtask, urtw_ledusbtask, sc);
+	usb_init_task(&sc->sc_ctxtask, urtw_ctxtask, sc);
+	usb_init_task(&sc->sc_task, urtw_task, sc);
+
+	urtw_read32_m(sc, URTW_RX, &data);
+	sc->sc_epromtype = (data & URTW_RX_9356SEL) ? URTW_EEPROM_93C56 :
+	    URTW_EEPROM_93C46;
+
+	error = urtw_get_rfchip(sc);
+	if (error != 0)
+		goto fail;
+	error = urtw_get_macaddr(sc);
+	if (error != 0)
+		goto fail;
+	error = urtw_get_txpwr(sc);
+	if (error != 0)
+		goto fail;
+	error = urtw_led_init(sc);
+	if (error != 0)
+		goto fail;
+
+	sc->sc_rts_retry = URTW_DEFAULT_RTS_RETRY;
+	sc->sc_tx_retry = URTW_DEFAULT_TX_RETRY;
+	sc->sc_currate = 3;
+	sc->sc_preamble_mode = urtw_preamble_mode;
+
+	ifp = sc->sc_ifp = if_alloc(IFT_IEEE80211);
+	if (ifp == NULL) {
+		device_printf(sc->sc_dev, "can not allocate ifnet\n");
+		ret = ENXIO;
+		goto fail;
+	}
+
+	ifp->if_softc = sc;
+	if_initname(ifp, "urtw", device_get_unit(sc->sc_dev));
+	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST |
+	    IFF_NEEDSGIANT; /* USB stack is still under Giant lock */
+	ifp->if_init = urtw_init;
+	ifp->if_ioctl = urtw_ioctl;
+	ifp->if_start = urtw_start;
+	/* XXX URTW_TX_DATA_LIST_COUNT */
+	IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
+	ifp->if_snd.ifq_drv_maxlen = IFQ_MAXLEN;
+	IFQ_SET_READY(&ifp->if_snd);
+
+	ic = ifp->if_l2com;
+	ic->ic_ifp = ifp;
+	ic->ic_phytype = IEEE80211_T_OFDM;	/* not only, but not used */
+	ic->ic_opmode = IEEE80211_M_STA;	/* default to BSS mode */
+
+	/* set device capabilities */
+	ic->ic_caps =
+	    IEEE80211_C_STA |		/* station mode */
+	    IEEE80211_C_MONITOR |	/* monitor mode supported */
+	    IEEE80211_C_TXPMGT |	/* tx power management */
+	    IEEE80211_C_SHPREAMBLE |	/* short preamble supported */
+	    IEEE80211_C_SHSLOT |	/* short slot time supported */
+	    IEEE80211_C_BGSCAN |	/* capable of bg scanning */
+	    IEEE80211_C_WPA;		/* 802.11i */
+
+	IEEE80211_ADDR_COPY(ic->ic_myaddr, sc->sc_bssid);
+
+	bands = 0;
+	setbit(&bands, IEEE80211_MODE_11B);
+	setbit(&bands, IEEE80211_MODE_11G);
+	ieee80211_init_channels(ic, NULL, &bands);
+
+	ieee80211_ifattach(ic);
+	ic->ic_raw_xmit = urtw_raw_xmit;
+	ic->ic_scan_start = urtw_scan_start;
+	ic->ic_scan_end = urtw_scan_end;
+	ic->ic_set_channel = urtw_set_channel;
+
+	ic->ic_vap_create = urtw_vap_create;
+	ic->ic_vap_delete = urtw_vap_delete;
+	ic->ic_update_mcast = urtw_update_mcast;
+
+	bpfattach(ifp, DLT_IEEE802_11_RADIO,
+	    sizeof (struct ieee80211_frame) + sizeof(sc->sc_txtap));
+
+	sc->sc_rxtap_len = sizeof sc->sc_rxtap;
+	sc->sc_rxtap.wr_ihdr.it_len = htole16(sc->sc_rxtap_len);
+	sc->sc_rxtap.wr_ihdr.it_present = htole32(URTW_RX_RADIOTAP_PRESENT);
+
+	sc->sc_txtap_len = sizeof sc->sc_txtap;
+	sc->sc_txtap.wt_ihdr.it_len = htole16(sc->sc_txtap_len);
+	sc->sc_txtap.wt_ihdr.it_present = htole32(URTW_TX_RADIOTAP_PRESENT);
+
+	if (bootverbose)
+		ieee80211_announce(ic);
+
+	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev, sc->sc_dev);
+fail:
+	return (ret);
+}
+
+static usbd_status
+urtw_open_pipes(struct urtw_softc *sc)
+{
+	usbd_status error;
+
+	/*
+	 * NB: there is no way to distinguish each pipes so we need to hardcode
+	 * pipe numbers
+	 */
+
+	/* tx pipe - low priority packets  */
+	error = usbd_open_pipe(sc->sc_iface, 0x2, USBD_EXCLUSIVE_USE,
+	    &sc->sc_txpipe_low);
+	if (error != 0) {
+		device_printf(sc->sc_dev, "could not open Tx low pipe: %s\n",
+		    usbd_errstr(error));
+		goto fail;
+	}
+	/* tx pipe - normal priority packets  */
+	error = usbd_open_pipe(sc->sc_iface, 0x3, USBD_EXCLUSIVE_USE,
+	    &sc->sc_txpipe_normal);
+	if (error != 0) {
+		device_printf(sc->sc_dev, "could not open Tx normal pipe: %s\n",
+		    usbd_errstr(error));
+		goto fail;
+	}
+	/* rx pipe  */
+	error = usbd_open_pipe(sc->sc_iface, 0x81, USBD_EXCLUSIVE_USE,
+	    &sc->sc_rxpipe);
+	if (error != 0) {
+		device_printf(sc->sc_dev, "could not open Rx pipe: %s\n",
+		    usbd_errstr(error));
+		goto fail;
+	}
+
+	return (0);
+fail:
+	(void)urtw_close_pipes(sc);
+	return (error);
+}
+
+static usbd_status
+urtw_close_pipes(struct urtw_softc *sc)
+{
+	usbd_status error = 0;
+
+	if (sc->sc_rxpipe != NULL) {
+		error = usbd_close_pipe(sc->sc_rxpipe);
+		if (error != 0)
+			goto fail;
+		sc->sc_rxpipe = NULL;
+	}
+	if (sc->sc_txpipe_low != NULL) {
+		error = usbd_close_pipe(sc->sc_txpipe_low);
+		if (error != 0)
+			goto fail;
+		sc->sc_txpipe_low = NULL;
+	}
+	if (sc->sc_txpipe_normal != NULL) {
+		error = usbd_close_pipe(sc->sc_txpipe_normal);
+		if (error != 0)
+			goto fail;
+		sc->sc_txpipe_normal = NULL;
+	}
+fail:
+	return (error);
+}
+
+static int
+urtw_alloc_data_list(struct urtw_softc *sc, struct urtw_data data[],
+	int ndata, int maxsz, int fillmbuf)
+{
+	int i, error;
+
+	for (i = 0; i < ndata; i++) {
+		struct urtw_data *dp = &data[i];
+
+		dp->sc = sc;
+		dp->xfer = usbd_alloc_xfer(sc->sc_udev);
+		if (dp->xfer == NULL) {
+			device_printf(sc->sc_dev, "could not allocate xfer\n");
+			error = ENOMEM;
+			goto fail;
+		}
+		if (fillmbuf) {
+			dp->m = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
+			if (dp->m == NULL) {
+				device_printf(sc->sc_dev,
+				    "could not allocate rx mbuf\n");
+				error = ENOMEM;
+				goto fail;
+			}
+			dp->buf = mtod(dp->m, uint8_t *);
+		} else {
+			dp->m = NULL;
+			dp->buf = usbd_alloc_buffer(dp->xfer, maxsz);
+			if (dp->buf == NULL) {
+				device_printf(sc->sc_dev,
+				    "could not allocate buffer\n");
+				error = ENOMEM;
+				goto fail;
+			}
+			if (((unsigned long)dp->buf) % 4)
+				device_printf(sc->sc_dev,
+				    "warn: unaligned buffer %p\n", dp->buf);
+		}
+		dp->ni = NULL;
+	}
+
+	return 0;
+
+fail:	urtw_free_data_list(sc, NULL, NULL, data, ndata);
+	return error;
+}
+
+static void
+urtw_free_data_list(struct urtw_softc *sc, usbd_pipe_handle pipe1,
+    usbd_pipe_handle pipe2, struct urtw_data data[], int ndata)
+{
+	int i;
+
+	/* make sure no transfers are pending */
+	if (pipe1 != NULL)
+		usbd_abort_pipe(pipe1);
+	if (pipe2 != NULL)
+		usbd_abort_pipe(pipe2);
+
+	for (i = 0; i < ndata; i++) {
+		struct urtw_data *dp = &data[i];
+
+		if (dp->xfer != NULL) {
+			usbd_free_xfer(dp->xfer);
+			dp->xfer = NULL;
+		}
+		if (dp->m != NULL) {
+			m_freem(dp->m);
+			dp->m = NULL;
+		}
+		if (dp->ni != NULL) {
+			ieee80211_free_node(dp->ni);
+			dp->ni = NULL;
+		}
+	}
+}
+
+static int
+urtw_alloc_rx_data_list(struct urtw_softc *sc)
+{
+
+	return urtw_alloc_data_list(sc,
+	    sc->sc_rxdata, URTW_RX_DATA_LIST_COUNT, MCLBYTES, 1 /* mbufs */);
+}
+
+static void
+urtw_free_rx_data_list(struct urtw_softc *sc)
+{
+
+	urtw_free_data_list(sc, sc->sc_rxpipe, NULL, sc->sc_rxdata,
+	    URTW_RX_DATA_LIST_COUNT);
+}
+
+static int
+urtw_alloc_tx_data_list(struct urtw_softc *sc)
+{
+
+	return urtw_alloc_data_list(sc,
+	    sc->sc_txdata, URTW_TX_DATA_LIST_COUNT, URTW_TX_MAXSIZE,
+	    0 /* no mbufs */);
+}
+
+static void
+urtw_free_tx_data_list(struct urtw_softc *sc)
+{
+
+	urtw_free_data_list(sc, sc->sc_txpipe_low, sc->sc_txpipe_normal,
+	    sc->sc_txdata, URTW_TX_DATA_LIST_COUNT);
+}
+
+static usbd_status
+urtw_led_init(struct urtw_softc *sc)
+{
+	uint32_t rev;
+	usbd_status error;
+
+	urtw_read8_m(sc, URTW_PSR, &sc->sc_psr);
+	error = urtw_eprom_read32(sc, URTW_EPROM_SWREV, &rev);
+	if (error != 0)
+		goto fail;
+
+	switch (rev & URTW_EPROM_CID_MASK) {
+	case URTW_EPROM_CID_ALPHA0:
+		sc->sc_strategy = URTW_SW_LED_MODE1;
+		break;
+	case URTW_EPROM_CID_SERCOMM_PS:
+		sc->sc_strategy = URTW_SW_LED_MODE3;
+		break;
+	case URTW_EPROM_CID_HW_LED:
+		sc->sc_strategy = URTW_HW_LED;
+		break;
+	case URTW_EPROM_CID_RSVD0:
+	case URTW_EPROM_CID_RSVD1:
+	default:
+		sc->sc_strategy = URTW_SW_LED_MODE0;
+		break;
+	}
+
+	sc->sc_gpio_ledpin = URTW_LED_PIN_GPIO0;
+
+fail:
+	return (error);
+}
+
+/* XXX why we should allocalte memory buffer instead of using memory stack?  */
+static usbd_status
+urtw_8225_write_s16(struct urtw_softc *sc, uint8_t addr, int index,
+    uint16_t *data)
+{
+	uint8_t *buf;
+	uint16_t data16;
+	usb_device_request_t *req;
+	usbd_status error = 0;
+
+	data16 = *data;
+	req = (usb_device_request_t *)malloc(sizeof(usb_device_request_t),
+	    M_80211_VAP, M_NOWAIT | M_ZERO);
+	if (req == NULL) {
+		device_printf(sc->sc_dev, "could not allocate a memory\n");
+		goto fail0;
+	}
+	buf = (uint8_t *)malloc(2, M_80211_VAP, M_NOWAIT | M_ZERO);
+	if (req == NULL) {
+		device_printf(sc->sc_dev, "could not allocate a memory\n");
+		goto fail1;
+	}
+
+	req->bmRequestType = UT_WRITE_VENDOR_DEVICE;
+	req->bRequest = URTW_8187_SETREGS_REQ;
+	USETW(req->wValue, addr);
+	USETW(req->wIndex, index);
+	USETW(req->wLength, sizeof(uint16_t));
+	buf[0] = (data16 & 0x00ff);
+	buf[1] = (data16 & 0xff00) >> 8;
+
+	error = usbd_do_request(sc->sc_udev, req, buf);
+
+	free(buf, M_80211_VAP);
+fail1:	free(req, M_80211_VAP);
+fail0:	return (error);
+}
+
+static usbd_status
+urtw_8225_read(struct urtw_softc *sc, uint8_t addr, uint32_t *data)
+{
+	int i;
+	int16_t bit;
+	uint8_t rlen = 12, wlen = 6;
+	uint16_t o1, o2, o3, tmp;
+	uint32_t d2w = ((uint32_t)(addr & 0x1f)) << 27;
+	uint32_t mask = 0x80000000, value = 0;
+	usbd_status error;
+
+	urtw_read16_m(sc, URTW_RF_PINS_OUTPUT, &o1);
+	urtw_read16_m(sc, URTW_RF_PINS_ENABLE, &o2);
+	urtw_read16_m(sc, URTW_RF_PINS_SELECT, &o3);
+	urtw_write16_m(sc, URTW_RF_PINS_ENABLE, o2 | URTW_RF_PINS_MAGIC4);
+	urtw_write16_m(sc, URTW_RF_PINS_SELECT, o3 | URTW_RF_PINS_MAGIC4);
+	o1 &= ~URTW_RF_PINS_MAGIC4;
+	urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, o1 | URTW_BB_HOST_BANG_EN);
+	DELAY(5);
+	urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, o1);
+	DELAY(5);
+
+	for (i = 0; i < (wlen / 2); i++, mask = mask >> 1) {
+		bit = ((d2w & mask) != 0) ? 1 : 0;
+
+		urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1);
+		DELAY(2);
+		urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1 |
+		    URTW_BB_HOST_BANG_CLK);
+		DELAY(2);
+		urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1 |
+		    URTW_BB_HOST_BANG_CLK);
+		DELAY(2);
+		mask = mask >> 1;
+		if (i == 2)
+			break;
+		bit = ((d2w & mask) != 0) ? 1 : 0;
+		urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1 |
+		    URTW_BB_HOST_BANG_CLK);
+		DELAY(2);

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 05:33:48 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id B9985106566B;
	Fri, 23 Jan 2009 05:33:48 +0000 (UTC) (envelope-from sam@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id AA16B8FC0A;
	Fri, 23 Jan 2009 05:33:48 +0000 (UTC) (envelope-from sam@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N5XmEk032262;
	Fri, 23 Jan 2009 05:33:48 GMT (envelope-from sam@svn.freebsd.org)
Received: (from sam@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N5Xm1k032257;
	Fri, 23 Jan 2009 05:33:48 GMT (envelope-from sam@svn.freebsd.org)
Message-Id: <200901230533.n0N5Xm1k032257@svn.freebsd.org>
From: Sam Leffler 
Date: Fri, 23 Jan 2009 05:33:48 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187611 - in head/sys/dev/ath/ath_hal: ar5210 ar5211
	ar5212 ar5312 ar5416
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 05:33:49 -0000

Author: sam
Date: Fri Jan 23 05:33:48 2009
New Revision: 187611
URL: http://svn.freebsd.org/changeset/base/187611

Log:
  fix return status handling by ar5XXXReset; this is the reason the
  driver sometimes reports reset failed w/ status 0

Modified:
  head/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c
  head/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
  head/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
  head/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c
  head/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c

Modified: head/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c	Fri Jan 23 05:04:49 2009	(r187610)
+++ head/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c	Fri Jan 23 05:33:48 2009	(r187611)
@@ -14,7 +14,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: ar5210_reset.c,v 1.8 2008/11/11 17:25:16 sam Exp $
+ * $FreeBSD$
  */
 #include "opt_ah.h"
 
@@ -296,7 +296,7 @@ ar5210Reset(struct ath_hal *ah, HAL_OPMO
 
 	return AH_TRUE;
 bad:
-	if (*status)
+	if (status != AH_NULL)
 		*status = ecode;
 	return AH_FALSE;
 #undef FAIL

Modified: head/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c	Fri Jan 23 05:04:49 2009	(r187610)
+++ head/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c	Fri Jan 23 05:33:48 2009	(r187611)
@@ -14,7 +14,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: ar5211_reset.c,v 1.9 2008/11/27 22:29:52 sam Exp $
+ * $FreeBSD$
  */
 #include "opt_ah.h"
 
@@ -552,7 +552,7 @@ uint32_t softLedCfg, softLedState;
 
 	return AH_TRUE;
 bad:
-	if (*status)
+	if (status != AH_NULL)
 		*status = ecode;
 	return AH_FALSE;
 #undef FAIL

Modified: head/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c	Fri Jan 23 05:04:49 2009	(r187610)
+++ head/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c	Fri Jan 23 05:33:48 2009	(r187611)
@@ -14,7 +14,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: ar5212_reset.c,v 1.20 2008/11/27 22:30:00 sam Exp $
+ * $FreeBSD$
  */
 #include "opt_ah.h"
 
@@ -692,7 +692,7 @@ bad:
 	RESTORE_CCK(ah, chan, isBmode);
 
 	OS_MARK(ah, AH_MARK_RESET_DONE, ecode);
-	if (*status)
+	if (status != AH_NULL)
 		*status = ecode;
 	return AH_FALSE;
 #undef FAIL

Modified: head/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c	Fri Jan 23 05:04:49 2009	(r187610)
+++ head/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c	Fri Jan 23 05:33:48 2009	(r187611)
@@ -14,7 +14,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: ar5312_reset.c,v 1.10 2008/11/22 07:41:37 sam Exp $
+ * $FreeBSD$
  */
 #include "opt_ah.h"
 
@@ -597,7 +597,7 @@ ar5312Reset(struct ath_hal *ah, HAL_OPMO
 	return AH_TRUE;
 bad:
 	OS_MARK(ah, AH_MARK_RESET_DONE, ecode);
-	if (*status)
+	if (status != AH_NULL)
 		*status = ecode;
 	return AH_FALSE;
 #undef FAIL

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c	Fri Jan 23 05:04:49 2009	(r187610)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c	Fri Jan 23 05:33:48 2009	(r187611)
@@ -14,7 +14,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: ar5416_reset.c,v 1.27 2008/11/27 22:30:08 sam Exp $
+ * $FreeBSD$
  */
 #include "opt_ah.h"
 
@@ -470,7 +470,7 @@ ar5416Reset(struct ath_hal *ah, HAL_OPMO
 	return AH_TRUE;
 bad:
 	OS_MARK(ah, AH_MARK_RESET_DONE, ecode);
-	if (*status)
+	if (status != AH_NULL)
 		*status = ecode;
 	return AH_FALSE;
 #undef FAIL

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 05:45:17 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id A2612106564A;
	Fri, 23 Jan 2009 05:45:17 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 9389C8FC08;
	Fri, 23 Jan 2009 05:45:17 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N5jHNb032496;
	Fri, 23 Jan 2009 05:45:17 GMT (envelope-from weongyo@svn.freebsd.org)
Received: (from weongyo@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N5jHSK032495;
	Fri, 23 Jan 2009 05:45:17 GMT (envelope-from weongyo@svn.freebsd.org)
Message-Id: <200901230545.n0N5jHSK032495@svn.freebsd.org>
From: Weongyo Jeong 
Date: Fri, 23 Jan 2009 05:45:17 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187612 - head/sys/modules
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 05:45:18 -0000

Author: weongyo
Date: Fri Jan 23 05:45:17 2009
New Revision: 187612
URL: http://svn.freebsd.org/changeset/base/187612

Log:
  Connect urtw(4) to the i386 build only because it's not tested on amd64
  architecture but expect it'd work.  In cases on other architectures it'd
  not work yet.

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Fri Jan 23 05:33:48 2009	(r187611)
+++ head/sys/modules/Makefile	Fri Jan 23 05:45:17 2009	(r187612)
@@ -299,6 +299,7 @@ SUBDIR=	${_3dfx} \
 	uplcom \
 	ural \
 	urio \
+	${_urtw} \
 	usb \
 	usb2 \
 	uscanner \
@@ -438,6 +439,7 @@ _stg=		stg
 _streams=	streams
 _tmpfs=		tmpfs
 _upgt=		upgt
+_urtw=		urtw
 _wi=		wi
 _xe=		xe
 .if ${MK_ZFS} != "no" || defined(ALL_MODULES)

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 05:53:49 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 650C3106566B;
	Fri, 23 Jan 2009 05:53:49 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 566028FC0A;
	Fri, 23 Jan 2009 05:53:49 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N5rnre032660;
	Fri, 23 Jan 2009 05:53:49 GMT (envelope-from weongyo@svn.freebsd.org)
Received: (from weongyo@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N5rntu032659;
	Fri, 23 Jan 2009 05:53:49 GMT (envelope-from weongyo@svn.freebsd.org)
Message-Id: <200901230553.n0N5rntu032659@svn.freebsd.org>
From: Weongyo Jeong 
Date: Fri, 23 Jan 2009 05:53:49 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187613 - head/share/man/man4
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 05:53:49 -0000

Author: weongyo
Date: Fri Jan 23 05:53:49 2009
New Revision: 187613
URL: http://svn.freebsd.org/changeset/base/187613

Log:
  Connect urtw.4 to the build.

Modified:
  head/share/man/man4/Makefile

Modified: head/share/man/man4/Makefile
==============================================================================
--- head/share/man/man4/Makefile	Fri Jan 23 05:45:17 2009	(r187612)
+++ head/share/man/man4/Makefile	Fri Jan 23 05:53:49 2009	(r187613)
@@ -418,6 +418,7 @@ MAN=	aac.4 \
 	uplcom.4 \
 	ural.4 \
 	urio.4 \
+	${_urtw.4} \
 	usb.4 \
 	uscanner.4 \
 	uslcom.4 \
@@ -568,6 +569,7 @@ MLINKS+=u3g.4 u3gstub.4
 MLINKS+=udav.4 if_udav.4
 MLINKS+=upgt.4 if_upgt.4
 MLINKS+=ural.4 if_ural.4
+MLINKS+=${_urtw.4} ${_if_urtw.4}
 MLINKS+=vge.4 if_vge.4
 MLINKS+=vlan.4 if_vlan.4
 MLINKS+=vpo.4 imm.4
@@ -601,6 +603,7 @@ _if_ndis.4=	if_ndis.4
 _if_nfe.4=	if_nfe.4
 _if_nve.4=	if_nve.4
 _if_nxge.4=	if_nxge.4
+_if_urtw.4=	if_urtw.4
 _if_wpi.4=	if_wpi.4
 _ipmi.4=	ipmi.4
 _io.4=		io.4
@@ -614,6 +617,7 @@ _nxge.4=	nxge.4
 _rr232x.4=	rr232x.4
 _speaker.4=	speaker.4
 _spkr.4=	spkr.4
+_urtw.4=	urtw.4
 _wpi.4=		wpi.4
 .endif
 

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 05:56:10 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 510041065674;
	Fri, 23 Jan 2009 05:56:10 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 4270C8FC17;
	Fri, 23 Jan 2009 05:56:10 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N5u9So032752;
	Fri, 23 Jan 2009 05:56:09 GMT (envelope-from weongyo@svn.freebsd.org)
Received: (from weongyo@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N5u90v032751;
	Fri, 23 Jan 2009 05:56:09 GMT (envelope-from weongyo@svn.freebsd.org)
Message-Id: <200901230556.n0N5u90v032751@svn.freebsd.org>
From: Weongyo Jeong 
Date: Fri, 23 Jan 2009 05:56:09 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187614 - head/sys/boot/forth
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 05:56:10 -0000

Author: weongyo
Date: Fri Jan 23 05:56:09 2009
New Revision: 187614
URL: http://svn.freebsd.org/changeset/base/187614

Log:
  Add an entry for the urtw(4) module.

Modified:
  head/sys/boot/forth/loader.conf

Modified: head/sys/boot/forth/loader.conf
==============================================================================
--- head/sys/boot/forth/loader.conf	Fri Jan 23 05:53:49 2009	(r187613)
+++ head/sys/boot/forth/loader.conf	Fri Jan 23 05:56:09 2009	(r187614)
@@ -278,6 +278,7 @@ if_vge_load="NO"		# VIA VT6122 PCI Gigab
 if_udav_load="NO"		# Davicom DM9601 USB Ethernet
 if_upgt_load="NO"		# Conexant/Intersil PrismGT USB wireless
 if_ural_load="NO"		# Ralink Technology USB wireless
+if_urtw_load="NO"		# Realtek 8187L USB wireless
 if_vr_load="NO"			# VIA Rhine I and Rhine II
 if_vx_load="NO"			# 3Com 3C590 family
 if_wb_load="NO"			# Winbond W89C840F

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 05:57:40 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 8F6BC106566B;
	Fri, 23 Jan 2009 05:57:40 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 80F6C8FC12;
	Fri, 23 Jan 2009 05:57:40 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N5veS2032812;
	Fri, 23 Jan 2009 05:57:40 GMT (envelope-from weongyo@svn.freebsd.org)
Received: (from weongyo@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N5veJf032811;
	Fri, 23 Jan 2009 05:57:40 GMT (envelope-from weongyo@svn.freebsd.org)
Message-Id: <200901230557.n0N5veJf032811@svn.freebsd.org>
From: Weongyo Jeong 
Date: Fri, 23 Jan 2009 05:57:40 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187615 - head/usr.sbin/sysinstall
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 05:57:41 -0000

Author: weongyo
Date: Fri Jan 23 05:57:40 2009
New Revision: 187615
URL: http://svn.freebsd.org/changeset/base/187615

Log:
  Add urtw(4) to the list of supported network interface.

Modified:
  head/usr.sbin/sysinstall/devices.c

Modified: head/usr.sbin/sysinstall/devices.c
==============================================================================
--- head/usr.sbin/sysinstall/devices.c	Fri Jan 23 05:56:09 2009	(r187614)
+++ head/usr.sbin/sysinstall/devices.c	Fri Jan 23 05:57:40 2009	(r187615)
@@ -156,6 +156,7 @@ static struct _devname {
     NETWORK("tl",	"Texas Instruments ThunderLAN PCI Ethernet card"),
     NETWORK("upgt",	"Conexant/Intersil PrismGT USB wireless adapter"),
     NETWORK("ural",	"Ralink Technology RT2500USB 802.11 wireless adapter"),
+    NETWORK("urtw",	"Realtek 8187L USB wireless adapter"),
     NETWORK("vge",	"VIA VT612x PCI Gigabit Ethernet card"),
     NETWORK("vr",	"VIA VT3043/VT86C100A Rhine PCI Ethernet card"),
     NETWORK("vlan",	"IEEE 802.1Q VLAN network interface"),

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 08:12:50 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id CFC7B106566B;
	Fri, 23 Jan 2009 08:12:50 +0000 (UTC)
	(envelope-from maxim@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id BD03A8FC18;
	Fri, 23 Jan 2009 08:12:50 +0000 (UTC)
	(envelope-from maxim@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N8CoRx035561;
	Fri, 23 Jan 2009 08:12:50 GMT (envelope-from maxim@svn.freebsd.org)
Received: (from maxim@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N8Couw035560;
	Fri, 23 Jan 2009 08:12:50 GMT (envelope-from maxim@svn.freebsd.org)
Message-Id: <200901230812.n0N8Couw035560@svn.freebsd.org>
From: Maxim Konovalov 
Date: Fri, 23 Jan 2009 08:12:50 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187622 - stable/7/share/man/man9
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 08:12:51 -0000

Author: maxim
Date: Fri Jan 23 08:12:50 2009
New Revision: 187622
URL: http://svn.freebsd.org/changeset/base/187622

Log:
  MFC r177259: add missing .El.

Modified:
  stable/7/share/man/man9/rwlock.9

Modified: stable/7/share/man/man9/rwlock.9
==============================================================================
--- stable/7/share/man/man9/rwlock.9	Fri Jan 23 07:48:28 2009	(r187621)
+++ stable/7/share/man/man9/rwlock.9	Fri Jan 23 08:12:50 2009	(r187622)
@@ -153,6 +153,7 @@ Do not log any operations for this lock 
 .It Dv RW_RECURSE
 Allow threads to recursively acquire exclusive locks for
 .Fa rw .
+.El
 .It Fn rw_rlock "struct rwlock *rw"
 Lock
 .Fa rw

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 08:18:58 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id E8C5A106566C;
	Fri, 23 Jan 2009 08:18:58 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id BB4FA8FC0C;
	Fri, 23 Jan 2009 08:18:58 +0000 (UTC)
	(envelope-from weongyo@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N8IwSk035762;
	Fri, 23 Jan 2009 08:18:58 GMT (envelope-from weongyo@svn.freebsd.org)
Received: (from weongyo@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N8IwF6035761;
	Fri, 23 Jan 2009 08:18:58 GMT (envelope-from weongyo@svn.freebsd.org)
Message-Id: <200901230818.n0N8IwF6035761@svn.freebsd.org>
From: Weongyo Jeong 
Date: Fri, 23 Jan 2009 08:18:58 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187623 - head/sys/modules
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 08:18:59 -0000

Author: weongyo
Date: Fri Jan 23 08:18:58 2009
New Revision: 187623
URL: http://svn.freebsd.org/changeset/base/187623

Log:
  urtw(4) works also on amd64.
  
  Tested by:	kevlo

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Fri Jan 23 08:12:50 2009	(r187622)
+++ head/sys/modules/Makefile	Fri Jan 23 08:18:58 2009	(r187623)
@@ -571,6 +571,7 @@ _sppp=		sppp
 _tmpfs=		tmpfs
 _twa=		twa
 _upgt=		upgt
+_urtw=		urtw
 _wi=		wi
 _wpi=		wpi
 _wpifw=		wpifw

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 08:33:15 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7A183106564A;
	Fri, 23 Jan 2009 08:33:15 +0000 (UTC)
	(envelope-from maxim@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 661F28FC22;
	Fri, 23 Jan 2009 08:33:15 +0000 (UTC)
	(envelope-from maxim@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N8XF6i036065;
	Fri, 23 Jan 2009 08:33:15 GMT (envelope-from maxim@svn.freebsd.org)
Received: (from maxim@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N8XFlU036064;
	Fri, 23 Jan 2009 08:33:15 GMT (envelope-from maxim@svn.freebsd.org)
Message-Id: <200901230833.n0N8XFlU036064@svn.freebsd.org>
From: Maxim Konovalov 
Date: Fri, 23 Jan 2009 08:33:15 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187624 - stable/7/sbin/ifconfig
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 08:33:16 -0000

Author: maxim
Date: Fri Jan 23 08:33:15 2009
New Revision: 187624
URL: http://svn.freebsd.org/changeset/base/187624

Log:
  MFC r183616 manually: fix typoes.  Fix one more typo there is no
  in HEAD.

Modified:
  stable/7/sbin/ifconfig/ifconfig.8

Modified: stable/7/sbin/ifconfig/ifconfig.8
==============================================================================
--- stable/7/sbin/ifconfig/ifconfig.8	Fri Jan 23 08:18:58 2009	(r187623)
+++ stable/7/sbin/ifconfig/ifconfig.8	Fri Jan 23 08:33:15 2009	(r187624)
@@ -901,7 +901,7 @@ The
 .Fl v
 flag may be used to display long SSIDs.
 .Fl v
-also causes received information elements to be displayed symbolicaly.
+also causes received information elements to be displayed symbolically.
 This information may be updated automatically by the adaptor
 and/or with a
 .Cm scan
@@ -945,7 +945,7 @@ QoS encapsulation is enabled only when W
 By default information elements received from associated stations
 are displayed in a short form; the
 .Fl v
-flag causes this information to be displayed symbolicaly.
+flag causes this information to be displayed symbolically.
 .It Cm list wme
 Display the current parameters to use when operating in WME mode.
 When WME mode is enabled for an adaptor this information will be
@@ -1177,7 +1177,7 @@ Possible elements are:
 .Cm HT
 (station supports 802.11n/HT communication),
 .Cm ATH
-(station supoprts Atheros protocol extensions),
+(station supports Atheros protocol extensions),
 .Cm VEN
 (station supports unknown vendor-specific extensions).
 If the

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 08:37:26 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id A9B2A106564A;
	Fri, 23 Jan 2009 08:37:26 +0000 (UTC)
	(envelope-from maxim@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 7BEBB8FC16;
	Fri, 23 Jan 2009 08:37:26 +0000 (UTC)
	(envelope-from maxim@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0N8bQNj036189;
	Fri, 23 Jan 2009 08:37:26 GMT (envelope-from maxim@svn.freebsd.org)
Received: (from maxim@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0N8bQJn036188;
	Fri, 23 Jan 2009 08:37:26 GMT (envelope-from maxim@svn.freebsd.org)
Message-Id: <200901230837.n0N8bQJn036188@svn.freebsd.org>
From: Maxim Konovalov 
Date: Fri, 23 Jan 2009 08:37:26 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187625 - stable/7/sbin/ifconfig
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 08:37:27 -0000

Author: maxim
Date: Fri Jan 23 08:37:26 2009
New Revision: 187625
URL: http://svn.freebsd.org/changeset/base/187625

Log:
  Record r183616 MFC.

Modified:
  stable/7/sbin/ifconfig/   (props changed)

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 10:05:07 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 0351A1065673;
	Fri, 23 Jan 2009 10:05:07 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42])
	by mx1.freebsd.org (Postfix) with ESMTP id CD5688FC13;
	Fri, 23 Jan 2009 10:05:06 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from fledge.watson.org (fledge.watson.org [65.122.17.41])
	by cyrus.watson.org (Postfix) with ESMTPS id 6EFE846B03;
	Fri, 23 Jan 2009 05:05:06 -0500 (EST)
Date: Fri, 23 Jan 2009 10:05:06 +0000 (GMT)
From: Robert Watson 
X-X-Sender: robert@fledge.watson.org
To: Ivan Voras 
In-Reply-To: <9bbcef730901221619x390f3daau8104cf8912c4a237@mail.gmail.com>
Message-ID: 
References: <200901220621.n0M6LU5v002745@svn.freebsd.org>
	<20090122.104114.1927899760.imp@bsdimp.com>
	
	<9bbcef730901221255u5767d16bo230da23542a171d7@mail.gmail.com>
	
	<9bbcef730901221619x390f3daau8104cf8912c4a237@mail.gmail.com>
User-Agent: Alpine 2.00 (BSF 1167 2008-08-23)
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
Cc: svn-src-head@freebsd.org, jeff@freebsd.org, src-committers@freebsd.org,
	svn-src-all@freebsd.org, "M. Warner Losh" 
Subject: Re: svn commit: r187580 - head/tools/sched
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 10:05:07 -0000

On Fri, 23 Jan 2009, Ivan Voras wrote:

> I'm not a lawyer (very obviously - no talent for it all :) ) and was 
> probably wrongly interpreting the Geneva copyright convention.

It's not clear how relevant the Geneva copyright convention is at this point, 
given that most countries of interest are signatories to the Berne convention. 
Certainly once the US signed the convention, things got a lot more consistent. 
One of the interesting things about Circular 92 is how many of the weird 
clauses in it apply only to things created before the US joined the Berne 
convention (almost one hundred years after the date of the original 
convention).

> Can someone write a "practical guide to FreeBSD copyright matters for 
> developers" somewhere - wiki perhaps? (it could also include GPL-related 
> guidelines - GPLv3 even if there's consensus about it).

ORA has quite a nice, if rather US-centric, book on intellectual property and 
open source.  I picked up a copy at EuroBSDCon last year and was favourably 
impressed.  In general, my belief is that open source developers need to pay 
significant attention to intellectual property, as the "open" in open source 
is just as important as the "source" bit -- hacking code is easy, making sure 
everyone can use the result turns out to be a lot harder.  Computer scientists 
often suffer from two or three common misunderstandings of copyright law, 
certainly: that they understand it, that it can't be understood, and/or that 
it doesn't matter.

There is a committer's guide page on licenses, which basically says "if you 
use these licenses then you don't need core approval", but I think producing 
something a bit more substantive would be useful.  The Foundation board and 
the core team have had a number of conversations at various points about 
formalizing things a bit more, including with the Foundation's legal support, 
but the obvious questions arise: how to facilitate work on open source without 
overly constraining it, etc.

Robert N M Watson
Computer Laboratory
University of Cambridge

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 11:39:00 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 907FD1065672;
	Fri, 23 Jan 2009 11:39:00 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 7FEC68FC12;
	Fri, 23 Jan 2009 11:39:00 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NBd02n041844;
	Fri, 23 Jan 2009 11:39:00 GMT (envelope-from trhodes@svn.freebsd.org)
Received: (from trhodes@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NBd015041843;
	Fri, 23 Jan 2009 11:39:00 GMT (envelope-from trhodes@svn.freebsd.org)
Message-Id: <200901231139.n0NBd015041843@svn.freebsd.org>
From: Tom Rhodes 
Date: Fri, 23 Jan 2009 11:39:00 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187627 - head/bin/chmod
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 11:39:01 -0000

Author: trhodes
Date: Fri Jan 23 11:39:00 2009
New Revision: 187627
URL: http://svn.freebsd.org/changeset/base/187627

Log:
  Note the implication of setting the 'w' permission on directories,
  while here, expand the 'naughty bits' comment in BUGS.
  
  PR:		84265 and 84268
  Reviewed by:	keramida
  Obtained from:	hints from ceri, keramida

Modified:
  head/bin/chmod/chmod.1

Modified: head/bin/chmod/chmod.1
==============================================================================
--- head/bin/chmod/chmod.1	Fri Jan 23 11:11:29 2009	(r187626)
+++ head/bin/chmod/chmod.1	Fri Jan 23 11:39:00 2009	(r187627)
@@ -32,7 +32,7 @@
 .\"	@(#)chmod.1	8.4 (Berkeley) 3/31/94
 .\" $FreeBSD$
 .\"
-.Dd December 22, 2006
+.Dd January 23, 2009
 .Dt CHMOD 1
 .Os
 .Sh NAME
@@ -281,6 +281,10 @@ Operations upon the other permissions on
 ``o'' by itself), in combination with the
 .Ar perm
 symbols ``s'' or ``t'', are ignored.
+.Pp
+The ``w'' permission on directories will permit file creation, relocation,
+and copy into that directory.
+Files created within the directory itself will inherit its group ID.
 .Sh EXAMPLES
 .Bl -tag -width "u=rwx,go=u-w" -compact
 .It Li 644
@@ -343,4 +347,5 @@ command appeared in
 .Sh BUGS
 There is no
 .Ar perm
-option for the naughty bits.
+option for the naughty bits which are ``S'' and
+``T'' respectively.

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 11:54:32 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 451101065678;
	Fri, 23 Jan 2009 11:54:32 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 338708FC25;
	Fri, 23 Jan 2009 11:54:32 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NBsWRg042146;
	Fri, 23 Jan 2009 11:54:32 GMT
	(envelope-from keramida@svn.freebsd.org)
Received: (from keramida@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NBsWaP042144;
	Fri, 23 Jan 2009 11:54:32 GMT
	(envelope-from keramida@svn.freebsd.org)
Message-Id: <200901231154.n0NBsWaP042144@svn.freebsd.org>
From: Giorgos Keramidas 
Date: Fri, 23 Jan 2009 11:54:32 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187628 - stable/7/bin/ln
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 11:54:33 -0000

Author: keramida (doc committer)
Date: Fri Jan 23 11:54:31 2009
New Revision: 187628
URL: http://svn.freebsd.org/changeset/base/187628

Log:
  MFC 173702 from /head
  
    Express in the usage() and SYNOPSIS that -F depends on -s, and
    that -f and -i are exclusive.
  
  This reduces diffs of stable/7 from /head, in preparation for more MFCs.

Modified:
  stable/7/bin/ln/   (props changed)
  stable/7/bin/ln/ln.1
  stable/7/bin/ln/ln.c

Modified: stable/7/bin/ln/ln.1
==============================================================================
--- stable/7/bin/ln/ln.1	Fri Jan 23 11:39:00 2009	(r187627)
+++ stable/7/bin/ln/ln.1	Fri Jan 23 11:54:31 2009	(r187628)
@@ -41,11 +41,15 @@
 .Nd make links
 .Sh SYNOPSIS
 .Nm
-.Op Fl Ffhinsv
+.Op Fl s Op Fl F
+.Op Fl f | i
+.Op Fl hnv
 .Ar source_file
 .Op Ar target_file
 .Nm
-.Op Fl Ffhinsv
+.Op Fl s Op Fl F
+.Op Fl f | i
+.Op Fl hnv
 .Ar source_file ...
 .Ar target_dir
 .Nm link

Modified: stable/7/bin/ln/ln.c
==============================================================================
--- stable/7/bin/ln/ln.c	Fri Jan 23 11:39:00 2009	(r187627)
+++ stable/7/bin/ln/ln.c	Fri Jan 23 11:54:31 2009	(r187628)
@@ -254,8 +254,8 @@ void
 usage(void)
 {
 	(void)fprintf(stderr, "%s\n%s\n%s\n",
-	    "usage: ln [-Ffhinsv] source_file [target_file]",
-	    "       ln [-Ffhinsv] source_file ... target_dir",
+	    "usage: ln [-s [-F]] [-f | -i] [-hnv] source_file [target_file]",
+	    "       ln [-s [-F]] [-f | -i] [-hnv] source_file ... target_dir",
 	    "       link source_file target_file");
 	exit(1);
 }

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 11:58:25 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 505AE1065673;
	Fri, 23 Jan 2009 11:58:25 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 3DDED8FC1E;
	Fri, 23 Jan 2009 11:58:25 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NBwPWR042279;
	Fri, 23 Jan 2009 11:58:25 GMT
	(envelope-from keramida@svn.freebsd.org)
Received: (from keramida@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NBwPTG042277;
	Fri, 23 Jan 2009 11:58:25 GMT
	(envelope-from keramida@svn.freebsd.org)
Message-Id: <200901231158.n0NBwPTG042277@svn.freebsd.org>
From: Giorgos Keramidas 
Date: Fri, 23 Jan 2009 11:58:25 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187629 - stable/7/bin/ln
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 11:58:26 -0000

Author: keramida (doc committer)
Date: Fri Jan 23 11:58:24 2009
New Revision: 187629
URL: http://svn.freebsd.org/changeset/base/187629

Log:
  MFC 179603 and 179636 from /head
  
    Add a -w warning flag to ln(1).  When the -w option is enabled,
    ln(1) checks to see if the source of a symlink, i.e. the file it
    should point to actually exists.  The default is the old ln
    behavior, that does not check, to avoid surprising people who may
    be using ln(1) in scripts or other non-interactive places.
  
    PR:             bin/7265
    Submitted by:   Joel Ray Holveck, detlev!joelh at mail.camalott.com

Modified:
  stable/7/bin/ln/   (props changed)
  stable/7/bin/ln/ln.1
  stable/7/bin/ln/ln.c

Modified: stable/7/bin/ln/ln.1
==============================================================================
--- stable/7/bin/ln/ln.1	Fri Jan 23 11:54:31 2009	(r187628)
+++ stable/7/bin/ln/ln.1	Fri Jan 23 11:58:24 2009	(r187629)
@@ -32,7 +32,7 @@
 .\"	@(#)ln.1	8.2 (Berkeley) 12/30/93
 .\" $FreeBSD$
 .\"
-.Dd February 14, 2006
+.Dd June 6, 2008
 .Dt LN 1
 .Os
 .Sh NAME
@@ -42,13 +42,13 @@
 .Sh SYNOPSIS
 .Nm
 .Op Fl s Op Fl F
-.Op Fl f | i
+.Op Fl f | iw
 .Op Fl hnv
 .Ar source_file
 .Op Ar target_file
 .Nm
 .Op Fl s Op Fl F
-.Op Fl f | i
+.Op Fl f | iw
 .Op Fl hnv
 .Ar source_file ...
 .Ar target_dir
@@ -79,6 +79,8 @@ then unlink it so that the link may occu
 .Fl f
 option overrides any previous
 .Fl i
+and
+.Fl w
 options.)
 .It Fl F
 If the target file already exists and is a directory, then remove it
@@ -134,6 +136,8 @@ Create a symbolic link.
 Cause
 .Nm
 to be verbose, showing files as they are processed.
+.It Fl w
+Warn if the source of a symbolic link does not currently exist.
 .El
 .Pp
 By default,
@@ -194,9 +198,10 @@ operation using the two passed arguments
 The
 .Fl h ,
 .Fl i ,
-.Fl n
-and
+.Fl n ,
 .Fl v
+and
+.Fl w
 options are non-standard and their use in scripts is not recommended.
 They are provided solely for compatibility with other
 .Nm

Modified: stable/7/bin/ln/ln.c
==============================================================================
--- stable/7/bin/ln/ln.c	Fri Jan 23 11:54:31 2009	(r187628)
+++ stable/7/bin/ln/ln.c	Fri Jan 23 11:58:24 2009	(r187629)
@@ -58,6 +58,8 @@ int	hflag;				/* Check new name for syml
 int	iflag;				/* Interactive mode. */
 int	sflag;				/* Symbolic, not hard, link. */
 int	vflag;				/* Verbose output. */
+int	wflag;				/* Warn if symlink target does not
+					 * exist, and -f is not enabled. */
 					/* System link call. */
 int (*linkf)(const char *, const char *);
 char	linkch;
@@ -92,7 +94,7 @@ main(int argc, char *argv[])
 		exit(linkit(argv[0], argv[1], 0));
 	}
 
-	while ((ch = getopt(argc, argv, "Ffhinsv")) != -1)
+	while ((ch = getopt(argc, argv, "Ffhinsvw")) != -1)
 		switch (ch) {
 		case 'F':
 			Fflag = 1;
@@ -100,6 +102,7 @@ main(int argc, char *argv[])
 		case 'f':
 			fflag = 1;
 			iflag = 0;
+			wflag = 0;
 			break;
 		case 'h':
 		case 'n':
@@ -115,6 +118,9 @@ main(int argc, char *argv[])
 		case 'v':
 			vflag = 1;
 			break;
+		case 'w':
+			wflag = 1;
+			break;
 		case '?':
 		default:
 			usage();
@@ -127,8 +133,10 @@ main(int argc, char *argv[])
 	linkch = sflag ? '-' : '=';
 	if (sflag == 0)
 		Fflag = 0;
-	if (Fflag == 1 && iflag == 0)
+	if (Fflag == 1 && iflag == 0) {
 		fflag = 1;
+		wflag = 0;		/* Implied when fflag != 0 */
+	}
 
 	switch(argc) {
 	case 0:
@@ -167,6 +175,7 @@ linkit(const char *target, const char *s
 	const char *p;
 	int ch, exists, first;
 	char path[PATH_MAX];
+	char wbuf[PATH_MAX];
 
 	if (!sflag) {
 		/* If target doesn't exist, quit now. */
@@ -204,6 +213,32 @@ linkit(const char *target, const char *s
 
 	exists = !lstat(source, &sb);
 	/*
+	 * If the link source doesn't exist, and a symbolic link was
+	 * requested, and -w was specified, give a warning.
+	 */
+	if (sflag && wflag) {
+		if (*source == '/') {
+			/* Absolute link source. */
+			if (stat(source, &sb) != 0)
+				 warn("warning: %s inaccessible", source);
+		} else {
+			/*
+			 * Relative symlink source.  Try to construct the
+			 * absolute path of the source, by appending `source'
+			 * to the parent directory of the target.
+			 */
+			p = strrchr(target, '/');
+			if (p != NULL)
+				p++;
+			else
+				p = target;
+			(void)snprintf(wbuf, sizeof(wbuf), "%.*s%s",
+			    (int)(p - target), target, source);
+			if (stat(wbuf, &sb) != 0)
+				warn("warning: %s", source);
+		}
+	}
+	/*
 	 * If the file exists, then unlink it forcibly if -f was specified
 	 * and interactively if -i was specified.
 	 */

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 12:01:24 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 787061065673;
	Fri, 23 Jan 2009 12:01:24 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 66FB78FC16;
	Fri, 23 Jan 2009 12:01:24 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NC1OUe042406;
	Fri, 23 Jan 2009 12:01:24 GMT
	(envelope-from keramida@svn.freebsd.org)
Received: (from keramida@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NC1OaV042405;
	Fri, 23 Jan 2009 12:01:24 GMT
	(envelope-from keramida@svn.freebsd.org)
Message-Id: <200901231201.n0NC1OaV042405@svn.freebsd.org>
From: Giorgos Keramidas 
Date: Fri, 23 Jan 2009 12:01:24 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187630 - stable/7/bin/ln
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 12:01:25 -0000

Author: keramida (doc committer)
Date: Fri Jan 23 12:01:24 2009
New Revision: 187630
URL: http://svn.freebsd.org/changeset/base/187630

Log:
  MFC 187148 from /head
  
  Clean up a bit of confusing language and improve .Nd.
  
  PR:	47818

Modified:
  stable/7/bin/ln/   (props changed)
  stable/7/bin/ln/ln.1

Modified: stable/7/bin/ln/ln.1
==============================================================================
--- stable/7/bin/ln/ln.1	Fri Jan 23 11:58:24 2009	(r187629)
+++ stable/7/bin/ln/ln.1	Fri Jan 23 12:01:24 2009	(r187630)
@@ -38,7 +38,7 @@
 .Sh NAME
 .Nm ln ,
 .Nm link
-.Nd make links
+.Nd link files
 .Sh SYNOPSIS
 .Nm
 .Op Fl s Op Fl F
@@ -57,8 +57,13 @@
 .Sh DESCRIPTION
 The
 .Nm
-utility creates a new directory entry (linked file) which has the
-same modes as the original file.
+utility creates a new directory entry (linked file) for the file name
+specified by
+.Ar target_file .
+The
+.Ar target_file
+will be created with the same file modes as the
+.Ar source_file .
 It is useful for maintaining multiple copies of a file in many places
 at once without using up storage for the
 .Dq copies ;
@@ -148,7 +153,7 @@ links.
 A hard link to a file is indistinguishable from the original directory entry;
 any changes to a file are effectively independent of the name used to reference
 the file.
-Hard links may not normally refer to directories and may not span file systems.
+Directories may not be hardlinked, and hard links may not span file systems.
 .Pp
 A symbolic link contains the name of the file to
 which it is linked.

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 13:23:17 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id A17AA106568C;
	Fri, 23 Jan 2009 13:23:17 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 90AF38FC3E;
	Fri, 23 Jan 2009 13:23:17 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NDNH9l044115;
	Fri, 23 Jan 2009 13:23:17 GMT (envelope-from jhb@svn.freebsd.org)
Received: (from jhb@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NDNHZY044114;
	Fri, 23 Jan 2009 13:23:17 GMT (envelope-from jhb@svn.freebsd.org)
Message-Id: <200901231323.n0NDNHZY044114@svn.freebsd.org>
From: John Baldwin 
Date: Fri, 23 Jan 2009 13:23:17 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187631 - head/sys/kern
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 13:23:18 -0000

Author: jhb
Date: Fri Jan 23 13:23:17 2009
New Revision: 187631
URL: http://svn.freebsd.org/changeset/base/187631

Log:
  Use the correct type for the timeout parameter to the 32-bit
  compat version aio_waitcomplete().
  
  Reminded by:	bz
  Submitted by:	jamie
  MFC after:	3 days

Modified:
  head/sys/kern/vfs_aio.c

Modified: head/sys/kern/vfs_aio.c
==============================================================================
--- head/sys/kern/vfs_aio.c	Fri Jan 23 12:01:24 2009	(r187630)
+++ head/sys/kern/vfs_aio.c	Fri Jan 23 13:23:17 2009	(r187631)
@@ -2824,7 +2824,7 @@ int
 freebsd32_aio_waitcomplete(struct thread *td,
     struct freebsd32_aio_waitcomplete_args *uap)
 {
-	struct timespec ts32;
+	struct timespec32 ts32;
 	struct timespec ts, *tsp;
 	int error;
 

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 13:27:47 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 1CFA1106568A;
	Fri, 23 Jan 2009 13:27:47 +0000 (UTC) (envelope-from jhb@freebsd.org)
Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42])
	by mx1.freebsd.org (Postfix) with ESMTP id E15C08FC12;
	Fri, 23 Jan 2009 13:27:46 +0000 (UTC) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net
	[98.109.39.197])
	by cyrus.watson.org (Postfix) with ESMTPSA id 9074E46B06;
	Fri, 23 Jan 2009 08:27:46 -0500 (EST)
Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0)
	by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n0NDRIUR050730;
	Fri, 23 Jan 2009 08:27:40 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin 
To: "Bjoern A. Zeeb" 
Date: Fri, 23 Jan 2009 08:15:12 -0500
User-Agent: KMail/1.9.7
References: <200901222334.n0MNYt7r025398@svn.freebsd.org>
In-Reply-To: <200901222334.n0MNYt7r025398@svn.freebsd.org>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="utf-8"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200901230815.12490.jhb@freebsd.org>
X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by
	milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]);
	Fri, 23 Jan 2009 08:27:40 -0500 (EST)
X-Virus-Scanned: ClamAV 0.94.2/8895/Fri Jan 23 04:13:42 2009 on
	server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 
	autolearn=ham version=3.1.3
X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx
Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org,
	src-committers@freebsd.org, svn-src-stable-7@freebsd.org
Subject: Re: svn commit: r187605 - in stable/7/sys: . compat/freebsd32
	contrib/pf dev/cxgb
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 13:27:48 -0000

On Thursday 22 January 2009 6:34:55 pm Bjoern A. Zeeb wrote:
> Author: bz
> Date: Thu Jan 22 23:34:55 2009
> New Revision: 187605
> URL: http://svn.freebsd.org/changeset/base/187605
> 
> Log:
>   MFC: r185898
>   
>     Add 32-bit compat support for AIO.
>   
>     As I had comitted this as a fix for r185878 in HEAD, it seems
>     this was missed with the MFC at r187559. Unbreak the build.

Yes, sorry. :(

-- 
John Baldwin

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 13:27:52 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id ADDCF10656FD;
	Fri, 23 Jan 2009 13:27:52 +0000 (UTC) (envelope-from jhb@freebsd.org)
Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42])
	by mx1.freebsd.org (Postfix) with ESMTP id 749308FC12;
	Fri, 23 Jan 2009 13:27:52 +0000 (UTC) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net
	[98.109.39.197])
	by cyrus.watson.org (Postfix) with ESMTPSA id 22A6746B09;
	Fri, 23 Jan 2009 08:27:52 -0500 (EST)
Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0)
	by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n0NDRIUS050730;
	Fri, 23 Jan 2009 08:27:46 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin 
To: "Bjoern A. Zeeb" 
Date: Fri, 23 Jan 2009 08:23:50 -0500
User-Agent: KMail/1.9.7
References: <200812102056.mBAKuJ97042379@svn.freebsd.org>
	<200812111532.17651.jhb@freebsd.org>
	<20090122233042.P45399@maildrop.int.zabbadoz.net>
In-Reply-To: <20090122233042.P45399@maildrop.int.zabbadoz.net>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200901230823.51326.jhb@freebsd.org>
X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by
	milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]);
	Fri, 23 Jan 2009 08:27:46 -0500 (EST)
X-Virus-Scanned: ClamAV 0.94.2/8895/Fri Jan 23 04:13:42 2009 on
	server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 
	autolearn=ham version=3.1.3
X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx
Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org,
	src-committers@freebsd.org, James Gritton 
Subject: Re: svn commit: r185878 - in head/sys: compat/freebsd32 kern
	modules/aio
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 13:27:55 -0000

On Thursday 22 January 2009 6:31:20 pm Bjoern A. Zeeb wrote:
> On Thu, 11 Dec 2008, John Baldwin wrote:
> 
> > On Thursday 11 December 2008 01:46:21 pm James Gritton wrote:
> >> freebsd32_aio_waitcomplete() has a small error:
> >>
> >> @@ -2824,7 +2824,7 @@
> >>  freebsd32_aio_waitcomplete(struct thread *td,
> >>      struct freebsd32_aio_waitcomplete_args *uap)
> >>  {
> >> -    struct timespec ts32;
> >> +    struct timespec32 ts32;
> >>     struct timespec ts, *tsp;
> >>     int error;
> >>
> >> - Jamie
> >
> > Oof. :(  I think my aiotest thing doesn't call aio_waitcomplete() so I 
missed
> > this. :(
> 
> I think this has never been fixed in HEAD?

Goof, just fixed.  I believe I fixed this at Y! but forgot to fix it here. :(

-- 
John Baldwin

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 16:09:20 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 6DFC310656CE;
	Fri, 23 Jan 2009 16:09:20 +0000 (UTC)
	(envelope-from obrien@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 5397B8FC22;
	Fri, 23 Jan 2009 16:09:20 +0000 (UTC)
	(envelope-from obrien@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NG9KOs047111;
	Fri, 23 Jan 2009 16:09:20 GMT (envelope-from obrien@svn.freebsd.org)
Received: (from obrien@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NG9K52047109;
	Fri, 23 Jan 2009 16:09:20 GMT (envelope-from obrien@svn.freebsd.org)
Message-Id: <200901231609.n0NG9K52047109@svn.freebsd.org>
From: "David E. O'Brien" 
Date: Fri, 23 Jan 2009 16:09:20 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-vendor@freebsd.org
X-SVN-Group: vendor
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187632 - in vendor/binutils: 2.10.0 2.10.0/bfd
	2.10.0/binutils 2.10.0/config 2.10.0/gas 2.10.0/include
	2.10.0/ld 2.10.0/libiberty 2.10.0/opcodes 2.10.0/x 2.10.1
	2.10.1/bfd 2.10.1/binut...
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 16:09:22 -0000

Author: obrien
Date: Fri Jan 23 16:09:19 2009
New Revision: 187632
URL: http://svn.freebsd.org/changeset/base/187632

Log:
  Flatten vendor/binutils/*/{x,contrib}/binutils/* to just vendor/binutils/*/*
  Also, don't record this move and remove any keyword expansion.

Added:
  vendor/binutils/2.10.0/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/ChangeLog
  vendor/binutils/2.10.0/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/Makefile.in
  vendor/binutils/2.10.0/README
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/README
  vendor/binutils/2.10.0/bfd/
     - copied from r187594, vendor/binutils/2.10.0/x/binutils/bfd/
  vendor/binutils/2.10.0/binutils/
     - copied from r187594, vendor/binutils/2.10.0/x/binutils/binutils/
  vendor/binutils/2.10.0/config/
     - copied from r187594, vendor/binutils/2.10.0/x/binutils/config/
  vendor/binutils/2.10.0/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/config-ml.in
  vendor/binutils/2.10.0/config.guess
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/config.guess
  vendor/binutils/2.10.0/config.sub
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/config.sub
  vendor/binutils/2.10.0/configure
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/configure
  vendor/binutils/2.10.0/configure.in
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/configure.in
  vendor/binutils/2.10.0/gas/
     - copied from r187594, vendor/binutils/2.10.0/x/binutils/gas/
  vendor/binutils/2.10.0/include/
     - copied from r187594, vendor/binutils/2.10.0/x/binutils/include/
  vendor/binutils/2.10.0/install-sh
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/install-sh
  vendor/binutils/2.10.0/ld/
     - copied from r187594, vendor/binutils/2.10.0/x/binutils/ld/
  vendor/binutils/2.10.0/libiberty/
     - copied from r187594, vendor/binutils/2.10.0/x/binutils/libiberty/
  vendor/binutils/2.10.0/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/ltconfig
  vendor/binutils/2.10.0/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/ltmain.sh
  vendor/binutils/2.10.0/missing
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/missing
  vendor/binutils/2.10.0/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/mkinstalldirs
  vendor/binutils/2.10.0/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/move-if-change
  vendor/binutils/2.10.0/opcodes/
     - copied from r187594, vendor/binutils/2.10.0/x/binutils/opcodes/
  vendor/binutils/2.10.0/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/symlink-tree
  vendor/binutils/2.10.0/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.10.0/x/binutils/ylwrap
  vendor/binutils/2.10.1/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/ChangeLog
  vendor/binutils/2.10.1/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/Makefile.in
  vendor/binutils/2.10.1/README
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/README
  vendor/binutils/2.10.1/bfd/
     - copied from r187594, vendor/binutils/2.10.1/x/binutils/bfd/
  vendor/binutils/2.10.1/binutils/
     - copied from r187594, vendor/binutils/2.10.1/x/binutils/binutils/
  vendor/binutils/2.10.1/config/
     - copied from r187594, vendor/binutils/2.10.1/x/binutils/config/
  vendor/binutils/2.10.1/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/config-ml.in
  vendor/binutils/2.10.1/config.guess
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/config.guess
  vendor/binutils/2.10.1/config.sub
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/config.sub
  vendor/binutils/2.10.1/configure
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/configure
  vendor/binutils/2.10.1/configure.in
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/configure.in
  vendor/binutils/2.10.1/etc/
     - copied from r187594, vendor/binutils/2.10.1/x/binutils/etc/
  vendor/binutils/2.10.1/gas/
     - copied from r187594, vendor/binutils/2.10.1/x/binutils/gas/
  vendor/binutils/2.10.1/include/
     - copied from r187594, vendor/binutils/2.10.1/x/binutils/include/
  vendor/binutils/2.10.1/install-sh
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/install-sh
  vendor/binutils/2.10.1/ld/
     - copied from r187594, vendor/binutils/2.10.1/x/binutils/ld/
  vendor/binutils/2.10.1/libiberty/
     - copied from r187594, vendor/binutils/2.10.1/x/binutils/libiberty/
  vendor/binutils/2.10.1/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/ltconfig
  vendor/binutils/2.10.1/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/ltmain.sh
  vendor/binutils/2.10.1/missing
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/missing
  vendor/binutils/2.10.1/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/mkinstalldirs
  vendor/binutils/2.10.1/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/move-if-change
  vendor/binutils/2.10.1/opcodes/
     - copied from r187594, vendor/binutils/2.10.1/x/binutils/opcodes/
  vendor/binutils/2.10.1/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/symlink-tree
  vendor/binutils/2.10.1/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.10.1/x/binutils/ylwrap
  vendor/binutils/2.11.0/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/Makefile.in
  vendor/binutils/2.11.0/README
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/README
  vendor/binutils/2.11.0/bfd/
     - copied from r187594, vendor/binutils/2.11.0/x/binutils/bfd/
  vendor/binutils/2.11.0/binutils/
     - copied from r187594, vendor/binutils/2.11.0/x/binutils/binutils/
  vendor/binutils/2.11.0/config/
     - copied from r187594, vendor/binutils/2.11.0/x/binutils/config/
  vendor/binutils/2.11.0/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/config-ml.in
  vendor/binutils/2.11.0/config.guess
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/config.guess
  vendor/binutils/2.11.0/config.if
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/config.if
  vendor/binutils/2.11.0/config.sub
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/config.sub
  vendor/binutils/2.11.0/configure
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/configure
  vendor/binutils/2.11.0/configure.in
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/configure.in
  vendor/binutils/2.11.0/gas/
     - copied from r187594, vendor/binutils/2.11.0/x/binutils/gas/
  vendor/binutils/2.11.0/include/
     - copied from r187594, vendor/binutils/2.11.0/x/binutils/include/
  vendor/binutils/2.11.0/install-sh
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/install-sh
  vendor/binutils/2.11.0/ld/
     - copied from r187594, vendor/binutils/2.11.0/x/binutils/ld/
  vendor/binutils/2.11.0/libiberty/
     - copied from r187594, vendor/binutils/2.11.0/x/binutils/libiberty/
  vendor/binutils/2.11.0/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/ltconfig
  vendor/binutils/2.11.0/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/ltmain.sh
  vendor/binutils/2.11.0/md5.sum
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/md5.sum
  vendor/binutils/2.11.0/missing
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/missing
  vendor/binutils/2.11.0/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/mkinstalldirs
  vendor/binutils/2.11.0/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/move-if-change
  vendor/binutils/2.11.0/opcodes/
     - copied from r187594, vendor/binutils/2.11.0/x/binutils/opcodes/
  vendor/binutils/2.11.0/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/symlink-tree
  vendor/binutils/2.11.0/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.11.0/x/binutils/ylwrap
  vendor/binutils/2.11.2/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/Makefile.in
  vendor/binutils/2.11.2/README
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/README
  vendor/binutils/2.11.2/bfd/
     - copied from r187594, vendor/binutils/2.11.2/x/binutils/bfd/
  vendor/binutils/2.11.2/binutils/
     - copied from r187594, vendor/binutils/2.11.2/x/binutils/binutils/
  vendor/binutils/2.11.2/config/
     - copied from r187594, vendor/binutils/2.11.2/x/binutils/config/
  vendor/binutils/2.11.2/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/config-ml.in
  vendor/binutils/2.11.2/config.guess
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/config.guess
  vendor/binutils/2.11.2/config.if
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/config.if
  vendor/binutils/2.11.2/config.sub
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/config.sub
  vendor/binutils/2.11.2/configure
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/configure
  vendor/binutils/2.11.2/configure.in
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/configure.in
  vendor/binutils/2.11.2/gas/
     - copied from r187594, vendor/binutils/2.11.2/x/binutils/gas/
  vendor/binutils/2.11.2/include/
     - copied from r187594, vendor/binutils/2.11.2/x/binutils/include/
  vendor/binutils/2.11.2/install-sh
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/install-sh
  vendor/binutils/2.11.2/ld/
     - copied from r187594, vendor/binutils/2.11.2/x/binutils/ld/
  vendor/binutils/2.11.2/libiberty/
     - copied from r187594, vendor/binutils/2.11.2/x/binutils/libiberty/
  vendor/binutils/2.11.2/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/ltconfig
  vendor/binutils/2.11.2/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/ltmain.sh
  vendor/binutils/2.11.2/md5.sum
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/md5.sum
  vendor/binutils/2.11.2/missing
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/missing
  vendor/binutils/2.11.2/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/mkinstalldirs
  vendor/binutils/2.11.2/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/move-if-change
  vendor/binutils/2.11.2/opcodes/
     - copied from r187594, vendor/binutils/2.11.2/x/binutils/opcodes/
  vendor/binutils/2.11.2/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/symlink-tree
  vendor/binutils/2.11.2/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.11.2/x/binutils/ylwrap
  vendor/binutils/2.11.20010719/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/ChangeLog
  vendor/binutils/2.11.20010719/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/MAINTAINERS
  vendor/binutils/2.11.20010719/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/Makefile.in
  vendor/binutils/2.11.20010719/README
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/README
  vendor/binutils/2.11.20010719/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/README-maintainer-mode
  vendor/binutils/2.11.20010719/bfd/
     - copied from r187594, vendor/binutils/2.11.20010719/x/binutils/bfd/
  vendor/binutils/2.11.20010719/binutils/
     - copied from r187594, vendor/binutils/2.11.20010719/x/binutils/binutils/
  vendor/binutils/2.11.20010719/config/
     - copied from r187594, vendor/binutils/2.11.20010719/x/binutils/config/
  vendor/binutils/2.11.20010719/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/config-ml.in
  vendor/binutils/2.11.20010719/config.guess
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/config.guess
  vendor/binutils/2.11.20010719/config.if
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/config.if
  vendor/binutils/2.11.20010719/config.sub
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/config.sub
  vendor/binutils/2.11.20010719/configure
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/configure
  vendor/binutils/2.11.20010719/configure.in
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/configure.in
  vendor/binutils/2.11.20010719/gas/
     - copied from r187594, vendor/binutils/2.11.20010719/x/binutils/gas/
  vendor/binutils/2.11.20010719/include/
     - copied from r187594, vendor/binutils/2.11.20010719/x/binutils/include/
  vendor/binutils/2.11.20010719/install-sh
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/install-sh
  vendor/binutils/2.11.20010719/ld/
     - copied from r187594, vendor/binutils/2.11.20010719/x/binutils/ld/
  vendor/binutils/2.11.20010719/libiberty/
     - copied from r187594, vendor/binutils/2.11.20010719/x/binutils/libiberty/
  vendor/binutils/2.11.20010719/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/ltcf-c.sh
  vendor/binutils/2.11.20010719/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/ltconfig
  vendor/binutils/2.11.20010719/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/ltmain.sh
  vendor/binutils/2.11.20010719/missing
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/missing
  vendor/binutils/2.11.20010719/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/mkinstalldirs
  vendor/binutils/2.11.20010719/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/move-if-change
  vendor/binutils/2.11.20010719/opcodes/
     - copied from r187594, vendor/binutils/2.11.20010719/x/binutils/opcodes/
  vendor/binutils/2.11.20010719/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/symlink-tree
  vendor/binutils/2.11.20010719/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.11.20010719/x/binutils/ylwrap
  vendor/binutils/2.11.20011031/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/ChangeLog
  vendor/binutils/2.11.20011031/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/MAINTAINERS
  vendor/binutils/2.11.20011031/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/Makefile.in
  vendor/binutils/2.11.20011031/README
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/README
  vendor/binutils/2.11.20011031/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/README-maintainer-mode
  vendor/binutils/2.11.20011031/bfd/
     - copied from r187594, vendor/binutils/2.11.20011031/x/binutils/bfd/
  vendor/binutils/2.11.20011031/binutils/
     - copied from r187594, vendor/binutils/2.11.20011031/x/binutils/binutils/
  vendor/binutils/2.11.20011031/config/
     - copied from r187594, vendor/binutils/2.11.20011031/x/binutils/config/
  vendor/binutils/2.11.20011031/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/config-ml.in
  vendor/binutils/2.11.20011031/config.guess
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/config.guess
  vendor/binutils/2.11.20011031/config.sub
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/config.sub
  vendor/binutils/2.11.20011031/configure
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/configure
  vendor/binutils/2.11.20011031/configure.in
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/configure.in
  vendor/binutils/2.11.20011031/gas/
     - copied from r187594, vendor/binutils/2.11.20011031/x/binutils/gas/
  vendor/binutils/2.11.20011031/include/
     - copied from r187594, vendor/binutils/2.11.20011031/x/binutils/include/
  vendor/binutils/2.11.20011031/install-sh
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/install-sh
  vendor/binutils/2.11.20011031/ld/
     - copied from r187594, vendor/binutils/2.11.20011031/x/binutils/ld/
  vendor/binutils/2.11.20011031/libiberty/
     - copied from r187594, vendor/binutils/2.11.20011031/x/binutils/libiberty/
  vendor/binutils/2.11.20011031/libtool.m4
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/libtool.m4
  vendor/binutils/2.11.20011031/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/ltcf-c.sh
  vendor/binutils/2.11.20011031/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/ltcf-cxx.sh
  vendor/binutils/2.11.20011031/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/ltcf-gcj.sh
  vendor/binutils/2.11.20011031/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/ltconfig
  vendor/binutils/2.11.20011031/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/ltmain.sh
  vendor/binutils/2.11.20011031/missing
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/missing
  vendor/binutils/2.11.20011031/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/mkinstalldirs
  vendor/binutils/2.11.20011031/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/move-if-change
  vendor/binutils/2.11.20011031/opcodes/
     - copied from r187594, vendor/binutils/2.11.20011031/x/binutils/opcodes/
  vendor/binutils/2.11.20011031/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/symlink-tree
  vendor/binutils/2.11.20011031/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.11.20011031/x/binutils/ylwrap
  vendor/binutils/2.12.20020221/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/ChangeLog
  vendor/binutils/2.12.20020221/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/MAINTAINERS
  vendor/binutils/2.12.20020221/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/Makefile.in
  vendor/binutils/2.12.20020221/README
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/README
  vendor/binutils/2.12.20020221/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/README-maintainer-mode
  vendor/binutils/2.12.20020221/bfd/
     - copied from r187594, vendor/binutils/2.12.20020221/x/binutils/bfd/
  vendor/binutils/2.12.20020221/binutils/
     - copied from r187594, vendor/binutils/2.12.20020221/x/binutils/binutils/
  vendor/binutils/2.12.20020221/config/
     - copied from r187594, vendor/binutils/2.12.20020221/x/binutils/config/
  vendor/binutils/2.12.20020221/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/config-ml.in
  vendor/binutils/2.12.20020221/config.guess
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/config.guess
  vendor/binutils/2.12.20020221/config.sub
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/config.sub
  vendor/binutils/2.12.20020221/configure
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/configure
  vendor/binutils/2.12.20020221/configure.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/configure.in
  vendor/binutils/2.12.20020221/gas/
     - copied from r187594, vendor/binutils/2.12.20020221/x/binutils/gas/
  vendor/binutils/2.12.20020221/include/
     - copied from r187594, vendor/binutils/2.12.20020221/x/binutils/include/
  vendor/binutils/2.12.20020221/install-sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/install-sh
  vendor/binutils/2.12.20020221/ld/
     - copied from r187594, vendor/binutils/2.12.20020221/x/binutils/ld/
  vendor/binutils/2.12.20020221/libiberty/
     - copied from r187594, vendor/binutils/2.12.20020221/x/binutils/libiberty/
  vendor/binutils/2.12.20020221/libtool.m4
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/libtool.m4
  vendor/binutils/2.12.20020221/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/ltcf-c.sh
  vendor/binutils/2.12.20020221/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/ltcf-cxx.sh
  vendor/binutils/2.12.20020221/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/ltcf-gcj.sh
  vendor/binutils/2.12.20020221/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/ltconfig
  vendor/binutils/2.12.20020221/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/ltmain.sh
  vendor/binutils/2.12.20020221/missing
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/missing
  vendor/binutils/2.12.20020221/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/mkinstalldirs
  vendor/binutils/2.12.20020221/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/move-if-change
  vendor/binutils/2.12.20020221/opcodes/
     - copied from r187594, vendor/binutils/2.12.20020221/x/binutils/opcodes/
  vendor/binutils/2.12.20020221/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/symlink-tree
  vendor/binutils/2.12.20020221/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.12.20020221/x/binutils/ylwrap
  vendor/binutils/2.12.20020320/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/ChangeLog
  vendor/binutils/2.12.20020320/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/MAINTAINERS
  vendor/binutils/2.12.20020320/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/Makefile.in
  vendor/binutils/2.12.20020320/README
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/README
  vendor/binutils/2.12.20020320/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/README-maintainer-mode
  vendor/binutils/2.12.20020320/bfd/
     - copied from r187594, vendor/binutils/2.12.20020320/x/binutils/bfd/
  vendor/binutils/2.12.20020320/binutils/
     - copied from r187594, vendor/binutils/2.12.20020320/x/binutils/binutils/
  vendor/binutils/2.12.20020320/config/
     - copied from r187594, vendor/binutils/2.12.20020320/x/binutils/config/
  vendor/binutils/2.12.20020320/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/config-ml.in
  vendor/binutils/2.12.20020320/config.guess
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/config.guess
  vendor/binutils/2.12.20020320/config.sub
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/config.sub
  vendor/binutils/2.12.20020320/configure
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/configure
  vendor/binutils/2.12.20020320/configure.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/configure.in
  vendor/binutils/2.12.20020320/gas/
     - copied from r187594, vendor/binutils/2.12.20020320/x/binutils/gas/
  vendor/binutils/2.12.20020320/include/
     - copied from r187594, vendor/binutils/2.12.20020320/x/binutils/include/
  vendor/binutils/2.12.20020320/install-sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/install-sh
  vendor/binutils/2.12.20020320/ld/
     - copied from r187594, vendor/binutils/2.12.20020320/x/binutils/ld/
  vendor/binutils/2.12.20020320/libiberty/
     - copied from r187594, vendor/binutils/2.12.20020320/x/binutils/libiberty/
  vendor/binutils/2.12.20020320/libtool.m4
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/libtool.m4
  vendor/binutils/2.12.20020320/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/ltcf-c.sh
  vendor/binutils/2.12.20020320/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/ltcf-cxx.sh
  vendor/binutils/2.12.20020320/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/ltcf-gcj.sh
  vendor/binutils/2.12.20020320/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/ltconfig
  vendor/binutils/2.12.20020320/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/ltmain.sh
  vendor/binutils/2.12.20020320/missing
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/missing
  vendor/binutils/2.12.20020320/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/mkinstalldirs
  vendor/binutils/2.12.20020320/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/move-if-change
  vendor/binutils/2.12.20020320/opcodes/
     - copied from r187594, vendor/binutils/2.12.20020320/x/binutils/opcodes/
  vendor/binutils/2.12.20020320/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/symlink-tree
  vendor/binutils/2.12.20020320/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.12.20020320/x/binutils/ylwrap
  vendor/binutils/2.12.20020410/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/ChangeLog
  vendor/binutils/2.12.20020410/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/MAINTAINERS
  vendor/binutils/2.12.20020410/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/Makefile.in
  vendor/binutils/2.12.20020410/README
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/README
  vendor/binutils/2.12.20020410/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/README-maintainer-mode
  vendor/binutils/2.12.20020410/bfd/
     - copied from r187594, vendor/binutils/2.12.20020410/x/binutils/bfd/
  vendor/binutils/2.12.20020410/binutils/
     - copied from r187594, vendor/binutils/2.12.20020410/x/binutils/binutils/
  vendor/binutils/2.12.20020410/config/
     - copied from r187594, vendor/binutils/2.12.20020410/x/binutils/config/
  vendor/binutils/2.12.20020410/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/config-ml.in
  vendor/binutils/2.12.20020410/config.guess
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/config.guess
  vendor/binutils/2.12.20020410/config.if
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/config.if
  vendor/binutils/2.12.20020410/config.sub
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/config.sub
  vendor/binutils/2.12.20020410/configure
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/configure
  vendor/binutils/2.12.20020410/configure.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/configure.in
  vendor/binutils/2.12.20020410/gas/
     - copied from r187594, vendor/binutils/2.12.20020410/x/binutils/gas/
  vendor/binutils/2.12.20020410/include/
     - copied from r187594, vendor/binutils/2.12.20020410/x/binutils/include/
  vendor/binutils/2.12.20020410/install-sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/install-sh
  vendor/binutils/2.12.20020410/ld/
     - copied from r187594, vendor/binutils/2.12.20020410/x/binutils/ld/
  vendor/binutils/2.12.20020410/libiberty/
     - copied from r187594, vendor/binutils/2.12.20020410/x/binutils/libiberty/
  vendor/binutils/2.12.20020410/libtool.m4
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/libtool.m4
  vendor/binutils/2.12.20020410/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/ltcf-c.sh
  vendor/binutils/2.12.20020410/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/ltcf-cxx.sh
  vendor/binutils/2.12.20020410/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/ltcf-gcj.sh
  vendor/binutils/2.12.20020410/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/ltconfig
  vendor/binutils/2.12.20020410/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/ltmain.sh
  vendor/binutils/2.12.20020410/missing
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/missing
  vendor/binutils/2.12.20020410/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/mkinstalldirs
  vendor/binutils/2.12.20020410/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/move-if-change
  vendor/binutils/2.12.20020410/opcodes/
     - copied from r187594, vendor/binutils/2.12.20020410/x/binutils/opcodes/
  vendor/binutils/2.12.20020410/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/symlink-tree
  vendor/binutils/2.12.20020410/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.12.20020410/x/binutils/ylwrap
  vendor/binutils/2.12.20020622/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/ChangeLog
  vendor/binutils/2.12.20020622/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/MAINTAINERS
  vendor/binutils/2.12.20020622/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/Makefile.in
  vendor/binutils/2.12.20020622/README
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/README
  vendor/binutils/2.12.20020622/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/README-maintainer-mode
  vendor/binutils/2.12.20020622/bfd/
     - copied from r187594, vendor/binutils/2.12.20020622/x/binutils/bfd/
  vendor/binutils/2.12.20020622/binutils/
     - copied from r187594, vendor/binutils/2.12.20020622/x/binutils/binutils/
  vendor/binutils/2.12.20020622/config/
     - copied from r187594, vendor/binutils/2.12.20020622/x/binutils/config/
  vendor/binutils/2.12.20020622/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/config-ml.in
  vendor/binutils/2.12.20020622/config.guess
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/config.guess
  vendor/binutils/2.12.20020622/config.if
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/config.if
  vendor/binutils/2.12.20020622/config.sub
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/config.sub
  vendor/binutils/2.12.20020622/configure
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/configure
  vendor/binutils/2.12.20020622/configure.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/configure.in
  vendor/binutils/2.12.20020622/etc/
     - copied from r187594, vendor/binutils/2.12.20020622/x/binutils/etc/
  vendor/binutils/2.12.20020622/gas/
     - copied from r187594, vendor/binutils/2.12.20020622/x/binutils/gas/
  vendor/binutils/2.12.20020622/include/
     - copied from r187594, vendor/binutils/2.12.20020622/x/binutils/include/
  vendor/binutils/2.12.20020622/install-sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/install-sh
  vendor/binutils/2.12.20020622/ld/
     - copied from r187594, vendor/binutils/2.12.20020622/x/binutils/ld/
  vendor/binutils/2.12.20020622/libiberty/
     - copied from r187594, vendor/binutils/2.12.20020622/x/binutils/libiberty/
  vendor/binutils/2.12.20020622/libtool.m4
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/libtool.m4
  vendor/binutils/2.12.20020622/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/ltcf-c.sh
  vendor/binutils/2.12.20020622/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/ltcf-cxx.sh
  vendor/binutils/2.12.20020622/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/ltcf-gcj.sh
  vendor/binutils/2.12.20020622/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/ltconfig
  vendor/binutils/2.12.20020622/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/ltmain.sh
  vendor/binutils/2.12.20020622/missing
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/missing
  vendor/binutils/2.12.20020622/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/mkinstalldirs
  vendor/binutils/2.12.20020622/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/move-if-change
  vendor/binutils/2.12.20020622/opcodes/
     - copied from r187594, vendor/binutils/2.12.20020622/x/binutils/opcodes/
  vendor/binutils/2.12.20020622/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/symlink-tree
  vendor/binutils/2.12.20020622/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.12.20020622/x/binutils/ylwrap
  vendor/binutils/2.12.20020720/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/ChangeLog
  vendor/binutils/2.12.20020720/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/MAINTAINERS
  vendor/binutils/2.12.20020720/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/Makefile.in
  vendor/binutils/2.12.20020720/README
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/README
  vendor/binutils/2.12.20020720/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/README-maintainer-mode
  vendor/binutils/2.12.20020720/bfd/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/bfd/
  vendor/binutils/2.12.20020720/binutils/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/binutils/
  vendor/binutils/2.12.20020720/config/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/config/
  vendor/binutils/2.12.20020720/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/config-ml.in
  vendor/binutils/2.12.20020720/config.guess
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/config.guess
  vendor/binutils/2.12.20020720/config.if
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/config.if
  vendor/binutils/2.12.20020720/config.sub
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/config.sub
  vendor/binutils/2.12.20020720/configure
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/configure
  vendor/binutils/2.12.20020720/configure.in
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/configure.in
  vendor/binutils/2.12.20020720/etc/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/etc/
  vendor/binutils/2.12.20020720/gas/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/gas/
  vendor/binutils/2.12.20020720/gprof/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/gprof/
  vendor/binutils/2.12.20020720/include/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/include/
  vendor/binutils/2.12.20020720/install-sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/install-sh
  vendor/binutils/2.12.20020720/ld/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/ld/
  vendor/binutils/2.12.20020720/libiberty/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/libiberty/
  vendor/binutils/2.12.20020720/libtool.m4
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/libtool.m4
  vendor/binutils/2.12.20020720/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/ltcf-c.sh
  vendor/binutils/2.12.20020720/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/ltcf-cxx.sh
  vendor/binutils/2.12.20020720/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/ltcf-gcj.sh
  vendor/binutils/2.12.20020720/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/ltconfig
  vendor/binutils/2.12.20020720/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/ltmain.sh
  vendor/binutils/2.12.20020720/missing
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/missing
  vendor/binutils/2.12.20020720/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/mkinstalldirs
  vendor/binutils/2.12.20020720/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/move-if-change
  vendor/binutils/2.12.20020720/opcodes/
     - copied from r187594, vendor/binutils/2.12.20020720/x/binutils/opcodes/
  vendor/binutils/2.12.20020720/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/symlink-tree
  vendor/binutils/2.12.20020720/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.12.20020720/x/binutils/ylwrap
  vendor/binutils/2.13.20021011/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/ChangeLog
  vendor/binutils/2.13.20021011/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/MAINTAINERS
  vendor/binutils/2.13.20021011/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/Makefile.in
  vendor/binutils/2.13.20021011/README
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/README
  vendor/binutils/2.13.20021011/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/README-maintainer-mode
  vendor/binutils/2.13.20021011/bfd/
     - copied from r187594, vendor/binutils/2.13.20021011/x/binutils/bfd/
  vendor/binutils/2.13.20021011/binutils/
     - copied from r187594, vendor/binutils/2.13.20021011/x/binutils/binutils/
  vendor/binutils/2.13.20021011/config/
     - copied from r187594, vendor/binutils/2.13.20021011/x/binutils/config/
  vendor/binutils/2.13.20021011/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/config-ml.in
  vendor/binutils/2.13.20021011/config.guess
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/config.guess
  vendor/binutils/2.13.20021011/config.sub
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/config.sub
  vendor/binutils/2.13.20021011/configure
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/configure
  vendor/binutils/2.13.20021011/configure.in
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/configure.in
  vendor/binutils/2.13.20021011/contrib/
     - copied from r187594, vendor/binutils/2.13.20021011/x/binutils/contrib/
  vendor/binutils/2.13.20021011/gas/
     - copied from r187594, vendor/binutils/2.13.20021011/x/binutils/gas/
  vendor/binutils/2.13.20021011/include/
     - copied from r187594, vendor/binutils/2.13.20021011/x/binutils/include/
  vendor/binutils/2.13.20021011/install-sh
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/install-sh
  vendor/binutils/2.13.20021011/ld/
     - copied from r187594, vendor/binutils/2.13.20021011/x/binutils/ld/
  vendor/binutils/2.13.20021011/libiberty/
     - copied from r187594, vendor/binutils/2.13.20021011/x/binutils/libiberty/
  vendor/binutils/2.13.20021011/libtool.m4
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/libtool.m4
  vendor/binutils/2.13.20021011/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/ltcf-c.sh
  vendor/binutils/2.13.20021011/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/ltcf-cxx.sh
  vendor/binutils/2.13.20021011/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/ltcf-gcj.sh
  vendor/binutils/2.13.20021011/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/ltconfig
  vendor/binutils/2.13.20021011/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/ltmain.sh
  vendor/binutils/2.13.20021011/missing
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/missing
  vendor/binutils/2.13.20021011/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/mkinstalldirs
  vendor/binutils/2.13.20021011/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/move-if-change
  vendor/binutils/2.13.20021011/opcodes/
     - copied from r187594, vendor/binutils/2.13.20021011/x/binutils/opcodes/
  vendor/binutils/2.13.20021011/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/symlink-tree
  vendor/binutils/2.13.20021011/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.13.20021011/x/binutils/ylwrap
  vendor/binutils/2.13.2_20021127/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/ChangeLog
  vendor/binutils/2.13.2_20021127/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/MAINTAINERS
  vendor/binutils/2.13.2_20021127/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/Makefile.in
  vendor/binutils/2.13.2_20021127/README
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/README
  vendor/binutils/2.13.2_20021127/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/README-maintainer-mode
  vendor/binutils/2.13.2_20021127/bfd/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/bfd/
  vendor/binutils/2.13.2_20021127/binutils/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/binutils/
  vendor/binutils/2.13.2_20021127/config/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/config/
  vendor/binutils/2.13.2_20021127/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/config-ml.in
  vendor/binutils/2.13.2_20021127/config.guess
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/config.guess
  vendor/binutils/2.13.2_20021127/config.if
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/config.if
  vendor/binutils/2.13.2_20021127/config.sub
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/config.sub
  vendor/binutils/2.13.2_20021127/configure
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/configure
  vendor/binutils/2.13.2_20021127/configure.in
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/configure.in
  vendor/binutils/2.13.2_20021127/contrib/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/contrib/
  vendor/binutils/2.13.2_20021127/etc/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/etc/
  vendor/binutils/2.13.2_20021127/gas/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/gas/
  vendor/binutils/2.13.2_20021127/gprof/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/gprof/
  vendor/binutils/2.13.2_20021127/include/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/include/
  vendor/binutils/2.13.2_20021127/install-sh
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/install-sh
  vendor/binutils/2.13.2_20021127/ld/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/ld/
  vendor/binutils/2.13.2_20021127/libiberty/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/libiberty/
  vendor/binutils/2.13.2_20021127/libtool.m4
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/libtool.m4
  vendor/binutils/2.13.2_20021127/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/ltcf-c.sh
  vendor/binutils/2.13.2_20021127/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/ltcf-cxx.sh
  vendor/binutils/2.13.2_20021127/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/ltcf-gcj.sh
  vendor/binutils/2.13.2_20021127/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/ltconfig
  vendor/binutils/2.13.2_20021127/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/ltmain.sh
  vendor/binutils/2.13.2_20021127/missing
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/missing
  vendor/binutils/2.13.2_20021127/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/mkinstalldirs
  vendor/binutils/2.13.2_20021127/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/move-if-change
  vendor/binutils/2.13.2_20021127/opcodes/
     - copied from r187594, vendor/binutils/2.13.2_20021127/x/binutils/opcodes/
  vendor/binutils/2.13.2_20021127/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/symlink-tree
  vendor/binutils/2.13.2_20021127/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.13.2_20021127/x/binutils/ylwrap
  vendor/binutils/2.15.20040523/ChangeLog
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/ChangeLog
  vendor/binutils/2.15.20040523/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/MAINTAINERS
  vendor/binutils/2.15.20040523/Makefile.def
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/Makefile.def
  vendor/binutils/2.15.20040523/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/Makefile.in
  vendor/binutils/2.15.20040523/Makefile.tpl
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/Makefile.tpl
  vendor/binutils/2.15.20040523/README
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/README
  vendor/binutils/2.15.20040523/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/README-maintainer-mode
  vendor/binutils/2.15.20040523/bfd/
     - copied from r187594, vendor/binutils/2.15.20040523/x/binutils/bfd/
  vendor/binutils/2.15.20040523/binutils/
     - copied from r187594, vendor/binutils/2.15.20040523/x/binutils/binutils/
  vendor/binutils/2.15.20040523/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/config-ml.in
  vendor/binutils/2.15.20040523/config.guess
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/config.guess
  vendor/binutils/2.15.20040523/config.if
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/config.if
  vendor/binutils/2.15.20040523/config.sub
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/config.sub
  vendor/binutils/2.15.20040523/configure
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/configure
  vendor/binutils/2.15.20040523/configure.in
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/configure.in
  vendor/binutils/2.15.20040523/gas/
     - copied from r187594, vendor/binutils/2.15.20040523/x/binutils/gas/
  vendor/binutils/2.15.20040523/gprof/
     - copied from r187594, vendor/binutils/2.15.20040523/x/binutils/gprof/
  vendor/binutils/2.15.20040523/include/
     - copied from r187594, vendor/binutils/2.15.20040523/x/binutils/include/
  vendor/binutils/2.15.20040523/install-sh
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/install-sh
  vendor/binutils/2.15.20040523/ld/
     - copied from r187594, vendor/binutils/2.15.20040523/x/binutils/ld/
  vendor/binutils/2.15.20040523/libiberty/
     - copied from r187594, vendor/binutils/2.15.20040523/x/binutils/libiberty/
  vendor/binutils/2.15.20040523/libtool.m4
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/libtool.m4
  vendor/binutils/2.15.20040523/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/ltcf-c.sh
  vendor/binutils/2.15.20040523/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/ltcf-cxx.sh
  vendor/binutils/2.15.20040523/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/ltcf-gcj.sh
  vendor/binutils/2.15.20040523/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/ltconfig
  vendor/binutils/2.15.20040523/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/ltmain.sh
  vendor/binutils/2.15.20040523/missing
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/missing
  vendor/binutils/2.15.20040523/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/mkinstalldirs
  vendor/binutils/2.15.20040523/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/move-if-change
  vendor/binutils/2.15.20040523/opcodes/
     - copied from r187594, vendor/binutils/2.15.20040523/x/binutils/opcodes/
  vendor/binutils/2.15.20040523/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/symlink-tree
  vendor/binutils/2.15.20040523/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.15.20040523/x/binutils/ylwrap
  vendor/binutils/2.15.20050217/gas/
     - copied from r187594, vendor/binutils/2.15.20050217/x/binutils/gas/
  vendor/binutils/2.15.NOTHING/bfd/
     - copied from r187594, vendor/binutils/2.15.NOTHING/x/binutils/bfd/
  vendor/binutils/2.15.NOTHING/opcodes/
     - copied from r187594, vendor/binutils/2.15.NOTHING/x/binutils/opcodes/
  vendor/binutils/2.15.cvsrev_1_51/libiberty/
     - copied from r187594, vendor/binutils/2.15.cvsrev_1_51/x/binutils/libiberty/
  vendor/binutils/2.8.1/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/Makefile.in
  vendor/binutils/2.8.1/README
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/README
  vendor/binutils/2.8.1/bfd/
     - copied from r187594, vendor/binutils/2.8.1/x/binutils/bfd/
  vendor/binutils/2.8.1/binutils/
     - copied from r187594, vendor/binutils/2.8.1/x/binutils/binutils/
  vendor/binutils/2.8.1/config/
     - copied from r187594, vendor/binutils/2.8.1/x/binutils/config/
  vendor/binutils/2.8.1/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/config-ml.in
  vendor/binutils/2.8.1/config.guess
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/config.guess
  vendor/binutils/2.8.1/config.sub
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/config.sub
  vendor/binutils/2.8.1/configure
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/configure
  vendor/binutils/2.8.1/configure.in
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/configure.in
  vendor/binutils/2.8.1/etc/
     - copied from r187594, vendor/binutils/2.8.1/x/binutils/etc/
  vendor/binutils/2.8.1/gas/
     - copied from r187594, vendor/binutils/2.8.1/x/binutils/gas/
  vendor/binutils/2.8.1/include/
     - copied from r187594, vendor/binutils/2.8.1/x/binutils/include/
  vendor/binutils/2.8.1/install.sh
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/install.sh
  vendor/binutils/2.8.1/ld/
     - copied from r187594, vendor/binutils/2.8.1/x/binutils/ld/
  vendor/binutils/2.8.1/libiberty/
     - copied from r187594, vendor/binutils/2.8.1/x/binutils/libiberty/
  vendor/binutils/2.8.1/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/move-if-change
  vendor/binutils/2.8.1/opcodes/
     - copied from r187594, vendor/binutils/2.8.1/x/binutils/opcodes/
  vendor/binutils/2.8.1/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.8.1/x/binutils/symlink-tree
  vendor/binutils/2.9.1/Makefile.in
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/Makefile.in
  vendor/binutils/2.9.1/README
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/README
  vendor/binutils/2.9.1/bfd/
     - copied from r187594, vendor/binutils/2.9.1/x/binutils/bfd/
  vendor/binutils/2.9.1/binutils/
     - copied from r187594, vendor/binutils/2.9.1/x/binutils/binutils/
  vendor/binutils/2.9.1/config/
     - copied from r187594, vendor/binutils/2.9.1/x/binutils/config/
  vendor/binutils/2.9.1/config-ml.in
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/config-ml.in
  vendor/binutils/2.9.1/config.guess
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/config.guess
  vendor/binutils/2.9.1/config.sub
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/config.sub
  vendor/binutils/2.9.1/configure
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/configure
  vendor/binutils/2.9.1/configure.in
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/configure.in
  vendor/binutils/2.9.1/etc/
     - copied from r187594, vendor/binutils/2.9.1/x/binutils/etc/
  vendor/binutils/2.9.1/gas/
     - copied from r187594, vendor/binutils/2.9.1/x/binutils/gas/
  vendor/binutils/2.9.1/include/
     - copied from r187594, vendor/binutils/2.9.1/x/binutils/include/
  vendor/binutils/2.9.1/install-sh
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/install-sh
  vendor/binutils/2.9.1/ld/
     - copied from r187594, vendor/binutils/2.9.1/x/binutils/ld/
  vendor/binutils/2.9.1/libiberty/
     - copied from r187594, vendor/binutils/2.9.1/x/binutils/libiberty/
  vendor/binutils/2.9.1/ltconfig
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/ltconfig
  vendor/binutils/2.9.1/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/ltmain.sh
  vendor/binutils/2.9.1/missing
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/missing
  vendor/binutils/2.9.1/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/mkinstalldirs
  vendor/binutils/2.9.1/move-if-change
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/move-if-change
  vendor/binutils/2.9.1/opcodes/
     - copied from r187594, vendor/binutils/2.9.1/x/binutils/opcodes/
  vendor/binutils/2.9.1/symlink-tree
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/symlink-tree
  vendor/binutils/2.9.1/ylwrap
     - copied unchanged from r187594, vendor/binutils/2.9.1/x/binutils/ylwrap
  vendor/binutils/anoncvs_20000414/include/
     - copied from r187594, vendor/binutils/anoncvs_20000414/x/binutils/include/
  vendor/binutils/anoncvs_20020127/ChangeLog
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/ChangeLog
  vendor/binutils/anoncvs_20020127/MAINTAINERS
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/MAINTAINERS
  vendor/binutils/anoncvs_20020127/Makefile.in
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/Makefile.in
  vendor/binutils/anoncvs_20020127/README
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/README
  vendor/binutils/anoncvs_20020127/README-maintainer-mode
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/README-maintainer-mode
  vendor/binutils/anoncvs_20020127/bfd/
     - copied from r187594, vendor/binutils/anoncvs_20020127/x/binutils/bfd/
  vendor/binutils/anoncvs_20020127/binutils/
     - copied from r187594, vendor/binutils/anoncvs_20020127/x/binutils/binutils/
  vendor/binutils/anoncvs_20020127/config/
     - copied from r187594, vendor/binutils/anoncvs_20020127/x/binutils/config/
  vendor/binutils/anoncvs_20020127/config-ml.in
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/config-ml.in
  vendor/binutils/anoncvs_20020127/config.guess
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/config.guess
  vendor/binutils/anoncvs_20020127/config.if
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/config.if
  vendor/binutils/anoncvs_20020127/config.sub
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/config.sub
  vendor/binutils/anoncvs_20020127/configure
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/configure
  vendor/binutils/anoncvs_20020127/configure.in
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/configure.in
  vendor/binutils/anoncvs_20020127/gas/
     - copied from r187594, vendor/binutils/anoncvs_20020127/x/binutils/gas/
  vendor/binutils/anoncvs_20020127/include/
     - copied from r187594, vendor/binutils/anoncvs_20020127/x/binutils/include/
  vendor/binutils/anoncvs_20020127/install-sh
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/install-sh
  vendor/binutils/anoncvs_20020127/ld/
     - copied from r187594, vendor/binutils/anoncvs_20020127/x/binutils/ld/
  vendor/binutils/anoncvs_20020127/libiberty/
     - copied from r187594, vendor/binutils/anoncvs_20020127/x/binutils/libiberty/
  vendor/binutils/anoncvs_20020127/libtool.m4
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/libtool.m4
  vendor/binutils/anoncvs_20020127/ltcf-c.sh
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/ltcf-c.sh
  vendor/binutils/anoncvs_20020127/ltcf-cxx.sh
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/ltcf-cxx.sh
  vendor/binutils/anoncvs_20020127/ltcf-gcj.sh
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/ltcf-gcj.sh
  vendor/binutils/anoncvs_20020127/ltconfig
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/ltconfig
  vendor/binutils/anoncvs_20020127/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/ltmain.sh
  vendor/binutils/anoncvs_20020127/missing
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/missing
  vendor/binutils/anoncvs_20020127/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/mkinstalldirs
  vendor/binutils/anoncvs_20020127/move-if-change
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/move-if-change
  vendor/binutils/anoncvs_20020127/opcodes/
     - copied from r187594, vendor/binutils/anoncvs_20020127/x/binutils/opcodes/
  vendor/binutils/anoncvs_20020127/symlink-tree
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/symlink-tree
  vendor/binutils/anoncvs_20020127/ylwrap
     - copied unchanged from r187594, vendor/binutils/anoncvs_20020127/x/binutils/ylwrap
  vendor/binutils/cygnus_sourceware_anoncvs_19990502/gas/
     - copied from r187594, vendor/binutils/cygnus_sourceware_anoncvs_19990502/x/binutils/gas/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/ChangeLog
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ChangeLog
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/Makefile.in
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/Makefile.in
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/README
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/README
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/bfd/
     - copied from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/bfd/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/binutils/
     - copied from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/binutils/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/config/
     - copied from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/config-ml.in
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config-ml.in
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/config.guess
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config.guess
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/config.sub
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/config.sub
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/configure
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/configure
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/configure.in
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/configure.in
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/etc/
     - copied from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/etc/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/gas/
     - copied from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/gas/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/include/
     - copied from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/include/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/install-sh
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/install-sh
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/ld/
     - copied from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ld/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/libiberty/
     - copied from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/libiberty/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/ltconfig
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ltconfig
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/ltmain.sh
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ltmain.sh
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/missing
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/missing
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/mkinstalldirs
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/mkinstalldirs
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/move-if-change
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/move-if-change
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/opcodes/
     - copied from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/opcodes/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/symlink-tree
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/symlink-tree
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/ylwrap
     - copied unchanged from r187594, vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/binutils/ylwrap
  vendor/binutils/sourceware_binutils_anoncvs_19990502/opcodes/
     - copied from r187594, vendor/binutils/sourceware_binutils_anoncvs_19990502/x/binutils/opcodes/
  vendor/binutils/sourceware_binutils_anoncvs_20000414/include/
     - copied from r187594, vendor/binutils/sourceware_binutils_anoncvs_20000414/x/binutils/include/
  vendor/binutils/sourceware_binutils_anoncvs_20000512/include/
     - copied from r187594, vendor/binutils/sourceware_binutils_anoncvs_20000512/x/binutils/include/
Deleted:
  vendor/binutils/2.10.0/x/
  vendor/binutils/2.10.1/x/
  vendor/binutils/2.11.0/x/
  vendor/binutils/2.11.2/x/
  vendor/binutils/2.11.20010719/x/
  vendor/binutils/2.11.20011031/x/
  vendor/binutils/2.12.20020221/x/
  vendor/binutils/2.12.20020320/x/
  vendor/binutils/2.12.20020410/x/
  vendor/binutils/2.12.20020622/x/
  vendor/binutils/2.12.20020720/x/
  vendor/binutils/2.13.20021011/x/
  vendor/binutils/2.13.2_20021127/x/
  vendor/binutils/2.15.20040523/x/
  vendor/binutils/2.15.20050217/x/
  vendor/binutils/2.15.NOTHING/x/
  vendor/binutils/2.15.cvsrev_1_51/x/
  vendor/binutils/2.8.1/x/
  vendor/binutils/2.9.1/x/
  vendor/binutils/anoncvs_20000414/x/
  vendor/binutils/anoncvs_20020127/x/
  vendor/binutils/cygnus_sourceware_anoncvs_19990502/x/
  vendor/binutils/dist/x/
  vendor/binutils/sourceware_binutils-2_10-branch_anoncvs_20000512/x/
  vendor/binutils/sourceware_binutils_anoncvs_19990502/x/
  vendor/binutils/sourceware_binutils_anoncvs_20000414/x/
  vendor/binutils/sourceware_binutils_anoncvs_20000512/x/

Copied: vendor/binutils/2.10.0/ChangeLog (from r187594, vendor/binutils/2.10.0/x/binutils/ChangeLog)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ vendor/binutils/2.10.0/ChangeLog	Fri Jan 23 16:09:19 2009	(r187632, copy of r187594, vendor/binutils/2.10.0/x/binutils/ChangeLog)
@@ -0,0 +1,6712 @@
+2000-03-29  Jason Merrill  
+
+	* configure.in: -linux-gnu*, not -linux-gnu.
+
+2000-03-10  H.J. Lu  
+
+	* Makefile.in (all-gcc): Backed out the last change.
+
+2000-03-10  H.J. Lu  
+
+	* Makefile.in (all-gcc): Run ld/ld-new if necessary.
+
+Fri Mar  3 18:44:08 2000  Andrew Cagney  
+
+	* Makefile.in (taz): Set PACKAGE to TOOL when not defined.
+	(do-tar-bz2): Replace TOOL with PACKAGE.
+	(gdb.tar.bz2): Remove GDBTK from GDB package.
+	(gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
+ 	dejagnu.tar.bz2): New packages.
+
+2000-02-27  Andreas Jaeger  
+
+	* configure.in: Add entry for mips*-*-linux*, move catch all
+	*-*-*linux* entry below this one.
+
+2000-02-27  Ian Lance Taylor  
+
+	* ltconfig, ltmain.sh: Update to libtool 1.3.4.
+
+2000-02-24  Nick Clifton  
+
+	* config.sub: Support an OS of "wince".
+
+Thu Feb 24 16:15:56 2000  Andrew Cagney  
+
+	* config.guess, config.sub: Updated to match config's 2000-02-15
+ 	version.
+
+2000-02-23  Linas Vepstas 
+
+	* config.sub: Add support for Linux/IBM 370.
+	* configure.in: Likewise.
+
+2000-02-22  Nick Clifton  
+
+	* configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
+
+2000-02-20  Christopher Faylor 
+
+	* config.guess: Guess "cygwin" rather than "cygwin32".
+
+2000-02-16  Kaveh R. Ghazi  
+
+	* configure (gcc_version): When setting, narrow search to
+	lines containing `version_string'.
+
+2000-01-06  Geoff Keating  
+
+	* configure.in: Use mt-aix43 to handle *_TARGET defs,
+	not mh-aix43.
+
+1999-09-04  Steve Chamberlain  
+
+	* config.sub: Add support for configuring for pj.
+
+1999-08-31  Nick Clifton  
+
+	* config.sub (maybe_os): Add support for configuring for fr30.
+
+1999-08-27  Nick Clifton  
+
+	* configure.in: Do not configure or build ld for AIX
+	platforms.  ld is known to be broken on these platforms.
+
+1999-08-09  Ian Lance Taylor  
+
+	* Makefile.in (LDFLAGS): Define.
+
+1999-08-08  Mumit Khan  
+
+	* configure.in (i[3456]-*-mingw32*): Don't put gprof in
+	noconfigdirs.
+	(*-*-cygwin*): Likewise.
+
+1999-08-08  Ian Lance Taylor  
+
+	* mkdep: New file.
+	* Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
+	(BINUTILS_SUPPORT_DIRS): Add mkdep.
+
+	From Eli Zaretskii :
+	* configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
+	long file name when using DJGPP on MS-DOS.
+
+1999-07-30  Alan Modra  
+
+	* Makefile.in (check-target-libio): Remove all-target-libstdc++
+	dependency as this causes "make check" to globally "make all"
+
+1999-07-22  Ian Lance Taylor  
+
+	* Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
+	configure.bat in SUPPORT_FILES.
+	(gas+binutils.tar.bz2): Likewise.
+
+	* makeall.bat: Remove; obsolete.
+
+1999-07-21  Ian Lance Taylor  
+
+	From Mark Elbrecht:
+	* configure.bat: Remove; obsolete.
+
+1999-07-11  Ian Lance Taylor  
+
+	* configure: Add -W -Wall to the default CFLAGS when compiling with
+	gcc.
+
+Thu Jul  8 12:32:23 1999  John David Anglin 
+
+	* configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
+
+1999-06-30  Mark Mitchell  
+
+	* configure.in: Build ld on IRIX6.
+
+1999-06-12  Ian Lance Taylor  
+
+	* Makefile.in: Change distribution targets to use bzip2 instead of
+	gzip.
+	(TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
+	(taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
+
+1999-06-04  Nick Clifton  
+
+	* config.sub: Add mcore target.
+
+Sun May 30 16:03:16 1999  Cort Dougan  
+
+	* config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
+
+1999-05-24  Nick Clifton  
+
+	* config.sub: Updated to match latest EGCS version.
+
+1999-04-30  Tom Tromey  
+
+	* ltmain.sh: [mode link] Always use CC given by ltconfig.
+
+1999-04-23  Tom Tromey  
+
+	* ltconfig, ltmain.sh: Update to libtool 1.2f.
+
+1999-04-20  Drew Moseley  
+
+	* configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
+	(noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
+	Bad merge removed these two changes.
+
+1999-04-11  Richard Henderson  
+
+	* configure.in (i?86-*-beos*): Do config gperf; don't config
+	gdb, newlib, or libgloss.
+
+1999-04-08  Nick Clifton  
+
+	* config.sub: Add support for mcore targets.
+
+1999-04-07  Michael Meissner  
+
+	* configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
+	not mt-ospace, in order to shut up assembler warning about using
+	symbols that are named the same as registers.
+
+1999-04-07  Drew Moseley  
+
+	* Makefile.in (all-target-cygmon): Added all-target-bsp to the
+	dependency list for all-target-cygmon.
+
+1999-04-05  Doug Evans  
+
+	* config-ml.in: Check $host, not $target, for selective multilibs.
+	(arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
+	thumb interworking, and underscore prefix multilibs.
+
+1999-04-04  Ian Lance Taylor  
+
+	* missing: Update to version from current automake.
+
+Fri Apr  2 15:11:32 1999  H.J. Lu  (hjl@gnu.org)
+
+	* configure (gxx_include_dir): Removed.
+
+	* configure.in (gxx_include_dir): Handle it.
+	* Makefile.in: Likewise.
+
+1999-03-29  Gavin Romig-Koch  
+
+	* config.sub (mips64vr4111,mips64vr4111el) Add.
+
+1999-03-21  Ben Elliston  
+
+        * config.guess: Correct typo for detecting ELF on FreeBSD.
+
+Thu Mar 18 00:17:50 1999  Mark Elbrecht 
+
+	* config/mh-go32: Delete.
+	* config/mh-djgpp: New. Renamed from mh-go32.
+	* configure.in (pc-msdosdjgpp): Set host_makefile_frag to
+	config/mh-djgpp.
+
+Thu Mar 11 18:37:23 1999  Drew Moseley  
+
+	* Makefile.in (all-target-bsp): Added all-gcc all-binutils and
+	all-target-newlib to dependency list for all-target-bsp.
+
+Thu Mar 11 01:19:31 1999  Mumit Khan  
+
+	* config.sub: Add i386-uwin support.
+	* config.guess: Likewise.
+
+Thu Mar 11 01:07:55 1999  Franz Sirl 
+
+	* configure.in: cleanup, add mh-*pic handling for arm, special
+	case powerpc*-*-aix*
+
+Wed Mar 10 18:35:07 1999  Jeff Johnston  
+
+	* configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
+	can be built.
+
+Wed Mar 10 17:39:09 1999  Drew Moseley  
+
+	* configure.in: Added bsp support to arm-*-coff and arm-*-elf
+ 	targets.
+
+1999-03-02  Nick Clifton  
+
+	* config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
+
+Sun Feb 28 02:20:00 1999  Geoffrey Noer  
+
+	* config.sub: Check for "cygwin*" rather than "cygwin32*"
+
+1999-02-24  Nick Clifton  
+
+	* config.sub: Fix typo in arm recognition.
+
+Wed Feb 24 13:51:40 1999  Drew Moseley  
+
+	* configure.in (noconfigdirs): Changed target_configdirs to
+	include target-bsp only for m68k-*-elf* and m68k-*-coff*
+	rather than m68k-*-* since it is not known to work on
+	m68k-aout. Ditto for arm-*-*oabi.
+
+Wed Feb 24 12:52:17 1999  Stan Shebs  
+
+	* configure.in (*-*-windows*): Remove, no longer used.
+	* config/mh-windows: Ditto.
+
+1999-02-19  Ben Elliston 
+
+	* config.guess: Automatically recognise ELF on FreeBSD. From Niall
+	Smart and improved by Andrew Cagney.
+
+Thu Feb 18 19:55:09 1999  Marc Espie 
+
+	* config.guess: Recognize openbsd-*-hppa.
+
+Wed Feb 17 01:38:59 1999  H.J. Lu  (hjl@gnu.org)
+
+	* Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
+	only if it is not empty.
+
+1999-02-17  Nick Clifton  
+
+	Patch from: Scott Bambrough 
+	
+	* config.guess: Modified to recognize uname's armv* syntax.
+
+	* config.sub: Modified to recognize uname's armv* syntax.
+
+1999-02-17  Mark Salter  
+
+	* configure.in: Added target-bsp for sparclite.
+
+Mon Feb  8 14:17:24 1999  Richard Henderson  
+
+	* config.sub: Recognize alphapca5[67] and up to alphaev8.
+
+1999-02-08  Nick Clifton  
+
+	* configure.in: Add support for strongarm port.
+	* config.sub: Add support for strongarm target.
+
+Sun Feb  7 18:01:54 1999  Mumit Khan  
+	
+	* configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
+	the old name config/mh-cygwin32.
+	Enable texinfo.
+
+Thu Feb  4 20:43:25 1999  Ian Lance Taylor  
+
+	* configure.in: Do build ld for ix86 Solaris.
+
+Tue Feb  2 19:46:40 1999  Jim Wilson  
+
+	* Makefile.in (EXTRA_GCC_FLAGS):  Set AR to $AR instead of
+	$AR_FOR_TARGET.  Likewise for RANLIB.
+
+Tue Feb  2 20:05:05 1999  Catherine Moore  
+ 
+        * config.sub (oabi):  Recognize.
+        * configure.in (arm-*-oabi):  Handle.
+
+Sat Jan 30 06:09:00 1999  Robert Lipe  (robertlipe@usa.net)
+
+	* config.guess: Improve detection of i686 on UnixWare 7.
+
+Sat Jan 30 08:04:00 1999  Mumit Khan  
+
+	* config.guess: Add support for i386-pc-interix.
+	* config.sub: Likewise.
+	* configure.in: Likewise.
+	* config/mh-interix: New file.
+
+Mon Jan 18 13:59:20 1999  Christopher Faylor 
+
+	* Makefile.in: Remove unneeded all-target-libio from
+	from all-target-winsup target since it is now unneeded.
+	Add all-target-libtermcap in its place since it is now
+	needed.
+
+Wed Dec 30 20:34:52 1998  Christopher Faylor 
+
+	* configure.in: makefile stub for cygwin target is probably
+	unnecessary.  Remove it for now.
+	* config/mt-cygwin: Remove.
+
+Wed Dec 30 01:13:03 1998  Christopher Faylor 
+
+	* configure.in: libtermcap.a should be built when cygwin is the
+	target as well as the host.
+	* config.guess: Allow mixed case in cygwin uname output.
+	* Makefile.in: Add libtermcap target.
+	* config/mt-cygwin: New file.  libtermcap target info.
+
+Tue Dec 15 17:02:58 1998  Bob Manson  
+
+	* configure.in: Add cygmon for x86-coff and x86-elf. Configure
+ 	cygmon for all sparclite targets, regardless of object format.
+
+1998-12-15  Mark Salter  
+
+	* configure.in: Added target-bsp for several target architectures.
+
+	* Makefile.in: Added rules for bsp.
+
+Wed Dec 23 00:20:50 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* config.sub: Clean up handling of hppa2.0.
+
+Tue Dec 22 23:56:31 1998  Rodney Brown  (rodneybrown@pmsc.com)
+
+	* config.guess: Use C code to identify more HP machines.
+
+Thu Dec 17 01:22:30 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* config.sub: Handle hppa2.0.
+
+Fri Dec  4 01:34:02 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* config.guess: Improve detection of hppa2.0 processors.
+
+Fri Dec  4 01:33:05 1998  Niall Smart 
+
+	* config.guess: Recognize FreeBSD using ELF automatically.
+
+1998-11-26  Manfred Hollstein  
+
+	* configure (skip-this-dir): Add handling for new shell script, which
+	might be created by a sub-directory's configure to indicate, this particular
+	directory is "unwanted".
+	* Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
+
+
+Wed Nov 18 18:28:45 1998  Geoffrey Noer  
+
+	* ltconfig: import from libtool, after changing libtool to
+	account for the cygwin name change.
+
+Wed Nov 18 18:09:14 1998  Geoffrey Noer  
+
+	* Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
+	include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
+
+Wed Nov 18 20:13:29 1998  Christopher Faylor 
+
+	* configure.in: Add libtermcap to list of cygwin dependencies.
+
+Tue Nov 17 16:57:51 1998  Geoffrey Noer  
+
+        * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
+        they include winsup/include when it's a cygwin target.
+
+1998-11-12  Tom Tromey  
+
+	* configure.in (host_tools): Added zip.
+	* Makefile.in (all-target-libjava): Depend on all-zip.
+	(all-zip): New target.
+	(ALL_MODULES): Added all-zip.
+	(NATIVE_CHECK_MODULES): Added check-zip.
+	(INSTALL_MODULES): Added install-zip.
+	(CLEAN_MODULES): Added clean-zip.
+
+Thu Nov 12 17:27:21 1998  Geoffrey Noer  
+
+	* Makefile.in: lose "32" from comment about cygwin.
+
+Thu Nov  5 15:00:31 1998  Nick Clifton  
+
+	* configure.in: Use -Os to build target libraries for the fr30.
+
+Wed Nov  4 18:49:43 1998  Dave Brolley  
+
+	* config.sub: Add fr30.
+
+Mon Nov  2 15:19:33 1998  Geoffrey Noer  
+
+        * configure.in: drop "32" from config/mh-cygwin32.  Check
+	cygwin* instead of cygwin32*.
+	* config.sub: Check cygwin* instead of cygwin32*.
+
+1998-10-20  Syd Polk  
+
+	* Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
+	if desired.
+
+Sun Oct 18 18:34:50 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* config.if (cxx_interface, libstdcxx_interface): Do not try to set
+	these if the appropriate directories and files to not exist.
+
+Wed Oct 14 10:29:06 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* Makefile.in (DEVO_SUPPORT): Add config.if.
+
+Tue Oct 13 09:17:06 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* config.sub: Bring back lost sparcv9.
+
+Wed Sep 30 22:20:50 1998  Robert Lipe  
+
+	* config.sub: Add support for i[34567]86-pc-udk.
+	* configure.in: Likewise.
+
+Wed Sep 30 19:23:48 1998  Geoffrey Noer  
+
+	* Makefile.in: add bzip2 package building bits for user
+	tools module
+	* configure.in: ditto
+
+1998-09-30  Manfred Hollstein  
+
+	 * configure.in (target_subdir): Remove duplicate line.
+
+Tue Sep 29 22:45:41 1998  Felix Lee  
+
+	* Makefile.in (all-automake): fix dependencies.
+
+Mon Sep 28 04:04:27 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* configure.in: Minor cleanups for building in the $(target_alias)
+	subdir.
+
+1998-09-22  Jim Wilson  
+
+	* Makefile.in (bootstrap): Set r and s before make all.  Use
+	BASE_FLAGS_TO_PASS in make all.
+	(cross): Likewise.
+
+1998-09-20  Mark Mitchell  
+
+	* Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
+
+
+Sun Sep 20 00:13:02 1998  Richard Henderson  
+
+	* config.sub: Fix typo in last change.
+
+1998-09-19  Michael Hayes  
+
+	* config.sub: Add support for C4x target.
+	* configure.in: Likewise.
+
+1998-09-13  David S. Miller  
+
+	* config.sub: Recognize sparcv9 just like sparc64.
+
+Wed Sep  9 15:44:52 1998  Robert Lipe  
+
+	* config.guess: Match "Pent II" or "PentII" for OpenServer.
+
+Tue Sep  8 01:18:39 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* config.guess: Correctly identify Pentium II sco boxes.
+
+	* config.guess: Fix "tr" code.  From Weiwen Liu.
+
+Sat Sep  5 13:56:52 1998  John Hughes  
+
+	* configure.in: Do not assume x86-svr4 or x86-unixware can handle
+	stabs.
+
+Sat Sep  5 02:12:02 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* Makefile.in (TARGET_CONFIGDIRS): Add libchill.
+	(ALL_TARGET_MODULES): Add all-target-libchill.
+	(CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
+	(INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
+	(all-target-libchill): Add dependencies.
+	* configure.in (target_libs): Add libchill.
+
+Sun Aug 30 22:27:02 1998  Lutz Wohlrab 
+
+	* config.guess: Avoid assumptions about "tr" behaves when
+	LANG is set to something other than English.
+
+Sun Aug 30 22:14:44 1998  H.J. Lu  (hjl@gnu.org)
+
+	* configure (gxx_include_dir): Changed to
+	'${prefix}/include/g++'-${libstdcxx_interface}.
+
+	* config.if: New to determine the interfaces.
+
+Sun Aug 30 21:15:19 1998  Mark Klein (mklein@dis.com)
+
+	* config.guess: Detect and handle MPE/IX.
+	* config.sub: Deal with MPE/IX.
+
+Sat Aug 29 14:32:55 1998  David Edelsohn  
+
+	* configure.in: Use mh-aix43.
+
+1998-07-29  Manfred Hollstein  
+
+	* configure: Fix --without/--disable cases for gxx-include-dir.
+
+Fri Aug 28 12:28:26 1998  Per Bothner  
+
+	* mdata-sh:  Imported.  Needed for automake support.
+
+Thu Aug 13 12:49:29 1998  H.J. Lu  
+
+	* Makefile.in (taz): Try "chmod -R og=u ." before 
+	"chmod og=u `find . -print`".
+
+Fri Jul 31 09:38:33 1998  Catherine Moore  
+
+        * configure.in: Add arm-elf and thumb-elf support.
+
+Mon Jul 27 16:23:58 1998  Doug Evans  
+
+	* Makefile.in: Undo previous patch.
+
+Fri Jul 24 19:55:24 1998  Doug Evans  
+
+	* Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
+	to here ...
+	(install-no-fixedincludes): and here
+	(INSTALL_MODULES): ... from here.
+
+Fri Jul 24 17:01:42 1998  Ian Lance Taylor  
+
+	* config.sub: Merge with FSF.
+
+	* config.guess: Merge with FSF.
+
+Fri Jul 24 08:43:36 1998  Doug Evans  
+
+	* configure (extraconfigdirs): New variable.
+	(SUBDIRS): Add extraconfigdirs and recurse on them too.
+	* Makefile.in (all): Move higher in file.
+	(EXTRA_TARGET_HOST_ALL_MODULES): New variable.
+	(EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
+	(ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
+	(CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
+	(INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
+
+1998-07-23  Brendan Kehoe  
+
+	* Makefile.in (all-target-libjava): Depend on all-gcc and
+	all-target-newlib.
+	(configure-target-libjava): Depend on $(ALL_GCC).
+
+Sat Jul 18 14:32:43 CDT 1998  Robert Lipe  
+
+	* config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
+	(*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
+
+Fri Jul 17 13:30:18 1998  Ian Lance Taylor  
+
+	* ylwrap: Change absolute path checks to check for DOS style path
+	names.
+
+	* ylwrap: Don't use a full path name if the source file is in the
+	same directory.  From hjl@lucon.org (H.J. Lu).
+
+	* config-ml.in: Default to being verbose, to match Feb 18 change to
+	configure.
+
+Thu Jul 16 12:29:51 1998  Ian Lance Taylor  
+
+	Brought over from egcs:
+
+	Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* configure.in (target_subdir): Set to ${target_alias} instead
+	of "libraries".
+
+	Mon Sep  1 16:45:44 1997  Jim Wilson  
+
+	* configure.in (target_subdir): Set to libraries if enable_multilib.
+
+Wed Jul 15 01:00:54 1998  Ian Lance Taylor  
+
+	* Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
+	multilibs, force reconfiguration the first time we create
+	multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
+
+Tue Jul 14 23:41:03 1998  Ian Lance Taylor  
+
+	* configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
+	avoid confusion with --no-recursion.
+
+Tue Jul 14 15:37:41 1998  Geoffrey Noer  
+
+	* configure.in: Win32 hosts shouldn't use install -x
+	* install-sh: remove -x option, and special .exe-handling
+	hack.
+
+Tue Jul 14 15:28:41 1998  Richard Henderson  
+
+	* config.guess: Recognize i586-pc-beos.
+	* configure.in: Don't build some bits for beos.
+
+Tue Jul 14 13:22:18 1998  Ian Lance Taylor  
+
+	* configure: If CC is set but CFLAGS is not, and CC is gcc, make
+	CFLAGS default to -O2.
+
+	* ltmain.sh: Add some hacks to make SunOS --enable-shared work
+	when using GNU ld.
+
+Fri Jul 10 13:18:23 1998  Ian Lance Taylor  
+
+	* ltmain.sh: Correct install when using a different shell.
+
+Tue Jul  7 15:24:38 1998  Ian Lance Taylor  
+
+	* ltconfig, ltmain.sh: Update to libtool 1.2b.
+
+Thu Jul  2 13:57:36 1998  Klaus Kaempf  
+
+	* makefile.vms: Update to build binutils/makefile.vms.  Add install
+	target.
+
+Wed Jul  1 16:45:21 1998  Ian Lance Taylor  
+
+	* ltconfig: Update to correct AIX handling.
+
+Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
+
+	* configure.in (target_subdir): Set to ${target_alias} instead
+	of "libraries".
+
+1998-06-26  Manfred Hollstein  
+
+	* Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
+	(Makefile): Depend on $(gcc_version_trigger).
+
+	* configure (gcc_version): Change default initializer to empty
+	string.
+	(gcc_version_trigger): New variable; pass this variable down
+	to subdir configures to enable them checking gcc's version
+	themselves. Emit make macros for both gcc_version vars.
+	(topsrcdir): Initialize reliably.
+	(recursion line): Remove --with-gcc-version=${gcc_version}.
+
+1998-06-24  Manfred Hollstein  
+
+	* configure (enable_version_specific_runtime_libs): Implement new flag
+	--enable-version-specific-runtime-libs which installs C++ runtime stuff
+	in $(libsubdir); emit definition in each generated Makefile.
+	(gxx_include_dir): Initialize depending on
+	$enable_version_specific_runtime_libs.
+
+1998-06-24  Manfred Hollstein  
+
+	* configure (gcc_version): Initialize properly depending on
+	how and where configure is started.
+	(recursion line): Pass a --with-gcc-version=${gcc_version}
+	to configures in subdirs.
+
+Wed Jun 24 16:01:59 1998  John Metzler  
+
+	* configure.in (noconfigdirs): Add configure pattern for mips tx39
+ 	cygmon
+
+Tue Jun 23 22:42:32 1998  Mark Alexander  
+
+	* configure.in: Add cygmon and libstub support for mn10200.
+
+1998-06-19  Manfred Hollstein  
+
+	* configure (gcc_version): Add new variable describing the
+	particular gcc version we're building.
+	* Makefile.in (libsubdir): Add new macro for the directory
+	in which the compiler finds executables, libraries, etc.
+	(BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
+	and libsubdir.
+
+Fri Jun 19 02:36:59 1998  Alexandre Oliva 
+
+	* Makefile.in (local-clean): remove *.log
+	(warning.log): built with warn_summary from build.log
+	(mail-report.log): run test_summary
+	(mail-report-with-warnings.log): run test_summary including
+	warning.log in the report
+
+Thu Jun 18 11:26:03 1998  Robert Lipe  
+
+	* config.guess: Detection of Pentium II for *-sco-3.2v5*.
+
+Mon Jun 15 14:53:54 1998  Andrew Cagney  
+
+	* Makefile.in (grep): Grep no longer depends on libiberty.
+
+Fri Jun 12 14:03:34 1998  Syd Polk  
+
+	* Makefile.in: all-snavigator needs all-libgui.
+
+Thu Jun 11 19:43:47 1998  Mark Alexander  
+
+	* configure.in: Add cygmon and libstub support for mn10300.
+
+Wed Jun 10 11:19:47 1998  Ian Lance Taylor  
+
+	* missing: Update to version from automake 1.3.
+
+	* ltmain.sh: On installation, don't get confused if the same name
+	appears more than once in the list of library names.
+
+Wed Jun  3 14:51:42 1998  Ian Lance Taylor  
+
+	* config.sub: Accept m68060 and m5200 as CPU names.
+
+Mon Jun  1 17:25:16 1998  Ian Lance Taylor  
+
+	* configure: Use && rather than using -a in test, because odd
+	strings can confuse test.
+	* configure.in: Likewise.
+
+Thu May 28 19:31:13 1998  Ian Lance Taylor  
+
+	* ltconfig, ltmain.sh: Bring in Visual C++ support.
+
+Sat May 23 23:44:13 1998  Alexandre Oliva 
+
+	* Makefile.in (boostrap2-lean, bootstrap3-lean,
+	bootstrap4-lean): new targets
+
+Mon May 11 23:11:34 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* COPYING.LIB: Update FSF address.
+
+Fri May  8 01:30:20 1998  Ian Lance Taylor  
+
+	* ltconfig, ltmain.sh: Update to libtool 1.2a.
+
+	* Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
+	GAS_SUPPORT_DIRS.
+
+Thu May  7 17:27:35 1998  Ian Lance Taylor  
+
+	* ltconfig, ltmain.sh: Avoid producing a version number if
+	-version-info was not used.
+
+Tue May  5 18:02:24 1998  Ian Lance Taylor  
+
+	* configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
+	building with newlib.
+
+1998-04-30  Paul Eggert  
+
+        * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
+        Solaris `make' causes it to continue to next definition. 
+
+Tue Apr 28 16:24:24 1998  Jason Molenda  (crash@bugshack.cygnus.com)
+
+	* Makefile.in (install-gdbtk): Call this 'install-gdb' so that
+	the right GUI libraries and files are installed along with GDB.
+
+Tue Apr 28 18:11:24 1998  Ian Lance Taylor  
+
+	* configure.in: Change alpha to alpha* in several places.
+
+Tue Apr 28 07:42:00 1998  Mark Alexander  
+
+	* config.sub: Recognize sparc86x.
+
+Tue Apr 28 07:35:02 1998  Michael Meissner  
+ 
+	* configure.in (--enable-target-optspace): Remove debug echo.
+
+Thu Apr 23 21:31:16 1998  Jim Wilson  
+
+	* configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
+
+Thu Apr 23 12:26:38 1998  Ian Lance Taylor  
+
+	* ltconfig: Update cygwin32 support.
+
+	* Makefile.in (GAS_SUPPORT_DIRS): Add intl.
+	(BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
+	(GDB_SUPPORT_DIRS): Likewise.
+
+Wed Apr 22 12:30:10 1998  Michael Meissner  
+
+	* configure.in (target_makefile_frag): If --enable-target-optspace,
+	use -Os to compile target libraries rather than -O2.  Default to
+	using -Os for d10v and m32r if --{enable,disable}-target-optspace is
+	not used.
+	* configure.in (target_cflags): Ditto for d30v.
+
+Tue Apr 21 23:06:54 1998  Tom Tromey  
+
+	* Makefile.in (all-bfd): Depend on all-intl.
+	(all-binutils): Likewise.
+	(all-gas): Likewise.
+	(all-gprof): Likewise.
+	(all-ld): Likewise.
+
+
+1998-04-19  Brendan Kehoe  
+
+	* configure.in (host_tools): Fix typo, lbtool -> libtool.
+
+Fri Apr 17 16:20:42 1998  Ian Lance Taylor  
+
+	* Makefile.in (all-bfd): Depend upon all-libiberty.
+
+	* ltconfig, ltmain.sh: Bring in newer cygwin32 support.
+
+Fri Apr 17 12:22:22 1998  Bob Manson  
+
+	* Makefile.in: Add libstub.
+
+	* configure.in: Ditto. Build libstub for targets that have cygmon
+	support.
+
+Tue Apr 14 18:01:55 1998  Ian Lance Taylor  
+
+	* configure.in: Don't set PICFLAG on ix86-cygwin32.
+
+Tue Apr 14 12:24:45 1998  J. Kean Johnston  
+
+	* configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
+	use mh-sysv5 if specified.  Support gprof on SCO Open Server.
+
+Tue Apr 14 11:33:51 1998  Krister Walfridsson 
+
+	* configure: Define DEFAULT_M4 by searching PATH.
+	* Makfile.in: Use DEFAULT_M4.
+
+Mon Apr 13 15:37:24 1998  Ian Lance Taylor  
+
+	* ltconfig: Add cygwin32 support.
+
+	* Makefile.in, configure.in: Add libtool as a native only directory
+ 	to configure and build.
+
+Wed Apr  8 13:18:56 1998  Philippe De Muyter  
+
+	* Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
+
+Thu Apr  2 14:48:44 1998  Geoffrey Noer  
+
+	* Makefile.in: add ash make rules
+	* configure.in: add ash to native_only and host_tools lists
+
+Thu Mar 26 12:53:20 1998  Tom Tromey  
+
+	* Makefile.in (all-gettext, all-intl): New targets.
+	(ALL_MODULES): Added all-gettext, all-intl.
+	(CROSS_CHECK_MODULES): Added check-gettext, check-intl.
+	(INSTALL_MODULES): Added install-gettext, install-intl.
+	(CLEAN_MODULES): Added clean-gettext, clean-intl.
+
+	* configure.in (host_tools): Added gettext.
+	(native_only): Likewise.
+	(noconfigdirs) [various cases]: Likewise.
+	(host_libs): Added intl.
+
+Thu Mar 26 15:00:11 1998  Keith Seitz  
+
+	* configure: Do not disable building gdbtk for cygwin32 hosts.
+
+Wed Mar 25 11:49:12 1998  Jason Molenda  (crash@bugshack.cygnus.com)
+
+	* Makefile.in: Revert yesterday's change.
+	(all-target-winsup):  all-target-librx stays out of here.
+
+Tue Mar 24 16:58:29 1998  Jason Molenda  (crash@bugshack.cygnus.com)
+
+	* Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES, 
+	CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES, 
+	INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup): 
+	Remove references to librx and libg++.
+
+Tue Mar 24 18:28:12 1998  Eric Mumpower  
+
+	* Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
+	recursive makes
+
+Tue Mar 24 11:37:45 1998  Ian Lance Taylor  
+
+	* Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
+	for newlib directory.
+	(CXX_FOR_TARGET): Likewise.
+
+Mon Mar 23 11:30:21 1998  Jeffrey A Law  (law@cygnus.com)
+
+	* ltconfig: Update after libtool/ltconfig.in change for
+	hpux11.
+
+Fri Mar 20 18:51:43 1998  Ian Lance Taylor  
+
+	* ltconfig, ltmain.sh: Update to libtool 1.2.
+
+Fri Mar 20 09:32:14 1998  Manfred Hollstein  
+
+	* Makefile.in (install-gcc): Don't specify LANGUAGES here.
+	(install-gcc-cross): Instead, override LANGUAGES here.
+
+1998-03-18  Dave Love  
+
+	* Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
+	non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
+
+Wed Mar 18 09:24:59 1998  Nick Clifton  
+
+	* configure.in: Add Thumb-pe target.
+
+Tue Mar 17 16:59:00 1998  Syd Polk 
+	* Makefile.in - changed sn targets to snavigator
+	* configure.in - changed sn targets to snavigator
+
+Tue Mar 17 10:33:28 1998  Manfred Hollstein  
+
+	* config-ml.in: After building symlink tree call make distclean
+	if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
+	to be the case for libiberty.
+
+Tue Mar 17 10:22:37 1998  H.J. Lu  (hjl@gnu.ai.mit.edu)
+
+	* configure: When making link, also check the current
+	directory. The configure scripts may create one.
+
+Fri Mar  6 01:02:03 1998  Richard Henderson  
+
+	* config.sub: Accept alphapca56 and alphaev6 properly.
+
+Fri Mar  6 00:14:55 1998  Franz Sirl 
+
+	* configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
+
+
+Mon Feb 23 15:09:18 1998  Bruno Haible 
+
+	* Makefile.in (INSTALL_MODULES): Move install-tcl before
+	install-itcl.
+	(install-itcl): Remove dependency on install-tcl.
+
+Mon Feb 23 09:53:28 1998  Mark Alexander  
+
+	* configure.in: Remove libgloss from noconfigdirs for MN10300.
+
+Fri Feb 20 16:47:24 1998  Tom Tromey  
+
+	* configure: Don't let builds be done in source tree.
+

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 17:48:19 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 437991065676;
	Fri, 23 Jan 2009 17:48:19 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 2FE378FC19;
	Fri, 23 Jan 2009 17:48:19 +0000 (UTC)
	(envelope-from jkim@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NHmJDh048980;
	Fri, 23 Jan 2009 17:48:19 GMT (envelope-from jkim@svn.freebsd.org)
Received: (from jkim@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NHmIBI048975;
	Fri, 23 Jan 2009 17:48:18 GMT (envelope-from jkim@svn.freebsd.org)
Message-Id: <200901231748.n0NHmIBI048975@svn.freebsd.org>
From: Jung-uk Kim 
Date: Fri, 23 Jan 2009 17:48:18 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187633 - in head/sys: conf dev/agp modules/agp
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 17:48:19 -0000

Author: jkim
Date: Fri Jan 23 17:48:18 2009
New Revision: 187633
URL: http://svn.freebsd.org/changeset/base/187633

Log:
  - Add few VIA bridges to agp_via.c and connect it to amd64 build
  as they support Intel Core/Core 2 and VIA Nano processors.
  - Align "optional agp" in conf/files.* for consistency while I am here.

Modified:
  head/sys/conf/files.amd64
  head/sys/conf/files.i386
  head/sys/conf/files.pc98
  head/sys/dev/agp/agp_via.c
  head/sys/modules/agp/Makefile

Modified: head/sys/conf/files.amd64
==============================================================================
--- head/sys/conf/files.amd64	Fri Jan 23 16:09:19 2009	(r187632)
+++ head/sys/conf/files.amd64	Fri Jan 23 17:48:18 2009	(r187633)
@@ -132,9 +132,10 @@ crypto/via/padlock.c		optional	padlock
 crypto/via/padlock_cipher.c	optional	padlock
 crypto/via/padlock_hash.c	optional	padlock
 dev/acpica/acpi_if.m		standard
-dev/agp/agp_amd64.c			optional	agp
-dev/agp/agp_i810.c			optional	agp
-dev/agp/agp_intel.c			optional	agp
+dev/agp/agp_amd64.c		optional	agp
+dev/agp/agp_i810.c		optional	agp
+dev/agp/agp_intel.c		optional	agp
+dev/agp/agp_via.c		optional	agp
 dev/arcmsr/arcmsr.c		optional	arcmsr pci
 dev/asmc/asmc.c			optional	asmc isa
 dev/atkbdc/atkbd.c		optional	atkbd atkbdc

Modified: head/sys/conf/files.i386
==============================================================================
--- head/sys/conf/files.i386	Fri Jan 23 16:09:19 2009	(r187632)
+++ head/sys/conf/files.i386	Fri Jan 23 17:48:18 2009	(r187633)
@@ -118,15 +118,15 @@ crypto/via/padlock.c		optional padlock
 crypto/via/padlock_cipher.c	optional padlock
 crypto/via/padlock_hash.c	optional padlock
 dev/advansys/adv_isa.c		optional adv isa
-dev/agp/agp_ali.c			optional agp
-dev/agp/agp_amd.c			optional agp
-dev/agp/agp_amd64.c			optional agp
-dev/agp/agp_ati.c			optional agp
-dev/agp/agp_i810.c			optional agp
-dev/agp/agp_intel.c			optional agp
+dev/agp/agp_ali.c		optional agp
+dev/agp/agp_amd.c		optional agp
+dev/agp/agp_amd64.c		optional agp
+dev/agp/agp_ati.c		optional agp
+dev/agp/agp_i810.c		optional agp
+dev/agp/agp_intel.c		optional agp
 dev/agp/agp_nvidia.c		optional agp
-dev/agp/agp_sis.c			optional agp
-dev/agp/agp_via.c			optional agp
+dev/agp/agp_sis.c		optional agp
+dev/agp/agp_via.c		optional agp
 dev/aic/aic_isa.c		optional aic isa
 dev/arcmsr/arcmsr.c		optional arcmsr pci
 dev/ar/if_ar.c			optional ar

Modified: head/sys/conf/files.pc98
==============================================================================
--- head/sys/conf/files.pc98	Fri Jan 23 16:09:19 2009	(r187632)
+++ head/sys/conf/files.pc98	Fri Jan 23 17:48:18 2009	(r187633)
@@ -77,13 +77,13 @@ bf_enc.o			optional crypto | ipsec	\
 	compile-with	"${CC} -c -I$S/crypto/blowfish/arch/i386 ${ASM_CFLAGS} ${WERROR} ${.IMPSRC}" \
 	no-implicit-rule
 crypto/des/arch/i386/des_enc.S	optional crypto | ipsec | netsmb
-dev/agp/agp_ali.c			optional agp
-dev/agp/agp_amd.c			optional agp
-dev/agp/agp_i810.c			optional agp
-dev/agp/agp_intel.c			optional agp
+dev/agp/agp_ali.c		optional agp
+dev/agp/agp_amd.c		optional agp
+dev/agp/agp_i810.c		optional agp
+dev/agp/agp_intel.c		optional agp
 dev/agp/agp_nvidia.c		optional agp
-dev/agp/agp_sis.c			optional agp
-dev/agp/agp_via.c			optional agp
+dev/agp/agp_sis.c		optional agp
+dev/agp/agp_via.c		optional agp
 dev/aic/aic_cbus.c		optional aic isa
 dev/ar/if_ar.c			optional ar
 dev/ar/if_ar_pci.c		optional ar pci

Modified: head/sys/dev/agp/agp_via.c
==============================================================================
--- head/sys/dev/agp/agp_via.c	Fri Jan 23 16:09:19 2009	(r187632)
+++ head/sys/dev/agp/agp_via.c	Fri Jan 23 17:48:18 2009	(r187633)
@@ -85,8 +85,14 @@ agp_via_match(device_t dev)
 		return ("VIA 3296 (P4M800) host to PCI bridge");
 	case 0x03051106:
 		return ("VIA 82C8363 (Apollo KT133x/KM133) host to PCI bridge");
+	case 0x03141106:
+		return ("VIA 3314 (P4M800CE) host to PCI bridge");
 	case 0x03241106:
 		return ("VIA VT3324 (CX700) host to PCI bridge");
+	case 0x03271106:
+		return ("VIA 3327 (P4M890) host to PCI bridge");
+	case 0x03641106:
+		return ("VIA 3364 (P4M900) host to PCI bridge");
 	case 0x03911106:
 		return ("VIA 8371 (Apollo KX133) host to PCI bridge");
 	case 0x05011106:
@@ -168,7 +174,10 @@ agp_via_attach(device_t dev)
 	case 0x02591106:
 	case 0x02691106:
 	case 0x02961106:
+	case 0x03141106:
 	case 0x03241106:
+	case 0x03271106:
+	case 0x03641106:
 	case 0x31231106:
 	case 0x31681106:
 	case 0x31891106:

Modified: head/sys/modules/agp/Makefile
==============================================================================
--- head/sys/modules/agp/Makefile	Fri Jan 23 16:09:19 2009	(r187632)
+++ head/sys/modules/agp/Makefile	Fri Jan 23 17:48:18 2009	(r187633)
@@ -12,7 +12,7 @@ SRCS+=	agp_i810.c agp_intel.c agp_via.c 
 SRCS+=	agp_amd64.c
 .endif
 .if  ${MACHINE_ARCH} == "amd64"
-SRCS+=	agp_amd64.c agp_i810.c
+SRCS+=	agp_amd64.c agp_i810.c agp_via.c
 .endif
 SRCS+=	device_if.h bus_if.h agp_if.h pci_if.h
 SRCS+=	opt_bus.h

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 18:15:09 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 886B61065729;
	Fri, 23 Jan 2009 18:15:09 +0000 (UTC) (envelope-from sam@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 761EC8FC0A;
	Fri, 23 Jan 2009 18:15:09 +0000 (UTC) (envelope-from sam@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NIF9T4049518;
	Fri, 23 Jan 2009 18:15:09 GMT (envelope-from sam@svn.freebsd.org)
Received: (from sam@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NIF93d049517;
	Fri, 23 Jan 2009 18:15:09 GMT (envelope-from sam@svn.freebsd.org)
Message-Id: <200901231815.n0NIF93d049517@svn.freebsd.org>
From: Sam Leffler 
Date: Fri, 23 Jan 2009 18:15:09 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187634 - head/sys/net80211
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 18:15:10 -0000

Author: sam
Date: Fri Jan 23 18:15:09 2009
New Revision: 187634
URL: http://svn.freebsd.org/changeset/base/187634

Log:
  add defines for driver-private bits to eliminate use of constants

Modified:
  head/sys/net80211/_ieee80211.h

Modified: head/sys/net80211/_ieee80211.h
==============================================================================
--- head/sys/net80211/_ieee80211.h	Fri Jan 23 17:48:18 2009	(r187633)
+++ head/sys/net80211/_ieee80211.h	Fri Jan 23 18:15:09 2009	(r187634)
@@ -143,8 +143,11 @@ struct ieee80211_channel {
 #define	IEEE80211_CHAN_ANYC \
 	((struct ieee80211_channel *) IEEE80211_CHAN_ANY)
 
-/* bits 0-3 are for private use by drivers */
 /* channel attributes */
+#define	IEEE80211_CHAN_PRIV0	0x00000001 /* driver private bit 0 */
+#define	IEEE80211_CHAN_PRIV1	0x00000002 /* driver private bit 1 */
+#define	IEEE80211_CHAN_PRIV2	0x00000004 /* driver private bit 2 */
+#define	IEEE80211_CHAN_PRIV3	0x00000008 /* driver private bit 3 */
 #define	IEEE80211_CHAN_TURBO	0x00000010 /* Turbo channel */
 #define	IEEE80211_CHAN_CCK	0x00000020 /* CCK channel */
 #define	IEEE80211_CHAN_OFDM	0x00000040 /* OFDM channel */

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 18:16:14 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 76CE41065689;
	Fri, 23 Jan 2009 18:16:14 +0000 (UTC) (envelope-from sam@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 645E88FC22;
	Fri, 23 Jan 2009 18:16:14 +0000 (UTC) (envelope-from sam@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NIGE4S049572;
	Fri, 23 Jan 2009 18:16:14 GMT (envelope-from sam@svn.freebsd.org)
Received: (from sam@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NIGEUZ049571;
	Fri, 23 Jan 2009 18:16:14 GMT (envelope-from sam@svn.freebsd.org)
Message-Id: <200901231816.n0NIGEUZ049571@svn.freebsd.org>
From: Sam Leffler 
Date: Fri, 23 Jan 2009 18:16:14 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187635 - head/sys/net80211
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 18:16:15 -0000

Author: sam
Date: Fri Jan 23 18:16:14 2009
New Revision: 187635
URL: http://svn.freebsd.org/changeset/base/187635

Log:
  fix regulatory state check for all vaps' being down; it must be done
  before calling the ic_setregdomain callback

Modified:
  head/sys/net80211/ieee80211_regdomain.c

Modified: head/sys/net80211/ieee80211_regdomain.c
==============================================================================
--- head/sys/net80211/ieee80211_regdomain.c	Fri Jan 23 18:15:09 2009	(r187634)
+++ head/sys/net80211/ieee80211_regdomain.c	Fri Jan 23 18:16:14 2009	(r187635)
@@ -373,6 +373,13 @@ ieee80211_setregdomain(struct ieee80211v
 			c->ic_maxpower = 2*c->ic_maxregpower;
 	}
 	IEEE80211_LOCK(ic);
+	/* XXX bandaid; a running vap will likely crash */
+	if (!allvapsdown(ic)) {
+		IEEE80211_UNLOCK(ic);
+		IEEE80211_DPRINTF(vap, IEEE80211_MSG_IOCTL,
+		    "%s: reject: vaps are running\n", __func__);
+		return EBUSY;
+	}
 	error = ic->ic_setregdomain(ic, ®->rd,
 	    reg->chaninfo.ic_nchans, reg->chaninfo.ic_chans);
 	if (error != 0) {
@@ -381,13 +388,6 @@ ieee80211_setregdomain(struct ieee80211v
 		    "%s: driver rejected request, error %u\n", __func__, error);
 		return error;
 	}
-	/* XXX bandaid; a running vap will likely crash */
-	if (!allvapsdown(ic)) {
-		IEEE80211_UNLOCK(ic);
-		IEEE80211_DPRINTF(vap, IEEE80211_MSG_IOCTL,
-		    "%s: reject: vaps are running\n", __func__);
-		return EBUSY;
-	}
 	/*
 	 * Commit: copy in new channel table and reset media state.
 	 * On return the state machines will be clocked so all vaps

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 18:23:16 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id DA6FE10656DE;
	Fri, 23 Jan 2009 18:23:16 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id C7F188FC0C;
	Fri, 23 Jan 2009 18:23:16 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NINGqx049743;
	Fri, 23 Jan 2009 18:23:16 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NINGKb049742;
	Fri, 23 Jan 2009 18:23:16 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <200901231823.n0NINGKb049742@svn.freebsd.org>
From: Warner Losh 
Date: Fri, 23 Jan 2009 18:23:16 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187636 - head
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 18:23:18 -0000

Author: imp
Date: Fri Jan 23 18:23:16 2009
New Revision: 187636
URL: http://svn.freebsd.org/changeset/base/187636

Log:
  Implement an idea from Sam Leffler:
  	make KERNFAST=blah buildkernel
  is now a short cut for
  	make KERNCONF=blah -DKERNFAST buildkernel
  
  This change works for all kernel config files not named "1".  I did
  that to make sure that
  	make -DKERNFAST buildkernel
  remains the same as
  	make -DKERNFAST KERNCONF=GENERIC buildkernel
  rather than trying to build and configure "1".  I've never seen a
  kernel config file named "1," so I think this is a good compromise.

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri Jan 23 18:16:14 2009	(r187635)
+++ head/Makefile.inc1	Fri Jan 23 18:23:16 2009	(r187636)
@@ -702,6 +702,10 @@ distrib-dirs distribution:
 NO_KERNELCLEAN=	t
 NO_KERNELCONFIG=	t
 NO_KERNELDEPEND=	t
+# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
+.if !defined(KERNCONF) && ${KERNFAST} != "1"
+KERNCONF=${KERNFAST}
+.endif
 .endif
 .if !defined(KERNCONF) && defined(KERNEL)
 KERNCONF=	${KERNEL}

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 18:32:32 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 400CF106566C;
	Fri, 23 Jan 2009 18:32:32 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 2C7EE8FC29;
	Fri, 23 Jan 2009 18:32:32 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NIWWwP049947;
	Fri, 23 Jan 2009 18:32:32 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NIWWAA049946;
	Fri, 23 Jan 2009 18:32:32 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <200901231832.n0NIWWAA049946@svn.freebsd.org>
From: Warner Losh 
Date: Fri, 23 Jan 2009 18:32:32 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187637 - head/share/man/man7
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 18:32:33 -0000

Author: imp
Date: Fri Jan 23 18:32:31 2009
New Revision: 187637
URL: http://svn.freebsd.org/changeset/base/187637

Log:
  Document KERNCONF and KERNFAST.  Note that TARGET is usually all one
  needs to set for cross building.

Modified:
  head/share/man/man7/build.7

Modified: head/share/man/man7/build.7
==============================================================================
--- head/share/man/man7/build.7	Fri Jan 23 18:23:16 2009	(r187636)
+++ head/share/man/man7/build.7	Fri Jan 23 18:32:31 2009	(r187637)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd January 5, 2009
+.Dd January 23, 2009
 .Dt BUILD 7
 .Os
 .Sh NAME
@@ -370,6 +370,27 @@ defaults to the current machine architec
 .Va TARGET
 is also set, in which case it defaults to the appropriate
 value for that platform.
+Typically, one only needs to set 
+.Va TARGET .
+.It Va KERNCONF
+Overrides which kernel to build and install for the various kernel
+make targets.
+It defaults to
+.Cm GENERIC .
+.It Va KERNFAST
+If set, the build target
+.Cm buildkernel
+defaults to setting 
+.Va NO_KERNELCLEAN ,
+.Va NO_KERNELCONFIG
+and
+.Va NO_KERNELDEPEND .
+When set to a value other than
+.Cm 1
+then 
+.Va KERNCONF 
+is set to the value of 
+.Va KERNFAST .
 .El
 .Pp
 Builds under directory

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 18:35:09 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id B4FB9106568A;
	Fri, 23 Jan 2009 18:35:09 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id A29378FC12;
	Fri, 23 Jan 2009 18:35:09 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NIZ9Kw050044;
	Fri, 23 Jan 2009 18:35:09 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NIZ9hn050043;
	Fri, 23 Jan 2009 18:35:09 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <200901231835.n0NIZ9hn050043@svn.freebsd.org>
From: Warner Losh 
Date: Fri, 23 Jan 2009 18:35:09 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187638 - head/share/man/man7
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 18:35:11 -0000

Author: imp
Date: Fri Jan 23 18:35:09 2009
New Revision: 187638
URL: http://svn.freebsd.org/changeset/base/187638

Log:
  Sort KERNFAST and KERNCONF into the list they are in.

Modified:
  head/share/man/man7/build.7

Modified: head/share/man/man7/build.7
==============================================================================
--- head/share/man/man7/build.7	Fri Jan 23 18:32:31 2009	(r187637)
+++ head/share/man/man7/build.7	Fri Jan 23 18:35:09 2009	(r187638)
@@ -335,6 +335,25 @@ are influenced by the following
 .Xr make 1
 variables:
 .Bl -tag -width ".Va SUBDIR_OVERRIDE"
+.It Va KERNCONF
+Overrides which kernel to build and install for the various kernel
+make targets.
+It defaults to
+.Cm GENERIC .
+.It Va KERNFAST
+If set, the build target
+.Cm buildkernel
+defaults to setting 
+.Va NO_KERNELCLEAN ,
+.Va NO_KERNELCONFIG
+and
+.Va NO_KERNELDEPEND .
+When set to a value other than
+.Cm 1
+then 
+.Va KERNCONF 
+is set to the value of 
+.Va KERNFAST .
 .It Va LOCAL_DIRS
 If set, this variable supplies a list of additional directories to
 build, relative to the root of the source tree.
@@ -372,25 +391,6 @@ is also set, in which case it defaults t
 value for that platform.
 Typically, one only needs to set 
 .Va TARGET .
-.It Va KERNCONF
-Overrides which kernel to build and install for the various kernel
-make targets.
-It defaults to
-.Cm GENERIC .
-.It Va KERNFAST
-If set, the build target
-.Cm buildkernel
-defaults to setting 
-.Va NO_KERNELCLEAN ,
-.Va NO_KERNELCONFIG
-and
-.Va NO_KERNELDEPEND .
-When set to a value other than
-.Cm 1
-then 
-.Va KERNCONF 
-is set to the value of 
-.Va KERNFAST .
 .El
 .Pp
 Builds under directory

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 20:53:02 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 229DD106566C;
	Fri, 23 Jan 2009 20:53:02 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id EB6298FC12;
	Fri, 23 Jan 2009 20:53:01 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NKr1lS053970;
	Fri, 23 Jan 2009 20:53:01 GMT (envelope-from jhb@svn.freebsd.org)
Received: (from jhb@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NKr1Sf053969;
	Fri, 23 Jan 2009 20:53:01 GMT (envelope-from jhb@svn.freebsd.org)
Message-Id: <200901232053.n0NKr1Sf053969@svn.freebsd.org>
From: John Baldwin 
Date: Fri, 23 Jan 2009 20:53:01 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187648 - head/sys/net
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 20:53:02 -0000

Author: jhb
Date: Fri Jan 23 20:53:01 2009
New Revision: 187648
URL: http://svn.freebsd.org/changeset/base/187648

Log:
  Only start the if_slowtimo timer (which drives the if_watchdog methods of
  network interfaces) if we have at least one interface with an if_watchdog
  routine.
  
  MFC after:	2 weeks

Modified:
  head/sys/net/if.c

Modified: head/sys/net/if.c
==============================================================================
--- head/sys/net/if.c	Fri Jan 23 20:37:35 2009	(r187647)
+++ head/sys/net/if.c	Fri Jan 23 20:53:01 2009	(r187648)
@@ -97,6 +97,8 @@ struct vnet_net vnet_net_0;
 #endif
 #endif
 
+static int slowtimo_started;
+
 SYSCTL_NODE(_net, PF_LINK, link, CTLFLAG_RW, 0, "Link layers");
 SYSCTL_NODE(_net_link, 0, generic, CTLFLAG_RW, 0, "Generic link-management");
 
@@ -124,6 +126,7 @@ static int	ifconf(u_long, caddr_t);
 static void	if_freemulti(struct ifmultiaddr *);
 static void	if_grow(void);
 static void	if_init(void *);
+static void	if_check(void *);
 static void	if_qflush(struct ifnet *);
 static void	if_route(struct ifnet *, int flag, int fam);
 static int	if_setflag(struct ifnet *, int, int, int *, int);
@@ -185,7 +188,7 @@ VNET_MOD_DECLARE(NET, net, vnet_net_iatt
  * System initialization
  */
 SYSINIT(interfaces, SI_SUB_INIT_IF, SI_ORDER_FIRST, if_init, NULL);
-SYSINIT(interface_check, SI_SUB_PROTO_IF, SI_ORDER_FIRST, if_slowtimo, NULL);
+SYSINIT(interface_check, SI_SUB_PROTO_IF, SI_ORDER_FIRST, if_check, NULL);
 
 MALLOC_DEFINE(M_IFNET, "ifnet", "interface internals");
 MALLOC_DEFINE(M_IFADDR, "ifaddr", "interface address");
@@ -425,6 +428,18 @@ if_grow(void)
 	V_ifindex_table = e;
 }
 
+static void
+if_check(void *dummy __unused)
+{
+
+	/*
+	 * If at least one interface added during boot uses
+	 * if_watchdog then start the timer.
+	 */
+	if (slowtimo_started)
+		if_slowtimo(0);
+}
+
 /*
  * Allocate a struct ifnet and an index for an interface.  A layer 2
  * common structure will also be allocated if an allocation routine is
@@ -647,9 +662,17 @@ if_attach(struct ifnet *ifp)
 	/* Announce the interface. */
 	rt_ifannouncemsg(ifp, IFAN_ARRIVAL);
 
-	if (ifp->if_watchdog != NULL)
+	if (ifp->if_watchdog != NULL) {
 		if_printf(ifp,
 		    "WARNING: using obsoleted if_watchdog interface\n");
+	      
+		/*
+		 * Note that we need if_slowtimo().  If this happens after
+		 * boot, then call if_slowtimo() directly.
+		 */
+		if (atomic_cmpset_int(&slowtimo_started, 0, 1) && !cold)
+			if_slowtimo(0);
+	}
 	if (ifp->if_flags & IFF_NEEDSGIANT)
 		if_printf(ifp,
 		    "WARNING: using obsoleted IFF_NEEDSGIANT flag\n");

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 21:03:59 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 6DFBB1065674;
	Fri, 23 Jan 2009 21:03:59 +0000 (UTC)
	(envelope-from trasz@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 5CDB58FC19;
	Fri, 23 Jan 2009 21:03:59 +0000 (UTC)
	(envelope-from trasz@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NL3xbX054207;
	Fri, 23 Jan 2009 21:03:59 GMT (envelope-from trasz@svn.freebsd.org)
Received: (from trasz@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NL3xCj054206;
	Fri, 23 Jan 2009 21:03:59 GMT (envelope-from trasz@svn.freebsd.org)
Message-Id: <200901232103.n0NL3xCj054206@svn.freebsd.org>
From: Edward Tomasz Napierala 
Date: Fri, 23 Jan 2009 21:03:59 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187649 - head/sys/cam
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 21:03:59 -0000

Author: trasz
Date: Fri Jan 23 21:03:59 2009
New Revision: 187649
URL: http://svn.freebsd.org/changeset/base/187649

Log:
  Guard against NULL pointer dereference.
  
  Reviewed by:	scottl
  Approved by:	rwatson (mentor)
  Sponsored by:	FreeBSD Foundation
  Found with:	Coverity Prevent(tm)
  CID:		130

Modified:
  head/sys/cam/cam_periph.c

Modified: head/sys/cam/cam_periph.c
==============================================================================
--- head/sys/cam/cam_periph.c	Fri Jan 23 20:53:01 2009	(r187648)
+++ head/sys/cam/cam_periph.c	Fri Jan 23 21:03:59 2009	(r187649)
@@ -171,6 +171,10 @@ cam_periph_alloc(periph_ctor_t *periph_c
 			break;
 	}
 	xpt_unlock_buses();
+	if (p_drv == NULL) {
+		printf("cam_periph_alloc: invalid periph name '%s'\n", name);
+		return (CAM_REQ_INVALID);
+	}
 
 	sim = xpt_path_sim(path);
 	path_id = xpt_path_path_id(path);

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 21:05:17 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 43C06106566B;
	Fri, 23 Jan 2009 21:05:17 +0000 (UTC)
	(envelope-from trasz@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 32DAC8FC0C;
	Fri, 23 Jan 2009 21:05:17 +0000 (UTC)
	(envelope-from trasz@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NL5HIb054270;
	Fri, 23 Jan 2009 21:05:17 GMT (envelope-from trasz@svn.freebsd.org)
Received: (from trasz@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NL5H7P054269;
	Fri, 23 Jan 2009 21:05:17 GMT (envelope-from trasz@svn.freebsd.org)
Message-Id: <200901232105.n0NL5H7P054269@svn.freebsd.org>
From: Edward Tomasz Napierala 
Date: Fri, 23 Jan 2009 21:05:17 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187650 - head/sys/cam
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 21:05:17 -0000

Author: trasz
Date: Fri Jan 23 21:05:16 2009
New Revision: 187650
URL: http://svn.freebsd.org/changeset/base/187650

Log:
  Guard against NULL pointer dereference.
  
  Reviewed by:	scottl
  Approved by:	rwatson (mentor)
  Sponsored by:	FreeBSD Foundation
  Found with:	Coverity Prevent(tm)
  CID:		1847

Modified:
  head/sys/cam/cam_xpt.c

Modified: head/sys/cam/cam_xpt.c
==============================================================================
--- head/sys/cam/cam_xpt.c	Fri Jan 23 21:03:59 2009	(r187649)
+++ head/sys/cam/cam_xpt.c	Fri Jan 23 21:05:16 2009	(r187650)
@@ -4177,7 +4177,10 @@ xpt_path_string(struct cam_path *path, c
 {
 	struct sbuf sb;
 
-	mtx_assert(path->bus->sim->mtx, MA_OWNED);
+#ifdef INVARIANTS
+	if (path != NULL && path->bus != NULL && path->bus->sim != NULL)
+		mtx_assert(path->bus->sim->mtx, MA_OWNED);
+#endif
 
 	sbuf_new(&sb, str, str_len, 0);
 

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 21:06:16 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id A0345106564A;
	Fri, 23 Jan 2009 21:06:16 +0000 (UTC)
	(envelope-from trasz@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 8F41E8FC20;
	Fri, 23 Jan 2009 21:06:16 +0000 (UTC)
	(envelope-from trasz@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NL6GJo054327;
	Fri, 23 Jan 2009 21:06:16 GMT (envelope-from trasz@svn.freebsd.org)
Received: (from trasz@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NL6G70054326;
	Fri, 23 Jan 2009 21:06:16 GMT (envelope-from trasz@svn.freebsd.org)
Message-Id: <200901232106.n0NL6G70054326@svn.freebsd.org>
From: Edward Tomasz Napierala 
Date: Fri, 23 Jan 2009 21:06:16 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187651 - head/sys/cam/scsi
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 21:06:17 -0000

Author: trasz
Date: Fri Jan 23 21:06:16 2009
New Revision: 187651
URL: http://svn.freebsd.org/changeset/base/187651

Log:
  Don't leak memory when alloc fails.
  
  Reviewed by:	scottl
  Approved by:	rwatson (mentor)
  Sponsored by:	FreeBSD Foundation
  Found with:	Coverity Prevent(tm)
  CID:		2908

Modified:
  head/sys/cam/scsi/scsi_low.c

Modified: head/sys/cam/scsi/scsi_low.c
==============================================================================
--- head/sys/cam/scsi/scsi_low.c	Fri Jan 23 21:05:16 2009	(r187650)
+++ head/sys/cam/scsi/scsi_low.c	Fri Jan 23 21:06:16 2009	(r187651)
@@ -966,16 +966,16 @@ scsi_low_rescan_bus_cam(slp)
 	struct scsi_low_softc *slp;
 {
   	struct cam_path *path;
-	union ccb *ccb = xpt_alloc_ccb();
+	union ccb *ccb; 
 	cam_status status;
 
-	bzero(ccb, sizeof(union ccb));
-
 	status = xpt_create_path(&path, xpt_periph,
 				 cam_sim_path(slp->sl_si.sim), -1, 0);
 	if (status != CAM_REQ_CMP)
 		return;
 
+	ccb = xpt_alloc_ccb();
+	bzero(ccb, sizeof(union ccb));
 	xpt_setup_ccb(&ccb->ccb_h, path, 5);
 	ccb->ccb_h.func_code = XPT_SCAN_BUS;
 	ccb->ccb_h.cbfcnp = scsi_low_cam_rescan_callback;

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 21:08:00 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id D625F106566B;
	Fri, 23 Jan 2009 21:08:00 +0000 (UTC)
	(envelope-from trasz@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id C57718FC0C;
	Fri, 23 Jan 2009 21:08:00 +0000 (UTC)
	(envelope-from trasz@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NL80pO054398;
	Fri, 23 Jan 2009 21:08:00 GMT (envelope-from trasz@svn.freebsd.org)
Received: (from trasz@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NL80Y6054397;
	Fri, 23 Jan 2009 21:08:00 GMT (envelope-from trasz@svn.freebsd.org)
Message-Id: <200901232108.n0NL80Y6054397@svn.freebsd.org>
From: Edward Tomasz Napierala 
Date: Fri, 23 Jan 2009 21:08:00 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187652 - head/sys/cam
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 21:08:01 -0000

Author: trasz
Date: Fri Jan 23 21:08:00 2009
New Revision: 187652
URL: http://svn.freebsd.org/changeset/base/187652

Log:
  Protect against NULL pointer dereference.
  
  Reviewed by:	scottl
  Approved by:	rwatson (mentor)
  Sponsored by:	FreeBSD Foundation

Modified:
  head/sys/cam/cam_xpt.c

Modified: head/sys/cam/cam_xpt.c
==============================================================================
--- head/sys/cam/cam_xpt.c	Fri Jan 23 21:06:16 2009	(r187651)
+++ head/sys/cam/cam_xpt.c	Fri Jan 23 21:08:00 2009	(r187652)
@@ -5194,6 +5194,11 @@ xpt_scan_bus(struct cam_periph *periph, 
 		/* Save some state for use while we probe for devices */
 		scan_info = (xpt_scan_bus_info *)
 		    malloc(sizeof(xpt_scan_bus_info), M_CAMXPT, M_NOWAIT);
+		if (scan_info == NULL) {
+			request_ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
+			xpt_done(request_ccb);
+			return;
+		}
 		scan_info->request_ccb = request_ccb;
 		scan_info->cpi = &work_ccb->cpi;
 

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 22:08:55 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 49E49106566B;
	Fri, 23 Jan 2009 22:08:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 3998F8FC0A;
	Fri, 23 Jan 2009 22:08:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NM8tlN055510;
	Fri, 23 Jan 2009 22:08:55 GMT (envelope-from jhb@svn.freebsd.org)
Received: (from jhb@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NM8tXk055509;
	Fri, 23 Jan 2009 22:08:55 GMT (envelope-from jhb@svn.freebsd.org)
Message-Id: <200901232208.n0NM8tXk055509@svn.freebsd.org>
From: John Baldwin 
Date: Fri, 23 Jan 2009 22:08:55 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187653 - head/sys/kern
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 22:08:56 -0000

Author: jhb
Date: Fri Jan 23 22:08:54 2009
New Revision: 187653
URL: http://svn.freebsd.org/changeset/base/187653

Log:
  Push down Giant in the vlnru kproc main loop so that it is only acquired
  around calls to vlrureclaim() on non-MPSAFE filesystems.  Specifically,
  vnlru no longer needs Giant for the common case of waking up and deciding
  there is nothing for it to do.
  
  MFC after:	2 weeks

Modified:
  head/sys/kern/vfs_subr.c

Modified: head/sys/kern/vfs_subr.c
==============================================================================
--- head/sys/kern/vfs_subr.c	Fri Jan 23 21:08:00 2009	(r187652)
+++ head/sys/kern/vfs_subr.c	Fri Jan 23 22:08:54 2009	(r187653)
@@ -755,14 +755,12 @@ static void
 vnlru_proc(void)
 {
 	struct mount *mp, *nmp;
-	int done;
+	int done, vfslocked;
 	struct proc *p = vnlruproc;
 
 	EVENTHANDLER_REGISTER(shutdown_pre_sync, kproc_shutdown, p,
 	    SHUTDOWN_PRI_FIRST);
 
-	mtx_lock(&Giant);
-
 	for (;;) {
 		kproc_suspend_check(p);
 		mtx_lock(&vnode_free_list_mtx);
@@ -779,19 +777,13 @@ vnlru_proc(void)
 		done = 0;
 		mtx_lock(&mountlist_mtx);
 		for (mp = TAILQ_FIRST(&mountlist); mp != NULL; mp = nmp) {
-			int vfsunlocked;
 			if (vfs_busy(mp, MBF_NOWAIT | MBF_MNTLSTLOCK)) {
 				nmp = TAILQ_NEXT(mp, mnt_list);
 				continue;
 			}
-			if (!VFS_NEEDSGIANT(mp)) {
-				mtx_unlock(&Giant);
-				vfsunlocked = 1;
-			} else
-				vfsunlocked = 0;
+			vfslocked = VFS_LOCK_GIANT(mp);
 			done += vlrureclaim(mp);
-			if (vfsunlocked)
-				mtx_lock(&Giant);
+			VFS_UNLOCK_GIANT(vfslocked);
 			mtx_lock(&mountlist_mtx);
 			nmp = TAILQ_NEXT(mp, mnt_list);
 			vfs_unbusy(mp);

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 22:13:00 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id C0046106564A;
	Fri, 23 Jan 2009 22:13:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id AF8138FC18;
	Fri, 23 Jan 2009 22:13:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NMD0CQ055625;
	Fri, 23 Jan 2009 22:13:00 GMT (envelope-from jhb@svn.freebsd.org)
Received: (from jhb@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NMD0n8055624;
	Fri, 23 Jan 2009 22:13:00 GMT (envelope-from jhb@svn.freebsd.org)
Message-Id: <200901232213.n0NMD0n8055624@svn.freebsd.org>
From: John Baldwin 
Date: Fri, 23 Jan 2009 22:13:00 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187654 - head/sys/kern
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 22:13:01 -0000

Author: jhb
Date: Fri Jan 23 22:13:00 2009
New Revision: 187654
URL: http://svn.freebsd.org/changeset/base/187654

Log:
  Tweak the wording for vfs_mark_atime() since the I/O it is avoiding by not
  updating va_atime via VOP_SETATTR() isn't always synchronous.  For some
  filesystems it is asynchronous.
  
  Suggested by:  bde

Modified:
  head/sys/kern/vfs_subr.c

Modified: head/sys/kern/vfs_subr.c
==============================================================================
--- head/sys/kern/vfs_subr.c	Fri Jan 23 22:08:54 2009	(r187653)
+++ head/sys/kern/vfs_subr.c	Fri Jan 23 22:13:00 2009	(r187654)
@@ -4198,9 +4198,9 @@ vfs_read_dirent(struct vop_readdir_args 
 
 /*
  * Mark for update the access time of the file if the filesystem
- * supports VOP_MARKATIME.  This functionality is used by execve
- * and mmap, so we want to avoid the synchronous I/O implied by
- * directly setting va_atime for the sake of efficiency.
+ * supports VOP_MARKATIME.  This functionality is used by execve and
+ * mmap, so we want to avoid the I/O implied by directly setting
+ * va_atime for the sake of efficiency.
  */
 void
 vfs_mark_atime(struct vnode *vp, struct ucred *cred)

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 22:13:30 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 6E62D10656C9;
	Fri, 23 Jan 2009 22:13:30 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 5E1A48FC08;
	Fri, 23 Jan 2009 22:13:30 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NMDUF9055673;
	Fri, 23 Jan 2009 22:13:30 GMT (envelope-from jhb@svn.freebsd.org)
Received: (from jhb@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NMDUID055672;
	Fri, 23 Jan 2009 22:13:30 GMT (envelope-from jhb@svn.freebsd.org)
Message-Id: <200901232213.n0NMDUID055672@svn.freebsd.org>
From: John Baldwin 
Date: Fri, 23 Jan 2009 22:13:30 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187655 - head/sys/kern
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 22:13:30 -0000

Author: jhb
Date: Fri Jan 23 22:13:30 2009
New Revision: 187655
URL: http://svn.freebsd.org/changeset/base/187655

Log:
  Use shared vnode locks for fchdir().
  
  Submitted by:	ups

Modified:
  head/sys/kern/vfs_syscalls.c

Modified: head/sys/kern/vfs_syscalls.c
==============================================================================
--- head/sys/kern/vfs_syscalls.c	Fri Jan 23 22:13:00 2009	(r187654)
+++ head/sys/kern/vfs_syscalls.c	Fri Jan 23 22:13:30 2009	(r187655)
@@ -758,7 +758,7 @@ fchdir(td, uap)
 	VREF(vp);
 	fdrop(fp, td);
 	vfslocked = VFS_LOCK_GIANT(vp->v_mount);
-	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
+	vn_lock(vp, LK_SHARED | LK_RETRY);
 	AUDIT_ARG(vnode, vp, ARG_VNODE1);
 	error = change_dir(vp, td);
 	while (!error && (mp = vp->v_mountedhere) != NULL) {
@@ -766,7 +766,7 @@ fchdir(td, uap)
 		if (vfs_busy(mp, 0))
 			continue;
 		tvfslocked = VFS_LOCK_GIANT(mp);
-		error = VFS_ROOT(mp, LK_EXCLUSIVE, &tdp, td);
+		error = VFS_ROOT(mp, LK_SHARED, &tdp, td);
 		vfs_unbusy(mp);
 		if (error) {
 			VFS_UNLOCK_GIANT(tvfslocked);

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 22:40:35 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 73A5F106566C;
	Fri, 23 Jan 2009 22:40:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 633838FC1A;
	Fri, 23 Jan 2009 22:40:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NMeZ2a056220;
	Fri, 23 Jan 2009 22:40:35 GMT (envelope-from jhb@svn.freebsd.org)
Received: (from jhb@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NMeZ04056218;
	Fri, 23 Jan 2009 22:40:35 GMT (envelope-from jhb@svn.freebsd.org)
Message-Id: <200901232240.n0NMeZ04056218@svn.freebsd.org>
From: John Baldwin 
Date: Fri, 23 Jan 2009 22:40:35 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187656 - in head/sys: kern sys
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 22:40:35 -0000

Author: jhb
Date: Fri Jan 23 22:40:35 2009
New Revision: 187656
URL: http://svn.freebsd.org/changeset/base/187656

Log:
  Add a flag to tag individual sysctl leaf nodes as MPSAFE and thus not
  needing Giant.
  
  Submitted by:	csjp (an older version)

Modified:
  head/sys/kern/kern_sysctl.c
  head/sys/sys/sysctl.h

Modified: head/sys/kern/kern_sysctl.c
==============================================================================
--- head/sys/kern/kern_sysctl.c	Fri Jan 23 22:13:30 2009	(r187655)
+++ head/sys/kern/kern_sysctl.c	Fri Jan 23 22:40:35 2009	(r187656)
@@ -1334,11 +1334,11 @@ sysctl_root(SYSCTL_HANDLER_ARGS)
 	if (error != 0)
 		return (error);
 #endif
-
-	/* XXX: Handlers are not guaranteed to be Giant safe! */
-	mtx_lock(&Giant);
+	if (!(oid->oid_kind & CTLFLAG_MPSAFE))
+		mtx_lock(&Giant);
 	error = oid->oid_handler(oid, arg1, arg2, req);
-	mtx_unlock(&Giant);
+	if (!(oid->oid_kind & CTLFLAG_MPSAFE))
+		mtx_unlock(&Giant);
 
 	return (error);
 }

Modified: head/sys/sys/sysctl.h
==============================================================================
--- head/sys/sys/sysctl.h	Fri Jan 23 22:13:30 2009	(r187655)
+++ head/sys/sys/sysctl.h	Fri Jan 23 22:40:35 2009	(r187656)
@@ -84,6 +84,7 @@ struct ctlname {
 #define CTLFLAG_SKIP	0x01000000	/* Skip this sysctl when listing */
 #define CTLMASK_SECURE	0x00F00000	/* Secure level */
 #define CTLFLAG_TUN	0x00080000	/* Tunable variable */
+#define CTLFLAG_MPSAFE	0x00040000	/* Handler is MP safe */
 #define CTLFLAG_RDTUN	(CTLFLAG_RD|CTLFLAG_TUN)
 
 /*

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 22:46:46 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 0154B1065670;
	Fri, 23 Jan 2009 22:46:45 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id D654B8FC1A;
	Fri, 23 Jan 2009 22:46:45 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NMkjsV056361;
	Fri, 23 Jan 2009 22:46:45 GMT (envelope-from jhb@svn.freebsd.org)
Received: (from jhb@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NMkjfg056360;
	Fri, 23 Jan 2009 22:46:45 GMT (envelope-from jhb@svn.freebsd.org)
Message-Id: <200901232246.n0NMkjfg056360@svn.freebsd.org>
From: John Baldwin 
Date: Fri, 23 Jan 2009 22:46:45 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187657 - head/sys/kern
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 22:46:47 -0000

Author: jhb
Date: Fri Jan 23 22:46:45 2009
New Revision: 187657
URL: http://svn.freebsd.org/changeset/base/187657

Log:
  - Add conditional Giant locking around the vrele() in
    sysctl_kern_proc_pathname().
  - Mark all the kern.proc.* sysctls as MPSAFE.
  
  Submitted by:	csjp (2)

Modified:
  head/sys/kern/kern_proc.c

Modified: head/sys/kern/kern_proc.c
==============================================================================
--- head/sys/kern/kern_proc.c	Fri Jan 23 22:40:35 2009	(r187656)
+++ head/sys/kern/kern_proc.c	Fri Jan 23 22:46:45 2009	(r187657)
@@ -1280,7 +1280,7 @@ sysctl_kern_proc_pathname(SYSCTL_HANDLER
 	struct proc *p;
 	struct vnode *vp;
 	char *retbuf, *freebuf;
-	int error;
+	int error, vfslocked;
 
 	if (arglen != 1)
 		return (EINVAL);
@@ -1306,7 +1306,9 @@ sysctl_kern_proc_pathname(SYSCTL_HANDLER
 	if (*pidp != -1)
 		PROC_UNLOCK(p);
 	error = vn_fullpath(req->td, vp, &retbuf, &freebuf);
+	vfslocked = VFS_LOCK_GIANT(vp->v_mount);
 	vrele(vp);
+	VFS_UNLOCK_GIANT(vfslocked);
 	if (error)
 		return (error);
 	error = SYSCTL_OUT(req, retbuf, strlen(retbuf) + 1);
@@ -1793,82 +1795,85 @@ repeat:
 
 SYSCTL_NODE(_kern, KERN_PROC, proc, CTLFLAG_RD,  0, "Process table");
 
-SYSCTL_PROC(_kern_proc, KERN_PROC_ALL, all, CTLFLAG_RD|CTLTYPE_STRUCT,
-	0, 0, sysctl_kern_proc, "S,proc", "Return entire process table");
+SYSCTL_PROC(_kern_proc, KERN_PROC_ALL, all, CTLFLAG_RD|CTLTYPE_STRUCT|
+	CTLFLAG_MPSAFE, 0, 0, sysctl_kern_proc, "S,proc",
+	"Return entire process table");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_GID, gid, CTLFLAG_RD,
+static SYSCTL_NODE(_kern_proc, KERN_PROC_GID, gid, CTLFLAG_RD | CTLFLAG_MPSAFE,
 	sysctl_kern_proc, "Process table");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_PGRP, pgrp, CTLFLAG_RD, 
+static SYSCTL_NODE(_kern_proc, KERN_PROC_PGRP, pgrp, CTLFLAG_RD | CTLFLAG_MPSAFE,
 	sysctl_kern_proc, "Process table");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_RGID, rgid, CTLFLAG_RD,
+static SYSCTL_NODE(_kern_proc, KERN_PROC_RGID, rgid, CTLFLAG_RD | CTLFLAG_MPSAFE,
 	sysctl_kern_proc, "Process table");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_SESSION, sid, CTLFLAG_RD,
-	sysctl_kern_proc, "Process table");
+static SYSCTL_NODE(_kern_proc, KERN_PROC_SESSION, sid, CTLFLAG_RD |
+	CTLFLAG_MPSAFE, sysctl_kern_proc, "Process table");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_TTY, tty, CTLFLAG_RD, 
+static SYSCTL_NODE(_kern_proc, KERN_PROC_TTY, tty, CTLFLAG_RD | CTLFLAG_MPSAFE, 
 	sysctl_kern_proc, "Process table");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_UID, uid, CTLFLAG_RD, 
+static SYSCTL_NODE(_kern_proc, KERN_PROC_UID, uid, CTLFLAG_RD | CTLFLAG_MPSAFE, 
 	sysctl_kern_proc, "Process table");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_RUID, ruid, CTLFLAG_RD, 
+static SYSCTL_NODE(_kern_proc, KERN_PROC_RUID, ruid, CTLFLAG_RD | CTLFLAG_MPSAFE,
 	sysctl_kern_proc, "Process table");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_PID, pid, CTLFLAG_RD, 
+static SYSCTL_NODE(_kern_proc, KERN_PROC_PID, pid, CTLFLAG_RD | CTLFLAG_MPSAFE,
 	sysctl_kern_proc, "Process table");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_PROC, proc, CTLFLAG_RD,
+static SYSCTL_NODE(_kern_proc, KERN_PROC_PROC, proc, CTLFLAG_RD | CTLFLAG_MPSAFE,
 	sysctl_kern_proc, "Return process table, no threads");
 
 static SYSCTL_NODE(_kern_proc, KERN_PROC_ARGS, args,
-	CTLFLAG_RW | CTLFLAG_ANYBODY,
+	CTLFLAG_RW | CTLFLAG_ANYBODY | CTLFLAG_MPSAFE,
 	sysctl_kern_proc_args, "Process argument list");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_PATHNAME, pathname, CTLFLAG_RD,
-	sysctl_kern_proc_pathname, "Process executable path");
+static SYSCTL_NODE(_kern_proc, KERN_PROC_PATHNAME, pathname, CTLFLAG_RD |
+	CTLFLAG_MPSAFE, sysctl_kern_proc_pathname, "Process executable path");
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_SV_NAME, sv_name, CTLFLAG_RD,
-	sysctl_kern_proc_sv_name, "Process syscall vector name (ABI type)");
+static SYSCTL_NODE(_kern_proc, KERN_PROC_SV_NAME, sv_name, CTLFLAG_RD |
+	CTLFLAG_MPSAFE, sysctl_kern_proc_sv_name,
+	"Process syscall vector name (ABI type)");
 
 static SYSCTL_NODE(_kern_proc, (KERN_PROC_GID | KERN_PROC_INC_THREAD), gid_td,
-	CTLFLAG_RD, sysctl_kern_proc, "Process table");
+	CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_kern_proc, "Process table");
 
 static SYSCTL_NODE(_kern_proc, (KERN_PROC_PGRP | KERN_PROC_INC_THREAD), pgrp_td,
-	CTLFLAG_RD, sysctl_kern_proc, "Process table");
+	CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_kern_proc, "Process table");
 
 static SYSCTL_NODE(_kern_proc, (KERN_PROC_RGID | KERN_PROC_INC_THREAD), rgid_td,
-	CTLFLAG_RD, sysctl_kern_proc, "Process table");
+	CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_kern_proc, "Process table");
 
 static SYSCTL_NODE(_kern_proc, (KERN_PROC_SESSION | KERN_PROC_INC_THREAD),
-	sid_td, CTLFLAG_RD, sysctl_kern_proc, "Process table");
+	sid_td, CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_kern_proc, "Process table");
 
 static SYSCTL_NODE(_kern_proc, (KERN_PROC_TTY | KERN_PROC_INC_THREAD), tty_td,
-	CTLFLAG_RD, sysctl_kern_proc, "Process table");
+	CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_kern_proc, "Process table");
 
 static SYSCTL_NODE(_kern_proc, (KERN_PROC_UID | KERN_PROC_INC_THREAD), uid_td,
-	CTLFLAG_RD, sysctl_kern_proc, "Process table");
+	CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_kern_proc, "Process table");
 
 static SYSCTL_NODE(_kern_proc, (KERN_PROC_RUID | KERN_PROC_INC_THREAD), ruid_td,
-	CTLFLAG_RD, sysctl_kern_proc, "Process table");
+	CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_kern_proc, "Process table");
 
 static SYSCTL_NODE(_kern_proc, (KERN_PROC_PID | KERN_PROC_INC_THREAD), pid_td,
-	CTLFLAG_RD, sysctl_kern_proc, "Process table");
+	CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_kern_proc, "Process table");
 
 static SYSCTL_NODE(_kern_proc, (KERN_PROC_PROC | KERN_PROC_INC_THREAD), proc_td,
-	CTLFLAG_RD, sysctl_kern_proc, "Return process table, no threads");
+	CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_kern_proc,
+	"Return process table, no threads");
 
 #ifdef COMPAT_FREEBSD7
-static SYSCTL_NODE(_kern_proc, KERN_PROC_OVMMAP, ovmmap, CTLFLAG_RD,
-	sysctl_kern_proc_ovmmap, "Old Process vm map entries");
+static SYSCTL_NODE(_kern_proc, KERN_PROC_OVMMAP, ovmmap, CTLFLAG_RD |
+	CTLFLAG_MPSAFE, sysctl_kern_proc_ovmmap, "Old Process vm map entries");
 #endif
 
-static SYSCTL_NODE(_kern_proc, KERN_PROC_VMMAP, vmmap, CTLFLAG_RD,
-	sysctl_kern_proc_vmmap, "Process vm map entries");
+static SYSCTL_NODE(_kern_proc, KERN_PROC_VMMAP, vmmap, CTLFLAG_RD |
+	CTLFLAG_MPSAFE, sysctl_kern_proc_vmmap, "Process vm map entries");
 
 #if defined(STACK) || defined(DDB)
-static SYSCTL_NODE(_kern_proc, KERN_PROC_KSTACK, kstack, CTLFLAG_RD,
-	sysctl_kern_proc_kstack, "Process kernel stacks");
+static SYSCTL_NODE(_kern_proc, KERN_PROC_KSTACK, kstack, CTLFLAG_RD |
+	CTLFLAG_MPSAFE, sysctl_kern_proc_kstack, "Process kernel stacks");
 #endif

From owner-svn-src-all@FreeBSD.ORG  Fri Jan 23 22:49:23 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 59881106564A;
	Fri, 23 Jan 2009 22:49:23 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 46CFF8FC19;
	Fri, 23 Jan 2009 22:49:23 +0000 (UTC) (envelope-from jhb@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NMnN3p056444;
	Fri, 23 Jan 2009 22:49:23 GMT (envelope-from jhb@svn.freebsd.org)
Received: (from jhb@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0NMnNIr056441;
	Fri, 23 Jan 2009 22:49:23 GMT (envelope-from jhb@svn.freebsd.org)
Message-Id: <200901232249.n0NMnNIr056441@svn.freebsd.org>
From: John Baldwin 
Date: Fri, 23 Jan 2009 22:49:23 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187658 - in head/sys: kern sys vm
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Fri, 23 Jan 2009 22:49:23 -0000

Author: jhb
Date: Fri Jan 23 22:49:23 2009
New Revision: 187658
URL: http://svn.freebsd.org/changeset/base/187658

Log:
  - Mark all standalone INT/LONG/QUAD sysctl's MPSAFE.  This is done
    inside the SYSCTL() macros and thus does not need to be done for
    all of the nodes scattered across the source tree.
  - Mark the name-cache related sysctl's (including debug.hashstat.*) MPSAFE.
  - Mark vm.loadavg MPSAFE.
  - Remove GIANT_REQUIRED from vmtotal() (everything in this routine already
    has sufficient locking) and mark vm.vmtotal MPSAFE.
  - Mark the vm.stats.(sys|vm).* sysctls MPSAFE.

Modified:
  head/sys/kern/vfs_cache.c
  head/sys/sys/sysctl.h
  head/sys/vm/vm_meter.c

Modified: head/sys/kern/vfs_cache.c
==============================================================================
--- head/sys/kern/vfs_cache.c	Fri Jan 23 22:46:45 2009	(r187657)
+++ head/sys/kern/vfs_cache.c	Fri Jan 23 22:49:23 2009	(r187658)
@@ -163,8 +163,8 @@ static u_long numposhits; STATNODE(CTLFL
 static u_long numnegzaps; STATNODE(CTLFLAG_RD, numnegzaps, &numnegzaps);
 static u_long numneghits; STATNODE(CTLFLAG_RD, numneghits, &numneghits);
 
-SYSCTL_OPAQUE(_vfs_cache, OID_AUTO, nchstats, CTLFLAG_RD, &nchstats,
-	sizeof(nchstats), "LU", "VFS cache effectiveness statistics");
+SYSCTL_OPAQUE(_vfs_cache, OID_AUTO, nchstats, CTLFLAG_RD | CTLFLAG_MPSAFE,
+	&nchstats, sizeof(nchstats), "LU", "VFS cache effectiveness statistics");
 
 
 
@@ -212,8 +212,9 @@ sysctl_debug_hashstat_rawnchash(SYSCTL_H
 	}
 	return (0);
 }
-SYSCTL_PROC(_debug_hashstat, OID_AUTO, rawnchash, CTLTYPE_INT|CTLFLAG_RD,
-	0, 0, sysctl_debug_hashstat_rawnchash, "S,int", "nchash chain lengths");
+SYSCTL_PROC(_debug_hashstat, OID_AUTO, rawnchash, CTLTYPE_INT|CTLFLAG_RD|
+	CTLFLAG_MPSAFE, 0, 0, sysctl_debug_hashstat_rawnchash, "S,int",
+	"nchash chain lengths");
 
 static int
 sysctl_debug_hashstat_nchash(SYSCTL_HANDLER_ARGS)
@@ -260,8 +261,9 @@ sysctl_debug_hashstat_nchash(SYSCTL_HAND
 		return (error);
 	return (0);
 }
-SYSCTL_PROC(_debug_hashstat, OID_AUTO, nchash, CTLTYPE_INT|CTLFLAG_RD,
-	0, 0, sysctl_debug_hashstat_nchash, "I", "nchash chain lengths");
+SYSCTL_PROC(_debug_hashstat, OID_AUTO, nchash, CTLTYPE_INT|CTLFLAG_RD|
+	CTLFLAG_MPSAFE, 0, 0, sysctl_debug_hashstat_nchash, "I",
+	"nchash chain lengths");
 
 /*
  * cache_zap():

Modified: head/sys/sys/sysctl.h
==============================================================================
--- head/sys/sys/sysctl.h	Fri Jan 23 22:46:45 2009	(r187657)
+++ head/sys/sys/sysctl.h	Fri Jan 23 22:49:23 2009	(r187658)
@@ -287,7 +287,7 @@ TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_e
 
 /* Oid for an int.  If ptr is NULL, val is returned. */
 #define SYSCTL_INT(parent, nbr, name, access, ptr, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|CTLFLAG_MPSAFE|(access), \
 		ptr, val, sysctl_handle_int, "I", descr)
 
 #ifdef VIMAGE
@@ -297,22 +297,22 @@ TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_e
 #else
 #ifdef VIMAGE_GLOBALS
 #define	SYSCTL_V_INT(subs, mod, parent, nbr, name, access, sym, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|CTLFLAG_MPSAFE|(access), \
 		&sym, val, sysctl_handle_int, "I", descr)
 #else
 #define	SYSCTL_V_INT(subs, mod, parent, nbr, name, access, sym, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_INT|CTLFLAG_MPSAFE|(access), \
 		& mod ## _0._ ## sym, val, sysctl_handle_int, "I", descr)
 #endif
 #endif
 
 #define SYSCTL_ADD_INT(ctx, parent, nbr, name, access, ptr, val, descr)	    \
-	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_INT|(access),	    \
+	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_INT|CTLFLAG_MPSAFE|(access),	    \
 	ptr, val, sysctl_handle_int, "I", __DESCR(descr))
 
 /* Oid for an unsigned int.  If ptr is NULL, val is returned. */
 #define SYSCTL_UINT(parent, nbr, name, access, ptr, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_UINT|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_UINT|CTLFLAG_MPSAFE|(access), \
 		ptr, val, sysctl_handle_int, "IU", descr)
 
 #ifdef VIMAGE
@@ -322,60 +322,60 @@ TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_e
 #else
 #ifdef VIMAGE_GLOBALS
 #define	SYSCTL_V_UINT(subs, mod, parent, nbr, name, access, sym, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_UINT|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_UINT|CTLFLAG_MPSAFE|(access), \
 		&sym, val, sysctl_handle_int, "IU", descr)
 #else
 #define	SYSCTL_V_UINT(subs, mod, parent, nbr, name, access, sym, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_UINT|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_UINT|CTLFLAG_MPSAFE|(access), \
 		& mod ## _0._ ## sym, val, sysctl_handle_int, "IU", descr)
 #endif
 #endif
 
 #define SYSCTL_ADD_UINT(ctx, parent, nbr, name, access, ptr, val, descr)    \
-	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_UINT|(access),	    \
+	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_UINT|CTLFLAG_MPSAFE|(access),	    \
 	ptr, val, sysctl_handle_int, "IU", __DESCR(descr))
 
 #define SYSCTL_XINT(parent, nbr, name, access, ptr, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_UINT|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_UINT|CTLFLAG_MPSAFE|(access), \
 		ptr, val, sysctl_handle_int, "IX", descr)
 
 #define SYSCTL_ADD_XINT(ctx, parent, nbr, name, access, ptr, val, descr)    \
-	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_UINT|(access),	    \
+	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_UINT|CTLFLAG_MPSAFE|(access),	    \
 	ptr, val, sysctl_handle_int, "IX", __DESCR(descr))
 
 /* Oid for a long.  The pointer must be non NULL. */
 #define SYSCTL_LONG(parent, nbr, name, access, ptr, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_LONG|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_LONG|CTLFLAG_MPSAFE|(access), \
 		ptr, val, sysctl_handle_long, "L", descr)
 
 #define SYSCTL_ADD_LONG(ctx, parent, nbr, name, access, ptr, descr)	    \
-	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_LONG|(access),	    \
+	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_LONG|CTLFLAG_MPSAFE|(access),	    \
 	ptr, 0, sysctl_handle_long, "L", __DESCR(descr))
 
 /* Oid for an unsigned long.  The pointer must be non NULL. */
 #define SYSCTL_ULONG(parent, nbr, name, access, ptr, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_ULONG|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_ULONG|CTLFLAG_MPSAFE|(access), \
 		ptr, val, sysctl_handle_long, "LU", __DESCR(descr))
 
 #define SYSCTL_ADD_ULONG(ctx, parent, nbr, name, access, ptr, descr)	    \
-	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_ULONG|(access),	    \
+	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_ULONG|CTLFLAG_MPSAFE|(access),	    \
 	ptr, 0, sysctl_handle_long, "LU", __DESCR(descr))
 
 #define SYSCTL_XLONG(parent, nbr, name, access, ptr, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_ULONG|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_ULONG|CTLFLAG_MPSAFE|(access), \
 		ptr, val, sysctl_handle_long, "LX", __DESCR(descr))
 
 #define SYSCTL_ADD_XLONG(ctx, parent, nbr, name, access, ptr, descr)	    \
-	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_ULONG|(access),	    \
+	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_ULONG|CTLFLAG_MPSAFE|(access),	    \
 	ptr, 0, sysctl_handle_long, "LX", __DESCR(descr))
 
 /* Oid for a quad.  The pointer must be non NULL. */
 #define SYSCTL_QUAD(parent, nbr, name, access, ptr, val, descr) \
-	SYSCTL_OID(parent, nbr, name, CTLTYPE_QUAD|(access), \
+	SYSCTL_OID(parent, nbr, name, CTLTYPE_QUAD|CTLFLAG_MPSAFE|(access), \
 		ptr, val, sysctl_handle_quad, "Q", __DESCR(descr))
 
 #define SYSCTL_ADD_QUAD(ctx, parent, nbr, name, access, ptr, descr)	    \
-	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_QUAD|(access),	    \
+	sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_QUAD|CTLFLAG_MPSAFE|(access),	    \
 	ptr, 0, sysctl_handle_quad, "Q", __DESCR(descr))
 
 /* Oid for an opaque object.  Specified by a pointer and a length. */

Modified: head/sys/vm/vm_meter.c
==============================================================================
--- head/sys/vm/vm_meter.c	Fri Jan 23 22:46:45 2009	(r187657)
+++ head/sys/vm/vm_meter.c	Fri Jan 23 22:49:23 2009	(r187658)
@@ -90,8 +90,9 @@ sysctl_vm_loadavg(SYSCTL_HANDLER_ARGS)
 #endif
 		return SYSCTL_OUT(req, &averunnable, sizeof(averunnable));
 }
-SYSCTL_PROC(_vm, VM_LOADAVG, loadavg, CTLTYPE_STRUCT|CTLFLAG_RD, 
-    NULL, 0, sysctl_vm_loadavg, "S,loadavg", "Machine loadaverage history");
+SYSCTL_PROC(_vm, VM_LOADAVG, loadavg, CTLTYPE_STRUCT | CTLFLAG_RD |
+    CTLFLAG_MPSAFE, NULL, 0, sysctl_vm_loadavg, "S,loadavg",
+    "Machine loadaverage history");
 
 static int
 vmtotal(SYSCTL_HANDLER_ARGS)
@@ -109,7 +110,6 @@ vmtotal(SYSCTL_HANDLER_ARGS)
 	/*
 	 * Mark all objects as inactive.
 	 */
-	GIANT_REQUIRED;
 	mtx_lock(&vm_object_list_mtx);
 	TAILQ_FOREACH(object, &vm_object_list, object_list) {
 		if (!VM_OBJECT_TRYLOCK(object)) {
@@ -269,7 +269,7 @@ vcnt(SYSCTL_HANDLER_ARGS)
 	return (SYSCTL_OUT(req, &count, sizeof(int)));
 }
 
-SYSCTL_PROC(_vm, VM_TOTAL, vmtotal, CTLTYPE_OPAQUE|CTLFLAG_RD,
+SYSCTL_PROC(_vm, VM_TOTAL, vmtotal, CTLTYPE_OPAQUE|CTLFLAG_RD|CTLFLAG_MPSAFE,
     0, sizeof(struct vmtotal), vmtotal, "S,vmtotal", 
     "System virtual memory statistics");
 SYSCTL_NODE(_vm, OID_AUTO, stats, CTLFLAG_RW, 0, "VM meter stats");
@@ -279,103 +279,103 @@ static SYSCTL_NODE(_vm_stats, OID_AUTO, 
 	"VM meter vm stats");
 SYSCTL_NODE(_vm_stats, OID_AUTO, misc, CTLFLAG_RW, 0, "VM meter misc stats");
 
-SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_swtch, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_swtch, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_swtch, 0, vcnt, "IU", "Context switches");
-SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_trap, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_trap, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_trap, 0, vcnt, "IU", "Traps");
-SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_syscall, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_syscall, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_syscall, 0, vcnt, "IU", "Syscalls");
-SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_intr, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_intr, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_intr, 0, vcnt, "IU", "Hardware interrupts");
-SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_soft, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_sys, OID_AUTO, v_soft, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_soft, 0, vcnt, "IU", "Software interrupts");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vm_faults, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vm_faults, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_vm_faults, 0, vcnt, "IU", "VM faults");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cow_faults, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cow_faults, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_cow_faults, 0, vcnt, "IU", "COW faults");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cow_optim, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cow_optim, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_cow_optim, 0, vcnt, "IU", "Optimized COW faults");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_zfod, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_zfod, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_zfod, 0, vcnt, "IU", "Zero fill");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_ozfod, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_ozfod, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_ozfod, 0, vcnt, "IU", "Optimized zero fill");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_swapin, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_swapin, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_swapin, 0, vcnt, "IU", "Swapin operations");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_swapout, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_swapout, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_swapout, 0, vcnt, "IU", "Swapout operations");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_swappgsin, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_swappgsin, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_swappgsin, 0, vcnt, "IU", "Swapin pages");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_swappgsout, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_swappgsout, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_swappgsout, 0, vcnt, "IU", "Swapout pages");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vnodein, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vnodein, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_vnodein, 0, vcnt, "IU", "Vnodein operations");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vnodeout, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vnodeout, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_vnodeout, 0, vcnt, "IU", "Vnodeout operations");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vnodepgsin, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vnodepgsin, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_vnodepgsin, 0, vcnt, "IU", "Vnodein pages");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vnodepgsout, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vnodepgsout, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_vnodepgsout, 0, vcnt, "IU", "Vnodeout pages");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_intrans, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_intrans, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_intrans, 0, vcnt, "IU", "In transit page blocking");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_reactivated, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_reactivated, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_reactivated, 0, vcnt, "IU", "Reactivated pages");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_pdwakeups, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_pdwakeups, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_pdwakeups, 0, vcnt, "IU", "Pagedaemon wakeups");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_pdpages, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_pdpages, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_pdpages, 0, vcnt, "IU", "Pagedaemon page scans");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_tcached, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_tcached, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_tcached, 0, vcnt, "IU", "Total pages cached");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_dfree, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_dfree, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_dfree, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_pfree, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_pfree, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_pfree, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_tfree, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_tfree, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_tfree, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_page_size, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_page_size, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_page_size, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_page_count, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_page_count, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_page_count, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_free_reserved, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_free_reserved, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_free_reserved, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_free_target, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_free_target, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_free_target, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_free_min, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_free_min, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_free_min, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_free_count, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_free_count, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_free_count, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_wire_count, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_wire_count, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_wire_count, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_active_count, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_active_count, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_active_count, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_inactive_target, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_inactive_target, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_inactive_target, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_inactive_count, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_inactive_count, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_inactive_count, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cache_count, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cache_count, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_cache_count, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cache_min, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cache_min, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_cache_min, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cache_max, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_cache_max, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_cache_max, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_pageout_free_min, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_pageout_free_min, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_pageout_free_min, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_interrupt_free_min, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_interrupt_free_min, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_interrupt_free_min, 0, vcnt, "IU", "");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_forks, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_forks, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_forks, 0, vcnt, "IU", "Number of fork() calls");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vforks, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vforks, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_vforks, 0, vcnt, "IU", "Number of vfork() calls");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_rforks, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_rforks, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_rforks, 0, vcnt, "IU", "Number of rfork() calls");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_kthreads, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_kthreads, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_kthreads, 0, vcnt, "IU", "Number of fork() calls by kernel");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_forkpages, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_forkpages, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_forkpages, 0, vcnt, "IU", "VM pages affected by fork()");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vforkpages, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_vforkpages, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_vforkpages, 0, vcnt, "IU", "VM pages affected by vfork()");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_rforkpages, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_rforkpages, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_rforkpages, 0, vcnt, "IU", "VM pages affected by rfork()");
-SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_kthreadpages, CTLTYPE_UINT|CTLFLAG_RD,
+SYSCTL_PROC(_vm_stats_vm, OID_AUTO, v_kthreadpages, CTLTYPE_UINT|CTLFLAG_RD|CTLFLAG_MPSAFE,
 	&cnt.v_kthreadpages, 0, vcnt, "IU", "VM pages affected by fork() by kernel");
 
 SYSCTL_INT(_vm_stats_misc, OID_AUTO,

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 01:46:48 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 42AFD106564A;
	Sat, 24 Jan 2009 01:46:47 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 30FF98FC18;
	Sat, 24 Jan 2009 01:46:47 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0O1kkKN059727;
	Sat, 24 Jan 2009 01:46:46 GMT (envelope-from trhodes@svn.freebsd.org)
Received: (from trhodes@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0O1kkoZ059726;
	Sat, 24 Jan 2009 01:46:46 GMT (envelope-from trhodes@svn.freebsd.org)
Message-Id: <200901240146.n0O1kkoZ059726@svn.freebsd.org>
From: Tom Rhodes 
Date: Sat, 24 Jan 2009 01:46:46 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187661 - head/share/man/man7
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 01:46:48 -0000

Author: trhodes
Date: Sat Jan 24 01:46:46 2009
New Revision: 187661
URL: http://svn.freebsd.org/changeset/base/187661

Log:
  Add a comment on kern.ipc.maxpipekva.
  
  PR:		105997
  Reviewed by:	keramida

Modified:
  head/share/man/man7/tuning.7

Modified: head/share/man/man7/tuning.7
==============================================================================
--- head/share/man/man7/tuning.7	Sat Jan 24 01:34:22 2009	(r187660)
+++ head/share/man/man7/tuning.7	Sat Jan 24 01:46:46 2009	(r187661)
@@ -23,7 +23,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd November 19, 2007
+.Dd January 23, 2009
 .Dt TUNING 7
 .Os
 .Sh NAME
@@ -402,6 +402,16 @@ In this document we will only cover the 
 on the system.
 .Pp
 The
+.Va kern.ipc.maxpipekva
+loader tunable is used to set a hard limit on the amount of pageable
+address space available.
+This value is auto tuned by the system, but may require manual tuning
+in a few rare cases.
+Increasing this value to a higher setting, such as `25165824' might
+improve performance on systems where pageable address space is
+quickly exhausted.
+.Pp
+The
 .Va kern.ipc.shm_use_phys
 sysctl defaults to 0 (off) and may be set to 0 (off) or 1 (on).
 Setting

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 04:08:00 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7A430106566B;
	Sat, 24 Jan 2009 04:08:00 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 685E78FC20;
	Sat, 24 Jan 2009 04:08:00 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0O480Jw062582;
	Sat, 24 Jan 2009 04:08:00 GMT (envelope-from trhodes@svn.freebsd.org)
Received: (from trhodes@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0O480e5062580;
	Sat, 24 Jan 2009 04:08:00 GMT (envelope-from trhodes@svn.freebsd.org)
Message-Id: <200901240408.n0O480e5062580@svn.freebsd.org>
From: Tom Rhodes 
Date: Sat, 24 Jan 2009 04:08:00 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187662 - head/share/man/man4
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 04:08:00 -0000

Author: trhodes
Date: Sat Jan 24 04:08:00 2009
New Revision: 187662
URL: http://svn.freebsd.org/changeset/base/187662

Log:
  Update the supported device list a little bit.
  
  PR:		84538
  Submitted by:	asmodai

Modified:
  head/share/man/man4/nge.4
  head/share/man/man4/sk.4

Modified: head/share/man/man4/nge.4
==============================================================================
--- head/share/man/man4/nge.4	Sat Jan 24 01:46:46 2009	(r187661)
+++ head/share/man/man4/nge.4	Sat Jan 24 04:08:00 2009	(r187662)
@@ -31,7 +31,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd January 14, 2006
+.Dd January 23, 2009
 .Dt NGE 4
 .Os
 .Sh NAME
@@ -170,6 +170,8 @@ Asante FriendlyNet GigaNIX 1000TA and 10
 .It
 D-Link DGE-500T
 .It
+Linksys EG1032, revision 1
+.It
 Netgear GA621
 .It
 Netgear GA622T

Modified: head/share/man/man4/sk.4
==============================================================================
--- head/share/man/man4/sk.4	Sat Jan 24 01:46:46 2009	(r187661)
+++ head/share/man/man4/sk.4	Sat Jan 24 04:08:00 2009	(r187662)
@@ -30,7 +30,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 14, 2008
+.Dd January 23, 2009
 .Dt SK 4
 .Os
 .Sh NAME
@@ -82,7 +82,7 @@ second port on dual port adapters for fa
 on the primary port fails, the SysKonnect driver will automatically
 switch traffic onto the second port.
 .Pp
-Also supported is the Marvell Semiconductor 88E1000* gigabit PHY.
+Also supported is the Marvell Semiconductor 88E100* gigabit PHY.
 .Pp
 The XaQti XMAC II supports full and half duplex operation with
 autonegotiation.
@@ -173,7 +173,7 @@ Belkin F5D5005 single port, 1000baseT ad
 .It
 D-Link DGE-530T single port, 1000baseT adapter
 .It
-Linksys EG1032 single port, 1000baseT adapter
+Linksys (revision 2) single port, 1000baseT adapter
 .It
 SK-9521 SK-NET GE-T single port, 1000baseT adapter
 .It

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 05:32:11 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 825CC1065676;
	Sat, 24 Jan 2009 05:32:11 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 707C08FC23;
	Sat, 24 Jan 2009 05:32:11 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0O5WBgD064087;
	Sat, 24 Jan 2009 05:32:11 GMT (envelope-from trhodes@svn.freebsd.org)
Received: (from trhodes@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0O5WBjf064086;
	Sat, 24 Jan 2009 05:32:11 GMT (envelope-from trhodes@svn.freebsd.org)
Message-Id: <200901240532.n0O5WBjf064086@svn.freebsd.org>
From: Tom Rhodes 
Date: Sat, 24 Jan 2009 05:32:11 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187663 - head/usr.bin/split
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 05:32:12 -0000

Author: trhodes
Date: Sat Jan 24 05:32:11 2009
New Revision: 187663
URL: http://svn.freebsd.org/changeset/base/187663

Log:
  When "-b" is specified, one could easily create "smaller" files
  that are much larger than expected (given the default size).
  Change "smaller files" to "split files" which is more in line
  with what "-b" actually does.
  
  PR:		119329
  Submitted by:	Julian Stacey 

Modified:
  head/usr.bin/split/split.1

Modified: head/usr.bin/split/split.1
==============================================================================
--- head/usr.bin/split/split.1	Sat Jan 24 04:08:00 2009	(r187662)
+++ head/usr.bin/split/split.1	Sat Jan 24 05:32:11 2009	(r187663)
@@ -32,7 +32,7 @@
 .\"	@(#)split.1	8.3 (Berkeley) 4/16/94
 .\" $FreeBSD$
 .\"
-.Dd March 16, 2008
+.Dd January 23, 2009
 .Dt SPLIT 1
 .Os
 .Sh NAME
@@ -88,7 +88,7 @@ letters to form the suffix of the file n
 .Cm K | k | M | m | G | g
 .Sm on
 .Oc
-Create smaller files
+Create split files
 .Ar byte_count
 bytes in length.
 If
@@ -113,7 +113,7 @@ is appended to the number, the file is s
 .Ar byte_count
 gigabyte pieces.
 .It Fl l Ar line_count
-Create smaller files
+Create split files
 .Ar line_count
 lines in length.
 .It Fl n Ar chunk_count

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 10:22:50 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 099BB1065688;
	Sat, 24 Jan 2009 10:22:50 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id EBC7A8FC21;
	Sat, 24 Jan 2009 10:22:49 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0OAMnPB069234;
	Sat, 24 Jan 2009 10:22:49 GMT (envelope-from rwatson@svn.freebsd.org)
Received: (from rwatson@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0OAMntu069233;
	Sat, 24 Jan 2009 10:22:49 GMT (envelope-from rwatson@svn.freebsd.org)
Message-Id: <200901241022.n0OAMntu069233@svn.freebsd.org>
From: Robert Watson 
Date: Sat, 24 Jan 2009 10:22:49 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187664 - head/sys/kern
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 10:22:51 -0000

Author: rwatson
Date: Sat Jan 24 10:22:49 2009
New Revision: 187664
URL: http://svn.freebsd.org/changeset/base/187664

Log:
  Add explicit static DTrace tracing to the callout mechanism, capturing
  pointers to the callout handler just before and just after the callout
  it invoked.  I attempted to do this in a manner congruent to tracing in
  Solaris's callout mechanism, but couldn't quite use the same names due
  to convention and syntax differences.
  
  Example DTrace script to generate a distribution graph of callout
  execution times:
  
  callout_execute:::callout_start
  {
          self->cstart = timestamp;
  }
  
  callout_execute:::callout_end
  {
  
          @length = quantize(timestamp - self->cstart);
  }
  
  Reviewed by:	jb
  MFC after:	3 days

Modified:
  head/sys/kern/kern_timeout.c

Modified: head/sys/kern/kern_timeout.c
==============================================================================
--- head/sys/kern/kern_timeout.c	Sat Jan 24 05:32:11 2009	(r187663)
+++ head/sys/kern/kern_timeout.c	Sat Jan 24 10:22:49 2009	(r187664)
@@ -37,6 +37,8 @@
 #include 
 __FBSDID("$FreeBSD$");
 
+#include "opt_kdtrace.h"
+
 #include 
 #include 
 #include 
@@ -49,10 +51,19 @@ __FBSDID("$FreeBSD$");
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
 
+SDT_PROVIDER_DEFINE(callout_execute);
+SDT_PROBE_DEFINE(callout_execute, kernel, , callout_start);
+SDT_PROBE_ARGTYPE(callout_execute, kernel, , callout_start, 0,
+    "struct callout *");
+SDT_PROBE_DEFINE(callout_execute, kernel, , callout_end); 
+SDT_PROBE_ARGTYPE(callout_execute, kernel, , callout_end, 0,
+    "struct callout *");
+
 static int avg_depth;
 SYSCTL_INT(_debug, OID_AUTO, to_avg_depth, CTLFLAG_RD, &avg_depth, 0,
     "Average number of items examined per softclock call. Units = 1/1000");
@@ -395,7 +406,11 @@ softclock(void *arg)
 				binuptime(&bt1);
 #endif
 				THREAD_NO_SLEEPING();
+				SDT_PROBE(callout_execute, kernel, ,
+				    callout_start, c, 0, 0, 0, 0);
 				c_func(c_arg);
+				SDT_PROBE(callout_execute, kernel, ,
+				    callout_end, c, 0, 0, 0, 0);
 				THREAD_SLEEPING_OK();
 #ifdef DIAGNOSTIC
 				binuptime(&bt2);

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 10:30:25 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id BAF1B106574B;
	Sat, 24 Jan 2009 10:30:25 +0000 (UTC)
	(envelope-from kris@FreeBSD.org)
Received: from dhcp-172-28-77-65.eur.corp.google.com (freefall.freebsd.org
	[IPv6:2001:4f8:fff6::28])
	by mx1.freebsd.org (Postfix) with ESMTP id 0ACF58FC0C;
	Sat, 24 Jan 2009 10:30:23 +0000 (UTC)
	(envelope-from kris@FreeBSD.org)
Message-ID: <497AEDBD.20603@FreeBSD.org>
Date: Sat, 24 Jan 2009 10:30:21 +0000
From: Kris Kennaway 
User-Agent: Thunderbird 2.0.0.19 (Macintosh/20081209)
MIME-Version: 1.0
To: Roman Divacky 
References: <200901201715.n0KHFCfw051198@svn.freebsd.org>
	<20090120171803.GA37717@freebsd.org>
In-Reply-To: <20090120171803.GA37717@freebsd.org>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org,
	src-committers@freebsd.org
Subject: Re: svn commit: r187475 - head/usr.bin/make
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 10:30:26 -0000

Roman Divacky wrote:
> On Tue, Jan 20, 2009 at 05:15:12PM +0000, Roman Divacky wrote:
>> Author: rdivacky
>> Date: Tue Jan 20 17:15:12 2009
>> New Revision: 187475
>> URL: http://svn.freebsd.org/changeset/base/187475
>>
>> Log:
>>   Remove inlining of functions that are used mostly in different object files.
>>   This gets rid of gnu89 style inlining. Also silence gcc by assigning two
>>   variables NULL. This lets use to remove NO_WERROR.
> 
> does anyone know of some Makefile that is cpu intensive and not io bound?
> it might make sense to turn on -finline-functions in make but it would
> be nice to be able to measure the speedup (if any)...
> 
> do we have some funny stuff written bsd make ? (computation of PI or
> something like that)

Look at the /usr/ports/Tools/portbuild/scripts/makeparallel script. 
This generates an enormous makefile from a port INDEX, and parsing it 
takes some time.  Rerunning this with the makefile in cache might be a 
test case for make(1) performance.

Kris

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 10:57:32 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7EFC0106566B;
	Sat, 24 Jan 2009 10:57:32 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 519F98FC17;
	Sat, 24 Jan 2009 10:57:32 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0OAvW0j069922;
	Sat, 24 Jan 2009 10:57:32 GMT (envelope-from rwatson@svn.freebsd.org)
Received: (from rwatson@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0OAvWC8069921;
	Sat, 24 Jan 2009 10:57:32 GMT (envelope-from rwatson@svn.freebsd.org)
Message-Id: <200901241057.n0OAvWC8069921@svn.freebsd.org>
From: Robert Watson 
Date: Sat, 24 Jan 2009 10:57:32 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187666 - head/sys/security/mac
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 10:57:33 -0000

Author: rwatson
Date: Sat Jan 24 10:57:32 2009
New Revision: 187666
URL: http://svn.freebsd.org/changeset/base/187666

Log:
  Begin to add SDT tracing of the MAC Framework: add policy modevent,
  register, and unregister hooks that give access to the mac_policy_conf
  for the policy.
  
  Obtained from:	TrustedBSD Project
  MFC after:	3 days

Modified:
  head/sys/security/mac/mac_framework.c

Modified: head/sys/security/mac/mac_framework.c
==============================================================================
--- head/sys/security/mac/mac_framework.c	Sat Jan 24 10:53:45 2009	(r187665)
+++ head/sys/security/mac/mac_framework.c	Sat Jan 24 10:57:32 2009	(r187666)
@@ -1,5 +1,5 @@
 /*-
- * Copyright (c) 1999-2002, 2006 Robert N. M. Watson
+ * Copyright (c) 1999-2002, 2006, 2009 Robert N. M. Watson
  * Copyright (c) 2001 Ilmar S. Habibulin
  * Copyright (c) 2001-2005 Networks Associates Technology, Inc.
  * Copyright (c) 2005-2006 SPARTA, Inc.
@@ -63,6 +63,7 @@
  * src/sys/security/mac_*.
  */
 
+#include "opt_kdtrace.h"
 #include "opt_mac.h"
 
 #include 
@@ -75,6 +76,7 @@ __FBSDID("$FreeBSD$");
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -83,6 +85,24 @@ __FBSDID("$FreeBSD$");
 #include 
 
 /*
+ * DTrace SDT provider for MAC.
+ */
+SDT_PROVIDER_DEFINE(mac);
+
+SDT_PROBE_DEFINE(mac, kernel, policy, modevent);
+SDT_PROBE_ARGTYPE(mac, kernel, policy, modevent, 0, "int");
+SDT_PROBE_ARGTYPE(mac, kernel, policy, modevent, 1,
+    "struct mac_policy_conf *mpc");
+
+SDT_PROBE_DEFINE(mac, kernel, policy, register);
+SDT_PROBE_ARGTYPE(mac, kernel, policy, register, 0,
+    "struct mac_policy_conf *");
+
+SDT_PROBE_DEFINE(mac, kernel, policy, unregister);
+SDT_PROBE_ARGTYPE(mac, kernel, policy, unregister, 0,
+    "struct mac_policy_conf *");
+
+/*
  * Root sysctl node for all MAC and MAC policy controls.
  */
 SYSCTL_NODE(_security, OID_AUTO, mac, CTLFLAG_RW, 0,
@@ -458,6 +478,7 @@ mac_policy_register(struct mac_policy_co
 		(*(mpc->mpc_ops->mpo_init))(mpc);
 	mac_policy_updateflags();
 
+	SDT_PROBE(mac, kernel, policy, register, mpc, 0, 0, 0, 0);
 	printf("Security policy loaded: %s (%s)\n", mpc->mpc_fullname,
 	    mpc->mpc_name);
 
@@ -505,6 +526,7 @@ mac_policy_unregister(struct mac_policy_
 
 	mac_policy_release_exclusive();
 
+	SDT_PROBE(mac, kernel, policy, unregister, mpc, 0, 0, 0, 0);
 	printf("Security policy unload: %s (%s)\n", mpc->mpc_fullname,
 	    mpc->mpc_name);
 
@@ -530,6 +552,7 @@ mac_policy_modevent(module_t mod, int ty
 	}
 #endif
 
+	SDT_PROBE(mac, kernel, policy, modevent, type, mpc, 0, 0, 0);
 	switch (type) {
 	case MOD_LOAD:
 		if (mpc->mpc_loadtime_flags & MPC_LOADTIME_FLAG_NOTLATE &&

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 13:15:46 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 32EC1106564A;
	Sat, 24 Jan 2009 13:15:46 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 1F2FF8FC0C;
	Sat, 24 Jan 2009 13:15:46 +0000 (UTC)
	(envelope-from rwatson@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0ODFkAd089748;
	Sat, 24 Jan 2009 13:15:46 GMT (envelope-from rwatson@svn.freebsd.org)
Received: (from rwatson@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0ODFjIa089746;
	Sat, 24 Jan 2009 13:15:45 GMT (envelope-from rwatson@svn.freebsd.org)
Message-Id: <200901241315.n0ODFjIa089746@svn.freebsd.org>
From: Robert Watson 
Date: Sat, 24 Jan 2009 13:15:45 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187667 - head/sys/security/mac
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 13:15:46 -0000

Author: rwatson
Date: Sat Jan 24 13:15:45 2009
New Revision: 187667
URL: http://svn.freebsd.org/changeset/base/187667

Log:
  Use __FBSDID() for $FreeBSD$ version strings in .c files.
  
  Obtained from:	TrustedBSD Project
  MFC after:	3 days

Modified:
  head/sys/security/mac/mac_audit.c
  head/sys/security/mac/mac_priv.c

Modified: head/sys/security/mac/mac_audit.c
==============================================================================
--- head/sys/security/mac/mac_audit.c	Sat Jan 24 10:57:32 2009	(r187666)
+++ head/sys/security/mac/mac_audit.c	Sat Jan 24 13:15:45 2009	(r187667)
@@ -35,10 +35,11 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- * $FreeBSD$
  */
 
+#include 
+__FBSDID("$FreeBSD$");
+
 #include 
 #include 
 #include 

Modified: head/sys/security/mac/mac_priv.c
==============================================================================
--- head/sys/security/mac/mac_priv.c	Sat Jan 24 10:57:32 2009	(r187666)
+++ head/sys/security/mac/mac_priv.c	Sat Jan 24 13:15:45 2009	(r187667)
@@ -25,14 +25,15 @@
  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * $FreeBSD$
  */
 
 /*
  * MAC checks for system privileges.
  */
 
+#include "sys/cdefs.h"
+__FBSDID("$FreeBSD$");
+
 #include "opt_mac.h"
 
 #include 

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 14:25:33 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 3E8291065670;
	Sat, 24 Jan 2009 14:25:33 +0000 (UTC)
	(envelope-from kostikbel@gmail.com)
Received: from mail.terabit.net.ua (mail.terabit.net.ua [195.137.202.147])
	by mx1.freebsd.org (Postfix) with ESMTP id D424B8FC19;
	Sat, 24 Jan 2009 14:25:32 +0000 (UTC)
	(envelope-from kostikbel@gmail.com)
Received: from skuns.zoral.com.ua ([91.193.166.194] helo=mail.zoral.com.ua)
	by mail.terabit.net.ua with esmtps (TLSv1:AES256-SHA:256)
	(Exim 4.63 (FreeBSD)) (envelope-from )
	id 1LQjNd-0002VG-Ap; Sat, 24 Jan 2009 16:21:01 +0200
Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua
	[10.1.1.148])
	by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id n0ODhlQh033737
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Sat, 24 Jan 2009 15:43:47 +0200 (EET)
	(envelope-from kostikbel@gmail.com)
Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1])
	by deviant.kiev.zoral.com.ua (8.14.3/8.14.3) with ESMTP id
	n0ODhlBh008329; Sat, 24 Jan 2009 15:43:47 +0200 (EET)
	(envelope-from kostikbel@gmail.com)
Received: (from kostik@localhost)
	by deviant.kiev.zoral.com.ua (8.14.3/8.14.3/Submit) id n0ODhlaY008328; 
	Sat, 24 Jan 2009 15:43:47 +0200 (EET)
	(envelope-from kostikbel@gmail.com)
X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to
	kostikbel@gmail.com using -f
Date: Sat, 24 Jan 2009 15:43:47 +0200
From: Kostik Belousov 
To: Tom Rhodes 
Message-ID: <20090124134347.GC6834@deviant.kiev.zoral.com.ua>
References: <200901240146.n0O1kkoZ059726@svn.freebsd.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="4jXrM3lyYWu4nBt5"
Content-Disposition: inline
In-Reply-To: <200901240146.n0O1kkoZ059726@svn.freebsd.org>
User-Agent: Mutt/1.4.2.3i
X-Virus-Scanned: ClamAV version 0.94.2,
	clamav-milter version 0.94.2 on skuns.kiev.zoral.com.ua
X-Virus-Status: Clean
X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00
	autolearn=ham version=3.2.5
X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on
	skuns.kiev.zoral.com.ua
X-Virus-Scanned: mail.terabit.net.ua 1LQjNd-0002VG-Ap
	04b2150e04b0429c89c2ea7a7ee5799a
X-Terabit: YES
Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org,
	src-committers@freebsd.org
Subject: Re: svn commit: r187661 - head/share/man/man7
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 14:25:33 -0000


--4jXrM3lyYWu4nBt5
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Sat, Jan 24, 2009 at 01:46:46AM +0000, Tom Rhodes wrote:
> Author: trhodes
> Date: Sat Jan 24 01:46:46 2009
> New Revision: 187661
> URL: http://svn.freebsd.org/changeset/base/187661
>=20
> Log:
>   Add a comment on kern.ipc.maxpipekva.
>  =20
>   PR:		105997
>   Reviewed by:	keramida
>=20
> Modified:
>   head/share/man/man7/tuning.7
>=20
> Modified: head/share/man/man7/tuning.7
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- head/share/man/man7/tuning.7	Sat Jan 24 01:34:22 2009	(r187660)
> +++ head/share/man/man7/tuning.7	Sat Jan 24 01:46:46 2009	(r187661)
> @@ -23,7 +23,7 @@
>  .\"
>  .\" $FreeBSD$
>  .\"
> -.Dd November 19, 2007
> +.Dd January 23, 2009
>  .Dt TUNING 7
>  .Os
>  .Sh NAME
> @@ -402,6 +402,16 @@ In this document we will only cover the=20
>  on the system.
>  .Pp
>  The
> +.Va kern.ipc.maxpipekva
> +loader tunable is used to set a hard limit on the amount of pageable
> +address space available.
The formulation is very misleading. This is *the* KVA for pipe buffers
mappings, not *a* pageable KVA.
> +This value is auto tuned by the system, but may require manual tuning
> +in a few rare cases.
> +Increasing this value to a higher setting, such as `25165824' might
> +improve performance on systems where pageable address space is
> +quickly exhausted.
Again, the space for mapping of the pipe buffers. Also, you should note
that exhausting of the space is not fatal, and cause pipes to fall back
to double-copy.

> +.Pp
> +The
>  .Va kern.ipc.shm_use_phys
>  sysctl defaults to 0 (off) and may be set to 0 (off) or 1 (on).
>  Setting

--4jXrM3lyYWu4nBt5
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (FreeBSD)

iEYEARECAAYFAkl7GxMACgkQC3+MBN1Mb4ibhQCgiPu4r80BcBhsG4/ut3qCyze9
QT4An0wIBs/DfN28FxuxgTerNDXU1tZf
=Jixi
-----END PGP SIGNATURE-----

--4jXrM3lyYWu4nBt5--

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 15:33:09 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 996CA106566C;
	Sat, 24 Jan 2009 15:33:09 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 6DA108FC23;
	Sat, 24 Jan 2009 15:33:09 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0OFX9w3092166;
	Sat, 24 Jan 2009 15:33:09 GMT (envelope-from bz@svn.freebsd.org)
Received: (from bz@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0OFX95R092165;
	Sat, 24 Jan 2009 15:33:09 GMT (envelope-from bz@svn.freebsd.org)
Message-Id: <200901241533.n0OFX95R092165@svn.freebsd.org>
From: "Bjoern A. Zeeb" 
Date: Sat, 24 Jan 2009 15:33:09 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187668 - head/share/man/man5
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 15:33:10 -0000

Author: bz
Date: Sat Jan 24 15:33:09 2009
New Revision: 187668
URL: http://svn.freebsd.org/changeset/base/187668

Log:
  Change IP addresses/prefixes to be from "Test-Net" (IPv4 documentation
  prefix 192.0.2.0/24) rather than from private-use networks.
  
  MFC after:	1 week

Modified:
  head/share/man/man5/rc.conf.5

Modified: head/share/man/man5/rc.conf.5
==============================================================================
--- head/share/man/man5/rc.conf.5	Sat Jan 24 13:15:45 2009	(r187667)
+++ head/share/man/man5/rc.conf.5	Sat Jan 24 15:33:09 2009	(r187668)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd January 9, 2009
+.Dd January 24, 2009
 .Dt RC.CONF 5
 .Os
 .Sh NAME
@@ -1089,9 +1089,9 @@ One can configure more than one IPv4 add
 variable.
 One or more IP addresses must be provided in Classless Inter-Domain
 Routing (CIDR) address notation, whose last byte can be a range like
-192.168.0.5-23/24.
-In this case the address 192.168.0.5 will be configured with the
-netmask /24 and the addresses 192.168.0.6 to 192.168.0.23 with
+192.0.2.5-23/24.
+In this case the address 192.0.2.5 will be configured with the
+netmask /24 and the addresses 192.0.2.6 to 192.0.2.23 with
 the non-conflicting netmask /32 as explained in the
 .Xr ifconfig 8
 alias section.
@@ -1099,7 +1099,7 @@ With the interface in question being
 .Li ed0 ,
 an example could look like:
 .Bd -literal
-ipv4_addrs_ed0="192.168.0.1/24 192.168.1.1-5/28"
+ipv4_addrs_ed0="192.0.2.129/27 192.0.2.1-5/28"
 .Ed
 .Pp
 It is also possible to add IP alias entries using
@@ -1233,7 +1233,7 @@ variable.
 It is also possible to rename interface by doing:
 .Bd -literal
 ifconfig_ed0_name="net0"
-ifconfig_net0="inet 10.0.0.1 netmask 0xffff0000"
+ifconfig_net0="inet 192.0.2.1 netmask 0xffffff00"
 .Ed
 .It Va ipv6_network_interfaces
 .Pq Vt str
@@ -3309,7 +3309,7 @@ Assuming that the jail in question was n
 you would have the following dependent variables:
 .Bd -literal
 jail_vjail_hostname="jail.example.com"
-jail_vjail_ip="192.168.1.100"
+jail_vjail_ip="192.0.2.100"
 jail_vjail_rootdir="/var/jails/vjail/root"
 .Ed
 .Pp

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 15:53:37 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id A2D3F106564A;
	Sat, 24 Jan 2009 15:53:37 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 9100C8FC16;
	Sat, 24 Jan 2009 15:53:37 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0OFrbVS092530;
	Sat, 24 Jan 2009 15:53:37 GMT (envelope-from bz@svn.freebsd.org)
Received: (from bz@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0OFrbWM092529;
	Sat, 24 Jan 2009 15:53:37 GMT (envelope-from bz@svn.freebsd.org)
Message-Id: <200901241553.n0OFrbWM092529@svn.freebsd.org>
From: "Bjoern A. Zeeb" 
Date: Sat, 24 Jan 2009 15:53:37 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187669 - head/usr.sbin/jail
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 15:53:38 -0000

Author: bz
Date: Sat Jan 24 15:53:37 2009
New Revision: 187669
URL: http://svn.freebsd.org/changeset/base/187669

Log:
  Update the description of the '-h' option wrt to primary addresses
  per address family and add a reference to the ip-addresses option.
  
  MFC after:	1 week

Modified:
  head/usr.sbin/jail/jail.8

Modified: head/usr.sbin/jail/jail.8
==============================================================================
--- head/usr.sbin/jail/jail.8	Sat Jan 24 15:33:09 2009	(r187668)
+++ head/usr.sbin/jail/jail.8	Sat Jan 24 15:53:37 2009	(r187669)
@@ -33,7 +33,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd January 11, 2009
+.Dd January 24, 2009
 .Dt JAIL 8
 .Os
 .Sh NAME
@@ -63,9 +63,10 @@ to the list of
 for this prison.
 This may affect default address selection for outgoing IPv4 connections
 of prisons.
-The address first returned by the resolver for the IPv4 address family
-will be used as default.
-For IPv6 source address selection is done by a well defined algorithm.
+The address first returned by the resolver for each address family
+will be used as primary address. See
+.Va ip-addresses
+further down for details.
 .It Fl i
 Output the jail identifier of the newly created jail.
 .It Fl n Ar jailname

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 15:56:44 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id AA684106566B;
	Sat, 24 Jan 2009 15:56:44 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 98F9A8FC1A;
	Sat, 24 Jan 2009 15:56:44 +0000 (UTC) (envelope-from bz@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0OFuikv092640;
	Sat, 24 Jan 2009 15:56:44 GMT (envelope-from bz@svn.freebsd.org)
Received: (from bz@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0OFui7o092639;
	Sat, 24 Jan 2009 15:56:44 GMT (envelope-from bz@svn.freebsd.org)
Message-Id: <200901241556.n0OFui7o092639@svn.freebsd.org>
From: "Bjoern A. Zeeb" 
Date: Sat, 24 Jan 2009 15:56:44 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187670 - head/usr.sbin/jail
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 15:56:45 -0000

Author: bz
Date: Sat Jan 24 15:56:44 2009
New Revision: 187670
URL: http://svn.freebsd.org/changeset/base/187670

Log:
  New sentence starts on a new line.
  
  MFC after:	2 week

Modified:
  head/usr.sbin/jail/jail.8

Modified: head/usr.sbin/jail/jail.8
==============================================================================
--- head/usr.sbin/jail/jail.8	Sat Jan 24 15:53:37 2009	(r187669)
+++ head/usr.sbin/jail/jail.8	Sat Jan 24 15:56:44 2009	(r187670)
@@ -64,7 +64,8 @@ for this prison.
 This may affect default address selection for outgoing IPv4 connections
 of prisons.
 The address first returned by the resolver for each address family
-will be used as primary address. See
+will be used as primary address.
+See
 .Va ip-addresses
 further down for details.
 .It Fl i

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 18:20:16 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 1B79E106566B;
	Sat, 24 Jan 2009 18:20:16 +0000 (UTC) (envelope-from ed@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 0A51A8FC0A;
	Sat, 24 Jan 2009 18:20:16 +0000 (UTC) (envelope-from ed@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0OIKFNN095244;
	Sat, 24 Jan 2009 18:20:15 GMT (envelope-from ed@svn.freebsd.org)
Received: (from ed@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0OIKFs9095243;
	Sat, 24 Jan 2009 18:20:15 GMT (envelope-from ed@svn.freebsd.org)
Message-Id: <200901241820.n0OIKFs9095243@svn.freebsd.org>
From: Ed Schouten 
Date: Sat, 24 Jan 2009 18:20:15 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187671 - head/sys/kern
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 18:20:16 -0000

Author: ed
Date: Sat Jan 24 18:20:15 2009
New Revision: 187671
URL: http://svn.freebsd.org/changeset/base/187671

Log:
  Mark kern.ttys as MPSAFE.
  
  sysctl now allows Giantless calls, so make kern.ttys use this. If it
  needs Giant, it locks the proper TTY anyway.

Modified:
  head/sys/kern/tty.c

Modified: head/sys/kern/tty.c
==============================================================================
--- head/sys/kern/tty.c	Sat Jan 24 15:56:44 2009	(r187670)
+++ head/sys/kern/tty.c	Sat Jan 24 18:20:15 2009	(r187671)
@@ -1053,7 +1053,7 @@ sysctl_kern_ttys(SYSCTL_HANDLER_ARGS)
 	return (error);
 }
 
-SYSCTL_PROC(_kern, OID_AUTO, ttys, CTLTYPE_OPAQUE|CTLFLAG_RD,
+SYSCTL_PROC(_kern, OID_AUTO, ttys, CTLTYPE_OPAQUE|CTLFLAG_RD|CTLFLAG_NOLOCK,
 	0, 0, sysctl_kern_ttys, "S,xtty", "List of TTYs");
 
 /*

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 18:23:19 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id A8B85106566B;
	Sat, 24 Jan 2009 18:23:19 +0000 (UTC) (envelope-from ed@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 7D4528FC25;
	Sat, 24 Jan 2009 18:23:19 +0000 (UTC) (envelope-from ed@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0OINJjo095336;
	Sat, 24 Jan 2009 18:23:19 GMT (envelope-from ed@svn.freebsd.org)
Received: (from ed@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0OINJAD095335;
	Sat, 24 Jan 2009 18:23:19 GMT (envelope-from ed@svn.freebsd.org)
Message-Id: <200901241823.n0OINJAD095335@svn.freebsd.org>
From: Ed Schouten 
Date: Sat, 24 Jan 2009 18:23:19 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187672 - head/sys/geom
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 18:23:20 -0000

Author: ed
Date: Sat Jan 24 18:23:19 2009
New Revision: 187672
URL: http://svn.freebsd.org/changeset/base/187672

Log:
  Remove unused unrhdr from GEOM character device module.
  
  Now that make_dev() doesn't require unit numbers to be unique, there is
  no need to use an unrhdr here to generate the numbers. Remove the entire
  init-routine, because it is optional.

Modified:
  head/sys/geom/geom_dev.c

Modified: head/sys/geom/geom_dev.c
==============================================================================
--- head/sys/geom/geom_dev.c	Sat Jan 24 18:20:15 2009	(r187671)
+++ head/sys/geom/geom_dev.c	Sat Jan 24 18:23:19 2009	(r187672)
@@ -72,25 +72,14 @@ static struct cdevsw g_dev_cdevsw = {
 
 static g_taste_t g_dev_taste;
 static g_orphan_t g_dev_orphan;
-static g_init_t		g_dev_init;
 
 static struct g_class g_dev_class	= {
 	.name = "DEV",
 	.version = G_VERSION,
 	.taste = g_dev_taste,
 	.orphan = g_dev_orphan,
-	.init = g_dev_init,
 };
 
-static struct unrhdr *unithdr;	/* Locked by topology */
-
-static void
-g_dev_init(struct g_class *mp)
-{
-
-	unithdr = new_unrhdr(0, INT_MAX, NULL);
-}
-
 void
 g_dev_print(void)
 {
@@ -126,7 +115,6 @@ g_dev_taste(struct g_class *mp, struct g
 	struct g_consumer *cp;
 	int error;
 	struct cdev *dev;
-	u_int unit;
 
 	g_trace(G_T_TOPOLOGY, "dev_taste(%s,%s)", mp->name, pp->name);
 	g_topology_assert();
@@ -138,8 +126,7 @@ g_dev_taste(struct g_class *mp, struct g
 	error = g_attach(cp, pp);
 	KASSERT(error == 0,
 	    ("g_dev_taste(%s) failed to g_attach, err=%d", pp->name, error));
-	unit = alloc_unr(unithdr);
-	dev = make_dev(&g_dev_cdevsw, unit,
+	dev = make_dev(&g_dev_cdevsw, 0,
 	    UID_ROOT, GID_OPERATOR, 0640, gp->name);
 	if (pp->flags & G_PF_CANDELETE)
 		dev->si_flags |= SI_CANDELETE;
@@ -432,7 +419,6 @@ g_dev_orphan(struct g_consumer *cp)
 {
 	struct g_geom *gp;
 	struct cdev *dev;
-	u_int unit;
 
 	g_topology_assert();
 	gp = cp->geom;
@@ -444,9 +430,7 @@ g_dev_orphan(struct g_consumer *cp)
 		set_dumper(NULL);
 
 	/* Destroy the struct cdev *so we get no more requests */
-	unit = dev2unit(dev);
 	destroy_dev(dev);
-	free_unr(unithdr, unit);
 
 	/* Wait for the cows to come home */
 	while (cp->nstart != cp->nend)

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 18:57:22 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id D32501065675;
	Sat, 24 Jan 2009 18:57:22 +0000 (UTC)
	(envelope-from antoine@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id C03EF8FC1D;
	Sat, 24 Jan 2009 18:57:22 +0000 (UTC)
	(envelope-from antoine@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0OIvMw1095941;
	Sat, 24 Jan 2009 18:57:22 GMT (envelope-from antoine@svn.freebsd.org)
Received: (from antoine@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0OIvMxY095940;
	Sat, 24 Jan 2009 18:57:22 GMT (envelope-from antoine@svn.freebsd.org)
Message-Id: <200901241857.n0OIvMxY095940@svn.freebsd.org>
From: Antoine Brodin 
Date: Sat, 24 Jan 2009 18:57:22 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187673 - in stable/7/sys: . contrib/pf dev/ath/ath_hal
	dev/cxgb net
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 18:57:23 -0000

Author: antoine
Date: Sat Jan 24 18:57:22 2009
New Revision: 187673
URL: http://svn.freebsd.org/changeset/base/187673

Log:
  MFC r181137 to stable/7:
    Remove trailing ';' in BPFD_LOCK_ASSERT macro.
  
    MFC after:      1 month
    X-MFC-to:       stable/7, stable/6 has it right

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/ath/ath_hal/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)
  stable/7/sys/net/bpfdesc.h

Modified: stable/7/sys/net/bpfdesc.h
==============================================================================
--- stable/7/sys/net/bpfdesc.h	Sat Jan 24 18:23:19 2009	(r187672)
+++ stable/7/sys/net/bpfdesc.h	Sat Jan 24 18:57:22 2009	(r187673)
@@ -102,7 +102,7 @@ struct bpf_d {
 
 #define BPFD_LOCK(bd)		mtx_lock(&(bd)->bd_mtx)
 #define BPFD_UNLOCK(bd)		mtx_unlock(&(bd)->bd_mtx)
-#define BPFD_LOCK_ASSERT(bd)	mtx_assert(&(bd)->bd_mtx, MA_OWNED);
+#define BPFD_LOCK_ASSERT(bd)	mtx_assert(&(bd)->bd_mtx, MA_OWNED)
 
 /* Test whether a BPF is ready for read(). */
 #define	bpf_ready(bd)						 \

From owner-svn-src-all@FreeBSD.ORG  Sat Jan 24 19:22:05 2009
Return-Path: 
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id E2842106567A;
	Sat, 24 Jan 2009 19:22:05 +0000 (UTC)
	(envelope-from antoine@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id CF4478FC12;
	Sat, 24 Jan 2009 19:22:05 +0000 (UTC)
	(envelope-from antoine@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0OJM5uh096486;
	Sat, 24 Jan 2009 19:22:05 GMT (envelope-from antoine@svn.freebsd.org)
Received: (from antoine@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0OJM5He096485;
	Sat, 24 Jan 2009 19:22:05 GMT (envelope-from antoine@svn.freebsd.org)
Message-Id: <200901241922.n0OJM5He096485@svn.freebsd.org>
From: Antoine Brodin 
Date: Sat, 24 Jan 2009 19:22:05 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
X-SVN-Group: stable-7
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r187674 - in stable/7/sys: . contrib/pf dev/ath/ath_hal
	dev/cxgb vm
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for "
	user" and " projects" \)" 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Sat, 24 Jan 2009 19:22:06 -0000

Author: antoine
Date: Sat Jan 24 19:22:05 2009
New Revision: 187674
URL: http://svn.freebsd.org/changeset/base/187674

Log:
  MFC r182047 to stable/7:
    Remove unused variable nosleepwithlocks.
  
    PR:             126609
    Submitted by:   Mateusz Guzik
    MFC after:      1 month
    X-MFC:          to stable/7 only, this variable is still used in stable/6
  Reviewed by:	rwatson

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/ath/ath_hal/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)
  stable/7/sys/vm/uma_core.c

Modified: stable/7/sys/vm/uma_core.c
==============================================================================
--- stable/7/sys/vm/uma_core.c	Sat Jan 24 18:57:22 2009	(r187673)
+++ stable/7/sys/vm/uma_core.c	Sat Jan 24 19:22:05 2009	(r187674)
@@ -249,13 +249,6 @@ void uma_print_stats(void);
 static int sysctl_vm_zone_count(SYSCTL_HANDLER_ARGS);
 static int sysctl_vm_zone_stats(SYSCTL_HANDLER_ARGS);
 
-#ifdef WITNESS
-static int nosleepwithlocks = 1;
-#else
-static int nosleepwithlocks = 0;
-#endif
-SYSCTL_INT(_debug, OID_AUTO, nosleepwithlocks, CTLFLAG_RW, &nosleepwithlocks,
-    0, "Convert M_WAITOK to M_NOWAIT to avoid lock-held-across-sleep paths");
 SYSINIT(uma_startup3, SI_SUB_VM_CONF, SI_ORDER_SECOND, uma_startup3, NULL);
 
 SYSCTL_PROC(_vm, OID_AUTO, zone_count, CTLFLAG_RD|CTLTYPE_INT,