summaryrefslogtreecommitdiff
path: root/nouveau/nouveau-symbol-check
blob: 0fef56323b43a03be9723c7e0c8bc44881e4cf1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash

# The following symbols (past the first five) are taken from the public headers.
# A list of the latter should be available Makefile.sources/LIBDRM_NOUVEAU_H_FILES

FUNCS=$(nm -D --format=bsd --defined-only ${1-.libs/libdrm_nouveau.so} | awk '{print $3}'| while read func; do
( grep -q "^$func$" || echo $func )  <<EOF
__bss_start
_edata
_end
_fini
_init
nouveau_bo_map
nouveau_bo_name_get
nouveau_bo_name_ref
nouveau_bo_new
nouveau_bo_prime_handle_ref
nouveau_bo_ref
nouveau_bo_set_prime
nouveau_bo_wait
nouveau_bo_wrap
nouveau_bufctx_del
nouveau_bufctx_mthd
nouveau_bufctx_new
nouveau_bufctx_refn
nouveau_bufctx_reset
nouveau_client_del
nouveau_client_new
nouveau_device_del
nouveau_device_open
nouveau_device_open_existing
nouveau_device_wrap
nouveau_getparam
nouveau_object_del
nouveau_object_find
nouveau_object_new
nouveau_pushbuf_bufctx
nouveau_pushbuf_data
nouveau_pushbuf_del
nouveau_pushbuf_kick
nouveau_pushbuf_new
nouveau_pushbuf_refd
nouveau_pushbuf_refn
nouveau_pushbuf_reloc
nouveau_pushbuf_space
nouveau_pushbuf_validate
nouveau_setparam
EOF
done)

test ! -n "$FUNCS" || echo $FUNCS
test ! -n "$FUNCS"