Mon Jul 29 06:47:57 2013 UTC ()
Ticket #910 fixes PR#47743.


(msaitoh)
diff -r1.1.2.19 -r1.1.2.20 src/doc/CHANGES-6.2

cvs diff -r1.1.2.19 -r1.1.2.20 src/doc/Attic/CHANGES-6.2 (expand / switch to unified diff)

--- src/doc/Attic/CHANGES-6.2 2013/07/29 06:13:32 1.1.2.19
+++ src/doc/Attic/CHANGES-6.2 2013/07/29 06:47:57 1.1.2.20
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: CHANGES-6.2,v 1.1.2.19 2013/07/29 06:13:32 msaitoh Exp $ 1# $NetBSD: CHANGES-6.2,v 1.1.2.20 2013/07/29 06:47:57 msaitoh Exp $
2 2
3A complete list of changes from the 6.1 release until the 6.2 release: 3A complete list of changes from the 6.1 release until the 6.2 release:
4 4
5doc/README.files patched by hand 5doc/README.files patched by hand
6gnu/usr.bin/groff/tmac/mdoc.local patched by hand 6gnu/usr.bin/groff/tmac/mdoc.local patched by hand
7sys/sys/param.h patched by hand 7sys/sys/param.h patched by hand
8 8
9 Welcome to 6.1_STABLE! 9 Welcome to 6.1_STABLE!
10 10
11sys/dev/usb/usb_quirks.c 1.78 11sys/dev/usb/usb_quirks.c 1.78
12sys/dev/usb/usbdevs 1.639 12sys/dev/usb/usbdevs 1.639
13sys/dev/usb/usbdevs.h regen 13sys/dev/usb/usbdevs.h regen
14sys/dev/usb/usbdevs_data.h regen 14sys/dev/usb/usbdevs_data.h regen
@@ -342,24 +342,25 @@ sys/net/route.c 1.127 @@ -342,24 +342,25 @@ sys/net/route.c 1.127
342 is that if a destination address is found, then the interface chosen 342 is that if a destination address is found, then the interface chosen
343 for the route is that of the destination. This does not work for 343 for the route is that of the destination. This does not work for
344 link-level addresses since the ppp interface does not arp (uses 344 link-level addresses since the ppp interface does not arp (uses
345 link_rtrequest, not arp_rtrequest), so the bit is never set. The easy 345 link_rtrequest, not arp_rtrequest), so the bit is never set. The easy
346 solution here is to check that the gateway is a link address, and use 346 solution here is to check that the gateway is a link address, and use
347 the interface which we chose for the link address as opposed to the 347 the interface which we chose for the link address as opposed to the
348 interface that routes to the destination. This restores the previous 348 interface that routes to the destination. This restores the previous
349 behavior, but is it correct? 349 behavior, but is it correct?
350 [christos, ticket #909] 350 [christos, ticket #909]
351 351
352sys/kern/subr_disk_mbr.c 1.46 352sys/kern/subr_disk_mbr.c 1.46
353 353
354 If the MBR is a protective MBR, don't bother looking at it. 354 If the MBR is a protective MBR, don't bother looking at it.
 355 Fixes PR#47743.
355 [matt, ticket #910] 356 [matt, ticket #910]
356 357
357usr.bin/netstat/inet.c 1.102-1.03 358usr.bin/netstat/inet.c 1.102-1.03
358usr.bin/netstat/inet6.c 1.61-1.62 359usr.bin/netstat/inet6.c 1.61-1.62
359usr.bin/netstat/main.c 1.86 360usr.bin/netstat/main.c 1.86
360usr.bin/netstat/netstat.h 1.47 361usr.bin/netstat/netstat.h 1.47
361 362
362 Don't use -P as a kmem printer, verify that the address points to a 363 Don't use -P as a kmem printer, verify that the address points to a
363 pcb first! 364 pcb first!
364 Not all pointers are 64bit - use uintptr_t instead of uint64_t. 365 Not all pointers are 64bit - use uintptr_t instead of uint64_t.
365 [christos, ticket #912] 366 [christos, ticket #912]