Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
289eac22
Commit
289eac22
authored
Jun 17, 2003
by
Oliver Neukum
Committed by
Greg Kroah-Hartman
Jun 17, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] USB: convert kaweth to usb_buffer_alloc
- switch to usb_buffer_alloc
parent
1837f6a9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
7 deletions
+39
-7
drivers/usb/net/kaweth.c
drivers/usb/net/kaweth.c
+39
-7
No files found.
drivers/usb/net/kaweth.c
View file @
289eac22
...
...
@@ -226,12 +226,16 @@ struct kaweth_device
struct
urb
*
tx_urb
;
struct
urb
*
irq_urb
;
dma_addr_t
intbufferhandle
;
__u8
*
intbuffer
;
dma_addr_t
rxbufferhandle
;
__u8
*
rx_buf
;
struct
sk_buff
*
tx_skb
;
__u8
*
firmware_buf
;
__u8
scratch
[
KAWETH_SCRATCH_SIZE
];
__u8
rx_buf
[
KAWETH_BUF_SIZE
];
__u8
intbuffer
[
INTBUFFERSIZE
];
__u16
packet_filter_bitmap
;
struct
kaweth_ethernet_configuration
configuration
;
...
...
@@ -524,6 +528,8 @@ static int kaweth_resubmit_rx_urb(struct kaweth_device *kaweth,
KAWETH_BUF_SIZE
,
kaweth_usb_receive
,
kaweth
);
kaweth
->
rx_urb
->
transfer_flags
|=
URB_NO_TRANSFER_DMA_MAP
;
kaweth
->
rx_urb
->
transfer_dma
=
kaweth
->
rxbufferhandle
;
if
((
result
=
usb_submit_urb
(
kaweth
->
rx_urb
,
mem_flags
)))
{
if
(
result
==
-
ENOMEM
)
...
...
@@ -630,6 +636,8 @@ static int kaweth_open(struct net_device *net)
int_callback
,
kaweth
,
HZ
/
4
);
kaweth
->
irq_urb
->
transfer_dma
=
kaweth
->
intbufferhandle
;
kaweth
->
irq_urb
->
transfer_flags
|=
URB_NO_TRANSFER_DMA_MAP
;
res
=
usb_submit_urb
(
kaweth
->
irq_urb
,
GFP_KERNEL
);
if
(
res
)
{
...
...
@@ -1033,6 +1041,19 @@ static int kaweth_probe(
if
(
!
kaweth
->
irq_urb
)
goto
err_tx_and_rx
;
kaweth
->
intbuffer
=
usb_buffer_alloc
(
kaweth
->
dev
,
INTBUFFERSIZE
,
GFP_KERNEL
,
&
kaweth
->
intbufferhandle
);
if
(
!
kaweth
->
intbuffer
)
goto
err_tx_and_rx_and_irq
;
kaweth
->
rx_buf
=
usb_buffer_alloc
(
kaweth
->
dev
,
KAWETH_BUF_SIZE
,
GFP_KERNEL
,
&
kaweth
->
rxbufferhandle
);
if
(
!
kaweth
->
rx_buf
)
goto
err_all_but_rxbuf
;
kaweth
->
net
=
netdev
;
memcpy
(
kaweth
->
net
->
broadcast
,
&
bcast_addr
,
sizeof
(
bcast_addr
));
memcpy
(
kaweth
->
net
->
dev_addr
,
...
...
@@ -1071,6 +1092,12 @@ static int kaweth_probe(
err_intfdata:
usb_set_intfdata
(
intf
,
NULL
);
err_all:
usb_buffer_free
(
kaweth
->
dev
,
KAWETH_BUF_SIZE
,
(
void
*
)
kaweth
->
rx_buf
,
kaweth
->
rxbufferhandle
);
err_all_but_rxbuf:
usb_buffer_free
(
kaweth
->
dev
,
INTBUFFERSIZE
,
(
void
*
)
kaweth
->
intbuffer
,
kaweth
->
intbufferhandle
);
err_tx_and_rx_and_irq:
usb_free_urb
(
kaweth
->
irq_urb
);
err_tx_and_rx:
usb_free_urb
(
kaweth
->
rx_urb
);
err_only_tx:
...
...
@@ -1123,6 +1150,11 @@ static void kaweth_disconnect(struct usb_interface *intf)
usb_free_urb
(
kaweth
->
rx_urb
);
usb_free_urb
(
kaweth
->
tx_urb
);
usb_free_urb
(
kaweth
->
irq_urb
);
usb_buffer_free
(
kaweth
->
dev
,
KAWETH_BUF_SIZE
,
(
void
*
)
kaweth
->
rx_buf
,
kaweth
->
rxbufferhandle
);
usb_buffer_free
(
kaweth
->
dev
,
INTBUFFERSIZE
,
(
void
*
)
kaweth
->
intbuffer
,
kaweth
->
intbufferhandle
);
kfree
(
kaweth
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment