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
Kirill Smelkov
linux
Commits
15ccfaf0
Commit
15ccfaf0
authored
Jun 11, 2003
by
Alexander Viro
Committed by
Linus Torvalds
Jun 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] tty_driver refcounting
drivers/serial/core.c converted to dynamic allocation
parent
0f77fcff
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
31 deletions
+30
-31
drivers/serial/core.c
drivers/serial/core.c
+30
-31
No files found.
drivers/serial/core.c
View file @
15ccfaf0
...
...
@@ -2061,6 +2061,32 @@ uart_unconfigure_port(struct uart_driver *drv, struct uart_state *state)
up
(
&
state
->
sem
);
}
static
struct
tty_operations
uart_ops
=
{
.
open
=
uart_open
,
.
close
=
uart_close
,
.
write
=
uart_write
,
.
put_char
=
uart_put_char
,
.
flush_chars
=
uart_flush_chars
,
.
write_room
=
uart_write_room
,
.
chars_in_buffer
=
uart_chars_in_buffer
,
.
flush_buffer
=
uart_flush_buffer
,
.
ioctl
=
uart_ioctl
,
.
throttle
=
uart_throttle
,
.
unthrottle
=
uart_unthrottle
,
.
send_xchar
=
uart_send_xchar
,
.
set_termios
=
uart_set_termios
,
.
stop
=
uart_stop
,
.
start
=
uart_start
,
.
hangup
=
uart_hangup
,
.
break_ctl
=
uart_break_ctl
,
.
wait_until_sent
=
uart_wait_until_sent
,
#ifdef CONFIG_PROC_FS
.
read_proc
=
uart_read_proc
,
#endif
.
tiocmget
=
uart_tiocmget
,
.
tiocmset
=
uart_tiocmset
,
};
/**
* uart_register_driver - register a driver with the uart core layer
* @drv: low level driver structure
...
...
@@ -2092,52 +2118,25 @@ int uart_register_driver(struct uart_driver *drv)
memset
(
drv
->
state
,
0
,
sizeof
(
struct
uart_state
)
*
drv
->
nr
);
normal
=
kmalloc
(
sizeof
(
struct
tty_driver
),
GFP_KERNEL
);
normal
=
alloc_tty_driver
(
drv
->
nr
);
if
(
!
normal
)
goto
out
;
memset
(
normal
,
0
,
sizeof
(
struct
tty_driver
));
drv
->
tty_driver
=
normal
;
normal
->
magic
=
TTY_DRIVER_MAGIC
;
normal
->
owner
=
drv
->
owner
;
normal
->
driver_name
=
drv
->
driver_name
;
normal
->
devfs_name
=
drv
->
devfs_name
;
normal
->
name
=
drv
->
dev_name
;
normal
->
major
=
drv
->
major
;
normal
->
minor_start
=
drv
->
minor
;
normal
->
num
=
drv
->
nr
;
normal
->
type
=
TTY_DRIVER_TYPE_SERIAL
;
normal
->
subtype
=
SERIAL_TYPE_NORMAL
;
normal
->
init_termios
=
tty_std_termios
;
normal
->
init_termios
.
c_cflag
=
B9600
|
CS8
|
CREAD
|
HUPCL
|
CLOCAL
;
normal
->
flags
=
TTY_DRIVER_REAL_RAW
|
TTY_DRIVER_NO_DEVFS
;
normal
->
driver_state
=
drv
;
normal
->
open
=
uart_open
;
normal
->
close
=
uart_close
;
normal
->
write
=
uart_write
;
normal
->
put_char
=
uart_put_char
;
normal
->
flush_chars
=
uart_flush_chars
;
normal
->
write_room
=
uart_write_room
;
normal
->
chars_in_buffer
=
uart_chars_in_buffer
;
normal
->
flush_buffer
=
uart_flush_buffer
;
normal
->
ioctl
=
uart_ioctl
;
normal
->
throttle
=
uart_throttle
;
normal
->
unthrottle
=
uart_unthrottle
;
normal
->
send_xchar
=
uart_send_xchar
;
normal
->
set_termios
=
uart_set_termios
;
normal
->
stop
=
uart_stop
;
normal
->
start
=
uart_start
;
normal
->
hangup
=
uart_hangup
;
normal
->
break_ctl
=
uart_break_ctl
;
normal
->
wait_until_sent
=
uart_wait_until_sent
;
#ifdef CONFIG_PROC_FS
normal
->
read_proc
=
uart_read_proc
;
#endif
normal
->
tiocmget
=
uart_tiocmget
;
normal
->
tiocmset
=
uart_tiocmset
;
tty_set_operations
(
normal
,
&
uart_ops
);
/*
* Initialise the UART state(s).
...
...
@@ -2154,7 +2153,7 @@ int uart_register_driver(struct uart_driver *drv)
retval
=
tty_register_driver
(
normal
);
out:
if
(
retval
<
0
)
{
kfree
(
normal
);
put_tty_driver
(
normal
);
kfree
(
drv
->
state
);
}
return
retval
;
...
...
@@ -2173,8 +2172,8 @@ void uart_unregister_driver(struct uart_driver *drv)
{
struct
tty_driver
*
p
=
drv
->
tty_driver
;
tty_unregister_driver
(
p
);
put_tty_driver
(
p
);
kfree
(
drv
->
state
);
kfree
(
p
);
drv
->
tty_driver
=
NULL
;
}
...
...
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