# Boa v0.94 configuration file # File format has not changed from 0.93 # File format has changed little from 0.92 # version changes are noted in the comments # # The Boa configuration file is parsed with a lex/yacc or flex/bison # generated parser. If it reports an error, the line number will be # provided; it should be easy to spot. The syntax of each of these # rules is very simple, and they can occur in any order. Where possible # these directives mimic those of NCSA httpd 1.3; I saw no reason to # introduce gratuitous differences.
# The "ServerRoot" is not in this configuration file. It can be compiled # into the server (see defines.h) or specified on the command line with # the -c option, for example: # # boa -c /usr/local/boa
# Port: The port Boa runs on. The default port for http servers is 80. # If it is less than 1024, the server must be started as root.
Port 80
# Listen: the Internet address to bind(2) to. If you leave it out, # it takes the behavior before 0.93.17.2, which is to bind to all # addresses (INADDR_ANY). You only get one "Listen" directive, # if you want service on multiple IP addresses, you have three choices: # 1. Run boa without a "Listen" directive # a. All addresses are treated the same; makes sense if the addresses # are localhost, ppp, and eth0. # b. Use the VirtualHost directive below to point requests to different # files. Should be good for a very large number of addresses (web # hosting clients). # 2. Run one copy of boa per IP address, each has its own configuration # with a "Listen" directive. No big deal up to a few tens of addresses. # Nice separation between clients. # The name you provide gets run through inet_aton(3), so you have to use dotted # quad notation. This configuration is too important to trust some DNS.
#Listen 192.68.0.5
# User: The name or UID the server should run as. # Group: The group name or GID the server should run as.
User 0 Group 0
# ServerAdmin: The email address where server problems should be sent. # Note: this is not currently used, except as an environment variable # for CGIs.
#ServerAdmin root@localhost
# ErrorLog: The location of the error log file. If this does not start # with /, it is considered relative to the server root. # Set to /dev/null if you don't want errors logged. # If unset, defaults to /dev/stderr
ErrorLog /etc/boa/log/error_log # Please NOTE: Sending the logs to a pipe ('|'), as shown below, # is somewhat experimental and might fail under heavy load. # "Usual libc implementations of printf will stall the whole # process if the receiving end of a pipe stops reading." #ErrorLog "|/usr/sbin/cronolog --symlink=/var/log/boa/error_log /var/log/boa/error-%Y%m%d.log"
# AccessLog: The location of the access log file. If this does not # start with /, it is considered relative to the server root. # Comment out or set to /dev/null (less effective) to disable # Access logging.
AccessLog /etc/boa/log/access_log # Please NOTE: Sending the logs to a pipe ('|'), as shown below, # is somewhat experimental and might fail under heavy load. # "Usual libc implementations of printf will stall the whole # process if the receiving end of a pipe stops reading." #AccessLog "|/usr/sbin/cronolog --symlink=/var/log/boa/access_log /var/log/boa/access-%Y%m%d.log"
# UseLocaltime: Logical switch. Uncomment to use localtime # instead of UTC time #UseLocaltime
# VerboseCGILogs: this is just a logical switch. # It simply notes the start and stop times of cgis in the error log # Comment out to disable.
#VerboseCGILogs
# ServerName: the name of this server that should be sent back to # clients if different than that returned by gethostname + gethostbyname
#ServerName www.your.org.here
# VirtualHost: a logical switch. # Comment out to disable. # Given DocumentRoot /var/www, requests on interface 'A' or IP 'IP-A' # become /var/www/IP-A. # Example: http://localhost/ becomes /var/www/127.0.0.1 # # Not used until version 0.93.17.2. This "feature" also breaks commonlog # output rules, it prepends the interface number to each access_log line. # You are expected to fix that problem with a postprocessing script.
#VirtualHost
# DocumentRoot: The root directory of the HTML documents. # Comment out to disable server non user files.
DocumentRoot /etc/boa/www
# UserDir: The name of the directory which is appended onto a user's home # directory if a ~user request is recieved.
UserDir public_html
# DirectoryIndex: Name of the file to use as a pre-written HTML # directory index. Please MAKE AND USE THESE FILES. On the # fly creation of directory indexes can be _slow_. # Comment out to always use DirectoryMaker
DirectoryIndex index.html
# DirectoryMaker: Name of program used to create a directory listing. # Comment out to disable directory listings. If both this and # DirectoryIndex are commented out, accessing a directory will give # an error (though accessing files in the directory are still ok).
DirectoryMaker /etc/boa/boa_indexer
# DirectoryCache: If DirectoryIndex doesn't exist, and DirectoryMaker # has been commented out, the the on-the-fly indexing of Boa can be used # to generate indexes of directories. Be warned that the output is # extremely minimal and can cause delays when slow disks are used. # Note: The DirectoryCache must be writable by the same user/group that # Boa runs as.
# DirectoryCache /var/spool/boa/dircache
# KeepAliveMax: Number of KeepAlive requests to allow per connection # Comment out, or set to 0 to disable keepalive processing
KeepAliveMax 1000
# KeepAliveTimeout: seconds to wait before keepalive connection times out
KeepAliveTimeout 10
# MimeTypes: This is the file that is used to generate mime type pairs # and Content-Type fields for boa. # Set to /dev/null if you do not want to load a mime types file. # Do *not* comment out (better use AddType!)
MimeTypes /etc/boa/mime.types
# DefaultType: MIME type used if the file extension is unknown, or there # is no file extension.
DefaultType text/plain
# CGIPath: The value of the $PATH environment variable given to CGI progs.
CGIPath /bin:/usr/bin:/usr/local/bin
# SinglePostLimit: The maximum allowable number of bytes in # a single POST. Default is normally 1MB.
# AddType: adds types without editing mime.types # Example: AddType type extension [extension ...]
# Uncomment the next line if you want .cgi files to execute from anywhere #AddType application/x-httpd-cgi cgi
# Redirect, Alias, and ScriptAlias all have the same semantics -- they # match the beginning of a request and take appropriate action. Use # Redirect for other servers, Alias for the same server, and ScriptAlias # to enable directories for script execution.
# Redirect allows you to tell clients about documents which used to exist in # your server's namespace, but do not anymore. This allows you to tell the # clients where to look for the relocated document. # Example: Redirect /bar http://elsewhere/feh/bar
# Aliases: Aliases one path to another. # Example: Alias /path1/bar /path2/foo
Alias /doc /usr/doc
# ScriptAlias: Maps a virtual path to a directory for serving scripts # Example: ScriptAlias /htbin/ /www/htbin/
ScriptAlias /cgi-bin/ /etc/boa/cgi-bin/
6.新建index.html和test.c
index.html:
1 2 3 4 5 6 7 8
<html> <body> <h3>this is a test! 2024-10-15 jym</h3><br/> <imgsrc="oei.jpg"/> <h3>tree picture</h3><br/> <ahref="/cgi-bin/test.cgi">to cgi page</a> //指定了cgi可执行文件存放的路径,默认从/boa的根目录开始查找 </body> </html> j
sudo apt-get install sox libsox-fmt-all play shanghaitan.mp3
madplay-PC-Linux
1.解压源码包
1 2 3 4 5 6 7 8 9 10 11 12 13
cd /arm mkdir madplay cd madplay mkdir tarball src-x86 src-arm target-x86 target-arm
cd tarball for f in $(ls *.tar.gz); do tar -zxvf $f –C ../src-x86; done 或者: cd tarball tar -zxvf zlib-1.2.3.tar.gz -C ../src-x86 tar -zxvf libid3tag-0.15.1b.tar.gz -C ../src-x86 tar -zxvf libmad-0.15.1b.tar.gz -C ../src-x86 tar -zxvf madplay-0.15.2b.tar.gz -C ../src-x86
目录说明: tarball 目录用来存放所有的源代码包 src-x86 目录用来存放 X86 版本的所有源代码文件 src-arm 目录用来存放 ARM 版本的所有源代码文件 target-x86 目录是 X86 版本的安装目录 target-arm 目录是 ARM 版本的安装目录 接下来把从网上下载到的源代码包放入 tarball 目录
2.编译madplay及它所依赖的库文件
zlib
1 2 3 4
cd ../src-x86/zlib-1.2.3 ./configure --prefix=/home/jym/code/linux/qemu/madplay/target-x86 make -j8 make install
libid3tag
1 2 3 4
cd ../libid3tag-0.15.1b ./configure --prefix=/home/jym/code/linux/qemu/madplay/target-x86/ --disable-debugging --disable-shared --enable-static CPPFLAGS=-I/home/jym/code/linux/qemu/madplay/target-x86/include LDFLAGS=-L/home/jym/code/linux/qemu/madplay/target-x86/lib make -j8 make install
cd ../madplay-0.15.2b ./configure --prefix=/home/jym/code/linux/qemu/madplay/target-x86 --disable-debugging --disable-shared --enable-static CPPFLAGS=-I/home/jym/code/linux/qemu/madplay/target-x86/include LDFLAGS=-L/home/jym/code/linux/qemu/madplay/target-x86/lib make -j8 make install
#!/bin/sh # This build script is for madplay under PC-Linux MADPLAY_DIR=/home/jym/code/linux/qemu/madplay TARBALL_DIR=$MADPLAY_DIR/tarball SRC_DIR=$MADPLAY_DIR/src-x86 TARGET_DIR=$MADPLAY_DIR/target-x86
tar -zxvf $TARBALL_DIR/zlib-1.2.3.tar.gz -C $SRC_DIR tar -zxvf $TARBALL_DIR/libid3tag-0.15.1b.tar.gz -C $SRC_DIR tar -zxvf $TARBALL_DIR/libmad-0.15.1b.tar.gz -C $SRC_DIR tar -zxvf $TARBALL_DIR/madplay-0.15.2b.tar.gz -C $SRC_DIR # for f in $(ls $TARBALL_DIR/*.tar.gz); do tar -zxvf $f -C $SRC_DIR; done cd$SRC_DIR/zlib-1.2.3 ./configure --prefix=$TARGET_DIR make make install
cd$SRC_DIR/libid3tag-0.15.1b ./configure --prefix=$TARGET_DIR --disable-debugging --disable-shared --enable-static CPPFLAGS=-I$TARGET_DIR/include LDFLAGS=-L$TARGET_DIR/lib make make install
#!/bin/sh # This build script is for madplay under ARM-Linux MADPLAY_DIR=/home/jym/code/linux/qemu/madplay TARBALL_DIR=$MADPLAY_DIR/tarball SRC_DIR=$MADPLAY_DIR/src-arm TARGET_DIR=$MADPLAY_DIR/target-arm tar -zxvf $TARBALL_DIR/zlib-1.2.3.tar.gz -C $SRC_DIR tar -zxvf $TARBALL_DIR/libid3tag-0.15.1b.tar.gz -C $SRC_DIR tar -zxvf $TARBALL_DIR/libmad-0.15.1b.tar.gz -C $SRC_DIR tar -zxvf $TARBALL_DIR/madplay-0.15.2b.tar.gz -C $SRC_DIR # for f in $(ls $TARBALL_DIR/*.tar.gz); do tar -zxvf $f -C $SRC_DIR; done
export CC=arm-linux-gcc cd$SRC_DIR/zlib-1.2.3 ./configure --prefix=$TARGET_DIR make -j8 make install
cd$SRC_DIR/libid3tag-0.15.1b ./configure --host=arm-linux --prefix=$TARGET_DIR --disable-debugging --disable-shared --enable-static CPPFLAGS=-I$TARGET_DIR/include LDFLAGS=-L$TARGET_DIR/lib make -j8 make install
MPEG Audio Decoder 0.15.2 (beta) - Copyright (C) 2000-2004 Robert Leslie et al. Title: ▒Ϻ▒̲ Artist: Ҷ▒▒▒▒ Year: 2000 Genre: Goa <3>__free_from_pool: freeing wrong coherent size from pool __free_from_pool: freeing wrong coherent size from pool [<800151e8>] (unwind_backtrace+0x0/0xf0) from [<800189c4>] (arm_dma_free+0x188/0x1b0) [<800151e8>] (unwind_backtrace+0x0/0xf0) from [<800189c4>] (arm_dma_free+0x188/0x1b0) [<800189c4>] (arm_dma_free+0x188/0x1b0) from [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) [<800189c4>] (arm_dma_free+0x188/0x1b0) from [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) from [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) from [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) from [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) from [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) from [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) from [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) from [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) from [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) from [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) from [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) from [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) from [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) from [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) from [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) from [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) from [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) from [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) from [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) from [<80283258>] (snd_pcm_oss_get_format+0x10/0x28) [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) from [<80283258>] (snd_pcm_oss_get_format+0x10/0x28) [<80283258>] (snd_pcm_oss_get_format+0x10/0x28) from [<80283ed8>] (snd_pcm_oss_ioctl+0x438/0xd2c) [<80283258>] (snd_pcm_oss_get_format+0x10/0x28) from [<80283ed8>] (snd_pcm_oss_ioctl+0x438/0xd2c) [<80283ed8>] (snd_pcm_oss_ioctl+0x438/0xd2c) from [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) [<80283ed8>] (snd_pcm_oss_ioctl+0x438/0xd2c) from [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) from [<800c7204>] (sys_ioctl+0x38/0x60) [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) from [<800c7204>] (sys_ioctl+0x38/0x60) [<800c7204>] (sys_ioctl+0x38/0x60) from [<8000e2c0>] (ret_fast_syscall+0x0/0x30) [<800c7204>] (sys_ioctl+0x38/0x60) from [<8000e2c0>] (ret_fast_syscall+0x0/0x30) <3>__free_from_pool: freeing wrong coherent size from pool __free_from_pool: freeing wrong coherent size from pool [<800151e8>] (unwind_backtrace+0x0/0xf0) from [<800189c4>] (arm_dma_free+0x188/0x1b0) [<800151e8>] (unwind_backtrace+0x0/0xf0) from [<800189c4>] (arm_dma_free+0x188/0x1b0) [<800189c4>] (arm_dma_free+0x188/0x1b0) from [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) [<800189c4>] (arm_dma_free+0x188/0x1b0) from [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) from [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) from [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) from [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) from [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) from [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) from [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) from [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) from [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) from [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) from [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) from [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) from [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) from [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) from [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) from [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) from [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) from [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) from [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) from [<80283280>] (snd_pcm_oss_get_channels+0x10/0x28) [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) from [<80283280>] (snd_pcm_oss_get_channels+0x10/0x28) [<80283280>] (snd_pcm_oss_get_channels+0x10/0x28) from [<80283fb4>] (snd_pcm_oss_ioctl+0x514/0xd2c) [<80283280>] (snd_pcm_oss_get_channels+0x10/0x28) from [<80283fb4>] (snd_pcm_oss_ioctl+0x514/0xd2c) [<80283fb4>] (snd_pcm_oss_ioctl+0x514/0xd2c) from [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) [<80283fb4>] (snd_pcm_oss_ioctl+0x514/0xd2c) from [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) from [<800c7204>] (sys_ioctl+0x38/0x60) [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) from [<800c7204>] (sys_ioctl+0x38/0x60) [<800c7204>] (sys_ioctl+0x38/0x60) from [<8000e2c0>] (ret_fast_syscall+0x0/0x30) [<800c7204>] (sys_ioctl+0x38/0x60) from [<8000e2c0>] (ret_fast_syscall+0x0/0x30) <3>__free_from_pool: freeing wrong coherent size from pool __free_from_pool: freeing wrong coherent size from pool [<800151e8>] (unwind_backtrace+0x0/0xf0) from [<800189c4>] (arm_dma_free+0x188/0x1b0) [<800151e8>] (unwind_backtrace+0x0/0xf0) from [<800189c4>] (arm_dma_free+0x188/0x1b0) [<800189c4>] (arm_dma_free+0x188/0x1b0) from [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) [<800189c4>] (arm_dma_free+0x188/0x1b0) from [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) from [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) [<8027dfa4>] (snd_dma_free_pages+0xb4/0xc8) from [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) from [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) [<8027d4ac>] (snd_pcm_lib_free_pages+0x2c/0x54) from [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) from [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) [<80292144>] (aaci_pcm_hw_free+0x40/0x5c) from [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) from [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) [<80292180>] (aaci_pcm_hw_params+0x20/0xd4) from [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) from [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) [<80276ce4>] (snd_pcm_hw_params+0x114/0x3e0) from [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) from [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) [<80277984>] (snd_pcm_common_ioctl1+0x5a0/0x10a4) from [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) from [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) [<80278990>] (snd_pcm_playback_ioctl1+0x38/0x4c0) from [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) from [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) [<80278e84>] (snd_pcm_kernel_ioctl+0x40/0x6c) from [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) from [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) [<80282730>] (snd_pcm_oss_change_params+0x818/0xcc0) from [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) from [<80283230>] (snd_pcm_oss_get_rate+0x10/0x28) [<80283214>] (snd_pcm_oss_get_active_substream+0x68/0x74) from [<80283230>] (snd_pcm_oss_get_rate+0x10/0x28) [<80283230>] (snd_pcm_oss_get_rate+0x10/0x28) from [<80284658>] (snd_pcm_oss_ioctl+0xbb8/0xd2c) [<80283230>] (snd_pcm_oss_get_rate+0x10/0x28) from [<80284658>] (snd_pcm_oss_ioctl+0xbb8/0xd2c) [<80284658>] (snd_pcm_oss_ioctl+0xbb8/0xd2c) from [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) [<80284658>] (snd_pcm_oss_ioctl+0xbb8/0xd2c) from [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) from [<800c7204>] (sys_ioctl+0x38/0x60) [<800c6c9c>] (do_vfs_ioctl+0x80/0x5b0) from [<800c7204>] (sys_ioctl+0x38/0x60) [<800c7204>] (sys_ioctl+0x38/0x60) from [<8000e2c0>] (ret_fast_syscall+0x0/0x30) [<800c7204>] (sys_ioctl+0x38/0x60) from [<8000e2c0>] (ret_fast_syscall+0x0/0x30)