From 112102f8f6823fc3c0802cf6d5da73d112fa9693 Mon Sep 17 00:00:00 2001 From: eadler Date: Sun, 1 Sep 2013 19:27:32 +0000 Subject: Add support for the BCM20702A0 chipset, ASUS USB-BT400. PR: kern/181728 Submitted by: rakuco --- sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/netgraph') diff --git a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c index 2009cca..edbd32c 100644 --- a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c +++ b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c @@ -494,6 +494,7 @@ static const STRUCT_USB_HOST_ID ubt_devs[] = /* Broadcom BCM20702A0 */ { USB_VPI(USB_VENDOR_ASUS, 0x17b5, 0) }, + { USB_VPI(USB_VENDOR_ASUS, 0x17cb, 0) }, { USB_VPI(USB_VENDOR_LITEON, 0x2003, 0) }, { USB_VPI(USB_VENDOR_FOXCONN, 0xe042, 0) }, { USB_VPI(USB_VENDOR_DELL, 0x8197, 0) }, -- cgit v1.1 From 6246a085996b90b2d917d31003b5c534a10da6fd Mon Sep 17 00:00:00 2001 From: glebius Date: Wed, 4 Sep 2013 10:17:50 +0000 Subject: Make default cache size more modern. Requested by: Slawa Olhovchenkov --- sys/netgraph/netflow/ng_netflow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netgraph') diff --git a/sys/netgraph/netflow/ng_netflow.h b/sys/netgraph/netflow/ng_netflow.h index 875a75d..0d708b7 100644 --- a/sys/netgraph/netflow/ng_netflow.h +++ b/sys/netgraph/netflow/ng_netflow.h @@ -416,7 +416,7 @@ struct netflow { * indexed by hash hash. Each hash element consist of tailqueue * head and mutex to protect this element. */ -#define CACHESIZE (65536*4) +#define CACHESIZE (65536*16) #define CACHELOWAT (CACHESIZE * 3/4) #define CACHEHIGHWAT (CACHESIZE * 9/10) uma_zone_t zone; -- cgit v1.1