Author: emax
Date: Wed Sep 8 20:00:27 2010
New Revision: 212335
URL: http://svn.freebsd.org/changeset/base/212335
Log:
Make sure to only pickup hid_input items when parsing input reports.
As it turns out, libusbhid(3) also picks up hic_collection items even
though we explicitly requested hi
Author: emax
Date: Tue Jan 26 00:38:56 2010
New Revision: 202995
URL: http://svn.freebsd.org/changeset/base/202995
Log:
MFC SVN rev 198492
Fix typo in bluetooth.3
Do not use reserved C++ keyword "new"
Modified:
stable/8/lib/libbluetooth/bluetooth.3
stable/8/lib/libbluetooth/bluetooth
Author: emax
Date: Mon Feb 8 18:51:24 2010
New Revision: 203676
URL: http://svn.freebsd.org/changeset/base/203676
Log:
Introduce new rc.conf variable firewall_coscripts. It can be used to
specify list of executables and/or rc scripts that should be executed
after firewall starts/stops.
Author: emax
Date: Wed Dec 24 00:00:52 2008
New Revision: 186466
URL: http://svn.freebsd.org/changeset/base/186466
Log:
Change message severity level from WARN to INFO. This should reduce
amount of messages sent to syslog
MFC after:1 week
Modified:
head/sys/netgraph/bluetooth/hci/n
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!
W
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
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
Author: emax
Date: Mon Jan 26 20:59:41 2009
New Revision: 187741
URL: http://svn.freebsd.org/changeset/base/187741
Log:
Clean up ng_ubt2. Get rid of excessive use of NG_NODE_REF/UNREF().
Make detach() completely synchronous. Properly handle stalled USB
transfers (use internal mechanism inste
Author: emax
Date: Wed Jan 28 20:04:39 2009
New Revision: 187865
URL: http://svn.freebsd.org/changeset/base/187865
Log:
Make ng_ubt2 (aka usb2_bluetooth_ng) driver only attach as "generic" driver
Reviewed by: HPS
Modified:
head/sys/dev/usb2/bluetooth/ng_ubt2.c
Modified: head/sys/dev/us
@@
*/
/*-
- * Copyright (c) 2003 Maksim Yevmenkin
+ * Copyright (c) 2003-2009 Maksim Yevmenkin
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -54,107 +54,85 @@
#defineUBTBCMFW_CONFIG_NO 1 /* Config number */
#define
On Wed, Jan 28, 2009 at 12:18 PM, Andrew Thompson wrote:
> On Wed, Jan 28, 2009 at 08:06:02PM +0000, Maksim Yevmenkin wrote:
>> Author: emax
>> Date: Wed Jan 28 20:06:02 2009
>> New Revision: 187866
>> URL: http://svn.freebsd.org/changeset/base/187866
>>
&
Author: emax
Date: Fri Jan 30 22:23:21 2009
New Revision: 187938
URL: http://svn.freebsd.org/changeset/base/187938
Log:
Add btpand(8) daemon from NetBSD. This daemon provides support for
Bluetooth Network Access Point (NAP), Group Ad-hoc Network (GN) and
Personal Area Network User (PANU) pro
Author: emax
Date: Mon Feb 2 18:08:22 2009
New Revision: 188013
URL: http://svn.freebsd.org/changeset/base/188013
Log:
Fix client mode. Pick up service availability changes.
Obtained from:NetBSD
MFC after:1 month
Modified:
head/usr.sbin/bluetooth/btpand/btpand.c
head/usr
Author: emax
Date: Mon Feb 2 18:10:51 2009
New Revision: 188014
URL: http://svn.freebsd.org/changeset/base/188014
Log:
Hook up btpand(8) to the build
MFC after:1 month
Modified:
head/usr.sbin/bluetooth/Makefile
Modified: head/usr.sbin/bluetooth/Makefile
Author: emax
Date: Mon Feb 2 21:34:04 2009
New Revision: 188030
URL: http://svn.freebsd.org/changeset/base/188030
Log:
Properly retun error core from kbdmux_modevent()
Reported by: Christoph Mallon < christoph -dot- mallon -at- gmx -dot- de >
MFC after:1 week
Modified:
head/sys/d
Author: emax
Date: Sun Nov 16 22:39:04 2008
New Revision: 185013
URL: http://svn.freebsd.org/changeset/base/185013
Log:
More locking for syscons(4). This should prevent races with sckbdevent().
PR: kern/127446
Submitted by: Eygene Ryabinkin rea-fbsd at codelabs dot ru
Modified:
Author: emax
Date: Mon Nov 17 20:33:13 2008
New Revision: 185028
URL: http://svn.freebsd.org/changeset/base/185028
Log:
Undo revision 185013 until better solution is found.
Pointed out by: bde
Modified:
head/sys/dev/syscons/syscons.c
Modified: head/sys/dev/syscons/syscons.c
==
Author: emax
Date: Tue Nov 25 21:54:42 2008
New Revision: 185320
URL: http://svn.freebsd.org/changeset/base/185320
Log:
Straighten out those pesky SDP records for the Bluetooth
Service Discovery Application Profile.
Discussed with: Iain Hibbert of NetBSD plunky at rya dash online do
Author: emax
Date: Tue Feb 16 19:00:47 2010
New Revision: 203962
URL: http://svn.freebsd.org/changeset/base/203962
Log:
MFC: r203676
Introduce new rc.conf variable firewall_coscripts. It can be used to
specify list of executables and/or rc scripts that should be executed
after firewall
Author: emax
Date: Thu Feb 25 18:02:52 2010
New Revision: 204325
URL: http://svn.freebsd.org/changeset/base/204325
Log:
MFC: r203676
Introduce new rc.conf variable firewall_coscripts. It can be used to
specify list of executables and/or rc scripts that should be executed
after firewall
Author: emax
Date: Mon Mar 1 18:58:18 2010
New Revision: 204526
URL: http://svn.freebsd.org/changeset/base/204526
Log:
Use start/stop instead of quietstart/quietstop. Pointy hat goes to me.
Pointed out by: jhb
Modified:
stable/7/etc/rc.d/ipfw
Modified: stable/7/etc/rc.d/ipfw
On Mon, Mar 1, 2010 at 10:46 AM, John Baldwin wrote:
> On Thursday 25 February 2010 1:02:52 pm Maksim Yevmenkin wrote:
>> Author: emax
>> Date: Thu Feb 25 18:02:52 2010
>> New Revision: 204325
>> URL: http://svn.freebsd.org/changeset/base/204325
>>
>> Log:
Author: emax
Date: Thu May 14 17:10:19 2009
New Revision: 192113
URL: http://svn.freebsd.org/changeset/base/192113
Log:
Avoid floating point arithmetic while calculating iquiry length.
Submitted by: Iain Hibbert < plunky -at- rya-online -dot- net >
MFC after:1 week
Modified:
head/l
Author: emax
Date: Mon May 18 16:00:18 2009
New Revision: 192308
URL: http://svn.freebsd.org/changeset/base/192308
Log:
Teach btpand(8) to recognized Bluetooth device node names.
Tested by:Daniel O'Connor
MFC after:3 days
Modified:
head/usr.sbin/bluetooth/btpand/btpand.c
Modi
Author: emax
Date: Fri May 29 20:22:56 2009
New Revision: 193060
URL: http://svn.freebsd.org/changeset/base/193060
Log:
MFC r192308
Teach btpand(8) to recognized Bluetooth device node names.
Tested by:Daniel O'Connor
Modified:
stable/7/usr.sbin/bluetooth/btpand/ (props change
Author: emax
Date: Fri May 29 20:25:03 2009
New Revision: 193061
URL: http://svn.freebsd.org/changeset/base/193061
Log:
MFC r192113
Avoid floating point arithmetic while calculating iquiry length.
Submitted by: Iain Hibbert < plunky -at- rya-online -dot- net >
Modified:
stable/7/lib
Author: emax
Date: Thu Oct 23 15:16:40 2014
New Revision: 273548
URL: https://svnweb.freebsd.org/changeset/base/273548
Log:
Change the code to use the openpty(3) API which uses the pts(4) driver
instead of the pty(4) driver.
PR: 184597
Submitted by: tobias.rehbein
MFC after:
Author: emax
Date: Thu Nov 6 16:32:00 2014
New Revision: 274182
URL: https://svnweb.freebsd.org/changeset/base/274182
Log:
MFC r273548
Change the code to use the openpty(3) API which uses the pts(4) driver
instead of the pty(4) driver.
PR: 184597
Submitted by: tobias.reh
Author: emax
Date: Thu Dec 11 18:08:54 2014
New Revision: 275709
URL: https://svnweb.freebsd.org/changeset/base/275709
Log:
handle "Kana" and "Eisu" keys on Apple Wireless Keyboard (JIS)
PR: 187470
Submitted by: naito.yuichiro
MFC after:1 week
Modified:
head/usr.sbin/bl
Author: emax
Date: Wed Jan 7 20:01:15 2015
New Revision: 276791
URL: https://svnweb.freebsd.org/changeset/base/276791
Log:
MFC r275709
handle "Kana" and "Eisu" keys on Apple Wireless Keyboard (JIS)
PR: 187470
Submitted by: naito.yuichiro
Modified:
stable/10/usr.sbin/blu
Benedict Christopher Reuschling born in Darmstadt,
Germany, 1981
09/12 William C. Fumerola II born in Detroit, Michigan,
United States, 1981
09/14 Matthew Seaman born in Bristol, United Kingdom,
1965
+09/16 Maksim Yevmenkin born in Taganrog, USSR, 1974
09/15 Aleksandr Rybalko born in
Reuschling born in Darmstadt,
Germany, 1981
09/12 William C. Fumerola II born in Detroit, Michigan,
United States, 1981
09/14 Matthew Seaman born in Bristol, United Kingdom,
1965
-09/16 Maksim Yevmenkin born in Taganrog, USSR, 1974
09/15 Aleksandr Rybalko born in Odessa, Ukraine, 1977
09/15
Author: emax
Date: Wed Dec 23 16:32:04 2015
New Revision: 292660
URL: https://svnweb.freebsd.org/changeset/base/292660
Log:
- grab ng_btsocket_l2cap_sockets_mtx lock in
ng_btsocket_l2cap_process_l2ca_enc_change()
before calling ng_btsocket_l2cap_pcb_by_cid();
- handle possible NULL
Author: emax
Date: Thu Nov 5 16:08:38 2015
New Revision: 290395
URL: https://svnweb.freebsd.org/changeset/base/290395
Log:
MFC r289637
check boundaries while parsing SDP responses
Reported by: hps
Reviewed by: hps
Modified:
stable/10/usr.sbin/bluetooth/sdpcontrol/search.c
Direc
Author: emax
Date: Tue Oct 20 18:01:08 2015
New Revision: 289637
URL: https://svnweb.freebsd.org/changeset/base/289637
Log:
check boundaries while parsing SDP responses
Reported by: hps
Reviewed by: hps
MFC after:1 week
Modified:
head/usr.sbin/bluetooth/sdpcontrol/search.c
Mod
Author: emax
Date: Wed Mar 23 22:07:13 2016
New Revision: 297217
URL: https://svnweb.freebsd.org/changeset/base/297217
Log:
fix incorrect usage of hid_set_data() which causes crash
in bthidd(8) on amd64 WITH_SSP builds
Submitted by: rakuco
Reviewed by: rakuco
Tested by:rakuco
M
Author: emax
Date: Fri Aug 30 16:35:31 2019
New Revision: 351626
URL: https://svnweb.freebsd.org/changeset/base/351626
Log:
avoid holding PCB mutex during copyin/copyout()
Reported by: imp, mms dot vanbreukelingen at gmail dot com
Reviewed by: imp
Modified:
head/sys/netgraph/bluetoot
101 - 137 of 137 matches
Mail list logo