diff --git a/.gitignore b/.gitignore index 2e2743f..cf7f075 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,10 @@ -# the gocryptfs executable -/gocryptfs +/build +/include +/lib +/openssl* # temporary files created by the tests /tmp -# binary releases and signatiures -/*.tar.gz -/*.asc - # Binaries created for cpu profiling *.test - -# Rendered manpage -gocryptfs.1 - -# Dependencies copied by "dep" -/vendor -/_vendor-* - -# Source tarball version. Should never be committed to git. -/VERSION diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9cfc238..0000000 --- a/.travis.yml +++ /dev/null @@ -1,43 +0,0 @@ -language: go -os: linux - -# fuse on travis -sudo: required -dist: bionic # Ubuntu 18.04 "Bionic", https://docs.travis-ci.com/user/reference/bionic/ - -env: - - GO111MODULE=on - -git: - depth: 300 - -# Build with the lastest relevant Go versions -# Relevance is determined from: -# * https://golang.org/dl/ -# * https://packages.debian.org/search?keywords=golang&searchon=names&exact=1&suite=all§ion=all -# * https://packages.ubuntu.com/search?keywords=golang&searchon=names&exact=1&suite=all§ion=all -go: - - 1.11.x # Debian 10 "Buster" - - 1.12.x # Ubuntu 19.10 - - 1.13.x # Debian 11 "Bullseye" - - stable - -before_install: - - sudo apt-get install -qq fuse - - sudo modprobe fuse - - sudo chmod 666 /dev/fuse - - sudo chown root:$USER /etc/fuse.conf - -script: - - openssl version - - df -Th / /tmp - - env GO111MODULE=on go build - - ./build-without-openssl.bash - - ./build.bash - - ./gocryptfs -speed - - ./test.bash - - make root_test - - ./crossbuild.bash - - echo "rebuild with locked dependencies" - - go mod vendor - - ./build.bash -mod=vendor diff --git a/Documentation/.gitignore b/Documentation/.gitignore deleted file mode 100644 index d2f316c..0000000 --- a/Documentation/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Generated man pages -*.1 diff --git a/Documentation/CLI_ABI.md b/Documentation/CLI_ABI.md deleted file mode 100644 index 9581556..0000000 --- a/Documentation/CLI_ABI.md +++ /dev/null @@ -1,102 +0,0 @@ -Stable CLI ABI -============== - -If you want to call gocryptfs from your script or app, this is the -stable ABI. - -General -------- - -1. A password is piped into gocryptfs with an optional terminating - newline. Any unexpected data after the final newline will - cause gocryptfs to abort. -2. Always pass "--" after the options. This prevents a CIPERDIR that - starts with a dash ("-") to wreak havoc. -3. Use "-q" to get rid of all informational messages. Only error - messages (if any) will be printed to stderr (capture it!). -4. Check the exit code of gocryptfs. 0 is success, anything else is an - error and details about that error will have been printed to stderr. - -Initialize Filesystem ---------------------- - -#### Bash example - - $ cat mypassword.txt | gocryptfs -init -q -- CIPHERDIR - -Content of "mypassword.txt": - - mypassword1234 - -#### What you have to pipe to gocryptfs - -1. Password -2. Optional newline - -#### Notes - -1. The CIPHERDIR directory must exist and be empty - -#### Exit Codes - -* 0 = success -* 6 = CIPHERDIR is invalid: not an empty directory -* 22 = password is empty -* 24 = could not create gocryptfs.conf -* other = please inspect the message - -Mount ------ - -#### Bash example - - $ cat mypassword.txt | gocryptfs -q -- CIPHERDIR MOUNTPOINT - -#### What you have to pipe to gocryptfs - -Same as for "Initialize Filesystem". - -#### Notes - -1. The MOUNTPOINT directory must exist and be empty. - -#### Exit Codes - -* 0 = success -* 10 = MOUNTPOINT is not an empty directory or contains CIPHERDIR -* 12 = password incorrect -* 23 = gocryptfs.conf could not be opened (does not exist, is unreadable, ...) -* other = please inspect the message - -Change Password ---------------- - -#### Bash example - - $ cat change.txt | gocryptfs -passwd -q -- CIPHERDIR - -Content of "change.txt": - - mypassword1234 - newpassword9876 - -#### What you have to pipe to gocryptfs - -1. Old password -2. Newline -3. New password -4. Optional newline - -#### Exit Codes - -* 0 = success -* 12 = password incorrect -* 23 = gocryptfs.conf could not be opened for reading -* 24 = could not write the updated gocryptfs.conf -* other = please inspect the message - -Further Reading ---------------- - -Additional exit codes that are unlikely to occur are defined in -[exitcodes.go](../internal/exitcodes/exitcodes.go). diff --git a/Documentation/MANPAGE-STATFS.md b/Documentation/MANPAGE-STATFS.md deleted file mode 100644 index c519f4b..0000000 --- a/Documentation/MANPAGE-STATFS.md +++ /dev/null @@ -1,82 +0,0 @@ -% STATFS(1) -% github.com/rfjakob -% Sep 2019 - -NAME -==== - -statfs - dump the statfs(2) information for PATH to console in JSON format. - -SYNOPSIS -======== - -statfs PATH - -DESCRIPTION -=========== - -The statfs(2) system call returns information about a mounted filesystem -in a `statfs_t` structure. This tool dumps this information in JSON format. -It is developed as part of gocryptfs and written in Go. - -The `statfs_t` structure is architecture-dependent. On amd64 it looks like this: - -``` -type Statfs_t struct { - Type int64 - Bsize int64 - Blocks uint64 - Bfree uint64 - Bavail uint64 - Files uint64 - Ffree uint64 - Fsid struct { - Val [2]int32 - } - Namelen int64 - Frsize int64 - Flags int64 - Spare [4]int64 -} -``` - -See the statfs(2) man page for the meaning of these fields, and note -that the field names here are acc. to the Go `golang.org/x/sys/unix` -naming convention, and slightly different than in C. - -EXAMPLES -======== - -Get the statfs(2) information for /tmp: - -``` -$ statfs /tmp -{ - "Type": 16914836, - "Bsize": 4096, - "Blocks": 3067428, - "Bfree": 3067411, - "Bavail": 3067411, - "Files": 3067428, - "Ffree": 3067381, - "Fsid": { - "Val": [ - 0, - 0 - ] - }, - "Namelen": 255, - "Frsize": 4096, - "Flags": 38, - "Spare": [ - 0, - 0, - 0, - 0 - ] -} -``` - -SEE ALSO -======== -statfs(2) gocryptfs(1) diff --git a/Documentation/MANPAGE-XRAY.md b/Documentation/MANPAGE-XRAY.md deleted file mode 100644 index 5a5162c..0000000 --- a/Documentation/MANPAGE-XRAY.md +++ /dev/null @@ -1,64 +0,0 @@ -% GOCRYPTFS-XRAY(1) -% github.com/rfjakob -% Jan 2018 - -NAME -==== - -gocryptfs-xray - examine gocryptfs-related data - -SYNOPSIS -======== - -#### Examine encrypted file/directory -gocryptfs-xray CIPHERDIR/ENCRYPTED-FILE-OR-DIR - -#### Decrypt and show master key -gocryptfs-xray -dumpmasterkey CIPHERDIR/gocryptfs.conf - -#### Encrypt paths -gocryptfs-xray -encrypt-paths SOCKET - -DESCRIPTION -=========== - -Available options are listed below. - -#### -0 -Use \\0 instead of \\n as separator for -decrypt-paths and -encrypt-paths. - -#### -aessiv -Assume AES-SIV mode instead of AES-GCM when examining an encrypted file. -Is not needed and has no effect in `-dumpmasterkey` mode. - -#### -decrypt-paths -Decrypt file paths using gocryptfs control socket. Reads from stdin. -See `-ctlsock` in gocryptfs(1). - -#### -dumpmasterkey -Decrypts and shows the master key. - -#### -encrypt-paths -Encrypt file paths using gocryptfs control socket. Reads from stdin. -See `-ctlsock` in gocryptfs(1). - -EXAMPLES -======== - -Examine an encrypted file: - - gocryptfs-xray myfs/mCXnISiv7nEmyc0glGuhTQ - -Print the master key: - - gocryptfs-xray -dumpmasterkey myfs/gocryptfs.conf - -Mount gocryptfs with control socket and use gocryptfs-xray to -encrypt some paths: - - gocryptfs -ctlsock myfs.sock myfs myfs.mnt - echo -e "foo\nbar" | gocryptfs-xray -encrypt-paths myfs.sock - -SEE ALSO -======== -gocryptfs(1) fuse(8) diff --git a/Documentation/MANPAGE-render.bash b/Documentation/MANPAGE-render.bash deleted file mode 100755 index 74028ad..0000000 --- a/Documentation/MANPAGE-render.bash +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -set -eu -cd $(dirname "$0") - -# Render Markdown to a proper man(1) manpage -function render { - IN=$1 - OUT=$2 - echo "Rendering $IN to $OUT" - echo ".\\\" This man page was generated from $IN. View it using 'man ./$OUT'" > $OUT - echo ".\\\"" >> $OUT - pandoc "$IN" -s -t man >> $OUT -} - -render MANPAGE.md gocryptfs.1 -render MANPAGE-XRAY.md gocryptfs-xray.1 -render MANPAGE-STATFS.md statfs.1 diff --git a/Documentation/MANPAGE.md b/Documentation/MANPAGE.md deleted file mode 100644 index 9ddf674..0000000 --- a/Documentation/MANPAGE.md +++ /dev/null @@ -1,619 +0,0 @@ -% GOCRYPTFS(1) -% github.com/rfjakob -% Aug 2017 - -NAME -==== - -gocryptfs - create or mount an encrypted filesystem - -SYNOPSIS -======== - -#### Initialize new encrypted filesystem -`gocryptfs -init [OPTIONS] CIPHERDIR` - -#### Mount -`gocryptfs [OPTIONS] CIPHERDIR MOUNTPOINT [-o COMMA-SEPARATED-OPTIONS]` - -#### Unmount -`fusermount -u MOUNTPOINT` - -#### Change password -`gocryptfs -passwd [OPTIONS] CIPHERDIR` - -#### Check consistency -`gocryptfs -fsck [OPTIONS] CIPHERDIR` - -#### Show filesystem information -`gocryptfs -info [OPTIONS] CIPHERDIR` - -DESCRIPTION -=========== - -gocryptfs is an encrypted overlay filesystem written in Go. -Encrypted files are stored in CIPHERDIR, and a plain-text -view can be presented by mounting the filesystem at MOUNTPOINT. - -gocryptfs was inspired by encfs(1) and strives to fix its -security issues while providing good performance. - -ACTION FLAGS -============ - -Unless one of the following *action flags* is passed, the default -action is to mount a filesystem (see SYNOPSIS). - -#### -fsck -Check CIPHERDIR for consistency. If corruption is found, the -exit code is 26. - -#### -h, -help -Print a short help text that shows the more-often used options. - -#### -hh -Long help text, shows all available options. - -#### -info -Pretty-print the contents of the config file in CIPHERDIR for -human consumption, stripping out sensitive data. - -Example: - - $ gocryptfs -info my_cipherdir - Creator: gocryptfs v2.0-beta2 - FeatureFlags: GCMIV128 HKDF DirIV EMENames LongNames Raw64 - EncryptedKey: 64B - ScryptObject: Salt=32B N=65536 R=8 P=1 KeyLen=32 - -#### -init -Initialize encrypted directory. - -#### -passwd -Change the password. Will ask for the old password, check if it is -correct, and ask for a new one. - -This can be used together with `-masterkey` if -you forgot the password but know the master key. Note that without the -old password, gocryptfs cannot tell if the master key is correct and will -overwrite the old one without mercy. It will, however, create a backup copy -of the old config file as `gocryptfs.conf.bak`. Delete it after -you have verified that you can access your files with the -new password. - -#### -speed -Run crypto speed test. Benchmark Go's built-in GCM against OpenSSL -(if available). The library that will be selected on "-openssl=auto" -(the default) is marked as such. - -#### -version -Print version and exit. The output contains three fields separated by ";". -Example: "gocryptfs v1.1.1-5-g75b776c; go-fuse 6b801d3; 2016-11-01 go1.7.3". -Field 1 is the gocryptfs version, field 2 is the version of the go-fuse -library, field 3 is the compile date and the Go version that was -used. - -INIT OPTIONS -============ - -Available options for `-init` are listed below. Usually, you don't need any. -Defaults are fine. - -#### -aessiv -Use the AES-SIV encryption mode. This is slower than GCM but is -secure with deterministic nonces as used in "-reverse" mode. - -#### -devrandom -Use `/dev/random` for generating the master key instead of the default Go -implementation. This is especially useful on embedded systems with Go versions -prior to 1.9, which fall back to weak random data when the getrandom syscall -is blocking. Using this option can block indefinitely when the kernel cannot -harvest enough entropy. - -#### -hkdf -Use HKDF to derive separate keys for content and name encryption from -the master key. Default true. - -#### -nosyslog -Diagnostic messages are normally redirected to syslog once gocryptfs -daemonizes. This option disables the redirection and messages will -continue be printed to stdout and stderr. - -#### -plaintextnames -Do not encrypt file names and symlink targets. - -#### -raw64 -Use unpadded base64 encoding for file names. This gets rid of the -trailing "\\=\\=". A filesystem created with this option can only be -mounted using gocryptfs v1.2 and higher. Default true. - -#### -reverse -Reverse mode shows a read-only encrypted view of a plaintext -directory. Implies "-aessiv". - -#### -scryptn int -scrypt cost parameter expressed as scryptn=log2(N). Possible values are -10 to 28, representing N=2^10 to N=2^28. - -Setting this to a lower -value speeds up mounting and reduces its memory needs, but makes -the password susceptible to brute-force attacks. The default is 16. - -MOUNT OPTIONS -============= - -Available options for mounting are listed below. Usually, you don't need any. -Defaults are fine. - -#### -allow_other -By default, the Linux kernel prevents any other user (even root) to -access a mounted FUSE filesystem. Settings this option allows access for -other users, subject to file permission checking. Only works if -user_allow_other is set in /etc/fuse.conf. This option is equivalent to -"allow_other" plus "default_permissions" described in fuse(8). - -#### -ctlsock string -Create a control socket at the specified location. The socket can be -used to decrypt and encrypt paths inside the filesystem. When using -this option, make sure that the directory you place the socket in is -not world-accessible. For example, `/run/user/UID/my.socket` would -be suitable. - -#### -dev, -nodev -Enable (`-dev`) or disable (`-nodev`) device files in a gocryptfs mount -(default: `-nodev`). If both are specified, `-nodev` takes precedence. -You need root permissions to use `-dev`. - -#### -e PATH, -exclude PATH -Only for reverse mode: exclude relative plaintext path from the encrypted -view, matching only from root of mounted filesystem. Can be passed multiple -times. Example: - - gocryptfs -reverse -exclude Music -exclude Movies /home/user /mnt/user.encrypted - -See also `-exclude-wildcard`, `-exclude-from` and the [EXCLUDING FILES](#excluding-files) section. - -#### -ew PATH, -exclude-wildcard PATH -Only for reverse mode: exclude paths from the encrypted view, matching anywhere. -Wildcards supported. Can be passed multiple times. Example: - - gocryptfs -reverse -exclude-wildcard '*~' /home/user /mnt/user.encrypted - -See also `-exclude`, `-exclude-from` and the [EXCLUDING FILES](#excluding-files) section. - -#### -exclude-from FILE -Only for reverse mode: reads exclusion patters (using `-exclude-wildcard` syntax) -from a file. Can be passed multiple times. Example: - - gocryptfs -reverse -exclude-from ~/crypt-exclusions /home/user /mnt/user.encrypted - -See also `-exclude`, `-exclude-wildcard` and the [EXCLUDING FILES](#excluding-files) section. - -#### -exec, -noexec -Enable (`-exec`) or disable (`-noexec`) executables in a gocryptfs mount -(default: `-exec`). If both are specified, `-noexec` takes precedence. - -#### -fg, -f -Stay in the foreground instead of forking away. -For compatibility, "-f" is also accepted, but "-fg" is preferred. - -Unless `-notifypid` is also passed, the logs go to stdout and stderr -instead of syslog. - -#### -force_owner string -If given a string of the form "uid:gid" (where both "uid" and "gid" are -substituted with positive integers), presents all files as owned by the given -uid and gid, regardless of their actual ownership. Implies "allow_other". - -This is rarely desired behavior: One should *usually* run gocryptfs as the -account which owns the backing-store files, which should *usually* be one and -the same with the account intended to access the decrypted content. An example -of a case where this may be useful is a situation where content is stored on a -filesystem that doesn't properly support UNIX ownership and permissions. - -#### -forcedecode -Force decode of encrypted files even if the integrity check fails, instead of -failing with an IO error. Warning messages are still printed to syslog if corrupted -files are encountered. -It can be useful to recover files from disks with bad sectors or other corrupted -media. It shall not be used if the origin of corruption is unknown, specially -if you want to run executable files. - -For corrupted media, note that you probably want to use dd_rescue(1) -instead, which will recover all but the corrupted 4kB block. - -This option makes no sense in reverse mode. It requires gocryptfs to be compiled with openssl -support and implies -openssl true. Because of this, it is not compatible with -aessiv, -that uses built-in Go crypto. - -Setting this option forces the filesystem to read-only and noexec. - -#### -fsname string -Override the filesystem name (first column in df -T). Can also be -passed as "-o fsname=" and is equivalent to libfuse's option of the -same name. By default, CIPHERDIR is used. - -#### -fusedebug -Enable fuse library debug output. - -#### -i duration, -idle duration -Only for forward mode: automatically unmount the filesystem if it has been idle -for the specified duration. Durations can be specified like "500s" or "2h45m". -0 (the default) means stay mounted indefinitely. - -When a process has open files or its working directory in the mount, -this will keep it not idle indefinitely. - -#### -kernel_cache -Enable the kernel_cache option of the FUSE filesystem, see fuse(8) for details. - -#### -ko -Pass additional mount options to the kernel (comma-separated list). -FUSE filesystems are mounted with "nodev,nosuid" by default. If gocryptfs -runs as root, you can enable device files by passing the opposite mount option, -"dev", and if you want to enable suid-binaries, pass "suid". -"ro" (equivalent to passing the "-ro" option) and "noexec" may also be -interesting. For a complete list see the section -`FILESYSTEM-INDEPENDENT MOUNT OPTIONS` in mount(8). On MacOS, "local", -"noapplexattr", "noappledouble" may be interesting. - -Note that unlike "-o", "-ko" is a regular option and must be passed BEFORE -the directories. Example: - - gocryptfs -ko noexec /tmp/foo /tmp/bar - -#### -longnames -Store names longer than 176 bytes in extra files (default true) -This flag is useful when recovering old gocryptfs filesystems using -"-masterkey". It is ignored (stays at the default) otherwise. - -#### -nodev -See `-dev, -nodev`. - -#### -noexec -See `-exec, -noexec`. - -#### -nofail -Having the `nofail` option in `/etc/fstab` instructs `systemd` to continue -booting normally even if the mount fails (see `man systemd.fstab`). - -The option is ignored by `gocryptfs` itself and has no effect outside `/etc/fstab`. - -#### -nonempty -Allow mounting over non-empty directories. FUSE by default disallows -this to prevent accidental shadowing of files. - -#### -noprealloc -Disable preallocation before writing. By default, gocryptfs -preallocates the space the next write will take using fallocate(2) -in mode FALLOC_FL_KEEP_SIZE. The preallocation makes sure it cannot -run out of space in the middle of the write, which would cause the -last 4kB block to be corrupt and unreadable. - -On ext4, preallocation is fast and does not cause a -noticeable performance hit. Unfortunately, on Btrfs, preallocation -is very slow, especially on rotational HDDs. The "-noprealloc" -option gives users the choice to trade robustness against -out-of-space errors for a massive speedup. - -For benchmarks and more details of the issue see -https://github.com/rfjakob/gocryptfs/issues/63 . - -#### -nosuid -See `-suid, -nosuid`. - -#### -notifypid int -Send USR1 to the specified process after successful mount. This is -used internally for daemonization. - -#### -rw, -ro -Mount the filesystem read-write (`-rw`, default) or read-only (`-ro`). -If both are specified, `-ro` takes precedence. - -#### -reverse -See the `-reverse` section in INIT FLAGS. You need to specifiy the -`-reverse` option both at `-init` and at mount. - -#### -serialize_reads -The kernel usually submits multiple concurrent reads to service -userspace requests and kernel readahead. gocryptfs serves them -concurrently and in arbitrary order. On backing storage that performs -poorly for concurrent or out-of-order reads (like Amazon Cloud Drive), -this behavior can cause very slow read speeds. - -The `-serialize_reads` -option does two things: (1) reads will be submitted one-by-one (no -concurrency) and (2) gocryptfs tries to order the reads by file -offset order. - -The ordering requires gocryptfs to wait a certain time before -submitting a read. The serialization introduces extra locking. -These factors will limit throughput to below 70MB/s. - -For more details visit https://github.com/rfjakob/gocryptfs/issues/92 . - -#### -sharedstorage -Enable work-arounds so gocryptfs works better when the backing -storage directory is concurrently accessed by multiple gocryptfs -instances. - -At the moment, it does two things: - -1. Disable stat() caching so changes to the backing storage show up - immediately. -2. Disable hard link tracking, as the inode numbers on the backing - storage are not stable when files are deleted and re-created behind - our back. This would otherwise produce strange "file does not exist" - and other errors. - -When "-sharedstorage" is active, performance is reduced and hard -links cannot be created. - -Even with this flag set, you may hit occasional problems. Running -gocryptfs on shared storage does not receive as much testing as the -usual (exclusive) use-case. Please test your workload in advance -and report any problems you may hit. - -More info: https://github.com/rfjakob/gocryptfs/issues/156 - -#### -suid, -nosuid -Enable (`-suid`) or disable (`-nosuid`) suid and sgid executables in a gocryptfs -mount (default: `-nosuid`). If both are specified, `-nosuid` takes precedence. -You need root permissions to use `-suid`. - -#### -zerokey -Use all-zero dummy master key. This options is only intended for -automated testing as it does not provide any security. - -COMMON OPTIONS -============== - -Options that apply to more than one action are listed below. -Each options lists where it is applicable. Again, usually you -don't need any. - -#### -config string -Use specified config file instead of `CIPHERDIR/gocryptfs.conf`. - -Applies to: all actions that use a config file: mount, `-fsck`, `-passwd`, `-info`, `-init`. - -#### -cpuprofile string -Write cpu profile to specified file. - -Applies to: all actions. - -#### -d, -debug -Enable debug output. - -Applies to: all actions. - -#### -extpass CMD [-extpass ARG1 ...] -Use an external program (like ssh-askpass) for the password prompt. -The program should return the password on stdout, a trailing newline is -stripped by gocryptfs. If you just want to read from a password file, see `-passfile`. - -When `-extpass` is specified once, the string argument will be split on spaces. -For example, `-extpass "md5sum my password.txt"` will be executed as -`"md5sum" "my" "password.txt"`, which is NOT what you want. - -Specify `-extpass` twice or more to use the string arguments as-is. -For example, you DO want to call `md5sum` like this: -`-extpass "md5sum" -extpass "my password.txt"`. - -If you want to prevent splitting on spaces but don't want to pass arguments -to your program, use `"--"`, which is accepted by most programs: -`-extpass "my program" -extpass "--"` - -Applies to: all actions that ask for a password. - -#### -fido2 DEVICE_PATH -Use a FIDO2 token to initialize and unlock the filesystem. -Use "fido2-token -L" to obtain the FIDO2 token device path. - -Applies to: all actions that ask for a password. - -#### -masterkey string -Use a explicit master key specified on the command line or, if the special -value "stdin" is used, read the masterkey from stdin, instead of reading -the config file and asking for the decryption password. - -Note that the command line, and with it the master key, is visible to -anybody on the machine who can execute "ps -auxwww". Use "-masterkey=stdin" -to avoid that risk. - -The masterkey option is meant as a recovery option for emergencies, such as -if you have forgotten the password or lost the config file. - -Even if a config file exists, it will not be used. All non-standard -settings have to be passed on the command line: `-aessiv` when you -mount a filesystem that was created using reverse mode, or -`-plaintextnames` for a filesystem that was created with that option. - -Examples: - - -masterkey=6f717d8b-6b5f8e8a-fd0aa206-778ec093-62c5669b-abd229cd-241e00cd-b4d6713d - -masterkey=stdin - -Applies to: all actions that ask for a password. - -#### -memprofile string -Write memory profile to the specified file. This is useful when debugging -memory usage of gocryptfs. - -Applies to: all actions. - -#### -o COMMA-SEPARATED-OPTIONS -For compatibility with mount(1), options are also accepted as -"-o COMMA-SEPARATED-OPTIONS" at the end of the command line. -For example, "-o q,zerokey" is equivalent to passing "-q -zerokey". - -Note that you can only use options that are understood by gocryptfs -with "-o". If you want to pass special flags to the kernel, you should -use "-ko" (*k*ernel *o*ption). This is different in libfuse-based -filesystems, that automatically pass any "-o" options they do not -understand along to the kernel. - -Example: - - gocryptfs /tmp/foo /tmp/bar -o q,zerokey - -Applies to: all actions. - -#### -openssl bool/"auto" -Use OpenSSL instead of built-in Go crypto (default "auto"). Using -built-in crypto is 4x slower unless your CPU has AES instructions and -you are using Go 1.6+. In mode "auto", gocrypts chooses the faster -option. - -Applies to: all actions. - -#### -passfile FILE [-passfile FILE2 ...] -Read password from the specified plain text file. The file should contain exactly -one line (do not use binary files!). -A warning will be printed if there is more than one line, and only -the first line will be used. A single -trailing newline is allowed and does not cause a warning. - -Pass this option multiple times to read the first line from multiple -files. They are concatenated for the effective password. - -Example: - - echo hello > hello.txt - echo word > world.txt - gocryptfs -passfile hello.txt -passfile world.txt - -The effective password will be "helloworld". - -Applies to: all actions that ask for a password. - -#### -q, -quiet -Quiet - silence informational messages. - -Applies to: all actions. - -#### -trace string -Write execution trace to file. View the trace using "go tool trace FILE". - -Applies to: all actions. - -#### -wpanic -When encountering a warning, panic and exit immediately. This is -useful in regression testing. - -Applies to: all actions. - -#### \-\- -Stop option parsing. Helpful when CIPHERDIR may start with a -dash "-". - -Applies to: all actions. - -EXCLUDING FILES -=============== - -In reverse mode, it is possible to exclude files from the encrypted view, using -the `-exclude`, `-exclude-wildcard` and `-exclude-from` options. - -`-exclude` matches complete paths, so `-exclude file.txt` only excludes a file -named `file.txt` in the root of the mounted filesystem; files named `file.txt` -in subdirectories are still visible. (This option is kept for compatibility -with the behavior up to version 1.6.x) - -`-exclude-wildcard` matches files anywhere, so `-exclude-wildcard file.txt` -excludes files named `file.txt` in any directory. If you want to match complete -paths, you can prefix the filename with a `/`: `-exclude-wildcard /file.txt` -excludes only `file.txt` in the root of the mounted filesystem. - -If there are many exclusions, you can use `-exclude-from` to read exclusion -patterns from a file. The syntax is that of `-exclude-wildcard`, so use a -leading `/` to match complete paths. - -The rules for exclusion are that of [gitignore](https://git-scm.com/docs/gitignore#_pattern_format). -In short: - -1. A blank line matches no files, so it can serve as a separator - for readability. -2. A line starting with `#` serves as a comment. Put a backslash (`\`) - in front of the first hash for patterns that begin with a hash. -3. Trailing spaces are ignored unless they are quoted with backslash (`\`). -4. An optional prefix `!` negates the pattern; any matching file - excluded by a previous pattern will become included again. It is not - possible to re-include a file if a parent directory of that file is - excluded. Put a backslash (`\`) in front of the first `!` for - patterns that begin with a literal `!`, for example, `\!important!.txt`. -5. If the pattern ends with a slash, it is removed for the purpose of the - following description, but it would only find a match with a directory. - In other words, `foo/` will match a directory foo and paths underneath it, - but will not match a regular file or a symbolic link foo. -6. If the pattern does not contain a slash `/`, it is treated as a shell glob - pattern and checked for a match against the pathname relative to the - root of the mounted filesystem. -7. Otherwise, the pattern is treated as a shell glob suitable for - consumption by fnmatch(3) with the FNM_PATHNAME flag: wildcards in the - pattern will not match a `/` in the pathname. For example, - `Documentation/*.html` matches `Documentation/git.html` but not - `Documentation/ppc/ppc.html` or `tools/perf/Documentation/perf.html`. -8. A leading slash matches the beginning of the pathname. For example, - `/*.c` matches `cat-file.c` but not `mozilla-sha1/sha1.c`. -9. Two consecutive asterisks (`**`) in patterns matched against full - pathname may have special meaning: - i. A leading `**` followed by a slash means match in all directories. - For example, `**/foo` matches file or directory `foo` anywhere, - the same as pattern `foo`. `**/foo/bar` matches file or directory - `bar` anywhere that is directly under directory `foo`. - ii. A trailing `/**` matches everything inside. For example, `abc/**` - matches all files inside directory `abc`, with infinite depth. - iii. A slash followed by two consecutive asterisks then a slash matches - zero or more directories. For example, `a/**/b` matches `a/b`, - `a/x/b`, `a/x/y/b` and so on. - iv. Other consecutive asterisks are considered invalid. - - -EXAMPLES -======== - -### Init - -Create an encrypted filesystem in directory "mydir.crypt", mount it on "mydir": - - mkdir mydir.crypt mydir - gocryptfs -init mydir.crypt - gocryptfs mydir.crypt mydir - -### Mount - -Mount an encrypted view of joe's home directory using reverse mode: - - mkdir /home/joe.crypt - gocryptfs -init -reverse /home/joe - gocryptfs -reverse /home/joe /home/joe.crypt - -### fstab - -Adding this line to `/etc/fstab` will mount `/tmp/cipher` to `/tmp/plain` on boot, using the -password in `/tmp/passfile`. Use `sudo mount -av` to test the line without having -to reboot. Adjust the gocryptfs path acc. to the output of the command `which gocryptfs`. -Do use the `nofail` option to prevent an unbootable system if the gocryptfs mount fails (see -the `-nofail` option for details). - - /tmp/cipher /tmp/plain fuse./usr/local/bin/gocryptfs nofail,allow_other,passfile=/tmp/password 0 0 - -EXIT CODES -========== - -0: success -6: CIPHERDIR is not an empty directory (on "-init") -10: MOUNTPOINT is not an empty directory -12: password incorrect -22: password is empty (on "-init") -23: could not read gocryptfs.conf -24: could not write gocryptfs.conf (on "-init" or "-password") -26: fsck found errors -other: please check the error message - -See also: https://github.com/rfjakob/gocryptfs/blob/master/internal/exitcodes/exitcodes.go - -SEE ALSO -======== -mount(2) fuse(8) fallocate(2) encfs(1) diff --git a/Documentation/SECURITY.md b/Documentation/SECURITY.md deleted file mode 100644 index 47edd1d..0000000 --- a/Documentation/SECURITY.md +++ /dev/null @@ -1 +0,0 @@ -This page has been moved to https://nuetzlich.net/gocryptfs/security/ . diff --git a/Documentation/XFSTESTS.md b/Documentation/XFSTESTS.md deleted file mode 100644 index bbf19e7..0000000 --- a/Documentation/XFSTESTS.md +++ /dev/null @@ -1,699 +0,0 @@ -# xfstests results - -Results of running [fuse-xfstests](https://github.com/rfjakob/fuse-xfstests) -against gocryptfs. - -## Failures - -### generic/035 - -Known [issue](https://github.com/hanwen/go-fuse/issues/55) in the -go-fuse library. Unlikely to have real-world impact. - -### generic/062 - -Only `user.\*` xattrs are supported, others are rejected. - -### generic/093 - -`security.\*` xattrs are not supported. - -### generic/097 - -`trusted.\*` xattrs are not supported. - -### generic/228 - -`ulimit -f` is not implemented in gocryptfs. - -### generic/273 - -Needs further analysis: -``` -_porter 28 not complete -cp: cannot create regular file '/var/tmp/check-gocryptfs/scratchdir/sub_28/origin/file_548': No such file or directory -``` - -### generic/403 - -`trusted.\*` xattrs are not supported. - -### generic/426, generic/467, generic/477 - -Needs further analysis. - -Failure related to the new system call open_by_handle_at(2) -([lwn article](https://lwn.net/Articles/375888/)). - -### generic/466 - -Harmless output caused by the fact that gocryptfs is not backed by -a block device. - -### generic/484 - -Needs further analysis: `record lock is not preserved across execve(2)` - -### generic/488 - -Needs further analysis: `Too many open files` - -## Full Test Output - -``` -0 jakob@brikett:~/code/fuse-xfstests$ sudo ./check-gocryptfs -gocryptfs v1.7.1; go-fuse v2.0.2-4-g8458b8a; 2019-10-10 go1.12.9 linux/amd64 -fuse-xfstests nlink0/dff383ab -Thu 10 Oct 2019 08:31:43 PM UTC - -FSTYP -- fuse.gocryptfs -PLATFORM -- Linux/x86_64 brikett 5.2.17-200.fc30.x86_64 -MKFS_OPTIONS -- /var/tmp/check-gocryptfs/scratchdev -MOUNT_OPTIONS -- -o context=system_u:object_r:root_t:s0 /var/tmp/check-gocryptfs/scratchdev /var/tmp/check-gocryptfs/scratchdir - -generic/001 6s ... 5s -generic/002 14s ... 1s -generic/003 [not run] atime related mount options have no effect on fuse.gocryptfs -generic/004 [not run] O_TMPFILE is not supported -generic/005 14s ... 0s -generic/006 16s ... 3s -generic/007 19s ... 7s -generic/008 [not run] xfs_io fzero failed (old kernel/wrong fs?) -generic/009 [not run] xfs_io fzero failed (old kernel/wrong fs?) -generic/010 15s ... 1s -generic/011 18s ... 4s -generic/012 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/013 97s ... 12s -generic/014 16s ... 2s -generic/015 2s ... 1s -generic/016 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/017 [not run] xfs_io fiemap failed (old kernel/wrong fs?) -generic/018 [not run] defragmentation not supported for fstype "fuse.gocryptfs" -generic/020 14s ... 1s -generic/021 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/022 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/023 15s ... 1s -generic/024 [not run] fs doesn't support RENAME_NOREPLACE -generic/025 [not run] fs doesn't support RENAME_EXCHANGE -generic/026 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/027 269s ... 101s -generic/028 19s ... 6s -generic/029 0s ... 0s -generic/030 2s ... 1s -generic/031 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) -generic/032 [not run] xfs_io fiemap failed (old kernel/wrong fs?) -generic/033 [not run] xfs_io fzero failed (old kernel/wrong fs?) -generic/034 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/035 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/035.out.bad) - --- tests/generic/035.out 2018-01-20 14:29:39.062451937 +0100 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/035.out.bad 2019-10-10 22:34:13.622100130 +0200 - @@ -1,3 +1,7 @@ - QA output created by 035 - overwriting regular file: - +nlink is 1, should be 0 - +res=0 dev=54 ino=5770027 mode=100644 nlink=1 uid=0 - overwriting directory: - +t_rename_overwrite: fstat(3): No such file or directory - +res=-1 dev=0 ino=0 mode=0 nlink=0 uid=0 - ... - (Run 'diff -u tests/generic/035.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/035.out.bad' to see the entire diff) -generic/036 24s ... 10s -generic/037 5s ... 3s -generic/038 [not run] This test requires at least 10GB free on /var/tmp/check-gocryptfs/scratchdir to run -generic/039 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/040 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/041 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/043 [not run] fuse.gocryptfs does not support shutdown -generic/044 [not run] fuse.gocryptfs does not support shutdown -generic/045 [not run] fuse.gocryptfs does not support shutdown -generic/046 [not run] fuse.gocryptfs does not support shutdown -generic/047 [not run] fuse.gocryptfs does not support shutdown -generic/048 [not run] fuse.gocryptfs does not support shutdown -generic/049 [not run] fuse.gocryptfs does not support shutdown -generic/050 [not run] fuse.gocryptfs does not support shutdown -generic/051 [not run] fuse.gocryptfs does not support shutdown -generic/052 [not run] fuse.gocryptfs does not support shutdown -generic/053 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/054 [not run] fuse.gocryptfs does not support shutdown -generic/055 [not run] fuse.gocryptfs does not support shutdown -generic/056 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/057 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/058 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/059 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/060 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/061 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/062 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/062.out.bad) - --- tests/generic/062.out 2018-01-20 14:29:39.067451950 +0100 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/062.out.bad 2019-10-10 22:34:34.290196880 +0200 - @@ -13,7 +13,7 @@ - - *** set/get one initially empty attribute - # file: SCRATCH_MNT/reg - -user.name - +user.name="" - - *** overwrite empty, set several new attributes - ... - (Run 'diff -u tests/generic/062.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/062.out.bad' to see the entire diff) -generic/063 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/064 [not run] xfs_io fiemap failed (old kernel/wrong fs?) -generic/065 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/066 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/067 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/068 [not run] fuse.gocryptfs does not support freezing -generic/069 221s ... 216s -generic/070 22s ... 9s -generic/071 1s ... 1s -generic/072 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) -generic/073 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/074 766s ... 328s -generic/075 69s ... 11s -generic/076 [not run] require /var/tmp/check-gocryptfs/scratchdev to be local device -generic/077 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/078 [not run] fs doesn't support RENAME_WHITEOUT -generic/079 [not run] file system doesn't support chattr +ia -generic/080 16s ... 2s -generic/081 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/082 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/083 15s ... 8s -generic/084 6s ... 5s -generic/085 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/086 15s ... 1s -generic/087 14s ... 0s -generic/088 14s ... 0s -generic/089 48s ... 53s -generic/090 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/091 19s ... 5s -generic/092 [not run] xfs_io fiemap failed (old kernel/wrong fs?) -generic/093 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/093.out.bad) - --- tests/generic/093.out 2018-06-27 21:12:13.629235005 +0200 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/093.out.bad 2019-10-10 22:45:22.194059446 +0200 - @@ -1,15 +1,22 @@ - QA output created by 093 - - **** Verifying that appending to file clears capabilities **** - -file = cap_chown+ep - +Failed to set capabilities on file '/var/tmp/check-gocryptfs/testdir/093.file' (Operation not supported) - +usage: setcap [-q] [-v] [-n ] (-r|-|) [ ... (-r|-|) ] - + - ... - (Run 'diff -u tests/generic/093.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/093.out.bad' to see the entire diff) -generic/094 [not run] xfs_io fiemap failed (old kernel/wrong fs?) -generic/095 [not run] fio utility required, skipped this test -generic/096 [not run] xfs_io fzero failed (old kernel/wrong fs?) -generic/097 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/097.out.bad) - --- tests/generic/097.out 2018-06-27 21:12:13.630235009 +0200 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/097.out.bad 2019-10-10 22:45:23.382064979 +0200 - @@ -110,18 +110,16 @@ - *** Test out the trusted namespace *** - - set EA : - +setfattr: TEST_DIR/foo: Operation not supported - - set EA : - - ... - (Run 'diff -u tests/generic/097.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/097.out.bad' to see the entire diff) -generic/098 1s ... 0s -generic/099 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/100 31s ... 15s -generic/101 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/102 32s ... 20s -generic/103 2s ... 2s -generic/104 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/105 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/106 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/107 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/108 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/109 3s ... 4s -generic/110 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/111 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/112 72s ... 14s -generic/113 155s ... 38s -generic/114 [not run] device block size: 4096 greater than 512 -generic/115 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/116 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/117 8s ... 10s -generic/118 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/119 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/120 [not run] atime related mount options have no effect on fuse.gocryptfs -generic/121 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/122 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/123 15s ... 1s -generic/124 19s ... 4s -generic/126 15s ... 1s -generic/127 540s ... 458s -generic/128 1s ... 0s -generic/129 43s ... 33s -generic/130 4s ... 5s -generic/131 16s ... 2s -generic/132 26s ... 17s -generic/133 79s ... 22s -generic/134 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/135 0s ... 1s -generic/136 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/137 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/138 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/139 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/140 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/141 1s ... 0s -generic/142 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/143 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/144 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/145 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/146 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/147 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/148 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/149 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/150 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/151 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/152 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/153 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/154 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/155 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/156 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/157 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/158 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/159 [not run] file system doesn't support chattr +i -generic/160 [not run] file system doesn't support chattr +i -generic/161 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/162 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/163 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/164 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/165 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/166 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/167 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/168 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/169 1s ... 1s -generic/170 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/171 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/172 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/173 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/174 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/175 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/176 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/177 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/178 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/179 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/180 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/181 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/182 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/183 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/184 16s ... 0s -generic/185 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/186 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/187 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/188 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/189 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/190 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/191 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/192 [not run] atime related mount options have no effect on fuse.gocryptfs -generic/193 16s ... 1s -generic/194 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/195 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/196 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/197 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/198 17s ... 1s -generic/199 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/200 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/201 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/202 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/203 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/204 20s ... 16s -generic/205 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/206 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/207 15s ... 1s -generic/208 216s ... 201s -generic/209 46s ... 31s -generic/210 15s ... 1s -generic/211 15s ... 1s -generic/212 15s ... 1s -generic/213 47s ... 20s -generic/214 15s ... 1s -generic/215 17s ... 4s -generic/216 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/217 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/218 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/219 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/220 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/221 17s ... 2s -generic/222 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/223 [not run] can't mkfs fuse.gocryptfs with geometry -generic/224 129s ... 34s -generic/225 [not run] xfs_io fiemap failed (old kernel/wrong fs?) -generic/226 14s ... 12s -generic/227 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/228 1s -generic/229 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/230 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/231 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/232 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/233 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/234 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/235 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/236 17s ... 2s -generic/237 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/238 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/239 21s ... 10s -generic/240 [not run] fs block size must be larger than the device block size. fs block size: 4096, device block size: 4096 -generic/241 87s ... 74s -generic/242 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/243 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/244 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/245 15s ... 1s -generic/246 16s ... 2s -generic/247 32s ... 13s -generic/248 12s ... 2s -generic/249 14s ... 4s -generic/250 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/252 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/253 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/254 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/255 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/256 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/257 12s ... 3s -generic/258 12s ... 2s -generic/259 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/260 [not run] FITRIM not supported on /var/tmp/check-gocryptfs/scratchdir -generic/261 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/262 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/263 30s ... 22s -generic/264 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/265 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/266 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/267 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/268 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/269 34s ... 29s -generic/270 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/271 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/272 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/273 56s ... 42s -generic/274 42s ... 50s -generic/275 46s ... 54s -generic/276 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/277 [not run] file system doesn't support chattr +A -generic/278 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/279 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/280 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/281 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/282 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/283 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/284 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/285 12s ... 3s -generic/286 35s ... 26s -generic/287 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/288 [not run] FITRIM not supported on /var/tmp/check-gocryptfs/scratchdir -generic/289 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/290 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/291 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/292 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/293 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/294 0s ... 1s -generic/295 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/296 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/297 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/298 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/299 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/300 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/301 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/302 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/303 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/304 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/305 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/306 12s ... 3s -generic/307 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/308 11s ... 2s -generic/309 13s ... 4s -generic/310 76s ... 69s -generic/311 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/312 2s ... 1s -generic/313 14s ... 7s -generic/314 11s ... 2s -generic/315 10s ... 3s -generic/316 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/317 0s ... 1s -generic/318 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/319 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/320 59s ... 48s -generic/321 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/322 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/323 131s ... 123s -generic/324 [not run] defragmentation not supported for fstype "fuse.gocryptfs" -generic/325 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/326 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/327 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/328 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/329 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/330 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/331 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/332 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/333 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/334 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/335 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/336 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/337 0s ... 0s -generic/338 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/339 13s ... 17s -generic/340 9s ... 4s -generic/341 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/342 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/343 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/344 36s ... 24s -generic/345 18s ... 8s -generic/346 29s ... 22s -generic/347 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/348 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/352 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/353 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/354 7s ... 5s -generic/355 11s ... 3s -generic/356 [not run] swapfiles are not supported -generic/357 [not run] swapfiles are not supported -generic/358 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/359 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/360 10s ... 2s -generic/361 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/362 [not run] this test requires richacl support on $SCRATCH_DEV -generic/363 [not run] this test requires richacl support on $SCRATCH_DEV -generic/364 [not run] this test requires richacl support on $SCRATCH_DEV -generic/365 [not run] this test requires richacl support on $SCRATCH_DEV -generic/366 [not run] this test requires richacl support on $SCRATCH_DEV -generic/367 [not run] this test requires richacl support on $SCRATCH_DEV -generic/368 [not run] this test requires richacl support on $SCRATCH_DEV -generic/369 [not run] this test requires richacl support on $SCRATCH_DEV -generic/370 [not run] this test requires richacl support on $SCRATCH_DEV -generic/371 159s ... 145s -generic/372 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/373 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/374 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/375 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/376 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/377 0s ... 0s -generic/378 11s ... 2s -generic/379 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/380 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/381 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/382 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/383 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/384 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/385 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/386 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/387 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/388 [not run] require /var/tmp/check-gocryptfs/scratchdev to be local device -generic/389 [not run] O_TMPFILE is not supported -generic/390 [not run] fuse.gocryptfs does not support freezing -generic/391 19s ... 9s -generic/392 [not run] fuse.gocryptfs does not support shutdown -generic/393 0s ... 1s -generic/394 16s ... 4s -generic/395 [not run] No encryption support for fuse.gocryptfs -generic/396 [not run] No encryption support for fuse.gocryptfs -generic/397 [not run] No encryption support for fuse.gocryptfs -generic/398 [not run] No encryption support for fuse.gocryptfs -generic/399 [not run] No encryption support for fuse.gocryptfs -generic/400 [not run] disk quotas not supported by this filesystem type: fuse.gocryptfs -generic/401 0s ... 0s -generic/402 [not run] no kernel support for y2038 sysfs switch -generic/403 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/403.out.bad) - --- tests/generic/403.out 2018-06-27 21:12:13.659235117 +0200 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/403.out.bad 2019-10-10 23:16:53.291612884 +0200 - @@ -1,2 +1,204 @@ - QA output created by 403 - +setfattr: /var/tmp/check-gocryptfs/scratchdir/file: Operation not supported - +/var/tmp/check-gocryptfs/scratchdir/file: trusted.small: Operation not supported - +setfattr: /var/tmp/check-gocryptfs/scratchdir/file: Operation not supported - +setfattr: /var/tmp/check-gocryptfs/scratchdir/file: Operation not supported - +setfattr: /var/tmp/check-gocryptfs/scratchdir/file: Operation not supported - +setfattr: /var/tmp/check-gocryptfs/scratchdir/file: Operation not supported - ... - (Run 'diff -u tests/generic/403.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/403.out.bad' to see the entire diff) -generic/404 [not run] xfs_io finsert failed (old kernel/wrong fs?) -generic/405 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/406 3s ... 2s -generic/407 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/408 [not run] Dedupe not supported by test filesystem type: fuse.gocryptfs -generic/409 [not run] require /var/tmp/check-gocryptfs/scratchdev to be local device -generic/410 [not run] require /var/tmp/check-gocryptfs/scratchdev to be local device -generic/411 [not run] require /var/tmp/check-gocryptfs/scratchdev to be local device -generic/412 2s ... 3s -generic/413 [not run] /var/tmp/check-gocryptfs/scratchdev fuse.gocryptfs does not support -o dax -generic/414 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/415 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/416 105s ... 102s -generic/417 [not run] fuse.gocryptfs does not support shutdown -generic/418 [not run] require /var/tmp/check-gocryptfs/testdev to be valid block disk -generic/419 [not run] No encryption support for fuse.gocryptfs -generic/420 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/421 [not run] No encryption support for fuse.gocryptfs -generic/422 15s ... 3s -generic/423 15s ... 4s -generic/424 [not run] file system doesn't support any of /usr/bin/chattr +a/+c/+d/+i -generic/425 [not run] xfs_io fiemap failed (old kernel/wrong fs?) -generic/426 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/426.out.bad) - --- tests/generic/426.out 2018-06-27 21:12:13.662235128 +0200 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/426.out.bad 2019-10-10 23:18:59.149149787 +0200 - @@ -1,5 +1,3077 @@ - QA output created by 426 - test_file_handles TEST_DIR/426-dir -d - test_file_handles TEST_DIR/426-dir - +open_by_handle(/var/tmp/check-gocryptfs/testdir/426-dir/file000000) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/426-dir/file000001) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/426-dir/file000002) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/426-dir/file000003) returned 116 incorrectly on a linked file! - ... - (Run 'diff -u tests/generic/426.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/426.out.bad' to see the entire diff) -generic/427 6s ... 4s -generic/428 15s ... 4s -generic/429 [not run] No encryption support for fuse.gocryptfs -generic/430 15s ... 4s -generic/431 15s ... 4s -generic/432 15s ... 4s -generic/433 15s ... 3s -generic/434 15s ... 4s -generic/435 [not run] No encryption support for fuse.gocryptfs -generic/436 15s ... 4s -generic/437 16s ... 4s -generic/438 57s ... 40s -generic/439 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/440 [not run] No encryption support for fuse.gocryptfs -generic/441 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/443 15s ... 4s -generic/444 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/445 15s ... 4s -generic/446 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/447 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/448 15s ... 4s -generic/449 [not run] ACLs not supported by this filesystem type: fuse.gocryptfs -generic/450 [not run] Only test on sector size < half of block size -generic/451 45s ... 34s -generic/452 0s ... 0s -generic/453 1s ... 1s -generic/454 1s ... 1s -generic/455 [not run] This test requires a valid $LOGWRITES_DEV -generic/456 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/457 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/458 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/459 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/460 [not run] This test requires at least 1GB free on /var/tmp/check-gocryptfs/scratchdir to run -generic/461 [not run] fuse.gocryptfs does not support shutdown -generic/462 [not run] /var/tmp/check-gocryptfs/scratchdev fuse.gocryptfs does not support -o dax -generic/463 [not run] Reflink not supported by test filesystem type: fuse.gocryptfs -generic/464 94s ... 63s -generic/465 5s ... 2s -generic/466 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/466.out.bad) - --- tests/generic/466.out 2018-06-27 21:12:13.667235146 +0200 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/466.out.bad 2019-10-10 23:22:14.813984485 +0200 - @@ -1,2 +1,3 @@ - QA output created by 466 - Silence is golden - +blockdev: ioctl error on BLKGETSIZE64: Inappropriate ioctl for device - ... - (Run 'diff -u tests/generic/466.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/466.out.bad' to see the entire diff) -generic/467 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/467.out.bad) - --- tests/generic/467.out 2018-06-27 21:12:13.667235146 +0200 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/467.out.bad 2019-10-10 23:22:22.324016522 +0200 - @@ -1,9 +1,82 @@ - QA output created by 467 - test_file_handles TEST_DIR/467-dir -dp - test_file_handles TEST_DIR/467-dir -rp - +open_by_handle(/var/tmp/check-gocryptfs/testdir/467-dir/file000000) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/467-dir/file000001) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/467-dir/file000002) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/467-dir/file000003) returned 116 incorrectly on a linked file! - ... - (Run 'diff -u tests/generic/467.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/467.out.bad' to see the entire diff) -generic/468 [not run] fuse.gocryptfs does not support shutdown -generic/469 16s ... 4s -generic/470 [not run] This test requires a valid $LOGWRITES_DEV -generic/471 [not run] xfs_io pwrite failed (old kernel/wrong fs?) -generic/472 [not run] swapfiles are not supported -generic/474 [not run] fuse.gocryptfs does not support shutdown -generic/475 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/476 979s ... 940s -generic/477 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/477.out.bad) - --- tests/generic/477.out 2018-06-27 21:12:13.669235154 +0200 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/477.out.bad 2019-10-10 23:38:15.586197915 +0200 - @@ -1,5 +1,48 @@ - QA output created by 477 - test_file_handles after cycle mount - +open_by_handle(/var/tmp/check-gocryptfs/testdir/file000000) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/file000001) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/file000002) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/file000003) returned 116 incorrectly on a linked file! - +open_by_handle(/var/tmp/check-gocryptfs/testdir/file000004) returned 116 incorrectly on a linked file! - ... - (Run 'diff -u tests/generic/477.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/477.out.bad' to see the entire diff) -generic/478 44s ... 35s -generic/479 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/480 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/481 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/482 [not run] This test requires a valid $LOGWRITES_DEV -generic/483 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/484 - output mismatch (see /home/jakob.donotbackup/code/fuse-xfstests/results//generic/484.out.bad) - --- tests/generic/484.out 2018-06-27 21:12:13.676235180 +0200 - +++ /home/jakob.donotbackup/code/fuse-xfstests/results//generic/484.out.bad 2019-10-10 23:38:54.996371174 +0200 - @@ -1,2 +1,3 @@ - QA output created by 484 - +record lock is not preserved across execve(2) - Silence is golden - ... - (Run 'diff -u tests/generic/484.out /home/jakob.donotbackup/code/fuse-xfstests/results//generic/484.out.bad' to see the entire diff) -generic/485 [not run] xfs_io finsert failed (old kernel/wrong fs?) -generic/486 0s ... 0s -generic/487 [not run] This test requires a valid $SCRATCH_LOGDEV -generic/488 1s ... 2s -generic/489 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/490 15s ... 3s -generic/491 [not run] fuse.gocryptfs does not support freezing -generic/492 [not run] xfs_io label support is missing (missing syscall?) -generic/493 [not run] swapfiles are not supported -generic/494 [not run] swapfiles are not supported -generic/495 [not run] swapfiles are not supported -generic/496 [not run] swapfiles are not supported -generic/497 [not run] swapfiles are not supported -generic/498 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/499 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) -generic/500 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/501 [not run] Reflink not supported by scratch filesystem type: fuse.gocryptfs -generic/502 [not run] require /var/tmp/check-gocryptfs/scratchdev to be valid block disk -generic/503 [not run] xfs_io fpunch failed (old kernel/wrong fs?) -generic/504 15s ... 3s -shared/001 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/002 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/003 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/004 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/006 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/008 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/009 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/010 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/032 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/272 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/289 [not run] not suitable for this filesystem type: fuse.gocryptfs -shared/298 [not run] not suitable for this filesystem type: fuse.gocryptfs -Ran: generic/001 generic/002 generic/003 generic/004 generic/005 generic/006 generic/007 generic/008 generic/009 generic/010 generic/011 generic/012 generic/013 generic/014 generic/015 generic/016 generic/017 generic/018 generic/020 generic/021 generic/022 generic/023 generic/024 generic/025 generic/026 generic/027 generic/028 generic/029 generic/030 generic/031 generic/032 generic/033 generic/034 generic/035 generic/036 generic/037 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/053 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/062 generic/063 generic/064 generic/065 generic/066 generic/067 generic/068 generic/069 generic/070 generic/071 generic/072 generic/073 generic/074 generic/075 generic/076 generic/077 generic/078 generic/079 generic/080 generic/081 generic/082 generic/083 generic/084 generic/085 generic/086 generic/087 generic/088 generic/089 generic/090 generic/091 generic/092 generic/093 generic/094 generic/095 generic/096 generic/097 generic/098 generic/099 generic/100 generic/101 generic/102 generic/103 generic/104 generic/105 generic/106 generic/107 generic/108 generic/109 generic/110 generic/111 generic/112 generic/113 generic/114 generic/115 generic/116 generic/117 generic/118 generic/119 generic/120 generic/121 generic/122 generic/123 generic/124 generic/126 generic/127 generic/128 generic/129 generic/130 generic/131 generic/132 generic/133 generic/134 generic/135 generic/136 generic/137 generic/138 generic/139 generic/140 generic/141 generic/142 generic/143 generic/144 generic/145 generic/146 generic/147 generic/148 generic/149 generic/150 generic/151 generic/152 generic/153 generic/154 generic/155 generic/156 generic/157 generic/158 generic/159 generic/160 generic/161 generic/162 generic/163 generic/164 generic/165 generic/166 generic/167 generic/168 generic/169 generic/170 generic/171 generic/172 generic/173 generic/174 generic/175 generic/176 generic/177 generic/178 generic/179 generic/180 generic/181 generic/182 generic/183 generic/184 generic/185 generic/186 generic/187 generic/188 generic/189 generic/190 generic/191 generic/192 generic/193 generic/194 generic/195 generic/196 generic/197 generic/198 generic/199 generic/200 generic/201 generic/202 generic/203 generic/204 generic/205 generic/206 generic/207 generic/208 generic/209 generic/210 generic/211 generic/212 generic/213 generic/214 generic/215 generic/216 generic/217 generic/218 generic/219 generic/220 generic/221 generic/222 generic/223 generic/224 generic/225 generic/226 generic/227 generic/228 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/236 generic/237 generic/238 generic/239 generic/240 generic/241 generic/242 generic/243 generic/244 generic/245 generic/246 generic/247 generic/248 generic/249 generic/250 generic/252 generic/253 generic/254 generic/255 generic/256 generic/257 generic/258 generic/259 generic/260 generic/261 generic/262 generic/263 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/277 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/284 generic/285 generic/286 generic/287 generic/288 generic/289 generic/290 generic/291 generic/292 generic/293 generic/294 generic/295 generic/296 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/303 generic/304 generic/305 generic/306 generic/307 generic/308 generic/309 generic/310 generic/311 generic/312 generic/313 generic/314 generic/315 generic/316 generic/317 generic/318 generic/319 generic/320 generic/321 generic/322 generic/323 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/330 generic/331 generic/332 generic/333 generic/334 generic/335 generic/336 generic/337 generic/338 generic/339 generic/340 generic/341 generic/342 generic/343 generic/344 generic/345 generic/346 generic/347 generic/348 generic/352 generic/353 generic/354 generic/355 generic/356 generic/357 generic/358 generic/359 generic/360 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/373 generic/374 generic/375 generic/376 generic/377 generic/378 generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/391 generic/392 generic/393 generic/394 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/401 generic/402 generic/403 generic/404 generic/405 generic/406 generic/407 generic/408 generic/409 generic/410 generic/411 generic/412 generic/413 generic/414 generic/415 generic/416 generic/417 generic/418 generic/419 generic/420 generic/421 generic/422 generic/423 generic/424 generic/425 generic/426 generic/427 generic/428 generic/429 generic/430 generic/431 generic/432 generic/433 generic/434 generic/435 generic/436 generic/437 generic/438 generic/439 generic/440 generic/441 generic/443 generic/444 generic/445 generic/446 generic/447 generic/448 generic/449 generic/450 generic/451 generic/452 generic/453 generic/454 generic/455 generic/456 generic/457 generic/458 generic/459 generic/460 generic/461 generic/462 generic/463 generic/464 generic/465 generic/466 generic/467 generic/468 generic/469 generic/470 generic/471 generic/472 generic/474 generic/475 generic/476 generic/477 generic/478 generic/479 generic/480 generic/481 generic/482 generic/483 generic/484 generic/485 generic/486 generic/487 generic/488 generic/489 generic/490 generic/491 generic/492 generic/493 generic/494 generic/495 generic/496 generic/497 generic/498 generic/499 generic/500 generic/501 generic/502 generic/503 generic/504 shared/001 shared/002 shared/003 shared/004 shared/006 shared/008 shared/009 shared/010 shared/032 shared/272 shared/289 shared/298 -Not run: generic/003 generic/004 generic/008 generic/009 generic/012 generic/016 generic/017 generic/018 generic/021 generic/022 generic/024 generic/025 generic/026 generic/031 generic/032 generic/033 generic/034 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/053 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/064 generic/065 generic/066 generic/067 generic/068 generic/072 generic/073 generic/076 generic/077 generic/078 generic/079 generic/081 generic/082 generic/085 generic/090 generic/092 generic/094 generic/095 generic/096 generic/099 generic/101 generic/104 generic/105 generic/106 generic/107 generic/108 generic/110 generic/111 generic/114 generic/115 generic/116 generic/118 generic/119 generic/120 generic/121 generic/122 generic/134 generic/136 generic/137 generic/138 generic/139 generic/140 generic/142 generic/143 generic/144 generic/145 generic/146 generic/147 generic/148 generic/149 generic/150 generic/151 generic/152 generic/153 generic/154 generic/155 generic/156 generic/157 generic/158 generic/159 generic/160 generic/161 generic/162 generic/163 generic/164 generic/165 generic/166 generic/167 generic/168 generic/170 generic/171 generic/172 generic/173 generic/174 generic/175 generic/176 generic/177 generic/178 generic/179 generic/180 generic/181 generic/182 generic/183 generic/185 generic/186 generic/187 generic/188 generic/189 generic/190 generic/191 generic/192 generic/194 generic/195 generic/196 generic/197 generic/199 generic/200 generic/201 generic/202 generic/203 generic/205 generic/206 generic/216 generic/217 generic/218 generic/219 generic/220 generic/222 generic/223 generic/225 generic/227 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/237 generic/238 generic/240 generic/242 generic/243 generic/244 generic/250 generic/252 generic/253 generic/254 generic/255 generic/256 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/270 generic/271 generic/272 generic/276 generic/277 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/284 generic/287 generic/288 generic/289 generic/290 generic/291 generic/292 generic/293 generic/295 generic/296 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/303 generic/304 generic/305 generic/307 generic/311 generic/316 generic/318 generic/319 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/330 generic/331 generic/332 generic/333 generic/334 generic/335 generic/336 generic/338 generic/341 generic/342 generic/343 generic/347 generic/348 generic/352 generic/353 generic/356 generic/357 generic/358 generic/359 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/372 generic/373 generic/374 generic/375 generic/376 generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/392 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/402 generic/404 generic/405 generic/407 generic/408 generic/409 generic/410 generic/411 generic/413 generic/414 generic/415 generic/417 generic/418 generic/419 generic/420 generic/421 generic/424 generic/425 generic/429 generic/435 generic/439 generic/440 generic/441 generic/444 generic/446 generic/447 generic/449 generic/450 generic/455 generic/456 generic/457 generic/458 generic/459 generic/460 generic/461 generic/462 generic/463 generic/468 generic/470 generic/471 generic/472 generic/474 generic/475 generic/479 generic/480 generic/481 generic/482 generic/483 generic/485 generic/487 generic/489 generic/491 generic/492 generic/493 generic/494 generic/495 generic/496 generic/497 generic/498 generic/499 generic/500 generic/501 generic/502 generic/503 shared/001 shared/002 shared/003 shared/004 shared/006 shared/008 shared/009 shared/010 shared/032 shared/272 shared/289 shared/298 -Failures: generic/035 generic/062 generic/093 generic/097 generic/403 generic/426 generic/466 generic/467 generic/477 generic/484 -Failed 10 of 507 tests - -Runtime was 4046 seconds -``` diff --git a/Documentation/duplicate-inodes.txt b/Documentation/duplicate-inodes.txt deleted file mode 100644 index 36fb89c..0000000 --- a/Documentation/duplicate-inodes.txt +++ /dev/null @@ -1,36 +0,0 @@ -ls: cannot access foo: No such file or directory -ls: cannot access foo: No such file or directory -ls: cannot access foo: No such file or directory -ls: cannot access foo: No such file or directory -36962337 -rwxrwxrwx 1 u1026 users 0 Nov 11 18:00 foo -36962337 -rwxrwxrwx 1 u1026 users 0 Nov 11 18:00 foo -36962337 -rwxrwxrwx 1 u1026 users 0 Nov 11 18:00 foo -36962337 -rwxrwxrwx 1 u1026 users 0 Nov 11 18:00 foo - - -u1026@d8min:/mnt/synology/public/tmp/g1$ strace -e lstat -p 8899 -f -Process 8899 attached with 10 threads -2017/11/11 18:12:21 Dispatch 238: LOOKUP, NodeId: 1. names: [foo] 4 bytes -[pid 10539] lstat("/mnt/synology/public/tmp/g1/a/4DZNVle_txclugO7n_FRIg", 0xc4241adbe8) = -1 ENOENT (No such file or directory) -2017/11/11 18:12:21 Serialize 238: LOOKUP code: OK value: {NodeId: 0 Generation=0 EntryValid=1.000 AttrValid=0.000 Attr={M00 SZ=0 L=0 0:0 B0*0 i0:0 A 0.000000000 M 0.000000000 C 0.000000000}} -2017/11/11 18:12:22 Dispatch 239: LOOKUP, NodeId: 1. names: [foo] 4 bytes -[pid 8903] lstat("/mnt/synology/public/tmp/g1/a/Xsy8mhdcIh0u9aiI7-iLiw", {st_mode=S_IFREG|0777, st_size=0, ...}) = 0 -2017/11/11 18:12:22 Serialize 239: LOOKUP code: OK value: {NodeId: 3 Generation=4 EntryValid=1.000 AttrValid=1.000 Attr={M0100777 SZ=0 L=1 1026:100 B0*16384 i0:36962337 A 1510419642.457639700 M 1510419642.457639700 C 1510419702.353712800}} - - -Call Trace: - -nodefs/fsops.go (c *rawBridge) Lookup - nodefs/fsops.go (c *FileSystemConnector) internalLookup - nodefs/inode.go (n *Inode) GetChild - pathfs/pathfs.go (n *pathInode) GetAttr - pathfs/pathfs.go (n *pathInode) GetPath - nodefs/inode.go (n *Inode) Parent() - pathfs/loopback.go (fs *loopbackFileSystem) GetAttr - -Call Trace 2 (new child): - -nodefs/fsops.go (c *rawBridge) Lookup - nodefs/fsops.go (c *FileSystemConnector) internalLookup - pathfs/pathfs.go (n *pathInode) Lookup - pathfs/pathfs.go (n *pathInode) findChild diff --git a/Documentation/extractloop.md b/Documentation/extractloop.md deleted file mode 100644 index eca66bb..0000000 --- a/Documentation/extractloop.md +++ /dev/null @@ -1,56 +0,0 @@ -# extractloop.bash results - -Memory usage stabilises at 141MiB, we do not run out of fds, -and the iteration time is stable around 38 seconds: - -![](extractloop_plot_csv.png) - -What the extractloop stress test does is (top comment in `tests/stress_tests/extractloop.bash`): - -``` -# Mount a gocryptfs filesystem somewhere on /tmp, then run two parallel -# infinite loops inside that do the following: -# 1) Extract linux-3.0.tar.gz -# 2) Verify the md5sums -# 3) Delete, go to (1) -# -# This test is good at discovering inode-related memory leaks because it creates -# huge numbers of files. -``` - -Test output (trimmed for brevity): -``` -~/go/src/github.com/rfjakob/gocryptfs/tests/stress_tests$ ./extractloop.bash - -20803 (process ID) old priority 0, new priority 19 -Testing gocryptfs -Test dir: /tmp/extractloop_tmpdir/SMc -'/tmp/extractloop.csv' -> '/tmp/extractloop_tmpdir/SMc.csv' -[looper 2] Starting -[looper 1] Starting -[looper 2] Iteration 1 done, 42 seconds, RSS 36020 kiB -[looper 1] Iteration 1 done, 42 seconds, RSS 36020 kiB -[looper 2] Iteration 2 done, 40 seconds, RSS 45400 kiB -[looper 1] Iteration 2 done, 40 seconds, RSS 45400 kiB -[looper 1] Iteration 3 done, 40 seconds, RSS 53396 kiB -[looper 2] Iteration 3 done, 40 seconds, RSS 53396 kiB -[looper 1] Iteration 4 done, 39 seconds, RSS 64588 kiB -[looper 2] Iteration 4 done, 40 seconds, RSS 64588 kiB -[looper 1] Iteration 5 done, 40 seconds, RSS 64588 kiB -[looper 2] Iteration 5 done, 39 seconds, RSS 64588 kiB -[looper 1] Iteration 6 done, 39 seconds, RSS 71628 kiB -[...] -[looper 1] Iteration 945 done, 38 seconds, RSS 140832 kiB -[looper 2] Iteration 946 done, 38 seconds, RSS 140832 kiB -[looper 1] Iteration 946 done, 38 seconds, RSS 140832 kiB -[looper 1] Iteration 947 done, 37 seconds, RSS 140832 kiB -[looper 2] Iteration 947 done, 37 seconds, RSS 140832 kiB -[looper 1] Iteration 948 done, 38 seconds, RSS 140832 kiB -[looper 2] Iteration 948 done, 38 seconds, RSS 140832 kiB -[looper 1] Iteration 949 done, 38 seconds, RSS 140832 kiB -[looper 2] Iteration 949 done, 38 seconds, RSS 140832 kiB -[looper 1] Iteration 950 done, 38 seconds, RSS 140832 kiB -[looper 2] Iteration 950 done, 38 seconds, RSS 140832 kiB -[looper 1] Iteration 951 done, 38 seconds, RSS 140832 kiB -[looper 2] Iteration 951 done, 38 seconds, RSS 140832 kiB -``` diff --git a/Documentation/extractloop_plot_csv.png b/Documentation/extractloop_plot_csv.png deleted file mode 100644 index 788fdb9..0000000 Binary files a/Documentation/extractloop_plot_csv.png and /dev/null differ diff --git a/Documentation/file-format.md b/Documentation/file-format.md deleted file mode 100644 index 04bd2fe..0000000 --- a/Documentation/file-format.md +++ /dev/null @@ -1,39 +0,0 @@ -File Format -=========== - -Header - - 2 bytes header version (big endian uint16, currently 2) - 16 bytes file id - -Data block, default AES-GCM mode - - 16 bytes GCM IV (nonce) - 1-4096 bytes encrypted data - 16 bytes GHASH - -Data block, AES-SIV mode (used in reverse mode, or when explicitly enabled with `-init -aessiv`) - - 16 bytes nonce - 16 bytes SIV - 1-4096 bytes encrypted data - -Full block overhead = 32/4096 = 1/128 = 0.78125 % - -Example: 1-byte file --------------------- - - Header 18 bytes - Data block 33 bytes - -Total: 51 bytes - - -Example: 5000-byte file ------------------------ - - Header 18 bytes - Data block 4128 bytes - Data block 936 bytes - -Total: 5082 bytes diff --git a/Documentation/folders-side-by-side.gif b/Documentation/folders-side-by-side.gif deleted file mode 100644 index c0664af..0000000 Binary files a/Documentation/folders-side-by-side.gif and /dev/null differ diff --git a/Documentation/gocryptfs-logo.png b/Documentation/gocryptfs-logo.png deleted file mode 100644 index 0965dc4..0000000 Binary files a/Documentation/gocryptfs-logo.png and /dev/null differ diff --git a/Documentation/performance-reverse.txt b/Documentation/performance-reverse.txt deleted file mode 100644 index 071b31d..0000000 --- a/Documentation/performance-reverse.txt +++ /dev/null @@ -1,10 +0,0 @@ -Results from benchmark-reverse.bash - -VERSION LS CAT ENV -------- --- ---- --- -v1.3 2.1 19.9 go1.9.2 -v1.4 2.1 18.2 -v1.5 3.4 19.6 go1.10.3, Linux 4.17.12 -v1.6 3.6 19.9 go1.10.3, Linux 4.17.12 - -(seconds) diff --git a/Documentation/performance.txt b/Documentation/performance.txt deleted file mode 100644 index ab35de1..0000000 --- a/Documentation/performance.txt +++ /dev/null @@ -1,86 +0,0 @@ -Tests of gocryptfs v1.7 and later are run on an -Intel Core i5-3470 CPU (quad-core Ivy Bridge, AES-NI supported). -Earlier tests on a Pentium G630 (Dual-core Sandy Bridge, no AES-NI). - -The working directory is on tmpfs. -The untar test uses https://cdn.kernel.org/pub/linux/kernel/v3.0/linux-3.0.tar.gz . -The archive is placed on tmpfs as well. - -WRITE: dd if=/dev/zero of=zero bs=131072 count=2000 -READ: dd if=zero of=/dev/null bs=131072 count=2000 -UNTAR: time tar xzf ../linux-3.0.tar.gz -MD5: time md5sum --quiet -c linux-3.0.md5sums -LS: time ls -lR linux-3.0 > /dev/null -RM: time rm -Rf linux-3.0 - -(or just run benchmark.bash) - -VERSION WRITE READ UNTAR MD5 LS RM ENV CHANGE? COMMIT MSG -********************** -* CPU = Pentium G630 * -********************** -v0.4 48 1.5 5 -v0.5-rc1 56 7 19 -v0.5-rc1-1 54 4.1 9 -v0.5-rc1-2 45 1.7 3.4 -v0.6 47 1.8 4.3 -v0.7 43 1.7 4.3 -v0.7.2 26 1.8 4.3 -v0.8 23 1.8 4.3 -v0.9-rc2 94 24 1.8 4.5 -v0.9 94 24 1.8 4.5 -v0.11 104 22 1.7 4.5 -v1.1 104 20 1.5 3.4 go1.7.1 -v1.1.1-34 112 22 1.5 3.6 go1.7.3 -v1.2.1-33 112 21 12 1.6 4.4 go1.8 --serialize_reads 116 21 39 1.5 4.4 (v1.2.1-33 with -serialize_reads) -v1.3-27 113 20 11 1.4 4.2 -v1.3-53-gf44902a 119 19 12 1.6 4.1 -v1.3-64-g80516ed 123 19 11 1.3 4.2 -v1.3-67-g9837cb0 125 19 11 1.4 4.2 go1.8.3, Linux 4.10 -v1.3-69-ge52594d 145 19.0 11.6 1.4 4.1 -v1.4-1-g3c6fe98 154 17.2 11.7 1.4 4.1 -v1.4-5-g0cc6f53 182 144 16.7 11.1 1.3 3.3 -v1.4-8-g80676c6 178 148 16.1 11.0 1.3 4.0 -v1.4-14-g9f4bd76 182 286 15.4 7.5 1.3 4.1 -v1.4-45-gd5671b7 183 282 14.9 7.3 1.1 2.9 -v1.4-45-gd5671b7 252 285 15.5 7.2 1.1 2.9 go1.8.3, Linux 4.11 -v1.4.1 253 285 16.0 7.4 1.3 3.0 go1.9, Linux 4.12.5 -v1.4.1-6-g276567e 258 289 16.1 7.5 1.3 3.0 -v1.5 228 292 17.6 9.3 1.5 3.5 go1.10.2, Linux 4.16.8 -v1.6 250 289 17.7 8.0 1.3 3.2 go1.10.3, Linux 4.17.12 -v1.7-beta1 229 278 17.1 8.8 1.7 3.2 go1.11.4, Linux 4.19.12 -v1.7-rc1 226 289 17.6 8.9 1.7 2.9 -******************************************** -* CPU = Core i5-3470, governor = powersave * -******************************************** -v1.7 232 698 12.2 9.4 1.7 4.3 go1.12.9, Linux 5.2.17 -v1.7.1 450 697 11.5 9.5 1.5 3.6 -********************************************** -* CPU = Core i5-3470, governor = performance * -********************************************** -v1.7.1 556 1000 9.0 4.2 0.9 2.0 go1.13.6, Linux 5.4.17 -v1.7.1 577 1100 8.3 4.2 0.9 2.0 go1.14.2, Linux 5.6.7 -v1.7.1-60-gb23f77c 472 1100 12.7 4.2 0.8 2.0 -v1.8.0 410 1000 17.5 6.7 5.4 7.8 go1.15.3, Linux 5.8.13 -v2.0-beta1 387 1100 36.2 14.4 12.8 19.3 -v2.0-beta1-5-gc943ed3 417 1000 30.4 12.7 9.9 16.4 -v2.0-beta1-6 529 1100 17.5 9.0 3.6 9.0 -v2.0-beta1-9-g029e44d 477 1000 15.5 8.7 2.8 7.6 -v2.0-beta2-16-geaca820 542 997 15.9 8.8 6.2 7.8 go1.16.2, Linux 5.11.10 fusefrontend: do not encrypt ACLs -v2.0-beta2-36-g6aae2aa 505 1000 16.1 8.2 6.3 7.7 -v2.0-beta2-37-g24d5d39 558 1000 12.3 6.4 4.4 2.8 fs: add initial dirfd caching -v2.0-beta2-42-g4a07d65 549 1000 8.2 4.7 1.8 2.4 fusefrontend: make dirCache work for "node itself" -v2.0 420 1000 8.5 4.5 1.8 2.3 go1.16.5, Linux 5.11.21 - -Results for EncFS for comparison (benchmark.bash -encfs): - -VERSION WRITE READ UNTAR MD5 LS RM -********************** -* CPU = Pentium G630 * -********************** -encfs v1.9.1 95 20 8 2.8 3.8 -********************************************** -* CPU = Core i5-3470, governor = performance * -********************************************** -encfs v1.9.5 138 459 12.2 5.1 2.2 3.0 diff --git a/Makefile b/Makefile deleted file mode 100644 index bdc05cf..0000000 --- a/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -.phony: build -build: - ./build.bash - ./Documentation/MANPAGE-render.bash - -.phony: test -test: - ./test.bash - -.phony: root_test -root_test: - ./build.bash - cd tests/root_test && go test -c && sudo ./root_test.test -test.v - -.phony: format -format: - go fmt ./... - -.phony: install -install: - install -Dm755 -t "$(DESTDIR)/usr/bin/" gocryptfs - install -Dm755 -t "$(DESTDIR)/usr/bin/" gocryptfs-xray/gocryptfs-xray - install -Dm644 -t "$(DESTDIR)/usr/share/man/man1/" Documentation/gocryptfs.1 - install -Dm644 -t "$(DESTDIR)/usr/share/man/man1/" Documentation/gocryptfs-xray.1 - install -Dm644 -t "$(DESTDIR)/usr/share/licenses/gocryptfs" LICENSE diff --git a/README.md b/README.md index cac5f97..ca05427 100644 --- a/README.md +++ b/README.md @@ -1,700 +1,6 @@ -[![gocryptfs](Documentation/gocryptfs-logo.png)](https://nuetzlich.net/gocryptfs/) -[![Build Status](https://travis-ci.org/rfjakob/gocryptfs.svg?branch=master)](https://travis-ci.org/rfjakob/gocryptfs) -[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) -[![Go Report Card](https://goreportcard.com/badge/github.com/rfjakob/gocryptfs)](https://goreportcard.com/report/github.com/rfjakob/gocryptfs) -[![Latest release](https://img.shields.io/github/release/rfjakob/gocryptfs.svg)](https://github.com/rfjakob/gocryptfs/releases) -[![Homebrew version](https://img.shields.io/homebrew/v/gocryptfs.svg)](https://formulae.brew.sh/formula/gocryptfs#default) +libgocryptfs is a re-desing of the original [gocryptfs](https://github.com/rfjakob/gocryptfs) code to work as a library. Volumes are not mounted with [FUSE](https://www.kernel.org/doc/html/latest/filesystems/fuse.html) but rather opened in memory and accessed through API calls. What the purpose ? +- Allow the use of gocryptfs in embedded devices where FUSE is not available (such as Android) +- Reduce attack surface by restricting volumes access to only one process rather than one user -An encrypted overlay filesystem written in Go. -Official website: https://nuetzlich.net/gocryptfs ([markdown source](https://github.com/rfjakob/gocryptfs-website/blob/master/docs/index.md)). - -![Folders side-by-side animation](Documentation/folders-side-by-side.gif) - -gocryptfs is built on top the excellent -[go-fuse](https://github.com/hanwen/go-fuse) FUSE library. -This project was inspired by EncFS and strives to fix its security -issues while providing good performance -([benchmarks](https://nuetzlich.net/gocryptfs/comparison/#performance)). -For details on the security of gocryptfs see the -[Security](https://nuetzlich.net/gocryptfs/security/) design document. - -All tags from v0.4 onward are signed by the *gocryptfs signing key*. -Please check [Signed Releases](https://nuetzlich.net/gocryptfs/releases/) -for details. - -Current Status --------------- - -gocryptfs has reached version 1.0 on July 17, 2016. It has gone through -hours and hours of stress (fsstress, extractloop.bash) and correctness -testing (xfstests). It is now considered ready for general consumption. - -The old principle still applies: Important data should have a backup. -Also, keep a copy of your master key (printed on mount) in a safe place. -This allows you to access the data even if the gocryptfs.conf config -file is damaged or you lose the password. - -The security of gocryptfs has been audited in March 3, 2017. The audit -is available [here (defuse.ca)](https://defuse.ca/audits/gocryptfs.htm). - -Platforms ---------- - -Linux is gocryptfs' native platform. - -Beta-quality Mac OS X support is available, which means most things work -fine but you may hit an occasional problem. Check out -[ticket #15](https://github.com/rfjakob/gocryptfs/issues/15) for the history -of Mac OS X support but please create a new ticket if you hit a problem. - -For Windows, an independent C++ reimplementation can be found here: -[cppcryptfs](https://github.com/bailey27/cppcryptfs) - -A standalone Python tool that can decrypt files & file names is here: -[gocryptfs-inspect](https://github.com/slackner/gocryptfs-inspect) - -Installation ------------- -Precompiled binaries that work on all x86_64 Linux systems are available for download from the github releases page. - -On Debian, gocryptfs is available as a deb package: -```bash -apt install gocryptfs -``` - -On Mac OS X, gocryptfs is available as a Homebrew formula: -```bash -brew install gocryptfs -``` - -On Fedora, gocryptfs is available as an rpm package: -```bash -sudo dnf install gocryptfs -``` - -If you use the standalone binary, make sure you install the `fuse` package -from your distributions package repository before running `gocryptfs`. - -See the [Quickstart](https://nuetzlich.net/gocryptfs/quickstart/) page for more info. - -Testing -------- - -gocryptfs comes with is own test suite that is constantly expanded as features are -added. Run it using `./test.bash`. It takes about 1 minute and requires FUSE -as it mounts several test filesystems. - -The `stress_tests` directory contains stress tests that run indefinitely. - -In addition, I have ported `xfstests` to FUSE, the result is the -[fuse-xfstests](https://github.com/rfjakob/fuse-xfstests) project. gocryptfs -passes the "generic" tests with one exception, results: [XFSTESTS.md](Documentation/XFSTESTS.md) - -A lot of work has gone into this. The testing has found bugs in gocryptfs -as well as in the go-fuse library. - -Compile -------- - -Install Go 1.11 or higher: - -* Debian/Ubuntu: `apt install golang` -* Fedora: `dnf install golang` - -Then, download the source code and compile: - - $ git clone https://github.com/rfjakob/gocryptfs.git - $ cd gocryptfs - $ ./build-without-openssl.bash - -This will compile a static binary that uses the Go stdlib crypto backend. - -If you want to use the OpenSSL crypto backend (faster on -old CPUs lacking AES-NI), you have to install a few dependencies: - -* Debian/Ubuntu: `apt install libssl-dev gcc pkg-config` -* Fedora: `dnf install openssl-devel gcc pkg-config` - -Then, run: - - $ ./build.bash - -Use ---- - - $ mkdir cipher plain - $ ./gocryptfs -init cipher - $ ./gocryptfs cipher plain - -See the [Quickstart](https://nuetzlich.net/gocryptfs/quickstart/) page for more info. - -The [MANPAGE.md](Documentation/MANPAGE.md) describes all available command-line options. - -Use: Reverse Mode ------------------ - - $ mkdir cipher plain - $ ./gocryptfs -reverse -init plain - $ ./gocryptfs -reverse plain cipher - -Graphical Interface -------------------- - -The [SiriKali](https://mhogomchungu.github.io/sirikali/) project supports -gocryptfs and runs on Linux and OSX. - -[cppcryptfs](https://github.com/bailey27/cppcryptfs) on Windows provides -its own GUI. - -Stable CLI ABI --------------- - -If you want to call gocryptfs from your app or script, see -[CLI_ABI.md](Documentation/CLI_ABI.md) for the official stable -ABI. This ABI is regression-tested by the test suite. - -Storage Overhead ----------------- - -* Empty files take 0 bytes on disk -* 18 byte file header for non-empty files (2 bytes version, 16 bytes random file id) -* 32 bytes of storage overhead per 4kB block (16 byte nonce, 16 bytes auth tag) - -[file-format.md](Documentation/file-format.md) contains a more detailed description. - -Performance ------------ - -Since version 0.7.2, gocryptfs is as fast as EncFS in the default mode, -and significantly faster than EncFS' "paranoia" mode that provides -a security level comparable to gocryptfs. - -On CPUs without AES-NI, gocryptfs uses OpenSSL through a thin wrapper called `stupidgcm`. -This provides a 4x speedup compared to Go's builtin AES-GCM -implementation. See [CPU-Benchmarks](https://github.com/rfjakob/gocryptfs/wiki/CPU-Benchmarks) -for details, or run `gocryptfs -speed` to see the encryption performance of your CPU. -Example for a CPU without AES-NI: - -``` -$ ./gocryptfs -speed -gocryptfs v2.0; go-fuse v2.1.1-0.20210508151621-62c5aa1919a7; 2021-06-06 go1.16.5 linux/amd64 -AES-GCM-256-OpenSSL 536.63 MB/s -AES-GCM-256-Go 831.84 MB/s (selected in auto mode) -AES-SIV-512-Go 155.85 MB/s -XChaCha20-Poly1305-Go 700.02 MB/s (benchmark only, not selectable yet) -``` - -You can run `./benchmark.bash` to run gocryptfs' canonical set of -benchmarks that include streaming write, extracting a linux kernel -tarball, recursively listing and finally deleting it. The output will -look like this: - -``` -$ ./benchmark.bash -Testing gocryptfs at /tmp/benchmark.bash.xFD: gocryptfs v2.0; go-fuse v2.1.1-0.20210508151621-62c5aa1919a7; 2021-06-06 go1.16.5 linux/amd64 -WRITE: 262144000 bytes (262 MB, 250 MiB) copied, 0,698174 s, 375 MB/s -READ: 262144000 bytes (262 MB, 250 MiB) copied, 0,268916 s, 975 MB/s -UNTAR: 8,970 -MD5: 4,846 -LS: 1,851 -RM: 2,367 -``` - -Changelog ---------- - -v2.0.1, 2021-06-07 -* Fix symlink creation reporting the wrong size, causing git to report it as modified - ([#574](https://github.com/rfjakob/gocryptfs/issues/574)) - -v2.0, 2021-06-05 -* Fix a few [issues discovered by xfstests](https://github.com/rfjakob/fuse-xfstests/wiki/results_2021-05-19) - * Biggest change: rewrite SEEK_HOLE / SEEK_DATA logic (now emulates 4k alignment) - -v2.0-beta4, 2021-05-15 -* **Make ACLs *actually* work (pass `-acl` to enable)** ([#536](https://github.com/rfjakob/gocryptfs/issues/536)) -* Blocklist `RENAME_EXCHANGE` and `RENAME_WHITEOUT` (broken as discovered by [fuse-xfstest/gocryptfs-2019-12](https://github.com/rfjakob/fuse-xfstests/tree/gocryptfs-2019-12)) - -v2.0-beta3, 2021-04-24 -* MANPAGE: Split options into sections acc. to where they apply ([#517](https://github.com/rfjakob/gocryptfs/issues/517)) -* `-idle`: count cwd inside the mount as busy ([#533](https://github.com/rfjakob/gocryptfs/issues/533)) -* Make `gocryptfs.diriv` and `gocryptfs.xxx.name` files world-readable to make encrypted backups easier - when mounting via [/etc/fstab](Documentation/MANPAGE.md#fstab) ([#539](https://github.com/rfjakob/gocryptfs/issues/539)) -* Make it work with MacFUSE v4.x ([#524](https://github.com/rfjakob/gocryptfs/issues/524)) -* **Disable ACL encryption**, it causes a lot of problems ([#543](https://github.com/rfjakob/gocryptfs/issues/543), - [#536](https://github.com/rfjakob/gocryptfs/issues/536)) - * Old encrypted ACLs are reported by `gocryptfs -fsck` but otherwise ignored - * This fixes inheritance, but does not yet enforce them correctly -* Include `gocryptfs-xray` in binary releases ([#496](https://github.com/rfjakob/gocryptfs/issues/496)) -* go-fuse: track *most recent* parent. This improves robustness when the filesystem is modified behind - the back of gocryptfs. Helps both with `-sharedstorage` and also without. - ([commit 1](https://github.com/hanwen/go-fuse/commit/c3186132bf8b7a04b5e5bc27489d88181f92e4e0), - [commit 2](https://github.com/hanwen/go-fuse/commit/a90e1f463c3f172a7690a6449fe5955a180dfec3), - [#549](https://github.com/rfjakob/gocryptfs/issues/549)) -* Add directory fd caching for 2x - 3x speed boost in small file ops compared to v2.0-beta2 - ([performance numbers](https://github.com/rfjakob/gocryptfs/blob/5cb1e55714aa92a848c0fb5fc3fa7b91625210fe/Documentation/performance.txt#L73)) - -v2.0-beta2, 2020-11-14 -* Improve [performance](Documentation/performance.txt#L69) -* Fix [GETATTR panic](https://github.com/rfjakob/gocryptfs/issues/519#issuecomment-718790790) in reverse mode - -v2.0-beta1, 2020-10-15 -* **Switch to the improved go-fuse [v2 API](https://pkg.go.dev/github.com/hanwen/go-fuse/v2@v2.0.3/fs)** - * This is a big change, a lot of code has been reorganized or rewritten - to fit the v2 API model. - * Please test & report bugs - * No changes to the on-disk format - * File descriptor caching is not yet implemented, - causing a slowdown. Caching will be implemented for v2.0 final. -* **Add support for FIDO2 tokens (`-fido2`, [#505](https://github.com/rfjakob/gocryptfs/pull/505))** -* Add `-encrypt-paths` / `-decrypt-paths` functionality to `gocryptfs-xray` - ([#416](https://github.com/rfjakob/gocryptfs/issues/416)) -* Accept multiple `-passfile`s - ([#288](https://github.com/rfjakob/gocryptfs/issues/288)) -* Make `-masterkey=stdin` work together with `-passwd` - ([#461](https://github.com/rfjakob/gocryptfs/issues/461)) -* Fix `Unknown opcode 2016` crash on Google Cloud - ([go-fuse #276](https://github.com/hanwen/go-fuse/issues/276), - [gocryptfs commit ec74d1d](https://github.com/rfjakob/gocryptfs/commit/ec74d1d2f4217a9a337d1db9902f32ae2aecaf33)) - -v1.8.0, 2020-05-09 -* Enable ACL support ([#453](https://github.com/rfjakob/gocryptfs/issues/453)) - * **Warning 2021-02-07**: This feature is incomplete! Do not use ACLs before gocryptfs v2.0 final! - Reading and writing ACLs works, but they are not enforced or inherited ([#542](https://github.com/rfjakob/gocryptfs/issues/542)) -* Ignore `.nfsXXX` temporary files - ([#367](https://github.com/rfjakob/gocryptfs/issues/431)) -* Handle inode number collisions from multiple devices - ([#435](https://github.com/rfjakob/gocryptfs/issues/435)) -* Drop `-nonempty` for fusermount3 - ([#440](https://github.com/rfjakob/gocryptfs/pull/440)) -* Reverse mode: improve inode number mapping and max=1000000000000000000 limitation - ([#457](https://github.com/rfjakob/gocryptfs/issues/457)) -* Enable `--buildmode=pie` ([#460](https://github.com/rfjakob/gocryptfs/pull/460)) -* Migrate from dep to Go Modules - ([commit cad711993](https://github.com/rfjakob/gocryptfs/commit/cad711993d67dd920f9749a09414dbbba6ab8136)) -* go mod: update dependencies - ([commit b23f77c](https://github.com/rfjakob/gocryptfs/commit/b23f77c8ead0dbb5ed59dd50e94f13aacf7dbaf1)) -* `gocryptfs -speed`: add XChaCha20-Poly1305-Go - ([#452](https://github.com/rfjakob/gocryptfs/issues/452)) -* Respect `GOMAXPROCS` environment variable - ([commit ff210a06f](https://github.com/rfjakob/gocryptfs/commit/ff210a06fb3097eecd5668ddb3ace9c76873eb00) -* Completely remove Trezor-related code (commit 1364b44ae356da31e24e5605fe73a307e9d6fb03) - * Has been disabled since v1.7 due to issues a third-party module. - * Please use FIDO2 instead (gocryptfs v2.0) - -v1.7.1, 2019-10-06 -* Support wild cards in reverse mode via `--exclude-wildcard` - ([#367](https://github.com/rfjakob/gocryptfs/pull/367)). Thanks @ekalin! -* Create `gocryptfs.diriv` files with 0440 permissions to make it easier to - share an encrypted folder via a network drive - ([#387](https://github.com/rfjakob/gocryptfs/issues/387)). - Note: as a security precaution, the owner must still manually - `chmod gocryptfs.conf 0440` to allow mounting. -* Allow the `nofail` option in `/etc/fstab` -* `-passwd` can now change the `-scryptn` parameter for existing filesystems - ([#400](https://github.com/rfjakob/gocryptfs/issues/400)) -* Fix `-idle` unmounting the filesystem despite recent activity - ([#421](https://github.com/rfjakob/gocryptfs/issues/421)) -* **Fix a race condition related to inode number reuse - ([#363](https://github.com/rfjakob/gocryptfs/issues/363))**. - It could be triggered by concurrently creating and deleting files and can lead to data loss - in the affected file. This bug was found by the automated tests on Travis - and was very hard to trigger locally. -* tests: use /var/tmp instead of /tmp by default - ([commit 8c4429](https://github.com/rfjakob/gocryptfs/commit/8c4429408716d9890a98a48c246d616dbfea7e31)) - -v1.7, 2019-03-17 -* **Fix possible symlink race attacks in forward mode** when using allow_other + plaintextnames - * If you use *both* `-allow_other` *and* `-plaintextnames`, you should upgrade. - Malicious users could trick gocryptfs into modifying files outside of `CIPHERDIR`, - or reading files inside `CIPHERDIR` that they should not have access to. - * If you do not use `-plaintextnames` (disabled per default), these attacks do - not work as symlinks are encrypted. - * Forward mode has been reworked to use the "\*at" family of system calls everywhere - (`Openat/Unlinkat/Symlinkat/...`). - * As a result, gocryptfs may run slightly slower, as the caching logic has been - replaced and is very simple at the moment. - * The possibility for such attacks was found during an internal code review. -* Reverse mode: fix excluded, unaccessible files showing up in directory listings - ([#285](https://github.com/rfjakob/gocryptfs/issues/285), - [#286](https://github.com/rfjakob/gocryptfs/issues/286)) -* gocryptfs-xray: add `-aessiv` flag for correctly parsing AES-SIV format files - ([#299](https://github.com/rfjakob/gocryptfs/issues/299)) -* Ensure that standard fds 0,1,2 are always initialized - ([#320](https://github.com/rfjakob/gocryptfs/issues/320)). - Prevents trouble in the unlikely case that gocryptfs is called with - stdin,stdout and/or stderr closed. -* `-extpass` now can be specified multiple times to support arguments containing spaces - ([#289](https://github.com/rfjakob/gocryptfs/issues/289)) -* Drop Fstatat, Mkdirat, Syslinkat, Fchownat, Unlinkat, Renameat, Openat emulation of MacOS - and instead use native functions (thanks @slackner !) -* Use `Setreuid` to robustly set the owner with allow_other (@slackner, - ([commit](https://github.com/rfjakob/gocryptfs/commit/03b9d65cce53fb95b7d489ecd03d0853b9b923fb))) -* Pack the rendered man page into the source code archive for user convenience - ([issue 355](https://github.com/rfjakob/gocryptfs/issues/355)) -* Disable Trezor support again (commit 16fac26c57ba303bf60266d24c17f5243e5ea376) - * Trezor support has been broken since Sept 2018 due to issues - in a third-party module ([#261](https://github.com/rfjakob/gocryptfs/issues/261)) - -v1.6.1, 2018-12-12 -* Fix "Operation not supported" chmod errors on Go 1.11 - ([#271](https://github.com/rfjakob/gocryptfs/issues/271)) - -v1.6, 2018-08-18 -* **Add `-e` / `-exclude` option** for reverse mode - ([#235](https://github.com/rfjakob/gocryptfs/issues/235), - [commit](https://github.com/rfjakob/gocryptfs/commit/ec2fdc19cf9358ae7ba09c528a5807b6b0760f9b)) -* Add support for the Trezor One HSM [PR#247](https://github.com/rfjakob/gocryptfs/pull/247), thanks @xaionaro! - * Use `./build.bash -tags enable_trezor` to compile with Trezor support - * Then, use `gocryptfs -init -trezor` to create a filesystem locked with a physical Trezor device. - * Note 2021-01-31: Support was removed again in gocryptfs v1.7. Please use `-fido2` in gocryptfs v2.0. -* Only print master key once, on init - ([#76](https://github.com/rfjakob/gocryptfs/issues/76), - [commit](https://github.com/rfjakob/gocryptfs/commit/6d64dfe8f7acd8e9ca4a659d26318e442c2db85a)) -* Fall back to buffered IO even when passed `O_DIRECT` - ([commit](https://github.com/rfjakob/gocryptfs/commit/893e41149ed353f355047003b89eeff456990e76)) - -v1.5, 2018-06-12 -* **Support extended attributes (xattr)** in forward mode - ([#217](https://github.com/rfjakob/gocryptfs/issues/217)). Older gocryptfs versions - will ignore the extended attributes. -* **Add `-fsck` function** - ([#191](https://github.com/rfjakob/gocryptfs/issues/191)) -* Fix clobbered timestamps on MacOS High Sierra - ([#229](https://github.com/rfjakob/gocryptfs/issues/229)) -* Add `-masterkey=stdin` functionality - ([#218](https://github.com/rfjakob/gocryptfs/issues/218)) -* Accept `-dev`/`-nodev`, `suid`/`nosuid`, `-exec`/`-noexec`, - `-ro`/`-rw` flags to make mounting via `/etc/fstab` possible. - Thanks @mahkoh! ([#233](https://github.com/rfjakob/gocryptfs/pull/233), - [commit](https://github.com/rfjakob/gocryptfs/commit/53d6a9999dd0e4c31636d16179f284fff35a35d9), - [commit](https://github.com/rfjakob/gocryptfs/commit/10212d791a3196c2c8705a7a3cccdeb14a8efdbe)) -* Fix a `logger` path issue on SuSE - [#225](https://github.com/rfjakob/gocryptfs/issues/225) -* Stop printing the help text on a "flag provided but not defined" - error ([commit](https://github.com/rfjakob/gocryptfs/commit/5ad26495fc86527bbfe75ac6b46528d49a373676)) - -v1.4.4, 2018-03-18 -* Overwrite secrets in memory with zeros as soon as possible - ([#211](https://github.com/rfjakob/gocryptfs/issues/211)) -* Fix Getdents problems on i386 and mips64le - ([#197](https://github.com/rfjakob/gocryptfs/issues/197), - [#200](https://github.com/rfjakob/gocryptfs/issues/200)) -* Make building with gccgo work - ([#201](https://github.com/rfjakob/gocryptfs/issues/201)) -* MacOS: fix `osxfuse: vnode changed generation` / `Error code -36` issue in go-fuse - ([#213](https://github.com/rfjakob/gocryptfs/issues/213), - [commit](https://github.com/hanwen/go-fuse/commit/a9ddcb8a4b609500fc59c89ccc9ee05f00a5fefd)) -* Fix various test issues on MacOS - -v1.4.3, 2018-01-21 -* **Fix several symlink race attacks** in connection with reverse mode - and allow_other. Thanks to @slackner for reporting and helping to fix - the issues: - * Fix symlink races in reverse mode - ([issue #165](https://github.com/rfjakob/gocryptfs/issues/165)) - * Fix symlink races in connection with `-allow_other` - ([issue #177](https://github.com/rfjakob/gocryptfs/issues/177)) -* Fix problems with special names when using `-plaintextnames` - ([issue #174](https://github.com/rfjakob/gocryptfs/issues/174)) -* Add `-devrandom` command-line option - ([commit](https://github.com/rfjakob/gocryptfs/commit/f3c777d5eaa682d878c638192311e52f9c204294)) -* Add `-sharedstorage` command-line option - ([commit](https://github.com/rfjakob/gocryptfs/commit/e36a0ebf189a826aaa63909c5518c16356f5f903), - [issue #156](https://github.com/rfjakob/gocryptfs/issues/156)) -* MacOS: let OSXFuse create the mountpoint if it does not exist - ([issue #194](https://github.com/rfjakob/gocryptfs/issues/194)) - -v1.4.2, 2017-11-01 -* Add `Gopkg.toml` file for `dep` vendoring and reproducible builds - ([issue #142](https://github.com/rfjakob/gocryptfs/issues/142)) -* MacOS: deal with `.DS_Store` files inside CIPHERDIR - ([issue #140](https://github.com/rfjakob/gocryptfs/issues/140)) -* Reverse mode: fix ENOENT error affecting names exactly 176 bytes long - ([issue #143](https://github.com/rfjakob/gocryptfs/issues/143)) -* Support kernels compiled with > 128 kiB FUSE request size (Synology NAS) - ([issue #145](https://github.com/rfjakob/gocryptfs/issues/145), - [commit](https://github.com/rfjakob/gocryptfs/commit/4954c87979efaf5b8184efccc7d9a38c21e4209b)) -* Fix a startup hang when `$PATH` contains the mountpoint - ([issue #146](https://github.com/rfjakob/gocryptfs/issues/146)) - -v1.4.1, 2017-08-21 -* **Use memory pools for buffer handling** ( - [3c6fe98](https://github.com/rfjakob/gocryptfs/commit/3c6fe98), - [b2a23e9](https://github.com/rfjakob/gocryptfs/commit/b2a23e9), - [12c0101](https://github.com/rfjakob/gocryptfs/commit/12c0101)) - * On my machine, this **doubles** the streaming read speed - (see [performance.txt](https://github.com/rfjakob/gocryptfs/blob/v1.4.1/Documentation/performance.txt#L38)) -* Implement and use the getdents(2) syscall for a more efficient - OpenDir implementation - ([e50a6a5](https://github.com/rfjakob/gocryptfs/commit/e50a6a5)) -* Purge masterkey from memory as soon as possible - ([issue #137](https://github.com/rfjakob/gocryptfs/issues/137)) -* Reverse mode: fix inode number collision between .name and .diriv - files - ([d12aa57](https://github.com/rfjakob/gocryptfs/commit/d12aa57)) -* Prevent the logger from holding stdout open - ([issue #130](https://github.com/rfjakob/gocryptfs/issues/130)) -* MacOS: make testing without openssl work properly - ([ccf1a84](https://github.com/rfjakob/gocryptfs/commit/ccf1a84)) -* MacOS: specify a volume name - ([9f8e19b](https://github.com/rfjakob/gocryptfs/commit/9f8e19b)) -* Enable writing to write-only files - ([issue #125](https://github.com/rfjakob/gocryptfs/issues/125)) - -v1.4, 2017-06-20 -* **Switch to static binary releases** - * From gocryptfs v1.4, I will only release statically-built binaries. - These support all Linux distributions but cannot use OpenSSL. - * OpenSSL is still supported - just compile from source! -* Add `-force_owner` option to allow files to be presented as owned by a - different user or group from the user running gocryptfs. Please see caveats - and guidance in the man page before using this functionality. -* Increase open file limit to 4096 ([#82](https://github.com/rfjakob/gocryptfs/issues/82)). -* Implement path decryption via ctlsock ([#84](https://github.com/rfjakob/gocryptfs/issues/84)). - Previously, decryption was only implemented for reverse mode. Now both - normal and reverse mode support both decryption and encryption of - paths via ctlsock. -* Add more specific exit codes for the most common failure modes, - documented in [CLI_ABI.md](Documentation/CLI_ABI.md) -* Reverse mode: make sure hard-linked files always return the same - ciphertext - ([commit 9ecf2d1a](https://github.com/rfjakob/gocryptfs/commit/9ecf2d1a3f69e3d995012073afe3fc664bd928f2)) -* Display a shorter, friendlier help text by default. -* **Parallelize file content encryption** by splitting data blocks into two - threads ([ticket#116](https://github.com/rfjakob/gocryptfs/issues/116)) -* Prefetch random nonces in the background - ([commit 80516ed](https://github.com/rfjakob/gocryptfs/commit/80516ed3351477793eec882508969b6b29b69b0a)) -* Add `-info` option to pretty-print infos about a filesystem. - -v1.3, 2017-04-29 -* **Use HKDF to derive separate keys for GCM and EME** - * New feature flag: `HKDF` (enabled by default) - * This is a forwards-compatible change. gocryptfs v1.3 can mount - filesystems created by earlier versions but not the other way round. -* **Enable Raw64 filename encoding by default (gets rid of trailing `==` characters)** - * This is a forwards-compatible change. gocryptfs v1.3 can mount - filesystems created by earlier versions but not the other way round. -* Drop Go 1.4 compatibility. You now need Go 1.5 (released 2015-08-19) - or higher to build gocryptfs. -* Add `-serialize_reads` command-line option - * This can greatly improve performance on storage - that is very slow for concurrent out-of-order reads. Example: - Amazon Cloud Drive ([#92](https://github.com/rfjakob/gocryptfs/issues/92)) -* Reject file-header-only files - ([#90 2.2](https://github.com/rfjakob/gocryptfs/issues/90), - [commit](https://github.com/rfjakob/gocryptfs/commit/14038a1644f17f50b113a05d09a2a0a3b3e973b2)) -* Increase max password size to 2048 bytes ([#93](https://github.com/rfjakob/gocryptfs/issues/93)) -* Use stable 64-bit inode numbers in reverse mode - * This may cause problems for very old 32-bit applications - that were compiled without Large File Support. -* Passing "--" now also blocks "-o" parsing - -v1.2.1, 2017-02-26 -* Add an integrated speed test, `gocryptfs -speed` -* Limit password size to 1000 bytes and reject trailing garbage after the newline -* Make the test suite work on [Mac OS X](https://github.com/rfjakob/gocryptfs/issues/15) -* Handle additional corner cases in `-ctlsock` path sanitization -* Use dedicated exit code 12 on "password incorrect" - -v1.2, 2016-12-04 -* Add a control socket interface. Allows to encrypt and decrypt filenames. - For details see [backintime#644](https://github.com/bit-team/backintime/issues/644#issuecomment-259835183). - * New command-line option: `-ctlsock` -* Under certain circumstances, concurrent truncate and read could return - an I/O error. This is fixed by introducing a global open file table - that stores the file IDs - ([commit](https://github.com/rfjakob/gocryptfs/commit/0489d08ae21107990d0efd0685443293aa26b35f)). -* Coalesce 4kB ciphertext block writes up to the size requested through - the write FUSE call - ([commit with benchmarks](https://github.com/rfjakob/gocryptfs/commit/024511d9c71558be4b1169d6bb43bd18d65539e0)) -* Add `-noprealloc` command-line option - * Greatly speeds up writes on Btrfs - ([#63](https://github.com/rfjakob/gocryptfs/issues/63)) - at the cost of reduced out-of-space robustness. - * This is a workaround for Btrfs' slow fallocate(2) -* Preserve owner for symlinks an device files (fixes bug [#64](https://github.com/rfjakob/gocryptfs/issues/64)) -* Include rendered man page `gocryptfs.1` in the release tarball - -v1.1.1, 2016-10-30 -* Fix a panic on setting file timestamps ([go-fuse#131](https://github.com/hanwen/go-fuse/pull/131)) -* Work around an issue in tmpfs that caused a panic in xfstests generic/075 - ([gocryptfs#56](https://github.com/rfjakob/gocryptfs/issues/56)) -* Optimize NFS streaming writes - ([commit](https://github.com/rfjakob/gocryptfs/commit/a08d55f42d5b11e265a8617bee16babceebfd026)) - -v1.1, 2016-10-19 -* **Add reverse mode ([#19](https://github.com/rfjakob/gocryptfs/issues/19))** - * AES-SIV (RFC5297) encryption to implement deterministic encryption - securely. Uses the excellent - [jacobsa/crypto](https://github.com/jacobsa/crypto) library. - The corresponding feature flag is called `AESSIV`. - * New command-line options: `-reverse`, `-aessiv` - * Filesystems using reverse mode can only be mounted with gocryptfs v1.1 - and later. - * The default, forward mode, stays fully compatible with older versions. - Forward mode will keep using GCM because it is much faster. -* Accept `-o foo,bar,baz`-style options that are passed at the end of - the command-line, like mount(1) does. All other options must still - precede the passed paths. - * This allows **mounting from /etc/fstab**. See - [#45](https://github.com/rfjakob/gocryptfs/issues/45) for details. - * **Mounting on login using pam_mount** works as well. It is - [described in the wiki](https://github.com/rfjakob/gocryptfs/wiki/Mounting-on-login-using-pam_mount). -* To prevent confusion, the old `-o` option had to be renamed. It is now - called `-ko`. Arguments to `-ko` are passed directly to the kernel. -* New `-passfile` command-line option. Provides an easier way to read - the password from a file. Internally, this is equivalent to - `-extpass "/bin/cat FILE"`. -* Enable changing the password when you only know the master key - ([#28](https://github.com/rfjakob/gocryptfs/issues/28)) - -v1.0, 2016-07-17 -* Deprecate very old filesystems, stage 3/3 - * Filesystems created by v0.6 can no longer be mounted - * Drop command-line options `-gcmiv128`, `-emenames`, `-diriv`. These - are now always enabled. -* Add fallocate(2) support -* New command-line option `-o` - * Allows to pass mount options directly to the kernel -* Add support for device files and suid binaries - * Only works when running as root - * Must be explicitly enabled by passing "-o dev" or "-o suid" or "-o suid,dev" -* Experimental Mac OS X support. See - [ticket #15](https://github.com/rfjakob/gocryptfs/issues/15) for details. - -v0.12, 2016-06-19 -* Deprecate very old filesystems, stage 2/3 - * Filesystems created by v0.6 and older can only be mounted read-only - * A [message](https://github.com/rfjakob/gocryptfs/blob/v0.12/internal/configfile/config_file.go#L120) - explaining the situation is printed as well -* New command line option: `-ro` - * Mounts the filesystem read-only -* Accept password from stdin as well ([ticket #30](https://github.com/rfjakob/gocryptfs/issues/30)) - -v0.11, 2016-06-10 -* Deprecate very old filesystems, stage 1/3 - * Filesystems created by v0.6 and older can still be mounted but a - [warning](https://github.com/rfjakob/gocryptfs/blob/v0.11/internal/configfile/config_file.go#L120) - is printed - * See [ticket #29](https://github.com/rfjakob/gocryptfs/issues/29) for details and - join the discussion -* Add rsync stress test "pingpong-rsync.bash" - * Fix chown and utimens failures that caused rsync to complain -* Build release binaries with Go 1.6.2 - * Big speedup for CPUs with AES-NI, see [ticket #23](https://github.com/rfjakob/gocryptfs/issues/23) - -v0.10, 2016-05-30 -* **Replace `spacemonkeygo/openssl` with `stupidgcm`** - * gocryptfs now has its own thin wrapper to OpenSSL's GCM implementation - called `stupidgcm`. - * This should fix the [compile issues](https://github.com/rfjakob/gocryptfs/issues/21) - people are seeing with `spacemonkeygo/openssl`. It also gets us - a 20% performance boost for streaming writes. -* **Automatically choose between OpenSSL and Go crypto** [issue #23](https://github.com/rfjakob/gocryptfs/issues/23) - * Go 1.6 added an optimized GCM implementation in amd64 assembly that uses AES-NI. - This is faster than OpenSSL and is used if available. In all other - cases OpenSSL is much faster and is used instead. - * `-openssl=auto` is the new default - * Passing `-openssl=true/false` overrides the autodetection. -* Warn but continue anyway if fallocate(2) is not supported by the - underlying filesystem, see [issue #22](https://github.com/rfjakob/gocryptfs/issues/22) - * Enables to use gocryptfs on ZFS and ext3, albeit with reduced out-of-space safety. -* [Fix statfs](https://github.com/rfjakob/gocryptfs/pull/27), by @lxp -* Fix a fsstress [failure](https://github.com/hanwen/go-fuse/issues/106) - in the go-fuse library. - -v0.9, 2016-04-10 -* **Long file name support** - * gocryptfs now supports file names up to 255 characters. - * This is a forwards-compatible change. gocryptfs v0.9 can mount filesystems - created by earlier versions but not the other way round. -* Refactor gocryptfs into multiple "internal" packages -* New command-line options: - * `-longnames`: Enable long file name support (default true) - * `-nosyslog`: Print messages to stdout and stderr instead of syslog (default false) - * `-wpanic`: Make warning messages fatal (used for testing) - * `-d`: Alias for `-debug` - * `-q`: Alias for `-quiet` - -v0.8, 2016-01-23 -* Redirect output to syslog when running in the background -* New command-line option: - * `-memprofile`: Write a memory allocation debugging profile the specified - file - -v0.7.2, 2016-01-19 -* **Fix performance issue in small file creation** - * This brings performance on-par with EncFS paranoia mode, with streaming writes - significantly faster - * The actual [fix](https://github.com/hanwen/go-fuse/commit/c4b6b7949716d13eec856baffc7b7941ae21778c) - is in the go-fuse library. There are no code changes in gocryptfs. - -v0.7.1, 2016-01-09 -* Make the `build.bash` script compatible with Go 1.3 -* Disable fallocate on OSX (system call not available) -* Introduce pre-built binaries for Fedora 23 and Debian 8 - -v0.7, 2015-12-20 -* **Extend GCM IV size to 128 bit from Go's default of 96 bit** - * This pushes back the birthday bound to make IV collisions virtually - impossible - * This is a forwards-compatible change. gocryptfs v0.7 can mount filesystems - created by earlier versions but not the other way round. -* New command-line option: - * `-gcmiv128`: Use 128-bit GCM IVs (default true) - -v0.6, 2015-12-08 -* **Wide-block filename encryption using EME + DirIV** - * EME (ECB-Mix-ECB) provides even better security than CBC as it fixes - the prefix leak. The used Go EME implementation is - https://github.com/rfjakob/eme which is, as far as I know, the first - implementation of EME in Go. - * This is a forwards-compatible change. gocryptfs v0.6 can mount filesystems - created by earlier versions but not the other way round. -* New command-line option: - * `-emenames`: Enable EME filename encryption (default true) - -v0.5.1, 2015-12-06 -* Fix a rename regression caused by DirIV and add test case -* Use fallocate to guard against out-of-space errors - -v0.5, 2015-12-04 -* **Stronger filename encryption: DirIV** - * Each directory gets a random 128 bit file name IV on creation, - stored in `gocryptfs.diriv` - * This makes it impossible to identify identically-named files across - directories - * A single-entry IV cache brings the performance cost of DirIV close to - zero for common operations (see performance.txt) - * This is a forwards-compatible change. gocryptfs v0.5 can mount filesystems - created by earlier versions but not the other way round. -* New command-line option: - * `-diriv`: Use the new per-directory IV file name encryption (default true) - * `-scryptn`: allows to set the scrypt cost parameter N. This option - can be used for faster mounting at the cost of lower brute-force - resistance. It was mainly added to speed up the automated tests. - -v0.4, 2015-11-15 -* New command-line options: - * `-plaintextnames`: disables filename encryption, added on user request - * `-extpass`: calls an external program for prompting for the password - * `-config`: allows to specify a custom gocryptfs.conf path -* Add `FeatureFlags` gocryptfs.conf parameter - * This is a config format change, hence the on-disk format is incremented - * Used for ext4-style filesystem feature flags. This should help avoid future - format changes. The first user is `-plaintextnames`. -* On-disk format 2 - -v0.3, 2015-11-01 -* **Add a random 128 bit file header to authenticate file->block ownership** - * This is an on-disk-format change -* On-disk format 1 - -v0.2, 2015-10-11 -* Replace bash daemonization wrapper with native Go implementation -* Better user feedback on mount failures - -v0.1, 2015-10-07 -* First release -* On-disk format 0 +## Warning ! +The only goal of this library is to be integrated in [DroidFS](https://forge.chapril.org/hardcoresushi/DroidFS). It's not actually ready for other usages. libgocryptfs doesn't implement all features provided by gocryptfs like symbolic links creation, thread-safety, reverse volume creation... Use it at your own risk ! \ No newline at end of file diff --git a/allocator/allocator32.go b/allocator/allocator32.go new file mode 100644 index 0000000..7fb5605 --- /dev/null +++ b/allocator/allocator32.go @@ -0,0 +1,13 @@ +// +build !arm64 +// +build !amd64 + +package allocator + +import ( + "C" + "unsafe" +) + +func Malloc(size int) unsafe.Pointer { + return C.malloc(C.uint(C.sizeof_int * size)) +} diff --git a/allocator/allocator64.go b/allocator/allocator64.go new file mode 100644 index 0000000..11a51d7 --- /dev/null +++ b/allocator/allocator64.go @@ -0,0 +1,12 @@ +// +build arm64 amd64 + +package allocator + +import ( + "C" + "unsafe" +) + +func Malloc(size int) unsafe.Pointer { + return C.malloc(C.ulong(C.sizeof_int * size)) +} diff --git a/benchmark-reverse.bash b/benchmark-reverse.bash deleted file mode 100755 index be98fc1..0000000 --- a/benchmark-reverse.bash +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash -eu - -# Benchmark gocryptfs' reverse mode - -cd "$(dirname "$0")" -MYNAME=$(basename "$0") -source tests/fuse-unmount.bash - -# Download /tmp/linux-3.0.tar.gz -./tests/dl-linux-tarball.bash - -cd /tmp -PLAIN=linux-3.0 - -SIZE=0 -if [[ -d $PLAIN ]]; then - SIZE=$(du -s --apparent-size $PLAIN | cut -f1) -fi - - -if [[ $SIZE -ne 412334 ]] ; then - echo "Extracting linux-3.0.tar.gz" - rm -Rf $PLAIN - tar xf linux-3.0.tar.gz -fi - -rm -f $PLAIN/.gocryptfs.reverse.conf -gocryptfs -q -init -reverse -extpass="echo test" -scryptn=10 $PLAIN - -MNT=$(mktemp -d /tmp/linux-3.0.reverse.mnt.XXX) - -# Cleanup trap -trap 'rm -f "$PLAIN/.gocryptfs.reverse.conf" ; fuse-unmount -z "$MNT" ; rmdir "$MNT"' EXIT - -# Mount -gocryptfs -q -reverse -extpass="echo test" "$PLAIN" "$MNT" - -# Execute command, discard all stdout output, print elapsed time -# (to stderr, unfortunately). -function etime { - # Make the bash builtin "time" print out only the elapse wall clock - # seconds - TIMEFORMAT=%R - time "$@" > /dev/null -} - -echo -n "LS: " -etime ls -lR "$MNT" -echo -n "CAT: " -etime find "$MNT" -type f -exec cat {} + diff --git a/benchmark.bash b/benchmark.bash deleted file mode 100755 index 578979d..0000000 --- a/benchmark.bash +++ /dev/null @@ -1,103 +0,0 @@ -#!/bin/bash -eu - -# Run the set of "canonical" benchmarks that are shown on -# https://nuetzlich.net/gocryptfs/comparison/ - -cd "$(dirname "$0")" -MYNAME=$(basename "$0") -source tests/fuse-unmount.bash - -function usage { - echo "Usage: $MYNAME [-encfs] [-openssl=true] [-openssl=false] [-dd] [DIR]" -} - -OPT_ENCFS=0 -OPT_LOOPBACK=0 -OPT_OPENSSL="" -OPT_DIR="" -DD_ONLY="" - -while [[ $# -gt 0 ]] ; do - case $1 in - -h) - usage - exit 1 - ;; - -encfs) - OPT_ENCFS=1 - ;; - -openssl=true) - OPT_OPENSSL="-openssl=true" - ;; - -openssl=false) - OPT_OPENSSL="-openssl=false" - ;; - -dd) - DD_ONLY=1 - ;; - -loopback) - OPT_LOOPBACK=1 - ;; - -*) - echo "Invalid option: $1" - usage - exit 2 - ;; - *) - if [[ -n $OPT_DIR ]] ; then - echo "Duplicate DIR argument: $1" - usage - exit 3 - fi - OPT_DIR=$1 - ;; - esac - shift -done - -if [[ -z $OPT_DIR ]] ; then - OPT_DIR=/tmp -fi - -# Create directories -CRYPT=$(mktemp -d "$OPT_DIR/$MYNAME.XXX") -MNT=$CRYPT.mnt -mkdir "$MNT" - -# Mount -if [[ $OPT_ENCFS -eq 1 ]]; then - if [[ -n $OPT_OPENSSL ]] ; then - echo "The option $OPT_OPENSSL only works with gocryptfs" - exit 1 - fi - echo -n "Testing EncFS at $CRYPT: " - encfs --version - encfs --extpass="echo test" --standard "$CRYPT" "$MNT" > /dev/null -elif [[ $OPT_LOOPBACK -eq 1 ]]; then - echo "Testing go-fuse loopback" - "$HOME/go/src/github.com/hanwen/go-fuse/example/loopback/loopback" "$MNT" "$CRYPT" & - sleep 0.5 -else - echo -n "Testing gocryptfs at $CRYPT: " - gocryptfs -version - gocryptfs -q -init -extpass="echo test" -scryptn=10 "$CRYPT" - gocryptfs -q -extpass="echo test" $OPT_OPENSSL "$CRYPT" "$MNT" -fi - -# Make sure we have actually mounted something -if ! mountpoint "$MNT" ; then - exit 1 -fi - -# Cleanup trap -trap 'cd /; fuse-unmount -z "$MNT"; rm -rf "$CRYPT" "$MNT"' EXIT - -# Benchmarks -if [[ $DD_ONLY -eq 1 ]]; then - echo -n "WRITE: " - dd if=/dev/zero "of=$MNT/zero" bs=131072 count=20000 2>&1 | tail -n 1 - rm "$MNT/zero" -else - ./tests/canonical-benchmarks.bash "$MNT" -fi - diff --git a/build-without-openssl.bash b/build-without-openssl.bash deleted file mode 100755 index d5dc218..0000000 --- a/build-without-openssl.bash +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -eu - -cd "$(dirname "$0")" - -CGO_ENABLED=0 source ./build.bash -tags without_openssl - -if ldd gocryptfs 2> /dev/null ; then - echo "build-without-openssl.bash: error: compiled binary is not static" - exit 1 -fi diff --git a/build.bash b/build.bash deleted file mode 100755 index 627a31d..0000000 --- a/build.bash +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/bash -eu -# -# Compile gocryptfs and bake the git version string of itself and the go-fuse -# library into the binary. -# -# If you want to fake a build date to reproduce a specific build, -# you can use: -# BUILDDATE=2017-02-03 ./build.bash -# or -# SOURCE_DATE_EPOCH=1544192417 ./build.bash -# . - -cd "$(dirname "$0")" - -# Make sure we have the go binary -go version > /dev/null - -# Enable Go Modules on Go 1.11 and 1.12 -# https://dev.to/maelvls/why-is-go111module-everywhere-and-everything-about-go-modules-24k#-raw-go111module-endraw-with-go-111-and-112 -export GO111MODULE=on - -# GOPATH may contain multiple paths separated by ":" -GOPATH1=$(go env GOPATH | cut -f1 -d:) - -# gocryptfs version according to git or a VERSION file -if [[ -d .git ]] ; then - GITVERSION=$(git describe --tags --dirty || echo "[no_tags_found]") - GITBRANCH=$(git rev-parse --abbrev-ref HEAD) - if [[ -n $GITBRANCH && $GITBRANCH != master ]] ; then - GITVERSION="$GITVERSION.$GITBRANCH" - fi -elif [[ -f VERSION ]] ; then - GITVERSION=$(cat VERSION) -else - echo "Warning: could not determine gocryptfs version" - GITVERSION="[unknown]" -fi - -# go-fuse version, if available -if [[ -d vendor/github.com/hanwen/go-fuse ]] ; then - GITVERSIONFUSE="[vendored]" -else - # go-fuse version according to Go Modules - FAIL=0 - OUT=$(go list -m github.com/hanwen/go-fuse/v2 | cut -d' ' -f2-) || FAIL=1 - if [[ $FAIL -eq 0 ]]; then - GITVERSIONFUSE=$OUT - else - echo "Warning: could not determine go-fuse version" - GITVERSIONFUSE="[unknown]" - fi -fi - -# Build date, something like "2017-09-06". Don't override BUILDDATE -# if it is already set. This may be done for reproducible builds. -if [[ -z ${BUILDDATE:-} ]] ; then - BUILDDATE=$(date +%Y-%m-%d) -fi - -# If SOURCE_DATE_EPOCH is set, it overrides BUILDDATE. This is the -# standard environment variable for faking the date in reproducible builds. -if [[ -n ${SOURCE_DATE_EPOCH:-} ]] ; then - BUILDDATE=$(date --utc --date="@${SOURCE_DATE_EPOCH}" +%Y-%m-%d) -fi - -# Only set GOFLAGS if it is not already set by the user -if [[ -z ${GOFLAGS:-} ]] ; then - GOFLAGS="" - # For reproducible builds, we get rid of $HOME references in the - # binary using "-trimpath". - # However, -trimpath needs Go 1.13+, and we support Go 1.11 and Go 1.12 - # too. So don't add it there. - GV=$(go version) - if [[ $GV != *"1.11"* && $GV != *"1.12"* ]] ; then - GOFLAGS="-trimpath" - fi - # Also, Fedora and Arch want pie enabled, so enable it. - # * https://fedoraproject.org/wiki/Changes/golang-buildmode-pie - # * https://github.com/rfjakob/gocryptfs/pull/460 - # But not with CGO_ENABLED=0 (https://github.com/golang/go/issues/30986)! - if [[ ${CGO_ENABLED:-1} -ne 0 ]] ; then - GOFLAGS="$GOFLAGS -buildmode=pie" - fi - export GOFLAGS -fi - -GO_LDFLAGS="-X \"main.GitVersion=$GITVERSION\" -X \"main.GitVersionFuse=$GITVERSIONFUSE\" -X \"main.BuildDate=$BUILDDATE\"" - -# If LDFLAGS is set, add it as "-extldflags". -if [[ -n ${LDFLAGS:-} ]] ; then - GO_LDFLAGS="$GO_LDFLAGS \"-extldflags=$LDFLAGS\"" -fi - -# Actual "go build" call for gocryptfs -go build "-ldflags=$GO_LDFLAGS" "$@" -# Additional binaries -for d in gocryptfs-xray contrib/statfs contrib/findholes contrib/atomicrename ; do - (cd "$d"; go build "-ldflags=$GO_LDFLAGS" "$@") -done - -./gocryptfs -version - -mkdir -p "$GOPATH1/bin" -cp -af gocryptfs "$GOPATH1/bin" diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..909f164 --- /dev/null +++ b/build.sh @@ -0,0 +1,72 @@ +#!/bin/bash + +if [ -z ${ANDROID_NDK_HOME+x} ]; then + echo "Error: \$ANDROID_NDK_HOME is not defined." +elif [ -z ${OPENSSL_PATH+x} ]; then + echo "Error: \$OPENSSL_PATH is not defined." +else + NDK_BIN_PATH="$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin" + declare -a ABIs=("x86_64" "x86" "arm64-v8a" "armeabi-v7a") + + compile_openssl(){ + if [ ! -d "./lib/$1" ]; then + if [ "$1" = "x86_64" ]; then + OPENSSL_ARCH="android-x86_64" + elif [ "$1" = "x86" ]; then + OPENSSL_ARCH="android-x86" + elif [ "$1" = "arm64-v8a" ]; then + OPENSSL_ARCH="android-arm64" + elif [ "$1" = "armeabi-v7a" ]; then + OPENSSL_ARCH="android-arm" + else + echo "Invalid ABI: $1" + exit + fi + + export CFLAGS=-D__ANDROID_API__=21 + export PATH=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin:$ANDROID_NDK_HOME/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin:$PATH + (cd "$OPENSSL_PATH" && if [ -f "Makefile" ]; then make clean; fi && ./Configure $OPENSSL_ARCH -D__ANDROID_API__=21 && make -j4 build_libs) + mkdir -p "./lib/$1" && cp "$OPENSSL_PATH/libcrypto.a" "$OPENSSL_PATH/libssl.a" "./lib/$1" + mkdir -p "./include/$1" && cp -r "$OPENSSL_PATH"/include/* "./include/$1/" + fi + } + + compile_for_arch() { + compile_openssl $1 + if [ "$1" = "x86_64" ]; then + CFN="x86_64-linux-android21-clang" + elif [ "$1" = "x86" ]; then + export GOARCH=386 + CFN="i686-linux-android21-clang" + elif [ "$1" = "arm64-v8a" ]; then + CFN="aarch64-linux-android21-clang" + export GOARCH=arm64 + export GOARM=7 + elif [ "$1" = "armeabi-v7a" ]; then + CFN="armv7a-linux-androideabi21-clang" + export GOARCH=arm + export GOARM=7 + else + echo "Invalid ABI: $1" + exit + fi + + export CC="$NDK_BIN_PATH/$CFN" + export CXX="$NDK_BIN_PATH/$CFN++" + export CGO_ENABLED=1 + export GOOS=android + export CGO_CFLAGS="-I ${PWD}/include/$1" + export CGO_LDFLAGS="-Wl,-soname=libgocryptfs.so -L${PWD}/lib/$1" + go build -o build/$1/libgocryptfs.so -buildmode=c-shared + } + + if [ "$#" -eq 1 ]; then + compile_for_arch $1 + else + for abi in ${ABIs[@]}; do + echo "Compiling for $abi..." + compile_for_arch $abi + done + fi + echo "Done." +fi \ No newline at end of file diff --git a/cli_args.go b/cli_args.go deleted file mode 100644 index 7743120..0000000 --- a/cli_args.go +++ /dev/null @@ -1,332 +0,0 @@ -package main - -// Should be initialized before anything else. -// This import line MUST be in the alphabitcally first source code file of -// package main! -import _ "github.com/rfjakob/gocryptfs/internal/ensurefds012" - -import ( - "flag" - "fmt" - "net" - "os" - "strconv" - "strings" - "time" - - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/stupidgcm" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// argContainer stores the parsed CLI options and arguments -type argContainer struct { - debug, init, zerokey, fusedebug, openssl, passwd, fg, version, - plaintextnames, quiet, nosyslog, wpanic, - longnames, allow_other, reverse, aessiv, nonempty, raw64, - noprealloc, speed, hkdf, serialize_reads, forcedecode, hh, info, - sharedstorage, devrandom, fsck bool - // Mount options with opposites - dev, nodev, suid, nosuid, exec, noexec, rw, ro, kernel_cache, acl bool - masterkey, mountpoint, cipherdir, cpuprofile, - memprofile, ko, ctlsock, fsname, force_owner, trace, fido2 string - // -extpass, -badname, -passfile can be passed multiple times - extpass, badname, passfile multipleStrings - // For reverse mode, several ways to specify exclusions. All can be specified multiple times. - exclude, excludeWildcard, excludeFrom multipleStrings - // Configuration file name override - config string - notifypid, scryptn int - // Idle time before autounmount - idle time.Duration - // Helper variables that are NOT cli options all start with an underscore - // _configCustom is true when the user sets a custom config file name. - _configCustom bool - // _ctlsockFd stores the control socket file descriptor (ctlsock stores the path) - _ctlsockFd net.Listener - // _forceOwner is, if non-nil, a parsed, validated Owner (as opposed to the string above) - _forceOwner *fuse.Owner - // _explicitScryptn is true then the user passed "-scryptn=xyz" - _explicitScryptn bool -} - -type multipleStrings []string - -func (s *multipleStrings) String() string { - s2 := []string(*s) - return fmt.Sprint(s2) -} - -func (s *multipleStrings) Set(val string) error { - *s = append(*s, val) - return nil -} - -func (s *multipleStrings) Empty() bool { - s2 := []string(*s) - return len(s2) == 0 -} - -var flagSet *flag.FlagSet - -// prefixOArgs transform options passed via "-o foo,bar" into regular options -// like "-foo -bar" and prefixes them to the command line. -// Testcases in TestPrefixOArgs(). -func prefixOArgs(osArgs []string) ([]string, error) { - // Need at least 3, example: gocryptfs -o foo,bar - // ^ 0 ^ 1 ^ 2 - if len(osArgs) < 3 { - return osArgs, nil - } - // Passing "--" disables "-o" parsing. Ignore element 0 (program name). - for _, v := range osArgs[1:] { - if v == "--" { - return osArgs, nil - } - } - // Find and extract "-o foo,bar" - var otherArgs, oOpts []string - for i := 1; i < len(osArgs); i++ { - if osArgs[i] == "-o" { - // Last argument? - if i+1 >= len(osArgs) { - return nil, fmt.Errorf("The \"-o\" option requires an argument") - } - oOpts = strings.Split(osArgs[i+1], ",") - // Skip over the arguments to "-o" - i++ - } else if strings.HasPrefix(osArgs[i], "-o=") { - oOpts = strings.Split(osArgs[i][3:], ",") - } else { - otherArgs = append(otherArgs, osArgs[i]) - } - } - // Start with program name - newArgs := []string{osArgs[0]} - // Add options from "-o" - for _, o := range oOpts { - if o == "" { - continue - } - if o == "o" || o == "-o" { - tlog.Fatal.Printf("You can't pass \"-o\" to \"-o\"") - os.Exit(exitcodes.Usage) - } - newArgs = append(newArgs, "-"+o) - } - // Add other arguments - newArgs = append(newArgs, otherArgs...) - return newArgs, nil -} - -// parseCliOpts - parse command line options (i.e. arguments that start with "-") -func parseCliOpts() (args argContainer) { - var err error - var opensslAuto string - - os.Args, err = prefixOArgs(os.Args) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.Usage) - } - - flagSet = flag.NewFlagSet(tlog.ProgramName, flag.ContinueOnError) - flagSet.Usage = func() {} - flagSet.BoolVar(&args.debug, "d", false, "") - flagSet.BoolVar(&args.debug, "debug", false, "Enable debug output") - flagSet.BoolVar(&args.fusedebug, "fusedebug", false, "Enable fuse library debug output") - flagSet.BoolVar(&args.init, "init", false, "Initialize encrypted directory") - flagSet.BoolVar(&args.zerokey, "zerokey", false, "Use all-zero dummy master key") - // Tri-state true/false/auto - flagSet.StringVar(&opensslAuto, "openssl", "auto", "Use OpenSSL instead of built-in Go crypto") - flagSet.BoolVar(&args.passwd, "passwd", false, "Change password") - flagSet.BoolVar(&args.fg, "f", false, "") - flagSet.BoolVar(&args.fg, "fg", false, "Stay in the foreground") - flagSet.BoolVar(&args.version, "version", false, "Print version and exit") - flagSet.BoolVar(&args.plaintextnames, "plaintextnames", false, "Do not encrypt file names") - flagSet.BoolVar(&args.quiet, "q", false, "") - flagSet.BoolVar(&args.quiet, "quiet", false, "Quiet - silence informational messages") - flagSet.BoolVar(&args.nosyslog, "nosyslog", false, "Do not redirect output to syslog when running in the background") - flagSet.BoolVar(&args.wpanic, "wpanic", false, "When encountering a warning, panic and exit immediately") - flagSet.BoolVar(&args.longnames, "longnames", true, "Store names longer than 176 bytes in extra files") - flagSet.BoolVar(&args.allow_other, "allow_other", false, "Allow other users to access the filesystem. "+ - "Only works if user_allow_other is set in /etc/fuse.conf.") - flagSet.BoolVar(&args.reverse, "reverse", false, "Reverse mode") - flagSet.BoolVar(&args.aessiv, "aessiv", false, "AES-SIV encryption") - flagSet.BoolVar(&args.nonempty, "nonempty", false, "Allow mounting over non-empty directories") - flagSet.BoolVar(&args.raw64, "raw64", true, "Use unpadded base64 for file names") - flagSet.BoolVar(&args.noprealloc, "noprealloc", false, "Disable preallocation before writing") - flagSet.BoolVar(&args.speed, "speed", false, "Run crypto speed test") - flagSet.BoolVar(&args.hkdf, "hkdf", true, "Use HKDF as an additional key derivation step") - flagSet.BoolVar(&args.serialize_reads, "serialize_reads", false, "Try to serialize read operations") - flagSet.BoolVar(&args.forcedecode, "forcedecode", false, "Force decode of files even if integrity check fails."+ - " Requires gocryptfs to be compiled with openssl support and implies -openssl true") - flagSet.BoolVar(&args.hh, "hh", false, "Show this long help text") - flagSet.BoolVar(&args.info, "info", false, "Display information about CIPHERDIR") - flagSet.BoolVar(&args.sharedstorage, "sharedstorage", false, "Make concurrent access to a shared CIPHERDIR safer") - flagSet.BoolVar(&args.devrandom, "devrandom", false, "Use /dev/random for generating master key") - flagSet.BoolVar(&args.fsck, "fsck", false, "Run a filesystem check on CIPHERDIR") - - // Mount options with opposites - flagSet.BoolVar(&args.dev, "dev", false, "Allow device files") - flagSet.BoolVar(&args.nodev, "nodev", false, "Deny device files") - flagSet.BoolVar(&args.suid, "suid", false, "Allow suid binaries") - flagSet.BoolVar(&args.nosuid, "nosuid", false, "Deny suid binaries") - flagSet.BoolVar(&args.exec, "exec", false, "Allow executables") - flagSet.BoolVar(&args.noexec, "noexec", false, "Deny executables") - flagSet.BoolVar(&args.rw, "rw", false, "Mount the filesystem read-write") - flagSet.BoolVar(&args.ro, "ro", false, "Mount the filesystem read-only") - flagSet.BoolVar(&args.kernel_cache, "kernel_cache", false, "Enable the FUSE kernel_cache option") - flagSet.BoolVar(&args.acl, "acl", false, "Enforce ACLs") - - flagSet.StringVar(&args.masterkey, "masterkey", "", "Mount with explicit master key") - flagSet.StringVar(&args.cpuprofile, "cpuprofile", "", "Write cpu profile to specified file") - flagSet.StringVar(&args.memprofile, "memprofile", "", "Write memory profile to specified file") - flagSet.StringVar(&args.config, "config", "", "Use specified config file instead of CIPHERDIR/gocryptfs.conf") - flagSet.StringVar(&args.ko, "ko", "", "Pass additional options directly to the kernel, comma-separated list") - flagSet.StringVar(&args.ctlsock, "ctlsock", "", "Create control socket at specified path") - flagSet.StringVar(&args.fsname, "fsname", "", "Override the filesystem name") - flagSet.StringVar(&args.force_owner, "force_owner", "", "uid:gid pair to coerce ownership") - flagSet.StringVar(&args.trace, "trace", "", "Write execution trace to file") - flagSet.StringVar(&args.fido2, "fido2", "", "Protect the masterkey using a FIDO2 token instead of a password") - - // Exclusion options - flagSet.Var(&args.exclude, "e", "Alias for -exclude") - flagSet.Var(&args.exclude, "exclude", "Exclude relative path from reverse view") - flagSet.Var(&args.excludeWildcard, "ew", "Alias for -exclude-wildcard") - flagSet.Var(&args.excludeWildcard, "exclude-wildcard", "Exclude path from reverse view, supporting wildcards") - flagSet.Var(&args.excludeFrom, "exclude-from", "File from which to read exclusion patterns (with -exclude-wildcard syntax)") - - // multipleStrings options ([]string) - flagSet.Var(&args.extpass, "extpass", "Use external program for the password prompt") - flagSet.Var(&args.badname, "badname", "Glob pattern invalid file names that should be shown") - flagSet.Var(&args.passfile, "passfile", "Read password from file") - - flagSet.IntVar(&args.notifypid, "notifypid", 0, "Send USR1 to the specified process after "+ - "successful mount - used internally for daemonization") - const scryptn = "scryptn" - flagSet.IntVar(&args.scryptn, scryptn, configfile.ScryptDefaultLogN, "scrypt cost parameter logN. Possible values: 10-28. "+ - "A lower value speeds up mounting and reduces its memory needs, but makes the password susceptible to brute-force attacks") - - flagSet.DurationVar(&args.idle, "i", 0, "Alias for -idle") - flagSet.DurationVar(&args.idle, "idle", 0, "Auto-unmount after specified idle duration (ignored in reverse mode). "+ - "Durations are specified like \"500s\" or \"2h45m\". 0 means stay mounted indefinitely.") - - var nofail bool - flagSet.BoolVar(&nofail, "nofail", false, "Ignored for /etc/fstab compatibility") - - var dummyString string - flagSet.StringVar(&dummyString, "o", "", "For compatibility with mount(1), options can be also passed as a comma-separated list to -o on the end.") - // Actual parsing - err = flagSet.Parse(os.Args[1:]) - if err == flag.ErrHelp { - helpShort() - os.Exit(0) - } - if err != nil { - tlog.Fatal.Printf("Invalid command line: %s. Try '%s -help'.", prettyArgs(), tlog.ProgramName) - os.Exit(exitcodes.Usage) - } - // We want to know if -scryptn was passed explicitly - if isFlagPassed(flagSet, scryptn) { - args._explicitScryptn = true - } - // "-openssl" needs some post-processing - if opensslAuto == "auto" { - args.openssl = stupidgcm.PreferOpenSSL() - } else { - args.openssl, err = strconv.ParseBool(opensslAuto) - if err != nil { - tlog.Fatal.Printf("Invalid \"-openssl\" setting: %v", err) - os.Exit(exitcodes.Usage) - } - } - // "-forcedecode" only works with openssl. Check compilation and command line parameters - if args.forcedecode == true { - if stupidgcm.BuiltWithoutOpenssl == true { - tlog.Fatal.Printf("The -forcedecode flag requires openssl support, but gocryptfs was compiled without it!") - os.Exit(exitcodes.Usage) - } - if args.aessiv == true { - tlog.Fatal.Printf("The -forcedecode and -aessiv flags are incompatible because they use different crypto libs (openssl vs native Go)") - os.Exit(exitcodes.Usage) - } - if args.reverse == true { - tlog.Fatal.Printf("The reverse mode and the -forcedecode option are not compatible") - os.Exit(exitcodes.Usage) - } - // Has the user explicitly disabled openssl using "-openssl=false/0"? - if !args.openssl && opensslAuto != "auto" { - tlog.Fatal.Printf("-forcedecode requires openssl, but is disabled via command-line option") - os.Exit(exitcodes.Usage) - } - args.openssl = true - - // Try to make it harder for the user to shoot himself in the foot. - args.ro = true - args.allow_other = false - args.ko = "noexec" - } - if !args.extpass.Empty() && len(args.passfile) != 0 { - tlog.Fatal.Printf("The options -extpass and -passfile cannot be used at the same time") - os.Exit(exitcodes.Usage) - } - if len(args.passfile) != 0 && args.masterkey != "" { - tlog.Fatal.Printf("The options -passfile and -masterkey cannot be used at the same time") - os.Exit(exitcodes.Usage) - } - if !args.extpass.Empty() && args.masterkey != "" { - tlog.Fatal.Printf("The options -extpass and -masterkey cannot be used at the same time") - os.Exit(exitcodes.Usage) - } - if !args.extpass.Empty() && args.fido2 != "" { - tlog.Fatal.Printf("The options -extpass and -fido2 cannot be used at the same time") - os.Exit(exitcodes.Usage) - } - if args.idle < 0 { - tlog.Fatal.Printf("Idle timeout cannot be less than 0") - os.Exit(exitcodes.Usage) - } - return args -} - -// prettyArgs pretty-prints the command-line arguments. -func prettyArgs() string { - pa := fmt.Sprintf("%v", os.Args) - // Get rid of "[" and "]" - pa = pa[1 : len(pa)-1] - return pa -} - -// countOpFlags counts the number of operation flags we were passed. -func countOpFlags(args *argContainer) int { - var count int - if args.info { - count++ - } - if args.passwd { - count++ - } - if args.init { - count++ - } - if args.fsck { - count++ - } - return count -} - -// isFlagPassed finds out if the flag was explictely passed on the command line. -// https://stackoverflow.com/a/54747682/1380267 -func isFlagPassed(flagSet *flag.FlagSet, name string) bool { - found := false - flagSet.Visit(func(f *flag.Flag) { - if f.Name == name { - found = true - } - }) - return found -} diff --git a/cli_args_test.go b/cli_args_test.go deleted file mode 100644 index 8e5ae3d..0000000 --- a/cli_args_test.go +++ /dev/null @@ -1,90 +0,0 @@ -package main - -import ( - "reflect" - "testing" -) - -type testcase struct { - // i is the input - i []string - // o is the expected output - o []string - // Do we expect an error? - e bool -} - -// TestPrefixOArgs checks that the "-o x,y,z" parsing works correctly. -func TestPrefixOArgs(t *testing.T) { - testcases := []testcase{ - { - i: nil, - o: nil, - }, - { - i: []string{"gocryptfs"}, - o: []string{"gocryptfs"}, - }, - { - i: []string{"gocryptfs", "-v"}, - o: []string{"gocryptfs", "-v"}, - }, - { - i: []string{"gocryptfs", "foo", "bar", "-v"}, - o: []string{"gocryptfs", "foo", "bar", "-v"}, - }, - { - i: []string{"gocryptfs", "foo", "bar", "-o", "a"}, - o: []string{"gocryptfs", "-a", "foo", "bar"}, - }, - { - i: []string{"gocryptfs", "foo", "bar", "-o", "a,b,xxxxx"}, - o: []string{"gocryptfs", "-a", "-b", "-xxxxx", "foo", "bar"}, - }, - { - i: []string{"gocryptfs", "foo", "bar", "-d", "-o=a,b,xxxxx"}, - o: []string{"gocryptfs", "-a", "-b", "-xxxxx", "foo", "bar", "-d"}, - }, - { - i: []string{"gocryptfs", "foo", "bar", "-oooo", "a,b,xxxxx"}, - o: []string{"gocryptfs", "foo", "bar", "-oooo", "a,b,xxxxx"}, - }, - // https://github.com/mhogomchungu/sirikali/blob/a36d91d3e39f0c1eb9a79680ed6c28ddb6568fa8/src/siritask.cpp#L192 - { - i: []string{"gocryptfs", "-o", "rw", "--config", "fff", "ccc", "mmm"}, - o: []string{"gocryptfs", "-rw", "--config", "fff", "ccc", "mmm"}, - }, - // "--" should also block "-o" parsing. - { - i: []string{"gocryptfs", "foo", "bar", "--", "-o", "a"}, - o: []string{"gocryptfs", "foo", "bar", "--", "-o", "a"}, - }, - { - i: []string{"gocryptfs", "--", "-o", "a"}, - o: []string{"gocryptfs", "--", "-o", "a"}, - }, - // This should error out - { - i: []string{"gocryptfs", "foo", "bar", "-o"}, - e: true, - }, - } - for _, tc := range testcases { - o, err := prefixOArgs(tc.i) - e := (err != nil) - if !reflect.DeepEqual(o, tc.o) || e != tc.e { - t.Errorf("\n in=%q\nwant=%q err=%v\n got=%q err=%v", tc.i, tc.o, tc.e, o, e) - } - } -} - -func TestStringSlice(t *testing.T) { - var s multipleStrings - s.Set("foo") - s.Set("bar") - want := "[foo bar]" - have := s.String() - if want != have { - t.Errorf("Wrong string representation: want=%q have=%q", want, have) - } -} diff --git a/codelingo.yaml b/codelingo.yaml deleted file mode 100644 index 8e5d778..0000000 --- a/codelingo.yaml +++ /dev/null @@ -1,4 +0,0 @@ -tenets: -- import: codelingo/effective-go -- import: codelingo/code-review-comments -- import: codelingo/rfjakob-gocryptfs diff --git a/common_ops.go b/common_ops.go new file mode 100644 index 0000000..cb61e86 --- /dev/null +++ b/common_ops.go @@ -0,0 +1,88 @@ +package main + +import ( + "C" + "syscall" + + "golang.org/x/sys/unix" + + "./internal/nametransform" + "./internal/syscallcompat" +) + +//export gcf_get_attrs +func gcf_get_attrs(sessionID int, relPath string) (uint64, int64, bool) { + volume := OpenedVolumes[sessionID] + dirfd, cName, err := volume.prepareAtSyscall(relPath) + if err != nil { + return 0, 0, false + } + defer syscall.Close(dirfd) + + st, err := syscallcompat.Fstatat2(dirfd, cName, unix.AT_SYMLINK_NOFOLLOW) + if err != nil { + return 0, 0, false + } + + // Translate ciphertext size to plaintext size + size := volume.translateSize(dirfd, cName, st) + + return size, int64(st.Mtim.Sec), true +} + +//export gcf_rename +func gcf_rename(sessionID int, oldPath string, newPath string) bool { + volume := OpenedVolumes[sessionID] + dirfd, cName, err := volume.prepareAtSyscall(oldPath) + if err != nil { + return false + } + defer syscall.Close(dirfd) + + dirfd2, cName2, err := volume.prepareAtSyscall(newPath) + if err != nil { + return false + } + defer syscall.Close(dirfd2) + + // Easy case. + if volume.plainTextNames { + return errToBool(syscallcompat.Renameat2(dirfd, cName, dirfd2, cName2, 0)) + } + // Long destination file name: create .name file + nameFileAlreadyThere := false + if nametransform.IsLongContent(cName2) { + err = volume.nameTransform.WriteLongNameAt(dirfd2, cName2, newPath) + // Failure to write the .name file is expected when the target path already + // exists. Since hashes are pretty unique, there is no need to modify the + // .name file in this case, and we ignore the error. + if err == syscall.EEXIST { + nameFileAlreadyThere = true + } else if err != nil { + return false + } + } + // Actual rename + err = syscallcompat.Renameat2(dirfd, cName, dirfd2, cName2, 0) + if err == syscall.ENOTEMPTY || err == syscall.EEXIST { + // If an empty directory is overwritten we will always get an error as + // the "empty" directory will still contain gocryptfs.diriv. + // Interestingly, ext4 returns ENOTEMPTY while xfs returns EEXIST. + // We handle that by trying to fs.Rmdir() the target directory and trying + // again. + if gcf_rmdir(sessionID, newPath) { + err = syscallcompat.Renameat2(dirfd, cName, dirfd2, cName2, 0) + } + } + if err != nil { + if nametransform.IsLongContent(cName2) && !nameFileAlreadyThere { + // Roll back .name creation unless the .name file was already there + nametransform.DeleteLongNameAt(dirfd2, cName2) + } + return false + } + if nametransform.IsLongContent(cName) { + nametransform.DeleteLongNameAt(dirfd, cName) + } + return true +} diff --git a/contrib/atomicrename/.gitignore b/contrib/atomicrename/.gitignore deleted file mode 100644 index b91a212..0000000 --- a/contrib/atomicrename/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/atomicrename diff --git a/contrib/atomicrename/main.go b/contrib/atomicrename/main.go deleted file mode 100644 index 67088b0..0000000 --- a/contrib/atomicrename/main.go +++ /dev/null @@ -1,101 +0,0 @@ -package main - -import ( - "bytes" - "flag" - "fmt" - "io/ioutil" - "os" - "strings" - "sync/atomic" - "syscall" -) - -const fileCount = 100 - -type stats struct { - renameOk int - renameError int - readOk int - readError int - readContentMismatch int -} - -func usage() { - fmt.Printf(`atomicrename creates %d "src" files in the current directory, renames -them in random order over a single "dst" file while reading the "dst" -file concurrently in a loop. - -Progress and errors are reported as they occour in addition to a summary -printed at the end. cifs and fuse filesystems are known to fail, local -filesystems and nfs seem ok. - -See https://github.com/hanwen/go-fuse/issues/398 for background info. -`, fileCount) - os.Exit(1) -} - -func main() { - flag.Usage = usage - flag.Parse() - - hello := []byte("hello world") - srcFiles := make(map[string]struct{}) - - // prepare source files - fmt.Print("creating files") - for i := 0; i < fileCount; i++ { - srcName := fmt.Sprintf("src.atomicrename.%d", i) - srcFiles[srcName] = struct{}{} - buf := bytes.Repeat([]byte("_"), i) - buf = append(buf, hello...) - if err := ioutil.WriteFile(srcName, buf, 0600); err != nil { - panic(err) - } - fmt.Print(".") - } - fmt.Print("\n") - - // prepare destination file - const dstName = "dst.atomicrename" - if err := ioutil.WriteFile(dstName, hello, 0600); err != nil { - panic(err) - } - - var running int32 = 1 - - stats := stats{} - - // read thread - go func() { - for atomic.LoadInt32(&running) == 1 { - have, err := ioutil.ReadFile(dstName) - if err != nil { - fmt.Println(err) - stats.readError++ - continue - } - if !strings.HasSuffix(string(have), string(hello)) { - fmt.Printf("content mismatch: have %q\n", have) - stats.readContentMismatch++ - continue - } - fmt.Printf("content ok len=%d\n", len(have)) - stats.readOk++ - } - }() - - // rename thread = main thread - for srcName := range srcFiles { - if err := os.Rename(srcName, dstName); err != nil { - fmt.Println(err) - stats.renameError++ - } - stats.renameOk++ - } - // Signal the Read goroutine to stop when loop is done - atomic.StoreInt32(&running, 0) - - syscall.Unlink(dstName) - fmt.Printf("stats: %#v\n", stats) -} diff --git a/contrib/cleanup-tmp-mounts.sh b/contrib/cleanup-tmp-mounts.sh deleted file mode 100755 index 481d2b7..0000000 --- a/contrib/cleanup-tmp-mounts.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -# -# Umount all FUSE filesystems mounted below /tmp and /var/tmp. -# -# Useful when you have lots of broken mounts after something in -# the test suite went wrong. - -set -eu - -MOUNTS=$(mount | grep ' type fuse\.' | grep 'on /var/tmp/\|on /tmp/\|on /mnt/ext4-ramdisk/' | cut -d' ' -f 3) - -for i in $MOUNTS ; do - echo "Unmounting $i" - fusermount -u -z "$i" -done diff --git a/contrib/findholes/.gitignore b/contrib/findholes/.gitignore deleted file mode 100644 index 15c37f6..0000000 --- a/contrib/findholes/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/findholes diff --git a/contrib/findholes/holes/holes.go b/contrib/findholes/holes/holes.go deleted file mode 100644 index 7d77ae1..0000000 --- a/contrib/findholes/holes/holes.go +++ /dev/null @@ -1,199 +0,0 @@ -// Package holes finds and pretty-prints holes & data sections of a file. -// Used by TestFileHoleCopy in the gocryptfs test suite. -package holes - -import ( - "fmt" - "log" - "math/rand" - "os" - "syscall" - "time" -) - -const ( - SEEK_DATA = 3 - SEEK_HOLE = 4 - - SegmentHole = SegmentType(100) - SegmentData = SegmentType(101) - SegmentEOF = SegmentType(102) -) - -type Whence int - -func (w Whence) String() string { - switch w { - case SEEK_DATA: - return "SEEK_DATA" - case SEEK_HOLE: - return "SEEK_HOLE" - default: - return "???" - } -} - -type Segment struct { - Offset int64 - Type SegmentType -} - -func (s Segment) String() string { - return fmt.Sprintf("%10d %v", s.Offset, s.Type) -} - -type SegmentType int - -func (s SegmentType) String() string { - switch s { - case SegmentHole: - return "hole" - case SegmentData: - return "data" - case SegmentEOF: - return "eof" - default: - return "???" - } -} - -// PrettyPrint pretty-prints the Segments. -func PrettyPrint(segments []Segment) (out string) { - for i, s := range segments { - out += s.String() - if i < len(segments)-1 { - out += "\n" - } - } - return out -} - -// Find examines the file passed via file descriptor and returns the found holes -// and data sections. -func Find(fd int) (segments []Segment, err error) { - var st syscall.Stat_t - err = syscall.Fstat(fd, &st) - if err != nil { - return nil, err - } - totalSize := st.Size - - var cursor int64 - - // find out if file starts with data or hole - off, err := syscall.Seek(fd, 0, SEEK_DATA) - // starts with hole and has no data - if err == syscall.ENXIO { - segments = append(segments, - Segment{0, SegmentHole}, - Segment{totalSize, SegmentEOF}) - return segments, nil - } - if err != nil { - return nil, err - } - // starts with data - if off == cursor { - segments = append(segments, Segment{0, SegmentData}) - } else { - // starts with hole - segments = append(segments, - Segment{0, SegmentHole}, - Segment{off, SegmentData}) - cursor = off - } - - // now we are at the start of data. - // find next hole, then next data, then next hole, then next data... - for { - oldCursor := cursor - // Next hole - off, err = syscall.Seek(fd, cursor, SEEK_HOLE) - if err != nil { - return nil, err - } - segments = append(segments, Segment{off, SegmentHole}) - cursor = off - - // Next data - off, err := syscall.Seek(fd, cursor, SEEK_DATA) - // No more data? - if err == syscall.ENXIO { - segments = append(segments, - Segment{totalSize, SegmentEOF}) - return segments, nil - } - if err != nil { - return nil, err - } - segments = append(segments, Segment{off, SegmentData}) - cursor = off - - if oldCursor == cursor { - return nil, fmt.Errorf("%s\nerror: seek loop!", PrettyPrint(segments)) - } - } - return segments, nil -} - -// Verify the gives `segments` using a full bytewise file scan -func Verify(fd int, segments []Segment) (err error) { - last := segments[len(segments)-1] - if last.Type != SegmentEOF { - log.Panicf("BUG: last segment is not EOF. segments: %v", segments) - } - - for i, s := range segments { - var whence int - switch s.Type { - case SegmentHole: - whence = SEEK_HOLE - case SegmentData: - whence = SEEK_DATA - case SegmentEOF: - continue - default: - log.Panicf("BUG: unkown segment type %d", s.Type) - } - for off := s.Offset; off < segments[i+1].Offset; off++ { - res, err := syscall.Seek(fd, off, whence) - if err != nil { - return fmt.Errorf("error: seek(%d, %s) returned error %v", off, Whence(whence).String(), err) - } - if res != off { - return fmt.Errorf("error: seek(%d, %s) returned new offset %d", off, Whence(whence).String(), res) - } - } - } - return err -} - -// Create a test file at `path` with random holes -func Create(path string) { - f, err := os.OpenFile(path, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0600) - if err != nil { - panic(err) - } - defer f.Close() - - rand.Seed(time.Now().UnixNano()) - offsets := make([]int64, 10) - for i := range offsets { - offsets[i] = int64(rand.Int31n(60000)) - } - - buf := []byte("x") - for _, off := range offsets { - _, err = f.WriteAt(buf, off) - if err != nil { - panic(err) - } - } - - // Expand the file to 50000 bytes so we sometimes have a hole on the end - if offsets[len(offsets)-1] < 50000 { - f.Truncate(50000) - } - - f.Sync() -} diff --git a/contrib/findholes/main.go b/contrib/findholes/main.go deleted file mode 100644 index 17597ae..0000000 --- a/contrib/findholes/main.go +++ /dev/null @@ -1,57 +0,0 @@ -// Find and pretty-print holes & data sections of a file. -package main - -import ( - "flag" - "fmt" - "os" - - "github.com/rfjakob/gocryptfs/contrib/findholes/holes" -) - -func main() { - flags := struct { - verify *bool - create *bool - }{} - flags.verify = flag.Bool("verify", false, "Verify results using full file scan") - flags.create = flag.Bool("create", false, "Create test file with random holes") - flag.Parse() - if flag.NArg() != 1 { - fmt.Printf("Usage: findholes FILE\n") - os.Exit(1) - } - - path := flag.Arg(0) - - if *flags.create { - holes.Create(path) - } - - f, err := os.Open(path) - if err != nil { - // os.Open() gives nicer error messages than syscall.Open() - fmt.Println(err) - os.Exit(1) - } - defer f.Close() - - segments, err := holes.Find(int(f.Fd())) - if err != nil { - fmt.Println(err) - os.Exit(1) - } - - fmt.Println(holes.PrettyPrint(segments)) - - if *flags.verify { - err = holes.Verify(int(f.Fd()), segments) - if err != nil { - fmt.Println(err) - os.Exit(1) - } else { - fmt.Println("verify ok") - } - } - -} diff --git a/contrib/getdents-debug/getdents/.gitignore b/contrib/getdents-debug/getdents/.gitignore deleted file mode 100644 index 6dae481..0000000 --- a/contrib/getdents-debug/getdents/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/getdents diff --git a/contrib/getdents-debug/getdents/getdents.go b/contrib/getdents-debug/getdents/getdents.go deleted file mode 100644 index a3cdac4..0000000 --- a/contrib/getdents-debug/getdents/getdents.go +++ /dev/null @@ -1,88 +0,0 @@ -/* -Small tool to try to debug unix.Getdents problems on CIFS mounts -( https://github.com/rfjakob/gocryptfs/issues/483 ) - -Example output: - -$ while sleep 1 ; do ./getdents /mnt/synology/public/tmp/g1 ; done -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=3192, err= -unix.Getdents fd3: n=0, err= -total 24072 bytes -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=-1, err=no such file or directory -total 16704 bytes -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=4176, err= -unix.Getdents fd3: n=3192, err= -unix.Getdents fd3: n=0, err= -total 24072 bytes - - -Failure looks like this in strace: - -[pid 189974] getdents64(6, 0xc000105808, 10000) = -1 ENOENT (No such file or directory) -*/ - -package main - -import ( - "flag" - "fmt" - "os" - "time" - - "golang.org/x/sys/unix" -) - -const ( - myName = "getdents" -) - -func main() { - flag.Usage = func() { - fmt.Fprintf(os.Stderr, "Usage: %s PATH\n", myName) - fmt.Fprintf(os.Stderr, "Run getdents(2) on PATH in a 100ms loop until we hit an error\n") - os.Exit(1) - } - flag.Parse() - if flag.NArg() != 1 { - flag.Usage() - } - path := flag.Arg(0) - - tmp := make([]byte, 10000) - for i := 1; ; i++ { - sum := 0 - fd, err := unix.Open(path, unix.O_RDONLY, 0) - if err != nil { - fmt.Printf("%3d: unix.Open returned err=%v\n", i, err) - os.Exit(1) - } - fmt.Printf("%3d: unix.Getdents: ", i) - for { - n, err := unix.Getdents(fd, tmp) - fmt.Printf("n=%d; ", n) - if n <= 0 { - fmt.Printf("err=%v; total %d bytes\n", err, sum) - if err != nil { - os.Exit(1) - } - break - } - sum += n - } - unix.Close(fd) - time.Sleep(100 * time.Millisecond) - } -} diff --git a/contrib/getdents-debug/getdents_c/.gitignore b/contrib/getdents-debug/getdents_c/.gitignore deleted file mode 100644 index 2f94993..0000000 --- a/contrib/getdents-debug/getdents_c/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/getdents_c diff --git a/contrib/getdents-debug/getdents_c/Makefile b/contrib/getdents-debug/getdents_c/Makefile deleted file mode 100644 index 95e47dc..0000000 --- a/contrib/getdents-debug/getdents_c/Makefile +++ /dev/null @@ -1,2 +0,0 @@ -getdents_c: *.c Makefile - gcc getdents.c -o getdents_c diff --git a/contrib/getdents-debug/getdents_c/getdents.c b/contrib/getdents-debug/getdents_c/getdents.c deleted file mode 100644 index 94f8c97..0000000 --- a/contrib/getdents-debug/getdents_c/getdents.c +++ /dev/null @@ -1,53 +0,0 @@ -// See ../getdents/getdents.go for some info on why -// this exists. - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -int main(int argc, char *argv[]) -{ - if(argc != 2) { - printf("Usage: %s PATH\n", argv[0]); - printf("Run getdents(2) on PATH in a 100ms loop\n"); - exit(1); - } - - const char *path = argv[1]; - - for (int i = 1 ; ; i ++ ) { - int fd = open(path, O_RDONLY); - if (fd == -1) { - printf("%3d: open: %s\n", i, strerror(errno)); - if(errno == EINTR) { - continue; - } - exit(1); - } - - char tmp[10000]; - int sum = 0; - printf("%3d: getdents64: ", i); - for ( ; ; ) { - errno = 0; - int n = syscall(SYS_getdents64, fd, tmp, sizeof(tmp)); - printf("n=%d; ", n); - if (n <= 0) { - printf("errno=%d total %d bytes\n", errno, sum); - if (n < 0) { - exit(1); - } - break; - } - sum += n; - } - close(fd); - usleep(100000); - } -} diff --git a/contrib/getdents-debug/readdirnames/.gitignore b/contrib/getdents-debug/readdirnames/.gitignore deleted file mode 100644 index 228dbb3..0000000 --- a/contrib/getdents-debug/readdirnames/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/readdirnames diff --git a/contrib/getdents-debug/readdirnames/readdirnames.go b/contrib/getdents-debug/readdirnames/readdirnames.go deleted file mode 100644 index dc33512..0000000 --- a/contrib/getdents-debug/readdirnames/readdirnames.go +++ /dev/null @@ -1,56 +0,0 @@ -/* -Small tool to try to debug unix.Getdents problems on CIFS mounts -( https://github.com/rfjakob/gocryptfs/issues/483 ) - -Example output: - -$ while sleep 1 ; do ./readdirnames /mnt/synology/public/tmp/g1 ; done -Readdirnames: len=1001, err= -Readdirnames: len=1001, err= -Readdirnames: len=1001, err= -Readdirnames: len=1001, err= -Readdirnames: len=868, err=readdirent: no such file or directory -Readdirnames: len=1001, err= -Readdirnames: len=1001, err= -Readdirnames: len=1001, err= -Readdirnames: len=1001, err= -Readdirnames: len=1001, err= -Readdirnames: len=1001, err= -2020/05/24 23:50:39 os.Open returned err=open /mnt/synology/public/tmp/g1: interrupted system call -Readdirnames: len=1001, err= -Readdirnames: len=1001, err= -*/ - -package main - -import ( - "flag" - "fmt" - "log" - "os" -) - -const ( - myName = "readdirnames" -) - -func main() { - flag.Usage = func() { - fmt.Fprintf(os.Stderr, "Usage: %s PATH\n", myName) - fmt.Fprintf(os.Stderr, "Run os.File.Readdirnames on PATH\n") - os.Exit(1) - } - flag.Parse() - if flag.NArg() != 1 { - flag.Usage() - } - path := flag.Arg(0) - - f, err := os.Open(path) - if err != nil { - log.Fatalf("os.Open returned err=%v", err) - } - - names, err := f.Readdirnames(0) - fmt.Printf("Readdirnames: len=%d, err=%v\n", len(names), err) -} diff --git a/contrib/gocryptfs-maybe.bash b/contrib/gocryptfs-maybe.bash deleted file mode 100755 index 78a6b2c..0000000 --- a/contrib/gocryptfs-maybe.bash +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -# -# Conditionally try to mount a gocryptfs filesystem. If either -# * CIPHERDIR/gocryptfs.conf does not exist OR -# * something is already mounted on MOUNTPOINT -# print a message to stdout (not stderr!) but exit with 0. -# -# This is meant to be called from automated mount systems like pam_mount, -# where you want to avoid error messages if the filesystem does not exist, -# or duplicate mounts if the filesystem has already been mounted. -# -# Note that pam_mount ignores messages on stdout which is why printing -# to stdout is ok. -set -eu -MYNAME=$(basename $0) -if [[ $# -lt 2 || $1 == -* ]]; then - echo "Usage: $MYNAME CIPHERDIR MOUNTPOINT [-o COMMA-SEPARATED-OPTIONS]" >&2 - exit 1 -fi -if [[ ! -f $1/gocryptfs.conf ]]; then - echo "$MYNAME: \"$1\" does not look like a gocryptfs filesystem, ignoring mount request" - exit 0 -fi -if mountpoint "$2" > /dev/null; then - echo "$MYNAME: something is already mounted on \"$2\", ignoring mount request" - exit 0 -fi -exec gocryptfs "$@" diff --git a/contrib/mount-ext4-ramdisk.sh b/contrib/mount-ext4-ramdisk.sh deleted file mode 100755 index 5ff7ef1..0000000 --- a/contrib/mount-ext4-ramdisk.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -ex - -MNT=/mnt/ext4-ramdisk - -if mountpoint $MNT ; then - exit 1 -fi - -IMG=$(mktemp /tmp/ext4-ramdisk-XXX.img) - -# unlink the file when done, space will be -# reclaimed once the fs is unmounted. Also -# cleans up in the error case. -trap 'rm "$IMG"' EXIT - -dd if=/dev/zero of="$IMG" bs=1M count=1030 status=none -mkfs.ext4 -q "$IMG" -mkdir -p "$MNT" -mount "$IMG" "$MNT" -chmod 777 "$MNT" diff --git a/contrib/statfs/.gitignore b/contrib/statfs/.gitignore deleted file mode 100644 index 1ad5baa..0000000 --- a/contrib/statfs/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/statfs diff --git a/contrib/statfs/statfs.go b/contrib/statfs/statfs.go deleted file mode 100644 index 163d95a..0000000 --- a/contrib/statfs/statfs.go +++ /dev/null @@ -1,35 +0,0 @@ -package main - -import ( - "encoding/json" - "flag" - "fmt" - "os" - - "golang.org/x/sys/unix" -) - -const ( - myName = "statfs" -) - -func main() { - flag.Usage = func() { - fmt.Fprintf(os.Stderr, "Usage: %s PATH\n", myName) - fmt.Fprintf(os.Stderr, "Dump the statfs information for PATH to the console, JSON format.\n") - os.Exit(1) - } - flag.Parse() - if flag.NArg() != 1 { - flag.Usage() - } - path := flag.Arg(0) - var st unix.Statfs_t - err := unix.Statfs(path, &st) - if err != nil { - fmt.Fprintf(os.Stderr, "statfs syscall returned error: %v\n", err) - os.Exit(2) - } - jsn, _ := json.MarshalIndent(st, "", "\t") - fmt.Println(string(jsn)) -} diff --git a/contrib/statvsfstat/.gitignore b/contrib/statvsfstat/.gitignore deleted file mode 100644 index 7f17e5f..0000000 --- a/contrib/statvsfstat/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/statvsfstat diff --git a/contrib/statvsfstat/statvsfstat.go b/contrib/statvsfstat/statvsfstat.go deleted file mode 100644 index e5159ce..0000000 --- a/contrib/statvsfstat/statvsfstat.go +++ /dev/null @@ -1,53 +0,0 @@ -package main - -import ( - "flag" - "fmt" - "os" - - "golang.org/x/sys/unix" -) - -const ( - myName = "statvsfstat" -) - -func main() { - flag.Usage = func() { - fmt.Fprintf(os.Stderr, "Usage: %s PATH\n", myName) - fmt.Fprintf(os.Stderr, "Dump the stat and fstat information for PATH to the console, JSON format.\n") - os.Exit(1) - } - flag.Parse() - if flag.NArg() != 1 { - flag.Usage() - } - path := flag.Arg(0) - - var st unix.Stat_t - err := unix.Stat(path, &st) - if err != nil { - fmt.Fprintf(os.Stderr, "stat syscall returned error: %v\n", err) - os.Exit(4) - } - - fd, err := unix.Open(path, unix.O_RDONLY, 0) - if err != nil { - fmt.Fprintf(os.Stderr, "open syscall returned error: %v\n", err) - os.Exit(3) - } - var fst unix.Stat_t - err = unix.Fstat(fd, &fst) - if err != nil { - fmt.Fprintf(os.Stderr, "fstat syscall returned error: %v\n", err) - os.Exit(2) - } - - fmt.Printf("stat result: %#v\n", st) - fmt.Printf("fstat result: %#v\n", fst) - if st == fst { - fmt.Println("results are identical") - } else { - fmt.Println("results differ") - } -} diff --git a/crossbuild.bash b/crossbuild.bash deleted file mode 100755 index 0904d54..0000000 --- a/crossbuild.bash +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash -eu -# -# Build on all supported architectures & operating systems - -cd "$(dirname "$0")" - -export GO111MODULE=on -B="go build -tags without_openssl" - -set -x - -export CGO_ENABLED=0 - -GOOS=linux GOARCH=amd64 $B - -# See https://github.com/golang/go/wiki/GoArm -GOOS=linux GOARCH=arm GOARM=7 $B -GOOS=linux GOARCH=arm64 $B - -# MacOS on Intel -GOOS=darwin GOARCH=amd64 $B - -# MacOS on Apple Silicon M1. -# Go 1.16 added support for the M1 and added ios/arm64, -# so we use this to check if we should attempt a build. -if go tool dist list | grep ios/arm64 ; then - GOOS=darwin GOARCH=arm64 $B -fi - -# The cross-built binary is not useful on the compile host. -rm gocryptfs diff --git a/ctlsock/ctlsock.go b/ctlsock/ctlsock.go deleted file mode 100644 index 1c440b5..0000000 --- a/ctlsock/ctlsock.go +++ /dev/null @@ -1,61 +0,0 @@ -// Package ctlsock is a Go library that can be used to query the -// gocryptfs control socket interface. This interface can be -// activated by passing `-ctlsock /tmp/my.sock` to gocryptfs on the -// command line. -// See gocryptfs-xray for a usage example. -package ctlsock - -import ( - "encoding/json" - "fmt" - "net" - "time" -) - -func (r *ResponseStruct) Error() string { - return fmt.Sprintf("errno %d: %s", r.ErrNo, r.ErrText) -} - -// CtlSock encapsulates a control socket -type CtlSock struct { - Conn net.Conn -} - -// New opens the socket at `socketPath` and stores it in a `CtlSock` object. -func New(socketPath string) (*CtlSock, error) { - conn, err := net.DialTimeout("unix", socketPath, 1*time.Second) - if err != nil { - return nil, err - } - return &CtlSock{Conn: conn}, nil -} - -// Query sends a request to the control socket returns the response. -func (c *CtlSock) Query(req *RequestStruct) (*ResponseStruct, error) { - c.Conn.SetDeadline(time.Now().Add(time.Second)) - msg, err := json.Marshal(req) - if err != nil { - return nil, err - } - _, err = c.Conn.Write(msg) - if err != nil { - return nil, err - } - buf := make([]byte, 5000) - n, err := c.Conn.Read(buf) - if err != nil { - return nil, err - } - buf = buf[:n] - var resp ResponseStruct - json.Unmarshal(buf, &resp) - if resp.ErrNo != 0 { - return nil, &resp - } - return &resp, nil -} - -// Close closes the socket -func (c *CtlSock) Close() { - c.Conn.Close() -} diff --git a/ctlsock/json_abi.go b/ctlsock/json_abi.go deleted file mode 100644 index 7deff08..0000000 --- a/ctlsock/json_abi.go +++ /dev/null @@ -1,26 +0,0 @@ -package ctlsock - -// RequestStruct is sent by a client (encoded as JSON). -// You cannot perform both encryption and decryption in the same request. -type RequestStruct struct { - // EncryptPath is the path that should be encrypted. - EncryptPath string - // DecryptPath is the path that should be decrypted. - DecryptPath string -} - -// ResponseStruct is sent by the server in response to a request -// (encoded as JSON). -type ResponseStruct struct { - // Result is the resulting decrypted or encrypted path. Empty on error. - Result string - // ErrNo is the error number as defined in errno.h. - // 0 means success and -1 means that the error number is not known - // (look at ErrText in this case). - ErrNo int32 - // ErrText is a detailed error message. - ErrText string - // WarnText contains warnings that may have been encountered while - // processing the message. - WarnText string -} diff --git a/daemonize.go b/daemonize.go deleted file mode 100644 index 6fdd1e4..0000000 --- a/daemonize.go +++ /dev/null @@ -1,106 +0,0 @@ -package main - -import ( - "fmt" - "os" - "os/exec" - "os/signal" - "syscall" - - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// The child sends us USR1 if the mount was successful. Exit with error code -// 0 if we get it. -func exitOnUsr1() { - c := make(chan os.Signal, 1) - signal.Notify(c, syscall.SIGUSR1) - go func() { - <-c - os.Exit(0) - }() -} - -// forkChild - execute ourselves once again, this time with the "-fg" flag, and -// wait for SIGUSR1 or child exit. -// This is a workaround for the missing true fork function in Go. -func forkChild() int { - name := os.Args[0] - // Use the full path to our executable if we can get if from /proc. - buf := make([]byte, syscallcompat.PATH_MAX) - n, err := syscall.Readlink("/proc/self/exe", buf) - if err == nil { - name = string(buf[:n]) - tlog.Debug.Printf("forkChild: readlink worked: %q", name) - } - newArgs := []string{"-fg", fmt.Sprintf("-notifypid=%d", os.Getpid())} - newArgs = append(newArgs, os.Args[1:]...) - c := exec.Command(name, newArgs...) - c.Stdout = os.Stdout - c.Stderr = os.Stderr - c.Stdin = os.Stdin - exitOnUsr1() - err = c.Start() - if err != nil { - tlog.Fatal.Printf("forkChild: starting %s failed: %v", name, err) - return exitcodes.ForkChild - } - err = c.Wait() - if err != nil { - if exiterr, ok := err.(*exec.ExitError); ok { - if waitstat, ok := exiterr.Sys().(syscall.WaitStatus); ok { - os.Exit(waitstat.ExitStatus()) - } - } - tlog.Fatal.Printf("forkChild: wait returned an unknown error: %v", err) - return exitcodes.ForkChild - } - // The child exited with 0 - let's do the same. - return 0 -} - -// redirectStdFds redirects stderr and stdout to syslog; stdin to /dev/null -func redirectStdFds() { - // Create a pipe pair "pw" -> "pr" and start logger reading from "pr". - // We do it ourselves instead of using StdinPipe() because we need access - // to the fd numbers. - pr, pw, err := os.Pipe() - if err != nil { - tlog.Warn.Printf("redirectStdFds: could not create pipe: %v\n", err) - return - } - tag := fmt.Sprintf("gocryptfs-%d-logger", os.Getpid()) - cmd := exec.Command("logger", "-t", tag) - cmd.Stdin = pr - err = cmd.Start() - if err != nil { - tlog.Warn.Printf("redirectStdFds: could not start logger: %v\n", err) - return - } - // The logger now reads on "pr". We can close it. - pr.Close() - // Redirect stout and stderr to "pw". - err = syscallcompat.Dup3(int(pw.Fd()), 1, 0) - if err != nil { - tlog.Warn.Printf("redirectStdFds: stdout dup error: %v\n", err) - } - syscallcompat.Dup3(int(pw.Fd()), 2, 0) - if err != nil { - tlog.Warn.Printf("redirectStdFds: stderr dup error: %v\n", err) - } - // Our stout and stderr point to "pw". We can close the extra copy. - pw.Close() - // Redirect stdin to /dev/null - nullFd, err := os.Open("/dev/null") - if err != nil { - tlog.Warn.Printf("redirectStdFds: could not open /dev/null: %v\n", err) - return - } - err = syscallcompat.Dup3(int(nullFd.Fd()), 0, 0) - if err != nil { - tlog.Warn.Printf("redirectStdFds: stdin dup error: %v\n", err) - } - nullFd.Close() -} diff --git a/directory.go b/directory.go new file mode 100644 index 0000000..8ff2659 --- /dev/null +++ b/directory.go @@ -0,0 +1,242 @@ +package main + +import ( + "C" + "fmt" + "io" + "strings" + "syscall" + "unsafe" + + "golang.org/x/sys/unix" + + "./allocator" + "./internal/configfile" + "./internal/cryptocore" + "./internal/nametransform" + "./internal/syscallcompat" +) + +func mkdirWithIv(dirfd int, cName string, mode uint32) error { + // Between the creation of the directory and the creation of gocryptfs.diriv + // the directory is inconsistent. Take the lock to prevent other readers + // from seeing it. + err := unix.Mkdirat(dirfd, cName, mode) + if err != nil { + return err + } + dirfd2, err := syscallcompat.Openat(dirfd, cName, syscall.O_DIRECTORY|syscall.O_NOFOLLOW|syscallcompat.O_PATH, 0) + if err == nil { + // Create gocryptfs.diriv + err = nametransform.WriteDirIVAt(dirfd2) + syscall.Close(dirfd2) + } + if err != nil { + // Delete inconsistent directory (missing gocryptfs.diriv!) + syscallcompat.Unlinkat(dirfd, cName, unix.AT_REMOVEDIR) + } + return err +} + +//export gcf_list_dir +func gcf_list_dir(sessionID int, dirName string) (*C.char, *C.int, C.int) { + volume := OpenedVolumes[sessionID] + parentDirFd, cDirName, err := volume.prepareAtSyscall(dirName) + if err != nil { + return nil, nil, 0 + } + defer syscall.Close(parentDirFd) + // Read ciphertext directory + fd, err := syscallcompat.Openat(parentDirFd, cDirName, syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) + if err != nil { + return nil, nil, 0 + } + defer syscall.Close(fd) + cipherEntries, err := syscallcompat.Getdents(fd) + if err != nil { + return nil, nil, 0 + } + // Get DirIV (stays nil if PlaintextNames is used) + var cachedIV []byte + if !OpenedVolumes[sessionID].plainTextNames { + // Read the DirIV from disk + cachedIV, err = nametransform.ReadDirIVAt(fd) + if err != nil { + return nil, nil, 0 + } + } + // Decrypted directory entries + var plain strings.Builder + var modes []uint32 + // Filter and decrypt filenames + for i := range cipherEntries { + cName := cipherEntries[i].Name + if dirName == "" && cName == configfile.ConfDefaultName { + // silently ignore "gocryptfs.conf" in the top level dir + continue + } + if OpenedVolumes[sessionID].plainTextNames { + plain.WriteString(cipherEntries[i].Name + "\x00") + modes = append(modes, cipherEntries[i].Mode) + continue + } + if cName == nametransform.DirIVFilename { + // silently ignore "gocryptfs.diriv" everywhere if dirIV is enabled + continue + } + // Handle long file name + isLong := nametransform.NameType(cName) + if isLong == nametransform.LongNameContent { + cNameLong, err := nametransform.ReadLongNameAt(fd, cName) + if err != nil { + continue + } + cName = cNameLong + } else if isLong == nametransform.LongNameFilename { + // ignore "gocryptfs.longname.*.name" + continue + } + name, err := OpenedVolumes[sessionID].nameTransform.DecryptName(cName, cachedIV) + if err != nil { + continue + } + // Override the ciphertext name with the plaintext name but reuse the rest + // of the structure + cipherEntries[i].Name = name + plain.WriteString(cipherEntries[i].Name + "\x00") + modes = append(modes, cipherEntries[i].Mode) + } + p := allocator.Malloc(len(modes)) + for i := 0; i < len(modes); i++ { + offset := C.sizeof_int * uintptr(i) + *(*C.int)(unsafe.Pointer(uintptr(p) + offset)) = (C.int)(modes[i]) + } + return C.CString(plain.String()), (*C.int)(p), (C.int)(len(modes)) +} + +//export gcf_mkdir +func gcf_mkdir(sessionID int, path string, mode uint32) bool { + volume := OpenedVolumes[sessionID] + dirfd, cName, err := volume.prepareAtSyscall(path) + if err != nil { + return false + } + defer syscall.Close(dirfd) + + if volume.plainTextNames { + err = unix.Mkdirat(dirfd, cName, mode) + if err != nil { + return false + } + var ust unix.Stat_t + err = syscallcompat.Fstatat(dirfd, cName, &ust, unix.AT_SYMLINK_NOFOLLOW) + if err != nil { + return false + } + } else { + // We need write and execute permissions to create gocryptfs.diriv. + // Also, we need read permissions to open the directory (to avoid + // race-conditions between getting and setting the mode). + origMode := mode + mode := mode | 0700 + + // Handle long file name + if nametransform.IsLongContent(cName) { + // Create ".name" + err = OpenedVolumes[sessionID].nameTransform.WriteLongNameAt(dirfd, cName, path) + if err != nil { + return false + } + + // Create directory + err = mkdirWithIv(dirfd, cName, mode) + if err != nil { + nametransform.DeleteLongNameAt(dirfd, cName) + return false + } + } else { + err = mkdirWithIv(dirfd, cName, mode) + if err != nil { + return false + } + } + + fd, err := syscallcompat.Openat(dirfd, cName, + syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) + if err != nil { + return false + } + defer syscall.Close(fd) + + var st syscall.Stat_t + err = syscall.Fstat(fd, &st) + if err != nil { + return false + } + + // Fix permissions + if origMode != mode { + // Preserve SGID bit if it was set due to inheritance. + origMode = uint32(st.Mode&^0777) | origMode + syscall.Fchmod(fd, origMode) + } + } + + return true +} + +//export gcf_rmdir +func gcf_rmdir(sessionID int, relPath string) bool { + volume := OpenedVolumes[sessionID] + parentDirFd, cName, err := volume.openBackingDir(relPath) + if err != nil { + return false + } + defer syscall.Close(parentDirFd) + if volume.plainTextNames { + // Unlinkat with AT_REMOVEDIR is equivalent to Rmdir + err = unix.Unlinkat(parentDirFd, cName, unix.AT_REMOVEDIR) + return errToBool(err) + } + dirfd, err := syscallcompat.Openat(parentDirFd, cName, syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) + if err != nil { + return false + } + defer syscall.Close(dirfd) + // Check directory contents + children, err := syscallcompat.Getdents(dirfd) + if err == io.EOF { + // The directory is empty + err = unix.Unlinkat(parentDirFd, cName, unix.AT_REMOVEDIR) + return errToBool(err) + } + if err != nil { + return false + } + // If the directory is not empty besides gocryptfs.diriv, do not even + // attempt the dance around gocryptfs.diriv. + if len(children) > 1 { + return false + } + // Move "gocryptfs.diriv" to the parent dir as "gocryptfs.diriv.rmdir.XYZ" + tmpName := fmt.Sprintf("%s.rmdir.%d", nametransform.DirIVFilename, cryptocore.RandUint64()) + err = syscallcompat.Renameat(dirfd, nametransform.DirIVFilename, parentDirFd, tmpName) + if err != nil { + return false + } + // Actual Rmdir + err = syscallcompat.Unlinkat(parentDirFd, cName, unix.AT_REMOVEDIR) + if err != nil { + // This can happen if another file in the directory was created in the + // meantime, undo the rename + syscallcompat.Renameat(parentDirFd, tmpName, dirfd, nametransform.DirIVFilename) + return errToBool(err) + } + // Delete "gocryptfs.diriv.rmdir.XYZ" + syscallcompat.Unlinkat(parentDirFd, tmpName, 0) + // Delete .name file + if nametransform.IsLongContent(cName) { + nametransform.DeleteLongNameAt(parentDirFd, cName) + } + return true +} diff --git a/file.go b/file.go new file mode 100644 index 0000000..0e4a56b --- /dev/null +++ b/file.go @@ -0,0 +1,488 @@ +package main + +import ( + "C" + "bytes" + "io" + "math" + "os" + "syscall" + + "./internal/contentenc" + "./internal/nametransform" + "./internal/syscallcompat" +) + +// mangleOpenFlags is used by Create() and Open() to convert the open flags the user +// wants to the flags we internally use to open the backing file. +// The returned flags always contain O_NOFOLLOW. +func mangleOpenFlags(flags uint32) (newFlags int) { + newFlags = int(flags) + // Convert WRONLY to RDWR. We always need read access to do read-modify-write cycles. + if (newFlags & syscall.O_ACCMODE) == syscall.O_WRONLY { + newFlags = newFlags ^ os.O_WRONLY | os.O_RDWR + } + // We also cannot open the file in append mode, we need to seek back for RMW + newFlags = newFlags &^ os.O_APPEND + // O_DIRECT accesses must be aligned in both offset and length. Due to our + // crypto header, alignment will be off, even if userspace makes aligned + // accesses. Running xfstests generic/013 on ext4 used to trigger lots of + // EINVAL errors due to missing alignment. Just fall back to buffered IO. + newFlags = newFlags &^ syscallcompat.O_DIRECT + // Create and Open are two separate FUSE operations, so O_CREAT should not + // be part of the open flags. + newFlags = newFlags &^ syscall.O_CREAT + // We always want O_NOFOLLOW to be safe against symlink races + newFlags |= syscall.O_NOFOLLOW + return newFlags +} + +func (volume *Volume) registerFileHandle(file File) int { + handleID := -1 + c := 0 + for handleID == -1 { + _, ok := volume.file_handles[c] + if !ok { + handleID = c + } + c++ + } + volume.file_handles[handleID] = file + return handleID +} + +// readFileID loads the file header from disk and extracts the file ID. +// Returns io.EOF if the file is empty. +func readFileID(fd *os.File) ([]byte, error) { + // We read +1 byte to determine if the file has actual content + // and not only the header. A header-only file will be considered empty. + // This makes File ID poisoning more difficult. + readLen := contentenc.HeaderLen + 1 + buf := make([]byte, readLen) + _, err := fd.ReadAt(buf, 0) + if err != nil { + return nil, err + } + buf = buf[:contentenc.HeaderLen] + h, err := contentenc.ParseHeader(buf) + if err != nil { + return nil, err + } + return h.ID, nil +} + +// createHeader creates a new random header and writes it to disk. +// Returns the new file ID. +// The caller must hold fileIDLock.Lock(). +func createHeader(fd *os.File) (fileID []byte, err error) { + h := contentenc.RandomHeader() + buf := h.Pack() + // Prevent partially written (=corrupt) header by preallocating the space beforehand + err = syscallcompat.EnospcPrealloc(int(fd.Fd()), 0, contentenc.HeaderLen) + if err != nil { + return nil, err + } + // Actually write header + _, err = fd.WriteAt(buf, 0) + if err != nil { + return nil, err + } + return h.ID, err +} + +// doRead - read "length" plaintext bytes from plaintext offset "off" and append +// to "dst". +// Arguments "length" and "off" do not have to be block-aligned. +// +// doRead reads the corresponding ciphertext blocks from disk, decrypts them and +// returns the requested part of the plaintext. +// +// Called by Read() for normal reading, +// by Write() and Truncate() via doWrite() for Read-Modify-Write. +func (volume *Volume) doRead(handleID int, dst []byte, off uint64, length uint64) ([]byte, bool) { + f, ok := volume.file_handles[handleID] + if !ok { + return nil, false + } + fd := f.fd + // Get the file ID, either from the open file table, or from disk. + var fileID []byte + if volume.fileIDs[handleID] != nil { + // Use the cached value in the file table + fileID = volume.fileIDs[handleID] + } else { + // Not cached, we have to read it from disk. + var err error + fileID, err = readFileID(fd) + if err != nil { + return nil, false + } + // Save into the file table + volume.fileIDs[handleID] = fileID + } + + // Read the backing ciphertext in one go + blocks := volume.contentEnc.ExplodePlainRange(off, length) + alignedOffset, alignedLength := blocks[0].JointCiphertextRange(blocks) + // f.fd.ReadAt takes an int64! + if alignedOffset > math.MaxInt64 { + return nil, false + } + skip := blocks[0].Skip + + ciphertext := volume.contentEnc.CReqPool.Get() + ciphertext = ciphertext[:int(alignedLength)] + n, err := fd.ReadAt(ciphertext, int64(alignedOffset)) + if err != nil && err != io.EOF { + return nil, false + } + // The ReadAt came back empty. We can skip all the decryption and return early. + if n == 0 { + volume.contentEnc.CReqPool.Put(ciphertext) + return dst, true + } + // Truncate ciphertext buffer down to actually read bytes + ciphertext = ciphertext[0:n] + + firstBlockNo := blocks[0].BlockNo + + // Decrypt it + plaintext, err := volume.contentEnc.DecryptBlocks(ciphertext, firstBlockNo, fileID) + volume.contentEnc.CReqPool.Put(ciphertext) + if err != nil { + return nil, false + } + + // Crop down to the relevant part + var out []byte + lenHave := len(plaintext) + lenWant := int(skip + length) + if lenHave > lenWant { + out = plaintext[skip:lenWant] + } else if lenHave > int(skip) { + out = plaintext[skip:lenHave] + } + // else: out stays empty, file was smaller than the requested offset + + out = append(dst, out...) + volume.contentEnc.PReqPool.Put(plaintext) + + return out, true +} + +// doWrite - encrypt "data" and write it to plaintext offset "off" +// +// Arguments do not have to be block-aligned, read-modify-write is +// performed internally as necessary +// +// Called by Write() for normal writing, +// and by Truncate() to rewrite the last file block. +// +// Empty writes do nothing and are allowed. +func (volume *Volume) doWrite(handleID int, data []byte, off uint64) (uint32, bool) { + fileWasEmpty := false + // Get the file ID, create a new one if it does not exist yet. + var fileID []byte + + f, ok := volume.file_handles[handleID] + if !ok { + return 0, false + } + fd := f.fd + // The caller has exclusively locked ContentLock, which blocks all other + // readers and writers. No need to take IDLock. + if volume.fileIDs[handleID] != nil { + fileID = volume.fileIDs[handleID] + } else { + // If the file ID is not cached, read it from disk + var err error + fileID, err = readFileID(fd) + // Write a new file header if the file is empty + if err == io.EOF { + fileID, err = createHeader(fd) + fileWasEmpty = true + } + if err != nil { + return 0, false + } + volume.fileIDs[handleID] = fileID + } + // Handle payload data + dataBuf := bytes.NewBuffer(data) + blocks := volume.contentEnc.ExplodePlainRange(off, uint64(len(data))) + toEncrypt := make([][]byte, len(blocks)) + for i, b := range blocks { + blockData := dataBuf.Next(int(b.Length)) + // Incomplete block -> Read-Modify-Write + if b.IsPartial() { + // Read + oldData, success := volume.doRead(handleID, nil, b.BlockPlainOff(), volume.contentEnc.PlainBS()) + if !success { + return 0, false + } + // Modify + blockData = volume.contentEnc.MergeBlocks(oldData, blockData, int(b.Skip)) + } + // Write into the to-encrypt list + toEncrypt[i] = blockData + } + // Encrypt all blocks + ciphertext := volume.contentEnc.EncryptBlocks(toEncrypt, blocks[0].BlockNo, fileID) + // Preallocate so we cannot run out of space in the middle of the write. + // This prevents partially written (=corrupt) blocks. + var err error + cOff := blocks[0].BlockCipherOff() + // f.fd.WriteAt & syscallcompat.EnospcPrealloc take int64 offsets! + if cOff > math.MaxInt64 { + return 0, false + } + err = syscallcompat.EnospcPrealloc(int(fd.Fd()), int64(cOff), int64(len(ciphertext))) + if err != nil { + if fileWasEmpty { + // Kill the file header again + syscall.Ftruncate(int(fd.Fd()), 0) + gcf_close_file(volume.volumeID, handleID) + } + return 0, false + } + // Write + _, err = f.fd.WriteAt(ciphertext, int64(cOff)) + // Return memory to CReqPool + volume.contentEnc.CReqPool.Put(ciphertext) + if err != nil { + return 0, false + } + return uint32(len(data)), true +} + +// Zero-pad the file of size plainSize to the next block boundary. This is a no-op +// if the file is already block-aligned. +func (volume *Volume) zeroPad(handleID int, plainSize uint64) bool { + lastBlockLen := plainSize % volume.contentEnc.PlainBS() + if lastBlockLen == 0 { + // Already block-aligned + return true + } + missing := volume.contentEnc.PlainBS() - lastBlockLen + pad := make([]byte, missing) + _, success := volume.doWrite(handleID, pad, plainSize) + return success +} + +// truncateGrowFile extends a file using seeking or ftruncate performing RMW on +// the first and last block as necessary. New blocks in the middle become +// file holes unless they have been fallocate()'d beforehand. +func (volume *Volume) truncateGrowFile(handleID int, oldPlainSz uint64, newPlainSz uint64) bool { + if newPlainSz <= oldPlainSz { + return false + } + newEOFOffset := newPlainSz - 1 + if oldPlainSz > 0 { + n1 := volume.contentEnc.PlainOffToBlockNo(oldPlainSz - 1) + n2 := volume.contentEnc.PlainOffToBlockNo(newEOFOffset) + // The file is grown within one block, no need to pad anything. + // Write a single zero to the last byte and let doWrite figure out the RMW. + if n1 == n2 { + buf := make([]byte, 1) + _, success := volume.doWrite(handleID, buf, newEOFOffset) + return success + } + } + // The truncate creates at least one new block. + // + // Make sure the old last block is padded to the block boundary. This call + // is a no-op if it is already block-aligned. + success := volume.zeroPad(handleID, oldPlainSz) + if !success { + return false + } + // The new size is block-aligned. In this case we can do everything ourselves + // and avoid the call to doWrite. + if newPlainSz%volume.contentEnc.PlainBS() == 0 { + // The file was empty, so it did not have a header. Create one. + if oldPlainSz == 0 { + id, err := createHeader(volume.file_handles[handleID].fd) + if err != nil { + return false + } + volume.fileIDs[handleID] = id + } + cSz := int64(volume.contentEnc.PlainSizeToCipherSize(newPlainSz)) + err := syscall.Ftruncate(int(volume.file_handles[handleID].fd.Fd()), cSz) + return errToBool(err) + } + // The new size is NOT aligned, so we need to write a partial block. + // Write a single zero to the last byte and let doWrite figure it out. + buf := make([]byte, 1) + _, success = volume.doWrite(handleID, buf, newEOFOffset) + return success +} + +func (volume *Volume) truncate(handleID int, newSize uint64) bool { + fileFD := int(volume.file_handles[handleID].fd.Fd()) + var err error + // Common case first: Truncate to zero + if newSize == 0 { + err = syscall.Ftruncate(fileFD, 0) + return err == nil + } + // We need the old file size to determine if we are growing or shrinking + // the file + oldSize, _, success := gcf_get_attrs(volume.volumeID, volume.file_handles[handleID].path) + if !success { + return false + } + + // File size stays the same - nothing to do + if newSize == oldSize { + return true + } + // File grows + if newSize > oldSize { + return volume.truncateGrowFile(handleID, oldSize, newSize) + } + + // File shrinks + blockNo := volume.contentEnc.PlainOffToBlockNo(newSize) + cipherOff := volume.contentEnc.BlockNoToCipherOff(blockNo) + plainOff := volume.contentEnc.BlockNoToPlainOff(blockNo) + lastBlockLen := newSize - plainOff + var data []byte + if lastBlockLen > 0 { + data, success = volume.doRead(handleID, nil, plainOff, lastBlockLen) + if !success { + return false + } + } + // Truncate down to the last complete block + err = syscall.Ftruncate(fileFD, int64(cipherOff)) + if err != nil { + return false + } + // Append partial block + if lastBlockLen > 0 { + _, success := volume.doWrite(handleID, data, plainOff) + return success + } + return true +} + +//export gcf_open_read_mode +func gcf_open_read_mode(sessionID int, path string) int { + volume := OpenedVolumes[sessionID] + dirfd, cName, err := volume.prepareAtSyscall(path) + if err != nil { + return -1 + } + defer syscall.Close(dirfd) + + // Open backing file + fd, err := syscallcompat.Openat(dirfd, cName, mangleOpenFlags(0), 0) + if err != nil { + return -1 + } + return volume.registerFileHandle(File{os.NewFile(uintptr(fd), cName), path}) +} + +//export gcf_open_write_mode +func gcf_open_write_mode(sessionID int, path string, mode uint32) int { + volume := OpenedVolumes[sessionID] + dirfd, cName, err := volume.prepareAtSyscall(path) + if err != nil { + return -1 + } + defer syscall.Close(dirfd) + + fd := -1 + newFlags := mangleOpenFlags(syscall.O_RDWR) + // Handle long file name + if !volume.plainTextNames && nametransform.IsLongContent(cName) { + // Create ".name" + err = volume.nameTransform.WriteLongNameAt(dirfd, cName, path) + if err != nil { + return -1 + } + // Create content + fd, err = syscallcompat.Openat(dirfd, cName, newFlags|syscall.O_CREAT, mode) + if err != nil { + nametransform.DeleteLongNameAt(dirfd, cName) + } + } else { + // Create content, normal (short) file name + fd, err = syscallcompat.Openat(dirfd, cName, newFlags|syscall.O_CREAT, mode) + } + if err != nil { + return -1 + } + return volume.registerFileHandle(File{os.NewFile(uintptr(fd), cName), path}) +} + +//export gcf_truncate +func gcf_truncate(sessionID int, handleID int, offset uint64) bool { + volume := OpenedVolumes[sessionID] + return volume.truncate(handleID, offset) +} + +//export gcf_read_file +func gcf_read_file(sessionID, handleID int, offset uint64, dst_buff []byte) uint32 { + length := len(dst_buff) + if length > contentenc.MAX_KERNEL_WRITE { + // This would crash us due to our fixed-size buffer pool + return 0 + } + + volume := OpenedVolumes[sessionID] + out, success := volume.doRead(handleID, dst_buff[:0], offset, uint64(length)) + if !success { + return 0 + } else { + return uint32(len(out)) + } +} + +//export gcf_write_file +func gcf_write_file(sessionID, handleID int, offset uint64, data []byte) uint32 { + length := len(data) + if length > contentenc.MAX_KERNEL_WRITE { + // This would crash us due to our fixed-size buffer pool + return 0 + } + + volume := OpenedVolumes[sessionID] + n, _ := volume.doWrite(handleID, data, offset) + return n +} + +//export gcf_close_file +func gcf_close_file(sessionID, handleID int) { + f, ok := OpenedVolumes[sessionID].file_handles[handleID] + if ok { + f.fd.Close() + delete(OpenedVolumes[sessionID].file_handles, handleID) + _, ok := OpenedVolumes[sessionID].fileIDs[handleID] + if ok { + delete(OpenedVolumes[sessionID].fileIDs, handleID) + } + } +} + +//export gcf_remove_file +func gcf_remove_file(sessionID int, path string) bool { + volume := OpenedVolumes[sessionID] + dirfd, cName, err := volume.prepareAtSyscall(path) + if err != nil { + return false + } + defer syscall.Close(dirfd) + + // Delete content + err = syscallcompat.Unlinkat(dirfd, cName, 0) + if err != nil { + return false + } + // Delete ".name" file + if !volume.plainTextNames && nametransform.IsLongContent(cName) { + err = nametransform.DeleteLongNameAt(dirfd, cName) + } + return errToBool(err) +} diff --git a/fsck.go b/fsck.go deleted file mode 100644 index 1f40514..0000000 --- a/fsck.go +++ /dev/null @@ -1,346 +0,0 @@ -package main - -import ( - "bytes" - "fmt" - "io" - "io/ioutil" - "os" - "os/signal" - "path/filepath" - "strings" - "sync" - "syscall" - - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/fusefrontend" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -type fsckObj struct { - rootNode *fusefrontend.RootNode - // mnt is the mountpoint of the temporary mount - mnt string - // List of corrupt files - corruptList []string - // List of skipped files - skippedList []string - // Protects corruptList - listLock sync.Mutex - // stop a running watchMitigatedCorruptions thread - watchDone chan struct{} - // Inode numbers of hard-linked files (Nlink > 1) that we have already checked - seenInodes map[uint64]struct{} - // abort the running fsck operation? Checked in a few long-running loops. - abort bool -} - -func runsAsRoot() bool { - return syscall.Geteuid() == 0 -} - -func (ck *fsckObj) markCorrupt(path string) { - ck.listLock.Lock() - ck.corruptList = append(ck.corruptList, path) - ck.listLock.Unlock() -} - -func (ck *fsckObj) markSkipped(path string) { - ck.listLock.Lock() - ck.skippedList = append(ck.skippedList, path) - ck.listLock.Unlock() -} - -func (ck *fsckObj) abs(relPath string) (absPath string) { - return filepath.Join(ck.mnt, relPath) -} - -// Watch for mitigated corruptions that occur during OpenDir() -func (ck *fsckObj) watchMitigatedCorruptionsOpenDir(path string) { - for { - select { - case item := <-ck.rootNode.MitigatedCorruptions: - fmt.Printf("fsck: corrupt entry in dir %q: %q\n", path, item) - ck.markCorrupt(filepath.Join(path, item)) - case <-ck.watchDone: - return - } - } -} - -// Recursively check dir for corruption -func (ck *fsckObj) dir(relPath string) { - tlog.Debug.Printf("ck.dir %q\n", relPath) - ck.xattrs(relPath) - // Run OpenDir and catch transparently mitigated corruptions - go ck.watchMitigatedCorruptionsOpenDir(relPath) - f, err := os.Open(ck.abs(relPath)) - ck.watchDone <- struct{}{} - if err != nil { - fmt.Printf("fsck: error opening dir %q: %v\n", relPath, err) - if err == os.ErrPermission && !runsAsRoot() { - ck.markSkipped(relPath) - } else { - ck.markCorrupt(relPath) - } - return - } - go ck.watchMitigatedCorruptionsOpenDir(relPath) - entries, err := f.Readdirnames(0) - ck.watchDone <- struct{}{} - if err != nil { - fmt.Printf("fsck: error reading dir %q: %v\n", relPath, err) - ck.markCorrupt(relPath) - return - } - for _, entry := range entries { - if ck.abort { - return - } - if entry == "." || entry == ".." { - continue - } - nextPath := filepath.Join(relPath, entry) - var st syscall.Stat_t - err := syscall.Lstat(ck.abs(nextPath), &st) - if err != nil { - ck.markCorrupt(filepath.Join(relPath, entry)) - continue - } - filetype := st.Mode & syscall.S_IFMT - //fmt.Printf(" %q %x\n", entry.Name, entry.Mode) - switch filetype { - case syscall.S_IFDIR: - ck.dir(nextPath) - case syscall.S_IFREG: - ck.file(nextPath) - case syscall.S_IFLNK: - ck.symlink(nextPath) - case syscall.S_IFIFO, syscall.S_IFSOCK, syscall.S_IFBLK, syscall.S_IFCHR: - // nothing to check - default: - fmt.Printf("fsck: unhandled file type %x\n", filetype) - } - } -} - -func (ck *fsckObj) symlink(relPath string) { - _, err := os.Readlink(ck.abs(relPath)) - if err != nil { - ck.markCorrupt(relPath) - fmt.Printf("fsck: error reading symlink %q: %v\n", relPath, err) - } -} - -// Watch for mitigated corruptions that occur during Read() -func (ck *fsckObj) watchMitigatedCorruptionsRead(path string) { - for { - select { - case item := <-ck.rootNode.MitigatedCorruptions: - fmt.Printf("fsck: corrupt file %q (inode %s)\n", path, item) - ck.markCorrupt(path) - case <-ck.watchDone: - return - } - } -} - -// Check file for corruption -func (ck *fsckObj) file(relPath string) { - tlog.Debug.Printf("ck.file %q\n", relPath) - var st syscall.Stat_t - err := syscall.Lstat(ck.abs(relPath), &st) - if err != nil { - ck.markCorrupt(relPath) - fmt.Printf("fsck: error stating file %q: %v\n", relPath, err) - return - } - if st.Nlink > 1 { - // Due to hard links, we may have already checked this file. - if _, ok := ck.seenInodes[st.Ino]; ok { - tlog.Debug.Printf("ck.file : skipping %q (inode number %d already seen)\n", relPath, st.Ino) - return - } - ck.seenInodes[st.Ino] = struct{}{} - } - ck.xattrs(relPath) - f, err := os.Open(ck.abs(relPath)) - if err != nil { - fmt.Printf("fsck: error opening file %q: %v\n", relPath, err) - if err == os.ErrPermission && !runsAsRoot() { - ck.markSkipped(relPath) - } else { - ck.markCorrupt(relPath) - } - return - } - defer f.Close() - // 128 kiB of zeros - allZero := make([]byte, fuse.MAX_KERNEL_WRITE) - buf := make([]byte, fuse.MAX_KERNEL_WRITE) - var off int64 - // Read() through the whole file and catch transparently mitigated corruptions - go ck.watchMitigatedCorruptionsRead(relPath) - defer func() { ck.watchDone <- struct{}{} }() - for { - if ck.abort { - return - } - tlog.Debug.Printf("ck.file: read %d bytes from offset %d\n", len(buf), off) - n, err := f.ReadAt(buf, off) - if err != nil && err != io.EOF { - ck.markCorrupt(relPath) - fmt.Printf("fsck: error reading file %q (inum %d): %v\n", relPath, inum(f), err) - return - } - // EOF - if err == io.EOF { - return - } - off += int64(n) - // If we seem to be in the middle of a file hole, try to skip to the next - // data section. - data := buf[:n] - if bytes.Equal(data, allZero) { - tlog.Debug.Printf("ck.file: trying to skip file hole\n") - const SEEK_DATA = 3 - nextOff, err := syscall.Seek(int(f.Fd()), off, SEEK_DATA) - if err == nil { - off = nextOff - } - } - } -} - -// Watch for mitigated corruptions that occur during ListXAttr() -func (ck *fsckObj) watchMitigatedCorruptionsListXAttr(path string) { - for { - select { - case item := <-ck.rootNode.MitigatedCorruptions: - fmt.Printf("fsck: corrupt xattr name on file %q: %q\n", path, item) - ck.markCorrupt(path + " xattr:" + item) - case <-ck.watchDone: - return - } - } -} - -// Check xattrs on file/dir at path -func (ck *fsckObj) xattrs(relPath string) { - // Run ListXAttr() and catch transparently mitigated corruptions - go ck.watchMitigatedCorruptionsListXAttr(relPath) - attrs, err := syscallcompat.Llistxattr(ck.abs(relPath)) - ck.watchDone <- struct{}{} - if err != nil { - fmt.Printf("fsck: error listing xattrs on %q: %v\n", relPath, err) - ck.markCorrupt(relPath) - return - } - // Try to read all xattr values - for _, a := range attrs { - _, err := syscallcompat.Lgetxattr(ck.abs(relPath), a) - if err != nil { - fmt.Printf("fsck: error reading xattr %q from %q: %v\n", a, relPath, err) - if err == syscall.EACCES && !runsAsRoot() { - ck.markSkipped(relPath) - } else { - ck.markCorrupt(relPath) - } - } - } -} - -// entrypoint from main() -func fsck(args *argContainer) (exitcode int) { - if args.reverse { - tlog.Fatal.Printf("Running -fsck with -reverse is not supported") - os.Exit(exitcodes.Usage) - } - args.allow_other = false - args.ro = true - var err error - args.mountpoint, err = ioutil.TempDir("", "gocryptfs.fsck.") - if err != nil { - tlog.Fatal.Printf("fsck: TmpDir: %v", err) - os.Exit(exitcodes.MountPoint) - } - pfs, wipeKeys := initFuseFrontend(args) - rn := pfs.(*fusefrontend.RootNode) - rn.MitigatedCorruptions = make(chan string) - ck := fsckObj{ - mnt: args.mountpoint, - rootNode: rn, - watchDone: make(chan struct{}), - seenInodes: make(map[uint64]struct{}), - } - if args.quiet { - // go-fuse throws a lot of these: - // writer: Write/Writev failed, err: 2=no such file or directory. opcode: INTERRUPT - // This is ugly and causes failures in xfstests. Hide them away in syslog. - tlog.SwitchLoggerToSyslog() - } - // Mount - srv := initGoFuse(pfs, args) - // Handle SIGINT & SIGTERM - ch := make(chan os.Signal, 1) - signal.Notify(ch, os.Interrupt) - signal.Notify(ch, syscall.SIGTERM) - go func() { - <-ch - ck.abort = true - }() - defer func() { - err = srv.Unmount() - if err != nil { - tlog.Warn.Printf("failed to unmount %q: %v", ck.mnt, err) - } else { - if err := syscall.Rmdir(ck.mnt); err != nil { - tlog.Warn.Printf("cleaning up %q failed: %v", ck.mnt, err) - } - } - }() - // Recursively check the root dir - ck.dir("") - // Report results - wipeKeys() - if ck.abort { - tlog.Info.Printf("fsck: aborted") - return exitcodes.Other - } - if len(ck.corruptList) == 0 && len(ck.skippedList) == 0 { - tlog.Info.Printf("fsck summary: no problems found\n") - return 0 - } - if len(ck.skippedList) > 0 { - tlog.Warn.Printf("fsck: re-run this program as root to check all files!\n") - } - fmt.Printf("fsck summary: %d corrupt files, %d files skipped\n", len(ck.corruptList), len(ck.skippedList)) - return exitcodes.FsckErrors -} - -type sortableDirEntries []fuse.DirEntry - -func (s sortableDirEntries) Len() int { - return len(s) -} - -func (s sortableDirEntries) Swap(i, j int) { - s[i], s[j] = s[j], s[i] -} - -func (s sortableDirEntries) Less(i, j int) bool { - return strings.Compare(s[i].Name, s[j].Name) < 0 -} - -func inum(f *os.File) uint64 { - var st syscall.Stat_t - err := syscall.Fstat(int(f.Fd()), &st) - if err != nil { - tlog.Warn.Printf("inum: fstat failed: %v", err) - return 0 - } - return st.Ino -} diff --git a/go.mod b/go.mod deleted file mode 100644 index e80a4bc..0000000 --- a/go.mod +++ /dev/null @@ -1,19 +0,0 @@ -module github.com/rfjakob/gocryptfs - -go 1.13 - -require ( - github.com/hanwen/go-fuse/v2 v2.1.1-0.20210508151621-62c5aa1919a7 - github.com/jacobsa/crypto v0.0.0-20190317225127-9f44e2d11115 - github.com/jacobsa/oglematchers v0.0.0-20150720000706-141901ea67cd // indirect - github.com/jacobsa/oglemock v0.0.0-20150831005832-e94d794d06ff // indirect - github.com/jacobsa/ogletest v0.0.0-20170503003838-80d50a735a11 // indirect - github.com/jacobsa/reqtrace v0.0.0-20150505043853-245c9e0234cb // indirect - github.com/pkg/xattr v0.4.1 - github.com/rfjakob/eme v1.1.1 - github.com/sabhiram/go-gitignore v0.0.0-20180611051255-d3107576ba94 - github.com/stretchr/testify v1.5.1 // indirect - golang.org/x/crypto v0.0.0-20200429183012-4b2356b1ed79 - golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect - golang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3 -) diff --git a/go.sum b/go.sum deleted file mode 100644 index 8a59eb2..0000000 --- a/go.sum +++ /dev/null @@ -1,48 +0,0 @@ -github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= -github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/hanwen/go-fuse v1.0.0 h1:GxS9Zrn6c35/BnfiVsZVWmsG803xwE7eVRDvcf/BEVc= -github.com/hanwen/go-fuse v1.0.0/go.mod h1:unqXarDXqzAk0rt98O2tVndEPIpUgLD9+rwFisZH3Ok= -github.com/hanwen/go-fuse/v2 v2.1.1-0.20210508151621-62c5aa1919a7 h1:9K/MBPvPptwwCYIw8gBi/Sup5Uw8UeYlyKBxxzl931Y= -github.com/hanwen/go-fuse/v2 v2.1.1-0.20210508151621-62c5aa1919a7/go.mod h1:oRyA5eK+pvJyv5otpO/DgccS8y/RvYMaO00GgRLGryc= -github.com/jacobsa/crypto v0.0.0-20190317225127-9f44e2d11115 h1:YuDUUFNM21CAbyPOpOP8BicaTD/0klJEKt5p8yuw+uY= -github.com/jacobsa/crypto v0.0.0-20190317225127-9f44e2d11115/go.mod h1:LadVJg0XuawGk+8L1rYnIED8451UyNxEMdTWCEt5kmU= -github.com/jacobsa/oglematchers v0.0.0-20150720000706-141901ea67cd h1:9GCSedGjMcLZCrusBZuo4tyKLpKUPenUUqi34AkuFmA= -github.com/jacobsa/oglematchers v0.0.0-20150720000706-141901ea67cd/go.mod h1:TlmyIZDpGmwRoTWiakdr+HA1Tukze6C6XbRVidYq02M= -github.com/jacobsa/oglemock v0.0.0-20150831005832-e94d794d06ff h1:2xRHTvkpJ5zJmglXLRqHiZQNjUoOkhUyhTAhEQvPAWw= -github.com/jacobsa/oglemock v0.0.0-20150831005832-e94d794d06ff/go.mod h1:gJWba/XXGl0UoOmBQKRWCJdHrr3nE0T65t6ioaj3mLI= -github.com/jacobsa/ogletest v0.0.0-20170503003838-80d50a735a11 h1:BMb8s3ENQLt5ulwVIHVDWFHp8eIXmbfSExkvdn9qMXI= -github.com/jacobsa/ogletest v0.0.0-20170503003838-80d50a735a11/go.mod h1:+DBdDyfoO2McrOyDemRBq0q9CMEByef7sYl7JH5Q3BI= -github.com/jacobsa/reqtrace v0.0.0-20150505043853-245c9e0234cb h1:uSWBjJdMf47kQlXMwWEfmc864bA1wAC+Kl3ApryuG9Y= -github.com/jacobsa/reqtrace v0.0.0-20150505043853-245c9e0234cb/go.mod h1:ivcmUvxXWjb27NsPEaiYK7AidlZXS7oQ5PowUS9z3I4= -github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348 h1:MtvEpTB6LX3vkb4ax0b5D2DHbNAUsen0Gx5wZoq3lV4= -github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k= -github.com/pkg/xattr v0.4.1 h1:dhclzL6EqOXNaPDWqoeb9tIxATfBSmjqL0b4DpSjwRw= -github.com/pkg/xattr v0.4.1/go.mod h1:W2cGD0TBEus7MkUgv0tNZ9JutLtVO3cXu+IBRuHqnFs= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= -github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/rfjakob/eme v1.1.1 h1:t+CgvcOn+eDvj2xdglxsSnkgg8LM8jwdxnV7OnsrTn0= -github.com/rfjakob/eme v1.1.1/go.mod h1:U2bmx0hDj8EyDdcxmD5t3XHDnBFnyNNc22n1R4008eM= -github.com/sabhiram/go-gitignore v0.0.0-20180611051255-d3107576ba94 h1:G04eS0JkAIVZfaJLjla9dNxkJCPiKIGZlw9AfOhzOD0= -github.com/sabhiram/go-gitignore v0.0.0-20180611051255-d3107576ba94/go.mod h1:b18R55ulyQ/h3RaWyloPyER7fWQVZvimKKhnI5OfrJQ= -github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= -github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20200429183012-4b2356b1ed79 h1:IaQbIIB2X/Mp/DKctl6ROxz1KyMlKp4uyvL6+kQ7C88= -golang.org/x/crypto v0.0.0-20200429183012-4b2356b1ed79/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181021155630-eda9bb28ed51/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3 h1:5B6i6EAiSYyejWfvc5Rc9BbI3rzIsrrXfAQBWnYfn+w= -golang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= -gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/gocryptfs-xray/.gitignore b/gocryptfs-xray/.gitignore deleted file mode 100644 index bad094d..0000000 --- a/gocryptfs-xray/.gitignore +++ /dev/null @@ -1 +0,0 @@ -gocryptfs-xray diff --git a/gocryptfs-xray/paths_ctlsock.go b/gocryptfs-xray/paths_ctlsock.go deleted file mode 100644 index c489f0e..0000000 --- a/gocryptfs-xray/paths_ctlsock.go +++ /dev/null @@ -1,62 +0,0 @@ -package main - -import ( - "bufio" - "fmt" - "os" - - "github.com/rfjakob/gocryptfs/ctlsock" -) - -func decryptPaths(socketPath string, sep0 bool) { - var req ctlsock.RequestStruct - transformPaths(socketPath, &req, &req.DecryptPath, sep0) -} - -func encryptPaths(socketPath string, sep0 bool) { - var req ctlsock.RequestStruct - transformPaths(socketPath, &req, &req.EncryptPath, sep0) -} - -func transformPaths(socketPath string, req *ctlsock.RequestStruct, in *string, sep0 bool) { - errorCount := 0 - c, err := ctlsock.New(socketPath) - if err != nil { - fmt.Printf("fatal: %v\n", err) - os.Exit(1) - } - line := 1 - var separator byte = '\n' - if sep0 { - separator = '\000' - } - r := bufio.NewReader(os.Stdin) - for eof := false; eof == false; line++ { - val, err := r.ReadBytes(separator) - if len(val) == 0 { - break - } - if err != nil { - // break the loop after we have processed the last val - eof = true - } else { - // drop trailing separator - val = val[:len(val)-1] - } - *in = string(val) - resp, err := c.Query(req) - if err != nil { - fmt.Fprintf(os.Stderr, "error at input line %d %q: %v\n", line, *in, err) - errorCount++ - continue - } - if resp.WarnText != "" { - fmt.Fprintf(os.Stderr, "warning at input line %d %q: %v\n", line, *in, resp.WarnText) - } - fmt.Printf("%s%c", resp.Result, separator) - } - if errorCount == 0 { - os.Exit(0) - } - os.Exit(1) -} diff --git a/gocryptfs-xray/xray_main.go b/gocryptfs-xray/xray_main.go deleted file mode 100644 index b99268b..0000000 --- a/gocryptfs-xray/xray_main.go +++ /dev/null @@ -1,205 +0,0 @@ -package main - -import ( - "encoding/hex" - "flag" - "fmt" - "io" - "os" - "runtime" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/fido2" - "github.com/rfjakob/gocryptfs/internal/readpassword" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// GitVersion is the gocryptfs version according to git, set by build.bash -var GitVersion = "[GitVersion not set - please compile using ./build.bash]" - -// GitVersionFuse is the go-fuse library version, set by build.bash -var GitVersionFuse = "[GitVersionFuse not set - please compile using ./build.bash]" - -// BuildDate is a date string like "2017-09-06", set by build.bash -var BuildDate = "0000-00-00" - -const ( - ivLen = contentenc.DefaultIVBits / 8 - authTagLen = cryptocore.AuthTagLen - blockSize = contentenc.DefaultBS + ivLen + cryptocore.AuthTagLen - myName = "gocryptfs-xray" -) - -func errExit(err error) { - fmt.Println(err) - os.Exit(1) -} - -func prettyPrintHeader(h *contentenc.FileHeader, aessiv bool) { - id := hex.EncodeToString(h.ID) - msg := "Header: Version: %d, Id: %s" - if aessiv { - msg += ", assuming AES-SIV mode" - } else { - msg += ", assuming AES-GCM mode" - } - fmt.Printf(msg+"\n", h.Version, id) -} - -// printVersion prints a version string like this: -// gocryptfs v1.7-32-gcf99cfd; go-fuse v1.0.0-174-g22a9cb9; 2019-05-12 go1.12 linux/amd64 -func printVersion() { - built := fmt.Sprintf("%s %s", BuildDate, runtime.Version()) - fmt.Printf("%s %s; %s %s/%s\n", - myName, GitVersion, built, - runtime.GOOS, runtime.GOARCH) -} - -func usage() { - printVersion() - fmt.Printf("\n") - fmt.Fprintf(os.Stderr, "Usage: %s [OPTIONS] FILE\n"+ - "\n"+ - "Options:\n", myName) - flag.PrintDefaults() - fmt.Fprintf(os.Stderr, "\n"+ - "Examples:\n"+ - " gocryptfs-xray myfs/mCXnISiv7nEmyc0glGuhTQ\n"+ - " gocryptfs-xray -dumpmasterkey myfs/gocryptfs.conf\n"+ - " gocryptfs-xray -encrypt-paths myfs.sock\n") -} - -// sum counts the number of true values -func sum(x ...*bool) (s int) { - for _, v := range x { - if *v { - s++ - } - } - return s -} - -func main() { - var args struct { - dumpmasterkey *bool - decryptPaths *bool - encryptPaths *bool - aessiv *bool - sep0 *bool - fido2 *string - version *bool - } - args.dumpmasterkey = flag.Bool("dumpmasterkey", false, "Decrypt and dump the master key") - args.decryptPaths = flag.Bool("decrypt-paths", false, "Decrypt file paths using gocryptfs control socket") - args.encryptPaths = flag.Bool("encrypt-paths", false, "Encrypt file paths using gocryptfs control socket") - args.sep0 = flag.Bool("0", false, "Use \\0 instead of \\n as separator") - args.aessiv = flag.Bool("aessiv", false, "Assume AES-SIV mode instead of AES-GCM") - args.fido2 = flag.String("fido2", "", "Protect the masterkey using a FIDO2 token instead of a password") - args.version = flag.Bool("version", false, "Print version information") - - flag.Usage = usage - flag.Parse() - - if *args.version { - printVersion() - os.Exit(0) - } - - s := sum(args.dumpmasterkey, args.decryptPaths, args.encryptPaths) - if s > 1 { - fmt.Printf("fatal: %d operations were requested\n", s) - os.Exit(1) - } - if flag.NArg() != 1 { - usage() - os.Exit(1) - } - fn := flag.Arg(0) - if *args.decryptPaths { - decryptPaths(fn, *args.sep0) - } - if *args.encryptPaths { - encryptPaths(fn, *args.sep0) - } - fd, err := os.Open(fn) - if err != nil { - errExit(err) - } - defer fd.Close() - if *args.dumpmasterkey { - dumpMasterKey(fn, *args.fido2) - } else { - inspectCiphertext(fd, *args.aessiv) - } -} - -func dumpMasterKey(fn string, fido2Path string) { - tlog.Info.Enabled = false - cf, err := configfile.Load(fn) - if err != nil { - fmt.Fprintln(os.Stderr, err) - exitcodes.Exit(err) - } - var pw []byte - if cf.IsFeatureFlagSet(configfile.FlagFIDO2) { - if fido2Path == "" { - tlog.Fatal.Printf("Masterkey encrypted using FIDO2 token; need to use the --fido2 option.") - os.Exit(exitcodes.Usage) - } - pw = fido2.Secret(fido2Path, cf.FIDO2.CredentialID, cf.FIDO2.HMACSalt) - } else { - pw = readpassword.Once(nil, nil, "") - } - masterkey, err := cf.DecryptMasterKey(pw) - fmt.Println(hex.EncodeToString(masterkey)) - for i := range pw { - pw[i] = 0 - } -} - -func inspectCiphertext(fd *os.File, aessiv bool) { - headerBytes := make([]byte, contentenc.HeaderLen) - n, err := fd.ReadAt(headerBytes, 0) - if err == io.EOF && n == 0 { - fmt.Println("empty file") - os.Exit(0) - } else if err == io.EOF { - fmt.Printf("incomplete file header: read %d bytes, want %d\n", n, contentenc.HeaderLen) - os.Exit(1) - } else if err != nil { - errExit(err) - } - header, err := contentenc.ParseHeader(headerBytes) - if err != nil { - errExit(err) - } - prettyPrintHeader(header, aessiv) - var i int64 - buf := make([]byte, blockSize) - for i = 0; ; i++ { - off := contentenc.HeaderLen + i*blockSize - n, err := fd.ReadAt(buf, off) - if err != nil && err != io.EOF { - errExit(err) - } - if n == 0 && err == io.EOF { - break - } - // A block contains at least the IV, the Auth Tag and 1 data byte - if n < ivLen+authTagLen+1 { - errExit(fmt.Errorf("corrupt block: truncated data, len=%d", n)) - } - data := buf[:n] - // Parse block data - iv := data[:ivLen] - tag := data[len(data)-authTagLen:] - if aessiv { - tag = data[ivLen : ivLen+authTagLen] - } - fmt.Printf("Block %2d: IV: %s, Tag: %s, Offset: %5d Len: %d\n", - i, hex.EncodeToString(iv), hex.EncodeToString(tag), off, len(data)) - } -} diff --git a/gocryptfs-xray/xray_tests/aesgcm_fs.masterkey.txt b/gocryptfs-xray/xray_tests/aesgcm_fs.masterkey.txt deleted file mode 100644 index 8c9cefb..0000000 --- a/gocryptfs-xray/xray_tests/aesgcm_fs.masterkey.txt +++ /dev/null @@ -1,4 +0,0 @@ -Your master key is: - - b4d8b25c-324dd6ea-a328c990-6e8a2a3c- - 6038552a-042ced43-26cfff21-0c62957a diff --git a/gocryptfs-xray/xray_tests/aesgcm_fs.xray.txt b/gocryptfs-xray/xray_tests/aesgcm_fs.xray.txt deleted file mode 100644 index c403b75..0000000 --- a/gocryptfs-xray/xray_tests/aesgcm_fs.xray.txt +++ /dev/null @@ -1,3 +0,0 @@ -Header: Version: 2, Id: 8932adf303fe0289679d47fa84d2b241, assuming AES-GCM mode -Block 0: IV: c8536b4bfd92f5dc3c1e2ac29f116d4a, Tag: 22b20422749b2f4bba67ec7d3bb1ac34, Offset: 18 Len: 4128 -Block 1: IV: 2de68f4965779bb137ef2b3c20453556, Tag: 3e8758d6872234b1fffab2504e623467, Offset: 4146 Len: 936 diff --git a/gocryptfs-xray/xray_tests/aesgcm_fs/VnvoeSetPaOFjZDaZAh0lA b/gocryptfs-xray/xray_tests/aesgcm_fs/VnvoeSetPaOFjZDaZAh0lA deleted file mode 100644 index 420c1c5..0000000 Binary files a/gocryptfs-xray/xray_tests/aesgcm_fs/VnvoeSetPaOFjZDaZAh0lA and /dev/null differ diff --git a/gocryptfs-xray/xray_tests/aesgcm_fs/gocryptfs.conf b/gocryptfs-xray/xray_tests/aesgcm_fs/gocryptfs.conf deleted file mode 100644 index f8f288b..0000000 --- a/gocryptfs-xray/xray_tests/aesgcm_fs/gocryptfs.conf +++ /dev/null @@ -1,20 +0,0 @@ -{ - "Creator": "gocryptfs v1.7-beta1-11-g8d71f8f-dirty", - "EncryptedKey": "Rp0VYTJ9QK2imhJQH1miFIgAYZbsfv3t1tvPJvsOVy86ogBzKpUuMDFXD+PPawLvZM/TuYl0n3gx1RY5hzFfbg==", - "ScryptObject": { - "Salt": "mDPjzd+SZpScPYVv/M9AFjNzXcUy6fqKckXay53EQdQ=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "HKDF", - "DirIV", - "EMENames", - "LongNames", - "Raw64" - ] -} diff --git a/gocryptfs-xray/xray_tests/aesgcm_fs/gocryptfs.diriv b/gocryptfs-xray/xray_tests/aesgcm_fs/gocryptfs.diriv deleted file mode 100644 index c8d256f..0000000 --- a/gocryptfs-xray/xray_tests/aesgcm_fs/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -™˜:õjµ‹͉/î\W„ \ No newline at end of file diff --git a/gocryptfs-xray/xray_tests/aessiv_fs.masterkey.txt b/gocryptfs-xray/xray_tests/aessiv_fs.masterkey.txt deleted file mode 100644 index 42c5e23..0000000 --- a/gocryptfs-xray/xray_tests/aessiv_fs.masterkey.txt +++ /dev/null @@ -1,4 +0,0 @@ -Your master key is: - - 83dfe2df-9f6ad754-179cb4d5-377a65dd- - bff54950-10e1b7b5-faf409e3-f7d8eeee diff --git a/gocryptfs-xray/xray_tests/aessiv_fs.xray.txt b/gocryptfs-xray/xray_tests/aessiv_fs.xray.txt deleted file mode 100644 index 37d6ebb..0000000 --- a/gocryptfs-xray/xray_tests/aessiv_fs.xray.txt +++ /dev/null @@ -1,3 +0,0 @@ -Header: Version: 2, Id: d839806747918e345633fcdd0988e67c, assuming AES-SIV mode -Block 0: IV: 1d3ce2b13260f83766ccf9a670478a4b, Tag: 0b6f95bd523b4c93704e15ecc6bef8e7, Offset: 18 Len: 4128 -Block 1: IV: 7eb947d2adf18adf3bed39bbc8052968, Tag: 1a272903e5a987f53f07344840387c20, Offset: 4146 Len: 936 diff --git a/gocryptfs-xray/xray_tests/aessiv_fs/gocryptfs.conf b/gocryptfs-xray/xray_tests/aessiv_fs/gocryptfs.conf deleted file mode 100644 index 31b565a..0000000 --- a/gocryptfs-xray/xray_tests/aessiv_fs/gocryptfs.conf +++ /dev/null @@ -1,21 +0,0 @@ -{ - "Creator": "gocryptfs v1.7-beta1-11-g8d71f8f-dirty", - "EncryptedKey": "YOxpZ+cImv4HirwuwIUpRmOMlyAFRvEqHOXdgpMcGvIlm70h4q+shSr3RZ19xomnbFZXGfIfKQ2APtVYWOAwuw==", - "ScryptObject": { - "Salt": "OzdcVESNmkD0403NHBWezQmq2SyDyLOY2/B4Aev2lHc=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "HKDF", - "DirIV", - "EMENames", - "LongNames", - "Raw64", - "AESSIV" - ] -} diff --git a/gocryptfs-xray/xray_tests/aessiv_fs/gocryptfs.diriv b/gocryptfs-xray/xray_tests/aessiv_fs/gocryptfs.diriv deleted file mode 100644 index 18f75ca..0000000 --- a/gocryptfs-xray/xray_tests/aessiv_fs/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -£_³5Òöªœpšº½… F \ No newline at end of file diff --git a/gocryptfs-xray/xray_tests/aessiv_fs/klepPXQJIaEDaIx-yurAqQ b/gocryptfs-xray/xray_tests/aessiv_fs/klepPXQJIaEDaIx-yurAqQ deleted file mode 100644 index b4674cc..0000000 Binary files a/gocryptfs-xray/xray_tests/aessiv_fs/klepPXQJIaEDaIx-yurAqQ and /dev/null differ diff --git a/gocryptfs-xray/xray_tests/xray_test.go b/gocryptfs-xray/xray_tests/xray_test.go deleted file mode 100644 index 790d2db..0000000 --- a/gocryptfs-xray/xray_tests/xray_test.go +++ /dev/null @@ -1,110 +0,0 @@ -package xray_tests - -import ( - "bytes" - "fmt" - "io/ioutil" - "os/exec" - "testing" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func TestAesgcmXray(t *testing.T) { - expected, err := ioutil.ReadFile("aesgcm_fs.xray.txt") - if err != nil { - t.Fatal(err) - } - cmd := exec.Command("../gocryptfs-xray", "aesgcm_fs/VnvoeSetPaOFjZDaZAh0lA") - out, err := cmd.CombinedOutput() - if err != nil { - t.Fatal(err) - } - if bytes.Compare(out, expected) != 0 { - t.Errorf("Unexpected output") - fmt.Printf("expected:\n%s", string(expected)) - fmt.Printf("have:\n%s", string(out)) - } -} - -func TestAessivXray(t *testing.T) { - expected, err := ioutil.ReadFile("aessiv_fs.xray.txt") - if err != nil { - t.Fatal(err) - } - cmd := exec.Command("../gocryptfs-xray", "-aessiv", "aessiv_fs/klepPXQJIaEDaIx-yurAqQ") - out, err := cmd.CombinedOutput() - if err != nil { - t.Fatal(err) - } - if bytes.Compare(out, expected) != 0 { - t.Errorf("Unexpected output") - fmt.Printf("expected:\n%s", string(expected)) - fmt.Printf("have:\n%s", string(out)) - } -} - -func TestDumpmasterkey(t *testing.T) { - expected := "b4d8b25c324dd6eaa328c9906e8a2a3c6038552a042ced4326cfff210c62957a\n" - cmd := exec.Command("../gocryptfs-xray", "-dumpmasterkey", "aesgcm_fs/gocryptfs.conf") - // Password = "test" - cmd.Stdin = bytes.NewBuffer([]byte("test")) - out1, err := cmd.CombinedOutput() - if err != nil { - t.Fatal(err) - } - out := string(out1) - if out != expected { - t.Errorf("Wrong output") - fmt.Printf("expected: %s\n", expected) - fmt.Printf("have: %s\n", out) - } -} - -func TestEncryptPaths(t *testing.T) { - cDir := test_helpers.InitFS(t) - pDir := cDir + ".mnt" - sock := cDir + ".sock" - test_helpers.MountOrFatal(t, cDir, pDir, "-ctlsock="+sock, "-extpass", "echo test") - defer test_helpers.UnmountPanic(pDir) - - testCases := []struct { - in []string - sep0 bool - }{ - { - []string{ - "test1", - "test1\n", - "test1\ntest2", - "test1\ntest2\n", - }, - false, - }, - { - []string{ - "test1", - "test1\000", - "test1\000test2", - "test1\000test2\000", - }, - true, - }, - } - - for _, tc := range testCases { - for _, in := range tc.in { - sepArg := "-0=false" - if tc.sep0 { - sepArg = "-0=true" - } - cmd := exec.Command("../gocryptfs-xray", "-encrypt-paths", sepArg, sock) - cmd.Stdin = bytes.NewBuffer([]byte(in)) - out, err := cmd.CombinedOutput() - t.Logf("%q", string(out)) - if err != nil { - t.Fatal(err) - } - } - } -} diff --git a/golint.bash b/golint.bash deleted file mode 100755 index d6fe729..0000000 --- a/golint.bash +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -u - -OUTPUT=$( - golint ./... | \ - grep -v "don't use an underscore in package name" | \ - grep -v "don't use ALL_CAPS in Go names; use CamelCase" | - grep -v "don't use underscores in Go names" -) - -# No output --> all good -if [[ -z $OUTPUT ]] ; then - exit 0 -fi - -echo "golint.bash:" -echo "$OUTPUT" -exit 1 diff --git a/help.go b/help.go deleted file mode 100644 index 5cd35ac..0000000 --- a/help.go +++ /dev/null @@ -1,56 +0,0 @@ -package main - -import ( - "fmt" - - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -const tUsage = "" + - "Usage: " + tlog.ProgramName + " -init|-passwd|-info [OPTIONS] CIPHERDIR\n" + - " or " + tlog.ProgramName + " [OPTIONS] CIPHERDIR MOUNTPOINT\n" - -// helpShort is what gets displayed when passed "-h" or on syntax error. -func helpShort() { - printVersion() - fmt.Printf("\n") - fmt.Printf(tUsage) - fmt.Printf(` -Common Options (use -hh to show all): - -aessiv Use AES-SIV encryption (with -init) - -allow_other Allow other users to access the mount - -i, -idle Unmount automatically after specified idle duration - -config Custom path to config file - -ctlsock Create control socket at location - -extpass Call external program to prompt for the password - -fg Stay in the foreground - -fsck Check filesystem integrity - -fusedebug Debug FUSE calls - -h, -help This short help text - -hh Long help text with all options - -init Initialize encrypted directory - -info Display information about encrypted directory - -masterkey Mount with explicit master key instead of password - -nonempty Allow mounting over non-empty directory - -nosyslog Do not redirect log messages to syslog - -passfile Read password from plain text file(s) - -passwd Change password - -plaintextnames Do not encrypt file names (with -init) - -q, -quiet Silence informational messages - -reverse Enable reverse mode - -ro Mount read-only - -speed Run crypto speed test - -version Print version information - -- Stop option parsing -`) -} - -// helpLong gets only displayed on "-hh" -func helpLong() { - printVersion() - fmt.Printf("\n") - fmt.Printf(tUsage) - fmt.Printf("\nOptions:\n") - flagSet.PrintDefaults() - fmt.Printf(" --\n Stop option parsing\n") -} diff --git a/helpers.go b/helpers.go new file mode 100644 index 0000000..3e1169b --- /dev/null +++ b/helpers.go @@ -0,0 +1,183 @@ +package main + +import ( + "path/filepath" + "strings" + "syscall" + + "./internal/configfile" + "./internal/nametransform" + "./internal/syscallcompat" +) + +// isFiltered - check if plaintext "path" should be forbidden +// +// Prevents name clashes with internal files when file names are not encrypted +func (volume *Volume) isFiltered(path string) bool { + if !volume.plainTextNames { + return false + } + // gocryptfs.conf in the root directory is forbidden + if path == configfile.ConfDefaultName { + return true + } + // Note: gocryptfs.diriv is NOT forbidden because diriv and plaintextnames + // are exclusive + return false +} + +func (volume *Volume) openBackingDir(relPath string) (dirfd int, cName string, err error) { + dirRelPath := nametransform.Dir(relPath) + // With PlaintextNames, we don't need to read DirIVs. Easy. + if volume.plainTextNames { + dirfd, err = syscallcompat.OpenDirNofollow(volume.rootCipherDir, dirRelPath) + if err != nil { + return -1, "", err + } + // If relPath is empty, cName is ".". + cName = filepath.Base(relPath) + return dirfd, cName, nil + } + // Open cipherdir (following symlinks) + dirfd, err = syscallcompat.Open(volume.rootCipherDir, syscall.O_DIRECTORY|syscallcompat.O_PATH, 0) + if err != nil { + return -1, "", err + } + // If relPath is empty, cName is ".". + if relPath == "" { + return dirfd, ".", nil + } + // Walk the directory tree + parts := strings.Split(relPath, "/") + for i, name := range parts { + iv, err := nametransform.ReadDirIVAt(dirfd) + if err != nil { + syscall.Close(dirfd) + return -1, "", err + } + cName, err = volume.nameTransform.EncryptAndHashName(name, iv) + if err != nil { + syscall.Close(dirfd) + return -1, "", err + } + // Last part? We are done. + if i == len(parts)-1 { + break + } + // Not the last part? Descend into next directory. + dirfd2, err := syscallcompat.Openat(dirfd, cName, syscall.O_NOFOLLOW|syscall.O_DIRECTORY|syscallcompat.O_PATH, 0) + syscall.Close(dirfd) + if err != nil { + return -1, "", err + } + dirfd = dirfd2 + } + return dirfd, cName, nil +} + +func (volume *Volume) prepareAtSyscall(path string) (dirfd int, cName string, err error) { + // root node itself is special + if path == "" { + return volume.openBackingDir(path) + } + + // Cache lookup + // TODO make it work for plaintextnames as well? + if !volume.plainTextNames { + directory, ok := volume.dirCache[path] + if ok { + if directory.fd > 0 { + cName, err := volume.nameTransform.EncryptAndHashName(filepath.Base(path), directory.iv) + if err != nil { + return -1, "", err + } + dirfd, err = syscall.Dup(directory.fd) + if err != nil { + return -1, "", err + } + return dirfd, cName, nil + } + } + } + + // Slowpath + if volume.isFiltered(path) { + return -1, "", syscall.EPERM + } + dirfd, cName, err = volume.openBackingDir(path) + if err != nil { + return -1, "", err + } + + // Cache store + if !volume.plainTextNames { + // TODO: openBackingDir already calls ReadDirIVAt(). Avoid duplicate work? + iv, err := nametransform.ReadDirIVAt(dirfd) + if err != nil { + syscall.Close(dirfd) + return -1, "", err + } + dirfdDup, err := syscall.Dup(dirfd) + if err == nil { + var pathCopy strings.Builder + pathCopy.WriteString(path) + volume.dirCache[pathCopy.String()] = Directory{dirfdDup, iv} + } + } + return +} + +// decryptSymlinkTarget: "cData64" is base64-decoded and decrypted +// like file contents (GCM). +// The empty string decrypts to the empty string. +// +// This function does not do any I/O and is hence symlink-safe. +func (volume *Volume) decryptSymlinkTarget(cData64 string) (string, error) { + if cData64 == "" { + return "", nil + } + cData, err := volume.nameTransform.B64DecodeString(cData64) + if err != nil { + return "", err + } + data, err := volume.contentEnc.DecryptBlock([]byte(cData), 0, nil) + if err != nil { + return "", err + } + return string(data), nil +} + +// readlink reads and decrypts a symlink. Used by Readlink, Getattr, Lookup. +func (volume *Volume) readlink(dirfd int, cName string) []byte { + cTarget, err := syscallcompat.Readlinkat(dirfd, cName) + if err != nil { + return nil + } + if volume.plainTextNames { + return []byte(cTarget) + } + // Symlinks are encrypted like file contents (GCM) and base64-encoded + target, err := volume.decryptSymlinkTarget(cTarget) + if err != nil { + return nil + } + return []byte(target) +} + +func isRegular(mode uint32) bool { return (mode & syscall.S_IFMT) == syscall.S_IFREG } + +func isSymlink(mode uint32) bool { return (mode & syscall.S_IFMT) == syscall.S_IFLNK } + +// translateSize translates the ciphertext size in `out` into plaintext size. +// Handles regular files & symlinks (and finds out what is what by looking at +// `out.Mode`). +func (volume *Volume) translateSize(dirfd int, cName string, st *syscall.Stat_t) uint64 { + var size uint64 + if isRegular(st.Mode) { + size = volume.contentEnc.CipherSizeToPlainSize(uint64(st.Size)) + } else if isSymlink(st.Mode) { + target := volume.readlink(dirfd, cName) + size = uint64(len(target)) + } + return size +} diff --git a/info.go b/info.go deleted file mode 100644 index bbc5a10..0000000 --- a/info.go +++ /dev/null @@ -1,44 +0,0 @@ -package main - -import ( - "encoding/json" - "fmt" - "io/ioutil" - "os" - "strings" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// info pretty-prints the contents of the config file at "filename" for human -// consumption, stripping out sensitive data. -// This is called when you pass the "-info" option. -func info(filename string) { - // Read from disk - js, err := ioutil.ReadFile(filename) - if err != nil { - tlog.Fatal.Printf("Reading config file failed: %v", err) - os.Exit(exitcodes.LoadConf) - } - // Unmarshal - var cf configfile.ConfFile - err = json.Unmarshal(js, &cf) - if err != nil { - tlog.Fatal.Printf("Failed to unmarshal config file") - os.Exit(exitcodes.LoadConf) - } - if cf.Version != contentenc.CurrentVersion { - tlog.Fatal.Printf("Unsupported on-disk format %d", cf.Version) - os.Exit(exitcodes.LoadConf) - } - // Pretty-print - fmt.Printf("Creator: %s\n", cf.Creator) - fmt.Printf("FeatureFlags: %s\n", strings.Join(cf.FeatureFlags, " ")) - fmt.Printf("EncryptedKey: %dB\n", len(cf.EncryptedKey)) - s := cf.ScryptObject - fmt.Printf("ScryptObject: Salt=%dB N=%d R=%d P=%d KeyLen=%d\n", - len(s.Salt), s.N, s.R, s.P, s.KeyLen) -} diff --git a/init_dir.go b/init_dir.go deleted file mode 100644 index 68268a0..0000000 --- a/init_dir.go +++ /dev/null @@ -1,134 +0,0 @@ -package main - -import ( - "fmt" - "io/ioutil" - "os" - "path/filepath" - "strings" - "syscall" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/fido2" - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/readpassword" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// isEmptyDir checks if "dir" exists and is an empty directory. -// Returns an *os.PathError if Stat() on the path fails. -func isEmptyDir(dir string) error { - err := isDir(dir) - if err != nil { - return err - } - entries, err := ioutil.ReadDir(dir) - if err != nil { - return err - } - if len(entries) == 0 { - return nil - } - return fmt.Errorf("directory %s not empty", dir) -} - -// isDir checks if "dir" exists and is a directory. -func isDir(dir string) error { - fi, err := os.Stat(dir) - if err != nil { - return err - } - if !fi.IsDir() { - return fmt.Errorf("%s is not a directory", dir) - } - return nil -} - -// initDir handles "gocryptfs -init". It prepares a directory for use as a -// gocryptfs storage directory. -// In forward mode, this means creating the gocryptfs.conf and gocryptfs.diriv -// files in an empty directory. -// In reverse mode, we create .gocryptfs.reverse.conf and the directory does -// not need to be empty. -func initDir(args *argContainer) { - var err error - if args.reverse { - _, err = os.Stat(args.config) - if err == nil { - tlog.Fatal.Printf("Config file %q already exists", args.config) - os.Exit(exitcodes.Init) - } - } else { - err = isEmptyDir(args.cipherdir) - if err != nil { - tlog.Fatal.Printf("Invalid cipherdir: %v", err) - os.Exit(exitcodes.CipherDir) - } - } - // Choose password for config file - if args.extpass.Empty() && args.fido2 == "" { - tlog.Info.Printf("Choose a password for protecting your files.") - } - { - var password []byte - var fido2CredentialID, fido2HmacSalt []byte - if args.fido2 != "" { - fido2CredentialID = fido2.Register(args.fido2, filepath.Base(args.cipherdir)) - fido2HmacSalt = cryptocore.RandBytes(32) - password = fido2.Secret(args.fido2, fido2CredentialID, fido2HmacSalt) - } else { - // normal password entry - password = readpassword.Twice([]string(args.extpass), []string(args.passfile)) - fido2CredentialID = nil - fido2HmacSalt = nil - } - creator := tlog.ProgramName + " " + GitVersion - err = configfile.Create(args.config, password, args.plaintextnames, - args.scryptn, creator, args.aessiv, args.devrandom, fido2CredentialID, fido2HmacSalt) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.WriteConf) - } - for i := range password { - password[i] = 0 - } - // password runs out of scope here - } - // Forward mode with filename encryption enabled needs a gocryptfs.diriv file - // in the root dir - if !args.plaintextnames && !args.reverse { - // Open cipherdir (following symlinks) - dirfd, err := syscall.Open(args.cipherdir, syscall.O_DIRECTORY|syscallcompat.O_PATH, 0) - if err == nil { - err = nametransform.WriteDirIVAt(dirfd) - syscall.Close(dirfd) - } - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.Init) - } - } - mountArgs := "" - fsName := "gocryptfs" - if args.reverse { - mountArgs = " -reverse" - fsName = "gocryptfs-reverse" - } - tlog.Info.Printf(tlog.ColorGreen+"The %s filesystem has been created successfully."+tlog.ColorReset, - fsName) - wd, _ := os.Getwd() - friendlyPath, _ := filepath.Rel(wd, args.cipherdir) - if strings.HasPrefix(friendlyPath, "../") { - // A relative path that starts with "../" is pretty unfriendly, just - // keep the absolute path. - friendlyPath = args.cipherdir - } - if strings.Contains(friendlyPath, " ") { - friendlyPath = "\"" + friendlyPath + "\"" - } - tlog.Info.Printf(tlog.ColorGrey+"You can now mount it using: %s%s %s MOUNTPOINT"+tlog.ColorReset, - tlog.ProgramName, mountArgs, friendlyPath) -} diff --git a/internal/configfile/config_file.go b/internal/configfile/config_file.go index e4921f7..089af07 100644 --- a/internal/configfile/config_file.go +++ b/internal/configfile/config_file.go @@ -12,10 +12,9 @@ import ( "os" - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/tlog" + "../contentenc" + "../cryptocore" + "../exitcodes" ) const ( @@ -113,11 +112,10 @@ func Create(filename string, password []byte, plaintextNames bool, } else { key = cryptocore.RandBytes(cryptocore.KeyLen) } - tlog.PrintMasterkeyReminder(key) // Encrypt it using the password // This sets ScryptObject and EncryptedKey // Note: this looks at the FeatureFlags, so call it AFTER setting them. - cf.EncryptKey(key, password, logN) + cf.EncryptKey(key, password, logN, false) for i := range key { key[i] = 0 } @@ -147,7 +145,7 @@ func LoadAndDecrypt(filename string, password []byte) ([]byte, *ConfFile, error) } // Decrypt the masterkey using the password - key, err := cf.DecryptMasterKey(password) + key, _, err := cf.DecryptMasterKey(password, false) if err != nil { return nil, nil, err } @@ -172,7 +170,6 @@ func Load(filename string) (*ConfFile, error) { // Unmarshal err = json.Unmarshal(js, &cf) if err != nil { - tlog.Warn.Printf("Failed to unmarshal config file") return nil, err } @@ -202,17 +199,6 @@ func Load(filename string) (*ConfFile, error) { } } if deprecatedFs { - fmt.Fprintf(os.Stderr, tlog.ColorYellow+` - The filesystem was created by gocryptfs v0.6 or earlier. This version of - gocryptfs can no longer mount the filesystem. - Please download gocryptfs v0.11 and upgrade your filesystem, - see https://github.com/rfjakob/gocryptfs/wiki/Upgrading for instructions. - - If you have trouble upgrading, join the discussion at - https://github.com/rfjakob/gocryptfs/issues/29 . - -`+tlog.ColorReset) - return nil, exitcodes.NewErr("Deprecated filesystem", exitcodes.DeprecatedFS) } @@ -222,38 +208,38 @@ func Load(filename string) (*ConfFile, error) { // DecryptMasterKey decrypts the masterkey stored in cf.EncryptedKey using // password. -func (cf *ConfFile) DecryptMasterKey(password []byte) (masterkey []byte, err error) { +func (cf *ConfFile) DecryptMasterKey(password []byte, giveHash bool) (masterkey, scryptHash []byte, err error) { // Generate derived key from password - scryptHash := cf.ScryptObject.DeriveKey(password) + scryptHash = cf.ScryptObject.DeriveKey(password) // Unlock master key using password-based key useHKDF := cf.IsFeatureFlagSet(FlagHKDF) ce := getKeyEncrypter(scryptHash, useHKDF) - tlog.Warn.Enabled = false // Silence DecryptBlock() error messages on incorrect password masterkey, err = ce.DecryptBlock(cf.EncryptedKey, 0, nil) - tlog.Warn.Enabled = true - // Purge scrypt-derived key - for i := range scryptHash { - scryptHash[i] = 0 + if !giveHash { + // Purge scrypt-derived key + for i := range scryptHash { + scryptHash[i] = 0 + } + scryptHash = nil } - scryptHash = nil ce.Wipe() ce = nil if err != nil { - tlog.Warn.Printf("failed to unlock master key: %s", err.Error()) - return nil, exitcodes.NewErr("Password incorrect.", exitcodes.PasswordIncorrect) + return nil, nil, exitcodes.NewErr("Password incorrect.", exitcodes.PasswordIncorrect) } - return masterkey, nil + + return masterkey, scryptHash, nil } // EncryptKey - encrypt "key" using an scrypt hash generated from "password" // and store it in cf.EncryptedKey. // Uses scrypt with cost parameter logN and stores the scrypt parameters in // cf.ScryptObject. -func (cf *ConfFile) EncryptKey(key []byte, password []byte, logN int) { +func (cf *ConfFile) EncryptKey(key []byte, password []byte, logN int, giveHash bool) []byte { // Generate scrypt-derived key from password cf.ScryptObject = NewScryptKDF(logN) scryptHash := cf.ScryptObject.DeriveKey(password) @@ -263,13 +249,45 @@ func (cf *ConfFile) EncryptKey(key []byte, password []byte, logN int) { ce := getKeyEncrypter(scryptHash, useHKDF) cf.EncryptedKey = ce.EncryptBlock(key, 0, nil) - // Purge scrypt-derived key - for i := range scryptHash { - scryptHash[i] = 0 + if !giveHash { + // Purge scrypt-derived key + for i := range scryptHash { + scryptHash[i] = 0 + } + scryptHash = nil } - scryptHash = nil ce.Wipe() ce = nil + + return scryptHash +} + +// DroidFS function to allow masterkey to be decrypted directely using the scrypt hash and return it if requested +func (cf *ConfFile) GetMasterkey(password, givenScryptHash, returnedScryptHashBuff []byte) []byte { + var masterkey []byte + var err error + var scryptHash []byte + if len(givenScryptHash) > 0 { //decrypt with hash + useHKDF := cf.IsFeatureFlagSet(FlagHKDF) + ce := getKeyEncrypter(givenScryptHash, useHKDF) + masterkey, err = ce.DecryptBlock(cf.EncryptedKey, 0, nil) + ce.Wipe() + ce = nil + if err == nil { + return masterkey + } + } else { //decrypt with password + masterkey, scryptHash, err = cf.DecryptMasterKey(password, len(returnedScryptHashBuff) > 0) + //copy and wipe scryptHash + for i := range scryptHash { + returnedScryptHashBuff[i] = scryptHash[i] + scryptHash[i] = 0 + } + if err == nil { + return masterkey + } + } + return nil } // WriteFile - write out config in JSON format to file "filename.tmp" @@ -296,7 +314,6 @@ func (cf *ConfFile) WriteFile() error { if err != nil { // This can happen on network drives: FRITZ.NAS mounted on MacOS returns // "operation not supported": https://github.com/rfjakob/gocryptfs/issues/390 - tlog.Warn.Printf("Warning: fsync failed: %v", err) // Try sync instead syscall.Sync() } diff --git a/internal/configfile/config_test.go b/internal/configfile/config_test.go deleted file mode 100644 index ce35531..0000000 --- a/internal/configfile/config_test.go +++ /dev/null @@ -1,147 +0,0 @@ -package configfile - -import ( - "fmt" - "testing" - "time" - - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -var testPw = []byte("test") - -func TestLoadV1(t *testing.T) { - _, _, err := LoadAndDecrypt("config_test/v1.conf", testPw) - if err == nil { - t.Errorf("Outdated v1 config file must fail to load but it didn't") - } else if testing.Verbose() { - fmt.Println(err) - } -} - -// Load a known-good config file and verify that it takes at least 100ms -// (brute-force protection) -func TestLoadV2(t *testing.T) { - t1 := time.Now() - - _, _, err := LoadAndDecrypt("config_test/v2.conf", testPw) - if err != nil { - t.Errorf("Could not load v2 config file: %v", err) - } - - elapsed := time.Since(t1) - if elapsed < 100*time.Millisecond { - t.Errorf("scrypt calculation runs too fast: %d ms", elapsed/time.Millisecond) - } -} - -func TestLoadV2PwdError(t *testing.T) { - if !testing.Verbose() { - tlog.Warn.Enabled = false - } - _, _, err := LoadAndDecrypt("config_test/v2.conf", []byte("wrongpassword")) - if err == nil { - t.Errorf("Loading with wrong password must fail but it didn't") - } -} - -func TestLoadV2Feature(t *testing.T) { - _, _, err := LoadAndDecrypt("config_test/PlaintextNames.conf", testPw) - if err != nil { - t.Errorf("Could not load v2 PlaintextNames config file: %v", err) - } -} - -func TestLoadV2StrangeFeature(t *testing.T) { - _, _, err := LoadAndDecrypt("config_test/StrangeFeature.conf", testPw) - if err == nil { - t.Errorf("Loading unknown feature must fail but it didn't") - } else if testing.Verbose() { - fmt.Println(err) - } -} - -func TestCreateConfDefault(t *testing.T) { - err := Create("config_test/tmp.conf", testPw, false, 10, "test", false, false, nil, nil) - if err != nil { - t.Fatal(err) - } - _, c, err := LoadAndDecrypt("config_test/tmp.conf", testPw) - if err != nil { - t.Fatal(err) - } - // Check that all expected feature flags are set - want := []flagIota{ - FlagGCMIV128, FlagDirIV, FlagEMENames, FlagLongNames, - FlagRaw64, FlagHKDF, - } - for _, f := range want { - if !c.IsFeatureFlagSet(f) { - t.Errorf("Feature flag %q should be set but is not", knownFlags[f]) - } - } -} - -func TestCreateConfDevRandom(t *testing.T) { - err := Create("config_test/tmp.conf", testPw, false, 10, "test", false, true, nil, nil) - if err != nil { - t.Fatal(err) - } -} - -func TestCreateConfPlaintextnames(t *testing.T) { - err := Create("config_test/tmp.conf", testPw, true, 10, "test", false, false, nil, nil) - if err != nil { - t.Fatal(err) - } - _, c, err := LoadAndDecrypt("config_test/tmp.conf", testPw) - if err != nil { - t.Fatal(err) - } - // Check that all expected feature flags are set - want := []flagIota{ - FlagGCMIV128, FlagHKDF, - } - for _, f := range want { - if !c.IsFeatureFlagSet(f) { - t.Errorf("Feature flag %q should be set but is not", knownFlags[f]) - } - } -} - -// Reverse mode uses AESSIV -func TestCreateConfFileAESSIV(t *testing.T) { - err := Create("config_test/tmp.conf", testPw, false, 10, "test", true, false, nil, nil) - if err != nil { - t.Fatal(err) - } - _, c, err := LoadAndDecrypt("config_test/tmp.conf", testPw) - if err != nil { - t.Fatal(err) - } - if !c.IsFeatureFlagSet(FlagAESSIV) { - t.Error("AESSIV flag should be set but is not") - } -} - -func TestIsFeatureFlagKnown(t *testing.T) { - // Test a few hardcoded values - testKnownFlags := []string{"DirIV", "PlaintextNames", "EMENames", "GCMIV128", "LongNames", "AESSIV"} - // And also everything in knownFlags (yes, it is likely that we end up with - // some duplicates. Does not matter.) - for _, f := range knownFlags { - testKnownFlags = append(testKnownFlags, f) - } - - var cf ConfFile - for _, f := range testKnownFlags { - if !cf.isFeatureFlagKnown(f) { - t.Errorf("flag %q should be known", f) - } - } - - f := "StrangeFeatureFlag" - if cf.isFeatureFlagKnown(f) { - t.Errorf("flag %q should be NOT known", f) - } -} diff --git a/internal/configfile/config_test/.gitignore b/internal/configfile/config_test/.gitignore deleted file mode 100644 index 0720169..0000000 --- a/internal/configfile/config_test/.gitignore +++ /dev/null @@ -1 +0,0 @@ -tmp.conf diff --git a/internal/configfile/config_test/PlaintextNames.conf b/internal/configfile/config_test/PlaintextNames.conf deleted file mode 100644 index 5b9f4f7..0000000 --- a/internal/configfile/config_test/PlaintextNames.conf +++ /dev/null @@ -1,16 +0,0 @@ -{ - "Creator": "gocryptfs v0.11-13-g96750a7-dirty", - "EncryptedKey": "pH6/kgPFrwkuFW/HDN/0UzwC8hLJCMm/upyEnsR1pVTfSJLL/JxfBaVCRyuZhc/S7h2PrxVSMO1xzLrk", - "ScryptObject": { - "Salt": "Hq0BqXXeMGVGfdYE1Y/qcW+pvxJBJymRAVgPUxQiZ8Y=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "PlaintextNames" - ] -} \ No newline at end of file diff --git a/internal/configfile/config_test/StrangeFeature.conf b/internal/configfile/config_test/StrangeFeature.conf deleted file mode 100644 index eadf168..0000000 --- a/internal/configfile/config_test/StrangeFeature.conf +++ /dev/null @@ -1,19 +0,0 @@ -{ - "Creator": "gocryptfs v0.11-13-g96750a7-dirty", - "EncryptedKey": "mfN2FITcsLE+8QlpTb3r/D5rAAqEX5mJQuU655tcdwAotUwHkrIdYiKa2BjoocctQC0grwqPyuWxB7SH", - "ScryptObject": { - "Salt": "9G2knR016guT/AJqOKemjusYhqg+mI177Dz6a5RS7ts=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "DirIV", - "EMENames", - "LongNames", - "StrangeFeatureFlag" - ] -} diff --git a/internal/configfile/config_test/v1.conf b/internal/configfile/config_test/v1.conf deleted file mode 100644 index 588a25a..0000000 --- a/internal/configfile/config_test/v1.conf +++ /dev/null @@ -1,11 +0,0 @@ -{ - "EncryptedKey": "t6YAvFQJvbv46c93bHQ5IZnvNz80DA9cohGoSPL/2M257LuIigow6jbr8b9HhnbDqHTCcz7aKkMDzneF", - "ScryptObject": { - "Salt": "yT4yQmmRmVNx2P0tJrUswk5SQzZaL6Z8kUteAoNJkXM=", - "N": 65536, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 1 -} diff --git a/internal/configfile/config_test/v2.conf b/internal/configfile/config_test/v2.conf deleted file mode 100644 index d1ca609..0000000 --- a/internal/configfile/config_test/v2.conf +++ /dev/null @@ -1,18 +0,0 @@ -{ - "Creator": "gocryptfs v0.11-13-g96750a7-dirty", - "EncryptedKey": "zY06x2JS0Fi7bkZ/3DppjmWZOI6xTjQ/Bf4Nru1rUzHml+stkAtvcoHT8PpHN4eKqL73ymQ86MmdYz+1", - "ScryptObject": { - "Salt": "U5MbvyTmwhEkLqe6XxlrONzPZEf2GLFZCAIixz2Kal0=", - "N": 65536, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "DirIV", - "EMENames", - "LongNames" - ] -} \ No newline at end of file diff --git a/internal/configfile/scrypt.go b/internal/configfile/scrypt.go index 54fe0c6..c1edf4b 100644 --- a/internal/configfile/scrypt.go +++ b/internal/configfile/scrypt.go @@ -7,9 +7,8 @@ import ( "golang.org/x/crypto/scrypt" - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/tlog" + "../cryptocore" + "../exitcodes" ) const ( @@ -84,23 +83,18 @@ func (s *ScryptKDF) LogN() int { func (s *ScryptKDF) validateParams() { minN := 1 << scryptMinLogN if s.N < minN { - tlog.Fatal.Println("Fatal: scryptn below 10 is too low to make sense") os.Exit(exitcodes.ScryptParams) } if s.R < scryptMinR { - tlog.Fatal.Printf("Fatal: scrypt parameter R below minimum: value=%d, min=%d", s.R, scryptMinR) os.Exit(exitcodes.ScryptParams) } if s.P < scryptMinP { - tlog.Fatal.Printf("Fatal: scrypt parameter P below minimum: value=%d, min=%d", s.P, scryptMinP) os.Exit(exitcodes.ScryptParams) } if len(s.Salt) < scryptMinSaltLen { - tlog.Fatal.Printf("Fatal: scrypt salt length below minimum: value=%d, min=%d", len(s.Salt), scryptMinSaltLen) os.Exit(exitcodes.ScryptParams) } if s.KeyLen < cryptocore.KeyLen { - tlog.Fatal.Printf("Fatal: scrypt parameter KeyLen below minimum: value=%d, min=%d", s.KeyLen, cryptocore.KeyLen) os.Exit(exitcodes.ScryptParams) } } diff --git a/internal/configfile/scrypt_test.go b/internal/configfile/scrypt_test.go deleted file mode 100644 index 8f7a5c8..0000000 --- a/internal/configfile/scrypt_test.go +++ /dev/null @@ -1,60 +0,0 @@ -package configfile - -import ( - "testing" -) - -/* -Results on a 2.7GHz Pentium G630: - -gocryptfs/cryptfs$ go test -bench=. -PASS -BenchmarkScrypt10-2 300 6021435 ns/op ... 6ms -BenchmarkScrypt11-2 100 11861460 ns/op -BenchmarkScrypt12-2 100 23420822 ns/op -BenchmarkScrypt13-2 30 47666518 ns/op -BenchmarkScrypt14-2 20 92561590 ns/op ... 92ms -BenchmarkScrypt15-2 10 183971593 ns/op -BenchmarkScrypt16-2 3 368506365 ns/op -BenchmarkScrypt17-2 2 755502608 ns/op ... 755ms -ok github.com/rfjakob/gocryptfs/cryptfs 18.772s -*/ - -func benchmarkScryptN(n int, b *testing.B) { - kdf := NewScryptKDF(n) - for i := 0; i < b.N; i++ { - kdf.DeriveKey(testPw) - } -} - -func BenchmarkScrypt10(b *testing.B) { - benchmarkScryptN(10, b) -} - -func BenchmarkScrypt11(b *testing.B) { - benchmarkScryptN(11, b) -} - -func BenchmarkScrypt12(b *testing.B) { - benchmarkScryptN(12, b) -} - -func BenchmarkScrypt13(b *testing.B) { - benchmarkScryptN(13, b) -} - -func BenchmarkScrypt14(b *testing.B) { - benchmarkScryptN(14, b) -} - -func BenchmarkScrypt15(b *testing.B) { - benchmarkScryptN(15, b) -} - -func BenchmarkScrypt16(b *testing.B) { - benchmarkScryptN(16, b) -} - -func BenchmarkScrypt17(b *testing.B) { - benchmarkScryptN(17, b) -} diff --git a/internal/contentenc/content.go b/internal/contentenc/content.go index 747bb4c..c9b3c60 100644 --- a/internal/contentenc/content.go +++ b/internal/contentenc/content.go @@ -4,23 +4,22 @@ package contentenc import ( "bytes" "encoding/binary" - "encoding/hex" "errors" "log" "runtime" "sync" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/stupidgcm" - "github.com/rfjakob/gocryptfs/internal/tlog" + "../cryptocore" + "../stupidgcm" ) // NonceMode determines how nonces are created. type NonceMode int const ( + //value from FUSE doc + MAX_KERNEL_WRITE = 128 * 1024 + // DefaultBS is the default plaintext block size DefaultBS = 4096 // DefaultIVBits is the default length of IV, in bits. @@ -73,17 +72,17 @@ type ContentEnc struct { // New returns an initialized ContentEnc instance. func New(cc *cryptocore.CryptoCore, plainBS uint64, forceDecode bool) *ContentEnc { - if fuse.MAX_KERNEL_WRITE%plainBS != 0 { - log.Panicf("unaligned MAX_KERNEL_WRITE=%d", fuse.MAX_KERNEL_WRITE) + if MAX_KERNEL_WRITE%plainBS != 0 { + log.Panicf("unaligned MAX_KERNEL_WRITE=%d", MAX_KERNEL_WRITE) } cipherBS := plainBS + uint64(cc.IVLen) + cryptocore.AuthTagLen // Take IV and GHASH overhead into account. - cReqSize := int(fuse.MAX_KERNEL_WRITE / plainBS * cipherBS) + cReqSize := int(MAX_KERNEL_WRITE / plainBS * cipherBS) // Unaligned reads (happens during fsck, could also happen with O_DIRECT?) // touch one additional ciphertext and plaintext block. Reserve space for the // extra block. cReqSize += int(cipherBS) - pReqSize := fuse.MAX_KERNEL_WRITE + int(plainBS) + pReqSize := MAX_KERNEL_WRITE + int(plainBS) c := &ContentEnc{ cryptoCore: cc, plainBS: plainBS, @@ -120,9 +119,7 @@ func (be *ContentEnc) DecryptBlocks(ciphertext []byte, firstBlockNo uint64, file var pBlock []byte pBlock, err = be.DecryptBlock(cBlock, blockNo, fileID) if err != nil { - if be.forceDecode && err == stupidgcm.ErrAuth { - tlog.Warn.Printf("DecryptBlocks: authentication failure in block #%d, overridden by forcedecode", firstBlockNo) - } else { + if !(be.forceDecode && err == stupidgcm.ErrAuth) { break } } @@ -163,12 +160,10 @@ func (be *ContentEnc) DecryptBlock(ciphertext []byte, blockNo uint64, fileID []b // All-zero block? if bytes.Equal(ciphertext, be.allZeroBlock) { - tlog.Debug.Printf("DecryptBlock: file hole encountered") return make([]byte, be.plainBS), nil } if len(ciphertext) < be.cryptoCore.IVLen { - tlog.Warn.Printf("DecryptBlock: Block is too short: %d bytes", len(ciphertext)) return nil, errors.New("Block is too short") } @@ -180,7 +175,6 @@ func (be *ContentEnc) DecryptBlock(ciphertext []byte, blockNo uint64, fileID []b // http://www.spinics.net/lists/kernel/msg2370127.html return nil, errors.New("all-zero nonce") } - ciphertextOrig := ciphertext ciphertext = ciphertext[be.cryptoCore.IVLen:] // Decrypt @@ -190,8 +184,6 @@ func (be *ContentEnc) DecryptBlock(ciphertext []byte, blockNo uint64, fileID []b plaintext, err := be.cryptoCore.AEADCipher.Open(plaintext, nonce, ciphertext, aData) if err != nil { - tlog.Debug.Printf("DecryptBlock: %s, len=%d", err.Error(), len(ciphertextOrig)) - tlog.Debug.Println(hex.Dump(ciphertextOrig)) if be.forceDecode && err == stupidgcm.ErrAuth { return plaintext, err } diff --git a/internal/contentenc/content_test.go b/internal/contentenc/content_test.go deleted file mode 100644 index 998e9b8..0000000 --- a/internal/contentenc/content_test.go +++ /dev/null @@ -1,96 +0,0 @@ -package contentenc - -import ( - "testing" - - "github.com/rfjakob/gocryptfs/internal/cryptocore" -) - -type testRange struct { - offset uint64 - length uint64 -} - -func TestSplitRange(t *testing.T) { - var ranges []testRange - - ranges = append(ranges, testRange{0, 70000}, - testRange{0, 10}, - testRange{234, 6511}, - testRange{65444, 54}, - testRange{0, 1024 * 1024}, - testRange{0, 65536}, - testRange{6654, 8945}) - - key := make([]byte, cryptocore.KeyLen) - cc := cryptocore.New(key, cryptocore.BackendGoGCM, DefaultIVBits, true, false) - f := New(cc, DefaultBS, false) - - for _, r := range ranges { - parts := f.ExplodePlainRange(r.offset, r.length) - var lastBlockNo uint64 = 1 << 63 - for _, p := range parts { - if p.BlockNo == lastBlockNo { - t.Errorf("Duplicate block number %d", p.BlockNo) - } - lastBlockNo = p.BlockNo - if p.Length > DefaultBS || p.Skip >= DefaultBS { - t.Errorf("Test fail: n=%d, length=%d, offset=%d\n", p.BlockNo, p.Length, p.Skip) - } - } - } -} - -func TestCiphertextRange(t *testing.T) { - var ranges []testRange - - ranges = append(ranges, testRange{0, 70000}, - testRange{0, 10}, - testRange{234, 6511}, - testRange{65444, 54}, - testRange{6654, 8945}) - - key := make([]byte, cryptocore.KeyLen) - cc := cryptocore.New(key, cryptocore.BackendGoGCM, DefaultIVBits, true, false) - f := New(cc, DefaultBS, false) - - for _, r := range ranges { - - blocks := f.ExplodePlainRange(r.offset, r.length) - alignedOffset, alignedLength := blocks[0].JointCiphertextRange(blocks) - skipBytes := blocks[0].Skip - - if alignedLength < r.length { - t.Errorf("alignedLength=%d is smaller than length=%d", alignedLength, r.length) - } - if (alignedOffset-HeaderLen)%f.cipherBS != 0 { - t.Errorf("alignedOffset=%d is not aligned", alignedOffset) - } - if r.offset%f.plainBS != 0 && skipBytes == 0 { - t.Errorf("skipBytes=0") - } - } -} - -func TestBlockNo(t *testing.T) { - key := make([]byte, cryptocore.KeyLen) - cc := cryptocore.New(key, cryptocore.BackendGoGCM, DefaultIVBits, true, false) - f := New(cc, DefaultBS, false) - - b := f.CipherOffToBlockNo(788) - if b != 0 { - t.Errorf("actual: %d", b) - } - b = f.CipherOffToBlockNo(HeaderLen + f.cipherBS) - if b != 1 { - t.Errorf("actual: %d", b) - } - b = f.PlainOffToBlockNo(788) - if b != 0 { - t.Errorf("actual: %d", b) - } - b = f.PlainOffToBlockNo(f.plainBS) - if b != 1 { - t.Errorf("actual: %d", b) - } -} diff --git a/internal/contentenc/file_header.go b/internal/contentenc/file_header.go index 6ce2e3b..921e835 100644 --- a/internal/contentenc/file_header.go +++ b/internal/contentenc/file_header.go @@ -11,7 +11,7 @@ import ( "fmt" "log" - "github.com/rfjakob/gocryptfs/internal/cryptocore" + "../cryptocore" ) const ( diff --git a/internal/contentenc/offsets.go b/internal/contentenc/offsets.go index 3a0abf3..1f0a70c 100644 --- a/internal/contentenc/offsets.go +++ b/internal/contentenc/offsets.go @@ -2,8 +2,6 @@ package contentenc import ( "log" - - "github.com/rfjakob/gocryptfs/internal/tlog" ) // Contentenc methods that translate offsets between ciphertext and plaintext @@ -44,12 +42,10 @@ func (be *ContentEnc) CipherSizeToPlainSize(cipherSize uint64) uint64 { if cipherSize == HeaderLen { // This can happen between createHeader() and Write() and is harmless. - tlog.Debug.Printf("cipherSize %d == header size: interrupted write?\n", cipherSize) return 0 } if cipherSize < HeaderLen { - tlog.Warn.Printf("cipherSize %d < header size %d: corrupt file\n", cipherSize, HeaderLen) return 0 } @@ -58,7 +54,6 @@ func (be *ContentEnc) CipherSizeToPlainSize(cipherSize uint64) uint64 { lastBlockSize := (cipherSize - HeaderLen) % be.cipherBS if lastBlockSize > 0 && lastBlockSize <= be.BlockOverhead() { tmp := cipherSize - lastBlockSize + be.BlockOverhead() + 1 - tlog.Warn.Printf("cipherSize %d: incomplete last block (%d bytes), padding to %d bytes", cipherSize, lastBlockSize, tmp) cipherSize = tmp } @@ -69,7 +64,6 @@ func (be *ContentEnc) CipherSizeToPlainSize(cipherSize uint64) uint64 { overhead := be.BlockOverhead()*blockCount + HeaderLen if overhead > cipherSize { - tlog.Warn.Printf("cipherSize %d < overhead %d: corrupt file\n", cipherSize, overhead) return 0 } diff --git a/internal/contentenc/offsets_test.go b/internal/contentenc/offsets_test.go deleted file mode 100644 index c3b8fcd..0000000 --- a/internal/contentenc/offsets_test.go +++ /dev/null @@ -1,53 +0,0 @@ -package contentenc - -import ( - "fmt" - "testing" - - "github.com/rfjakob/gocryptfs/internal/cryptocore" -) - -// TestSizeToSize tests CipherSizeToPlainSize and PlainSizeToCipherSize -func TestSizeToSize(t *testing.T) { - key := make([]byte, cryptocore.KeyLen) - cc := cryptocore.New(key, cryptocore.BackendGoGCM, DefaultIVBits, true, false) - ce := New(cc, DefaultBS, false) - - const rangeMax = 10000 - - // y values in this order: - // 0 ... CipherSizeToPlainSize - // 1 ... PlainSizeToCipherSize - // 2 ... PlainOffToCipherOff - var yTable [rangeMax][3]uint64 - - // Calculate values - for x := range yTable { - yTable[x][0] = ce.CipherSizeToPlainSize(uint64(x)) - yTable[x][1] = ce.PlainSizeToCipherSize(uint64(x)) - yTable[x][2] = ce.PlainOffToCipherOff(uint64(x)) - } - - // Print data table - fmt.Print("x\tCipherSizeToPlainSize\tPlainSizeToCipherSize\tPlainOffToCipherOff\n") - for x := range yTable { - if x > 1 && x < rangeMax-1 { - // If the point before has value-1 and the point after has value+1, - // it is not interesting. Don't print it out. - interesting := false - for i := 0; i <= 2; i++ { - if yTable[x-1][i]+1 != yTable[x][i] && yTable[x][i]+1 != yTable[x+1][i]+1 { - interesting = true - } - // Monotonicity check - if yTable[x][i] < yTable[x-1][i] { - t.Errorf("column %d is non-monotonic!", i) - } - } - if !interesting { - continue - } - } - fmt.Printf("%d\t%d\t%d\t%d\n", x, yTable[x][0], yTable[x][1], yTable[x][2]) - } -} diff --git a/internal/cryptocore/cryptocore.go b/internal/cryptocore/cryptocore.go index d66f390..8ea11d4 100644 --- a/internal/cryptocore/cryptocore.go +++ b/internal/cryptocore/cryptocore.go @@ -12,9 +12,8 @@ import ( "github.com/rfjakob/eme" - "github.com/rfjakob/gocryptfs/internal/siv_aead" - "github.com/rfjakob/gocryptfs/internal/stupidgcm" - "github.com/rfjakob/gocryptfs/internal/tlog" + "../siv_aead" + "../stupidgcm" ) const ( @@ -157,13 +156,10 @@ type wiper interface { func (c *CryptoCore) Wipe() { be := c.AEADBackend if be == BackendOpenSSL || be == BackendAESSIV { - tlog.Debug.Printf("CryptoCore.Wipe: Wiping AEADBackend %d key", be) // We don't use "x, ok :=" because we *want* to crash loudly if the // type assertion fails. w := c.AEADCipher.(wiper) w.Wipe() - } else { - tlog.Debug.Printf("CryptoCore.Wipe: Only nil'ing stdlib refs") } // We have no access to the keys (or key-equivalents) stored inside the // Go stdlib. Best we can is to nil the references and force a GC. diff --git a/internal/cryptocore/cryptocore_test.go b/internal/cryptocore/cryptocore_test.go deleted file mode 100644 index e595ef6..0000000 --- a/internal/cryptocore/cryptocore_test.go +++ /dev/null @@ -1,41 +0,0 @@ -package cryptocore - -import ( - "testing" - - "github.com/rfjakob/gocryptfs/internal/stupidgcm" -) - -// "New" should accept at least these param combinations -func TestCryptoCoreNew(t *testing.T) { - key := make([]byte, 32) - for _, useHKDF := range []bool{true, false} { - c := New(key, BackendGoGCM, 96, useHKDF, false) - if c.IVLen != 12 { - t.Fail() - } - c = New(key, BackendGoGCM, 128, useHKDF, false) - if c.IVLen != 16 { - t.Fail() - } - if stupidgcm.BuiltWithoutOpenssl { - continue - } - c = New(key, BackendOpenSSL, 128, useHKDF, false) - if c.IVLen != 16 { - t.Fail() - } - } -} - -// "New" should panic on any key not 32 bytes long -func TestNewPanic(t *testing.T) { - defer func() { - if r := recover(); r == nil { - t.Errorf("The code did not panic") - } - }() - - key := make([]byte, 16) - New(key, BackendOpenSSL, 128, true, false) -} diff --git a/internal/cryptocore/hkdf_test.go b/internal/cryptocore/hkdf_test.go deleted file mode 100644 index 96ee01f..0000000 --- a/internal/cryptocore/hkdf_test.go +++ /dev/null @@ -1,46 +0,0 @@ -package cryptocore - -import ( - "bytes" - "encoding/hex" - "testing" -) - -type hkdfTestCase struct { - masterkey []byte - info string - out []byte -} - -// TestHkdfDerive verifies that we get the expected values from hkdfDerive. They -// must not change because this would change the on-disk format. -func TestHkdfDerive(t *testing.T) { - master0 := bytes.Repeat([]byte{0x00}, 32) - master1 := bytes.Repeat([]byte{0x01}, 32) - out1, _ := hex.DecodeString("9ba3cddd48c6339c6e56ebe85f0281d6e9051be4104176e65cb0f8a6f77ae6b4") - out2, _ := hex.DecodeString("e8a2499f48700b954f31de732efd04abce822f5c948e7fbc0896607be0d36d12") - out3, _ := hex.DecodeString("9137f2e67a842484137f3c458f357f204c30d7458f94f432fa989be96854a649") - out4, _ := hex.DecodeString("0bfa5da7d9724d4753269940d36898e2c0f3717c0fee86ada58b5fd6c08cc26c") - - testCases := []hkdfTestCase{ - {master0, "EME filename encryption", out1}, - {master0, hkdfInfoEMENames, out1}, - {master1, "EME filename encryption", out2}, - {master1, hkdfInfoEMENames, out2}, - {master1, "AES-GCM file content encryption", out3}, - {master1, hkdfInfoGCMContent, out3}, - {master1, "AES-SIV file content encryption", out4}, - {master1, hkdfInfoSIVContent, out4}, - } - - for i, v := range testCases { - out := hkdfDerive(v.masterkey, v.info, 32) - if !bytes.Equal(out, v.out) { - want := hex.EncodeToString(v.out) - have := hex.EncodeToString(out) - t.Errorf("testcase %d error:\n"+ - "want=%s\n"+ - "have=%s", i, want, have) - } - } -} diff --git a/internal/cryptocore/randprefetch_test.go b/internal/cryptocore/randprefetch_test.go deleted file mode 100644 index b263ef3..0000000 --- a/internal/cryptocore/randprefetch_test.go +++ /dev/null @@ -1,48 +0,0 @@ -package cryptocore - -import ( - "bytes" - "compress/flate" - "runtime" - "sync" - "testing" -) - -// TestRandPrefetch hammers the randPrefetcher with 100 goroutines and verifies -// that the result is incompressible -func TestRandPrefetch(t *testing.T) { - runtime.GOMAXPROCS(10) - p := 100 - l := 200 - vec := make([][]byte, p) - var wg sync.WaitGroup - for i := 0; i < p; i++ { - wg.Add(1) - go func(i int) { - var tmp []byte - for x := 0; x < l; x++ { - tmp = append(tmp, randPrefetcher.read(l)...) - } - vec[i] = tmp - wg.Done() - }(i) - } - wg.Wait() - var b bytes.Buffer - fw, _ := flate.NewWriter(&b, flate.BestCompression) - for _, v := range vec { - fw.Write(v) - } - fw.Close() - if b.Len() < p*l*l { - t.Errorf("random data should be incompressible, but: in=%d compressed=%d\n", p*l*l, b.Len()) - } -} - -func BenchmarkRandPrefetch(b *testing.B) { - // 16-byte nonces are default since gocryptfs v0.7 - b.SetBytes(16) - for i := 0; i < b.N; i++ { - randPrefetcher.read(16) - } -} diff --git a/internal/cryptocore/randsize_test.go b/internal/cryptocore/randsize_test.go deleted file mode 100644 index 1db4745..0000000 --- a/internal/cryptocore/randsize_test.go +++ /dev/null @@ -1,40 +0,0 @@ -// +build go1.7 - -// ^^^^^^^^^^^^ we use the "sub-benchmark" feature that was added in Go 1.7 - -package cryptocore - -import ( - "fmt" - "testing" -) - -/* -The troughput we get from /dev/urandom / getentropy depends a lot on the used -block size. Results on my Pentium G630 running Linux 4.11: - -BenchmarkRandSize/16-2 3000000 571 ns/op 27.98 MB/s -BenchmarkRandSize/32-2 3000000 585 ns/op 54.66 MB/s -BenchmarkRandSize/64-2 2000000 860 ns/op 74.36 MB/s -BenchmarkRandSize/128-2 1000000 1197 ns/op 106.90 MB/s -BenchmarkRandSize/256-2 1000000 1867 ns/op 137.06 MB/s -BenchmarkRandSize/512-2 500000 3187 ns/op 160.61 MB/s -BenchmarkRandSize/1024-2 200000 5888 ns/op 173.91 MB/s -BenchmarkRandSize/2048-2 100000 11554 ns/op 177.25 MB/s -BenchmarkRandSize/4096-2 100000 22523 ns/op 181.86 MB/s -BenchmarkRandSize/8192-2 30000 43111 ns/op 190.02 MB/s - -Results are similar when testing with dd, so this is not due to Go allocation -overhead: dd if=/dev/urandom bs=16 count=100000 of=/dev/null -*/ -func BenchmarkUrandomBlocksize(b *testing.B) { - for s := 16; s <= 8192; s *= 2 { - title := fmt.Sprintf("%d", s) - b.Run(title, func(b *testing.B) { - b.SetBytes(int64(s)) - for i := 0; i < b.N; i++ { - RandBytes(s) - } - }) - } -} diff --git a/internal/ctlsocksrv/ctlsock_serve.go b/internal/ctlsocksrv/ctlsock_serve.go deleted file mode 100644 index b63759e..0000000 --- a/internal/ctlsocksrv/ctlsock_serve.go +++ /dev/null @@ -1,163 +0,0 @@ -// Package ctlsocksrv implements the control socket interface that can be -// activated by passing "-ctlsock" on the command line. -package ctlsocksrv - -import ( - "encoding/json" - "errors" - "fmt" - "io" - "net" - "os" - "syscall" - - "github.com/rfjakob/gocryptfs/ctlsock" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// Interface should be implemented by fusefrontend[_reverse] -type Interface interface { - EncryptPath(string) (string, error) - DecryptPath(string) (string, error) -} - -type ctlSockHandler struct { - fs Interface - socket *net.UnixListener -} - -// Serve serves incoming connections on "sock". This call blocks so you -// probably want to run it in a new goroutine. -func Serve(sock net.Listener, fs Interface) { - handler := ctlSockHandler{ - fs: fs, - socket: sock.(*net.UnixListener), - } - handler.acceptLoop() -} - -func (ch *ctlSockHandler) acceptLoop() { - for { - conn, err := ch.socket.Accept() - if err != nil { - // This can trigger on program exit with "use of closed network connection". - // Special-casing this is hard due to https://github.com/golang/go/issues/4373 - // so just don't use tlog.Warn to not cause panics in the tests. - tlog.Info.Printf("ctlsock: Accept error: %v", err) - break - } - go ch.handleConnection(conn.(*net.UnixConn)) - } -} - -// ReadBufSize is the size of the request read buffer. -// The longest possible path is 4096 bytes on Linux and 1024 on Mac OS X so -// 5000 bytes should be enough to hold the whole JSON request. This -// assumes that the path does not contain too many characters that had to be -// be escaped in JSON (for example, a null byte blows up to "\u0000"). -// We abort the connection if the request is bigger than this. -const ReadBufSize = 5000 - -// handleConnection reads and parses JSON requests from "conn" -func (ch *ctlSockHandler) handleConnection(conn *net.UnixConn) { - buf := make([]byte, ReadBufSize) - for { - n, err := conn.Read(buf) - if err == io.EOF { - conn.Close() - return - } else if err != nil { - tlog.Warn.Printf("ctlsock: Read error: %#v", err) - conn.Close() - return - } - if n == ReadBufSize { - tlog.Warn.Printf("ctlsock: request too big (max = %d bytes)", ReadBufSize-1) - conn.Close() - return - } - data := buf[:n] - var in ctlsock.RequestStruct - err = json.Unmarshal(data, &in) - if err != nil { - tlog.Warn.Printf("ctlsock: JSON Unmarshal error: %#v", err) - err = errors.New("JSON Unmarshal error: " + err.Error()) - sendResponse(conn, err, "", "") - continue - } - ch.handleRequest(&in, conn) - } -} - -// handleRequest handles an already-unmarshaled JSON request -func (ch *ctlSockHandler) handleRequest(in *ctlsock.RequestStruct, conn *net.UnixConn) { - var err error - var inPath, outPath, clean, warnText string - // You cannot perform both decryption and encryption in one request - if in.DecryptPath != "" && in.EncryptPath != "" { - err = errors.New("Ambiguous") - sendResponse(conn, err, "", "") - return - } - // Neither encryption nor encryption has been requested, makes no sense - if in.DecryptPath == "" && in.EncryptPath == "" { - err = errors.New("Empty input") - sendResponse(conn, err, "", "") - return - } - // Canonicalize input path - if in.EncryptPath != "" { - inPath = in.EncryptPath - } else { - inPath = in.DecryptPath - } - clean = SanitizePath(inPath) - // Warn if a non-canonical path was passed - if inPath != clean { - warnText = fmt.Sprintf("Non-canonical input path '%s' has been interpreted as '%s'.", inPath, clean) - } - // Error out if the canonical path is now empty - if clean == "" { - err = errors.New("Empty input after canonicalization") - sendResponse(conn, err, "", warnText) - return - } - // Actual encrypt or decrypt operation - if in.EncryptPath != "" { - outPath, err = ch.fs.EncryptPath(clean) - } else { - outPath, err = ch.fs.DecryptPath(clean) - } - sendResponse(conn, err, outPath, warnText) -} - -// sendResponse sends a JSON response message -func sendResponse(conn *net.UnixConn, err error, result string, warnText string) { - msg := ctlsock.ResponseStruct{ - Result: result, - WarnText: warnText, - } - if err != nil { - msg.ErrText = err.Error() - msg.ErrNo = -1 - // Try to extract the actual error number - if pe, ok := err.(*os.PathError); ok { - if se, ok := pe.Err.(syscall.Errno); ok { - msg.ErrNo = int32(se) - } - } else if err == syscall.ENOENT { - msg.ErrNo = int32(syscall.ENOENT) - } - } - jsonMsg, err := json.Marshal(msg) - if err != nil { - tlog.Warn.Printf("ctlsock: Marshal failed: %v", err) - return - } - // For convenience for the user, add a newline at the end. - jsonMsg = append(jsonMsg, '\n') - _, err = conn.Write(jsonMsg) - if err != nil { - tlog.Warn.Printf("ctlsock: Write failed: %v", err) - } -} diff --git a/internal/ctlsocksrv/sanitize.go b/internal/ctlsocksrv/sanitize.go deleted file mode 100644 index 4333872..0000000 --- a/internal/ctlsocksrv/sanitize.go +++ /dev/null @@ -1,32 +0,0 @@ -package ctlsocksrv - -import ( - "path/filepath" - "strings" -) - -// SanitizePath adapts filepath.Clean for FUSE paths. -// 1) Leading slash(es) are dropped -// 2) It returns "" instead of "." -// 3) If the cleaned path points above CWD (start with ".."), an empty string -// is returned -// See the TestSanitizePath testcases for examples. -func SanitizePath(path string) string { - // (1) - for len(path) > 0 && path[0] == '/' { - path = path[1:] - } - if len(path) == 0 { - return "" - } - clean := filepath.Clean(path) - // (2) - if clean == "." { - return "" - } - // (3) - if clean == ".." || strings.HasPrefix(clean, "../") { - return "" - } - return clean -} diff --git a/internal/ctlsocksrv/sanitize_test.go b/internal/ctlsocksrv/sanitize_test.go deleted file mode 100644 index 2462d5d..0000000 --- a/internal/ctlsocksrv/sanitize_test.go +++ /dev/null @@ -1,30 +0,0 @@ -package ctlsocksrv - -import ( - "testing" -) - -func TestSanitizePath(t *testing.T) { - testCases := [][]string{ - {"", ""}, - {".", ""}, - {"/", ""}, - {"foo", "foo"}, - {"/foo", "foo"}, - {"foo/", "foo"}, - {"/foo/", "foo"}, - {"/foo/./foo", "foo/foo"}, - {"./", ""}, - {"..", ""}, - {"foo/../..", ""}, - {"foo/../../aaaaaa", ""}, - {"/foo/../../aaaaaa", ""}, - {"/////", ""}, - } - for _, tc := range testCases { - res := SanitizePath(tc[0]) - if res != tc[1] { - t.Errorf("%q: got %q, want %q", tc[0], res, tc[1]) - } - } -} diff --git a/internal/ensurefds012/ensurefds012.go b/internal/ensurefds012/ensurefds012.go deleted file mode 100644 index 7872eb2..0000000 --- a/internal/ensurefds012/ensurefds012.go +++ /dev/null @@ -1,52 +0,0 @@ -package ensurefds012 - -// Package ensurefds012 ensures that file descriptors 0,1,2 are open. It opens -// multiple copies of /dev/null as required. -// The Go stdlib as well as the gocryptfs code rely on the fact that -// fds 0,1,2 are always open. -// -// Use like this: -// -// import _ "github.com/rfjakob/gocryptfs/internal/ensurefds012" -// -// The import line MUST be in the alphabitcally first source code file of -// package main! -// -// You can test if it works as expected by inserting a long sleep into main, -// startings gocryptfs with all fds closed like this, -// -// $ ./gocryptfs 0<&- 1>&- 2>&- -// -// and then checking the open fds. It should look like this: -// -// $ ls -l /proc/$(pgrep gocryptfs)/fd -// total 0 -// lrwx------. 1 jakob jakob 64 Jan 5 15:54 0 -> /dev/null -// lrwx------. 1 jakob jakob 64 Jan 5 15:54 1 -> /dev/null -// lrwx------. 1 jakob jakob 64 Jan 5 15:54 2 -> /dev/null -// l-wx------. 1 jakob jakob 64 Jan 5 15:54 3 -> /dev/null -// lrwx------. 1 jakob jakob 64 Jan 5 15:54 4 -> 'anon_inode:[eventpoll]' -// -// See https://github.com/rfjakob/gocryptfs/issues/320 for details. - -import ( - "os" - "syscall" - - "github.com/rfjakob/gocryptfs/internal/exitcodes" -) - -func init() { - fd, err := syscall.Open("/dev/null", syscall.O_RDWR, 0) - if err != nil { - os.Exit(exitcodes.DevNull) - } - for fd <= 2 { - fd, err = syscall.Dup(fd) - if err != nil { - os.Exit(exitcodes.DevNull) - } - } - // Close excess fd (usually fd 3) - syscall.Close(fd) -} diff --git a/internal/fido2/fido2.go b/internal/fido2/fido2.go deleted file mode 100644 index cd63483..0000000 --- a/internal/fido2/fido2.go +++ /dev/null @@ -1,110 +0,0 @@ -package fido2 - -import ( - "bytes" - "encoding/base64" - "fmt" - "io" - "os" - "os/exec" - "strings" - - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -type fidoCommand int - -const ( - cred fidoCommand = iota - assert fidoCommand = iota - assertWithPIN fidoCommand = iota -) - -const relyingPartyID = "gocryptfs" - -func callFidoCommand(command fidoCommand, device string, stdin []string) ([]string, error) { - var cmd *exec.Cmd - switch command { - case cred: - cmd = exec.Command("fido2-cred", "-M", "-h", "-v", device) - case assert: - cmd = exec.Command("fido2-assert", "-G", "-h", device) - case assertWithPIN: - cmd = exec.Command("fido2-assert", "-G", "-h", "-v", device) - } - tlog.Debug.Printf("callFidoCommand: executing %q with args %q", cmd.Path, cmd.Args) - cmd.Stderr = os.Stderr - in, err := cmd.StdinPipe() - if err != nil { - return nil, err - } - for _, s := range stdin { - // This does not deadlock because the pipe buffer is big enough (64kiB on Linux) - io.WriteString(in, s+"\n") - } - in.Close() - out, err := cmd.Output() - if err != nil { - return nil, fmt.Errorf("%s failed with %v", cmd.Args[0], err) - } - return strings.Split(string(out), "\n"), nil -} - -// Register registers a credential using a FIDO2 token -func Register(device string, userName string) (credentialID []byte) { - tlog.Info.Printf("FIDO2 Register: interact with your device ...") - cdh := base64.StdEncoding.EncodeToString(cryptocore.RandBytes(32)) - userID := base64.StdEncoding.EncodeToString(cryptocore.RandBytes(32)) - stdin := []string{cdh, relyingPartyID, userName, userID} - out, err := callFidoCommand(cred, device, stdin) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.FIDO2Error) - } - credentialID, err = base64.StdEncoding.DecodeString(out[4]) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.FIDO2Error) - } - return credentialID -} - -// Secret generates a HMAC secret using a FIDO2 token -func Secret(device string, credentialID []byte, salt []byte) (secret []byte) { - tlog.Info.Printf("FIDO2 Secret: interact with your device ...") - cdh := base64.StdEncoding.EncodeToString(cryptocore.RandBytes(32)) - crid := base64.StdEncoding.EncodeToString(credentialID) - hmacsalt := base64.StdEncoding.EncodeToString(salt) - stdin := []string{cdh, relyingPartyID, crid, hmacsalt} - // try asserting without PIN first - out, err := callFidoCommand(assert, device, stdin) - if err != nil { - // if that fails, let's assert with PIN - out, err = callFidoCommand(assertWithPIN, device, stdin) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.FIDO2Error) - } - } - secret, err = base64.StdEncoding.DecodeString(out[4]) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.FIDO2Error) - } - - // sanity checks - secretLen := len(secret) - if secretLen < 32 { - tlog.Fatal.Printf("FIDO2 HMACSecret too short (%d)!\n", secretLen) - os.Exit(exitcodes.FIDO2Error) - } - zero := make([]byte, secretLen) - if bytes.Equal(zero, secret) { - tlog.Fatal.Printf("FIDO2 HMACSecret is all zero!") - os.Exit(exitcodes.FIDO2Error) - } - - return secret -} diff --git a/internal/fusefrontend/args.go b/internal/fusefrontend/args.go deleted file mode 100644 index ae1c30c..0000000 --- a/internal/fusefrontend/args.go +++ /dev/null @@ -1,52 +0,0 @@ -package fusefrontend - -import ( - "github.com/hanwen/go-fuse/v2/fuse" -) - -// Args is a container for arguments that are passed from main() to fusefrontend -type Args struct { - // Cipherdir is the backing storage directory (absolute path). - // For reverse mode, Cipherdir actually contains *plaintext* files. - Cipherdir string - PlaintextNames bool - LongNames bool - // Should we chown a file after it has been created? - // This only makes sense if (1) allow_other is set and (2) we run as root. - PreserveOwner bool - // Should we force ownership to be presented with a given user and group? - // This only makes sense if allow_other is set. In *most* cases, it also - // only makes sense with PreserveOwner set, but can also make sense without - // PreserveOwner if the underlying filesystem acting as backing store - // enforces ownership itself. - ForceOwner *fuse.Owner - // ConfigCustom is true when the user select a non-default config file - // location. If it is false, reverse mode maps ".gocryptfs.reverse.conf" - // to "gocryptfs.conf" in the plaintext dir. - ConfigCustom bool - // NoPrealloc disables automatic preallocation before writing - NoPrealloc bool - // Try to serialize read operations, "-serialize_reads" - SerializeReads bool - // Force decode even if integrity check fails (openSSL only) - ForceDecode bool - // Exclude is a list of paths to make inaccessible, starting match at - // the filesystem root - Exclude []string - // ExcludeWildcards is a list of paths to make inaccessible, matched - // anywhere, and supporting wildcards - ExcludeWildcard []string - // ExcludeFrom is a list of files from which to read exclusion patterns - // (with wildcard syntax) - ExcludeFrom []string - // Suid is true if the filesystem has been mounted with the "-suid" flag. - // If it is false, we can ignore the GETXATTR "security.capability" calls, - // which are a performance problem for writes. See - // https://github.com/rfjakob/gocryptfs/issues/515 for details. - Suid bool - // Enable the FUSE kernel_cache option - KernelCache bool - // SharedStorage disables caching & hard link tracking, - // enabled via cli flag "-sharedstorage" - SharedStorage bool -} diff --git a/internal/fusefrontend/ctlsock_interface.go b/internal/fusefrontend/ctlsock_interface.go deleted file mode 100644 index f34739a..0000000 --- a/internal/fusefrontend/ctlsock_interface.go +++ /dev/null @@ -1,105 +0,0 @@ -package fusefrontend - -import ( - "fmt" - "path" - "path/filepath" - "strings" - "syscall" - - "github.com/rfjakob/gocryptfs/internal/ctlsocksrv" - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -var _ ctlsocksrv.Interface = &RootNode{} // Verify that interface is implemented. - -// EncryptPath implements ctlsock.Backend -// -// Symlink-safe through openBackingDir(). -func (rn *RootNode) EncryptPath(plainPath string) (string, error) { - if plainPath == "" { - // Empty string gets encrypted as empty string - return plainPath, nil - } - if rn.args.PlaintextNames { - return plainPath, nil - } - // Encrypt path level by level using openBackingDir. Pretty inefficient, - // but does not matter here. - parts := strings.Split(plainPath, "/") - wd := "" - cPath := "" - for _, part := range parts { - wd = filepath.Join(wd, part) - dirfd, cName, err := rn.openBackingDir(wd) - if err != nil { - return "", err - } - syscall.Close(dirfd) - cPath = filepath.Join(cPath, cName) - } - tlog.Debug.Printf("encryptPath '%s' -> '%s'", plainPath, cPath) - return cPath, nil -} - -// DecryptPath implements ctlsock.Backend -// -// DecryptPath is symlink-safe because openBackingDir() and decryptPathAt() -// are symlink-safe. -func (rn *RootNode) DecryptPath(cipherPath string) (plainPath string, err error) { - dirfd, _, err := rn.openBackingDir("") - if err != nil { - return "", err - } - defer syscall.Close(dirfd) - return rn.decryptPathAt(dirfd, cipherPath) -} - -// decryptPathAt decrypts a ciphertext path relative to dirfd. -// -// Symlink-safe through ReadDirIVAt() and ReadLongNameAt(). -func (rn *RootNode) decryptPathAt(dirfd int, cipherPath string) (plainPath string, err error) { - if rn.args.PlaintextNames || cipherPath == "" { - return cipherPath, nil - } - parts := strings.Split(cipherPath, "/") - wd := dirfd - for i, part := range parts { - dirIV, err := nametransform.ReadDirIVAt(wd) - if err != nil { - fmt.Printf("ReadDirIV: %v\n", err) - return "", err - } - longPart := part - if nametransform.IsLongContent(part) { - longPart, err = nametransform.ReadLongNameAt(wd, part) - if err != nil { - fmt.Printf("ReadLongName: %v\n", err) - return "", err - } - } - name, err := rn.nameTransform.DecryptName(longPart, dirIV) - if err != nil { - fmt.Printf("DecryptName: %v\n", err) - return "", err - } - plainPath = path.Join(plainPath, name) - // Last path component? We are done. - if i == len(parts)-1 { - break - } - // Descend into next directory - wd, err = syscallcompat.Openat(wd, part, syscall.O_NOFOLLOW|syscall.O_DIRECTORY|syscallcompat.O_PATH, 0) - if err != nil { - return "", err - } - // Yes this is somewhat wasteful in terms of used file descriptors: - // we keep them all open until the function returns. But it is simple - // and reliable. - defer syscall.Close(wd) - } - - return plainPath, nil -} diff --git a/internal/fusefrontend/dircache.go b/internal/fusefrontend/dircache.go deleted file mode 100644 index 6732de1..0000000 --- a/internal/fusefrontend/dircache.go +++ /dev/null @@ -1,180 +0,0 @@ -package fusefrontend - -import ( - "fmt" - "log" - "sync" - "syscall" - "time" - - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -const ( - // Number of entries in the dirCache. - // 20 entries work well for "git stat" on a small git repo on sshfs. - // Keep in sync with test_helpers.maxCacheFds ! - // TODO: How to share this constant without causing an import cycle? - dirCacheSize = 20 - // Enable Lookup/Store/Clear debug messages - enableDebugMessages = false - // Enable hit rate statistics printing - enableStats = false -) - -type dirCacheEntry struct { - // pointer to the Node this entry belongs to - node *Node - // fd to the directory (opened with O_PATH!) - fd int - // content of gocryptfs.diriv in this directory - iv []byte -} - -func (e *dirCacheEntry) Clear() { - // An earlier clear may have already closed the fd, or the cache - // has never been filled (fd is 0 in that case). - // Note: package ensurefds012, imported from main, guarantees that dirCache - // can never get fds 0,1,2. - if e.fd > 0 { - err := syscall.Close(e.fd) - if err != nil { - tlog.Warn.Printf("dirCache.Clear: Close failed: %v", err) - } - } - e.fd = -1 - e.node = nil - e.iv = nil -} - -type dirCache struct { - sync.Mutex - // Cache entries - entries [dirCacheSize]dirCacheEntry - // Where to store the next entry (index into entries) - nextIndex int - // On the first Lookup(), the expire thread is started, and this flag is set - // to true. - expireThreadRunning bool - // Hit rate stats. Evaluated and reset by the expire thread. - lookups uint64 - hits uint64 -} - -// Clear clears the cache contents. -func (d *dirCache) Clear() { - d.dbg("Clear\n") - d.Lock() - defer d.Unlock() - for i := range d.entries { - d.entries[i].Clear() - } -} - -// Store the entry in the cache. The passed "fd" will be Dup()ed, and the caller -// can close their copy at will. -func (d *dirCache) Store(node *Node, fd int, iv []byte) { - // Note: package ensurefds012, imported from main, guarantees that dirCache - // can never get fds 0,1,2. - if fd <= 0 || len(iv) != nametransform.DirIVLen { - log.Panicf("Store sanity check failed: fd=%d len=%d", fd, len(iv)) - } - d.Lock() - defer d.Unlock() - e := &d.entries[d.nextIndex] - // Round-robin works well enough - d.nextIndex = (d.nextIndex + 1) % dirCacheSize - // Close the old fd - e.Clear() - fd2, err := syscall.Dup(fd) - if err != nil { - tlog.Warn.Printf("dirCache.Store: Dup failed: %v", err) - return - } - d.dbg("dirCache.Store %p fd=%d iv=%x\n", node, fd2, iv) - e.fd = fd2 - e.node = node - e.iv = iv - // expireThread is started on the first Lookup() - if !d.expireThreadRunning { - d.expireThreadRunning = true - go d.expireThread() - } -} - -// Lookup checks if relPath is in the cache, and returns an (fd, iv) pair. -// It returns (-1, nil) if not found. The fd is internally Dup()ed and the -// caller must close it when done. -func (d *dirCache) Lookup(node *Node) (fd int, iv []byte) { - d.Lock() - defer d.Unlock() - if enableStats { - d.lookups++ - } - var e *dirCacheEntry - for i := range d.entries { - e = &d.entries[i] - if e.fd <= 0 { - // Cache slot is empty - continue - } - if node != e.node { - // Not the right path - continue - } - var err error - fd, err = syscall.Dup(e.fd) - if err != nil { - tlog.Warn.Printf("dirCache.Lookup: Dup failed: %v", err) - return -1, nil - } - iv = e.iv - break - } - if fd == 0 { - d.dbg("dirCache.Lookup %p miss\n", node) - return -1, nil - } - if enableStats { - d.hits++ - } - if fd <= 0 || len(iv) != nametransform.DirIVLen { - log.Panicf("Lookup sanity check failed: fd=%d len=%d", fd, len(iv)) - } - d.dbg("dirCache.Lookup %p hit fd=%d dup=%d iv=%x\n", node, e.fd, fd, iv) - return fd, iv -} - -// expireThread is started on the first Lookup() -func (d *dirCache) expireThread() { - for { - time.Sleep(60 * time.Second) - d.Clear() - d.stats() - } -} - -// stats prints hit rate statistics and resets the counters. No-op if -// enableStats == false. -func (d *dirCache) stats() { - if !enableStats { - return - } - d.Lock() - lookups := d.lookups - hits := d.hits - d.lookups = 0 - d.hits = 0 - d.Unlock() - if lookups > 0 { - fmt.Printf("dirCache: hits=%3d lookups=%3d, rate=%3d%%\n", hits, lookups, (hits*100)/lookups) - } -} - -// dbg prints a debug message. Usually disabled. -func (d *dirCache) dbg(format string, a ...interface{}) { - if enableDebugMessages { - fmt.Printf(format, a...) - } -} diff --git a/internal/fusefrontend/file.go b/internal/fusefrontend/file.go deleted file mode 100644 index cbf78e9..0000000 --- a/internal/fusefrontend/file.go +++ /dev/null @@ -1,457 +0,0 @@ -package fusefrontend - -// FUSE operations on file handles - -import ( - "bytes" - "context" - "encoding/hex" - "fmt" - "io" - "log" - "math" - "os" - "sync" - "syscall" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/inomap" - "github.com/rfjakob/gocryptfs/internal/openfiletable" - "github.com/rfjakob/gocryptfs/internal/serialize_reads" - "github.com/rfjakob/gocryptfs/internal/stupidgcm" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// File implements the go-fuse v2 API (github.com/hanwen/go-fuse/v2/fs) -type File struct { - fd *os.File - // Has Release() already been called on this file? This also means that the - // wlock entry has been freed, so let's not crash trying to access it. - // Due to concurrency, Release can overtake other operations. These will - // return EBADF in that case. - released bool - // fdLock prevents the fd to be closed while we are in the middle of - // an operation. - // Every FUSE entrypoint should RLock(). The only user of Lock() is - // Release(), which closes the fd and sets "released" to true. - fdLock sync.RWMutex - // Content encryption helper - contentEnc *contentenc.ContentEnc - // Device and inode number uniquely identify the backing file - qIno inomap.QIno - // Entry in the open file table - fileTableEntry *openfiletable.Entry - // Store where the last byte was written - lastWrittenOffset int64 - // The opCount is used to judge whether "lastWrittenOffset" is still - // guaranteed to be correct. - lastOpCount uint64 - // Parent filesystem - rootNode *RootNode -} - -// NewFile returns a new go-fuse File instance based on an already-open file -// descriptor. NewFile internally calls Fstat() on the fd. The resulting Stat_t -// is returned because node.Create() needs it. -// -// `cName` is only used for error logging and may be left blank. -func NewFile(fd int, cName string, rn *RootNode) (f *File, st *syscall.Stat_t, errno syscall.Errno) { - // Need device number and inode number for openfiletable locking - st = &syscall.Stat_t{} - if err := syscall.Fstat(fd, st); err != nil { - errno = fs.ToErrno(err) - return - } - qi := inomap.QInoFromStat(st) - e := openfiletable.Register(qi) - - osFile := os.NewFile(uintptr(fd), cName) - - f = &File{ - fd: osFile, - contentEnc: rn.contentEnc, - qIno: qi, - fileTableEntry: e, - rootNode: rn, - } - return f, st, 0 -} - -// intFd - return the backing file descriptor as an integer. -func (f *File) intFd() int { - return int(f.fd.Fd()) -} - -// readFileID loads the file header from disk and extracts the file ID. -// Returns io.EOF if the file is empty. -func (f *File) readFileID() ([]byte, error) { - // We read +1 byte to determine if the file has actual content - // and not only the header. A header-only file will be considered empty. - // This makes File ID poisoning more difficult. - readLen := contentenc.HeaderLen + 1 - buf := make([]byte, readLen) - n, err := f.fd.ReadAt(buf, 0) - if err != nil { - if err == io.EOF && n != 0 { - tlog.Warn.Printf("readFileID %d: incomplete file, got %d instead of %d bytes", - f.qIno.Ino, n, readLen) - f.rootNode.reportMitigatedCorruption(fmt.Sprint(f.qIno.Ino)) - } - return nil, err - } - buf = buf[:contentenc.HeaderLen] - h, err := contentenc.ParseHeader(buf) - if err != nil { - return nil, err - } - return h.ID, nil -} - -// createHeader creates a new random header and writes it to disk. -// Returns the new file ID. -// The caller must hold fileIDLock.Lock(). -func (f *File) createHeader() (fileID []byte, err error) { - h := contentenc.RandomHeader() - buf := h.Pack() - // Prevent partially written (=corrupt) header by preallocating the space beforehand - if !f.rootNode.args.NoPrealloc { - err = syscallcompat.EnospcPrealloc(f.intFd(), 0, contentenc.HeaderLen) - if err != nil { - if !syscallcompat.IsENOSPC(err) { - tlog.Warn.Printf("ino%d: createHeader: prealloc failed: %s\n", f.qIno.Ino, err.Error()) - } - return nil, err - } - } - // Actually write header - _, err = f.fd.WriteAt(buf, 0) - if err != nil { - return nil, err - } - return h.ID, err -} - -// doRead - read "length" plaintext bytes from plaintext offset "off" and append -// to "dst". -// Arguments "length" and "off" do not have to be block-aligned. -// -// doRead reads the corresponding ciphertext blocks from disk, decrypts them and -// returns the requested part of the plaintext. -// -// Called by Read() for normal reading, -// by Write() and Truncate() via doWrite() for Read-Modify-Write. -func (f *File) doRead(dst []byte, off uint64, length uint64) ([]byte, syscall.Errno) { - // Get the file ID, either from the open file table, or from disk. - var fileID []byte - f.fileTableEntry.IDLock.Lock() - if f.fileTableEntry.ID != nil { - // Use the cached value in the file table - fileID = f.fileTableEntry.ID - } else { - // Not cached, we have to read it from disk. - var err error - fileID, err = f.readFileID() - if err != nil { - f.fileTableEntry.IDLock.Unlock() - if err == io.EOF { - // Empty file - return nil, 0 - } - buf := make([]byte, 100) - n, _ := f.fd.ReadAt(buf, 0) - buf = buf[:n] - hexdump := hex.EncodeToString(buf) - tlog.Warn.Printf("doRead %d: corrupt header: %v\nFile hexdump (%d bytes): %s", - f.qIno.Ino, err, n, hexdump) - return nil, syscall.EIO - } - // Save into the file table - f.fileTableEntry.ID = fileID - } - f.fileTableEntry.IDLock.Unlock() - if fileID == nil { - log.Panicf("fileID=%v", fileID) - } - // Read the backing ciphertext in one go - blocks := f.contentEnc.ExplodePlainRange(off, length) - alignedOffset, alignedLength := blocks[0].JointCiphertextRange(blocks) - // f.fd.ReadAt takes an int64! - if alignedOffset > math.MaxInt64 { - return nil, syscall.EFBIG - } - skip := blocks[0].Skip - tlog.Debug.Printf("doRead: off=%d len=%d -> off=%d len=%d skip=%d\n", - off, length, alignedOffset, alignedLength, skip) - - ciphertext := f.rootNode.contentEnc.CReqPool.Get() - ciphertext = ciphertext[:int(alignedLength)] - n, err := f.fd.ReadAt(ciphertext, int64(alignedOffset)) - if err != nil && err != io.EOF { - tlog.Warn.Printf("read: ReadAt: %s", err.Error()) - return nil, fs.ToErrno(err) - } - // The ReadAt came back empty. We can skip all the decryption and return early. - if n == 0 { - f.rootNode.contentEnc.CReqPool.Put(ciphertext) - return dst, 0 - } - // Truncate ciphertext buffer down to actually read bytes - ciphertext = ciphertext[0:n] - - firstBlockNo := blocks[0].BlockNo - tlog.Debug.Printf("ReadAt offset=%d bytes (%d blocks), want=%d, got=%d", alignedOffset, firstBlockNo, alignedLength, n) - - // Decrypt it - plaintext, err := f.contentEnc.DecryptBlocks(ciphertext, firstBlockNo, fileID) - f.rootNode.contentEnc.CReqPool.Put(ciphertext) - if err != nil { - if f.rootNode.args.ForceDecode && err == stupidgcm.ErrAuth { - // We do not have the information which block was corrupt here anymore, - // but DecryptBlocks() has already logged it anyway. - tlog.Warn.Printf("doRead %d: off=%d len=%d: returning corrupt data due to forcedecode", - f.qIno.Ino, off, length) - } else { - curruptBlockNo := firstBlockNo + f.contentEnc.PlainOffToBlockNo(uint64(len(plaintext))) - tlog.Warn.Printf("doRead %d: corrupt block #%d: %v", f.qIno.Ino, curruptBlockNo, err) - return nil, syscall.EIO - } - } - - // Crop down to the relevant part - var out []byte - lenHave := len(plaintext) - lenWant := int(skip + length) - if lenHave > lenWant { - out = plaintext[skip:lenWant] - } else if lenHave > int(skip) { - out = plaintext[skip:lenHave] - } - // else: out stays empty, file was smaller than the requested offset - - out = append(dst, out...) - f.rootNode.contentEnc.PReqPool.Put(plaintext) - - return out, 0 -} - -// Read - FUSE call -func (f *File) Read(ctx context.Context, buf []byte, off int64) (resultData fuse.ReadResult, errno syscall.Errno) { - if len(buf) > fuse.MAX_KERNEL_WRITE { - // This would crash us due to our fixed-size buffer pool - tlog.Warn.Printf("Read: rejecting oversized request with EMSGSIZE, len=%d", len(buf)) - return nil, syscall.EMSGSIZE - } - f.fdLock.RLock() - defer f.fdLock.RUnlock() - - f.fileTableEntry.ContentLock.RLock() - defer f.fileTableEntry.ContentLock.RUnlock() - - tlog.Debug.Printf("ino%d: FUSE Read: offset=%d length=%d", f.qIno.Ino, off, len(buf)) - if f.rootNode.args.SerializeReads { - serialize_reads.Wait(off, len(buf)) - } - out, errno := f.doRead(buf[:0], uint64(off), uint64(len(buf))) - if f.rootNode.args.SerializeReads { - serialize_reads.Done() - } - if errno != 0 { - return nil, errno - } - tlog.Debug.Printf("ino%d: Read: errno=%d, returning %d bytes", f.qIno.Ino, errno, len(out)) - return fuse.ReadResultData(out), errno -} - -// doWrite - encrypt "data" and write it to plaintext offset "off" -// -// Arguments do not have to be block-aligned, read-modify-write is -// performed internally as necessary -// -// Called by Write() for normal writing, -// and by Truncate() to rewrite the last file block. -// -// Empty writes do nothing and are allowed. -func (f *File) doWrite(data []byte, off int64) (uint32, syscall.Errno) { - fileWasEmpty := false - // Get the file ID, create a new one if it does not exist yet. - var fileID []byte - // The caller has exclusively locked ContentLock, which blocks all other - // readers and writers. No need to take IDLock. - if f.fileTableEntry.ID != nil { - fileID = f.fileTableEntry.ID - } else { - // If the file ID is not cached, read it from disk - var err error - fileID, err = f.readFileID() - // Write a new file header if the file is empty - if err == io.EOF { - fileID, err = f.createHeader() - fileWasEmpty = true - } - if err != nil { - return 0, fs.ToErrno(err) - } - f.fileTableEntry.ID = fileID - } - // Handle payload data - dataBuf := bytes.NewBuffer(data) - blocks := f.contentEnc.ExplodePlainRange(uint64(off), uint64(len(data))) - toEncrypt := make([][]byte, len(blocks)) - for i, b := range blocks { - blockData := dataBuf.Next(int(b.Length)) - // Incomplete block -> Read-Modify-Write - if b.IsPartial() { - // Read - oldData, errno := f.doRead(nil, b.BlockPlainOff(), f.contentEnc.PlainBS()) - if errno != 0 { - tlog.Warn.Printf("ino%d fh%d: RMW read failed: errno=%d", f.qIno.Ino, f.intFd(), errno) - return 0, errno - } - // Modify - blockData = f.contentEnc.MergeBlocks(oldData, blockData, int(b.Skip)) - tlog.Debug.Printf("len(oldData)=%d len(blockData)=%d", len(oldData), len(blockData)) - } - tlog.Debug.Printf("ino%d: Writing %d bytes to block #%d", - f.qIno.Ino, len(blockData), b.BlockNo) - // Write into the to-encrypt list - toEncrypt[i] = blockData - } - // Encrypt all blocks - ciphertext := f.contentEnc.EncryptBlocks(toEncrypt, blocks[0].BlockNo, f.fileTableEntry.ID) - // Preallocate so we cannot run out of space in the middle of the write. - // This prevents partially written (=corrupt) blocks. - var err error - cOff := blocks[0].BlockCipherOff() - // f.fd.WriteAt & syscallcompat.EnospcPrealloc take int64 offsets! - if cOff > math.MaxInt64 { - return 0, syscall.EFBIG - } - if !f.rootNode.args.NoPrealloc { - err = syscallcompat.EnospcPrealloc(f.intFd(), int64(cOff), int64(len(ciphertext))) - if err != nil { - if !syscallcompat.IsENOSPC(err) { - tlog.Warn.Printf("ino%d fh%d: doWrite: prealloc failed: %v", f.qIno.Ino, f.intFd(), err) - } - if fileWasEmpty { - // Kill the file header again - f.fileTableEntry.ID = nil - err2 := syscall.Ftruncate(f.intFd(), 0) - if err2 != nil { - tlog.Warn.Printf("ino%d fh%d: doWrite: rollback failed: %v", f.qIno.Ino, f.intFd(), err2) - } - } - return 0, fs.ToErrno(err) - } - } - // Write - _, err = f.fd.WriteAt(ciphertext, int64(cOff)) - // Return memory to CReqPool - f.rootNode.contentEnc.CReqPool.Put(ciphertext) - if err != nil { - tlog.Warn.Printf("ino%d fh%d: doWrite: WriteAt off=%d len=%d failed: %v", - f.qIno.Ino, f.intFd(), cOff, len(ciphertext), err) - return 0, fs.ToErrno(err) - } - return uint32(len(data)), 0 -} - -// isConsecutiveWrite returns true if the current write -// directly (in time and space) follows the last write. -// This is an optimisation for streaming writes on NFS where a -// Stat() call is very expensive. -// The caller must "wlock.lock(f.devIno.ino)" otherwise this check would be racy. -func (f *File) isConsecutiveWrite(off int64) bool { - opCount := openfiletable.WriteOpCount() - return opCount == f.lastOpCount+1 && off == f.lastWrittenOffset+1 -} - -// Write - FUSE call -// -// If the write creates a hole, pads the file to the next block boundary. -func (f *File) Write(ctx context.Context, data []byte, off int64) (uint32, syscall.Errno) { - if len(data) > fuse.MAX_KERNEL_WRITE { - // This would crash us due to our fixed-size buffer pool - tlog.Warn.Printf("Write: rejecting oversized request with EMSGSIZE, len=%d", len(data)) - return 0, syscall.EMSGSIZE - } - f.fdLock.RLock() - defer f.fdLock.RUnlock() - if f.released { - // The file descriptor has been closed concurrently - tlog.Warn.Printf("ino%d fh%d: Write on released file", f.qIno.Ino, f.intFd()) - return 0, syscall.EBADF - } - f.fileTableEntry.ContentLock.Lock() - defer f.fileTableEntry.ContentLock.Unlock() - tlog.Debug.Printf("ino%d: FUSE Write: offset=%d length=%d", f.qIno.Ino, off, len(data)) - // If the write creates a file hole, we have to zero-pad the last block. - // But if the write directly follows an earlier write, it cannot create a - // hole, and we can save one Stat() call. - if !f.isConsecutiveWrite(off) { - errno := f.writePadHole(off) - if errno != 0 { - return 0, errno - } - } - n, errno := f.doWrite(data, off) - if errno != 0 { - f.lastOpCount = openfiletable.WriteOpCount() - f.lastWrittenOffset = off + int64(len(data)) - 1 - } - return n, errno -} - -// Release - FUSE call, close file -func (f *File) Release(ctx context.Context) syscall.Errno { - f.fdLock.Lock() - if f.released { - log.Panicf("ino%d fh%d: double release", f.qIno.Ino, f.intFd()) - } - f.released = true - openfiletable.Unregister(f.qIno) - err := f.fd.Close() - f.fdLock.Unlock() - return fs.ToErrno(err) -} - -// Flush - FUSE call -func (f *File) Flush(ctx context.Context) syscall.Errno { - f.fdLock.RLock() - defer f.fdLock.RUnlock() - - err := syscallcompat.Flush(f.intFd()) - return fs.ToErrno(err) -} - -// Fsync FUSE call -func (f *File) Fsync(ctx context.Context, flags uint32) (errno syscall.Errno) { - f.fdLock.RLock() - defer f.fdLock.RUnlock() - - return fs.ToErrno(syscall.Fsync(f.intFd())) -} - -// Getattr FUSE call (like stat) -func (f *File) Getattr(ctx context.Context, a *fuse.AttrOut) syscall.Errno { - f.fdLock.RLock() - defer f.fdLock.RUnlock() - - tlog.Debug.Printf("file.GetAttr()") - st := syscall.Stat_t{} - err := syscall.Fstat(f.intFd(), &st) - if err != nil { - return fs.ToErrno(err) - } - f.rootNode.inoMap.TranslateStat(&st) - a.FromStat(&st) - a.Size = f.contentEnc.CipherSizeToPlainSize(a.Size) - if f.rootNode.args.ForceOwner != nil { - a.Owner = *f.rootNode.args.ForceOwner - } - - return 0 -} diff --git a/internal/fusefrontend/file_allocate_truncate.go b/internal/fusefrontend/file_allocate_truncate.go deleted file mode 100644 index f4e6099..0000000 --- a/internal/fusefrontend/file_allocate_truncate.go +++ /dev/null @@ -1,218 +0,0 @@ -package fusefrontend - -// FUSE operations Truncate and Allocate on file handles -// i.e. ftruncate and fallocate - -import ( - "context" - "log" - "sync" - "syscall" - - "github.com/hanwen/go-fuse/v2/fs" - - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// FALLOC_DEFAULT is a "normal" fallocate operation -const FALLOC_DEFAULT = 0x00 - -// FALLOC_FL_KEEP_SIZE allocates disk space while not modifying the file size -const FALLOC_FL_KEEP_SIZE = 0x01 - -// Only warn once -var allocateWarnOnce sync.Once - -// Allocate - FUSE call for fallocate(2) -// -// mode=FALLOC_FL_KEEP_SIZE is implemented directly. -// -// mode=FALLOC_DEFAULT is implemented as a two-step process: -// -// (1) Allocate the space using FALLOC_FL_KEEP_SIZE -// (2) Set the file size using ftruncate (via truncateGrowFile) -// -// This allows us to reuse the file grow mechanics from Truncate as they are -// complicated and hard to get right. -// -// Other modes (hole punching, zeroing) are not supported. -func (f *File) Allocate(ctx context.Context, off uint64, sz uint64, mode uint32) syscall.Errno { - if mode != FALLOC_DEFAULT && mode != FALLOC_FL_KEEP_SIZE { - f := func() { - tlog.Info.Printf("fallocate: only mode 0 (default) and 1 (keep size) are supported") - } - allocateWarnOnce.Do(f) - return syscall.EOPNOTSUPP - } - - f.fdLock.RLock() - defer f.fdLock.RUnlock() - if f.released { - return syscall.EBADF - } - f.fileTableEntry.ContentLock.Lock() - defer f.fileTableEntry.ContentLock.Unlock() - - blocks := f.contentEnc.ExplodePlainRange(off, sz) - firstBlock := blocks[0] - lastBlock := blocks[len(blocks)-1] - - // Step (1): Allocate the space the user wants using FALLOC_FL_KEEP_SIZE. - // This will fill file holes and/or allocate additional space past the end of - // the file. - cipherOff := firstBlock.BlockCipherOff() - cipherSz := lastBlock.BlockCipherOff() - cipherOff + - f.contentEnc.BlockOverhead() + lastBlock.Skip + lastBlock.Length - err := syscallcompat.Fallocate(f.intFd(), FALLOC_FL_KEEP_SIZE, int64(cipherOff), int64(cipherSz)) - tlog.Debug.Printf("Allocate off=%d sz=%d mode=%x cipherOff=%d cipherSz=%d\n", - off, sz, mode, cipherOff, cipherSz) - if err != nil { - return fs.ToErrno(err) - } - if mode == FALLOC_FL_KEEP_SIZE { - // The user did not want to change the apparent size. We are done. - return 0 - } - // Step (2): Grow the apparent file size - // We need the old file size to determine if we are growing the file at all. - newPlainSz := off + sz - oldPlainSz, err := f.statPlainSize() - if err != nil { - return fs.ToErrno(err) - } - if newPlainSz <= oldPlainSz { - // The new size is smaller (or equal). Fallocate with mode = 0 never - // truncates a file, so we are done. - return 0 - } - // The file grows. The space has already been allocated in (1), so what is - // left to do is to pad the first and last block and call truncate. - // truncateGrowFile does just that. - return f.truncateGrowFile(oldPlainSz, newPlainSz) -} - -// truncate - called from Setattr. -func (f *File) truncate(newSize uint64) (errno syscall.Errno) { - var err error - // Common case first: Truncate to zero - if newSize == 0 { - err = syscall.Ftruncate(int(f.fd.Fd()), 0) - if err != nil { - tlog.Warn.Printf("ino%d fh%d: Ftruncate(fd, 0) returned error: %v", f.qIno.Ino, f.intFd(), err) - return fs.ToErrno(err) - } - // Truncate to zero kills the file header - f.fileTableEntry.ID = nil - return 0 - } - // We need the old file size to determine if we are growing or shrinking - // the file - oldSize, err := f.statPlainSize() - if err != nil { - return fs.ToErrno(err) - } - - oldB := float32(oldSize) / float32(f.contentEnc.PlainBS()) - newB := float32(newSize) / float32(f.contentEnc.PlainBS()) - tlog.Debug.Printf("ino%d: FUSE Truncate from %.2f to %.2f blocks (%d to %d bytes)", f.qIno.Ino, oldB, newB, oldSize, newSize) - - // File size stays the same - nothing to do - if newSize == oldSize { - return 0 - } - // File grows - if newSize > oldSize { - return f.truncateGrowFile(oldSize, newSize) - } - - // File shrinks - blockNo := f.contentEnc.PlainOffToBlockNo(newSize) - cipherOff := f.contentEnc.BlockNoToCipherOff(blockNo) - plainOff := f.contentEnc.BlockNoToPlainOff(blockNo) - lastBlockLen := newSize - plainOff - var data []byte - if lastBlockLen > 0 { - data, errno = f.doRead(nil, plainOff, lastBlockLen) - if errno != 0 { - tlog.Warn.Printf("Truncate: shrink doRead returned error: %v", err) - return errno - } - } - // Truncate down to the last complete block - err = syscall.Ftruncate(int(f.fd.Fd()), int64(cipherOff)) - if err != nil { - tlog.Warn.Printf("Truncate: shrink Ftruncate returned error: %v", err) - return fs.ToErrno(err) - } - // Append partial block - if lastBlockLen > 0 { - _, status := f.doWrite(data, int64(plainOff)) - return status - } - return 0 -} - -// statPlainSize stats the file and returns the plaintext size -func (f *File) statPlainSize() (uint64, error) { - fi, err := f.fd.Stat() - if err != nil { - tlog.Warn.Printf("ino%d fh%d: statPlainSize: %v", f.qIno.Ino, f.intFd(), err) - return 0, err - } - cipherSz := uint64(fi.Size()) - plainSz := uint64(f.contentEnc.CipherSizeToPlainSize(cipherSz)) - return plainSz, nil -} - -// truncateGrowFile extends a file using seeking or ftruncate performing RMW on -// the first and last block as necessary. New blocks in the middle become -// file holes unless they have been fallocate()'d beforehand. -func (f *File) truncateGrowFile(oldPlainSz uint64, newPlainSz uint64) syscall.Errno { - if newPlainSz <= oldPlainSz { - log.Panicf("BUG: newSize=%d <= oldSize=%d", newPlainSz, oldPlainSz) - } - newEOFOffset := newPlainSz - 1 - if oldPlainSz > 0 { - n1 := f.contentEnc.PlainOffToBlockNo(oldPlainSz - 1) - n2 := f.contentEnc.PlainOffToBlockNo(newEOFOffset) - // The file is grown within one block, no need to pad anything. - // Write a single zero to the last byte and let doWrite figure out the RMW. - if n1 == n2 { - buf := make([]byte, 1) - _, errno := f.doWrite(buf, int64(newEOFOffset)) - return errno - } - } - // The truncate creates at least one new block. - // - // Make sure the old last block is padded to the block boundary. This call - // is a no-op if it is already block-aligned. - errno := f.zeroPad(oldPlainSz) - if errno != 0 { - return errno - } - // The new size is block-aligned. In this case we can do everything ourselves - // and avoid the call to doWrite. - if newPlainSz%f.contentEnc.PlainBS() == 0 { - // The file was empty, so it did not have a header. Create one. - if oldPlainSz == 0 { - id, err := f.createHeader() - if err != nil { - return fs.ToErrno(err) - } - f.fileTableEntry.ID = id - } - cSz := int64(f.contentEnc.PlainSizeToCipherSize(newPlainSz)) - err := syscall.Ftruncate(f.intFd(), cSz) - if err != nil { - tlog.Warn.Printf("Truncate: grow Ftruncate returned error: %v", err) - } - return fs.ToErrno(err) - } - // The new size is NOT aligned, so we need to write a partial block. - // Write a single zero to the last byte and let doWrite figure it out. - buf := make([]byte, 1) - _, errno = f.doWrite(buf, int64(newEOFOffset)) - return errno -} diff --git a/internal/fusefrontend/file_api_check.go b/internal/fusefrontend/file_api_check.go deleted file mode 100644 index 019e97f..0000000 --- a/internal/fusefrontend/file_api_check.go +++ /dev/null @@ -1,22 +0,0 @@ -package fusefrontend - -import ( - "github.com/hanwen/go-fuse/v2/fs" -) - -// Check that we have implemented the fs.File* interfaces -var _ = (fs.FileGetattrer)((*File)(nil)) -var _ = (fs.FileSetattrer)((*File)(nil)) -var _ = (fs.FileReleaser)((*File)(nil)) -var _ = (fs.FileReader)((*File)(nil)) -var _ = (fs.FileWriter)((*File)(nil)) -var _ = (fs.FileFsyncer)((*File)(nil)) -var _ = (fs.FileFlusher)((*File)(nil)) -var _ = (fs.FileAllocater)((*File)(nil)) -var _ = (fs.FileLseeker)((*File)(nil)) - -/* TODO -var _ = (fs.FileGetlker)((*File)(nil)) -var _ = (fs.FileSetlker)((*File)(nil)) -var _ = (fs.FileSetlkwer)((*File)(nil)) -*/ diff --git a/internal/fusefrontend/file_holes.go b/internal/fusefrontend/file_holes.go deleted file mode 100644 index cb44803..0000000 --- a/internal/fusefrontend/file_holes.go +++ /dev/null @@ -1,128 +0,0 @@ -package fusefrontend - -// Helper functions for sparse files (files with holes) - -import ( - "context" - "runtime" - "syscall" - - "github.com/hanwen/go-fuse/v2/fs" - - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// Will a write to plaintext offset "targetOff" create a file hole in the -// ciphertext? If yes, zero-pad the last ciphertext block. -func (f *File) writePadHole(targetOff int64) syscall.Errno { - // Get the current file size. - fi, err := f.fd.Stat() - if err != nil { - tlog.Warn.Printf("checkAndPadHole: Fstat failed: %v", err) - return fs.ToErrno(err) - } - plainSize := f.contentEnc.CipherSizeToPlainSize(uint64(fi.Size())) - // Appending a single byte to the file (equivalent to writing to - // offset=plainSize) would write to "nextBlock". - nextBlock := f.contentEnc.PlainOffToBlockNo(plainSize) - // targetBlock is the block the user wants to write to. - targetBlock := f.contentEnc.PlainOffToBlockNo(uint64(targetOff)) - // The write goes into an existing block or (if the last block was full) - // starts a new one directly after the last block. Nothing to do. - if targetBlock <= nextBlock { - return 0 - } - // The write goes past the next block. nextBlock has - // to be zero-padded to the block boundary and (at least) nextBlock+1 - // will contain a file hole in the ciphertext. - errno := f.zeroPad(plainSize) - if errno != 0 { - return errno - } - return 0 -} - -// Zero-pad the file of size plainSize to the next block boundary. This is a no-op -// if the file is already block-aligned. -func (f *File) zeroPad(plainSize uint64) syscall.Errno { - lastBlockLen := plainSize % f.contentEnc.PlainBS() - if lastBlockLen == 0 { - // Already block-aligned - return 0 - } - missing := f.contentEnc.PlainBS() - lastBlockLen - pad := make([]byte, missing) - tlog.Debug.Printf("zeroPad: Writing %d bytes\n", missing) - _, errno := f.doWrite(pad, int64(plainSize)) - return errno -} - -// Lseek - FUSE call. -// -// Looking at -// fuse_file_llseek @ https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/fs/fuse/file.c?h=v5.12.7#n2634 -// this function is only called for SEEK_HOLE & SEEK_DATA. -func (f *File) Lseek(ctx context.Context, off uint64, whence uint32) (uint64, syscall.Errno) { - const ( - SEEK_DATA = 3 // find next data segment at or above `off` - SEEK_HOLE = 4 // find next hole at or above `off` - - // On error, we return -1 as the offset as per man lseek. - MinusOne = ^uint64(0) - ) - if whence != SEEK_DATA && whence != SEEK_HOLE { - tlog.Warn.Printf("BUG: Lseek was called with whence=%d. This is not supported!", whence) - return 0, syscall.EINVAL - } - if runtime.GOOS != "linux" { - // MacOS has broken (different?) SEEK_DATA / SEEK_HOLE semantics, see - // https://lists.gnu.org/archive/html/bug-gnulib/2018-09/msg00051.html - tlog.Warn.Printf("buggy on non-linux platforms, disabling SEEK_DATA & SEEK_HOLE") - return MinusOne, syscall.ENOSYS - } - - // We will need the file size - var st syscall.Stat_t - err := syscall.Fstat(f.intFd(), &st) - if err != nil { - return 0, fs.ToErrno(err) - } - fileSize := st.Size - // Better safe than sorry. The logic is only tested for 4k blocks. - if st.Blksize != 4096 { - tlog.Warn.Printf("unsupported block size of %d bytes, disabling SEEK_DATA & SEEK_HOLE", st.Blksize) - return MinusOne, syscall.ENOSYS - } - - // man lseek: offset beyond end of file -> ENXIO - if f.rootNode.contentEnc.PlainOffToCipherOff(off) >= uint64(fileSize) { - return MinusOne, syscall.ENXIO - } - - // Round down to start of block: - cipherOff := f.rootNode.contentEnc.BlockNoToCipherOff(f.rootNode.contentEnc.PlainOffToBlockNo(off)) - newCipherOff, err := syscall.Seek(f.intFd(), int64(cipherOff), int(whence)) - if err != nil { - return MinusOne, fs.ToErrno(err) - } - // already in data/hole => return original offset - if newCipherOff == int64(cipherOff) { - return off, 0 - } - // If there is no further hole, SEEK_HOLE returns the file size - // (SEEK_DATA returns ENXIO in this case). - if whence == SEEK_HOLE { - fi, err := f.fd.Stat() - if err != nil { - return MinusOne, fs.ToErrno(err) - } - if newCipherOff == fi.Size() { - return f.rootNode.contentEnc.CipherSizeToPlainSize(uint64(newCipherOff)), 0 - } - } - // syscall.Seek gave us the beginning of the next ext4 data/hole section. - // The next gocryptfs data/hole block starts at the next block boundary, - // so we have to round up: - newBlockNo := f.rootNode.contentEnc.CipherOffToBlockNo(uint64(newCipherOff) + f.rootNode.contentEnc.CipherBS() - 1) - return f.rootNode.contentEnc.BlockNoToPlainOff(newBlockNo), 0 -} diff --git a/internal/fusefrontend/file_setattr.go b/internal/fusefrontend/file_setattr.go deleted file mode 100644 index 0d6dc48..0000000 --- a/internal/fusefrontend/file_setattr.go +++ /dev/null @@ -1,85 +0,0 @@ -package fusefrontend - -import ( - "context" - "syscall" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -func (f *File) Setattr(ctx context.Context, in *fuse.SetAttrIn, out *fuse.AttrOut) (errno syscall.Errno) { - errno = f.setAttr(ctx, in) - if errno != 0 { - return errno - } - return f.Getattr(ctx, out) -} - -func (f *File) setAttr(ctx context.Context, in *fuse.SetAttrIn) (errno syscall.Errno) { - f.fdLock.RLock() - defer f.fdLock.RUnlock() - if f.released { - tlog.Warn.Printf("ino%d fh%d: Truncate on released file", f.qIno.Ino, f.intFd()) - return syscall.EBADF - } - f.fileTableEntry.ContentLock.Lock() - defer f.fileTableEntry.ContentLock.Unlock() - - // fchmod(2) - if mode, ok := in.GetMode(); ok { - errno = fs.ToErrno(syscall.Fchmod(f.intFd(), mode)) - if errno != 0 { - return errno - } - } - - // fchown(2) - uid32, uOk := in.GetUID() - gid32, gOk := in.GetGID() - if uOk || gOk { - uid := -1 - gid := -1 - - if uOk { - uid = int(uid32) - } - if gOk { - gid = int(gid32) - } - errno = fs.ToErrno(syscall.Fchown(f.intFd(), uid, gid)) - if errno != 0 { - return errno - } - } - - // utimens(2) - mtime, mok := in.GetMTime() - atime, aok := in.GetATime() - if mok || aok { - ap := &atime - mp := &mtime - if !aok { - ap = nil - } - if !mok { - mp = nil - } - errno = fs.ToErrno(syscallcompat.FutimesNano(f.intFd(), ap, mp)) - if errno != 0 { - return errno - } - } - - // truncate(2) - if sz, ok := in.GetSize(); ok { - errno = syscall.Errno(f.truncate(sz)) - if errno != 0 { - return errno - } - } - return 0 -} diff --git a/internal/fusefrontend/node.go b/internal/fusefrontend/node.go deleted file mode 100644 index 8370a22..0000000 --- a/internal/fusefrontend/node.go +++ /dev/null @@ -1,449 +0,0 @@ -package fusefrontend - -import ( - "context" - "syscall" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// Node is a file or directory in the filesystem tree -// in a gocryptfs mount. -type Node struct { - fs.Inode -} - -// Lookup - FUSE call for discovering a file. -func (n *Node) Lookup(ctx context.Context, name string, out *fuse.EntryOut) (ch *fs.Inode, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall(name) - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // Get device number and inode number into `st` - st, err := syscallcompat.Fstatat2(dirfd, cName, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - return nil, fs.ToErrno(err) - } - - // Create new inode and fill `out` - ch = n.newChild(ctx, st, out) - - // Translate ciphertext size in `out.Attr.Size` to plaintext size - n.translateSize(dirfd, cName, &out.Attr) - - return ch, 0 -} - -// GetAttr - FUSE call for stat()ing a file. -// -// GetAttr is symlink-safe through use of openBackingDir() and Fstatat(). -func (n *Node) Getattr(ctx context.Context, f fs.FileHandle, out *fuse.AttrOut) (errno syscall.Errno) { - // If the kernel gives us a file handle, use it. - if f != nil { - return f.(fs.FileGetattrer).Getattr(ctx, out) - } - - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - st, err := syscallcompat.Fstatat2(dirfd, cName, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - return fs.ToErrno(err) - } - - // Fix inode number - rn := n.rootNode() - rn.inoMap.TranslateStat(st) - out.Attr.FromStat(st) - - // Translate ciphertext size in `out.Attr.Size` to plaintext size - n.translateSize(dirfd, cName, &out.Attr) - - if rn.args.ForceOwner != nil { - out.Owner = *rn.args.ForceOwner - } - return 0 -} - -// Unlink - FUSE call. Delete a file. -// -// Symlink-safe through use of Unlinkat(). -func (n *Node) Unlink(ctx context.Context, name string) (errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall(name) - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // Delete content - err := syscallcompat.Unlinkat(dirfd, cName, 0) - if err != nil { - return fs.ToErrno(err) - } - // Delete ".name" file - if !n.rootNode().args.PlaintextNames && nametransform.IsLongContent(cName) { - err = nametransform.DeleteLongNameAt(dirfd, cName) - if err != nil { - tlog.Warn.Printf("Unlink: could not delete .name file: %v", err) - } - } - return fs.ToErrno(err) -} - -// Readlink - FUSE call. -// -// Symlink-safe through openBackingDir() + Readlinkat(). -func (n *Node) Readlink(ctx context.Context) (out []byte, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - return n.readlink(dirfd, cName) -} - -// Setattr - FUSE call. Called for chmod, truncate, utimens, ... -func (n *Node) Setattr(ctx context.Context, f fs.FileHandle, in *fuse.SetAttrIn, out *fuse.AttrOut) (errno syscall.Errno) { - // Use the fd if the kernel gave us one - if f != nil { - f2 := f.(*File) - return f2.Setattr(ctx, in, out) - } - - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // chmod(2) - // - // gocryptfs.diriv & gocryptfs.longname.[sha256].name files do NOT get chmod'ed - // or chown'ed with their parent file/dir for simplicity. - // See nametransform/perms.go for details. - if mode, ok := in.GetMode(); ok { - errno = fs.ToErrno(syscallcompat.FchmodatNofollow(dirfd, cName, mode)) - if errno != 0 { - return errno - } - } - - // chown(2) - uid32, uOk := in.GetUID() - gid32, gOk := in.GetGID() - if uOk || gOk { - uid := -1 - gid := -1 - - if uOk { - uid = int(uid32) - } - if gOk { - gid = int(gid32) - } - errno = fs.ToErrno(syscallcompat.Fchownat(dirfd, cName, uid, gid, unix.AT_SYMLINK_NOFOLLOW)) - if errno != 0 { - return errno - } - } - - // utimens(2) - mtime, mok := in.GetMTime() - atime, aok := in.GetATime() - if mok || aok { - ap := &atime - mp := &mtime - if !aok { - ap = nil - } - if !mok { - mp = nil - } - errno = fs.ToErrno(syscallcompat.UtimesNanoAtNofollow(dirfd, cName, ap, mp)) - if errno != 0 { - return errno - } - } - - // For truncate, the user has to have write permissions. That means we can - // depend on opening a RDWR fd and letting the File handle truncate. - if sz, ok := in.GetSize(); ok { - f, _, errno := n.Open(ctx, syscall.O_RDWR) - if errno != 0 { - return errno - } - f2 := f.(*File) - defer f2.Release(ctx) - errno = syscall.Errno(f2.truncate(sz)) - if errno != 0 { - return errno - } - return f2.Getattr(ctx, out) - } - - return n.Getattr(ctx, nil, out) -} - -// StatFs - FUSE call. Returns information about the filesystem. -// -// Symlink-safe because the path is ignored. -func (n *Node) Statfs(ctx context.Context, out *fuse.StatfsOut) syscall.Errno { - p := n.rootNode().args.Cipherdir - var st syscall.Statfs_t - err := syscall.Statfs(p, &st) - if err != nil { - return fs.ToErrno(err) - } - out.FromStatfsT(&st) - return 0 -} - -// Mknod - FUSE call. Create a device file. -// -// Symlink-safe through use of Mknodat(). -func (n *Node) Mknod(ctx context.Context, name string, mode, rdev uint32, out *fuse.EntryOut) (inode *fs.Inode, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall(name) - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // Make sure context is nil if we don't want to preserve the owner - rn := n.rootNode() - if !rn.args.PreserveOwner { - ctx = nil - } - - // Create ".name" file to store long file name (except in PlaintextNames mode) - var err error - ctx2 := toFuseCtx(ctx) - if !rn.args.PlaintextNames && nametransform.IsLongContent(cName) { - err := rn.nameTransform.WriteLongNameAt(dirfd, cName, name) - if err != nil { - errno = fs.ToErrno(err) - return - } - // Create "gocryptfs.longfile." device node - err = syscallcompat.MknodatUser(dirfd, cName, mode, int(rdev), ctx2) - if err != nil { - nametransform.DeleteLongNameAt(dirfd, cName) - } - } else { - // Create regular device node - err = syscallcompat.MknodatUser(dirfd, cName, mode, int(rdev), ctx2) - } - if err != nil { - errno = fs.ToErrno(err) - return - } - - st, err := syscallcompat.Fstatat2(dirfd, cName, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - errno = fs.ToErrno(err) - return - } - inode = n.newChild(ctx, st, out) - return inode, 0 -} - -// Link - FUSE call. Creates a hard link at "newPath" pointing to file -// "oldPath". -// -// Symlink-safe through use of Linkat(). -func (n *Node) Link(ctx context.Context, target fs.InodeEmbedder, name string, out *fuse.EntryOut) (inode *fs.Inode, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall(name) - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - n2 := toNode(target) - dirfd2, cName2, errno := n2.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd2) - - // Handle long file name (except in PlaintextNames mode) - rn := n.rootNode() - var err error - if !rn.args.PlaintextNames && nametransform.IsLongContent(cName) { - err = rn.nameTransform.WriteLongNameAt(dirfd, cName, name) - if err != nil { - errno = fs.ToErrno(err) - return - } - // Create "gocryptfs.longfile." link - err = unix.Linkat(dirfd2, cName2, dirfd, cName, 0) - if err != nil { - nametransform.DeleteLongNameAt(dirfd, cName) - } - } else { - // Create regular link - err = unix.Linkat(dirfd2, cName2, dirfd, cName, 0) - } - if err != nil { - errno = fs.ToErrno(err) - return - } - - st, err := syscallcompat.Fstatat2(dirfd, cName, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - errno = fs.ToErrno(err) - return - } - inode = n.newChild(ctx, st, out) - return inode, 0 -} - -// Symlink - FUSE call. Create a symlink. -// -// Symlink-safe through use of Symlinkat. -func (n *Node) Symlink(ctx context.Context, target, name string, out *fuse.EntryOut) (inode *fs.Inode, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall(name) - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // Make sure context is nil if we don't want to preserve the owner - rn := n.rootNode() - if !rn.args.PreserveOwner { - ctx = nil - } - - cTarget := target - if !rn.args.PlaintextNames { - // Symlinks are encrypted like file contents (GCM) and base64-encoded - cTarget = rn.encryptSymlinkTarget(target) - } - // Create ".name" file to store long file name (except in PlaintextNames mode) - var err error - ctx2 := toFuseCtx(ctx) - if !rn.args.PlaintextNames && nametransform.IsLongContent(cName) { - err = rn.nameTransform.WriteLongNameAt(dirfd, cName, name) - if err != nil { - errno = fs.ToErrno(err) - return - } - // Create "gocryptfs.longfile." symlink - err = syscallcompat.SymlinkatUser(cTarget, dirfd, cName, ctx2) - if err != nil { - nametransform.DeleteLongNameAt(dirfd, cName) - } - } else { - // Create symlink - err = syscallcompat.SymlinkatUser(cTarget, dirfd, cName, ctx2) - } - - st, err := syscallcompat.Fstatat2(dirfd, cName, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - errno = fs.ToErrno(err) - return - } - // Report the plaintext size, not the encrypted blob size - st.Size = int64(len(target)) - - inode = n.newChild(ctx, st, out) - return inode, 0 -} - -// xfstests generic/013 now also exercises RENAME_EXCHANGE and RENAME_WHITEOUT, -// uncovering lots of problems with longnames -// -// Reject those flags with syscall.EINVAL. -// If we can handle the flags, this function returns 0. -func rejectRenameFlags(flags uint32) syscall.Errno { - // Normal rename, we can handle that - if flags == 0 { - return 0 - } - // We also can handle RENAME_NOREPLACE - if flags == syscallcompat.RENAME_NOREPLACE { - return 0 - } - // We cannot handle RENAME_EXCHANGE and RENAME_WHITEOUT yet. - // Needs extra code for .name files. - return syscall.EINVAL -} - -// Rename - FUSE call. -// This function is called on the PARENT DIRECTORY of `name`. -// -// Symlink-safe through Renameat(). -func (n *Node) Rename(ctx context.Context, name string, newParent fs.InodeEmbedder, newName string, flags uint32) (errno syscall.Errno) { - if errno = rejectRenameFlags(flags); errno != 0 { - return errno - } - - dirfd, cName, errno := n.prepareAtSyscall(name) - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - n2 := toNode(newParent) - dirfd2, cName2, errno := n2.prepareAtSyscall(newName) - if errno != 0 { - return - } - defer syscall.Close(dirfd2) - - // Easy case. - rn := n.rootNode() - if rn.args.PlaintextNames { - return fs.ToErrno(syscallcompat.Renameat2(dirfd, cName, dirfd2, cName2, uint(flags))) - } - // Long destination file name: create .name file - nameFileAlreadyThere := false - var err error - if nametransform.IsLongContent(cName2) { - err = rn.nameTransform.WriteLongNameAt(dirfd2, cName2, newName) - // Failure to write the .name file is expected when the target path already - // exists. Since hashes are pretty unique, there is no need to modify the - // .name file in this case, and we ignore the error. - if err == syscall.EEXIST { - nameFileAlreadyThere = true - } else if err != nil { - return fs.ToErrno(err) - } - } - // Actual rename - tlog.Debug.Printf("Renameat %d/%s -> %d/%s\n", dirfd, cName, dirfd2, cName2) - err = syscallcompat.Renameat2(dirfd, cName, dirfd2, cName2, uint(flags)) - if (flags&syscallcompat.RENAME_NOREPLACE == 0) && (err == syscall.ENOTEMPTY || err == syscall.EEXIST) { - // If an empty directory is overwritten we will always get an error as - // the "empty" directory will still contain gocryptfs.diriv. - // Interestingly, ext4 returns ENOTEMPTY while xfs returns EEXIST. - // We handle that by trying to fs.Rmdir() the target directory and trying - // again. - tlog.Debug.Printf("Rename: Handling ENOTEMPTY") - if n2.Rmdir(ctx, newName) == 0 { - err = syscallcompat.Renameat2(dirfd, cName, dirfd2, cName2, uint(flags)) - } - } - if err != nil { - if nametransform.IsLongContent(cName2) && nameFileAlreadyThere == false { - // Roll back .name creation unless the .name file was already there - nametransform.DeleteLongNameAt(dirfd2, cName2) - } - return fs.ToErrno(err) - } - if nametransform.IsLongContent(cName) { - nametransform.DeleteLongNameAt(dirfd, cName) - } - return 0 -} diff --git a/internal/fusefrontend/node_api_check.go b/internal/fusefrontend/node_api_check.go deleted file mode 100644 index 0f60c74..0000000 --- a/internal/fusefrontend/node_api_check.go +++ /dev/null @@ -1,31 +0,0 @@ -package fusefrontend - -import ( - "github.com/hanwen/go-fuse/v2/fs" -) - -// Check that we have implemented the fs.Node* interfaces -var _ = (fs.NodeGetattrer)((*Node)(nil)) -var _ = (fs.NodeLookuper)((*Node)(nil)) -var _ = (fs.NodeReaddirer)((*Node)(nil)) -var _ = (fs.NodeCreater)((*Node)(nil)) -var _ = (fs.NodeMkdirer)((*Node)(nil)) -var _ = (fs.NodeRmdirer)((*Node)(nil)) -var _ = (fs.NodeUnlinker)((*Node)(nil)) -var _ = (fs.NodeReadlinker)((*Node)(nil)) -var _ = (fs.NodeOpener)((*Node)(nil)) -var _ = (fs.NodeOpendirer)((*Node)(nil)) -var _ = (fs.NodeSetattrer)((*Node)(nil)) -var _ = (fs.NodeStatfser)((*Node)(nil)) -var _ = (fs.NodeMknoder)((*Node)(nil)) -var _ = (fs.NodeLinker)((*Node)(nil)) -var _ = (fs.NodeSymlinker)((*Node)(nil)) -var _ = (fs.NodeRenamer)((*Node)(nil)) -var _ = (fs.NodeGetxattrer)((*Node)(nil)) -var _ = (fs.NodeSetxattrer)((*Node)(nil)) -var _ = (fs.NodeRemovexattrer)((*Node)(nil)) -var _ = (fs.NodeListxattrer)((*Node)(nil)) - -/* TODO -var _ = (fs.NodeCopyFileRanger)((*Node)(nil)) -*/ diff --git a/internal/fusefrontend/node_dir_ops.go b/internal/fusefrontend/node_dir_ops.go deleted file mode 100644 index 001c23a..0000000 --- a/internal/fusefrontend/node_dir_ops.go +++ /dev/null @@ -1,376 +0,0 @@ -package fusefrontend - -import ( - "context" - "fmt" - "io" - "path/filepath" - "runtime" - "syscall" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -const dsStoreName = ".DS_Store" - -// haveDsstore return true if one of the entries in "names" is ".DS_Store". -func haveDsstore(entries []fuse.DirEntry) bool { - for _, e := range entries { - if e.Name == dsStoreName { - return true - } - } - return false -} - -// mkdirWithIv - create a new directory and corresponding diriv file. dirfd -// should be a handle to the parent directory, cName is the name of the new -// directory and mode specifies the access permissions to use. -func (n *Node) mkdirWithIv(dirfd int, cName string, mode uint32, context *fuse.Context) error { - rn := n.rootNode() - // Between the creation of the directory and the creation of gocryptfs.diriv - // the directory is inconsistent. Take the lock to prevent other readers - // from seeing it. - rn.dirIVLock.Lock() - defer rn.dirIVLock.Unlock() - err := syscallcompat.MkdiratUser(dirfd, cName, mode, context) - if err != nil { - return err - } - dirfd2, err := syscallcompat.Openat(dirfd, cName, syscall.O_DIRECTORY|syscall.O_NOFOLLOW|syscallcompat.O_PATH, 0) - if err == nil { - // Create gocryptfs.diriv - err = nametransform.WriteDirIVAt(dirfd2) - syscall.Close(dirfd2) - } - if err != nil { - // Delete inconsistent directory (missing gocryptfs.diriv!) - err2 := syscallcompat.Unlinkat(dirfd, cName, unix.AT_REMOVEDIR) - if err2 != nil { - tlog.Warn.Printf("mkdirWithIv: rollback failed: %v", err2) - } - } - return err -} - -// Mkdir - FUSE call. Create a directory at "newPath" with permissions "mode". -// -// Symlink-safe through use of Mkdirat(). -func (n *Node) Mkdir(ctx context.Context, name string, mode uint32, out *fuse.EntryOut) (*fs.Inode, syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall(name) - if errno != 0 { - return nil, errno - } - defer syscall.Close(dirfd) - - rn := n.rootNode() - var context *fuse.Context - if rn.args.PreserveOwner { - context = toFuseCtx(ctx) - } - - var st syscall.Stat_t - if rn.args.PlaintextNames { - err := syscallcompat.MkdiratUser(dirfd, cName, mode, context) - if err != nil { - return nil, fs.ToErrno(err) - } - var ust unix.Stat_t - err = syscallcompat.Fstatat(dirfd, cName, &ust, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - return nil, fs.ToErrno(err) - } - st = syscallcompat.Unix2syscall(ust) - } else { - // We need write and execute permissions to create gocryptfs.diriv. - // Also, we need read permissions to open the directory (to avoid - // race-conditions between getting and setting the mode). - origMode := mode - mode = mode | 0700 - - // Handle long file name - if nametransform.IsLongContent(cName) { - // Create ".name" - err := rn.nameTransform.WriteLongNameAt(dirfd, cName, name) - if err != nil { - return nil, fs.ToErrno(err) - } - - // Create directory - err = rn.mkdirWithIv(dirfd, cName, mode, context) - if err != nil { - nametransform.DeleteLongNameAt(dirfd, cName) - return nil, fs.ToErrno(err) - } - } else { - err := rn.mkdirWithIv(dirfd, cName, mode, context) - if err != nil { - return nil, fs.ToErrno(err) - } - } - - fd, err := syscallcompat.Openat(dirfd, cName, - syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) - if err != nil { - tlog.Warn.Printf("Mkdir %q: Openat failed: %v", cName, err) - return nil, fs.ToErrno(err) - } - defer syscall.Close(fd) - - err = syscall.Fstat(fd, &st) - if err != nil { - tlog.Warn.Printf("Mkdir %q: Fstat failed: %v", cName, err) - return nil, fs.ToErrno(err) - } - - // Fix permissions - if origMode != mode { - // Preserve SGID bit if it was set due to inheritance. - origMode = uint32(st.Mode&^0777) | origMode - err = syscall.Fchmod(fd, origMode) - if err != nil { - tlog.Warn.Printf("Mkdir %q: Fchmod %#o -> %#o failed: %v", cName, mode, origMode, err) - } - } - } - - // Create child node - ch := n.newChild(ctx, &st, out) - - return ch, 0 -} - -// Readdir - FUSE call. -// -// This function is symlink-safe through use of openBackingDir() and -// ReadDirIVAt(). -func (n *Node) Readdir(ctx context.Context) (fs.DirStream, syscall.Errno) { - parentDirFd, cDirName, errno := n.prepareAtSyscall("") - if errno != 0 { - return nil, errno - } - defer syscall.Close(parentDirFd) - - // Read ciphertext directory - fd, err := syscallcompat.Openat(parentDirFd, cDirName, syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) - if err != nil { - return nil, fs.ToErrno(err) - } - defer syscall.Close(fd) - cipherEntries, specialEntries, err := syscallcompat.GetdentsSpecial(fd) - if err != nil { - return nil, fs.ToErrno(err) - } - // Get DirIV (stays nil if PlaintextNames is used) - var cachedIV []byte - rn := n.rootNode() - if !rn.args.PlaintextNames { - // Read the DirIV from disk - cachedIV, err = nametransform.ReadDirIVAt(fd) - if err != nil { - tlog.Warn.Printf("OpenDir %q: could not read %s: %v", cDirName, nametransform.DirIVFilename, err) - return nil, syscall.EIO - } - } - // Decrypted directory entries - var plain []fuse.DirEntry - // Add "." and ".." - plain = append(plain, specialEntries...) - // Filter and decrypt filenames - for i := range cipherEntries { - cName := cipherEntries[i].Name - if n.IsRoot() && cName == configfile.ConfDefaultName { - // silently ignore "gocryptfs.conf" in the top level dir - continue - } - if rn.args.PlaintextNames { - plain = append(plain, cipherEntries[i]) - continue - } - if cName == nametransform.DirIVFilename { - // silently ignore "gocryptfs.diriv" everywhere if dirIV is enabled - continue - } - // Handle long file name - isLong := nametransform.LongNameNone - if rn.args.LongNames { - isLong = nametransform.NameType(cName) - } - if isLong == nametransform.LongNameContent { - cNameLong, err := nametransform.ReadLongNameAt(fd, cName) - if err != nil { - tlog.Warn.Printf("OpenDir %q: invalid entry %q: Could not read .name: %v", - cDirName, cName, err) - rn.reportMitigatedCorruption(cName) - continue - } - cName = cNameLong - } else if isLong == nametransform.LongNameFilename { - // ignore "gocryptfs.longname.*.name" - continue - } - name, err := rn.nameTransform.DecryptName(cName, cachedIV) - if err != nil { - tlog.Warn.Printf("OpenDir %q: invalid entry %q: %v", - cDirName, cName, err) - rn.reportMitigatedCorruption(cName) - continue - } - // Override the ciphertext name with the plaintext name but reuse the rest - // of the structure - cipherEntries[i].Name = name - plain = append(plain, cipherEntries[i]) - } - - return fs.NewListDirStream(plain), 0 -} - -// Rmdir - FUSE call. -// -// Symlink-safe through Unlinkat() + AT_REMOVEDIR. -func (n *Node) Rmdir(ctx context.Context, name string) (code syscall.Errno) { - rn := n.rootNode() - p := filepath.Join(n.Path(), name) - parentDirFd, cName, err := rn.openBackingDir(p) - if err != nil { - return fs.ToErrno(err) - } - defer syscall.Close(parentDirFd) - if rn.args.PlaintextNames { - // Unlinkat with AT_REMOVEDIR is equivalent to Rmdir - err = unix.Unlinkat(parentDirFd, cName, unix.AT_REMOVEDIR) - return fs.ToErrno(err) - } - // Unless we are running as root, we need read, write and execute permissions - // to handle gocryptfs.diriv. - permWorkaround := false - var origMode uint32 - if !rn.args.PreserveOwner { - var st unix.Stat_t - err = syscallcompat.Fstatat(parentDirFd, cName, &st, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - return fs.ToErrno(err) - } - if st.Mode&0700 != 0700 { - tlog.Debug.Printf("Rmdir: permWorkaround") - permWorkaround = true - // This cast is needed on Darwin, where st.Mode is uint16. - origMode = uint32(st.Mode) - err = syscallcompat.FchmodatNofollow(parentDirFd, cName, origMode|0700) - if err != nil { - tlog.Debug.Printf("Rmdir: permWorkaround: chmod failed: %v", err) - return fs.ToErrno(err) - } - } - } - dirfd, err := syscallcompat.Openat(parentDirFd, cName, - syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) - if err != nil { - tlog.Debug.Printf("Rmdir: Open: %v", err) - return fs.ToErrno(err) - } - defer syscall.Close(dirfd) - // Undo the chmod if removing the directory failed. This must run before - // closing dirfd, so defer it after (defer is LIFO). - if permWorkaround { - defer func() { - if code != 0 { - err = unix.Fchmod(dirfd, origMode) - if err != nil { - tlog.Warn.Printf("Rmdir: permWorkaround: rollback failed: %v", err) - } - } - }() - } -retry: - // Check directory contents - children, err := syscallcompat.Getdents(dirfd) - if err == io.EOF { - // The directory is empty - tlog.Warn.Printf("Rmdir: %q: %s is missing", cName, nametransform.DirIVFilename) - err = unix.Unlinkat(parentDirFd, cName, unix.AT_REMOVEDIR) - return fs.ToErrno(err) - } - if err != nil { - tlog.Warn.Printf("Rmdir: Getdents: %v", err) - return fs.ToErrno(err) - } - // MacOS sprinkles .DS_Store files everywhere. This is hard to avoid for - // users, so handle it transparently here. - if runtime.GOOS == "darwin" && len(children) <= 2 && haveDsstore(children) { - err = unix.Unlinkat(dirfd, dsStoreName, 0) - if err != nil { - tlog.Warn.Printf("Rmdir: failed to delete blocking file %q: %v", dsStoreName, err) - return fs.ToErrno(err) - } - tlog.Warn.Printf("Rmdir: had to delete blocking file %q", dsStoreName) - goto retry - } - // If the directory is not empty besides gocryptfs.diriv, do not even - // attempt the dance around gocryptfs.diriv. - if len(children) > 1 { - return fs.ToErrno(syscall.ENOTEMPTY) - } - // Move "gocryptfs.diriv" to the parent dir as "gocryptfs.diriv.rmdir.XYZ" - tmpName := fmt.Sprintf("%s.rmdir.%d", nametransform.DirIVFilename, cryptocore.RandUint64()) - tlog.Debug.Printf("Rmdir: Renaming %s to %s", nametransform.DirIVFilename, tmpName) - // The directory is in an inconsistent state between rename and rmdir. - // Protect against concurrent readers. - rn.dirIVLock.Lock() - defer rn.dirIVLock.Unlock() - err = syscallcompat.Renameat(dirfd, nametransform.DirIVFilename, - parentDirFd, tmpName) - if err != nil { - tlog.Warn.Printf("Rmdir: Renaming %s to %s failed: %v", - nametransform.DirIVFilename, tmpName, err) - return fs.ToErrno(err) - } - // Actual Rmdir - err = syscallcompat.Unlinkat(parentDirFd, cName, unix.AT_REMOVEDIR) - if err != nil { - // This can happen if another file in the directory was created in the - // meantime, undo the rename - err2 := syscallcompat.Renameat(parentDirFd, tmpName, - dirfd, nametransform.DirIVFilename) - if err2 != nil { - tlog.Warn.Printf("Rmdir: Rename rollback failed: %v", err2) - } - return fs.ToErrno(err) - } - // Delete "gocryptfs.diriv.rmdir.XYZ" - err = syscallcompat.Unlinkat(parentDirFd, tmpName, 0) - if err != nil { - tlog.Warn.Printf("Rmdir: Could not clean up %s: %v", tmpName, err) - } - // Delete .name file - if nametransform.IsLongContent(cName) { - nametransform.DeleteLongNameAt(parentDirFd, cName) - } - return 0 -} - -// Opendir is a FUSE call to check if the directory can be opened. -func (n *Node) Opendir(ctx context.Context) (errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // Open backing directory - fd, err := syscallcompat.Openat(dirfd, cName, syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) - if err != nil { - return fs.ToErrno(err) - } - syscall.Close(fd) - return 0 -} diff --git a/internal/fusefrontend/node_helpers.go b/internal/fusefrontend/node_helpers.go deleted file mode 100644 index b2f1d4a..0000000 --- a/internal/fusefrontend/node_helpers.go +++ /dev/null @@ -1,177 +0,0 @@ -package fusefrontend - -import ( - "context" - "log" - "path/filepath" - "sync/atomic" - "syscall" - - "github.com/hanwen/go-fuse/v2/fs" - - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// toFuseCtx tries to extract a fuse.Context from a generic context.Context. -func toFuseCtx(ctx context.Context) (ctx2 *fuse.Context) { - if ctx == nil { - return nil - } - if caller, ok := fuse.FromContext(ctx); ok { - ctx2 = &fuse.Context{ - Caller: *caller, - } - } - return ctx2 -} - -// toNode casts a generic fs.InodeEmbedder into *Node. Also handles *RootNode -// by return rn.Node. -func toNode(op fs.InodeEmbedder) *Node { - if r, ok := op.(*RootNode); ok { - return &r.Node - } - return op.(*Node) -} - -// readlink reads and decrypts a symlink. Used by Readlink, Getattr, Lookup. -func (n *Node) readlink(dirfd int, cName string) (out []byte, errno syscall.Errno) { - cTarget, err := syscallcompat.Readlinkat(dirfd, cName) - if err != nil { - return nil, fs.ToErrno(err) - } - rn := n.rootNode() - if rn.args.PlaintextNames { - return []byte(cTarget), 0 - } - // Symlinks are encrypted like file contents (GCM) and base64-encoded - target, err := rn.decryptSymlinkTarget(cTarget) - if err != nil { - tlog.Warn.Printf("Readlink %q: decrypting target failed: %v", cName, err) - return nil, syscall.EIO - } - return []byte(target), 0 -} - -// translateSize translates the ciphertext size in `out` into plaintext size. -// Handles regular files & symlinks (and finds out what is what by looking at -// `out.Mode`). -func (n *Node) translateSize(dirfd int, cName string, out *fuse.Attr) { - if out.IsRegular() { - rn := n.rootNode() - out.Size = rn.contentEnc.CipherSizeToPlainSize(out.Size) - } else if out.IsSymlink() { - target, _ := n.readlink(dirfd, cName) - out.Size = uint64(len(target)) - } -} - -// Path returns the relative plaintext path of this node -func (n *Node) Path() string { - return n.Inode.Path(n.Root()) -} - -// rootNode returns the Root Node of the filesystem. -func (n *Node) rootNode() *RootNode { - return n.Root().Operations().(*RootNode) -} - -// prepareAtSyscall returns a (dirfd, cName) pair that can be used -// with the "___at" family of system calls (openat, fstatat, unlinkat...) to -// access the backing encrypted directory. -// -// If you pass a `child` file name, the (dirfd, cName) pair will refer to -// a child of this node. -// If `child` is empty, the (dirfd, cName) pair refers to this node itself. For -// the root node, that means (dirfd, "."). -func (n *Node) prepareAtSyscall(child string) (dirfd int, cName string, errno syscall.Errno) { - rn := n.rootNode() - // all filesystem operations go through prepareAtSyscall(), so this is a - // good place to reset the idle marker. - atomic.StoreUint32(&rn.IsIdle, 0) - - // root node itself is special - if child == "" && n.IsRoot() { - var err error - dirfd, cName, err = rn.openBackingDir("") - if err != nil { - errno = fs.ToErrno(err) - } - return - } - - // normal node itself can be converted to child of parent node - if child == "" { - name, p1 := n.Parent() - if p1 == nil || name == "" { - return -1, "", syscall.ENOENT - } - p2 := toNode(p1.Operations()) - return p2.prepareAtSyscall(name) - } - - // Cache lookup - // TODO make it work for plaintextnames as well? - cacheable := (!rn.args.PlaintextNames) - if cacheable { - var iv []byte - dirfd, iv = rn.dirCache.Lookup(n) - if dirfd > 0 { - cName, err := rn.nameTransform.EncryptAndHashName(child, iv) - if err != nil { - return -1, "", fs.ToErrno(err) - } - return dirfd, cName, 0 - } - } - - // Slowpath - if child == "" { - log.Panicf("BUG: child name is empty - this cannot happen") - } - p := filepath.Join(n.Path(), child) - if rn.isFiltered(p) { - errno = syscall.EPERM - return - } - dirfd, cName, err := rn.openBackingDir(p) - if err != nil { - errno = fs.ToErrno(err) - return - } - - // Cache store - if cacheable { - // TODO: openBackingDir already calls ReadDirIVAt(). Avoid duplicate work? - iv, err := nametransform.ReadDirIVAt(dirfd) - if err != nil { - syscall.Close(dirfd) - return -1, "", fs.ToErrno(err) - } - rn.dirCache.Store(n, dirfd, iv) - } - return -} - -// newChild attaches a new child inode to n. -// The passed-in `st` will be modified to get a unique inode number -// (or, in `-sharedstorage` mode, the inode number will be set to zero). -func (n *Node) newChild(ctx context.Context, st *syscall.Stat_t, out *fuse.EntryOut) *fs.Inode { - rn := n.rootNode() - // Get stable inode number based on underlying (device,ino) pair - // (or set to zero in case of `-sharestorage`) - rn.inoMap.TranslateStat(st) - out.Attr.FromStat(st) - // Create child node - id := fs.StableAttr{ - Mode: uint32(st.Mode), - Gen: 1, - Ino: st.Ino, - } - node := &Node{} - return n.NewInode(ctx, node, id) -} diff --git a/internal/fusefrontend/node_open_create.go b/internal/fusefrontend/node_open_create.go deleted file mode 100644 index 8b31932..0000000 --- a/internal/fusefrontend/node_open_create.go +++ /dev/null @@ -1,108 +0,0 @@ -package fusefrontend - -import ( - "context" - "syscall" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// Open - FUSE call. Open already-existing file. -// -// Symlink-safe through Openat(). -func (n *Node) Open(ctx context.Context, flags uint32) (fh fs.FileHandle, fuseFlags uint32, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - rn := n.rootNode() - newFlags := rn.mangleOpenFlags(flags) - // Taking this lock makes sure we don't race openWriteOnlyFile() - rn.openWriteOnlyLock.RLock() - defer rn.openWriteOnlyLock.RUnlock() - - if rn.args.KernelCache { - fuseFlags = fuse.FOPEN_KEEP_CACHE - } - - // Open backing file - fd, err := syscallcompat.Openat(dirfd, cName, newFlags, 0) - // Handle a few specific errors - if err != nil { - if err == syscall.EMFILE { - var lim syscall.Rlimit - syscall.Getrlimit(syscall.RLIMIT_NOFILE, &lim) - tlog.Warn.Printf("Open %q: too many open files. Current \"ulimit -n\": %d", cName, lim.Cur) - } - if err == syscall.EACCES && (int(flags)&syscall.O_ACCMODE) == syscall.O_WRONLY { - fd, err = rn.openWriteOnlyFile(dirfd, cName, newFlags) - } - } - // Could not handle the error? Bail out - if err != nil { - errno = fs.ToErrno(err) - return - } - fh, _, errno = NewFile(fd, cName, rn) - return fh, fuseFlags, errno -} - -// Create - FUSE call. Creates a new file. -// -// Symlink-safe through the use of Openat(). -func (n *Node) Create(ctx context.Context, name string, flags uint32, mode uint32, out *fuse.EntryOut) (inode *fs.Inode, fh fs.FileHandle, fuseFlags uint32, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall(name) - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - var err error - fd := -1 - // Make sure context is nil if we don't want to preserve the owner - rn := n.rootNode() - if !rn.args.PreserveOwner { - ctx = nil - } - newFlags := rn.mangleOpenFlags(flags) - // Handle long file name - ctx2 := toFuseCtx(ctx) - if !rn.args.PlaintextNames && nametransform.IsLongContent(cName) { - // Create ".name" - err = rn.nameTransform.WriteLongNameAt(dirfd, cName, name) - if err != nil { - return nil, nil, 0, fs.ToErrno(err) - } - // Create content - fd, err = syscallcompat.OpenatUser(dirfd, cName, newFlags|syscall.O_CREAT|syscall.O_EXCL, mode, ctx2) - if err != nil { - nametransform.DeleteLongNameAt(dirfd, cName) - } - } else { - // Create content, normal (short) file name - fd, err = syscallcompat.OpenatUser(dirfd, cName, newFlags|syscall.O_CREAT|syscall.O_EXCL, mode, ctx2) - } - if err != nil { - // xfstests generic/488 triggers this - if err == syscall.EMFILE { - var lim syscall.Rlimit - syscall.Getrlimit(syscall.RLIMIT_NOFILE, &lim) - tlog.Warn.Printf("Create %q: too many open files. Current \"ulimit -n\": %d", cName, lim.Cur) - } - return nil, nil, 0, fs.ToErrno(err) - } - - fh, st, errno := NewFile(fd, cName, rn) - if errno != 0 { - return - } - inode = n.newChild(ctx, st, out) - return inode, fh, fuseFlags, errno -} diff --git a/internal/fusefrontend/node_xattr.go b/internal/fusefrontend/node_xattr.go deleted file mode 100644 index ceb10f1..0000000 --- a/internal/fusefrontend/node_xattr.go +++ /dev/null @@ -1,170 +0,0 @@ -// Package fusefrontend interfaces directly with the go-fuse library. -package fusefrontend - -import ( - "bytes" - "context" - "strings" - "syscall" - - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// -1 as uint32 -const minus1 = ^uint32(0) - -// xattr names are encrypted like file names, but with a fixed IV. -// Padded with "_xx" for length 16. -var xattrNameIV = []byte("xattr_name_iv_xx") - -// We store encrypted xattrs under this prefix plus the base64-encoded -// encrypted original name. -var xattrStorePrefix = "user.gocryptfs." - -// We get one read of this xattr for each write - -// see https://github.com/rfjakob/gocryptfs/issues/515 for details. -var xattrCapability = "security.capability" - -// isAcl returns true if the attribute name is for storing ACLs -// -// ACLs are passed through without encryption -func isAcl(attr string) bool { - return attr == "system.posix_acl_access" || attr == "system.posix_acl_default" -} - -// GetXAttr - FUSE call. Reads the value of extended attribute "attr". -// -// This function is symlink-safe through Fgetxattr. -func (n *Node) Getxattr(ctx context.Context, attr string, dest []byte) (uint32, syscall.Errno) { - rn := n.rootNode() - // If we are not mounted with -suid, reading the capability xattr does not - // make a lot of sense, so reject the request and gain a massive speedup. - // See https://github.com/rfjakob/gocryptfs/issues/515 . - if !rn.args.Suid && attr == xattrCapability { - // Returning EOPNOTSUPP is what we did till - // ca9e912a28b901387e1dbb85f6c531119f2d5ef2 "fusefrontend: drop xattr user namespace restriction" - // and it did not cause trouble. Seems cleaner than saying ENODATA. - return 0, syscall.EOPNOTSUPP - } - var data []byte - // ACLs are passed through without encryption - if isAcl(attr) { - var errno syscall.Errno - data, errno = n.getXAttr(attr) - if errno != 0 { - return minus1, errno - } - } else { - // encrypted user xattr - cAttr, err := rn.encryptXattrName(attr) - if err != nil { - return minus1, syscall.EIO - } - cData, errno := n.getXAttr(cAttr) - if errno != 0 { - return 0, errno - } - data, err = rn.decryptXattrValue(cData) - if err != nil { - tlog.Warn.Printf("GetXAttr: %v", err) - return minus1, syscall.EIO - } - } - // Caller passes size zero to find out how large their buffer should be - if len(dest) == 0 { - return uint32(len(data)), 0 - } - if len(dest) < len(data) { - return minus1, syscall.ERANGE - } - l := copy(dest, data) - return uint32(l), 0 -} - -// SetXAttr - FUSE call. Set extended attribute. -// -// This function is symlink-safe through Fsetxattr. -func (n *Node) Setxattr(ctx context.Context, attr string, data []byte, flags uint32) syscall.Errno { - rn := n.rootNode() - flags = uint32(filterXattrSetFlags(int(flags))) - - // ACLs are passed through without encryption - if isAcl(attr) { - // result of setting an acl depends on the user doing it - var context *fuse.Context - if rn.args.PreserveOwner { - context = toFuseCtx(ctx) - } - return n.setXAttr(context, attr, data, flags) - } - - cAttr, err := rn.encryptXattrName(attr) - if err != nil { - return syscall.EINVAL - } - cData := rn.encryptXattrValue(data) - return n.setXAttr(nil, cAttr, cData, flags) -} - -// RemoveXAttr - FUSE call. -// -// This function is symlink-safe through Fremovexattr. -func (n *Node) Removexattr(ctx context.Context, attr string) syscall.Errno { - rn := n.rootNode() - - // ACLs are passed through without encryption - if isAcl(attr) { - return n.removeXAttr(attr) - } - - cAttr, err := rn.encryptXattrName(attr) - if err != nil { - return syscall.EINVAL - } - return n.removeXAttr(cAttr) -} - -// ListXAttr - FUSE call. Lists extended attributes on the file at "relPath". -// -// This function is symlink-safe through Flistxattr. -func (n *Node) Listxattr(ctx context.Context, dest []byte) (uint32, syscall.Errno) { - cNames, errno := n.listXAttr() - if errno != 0 { - return 0, errno - } - rn := n.rootNode() - var buf bytes.Buffer - for _, curName := range cNames { - // ACLs are passed through without encryption - if isAcl(curName) { - buf.WriteString(curName + "\000") - continue - } - if !strings.HasPrefix(curName, xattrStorePrefix) { - continue - } - name, err := rn.decryptXattrName(curName) - if err != nil { - tlog.Warn.Printf("ListXAttr: invalid xattr name %q: %v", curName, err) - rn.reportMitigatedCorruption(curName) - continue - } - // We *used to* encrypt ACLs, which caused a lot of problems. - if isAcl(name) { - tlog.Warn.Printf("ListXAttr: ignoring deprecated encrypted ACL %q = %q", curName, name) - rn.reportMitigatedCorruption(curName) - continue - } - buf.WriteString(name + "\000") - } - // Caller passes size zero to find out how large their buffer should be - if len(dest) == 0 { - return uint32(buf.Len()), 0 - } - if buf.Len() > len(dest) { - return minus1, syscall.ERANGE - } - return uint32(copy(dest, buf.Bytes())), 0 -} diff --git a/internal/fusefrontend/node_xattr_darwin.go b/internal/fusefrontend/node_xattr_darwin.go deleted file mode 100644 index 0f61a5d..0000000 --- a/internal/fusefrontend/node_xattr_darwin.go +++ /dev/null @@ -1,107 +0,0 @@ -package fusefrontend - -import ( - "syscall" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/syscallcompat" -) - -// On Darwin we have to unset XATTR_NOSECURITY 0x0008 -func filterXattrSetFlags(flags int) int { - // See https://opensource.apple.com/source/xnu/xnu-1504.15.3/bsd/sys/xattr.h.auto.html - const XATTR_NOSECURITY = 0x0008 - - return flags &^ XATTR_NOSECURITY -} - -func (n *Node) getXAttr(cAttr string) (out []byte, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // O_NONBLOCK to not block on FIFOs. - fd, err := syscallcompat.Openat(dirfd, cName, syscall.O_RDONLY|syscall.O_NONBLOCK, 0) - if err != nil { - return nil, fs.ToErrno(err) - } - defer syscall.Close(fd) - - cData, err := syscallcompat.Fgetxattr(fd, cAttr) - if err != nil { - return nil, fs.ToErrno(err) - } - - return cData, 0 -} - -func (n *Node) setXAttr(context *fuse.Context, cAttr string, cData []byte, flags uint32) (errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // O_NONBLOCK to not block on FIFOs. - fd, err := syscallcompat.Openat(dirfd, cName, syscall.O_WRONLY|syscall.O_NONBLOCK, 0) - // Directories cannot be opened read-write. Retry. - if err == syscall.EISDIR { - fd, err = syscallcompat.Openat(dirfd, cName, syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NONBLOCK, 0) - } - if err != nil { - fs.ToErrno(err) - } - defer syscall.Close(fd) - - err = unix.Fsetxattr(fd, cAttr, cData, int(flags)) - return fs.ToErrno(err) -} - -func (n *Node) removeXAttr(cAttr string) (errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // O_NONBLOCK to not block on FIFOs. - fd, err := syscallcompat.Openat(dirfd, cName, syscall.O_WRONLY|syscall.O_NONBLOCK, 0) - // Directories cannot be opened read-write. Retry. - if err == syscall.EISDIR { - fd, err = syscallcompat.Openat(dirfd, cName, syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NONBLOCK, 0) - } - if err != nil { - return fs.ToErrno(err) - } - defer syscall.Close(fd) - - err = unix.Fremovexattr(fd, cAttr) - return fs.ToErrno(err) -} - -func (n *Node) listXAttr() (out []string, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - // O_NONBLOCK to not block on FIFOs. - fd, err := syscallcompat.Openat(dirfd, cName, syscall.O_RDONLY|syscall.O_NONBLOCK, 0) - if err != nil { - return nil, fs.ToErrno(err) - } - defer syscall.Close(fd) - - cNames, err := syscallcompat.Flistxattr(fd) - if err != nil { - return nil, fs.ToErrno(err) - } - return cNames, 0 -} diff --git a/internal/fusefrontend/node_xattr_linux.go b/internal/fusefrontend/node_xattr_linux.go deleted file mode 100644 index 9698282..0000000 --- a/internal/fusefrontend/node_xattr_linux.go +++ /dev/null @@ -1,70 +0,0 @@ -package fusefrontend - -import ( - "fmt" - "syscall" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/syscallcompat" -) - -func filterXattrSetFlags(flags int) int { - return flags -} - -func (n *Node) getXAttr(cAttr string) (out []byte, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - procPath := fmt.Sprintf("/proc/self/fd/%d/%s", dirfd, cName) - cData, err := syscallcompat.Lgetxattr(procPath, cAttr) - if err != nil { - return nil, fs.ToErrno(err) - } - return cData, 0 -} - -func (n *Node) setXAttr(context *fuse.Context, cAttr string, cData []byte, flags uint32) (errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - procPath := fmt.Sprintf("/proc/self/fd/%d/%s", dirfd, cName) - - return fs.ToErrno(syscallcompat.LsetxattrUser(procPath, cAttr, cData, int(flags), context)) -} - -func (n *Node) removeXAttr(cAttr string) (errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - procPath := fmt.Sprintf("/proc/self/fd/%d/%s", dirfd, cName) - return fs.ToErrno(unix.Lremovexattr(procPath, cAttr)) -} - -func (n *Node) listXAttr() (out []string, errno syscall.Errno) { - dirfd, cName, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(dirfd) - - procPath := fmt.Sprintf("/proc/self/fd/%d/%s", dirfd, cName) - cNames, err := syscallcompat.Llistxattr(procPath) - if err != nil { - return nil, fs.ToErrno(err) - } - return cNames, 0 -} diff --git a/internal/fusefrontend/openbackingdir_test.go b/internal/fusefrontend/openbackingdir_test.go deleted file mode 100644 index ba4014f..0000000 --- a/internal/fusefrontend/openbackingdir_test.go +++ /dev/null @@ -1,170 +0,0 @@ -package fusefrontend - -import ( - "strings" - "syscall" - "testing" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func TestOpenBackingDir(t *testing.T) { - cipherdir := test_helpers.InitFS(t) - t.Logf("cipherdir = %q", cipherdir) - args := Args{ - Cipherdir: cipherdir, - } - rn := newTestFS(args) - out := &fuse.EntryOut{} - - child, errno := rn.Mkdir(nil, "dir1", 0700, out) - if errno != 0 { - t.Fatal(errno) - } - rn.AddChild("dir1", child, false) - dir1 := toNode(child.Operations()) - _, errno = dir1.Mkdir(nil, "dir2", 0700, out) - if errno != 0 { - t.Fatal(errno) - } - - dirfd, cName, err := rn.openBackingDir("") - if err != nil { - t.Fatal(err) - } - if cName != "." { - t.Fatal("cName should be .") - } - syscall.Close(dirfd) - - // Again, but populate the cache for "" by looking up a non-existing file - rn.Lookup(nil, "xyz1234", &fuse.EntryOut{}) - dirfd, cName, err = rn.openBackingDir("") - if err != nil { - t.Fatal(err) - } - if cName != "." { - t.Fatal("cName should be .") - } - - err = syscallcompat.Faccessat(dirfd, cName, unix.R_OK) - if err != nil { - t.Error(err) - } - err = syscallcompat.Faccessat(dirfd, ".", unix.R_OK) - if err != nil { - t.Error(err) - } - syscall.Close(dirfd) - - dirfd, cName, err = rn.openBackingDir("dir1") - if err != nil { - t.Fatal(err) - } - if cName == "" { - t.Fatal("cName should not be empty") - } - err = syscallcompat.Faccessat(dirfd, cName, unix.R_OK) - if err != nil { - t.Error(err) - } - syscall.Close(dirfd) - - dirfd, cName, err = rn.openBackingDir("dir1/dir2") - if err != nil { - t.Fatal(err) - } - if cName == "" { - t.Fatal("cName should not be empty") - } - err = syscallcompat.Faccessat(dirfd, cName, unix.R_OK) - if err != nil { - t.Errorf("Faccessat(%d, %q): %v", dirfd, cName, err) - } - syscall.Close(dirfd) - - n255 := strings.Repeat("n", 255) - dir1.Mkdir(nil, n255, 0700, out) - dirfd, cName, err = rn.openBackingDir("dir1/" + n255) - if err != nil { - t.Fatal(err) - } - if cName == "" { - t.Fatal("cName should not be empty") - } - if len(cName) >= 255 { - t.Fatalf("cName is too long: %q", cName) - } - err = syscallcompat.Faccessat(dirfd, cName, unix.R_OK) - if err != nil { - t.Errorf("Faccessat(%d, %q): %v", dirfd, cName, err) - } - syscall.Close(dirfd) -} - -func TestOpenBackingDirPlaintextNames(t *testing.T) { - cipherdir := test_helpers.InitFS(t, "-plaintextnames") - args := Args{ - Cipherdir: cipherdir, - PlaintextNames: true, - } - fs := newTestFS(args) - out := &fuse.EntryOut{} - - _, errno := fs.Mkdir(nil, "dir1", 0700, out) - if errno != 0 { - t.Fatal(errno) - } - _, errno = fs.Mkdir(nil, "dir1/dir2", 0700, out) - if errno != 0 { - t.Fatal(errno) - } - - dirfd, cName, err := fs.openBackingDir("") - if err != nil { - t.Fatal(err) - } - if cName != "." { - t.Fatal("cName should be .") - } - err = syscallcompat.Faccessat(dirfd, cName, unix.R_OK) - if err != nil { - t.Error(err) - } - err = syscallcompat.Faccessat(dirfd, ".", unix.R_OK) - if err != nil { - t.Error(err) - } - syscall.Close(dirfd) - - dirfd, cName, err = fs.openBackingDir("dir1") - if err != nil { - t.Fatal(err) - } - if cName != "dir1" { - t.Fatalf("wrong cName: %q", cName) - } - err = syscallcompat.Faccessat(dirfd, cName, unix.R_OK) - if err != nil { - t.Error(err) - } - syscall.Close(dirfd) - - dirfd, cName, err = fs.openBackingDir("dir1/dir2") - if err != nil { - t.Fatal(err) - } - if cName != "dir2" { - t.Fatalf("wrong cName: %q", cName) - } - err = syscallcompat.Faccessat(dirfd, cName, unix.R_OK) - if err != nil { - t.Error(err) - } - syscall.Close(dirfd) -} diff --git a/internal/fusefrontend/root_node.go b/internal/fusefrontend/root_node.go deleted file mode 100644 index a830cc4..0000000 --- a/internal/fusefrontend/root_node.go +++ /dev/null @@ -1,335 +0,0 @@ -package fusefrontend - -import ( - "os" - "path/filepath" - "strings" - "sync" - "syscall" - "time" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/inomap" - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/serialize_reads" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// RootNode is the root of the filesystem tree of Nodes. -type RootNode struct { - Node - // args stores configuration arguments - args Args - // dirIVLock: Lock()ed if any "gocryptfs.diriv" file is modified - // Readers must RLock() it to prevent them from seeing intermediate - // states - dirIVLock sync.RWMutex - // Filename encryption helper - nameTransform nametransform.NameTransformer - // Content encryption helper - contentEnc *contentenc.ContentEnc - // This lock is used by openWriteOnlyFile() to block concurrent opens while - // it relaxes the permissions on a file. - openWriteOnlyLock sync.RWMutex - // MitigatedCorruptions is used to report data corruption that is internally - // mitigated by ignoring the corrupt item. For example, when OpenDir() finds - // a corrupt filename, we still return the other valid filenames. - // The corruption is logged to syslog to inform the user, and in addition, - // the corrupt filename is logged to this channel via - // reportMitigatedCorruption(). - // "gocryptfs -fsck" reads from the channel to also catch these transparently- - // mitigated corruptions. - MitigatedCorruptions chan string - // IsIdle flag is set to zero each time fs.isFiltered() is called - // (uint32 so that it can be reset with CompareAndSwapUint32). - // When -idle was used when mounting, idleMonitor() sets it to 1 - // periodically. - IsIdle uint32 - // dirCache caches directory fds - dirCache dirCache - // inoMap translates inode numbers from different devices to unique inode - // numbers. - inoMap inomap.TranslateStater -} - -func NewRootNode(args Args, c *contentenc.ContentEnc, n nametransform.NameTransformer) *RootNode { - if args.SerializeReads { - serialize_reads.InitSerializer() - } - if len(args.Exclude) > 0 { - tlog.Warn.Printf("Forward mode does not support -exclude") - } - rn := &RootNode{ - args: args, - nameTransform: n, - contentEnc: c, - inoMap: inomap.New(), - } - // In `-sharedstorage` mode we always set the inode number to zero. - // This makes go-fuse generate a new inode number for each lookup. - if args.SharedStorage { - rn.inoMap = &inomap.TranslateStatZero{} - } - return rn -} - -// main.doMount() calls this after unmount -func (rn *RootNode) AfterUnmount() { - // print stats before we exit - rn.dirCache.stats() -} - -// mangleOpenFlags is used by Create() and Open() to convert the open flags the user -// wants to the flags we internally use to open the backing file. -// The returned flags always contain O_NOFOLLOW. -func (rn *RootNode) mangleOpenFlags(flags uint32) (newFlags int) { - newFlags = int(flags) - // Convert WRONLY to RDWR. We always need read access to do read-modify-write cycles. - if (newFlags & syscall.O_ACCMODE) == syscall.O_WRONLY { - newFlags = newFlags ^ os.O_WRONLY | os.O_RDWR - } - // We also cannot open the file in append mode, we need to seek back for RMW - newFlags = newFlags &^ os.O_APPEND - // O_DIRECT accesses must be aligned in both offset and length. Due to our - // crypto header, alignment will be off, even if userspace makes aligned - // accesses. Running xfstests generic/013 on ext4 used to trigger lots of - // EINVAL errors due to missing alignment. Just fall back to buffered IO. - newFlags = newFlags &^ syscallcompat.O_DIRECT - // Create and Open are two separate FUSE operations, so O_CREAT should not - // be part of the open flags. - newFlags = newFlags &^ syscall.O_CREAT - // We always want O_NOFOLLOW to be safe against symlink races - newFlags |= syscall.O_NOFOLLOW - return newFlags -} - -// reportMitigatedCorruption is used to report a corruption that was transparently -// mitigated and did not return an error to the user. Pass the name of the corrupt -// item (filename for OpenDir(), xattr name for ListXAttr() etc). -// See the MitigatedCorruptions channel for more info. -func (rn *RootNode) reportMitigatedCorruption(item string) { - if rn.MitigatedCorruptions == nil { - return - } - select { - case rn.MitigatedCorruptions <- item: - case <-time.After(1 * time.Second): - tlog.Warn.Printf("BUG: reportCorruptItem: timeout") - //debug.PrintStack() - return - } -} - -// isFiltered - check if plaintext "path" should be forbidden -// -// Prevents name clashes with internal files when file names are not encrypted -func (rn *RootNode) isFiltered(path string) bool { - if !rn.args.PlaintextNames { - return false - } - // gocryptfs.conf in the root directory is forbidden - if path == configfile.ConfDefaultName { - tlog.Info.Printf("The name /%s is reserved when -plaintextnames is used\n", - configfile.ConfDefaultName) - return true - } - // Note: gocryptfs.diriv is NOT forbidden because diriv and plaintextnames - // are exclusive - return false -} - -// decryptSymlinkTarget: "cData64" is base64-decoded and decrypted -// like file contents (GCM). -// The empty string decrypts to the empty string. -// -// This function does not do any I/O and is hence symlink-safe. -func (rn *RootNode) decryptSymlinkTarget(cData64 string) (string, error) { - if cData64 == "" { - return "", nil - } - cData, err := rn.nameTransform.B64DecodeString(cData64) - if err != nil { - return "", err - } - data, err := rn.contentEnc.DecryptBlock([]byte(cData), 0, nil) - if err != nil { - return "", err - } - return string(data), nil -} - -// Due to RMW, we always need read permissions on the backing file. This is a -// problem if the file permissions do not allow reading (i.e. 0200 permissions). -// This function works around that problem by chmod'ing the file, obtaining a fd, -// and chmod'ing it back. -func (rn *RootNode) openWriteOnlyFile(dirfd int, cName string, newFlags int) (rwFd int, err error) { - woFd, err := syscallcompat.Openat(dirfd, cName, syscall.O_WRONLY|syscall.O_NOFOLLOW, 0) - if err != nil { - return - } - defer syscall.Close(woFd) - var st syscall.Stat_t - err = syscall.Fstat(woFd, &st) - if err != nil { - return - } - // The cast to uint32 fixes a build failure on Darwin, where st.Mode is uint16. - perms := uint32(st.Mode) - // Verify that we don't have read permissions - if perms&0400 != 0 { - tlog.Warn.Printf("openWriteOnlyFile: unexpected permissions %#o, returning EPERM", perms) - err = syscall.EPERM - return - } - // Upgrade the lock to block other Open()s and downgrade again on return - rn.openWriteOnlyLock.RUnlock() - rn.openWriteOnlyLock.Lock() - defer func() { - rn.openWriteOnlyLock.Unlock() - rn.openWriteOnlyLock.RLock() - }() - // Relax permissions and revert on return - err = syscall.Fchmod(woFd, perms|0400) - if err != nil { - tlog.Warn.Printf("openWriteOnlyFile: changing permissions failed: %v", err) - return - } - defer func() { - err2 := syscall.Fchmod(woFd, perms) - if err2 != nil { - tlog.Warn.Printf("openWriteOnlyFile: reverting permissions failed: %v", err2) - } - }() - return syscallcompat.Openat(dirfd, cName, newFlags, 0) -} - -// openBackingDir opens the parent ciphertext directory of plaintext path -// "relPath". It returns the dirfd (opened with O_PATH) and the encrypted -// basename. -// -// The caller should then use Openat(dirfd, cName, ...) and friends. -// For convenience, if relPath is "", cName is going to be ".". -// -// openBackingDir is secure against symlink races by using Openat and -// ReadDirIVAt. -// -// Retries on EINTR. -func (rn *RootNode) openBackingDir(relPath string) (dirfd int, cName string, err error) { - dirRelPath := nametransform.Dir(relPath) - // With PlaintextNames, we don't need to read DirIVs. Easy. - if rn.args.PlaintextNames { - dirfd, err = syscallcompat.OpenDirNofollow(rn.args.Cipherdir, dirRelPath) - if err != nil { - return -1, "", err - } - // If relPath is empty, cName is ".". - cName = filepath.Base(relPath) - return dirfd, cName, nil - } - // Open cipherdir (following symlinks) - dirfd, err = syscallcompat.Open(rn.args.Cipherdir, syscall.O_DIRECTORY|syscallcompat.O_PATH, 0) - if err != nil { - return -1, "", err - } - // If relPath is empty, cName is ".". - if relPath == "" { - return dirfd, ".", nil - } - // Walk the directory tree - parts := strings.Split(relPath, "/") - for i, name := range parts { - iv, err := nametransform.ReadDirIVAt(dirfd) - if err != nil { - syscall.Close(dirfd) - return -1, "", err - } - cName, err = rn.nameTransform.EncryptAndHashName(name, iv) - if err != nil { - syscall.Close(dirfd) - return -1, "", err - } - // Last part? We are done. - if i == len(parts)-1 { - break - } - // Not the last part? Descend into next directory. - dirfd2, err := syscallcompat.Openat(dirfd, cName, syscall.O_NOFOLLOW|syscall.O_DIRECTORY|syscallcompat.O_PATH, 0) - syscall.Close(dirfd) - if err != nil { - return -1, "", err - } - dirfd = dirfd2 - } - return dirfd, cName, nil -} - -// encryptSymlinkTarget: "data" is encrypted like file contents (GCM) -// and base64-encoded. -// The empty string encrypts to the empty string. -// -// Symlink-safe because it does not do any I/O. -func (rn *RootNode) encryptSymlinkTarget(data string) (cData64 string) { - if data == "" { - return "" - } - cData := rn.contentEnc.EncryptBlock([]byte(data), 0, nil) - cData64 = rn.nameTransform.B64EncodeToString(cData) - return cData64 -} - -// encryptXattrValue encrypts the xattr value "data". -// The data is encrypted like a file content block, but without binding it to -// a file location (block number and file id are set to zero). -// Special case: an empty value is encrypted to an empty value. -func (rn *RootNode) encryptXattrValue(data []byte) (cData []byte) { - if len(data) == 0 { - return []byte{} - } - return rn.contentEnc.EncryptBlock(data, 0, nil) -} - -// decryptXattrValue decrypts the xattr value "cData". -func (rn *RootNode) decryptXattrValue(cData []byte) (data []byte, err error) { - if len(cData) == 0 { - return []byte{}, nil - } - data, err1 := rn.contentEnc.DecryptBlock([]byte(cData), 0, nil) - if err1 == nil { - return data, nil - } - // This backward compatibility is needed to support old - // file systems having xattr values base64-encoded. - cData, err2 := rn.nameTransform.B64DecodeString(string(cData)) - if err2 != nil { - // Looks like the value was not base64-encoded, but just corrupt. - // Return the original decryption error: err1 - return nil, err1 - } - return rn.contentEnc.DecryptBlock([]byte(cData), 0, nil) -} - -// encryptXattrName transforms "user.foo" to "user.gocryptfs.a5sAd4XAa47f5as6dAf" -func (rn *RootNode) encryptXattrName(attr string) (string, error) { - // xattr names are encrypted like file names, but with a fixed IV. - cAttr, err := rn.nameTransform.EncryptName(attr, xattrNameIV) - if err != nil { - return "", err - } - return xattrStorePrefix + cAttr, nil -} - -func (rn *RootNode) decryptXattrName(cAttr string) (attr string, err error) { - // Reject anything that does not start with "user.gocryptfs." - if !strings.HasPrefix(cAttr, xattrStorePrefix) { - return "", syscall.EINVAL - } - // Strip "user.gocryptfs." prefix - cAttr = cAttr[len(xattrStorePrefix):] - attr, err = rn.nameTransform.DecryptName(cAttr, xattrNameIV) - if err != nil { - return "", err - } - return attr, nil -} diff --git a/internal/fusefrontend/xattr_unit_test.go b/internal/fusefrontend/xattr_unit_test.go deleted file mode 100644 index a0cf4c8..0000000 --- a/internal/fusefrontend/xattr_unit_test.go +++ /dev/null @@ -1,45 +0,0 @@ -package fusefrontend - -// This file is named "xattr_unit_test.go" because there is also a -// "xattr_integration_test.go" in the test/xattr package. - -import ( - "testing" - "time" - - "github.com/hanwen/go-fuse/v2/fs" - - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/nametransform" -) - -func newTestFS(args Args) *RootNode { - // Init crypto backend - key := make([]byte, cryptocore.KeyLen) - cCore := cryptocore.New(key, cryptocore.BackendGoGCM, contentenc.DefaultIVBits, true, false) - cEnc := contentenc.New(cCore, contentenc.DefaultBS, false) - n := nametransform.New(cCore.EMECipher, true, true) - rn := NewRootNode(args, cEnc, n) - oneSec := time.Second - options := &fs.Options{ - EntryTimeout: &oneSec, - AttrTimeout: &oneSec, - } - fs.NewNodeFS(rn, options) - return rn -} - -func TestEncryptDecryptXattrName(t *testing.T) { - fs := newTestFS(Args{}) - attr1 := "user.foo123456789" - cAttr, err := fs.encryptXattrName(attr1) - if err != nil { - t.Fatal(err) - } - t.Logf("cAttr=%v", cAttr) - attr2, err := fs.decryptXattrName(cAttr) - if attr1 != attr2 || err != nil { - t.Fatalf("Decrypt mismatch: %v != %v", attr1, attr2) - } -} diff --git a/internal/fusefrontend_reverse/ctlsock_interface.go b/internal/fusefrontend_reverse/ctlsock_interface.go deleted file mode 100644 index 2157044..0000000 --- a/internal/fusefrontend_reverse/ctlsock_interface.go +++ /dev/null @@ -1,42 +0,0 @@ -package fusefrontend_reverse - -import ( - "path/filepath" - "strings" - - "golang.org/x/sys/unix" - - "github.com/rfjakob/gocryptfs/internal/ctlsocksrv" - "github.com/rfjakob/gocryptfs/internal/pathiv" -) - -// Verify that the interface is implemented. -var _ ctlsocksrv.Interface = &RootNode{} - -// EncryptPath implements ctlsock.Backend. -// This is used for the control socket and for the "-exclude" logic. -func (rn *RootNode) EncryptPath(plainPath string) (string, error) { - if rn.args.PlaintextNames || plainPath == "" { - return plainPath, nil - } - cipherPath := "" - parts := strings.Split(plainPath, "/") - for _, part := range parts { - dirIV := pathiv.Derive(cipherPath, pathiv.PurposeDirIV) - encryptedPart, err := rn.nameTransform.EncryptName(part, dirIV) - if err != nil { - return "", err - } - if rn.args.LongNames && len(encryptedPart) > unix.NAME_MAX { - encryptedPart = rn.nameTransform.HashLongName(encryptedPart) - } - cipherPath = filepath.Join(cipherPath, encryptedPart) - } - return cipherPath, nil -} - -// DecryptPath implements ctlsock.Backend -func (rn *RootNode) DecryptPath(cipherPath string) (string, error) { - p, err := rn.decryptPath(cipherPath) - return p, err -} diff --git a/internal/fusefrontend_reverse/excluder.go b/internal/fusefrontend_reverse/excluder.go deleted file mode 100644 index 8a13fa7..0000000 --- a/internal/fusefrontend_reverse/excluder.go +++ /dev/null @@ -1,63 +0,0 @@ -package fusefrontend_reverse - -import ( - "io/ioutil" - "log" - "os" - "strings" - - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/fusefrontend" - "github.com/rfjakob/gocryptfs/internal/tlog" - - "github.com/sabhiram/go-gitignore" -) - -// prepareExcluder creates an object to check if paths are excluded -// based on the patterns specified in the command line. -func prepareExcluder(args fusefrontend.Args) *ignore.GitIgnore { - patterns := getExclusionPatterns(args) - if len(patterns) == 0 { - log.Panic(patterns) - } - excluder, err := ignore.CompileIgnoreLines(patterns...) - if err != nil { - tlog.Fatal.Printf("Error compiling exclusion rules: %v", err) - os.Exit(exitcodes.ExcludeError) - } - return excluder -} - -// getExclusionPatters prepares a list of patterns to be excluded. -// Patterns passed in the -exclude command line option are prefixed -// with a leading '/' to preserve backwards compatibility (before -// wildcard matching was implemented, exclusions always were matched -// against the full path). -func getExclusionPatterns(args fusefrontend.Args) []string { - patterns := make([]string, len(args.Exclude)+len(args.ExcludeWildcard)) - // add -exclude - for i, p := range args.Exclude { - patterns[i] = "/" + p - } - // add -exclude-wildcard - copy(patterns[len(args.Exclude):], args.ExcludeWildcard) - // add -exclude-from - for _, file := range args.ExcludeFrom { - lines, err := getLines(file) - if err != nil { - tlog.Fatal.Printf("Error reading exclusion patterns: %q", err) - os.Exit(exitcodes.ExcludeError) - } - patterns = append(patterns, lines...) - } - return patterns -} - -// getLines reads a file and splits it into lines -func getLines(file string) ([]string, error) { - buffer, err := ioutil.ReadFile(file) - if err != nil { - return nil, err - } - return strings.Split(string(buffer), "\n"), nil -} diff --git a/internal/fusefrontend_reverse/excluder_test.go b/internal/fusefrontend_reverse/excluder_test.go deleted file mode 100644 index d6cfef3..0000000 --- a/internal/fusefrontend_reverse/excluder_test.go +++ /dev/null @@ -1,75 +0,0 @@ -package fusefrontend_reverse - -import ( - "io/ioutil" - "os" - "reflect" - "testing" - - "github.com/rfjakob/gocryptfs/internal/fusefrontend" -) - -func TestShouldPrefixExcludeValuesWithSlash(t *testing.T) { - var args fusefrontend.Args - args.Exclude = []string{"file1", "dir1/file2.txt"} - args.ExcludeWildcard = []string{"*~", "build/*.o"} - - expected := []string{"/file1", "/dir1/file2.txt", "*~", "build/*.o"} - - patterns := getExclusionPatterns(args) - if !reflect.DeepEqual(patterns, expected) { - t.Errorf("expected %q, got %q", expected, patterns) - } -} - -func TestShouldReadExcludePatternsFromFiles(t *testing.T) { - tmpfile1, err := ioutil.TempFile("", "excludetest") - if err != nil { - t.Fatal(err) - } - exclude1 := tmpfile1.Name() - defer os.Remove(exclude1) - defer tmpfile1.Close() - - tmpfile2, err := ioutil.TempFile("", "excludetest") - if err != nil { - t.Fatal(err) - } - exclude2 := tmpfile2.Name() - defer os.Remove(exclude2) - defer tmpfile2.Close() - - tmpfile1.WriteString("file1.1\n") - tmpfile1.WriteString("file1.2\n") - tmpfile2.WriteString("file2.1\n") - tmpfile2.WriteString("file2.2\n") - - var args fusefrontend.Args - args.ExcludeWildcard = []string{"cmdline1"} - args.ExcludeFrom = []string{exclude1, exclude2} - - // An empty string is returned for the last empty line - // It's ignored when the patterns are actually compiled - expected := []string{"cmdline1", "file1.1", "file1.2", "", "file2.1", "file2.2", ""} - - patterns := getExclusionPatterns(args) - if !reflect.DeepEqual(patterns, expected) { - t.Errorf("expected %q, got %q", expected, patterns) - } -} - -func TestShouldReturnFalseIfThereAreNoExclusions(t *testing.T) { - var rfs RootNode - if rfs.isExcludedPlain("any/path") { - t.Error("Should not exclude any path if no exclusions were specified") - } -} - -func TestShouldCallIgnoreParserToCheckExclusion(t *testing.T) { - rfs, ignorerMock := createRFSWithMocks() - - rfs.isExcludedPlain("some/path") - if ignorerMock.calledWith != "some/path" { - t.Error("Failed to call IgnoreParser") - } -} diff --git a/internal/fusefrontend_reverse/file.go b/internal/fusefrontend_reverse/file.go deleted file mode 100644 index 294872f..0000000 --- a/internal/fusefrontend_reverse/file.go +++ /dev/null @@ -1,81 +0,0 @@ -package fusefrontend_reverse - -import ( - "bytes" - "context" - "os" - "syscall" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/contentenc" -) - -type File struct { - // Backing FD - fd *os.File - // File header (contains the IV) - header contentenc.FileHeader - // IV for block 0 - block0IV []byte - // Content encryption helper - contentEnc *contentenc.ContentEnc -} - -// Read - FUSE call -func (f *File) Read(ctx context.Context, buf []byte, ioff int64) (resultData fuse.ReadResult, errno syscall.Errno) { - length := uint64(len(buf)) - off := uint64(ioff) - out := bytes.NewBuffer(buf[:0]) - var header []byte - - // Synthesize file header - if off < contentenc.HeaderLen { - header = f.header.Pack() - // Truncate to requested part - end := int(off) + len(buf) - if end > len(header) { - end = len(header) - } - header = header[off:end] - // Write into output buffer and adjust offsets - out.Write(header) - hLen := uint64(len(header)) - off += hLen - length -= hLen - } - - // Read actual file data - if length > 0 { - fileData, err := f.readBackingFile(off, length) - if err != nil { - return nil, fs.ToErrno(err) - } - if len(fileData) == 0 { - // If we could not read any actual data, we also don't want to - // return the file header. An empty file stays empty in encrypted - // form. - return nil, 0 - } - out.Write(fileData) - } - - return fuse.ReadResultData(out.Bytes()), 0 -} - -// Release - FUSE call, close file -func (f *File) Release(context.Context) syscall.Errno { - return fs.ToErrno(f.fd.Close()) -} - -// Lseek - FUSE call. -func (f *File) Lseek(ctx context.Context, off uint64, whence uint32) (uint64, syscall.Errno) { - plainOff := f.contentEnc.CipherSizeToPlainSize(off) - newPlainOff, err := syscall.Seek(int(f.fd.Fd()), int64(plainOff), int(whence)) - if err != nil { - return 0, fs.ToErrno(err) - } - newOff := f.contentEnc.PlainSizeToCipherSize(uint64(newPlainOff)) - return newOff, 0 -} diff --git a/internal/fusefrontend_reverse/file_api_check.go b/internal/fusefrontend_reverse/file_api_check.go deleted file mode 100644 index b7e59d4..0000000 --- a/internal/fusefrontend_reverse/file_api_check.go +++ /dev/null @@ -1,25 +0,0 @@ -package fusefrontend_reverse - -import ( - "github.com/hanwen/go-fuse/v2/fs" -) - -// Check that we have implemented the fs.File* interfaces -var _ = (fs.FileReader)((*File)(nil)) -var _ = (fs.FileReleaser)((*File)(nil)) -var _ = (fs.FileLseeker)((*File)(nil)) - -/* Not needed -var _ = (fs.FileGetattrer)((*File)(nil)) -var _ = (fs.FileGetlker)((*File)(nil)) -var _ = (fs.FileSetlker)((*File)(nil)) -var _ = (fs.FileSetlkwer)((*File)(nil)) -*/ - -/* Will not implement these - reverse mode is read-only! -var _ = (fs.FileSetattrer)((*File)(nil)) -var _ = (fs.FileWriter)((*File)(nil)) -var _ = (fs.FileFsyncer)((*File)(nil)) -var _ = (fs.FileFlusher)((*File)(nil)) -var _ = (fs.FileAllocater)((*File)(nil)) -*/ diff --git a/internal/fusefrontend_reverse/file_helpers.go b/internal/fusefrontend_reverse/file_helpers.go deleted file mode 100644 index f024e69..0000000 --- a/internal/fusefrontend_reverse/file_helpers.go +++ /dev/null @@ -1,62 +0,0 @@ -package fusefrontend_reverse - -import ( - "bytes" - "io" - "sync" - - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/pathiv" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -var inodeTable sync.Map - -// encryptBlocks - encrypt "plaintext" into a number of ciphertext blocks. -// "plaintext" must already be block-aligned. -func (rf *File) encryptBlocks(plaintext []byte, firstBlockNo uint64, fileID []byte, block0IV []byte) []byte { - inBuf := bytes.NewBuffer(plaintext) - var outBuf bytes.Buffer - bs := int(rf.contentEnc.PlainBS()) - for blockNo := firstBlockNo; inBuf.Len() > 0; blockNo++ { - inBlock := inBuf.Next(bs) - iv := pathiv.BlockIV(block0IV, blockNo) - outBlock := rf.contentEnc.EncryptBlockNonce(inBlock, blockNo, fileID, iv) - outBuf.Write(outBlock) - } - return outBuf.Bytes() -} - -// readBackingFile: read from the backing plaintext file, encrypt it, return the -// ciphertext. -// "off" ... ciphertext offset (must be >= HEADER_LEN) -// "length" ... ciphertext length -func (f *File) readBackingFile(off uint64, length uint64) (out []byte, err error) { - blocks := f.contentEnc.ExplodeCipherRange(off, length) - - // Read the backing plaintext in one go - alignedOffset, alignedLength := contentenc.JointPlaintextRange(blocks) - plaintext := make([]byte, int(alignedLength)) - n, err := f.fd.ReadAt(plaintext, int64(alignedOffset)) - if err != nil && err != io.EOF { - tlog.Warn.Printf("readBackingFile: ReadAt: %s", err.Error()) - return nil, err - } - // Truncate buffer down to actually read bytes - plaintext = plaintext[0:n] - - // Encrypt blocks - ciphertext := f.encryptBlocks(plaintext, blocks[0].BlockNo, f.header.ID, f.block0IV) - - // Crop down to the relevant part - lenHave := len(ciphertext) - skip := blocks[0].Skip - endWant := int(skip + length) - if lenHave > endWant { - out = ciphertext[skip:endWant] - } else if lenHave > int(skip) { - out = ciphertext[skip:lenHave] - } // else: out stays empty, file was smaller than the requested offset - - return out, nil -} diff --git a/internal/fusefrontend_reverse/mocks_test.go b/internal/fusefrontend_reverse/mocks_test.go deleted file mode 100644 index 2d14c1d..0000000 --- a/internal/fusefrontend_reverse/mocks_test.go +++ /dev/null @@ -1,32 +0,0 @@ -package fusefrontend_reverse - -import ( - "github.com/rfjakob/gocryptfs/internal/nametransform" -) - -type IgnoreParserMock struct { - toExclude string - calledWith string -} - -func (parser *IgnoreParserMock) MatchesPath(f string) bool { - parser.calledWith = f - return f == parser.toExclude -} - -type NameTransformMock struct { - nametransform.NameTransform -} - -func (n *NameTransformMock) DecryptName(cipherName string, iv []byte) (string, error) { - return "mockdecrypt_" + cipherName, nil -} - -func createRFSWithMocks() (*RootNode, *IgnoreParserMock) { - ignorerMock := &IgnoreParserMock{} - nameTransformMock := &NameTransformMock{} - var rfs RootNode - rfs.excluder = ignorerMock - rfs.nameTransform = nameTransformMock - return &rfs, ignorerMock -} diff --git a/internal/fusefrontend_reverse/node.go b/internal/fusefrontend_reverse/node.go deleted file mode 100644 index 787b99b..0000000 --- a/internal/fusefrontend_reverse/node.go +++ /dev/null @@ -1,188 +0,0 @@ -package fusefrontend_reverse - -import ( - "context" - "fmt" - "os" - "path/filepath" - "syscall" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/pathiv" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// Node is a file or directory in the filesystem tree -// in a `gocryptfs -reverse` mount. -type Node struct { - fs.Inode -} - -// Lookup - FUSE call for discovering a file. -func (n *Node) Lookup(ctx context.Context, cName string, out *fuse.EntryOut) (ch *fs.Inode, errno syscall.Errno) { - var d *dirfdPlus - t := n.lookupFileType(cName) - if t == typeDiriv { - // gocryptfs.diriv - return n.lookupDiriv(ctx, out) - } else if t == typeName { - // gocryptfs.longname.*.name - return n.lookupLongnameName(ctx, cName, out) - } else if t == typeConfig { - // gocryptfs.conf - return n.lookupConf(ctx, out) - } else if t == typeReal { - // real file - d, errno = n.prepareAtSyscall(cName) - //fmt.Printf("Lookup: prepareAtSyscall -> d=%#v, errno=%d\n", d, errno) - if errno != 0 { - return - } - defer syscall.Close(d.dirfd) - } - // Get device number and inode number into `st` - st, err := syscallcompat.Fstatat2(d.dirfd, d.pName, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - return nil, fs.ToErrno(err) - } - // Create new inode and fill `out` - ch = n.newChild(ctx, st, out) - // Translate ciphertext size in `out.Attr.Size` to plaintext size - if t == typeReal { - n.translateSize(d.dirfd, cName, d.pName, &out.Attr) - } - return ch, 0 -} - -// GetAttr - FUSE call for stat()ing a file. -// -// GetAttr is symlink-safe through use of openBackingDir() and Fstatat(). -func (n *Node) Getattr(ctx context.Context, f fs.FileHandle, out *fuse.AttrOut) (errno syscall.Errno) { - d, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(d.dirfd) - - st, err := syscallcompat.Fstatat2(d.dirfd, d.pName, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - return fs.ToErrno(err) - } - - // Fix inode number - rn := n.rootNode() - rn.inoMap.TranslateStat(st) - out.Attr.FromStat(st) - - // Translate ciphertext size in `out.Attr.Size` to plaintext size - cName := filepath.Base(n.Path()) - n.translateSize(d.dirfd, cName, d.pName, &out.Attr) - - if rn.args.ForceOwner != nil { - out.Owner = *rn.args.ForceOwner - } - return 0 -} - -// Readlink - FUSE call. -// -// Symlink-safe through openBackingDir() + Readlinkat(). -func (n *Node) Readlink(ctx context.Context) (out []byte, errno syscall.Errno) { - d, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(d.dirfd) - - return n.readlink(d.dirfd, d.cName, d.pName) -} - -// Open - FUSE call. Open already-existing file. -// -// Symlink-safe through Openat(). -func (n *Node) Open(ctx context.Context, flags uint32) (fh fs.FileHandle, fuseFlags uint32, errno syscall.Errno) { - d, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(d.dirfd) - - fd, err := syscallcompat.Openat(d.dirfd, d.pName, syscall.O_RDONLY|syscall.O_NOFOLLOW, 0) - if err != nil { - errno = fs.ToErrno(err) - return - } - - // Reject access if the file descriptor does not refer to a regular file. - var st syscall.Stat_t - err = syscall.Fstat(fd, &st) - if err != nil { - tlog.Warn.Printf("Open: Fstat error: %v", err) - syscall.Close(fd) - errno = fs.ToErrno(err) - return - } - var a fuse.Attr - a.FromStat(&st) - if !a.IsRegular() { - tlog.Warn.Printf("ino%d: newFile: not a regular file", st.Ino) - syscall.Close(fd) - errno = syscall.EACCES - return - } - // See if we have that inode number already in the table - // (even if Nlink has dropped to 1) - var derivedIVs pathiv.FileIVs - v, found := inodeTable.Load(st.Ino) - if found { - tlog.Debug.Printf("ino%d: newFile: found in the inode table", st.Ino) - derivedIVs = v.(pathiv.FileIVs) - } else { - p := n.Path() - derivedIVs = pathiv.DeriveFile(p) - // Nlink > 1 means there is more than one path to this file. - // Store the derived values so we always return the same data, - // regardless of the path that is used to access the file. - // This means that the first path wins. - if st.Nlink > 1 { - v, found = inodeTable.LoadOrStore(st.Ino, derivedIVs) - if found { - // Another thread has stored a different value before we could. - derivedIVs = v.(pathiv.FileIVs) - } else { - tlog.Debug.Printf("ino%d: newFile: Nlink=%d, stored in the inode table", st.Ino, st.Nlink) - } - } - } - header := contentenc.FileHeader{ - Version: contentenc.CurrentVersion, - ID: derivedIVs.ID, - } - fh = &File{ - fd: os.NewFile(uintptr(fd), fmt.Sprintf("fd%d", fd)), - header: header, - block0IV: derivedIVs.Block0IV, - contentEnc: n.rootNode().contentEnc, - } - return -} - -// StatFs - FUSE call. Returns information about the filesystem. -// -// Symlink-safe because the path is ignored. -func (n *Node) Statfs(ctx context.Context, out *fuse.StatfsOut) syscall.Errno { - p := n.rootNode().args.Cipherdir - var st syscall.Statfs_t - err := syscall.Statfs(p, &st) - if err != nil { - return fs.ToErrno(err) - } - out.FromStatfsT(&st) - return 0 -} diff --git a/internal/fusefrontend_reverse/node_api_check.go b/internal/fusefrontend_reverse/node_api_check.go deleted file mode 100644 index f8ec9ce..0000000 --- a/internal/fusefrontend_reverse/node_api_check.go +++ /dev/null @@ -1,40 +0,0 @@ -package fusefrontend_reverse - -import ( - "github.com/hanwen/go-fuse/v2/fs" -) - -// Check that we have implemented the fs.Node* interfaces -var _ = (fs.NodeGetattrer)((*Node)(nil)) -var _ = (fs.NodeLookuper)((*Node)(nil)) -var _ = (fs.NodeReaddirer)((*Node)(nil)) -var _ = (fs.NodeReadlinker)((*Node)(nil)) -var _ = (fs.NodeOpener)((*Node)(nil)) -var _ = (fs.NodeStatfser)((*Node)(nil)) - -/* -TODO but low prio. reverse mode in gocryptfs v1 did not have xattr support -either. - -var _ = (fs.NodeGetxattrer)((*Node)(nil)) -var _ = (fs.NodeListxattrer)((*Node)(nil)) -*/ - -/* Not needed -var _ = (fs.NodeOpendirer)((*Node)(nil)) -*/ - -/* Will not implement these - reverse mode is read-only! -var _ = (fs.NodeMknoder)((*Node)(nil)) -var _ = (fs.NodeCreater)((*Node)(nil)) -var _ = (fs.NodeMkdirer)((*Node)(nil)) -var _ = (fs.NodeRmdirer)((*Node)(nil)) -var _ = (fs.NodeUnlinker)((*Node)(nil)) -var _ = (fs.NodeSetattrer)((*Node)(nil)) -var _ = (fs.NodeLinker)((*Node)(nil)) -var _ = (fs.NodeSymlinker)((*Node)(nil)) -var _ = (fs.NodeRenamer)((*Node)(nil)) -var _ = (fs.NodeSetxattrer)((*Node)(nil)) -var _ = (fs.NodeRemovexattrer)((*Node)(nil)) -var _ = (fs.NodeCopyFileRanger)((*Node)(nil)) -*/ diff --git a/internal/fusefrontend_reverse/node_dir_ops.go b/internal/fusefrontend_reverse/node_dir_ops.go deleted file mode 100644 index c287284..0000000 --- a/internal/fusefrontend_reverse/node_dir_ops.go +++ /dev/null @@ -1,114 +0,0 @@ -package fusefrontend_reverse - -import ( - "context" - "fmt" - "syscall" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/pathiv" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// Readdir - FUSE call. -// -// This function is symlink-safe through use of openBackingDir() and -// ReadDirIVAt(). -func (n *Node) Readdir(ctx context.Context) (stream fs.DirStream, errno syscall.Errno) { - d, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(d.dirfd) - - // Read plaintext directory - var entries []fuse.DirEntry - fd, err := syscallcompat.Openat(d.dirfd, d.pName, syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) - if err != nil { - return nil, fs.ToErrno(err) - } - defer syscall.Close(fd) - entries, err = syscallcompat.Getdents(fd) - if err != nil { - return nil, fs.ToErrno(err) - } - - rn := n.rootNode() - - // Filter out excluded entries - entries = rn.excludeDirEntries(d, entries) - - if rn.args.PlaintextNames { - return n.readdirPlaintextnames(entries) - } - - // Virtual files: at least one gocryptfs.diriv file - virtualFiles := []fuse.DirEntry{ - {Mode: virtualFileMode, Name: nametransform.DirIVFilename}, - } - - dirIV := pathiv.Derive(d.cPath, pathiv.PurposeDirIV) - // Encrypt names - for i := range entries { - var cName string - // ".gocryptfs.reverse.conf" in the root directory is mapped to "gocryptfs.conf" - if n.isRoot() && entries[i].Name == configfile.ConfReverseName && - !rn.args.ConfigCustom { - cName = configfile.ConfDefaultName - } else { - cName, err = rn.nameTransform.EncryptName(entries[i].Name, dirIV) - if err != nil { - entries[i].Name = "___GOCRYPTFS_INVALID_NAME___" - continue - } - if len(cName) > unix.NAME_MAX { - cName = rn.nameTransform.HashLongName(cName) - dotNameFile := fuse.DirEntry{ - Mode: virtualFileMode, - Name: cName + nametransform.LongNameSuffix, - } - virtualFiles = append(virtualFiles, dotNameFile) - } - } - entries[i].Name = cName - } - - // Add virtual files - entries = append(entries, virtualFiles...) - return fs.NewListDirStream(entries), 0 -} - -func (n *Node) readdirPlaintextnames(entries []fuse.DirEntry) (stream fs.DirStream, errno syscall.Errno) { - rn := n.rootNode() - // If we are not the root dir or a custom config path was used, we don't - // need to map anything - if !n.isRoot() || rn.args.ConfigCustom { - return fs.NewListDirStream(entries), 0 - } - // We are in the root dir and the default config file name - // ".gocryptfs.reverse.conf" is used. We map it to "gocryptfs.conf". - dupe := -1 - for i := range entries { - if entries[i].Name == configfile.ConfReverseName { - entries[i].Name = configfile.ConfDefaultName - } else if entries[i].Name == configfile.ConfDefaultName { - dupe = i - } - } - if dupe >= 0 { - // Warn the user loudly: The gocryptfs.conf_NAME_COLLISION file will - // throw ENOENT errors that are hard to miss. - tlog.Warn.Printf("The file %q is mapped to %q and shadows another file. Please rename %q in directory %q.", - configfile.ConfReverseName, configfile.ConfDefaultName, configfile.ConfDefaultName, rn.args.Cipherdir) - entries[dupe].Name = "gocryptfs.conf_NAME_COLLISION_" + fmt.Sprintf("%d", cryptocore.RandUint64()) - } - return fs.NewListDirStream(entries), 0 -} diff --git a/internal/fusefrontend_reverse/node_helpers.go b/internal/fusefrontend_reverse/node_helpers.go deleted file mode 100644 index 92f6a87..0000000 --- a/internal/fusefrontend_reverse/node_helpers.go +++ /dev/null @@ -1,231 +0,0 @@ -package fusefrontend_reverse - -import ( - "context" - "path/filepath" - "syscall" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/pathiv" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" -) - -const ( - // File names are padded to 16-byte multiples, encrypted and - // base64-encoded. We can encode at most 176 bytes to stay below the 255 - // bytes limit: - // * base64(176 bytes) = 235 bytes - // * base64(192 bytes) = 256 bytes (over 255!) - // But the PKCS#7 padding is at least one byte. This means we can only use - // 175 bytes for the file name. - shortNameMax = 175 -) - -// translateSize translates the ciphertext size in `out` into plaintext size. -func (n *Node) translateSize(dirfd int, cName string, pName string, out *fuse.Attr) { - if out.IsRegular() { - rn := n.rootNode() - out.Size = rn.contentEnc.PlainSizeToCipherSize(out.Size) - } else if out.IsSymlink() { - cLink, _ := n.readlink(dirfd, cName, pName) - out.Size = uint64(len(cLink)) - } -} - -// Path returns the relative plaintext path of this node -func (n *Node) Path() string { - return n.Inode.Path(n.Root()) -} - -// rootNode returns the Root Node of the filesystem. -func (n *Node) rootNode() *RootNode { - return n.Root().Operations().(*RootNode) -} - -// dirfdPlus gets filled out as we gather information about a node -type dirfdPlus struct { - // fd to the directory, opened with O_DIRECTORY|O_PATH - dirfd int - // Relative plaintext path - pPath string - // Plaintext basename: filepath.Base(pPath) - pName string - // Relative ciphertext path - cPath string - // Ciphertext basename: filepath.Base(cPath) - cName string -} - -// prepareAtSyscall returns a (dirfd, cName) pair that can be used -// with the "___at" family of system calls (openat, fstatat, unlinkat...) to -// access the backing encrypted directory. -// -// If you pass a `child` file name, the (dirfd, cName) pair will refer to -// a child of this node. -// If `child` is empty, the (dirfd, cName) pair refers to this node itself. -func (n *Node) prepareAtSyscall(child string) (d *dirfdPlus, errno syscall.Errno) { - cPath := n.Path() - if child != "" { - cPath = filepath.Join(cPath, child) - } - rn := n.rootNode() - dirfd, pPath, err := rn.openBackingDir(cPath) - if err != nil { - errno = fs.ToErrno(err) - } - d = &dirfdPlus{ - dirfd: dirfd, - pPath: pPath, - pName: filepath.Base(pPath), - cPath: cPath, - cName: filepath.Base(cPath), - } - return -} - -// newChild attaches a new child inode to n. -// The passed-in `st` will be modified to get a unique inode number. -func (n *Node) newChild(ctx context.Context, st *syscall.Stat_t, out *fuse.EntryOut) *fs.Inode { - // Get unique inode number - rn := n.rootNode() - rn.inoMap.TranslateStat(st) - out.Attr.FromStat(st) - // Create child node - id := fs.StableAttr{ - Mode: uint32(st.Mode), - Gen: 1, - Ino: st.Ino, - } - node := &Node{} - return n.NewInode(ctx, node, id) -} - -// isRoot returns true if this node is the root node -func (n *Node) isRoot() bool { - rn := n.rootNode() - return &rn.Node == n -} - -func (n *Node) lookupLongnameName(ctx context.Context, nameFile string, out *fuse.EntryOut) (ch *fs.Inode, errno syscall.Errno) { - d, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(d.dirfd) - - // Find the file the gocryptfs.longname.XYZ.name file belongs to in the - // directory listing - fd, err := syscallcompat.Openat(d.dirfd, d.pName, syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) - if err != nil { - errno = fs.ToErrno(err) - return - } - defer syscall.Close(fd) - diriv := pathiv.Derive(d.cPath, pathiv.PurposeDirIV) - rn := n.rootNode() - pName, cFullname, errno := rn.findLongnameParent(fd, diriv, nameFile) - if errno != 0 { - return - } - if rn.isExcludedPlain(filepath.Join(d.cPath, pName)) { - errno = syscall.EPERM - return - } - // Get attrs from parent file - st, err := syscallcompat.Fstatat2(fd, pName, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - errno = fs.ToErrno(err) - return - } - var vf *VirtualMemNode - vf, errno = n.newVirtualMemNode([]byte(cFullname), st, inoTagNameFile) - if errno != 0 { - return nil, errno - } - out.Attr = vf.attr - // Create child node - id := fs.StableAttr{Mode: uint32(vf.attr.Mode), Gen: 1, Ino: vf.attr.Ino} - ch = n.NewInode(ctx, vf, id) - return - -} - -// lookupDiriv returns a new Inode for a gocryptfs.diriv file inside `n`. -func (n *Node) lookupDiriv(ctx context.Context, out *fuse.EntryOut) (ch *fs.Inode, errno syscall.Errno) { - d, errno := n.prepareAtSyscall("") - if errno != 0 { - return - } - defer syscall.Close(d.dirfd) - st, err := syscallcompat.Fstatat2(d.dirfd, d.pName, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - errno = fs.ToErrno(err) - return - } - content := pathiv.Derive(d.cPath, pathiv.PurposeDirIV) - var vf *VirtualMemNode - vf, errno = n.newVirtualMemNode(content, st, inoTagDirIV) - if errno != 0 { - return nil, errno - } - out.Attr = vf.attr - // Create child node - id := fs.StableAttr{Mode: uint32(vf.attr.Mode), Gen: 1, Ino: vf.attr.Ino} - ch = n.NewInode(ctx, vf, id) - return -} - -// lookupConf returns a new Inode for the gocryptfs.conf file -func (n *Node) lookupConf(ctx context.Context, out *fuse.EntryOut) (ch *fs.Inode, errno syscall.Errno) { - rn := n.rootNode() - p := filepath.Join(rn.args.Cipherdir, configfile.ConfReverseName) - var st syscall.Stat_t - err := syscall.Stat(p, &st) - if err != nil { - errno = fs.ToErrno(err) - return - } - // Get unique inode number - rn.inoMap.TranslateStat(&st) - out.Attr.FromStat(&st) - // Create child node - id := fs.StableAttr{ - Mode: uint32(st.Mode), - Gen: 1, - Ino: st.Ino, - } - node := &VirtualConfNode{path: p} - ch = n.NewInode(ctx, node, id) - return -} - -// readlink reads and encrypts a symlink. Used by Readlink, Getattr, Lookup. -func (n *Node) readlink(dirfd int, cName string, pName string) (out []byte, errno syscall.Errno) { - plainTarget, err := syscallcompat.Readlinkat(dirfd, pName) - if err != nil { - errno = fs.ToErrno(err) - return - } - rn := n.rootNode() - if rn.args.PlaintextNames { - return []byte(plainTarget), 0 - } - // Nonce is derived from the relative *ciphertext* path - p := filepath.Join(n.Path(), cName) - nonce := pathiv.Derive(p, pathiv.PurposeSymlinkIV) - // Symlinks are encrypted like file contents and base64-encoded - cBinTarget := rn.contentEnc.EncryptBlockNonce([]byte(plainTarget), 0, nil, nonce) - cTarget := rn.nameTransform.B64EncodeToString(cBinTarget) - // The kernel will reject a symlink target above 4096 chars and return - // and I/O error to the user. Better emit the proper error ourselves. - if len(cTarget) > syscallcompat.PATH_MAX { - errno = syscall.ENAMETOOLONG - return - } - return []byte(cTarget), 0 -} diff --git a/internal/fusefrontend_reverse/root_node.go b/internal/fusefrontend_reverse/root_node.go deleted file mode 100644 index 10b0d69..0000000 --- a/internal/fusefrontend_reverse/root_node.go +++ /dev/null @@ -1,120 +0,0 @@ -package fusefrontend_reverse - -import ( - "log" - "path/filepath" - "strings" - "syscall" - - "github.com/rfjakob/gocryptfs/internal/tlog" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/fusefrontend" - "github.com/rfjakob/gocryptfs/internal/inomap" - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - - "github.com/sabhiram/go-gitignore" -) - -// RootNode is the root directory in a `gocryptfs -reverse` mount -type RootNode struct { - Node - // Stores configuration arguments - args fusefrontend.Args - // Filename encryption helper - nameTransform nametransform.NameTransformer - // Content encryption helper - contentEnc *contentenc.ContentEnc - // Tests whether a path is excluded (hidden) from the user. Used by -exclude. - excluder ignore.IgnoreParser - // inoMap translates inode numbers from different devices to unique inode - // numbers. - inoMap *inomap.InoMap -} - -// NewRootNode returns an encrypted FUSE overlay filesystem. -// In this case (reverse mode) the backing directory is plain-text and -// ReverseFS provides an encrypted view. -func NewRootNode(args fusefrontend.Args, c *contentenc.ContentEnc, n nametransform.NameTransformer) *RootNode { - rn := &RootNode{ - args: args, - nameTransform: n, - contentEnc: c, - inoMap: inomap.New(), - } - if len(args.Exclude) > 0 || len(args.ExcludeWildcard) > 0 || len(args.ExcludeFrom) > 0 { - rn.excluder = prepareExcluder(args) - } - return rn -} - -// You can pass either gocryptfs.longname.XYZ.name or gocryptfs.longname.XYZ. -func (rn *RootNode) findLongnameParent(fd int, diriv []byte, longname string) (pName string, cFullName string, errno syscall.Errno) { - defer func() { - tlog.Debug.Printf("findLongnameParent: %d %x %q -> %q %q %d\n", fd, diriv, longname, pName, cFullName, errno) - }() - if strings.HasSuffix(longname, nametransform.LongNameSuffix) { - longname = nametransform.RemoveLongNameSuffix(longname) - } - entries, err := syscallcompat.Getdents(fd) - if err != nil { - errno = fs.ToErrno(err) - return - } - for _, entry := range entries { - if len(entry.Name) <= shortNameMax { - continue - } - cFullName, err = rn.nameTransform.EncryptName(entry.Name, diriv) - if err != nil { - continue - } - if len(cFullName) <= unix.NAME_MAX { - // Entry should have been skipped by the shortNameMax check above - log.Panic("logic error or wrong shortNameMax constant?") - } - hName := rn.nameTransform.HashLongName(cFullName) - if longname == hName { - pName = entry.Name - break - } - } - if pName == "" { - errno = syscall.ENOENT - return - } - return -} - -// isExcludedPlain finds out if the plaintext path "pPath" is -// excluded (used when -exclude is passed by the user). -func (rn *RootNode) isExcludedPlain(pPath string) bool { - return rn.excluder != nil && rn.excluder.MatchesPath(pPath) -} - -// excludeDirEntries filters out directory entries that are "-exclude"d. -// pDir is the relative plaintext path to the directory these entries are -// from. The entries should be plaintext files. -func (rn *RootNode) excludeDirEntries(d *dirfdPlus, entries []fuse.DirEntry) (filtered []fuse.DirEntry) { - if rn.excluder == nil { - return entries - } - filtered = make([]fuse.DirEntry, 0, len(entries)) - for _, entry := range entries { - // filepath.Join handles the case of pDir="" correctly: - // Join("", "foo") -> "foo". This does not: pDir + "/" + name" - p := filepath.Join(d.pPath, entry.Name) - if rn.isExcludedPlain(p) { - // Skip file - continue - } - filtered = append(filtered, entry) - } - return filtered -} diff --git a/internal/fusefrontend_reverse/rpath.go b/internal/fusefrontend_reverse/rpath.go deleted file mode 100644 index f29bbf5..0000000 --- a/internal/fusefrontend_reverse/rpath.go +++ /dev/null @@ -1,123 +0,0 @@ -package fusefrontend_reverse - -import ( - "encoding/base64" - "path/filepath" - "strings" - "syscall" - - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/pathiv" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// abs basically returns storage dir + "/" + relPath. -// It takes an error parameter so it can directly wrap decryptPath like this: -// a, err := rfs.abs(rfs.decryptPath(relPath)) -// abs never generates an error on its own. In other words, abs(p, nil) never -// fails. -func (rfs *RootNode) abs(relPath string, err error) (string, error) { - if err != nil { - return "", err - } - return filepath.Join(rfs.args.Cipherdir, relPath), nil -} - -// rDecryptName decrypts the ciphertext name "cName", given the dirIV of the -// directory "cName" lies in. The relative plaintext path to the directory -// "pDir" is used if a "gocryptfs.longname.XYZ.name" must be resolved. -func (rfs *RootNode) rDecryptName(cName string, dirIV []byte, pDir string) (pName string, err error) { - nameType := nametransform.NameType(cName) - if nameType == nametransform.LongNameNone { - pName, err = rfs.nameTransform.DecryptName(cName, dirIV) - if err != nil { - // We get lots of decrypt requests for names like ".Trash" that - // are invalid base64. Convert them to ENOENT so the correct - // error gets returned to the user. - if _, ok := err.(base64.CorruptInputError); ok { - return "", syscall.ENOENT - } - // Stat attempts on the link target of encrypted symlinks. - // These are always valid base64 but the length is not a - // multiple of 16. - if err == syscall.EBADMSG { - return "", syscall.ENOENT - } - return "", err - } - } else if nameType == nametransform.LongNameContent { - dirfd, err := syscallcompat.OpenDirNofollow(rfs.args.Cipherdir, filepath.Dir(pDir)) - if err != nil { - return "", err - } - defer syscall.Close(dirfd) - fd, err := syscallcompat.Openat(dirfd, filepath.Base(pDir), syscall.O_RDONLY|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0) - if err != nil { - return "", err - } - defer syscall.Close(fd) - var errno syscall.Errno - pName, _, errno = rfs.findLongnameParent(fd, dirIV, cName) - if errno != 0 { - return "", errno - } - } else { - // It makes no sense to decrypt a ".name" file. This is a virtual file - // that has no representation in the plaintext filesystem. ".name" - // files should have already been handled in virtualfile.go. - tlog.Warn.Printf("rDecryptName: cannot decrypt virtual file %q", cName) - return "", syscall.EINVAL - } - return pName, nil -} - -// decryptPath decrypts a relative ciphertext path to a relative plaintext -// path. -func (rn *RootNode) decryptPath(cPath string) (string, error) { - if rn.args.PlaintextNames || cPath == "" { - return cPath, nil - } - parts := strings.Split(cPath, "/") - var transformedParts []string - for i := range parts { - // Start at the top and recurse - currentCipherDir := filepath.Join(parts[:i]...) - currentPlainDir := filepath.Join(transformedParts[:i]...) - dirIV := pathiv.Derive(currentCipherDir, pathiv.PurposeDirIV) - transformedPart, err := rn.rDecryptName(parts[i], dirIV, currentPlainDir) - if err != nil { - return "", err - } - transformedParts = append(transformedParts, transformedPart) - } - pRelPath := filepath.Join(transformedParts...) - return pRelPath, nil -} - -// openBackingDir receives an already decrypted relative path -// "pRelPath", opens the directory that contains the target file/dir -// and returns the fd to the directory and the decrypted name of the -// target file. The fd/name pair is intended for use with fchownat and -// friends. -func (rn *RootNode) openBackingDir(cPath string) (dirfd int, pPath string, err error) { - defer func() { - tlog.Debug.Printf("openBackingDir %q -> %d %q %v\n", cPath, dirfd, pPath, err) - }() - dirfd = -1 - pPath, err = rn.decryptPath(cPath) - if err != nil { - return - } - if rn.isExcludedPlain(pPath) { - err = syscall.EPERM - return - } - // Open directory, safe against symlink races - pDir := filepath.Dir(pPath) - dirfd, err = syscallcompat.OpenDirNofollow(rn.args.Cipherdir, pDir) - if err != nil { - return - } - return dirfd, pPath, nil -} diff --git a/internal/fusefrontend_reverse/virtualconf.go b/internal/fusefrontend_reverse/virtualconf.go deleted file mode 100644 index 8620f6d..0000000 --- a/internal/fusefrontend_reverse/virtualconf.go +++ /dev/null @@ -1,55 +0,0 @@ -package fusefrontend_reverse - -import ( - "context" - "sync" - "syscall" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" -) - -var _ = (fs.NodeOpener)((*VirtualConfNode)(nil)) - -type VirtualConfNode struct { - fs.Inode - - path string -} - -func (n *VirtualConfNode) Open(ctx context.Context, flags uint32) (fh fs.FileHandle, fuseFlags uint32, errno syscall.Errno) { - fd, err := syscall.Open(n.path, syscall.O_RDONLY, 0) - if err != nil { - errno = fs.ToErrno(err) - return - } - fh = &VirtualConfFile{fd: fd} - return -} - -// Check that we have implemented the fs.File* interfaces -var _ = (fs.FileReader)((*VirtualConfFile)(nil)) -var _ = (fs.FileReleaser)((*VirtualConfFile)(nil)) - -type VirtualConfFile struct { - mu sync.Mutex - fd int -} - -func (f *VirtualConfFile) Read(ctx context.Context, buf []byte, off int64) (res fuse.ReadResult, errno syscall.Errno) { - f.mu.Lock() - defer f.mu.Unlock() - res = fuse.ReadResultFd(uintptr(f.fd), off, len(buf)) - return -} - -func (f *VirtualConfFile) Release(ctx context.Context) syscall.Errno { - f.mu.Lock() - defer f.mu.Unlock() - if f.fd != -1 { - err := syscall.Close(f.fd) - f.fd = -1 - return fs.ToErrno(err) - } - return syscall.EBADF -} diff --git a/internal/fusefrontend_reverse/virtualnode.go b/internal/fusefrontend_reverse/virtualnode.go deleted file mode 100644 index 2ee9548..0000000 --- a/internal/fusefrontend_reverse/virtualnode.go +++ /dev/null @@ -1,117 +0,0 @@ -package fusefrontend_reverse - -import ( - "context" - "log" - "syscall" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/inomap" - "github.com/rfjakob/gocryptfs/internal/nametransform" -) - -const ( - // virtualFileMode is the mode to use for virtual files (gocryptfs.diriv and - // *.name). They are always readable, as stated in func Access - virtualFileMode = syscall.S_IFREG | 0444 - // We use inomap's `Tag` feature to generate unique inode numbers for - // virtual files. These are the tags we use. - inoTagDirIV = 1 - inoTagNameFile = 2 -) - -type fileType int - -// Values returned by lookupFileType -const ( - // A real file/directory/symlink in the backing plaintext directory - typeReal fileType = iota - // A DirIV (gocryptfs.diriv) file - typeDiriv - // A gocryptfs.longname.*.name file for a file with a long name - typeName - // The config file gocryptfs.conf - typeConfig -) - -// lookupFileType returns the type of child file name -// (one of the fileType constants above). Called from Lookup(). -func (n *Node) lookupFileType(cName string) fileType { - rn := n.rootNode() - // In -plaintextname mode, neither diriv nor longname files exist. - if !rn.args.PlaintextNames { - // Is it a gocryptfs.diriv file? - if cName == nametransform.DirIVFilename { - return typeDiriv - } - // Is it a gocryptfs.longname.*.name file? - if t := nametransform.NameType(cName); t == nametransform.LongNameFilename { - return typeName - } - } - // gocryptfs.conf in the root directory. This is passed through to - // .gocryptfs.reverse.conf in the backing plaintext directory. - if n.isRoot() && !rn.args.ConfigCustom && cName == configfile.ConfDefaultName { - return typeConfig - } - return typeReal -} - -// VirtualMemNode is an in-memory node that does not have a representation -// on disk. -type VirtualMemNode struct { - fs.Inode - - // file content - content []byte - // attributes for Getattr() - attr fuse.Attr -} - -// newVirtualMemNode creates a new in-memory file that does not have a representation -// on disk. "content" is the file content. Timestamps and file owner are copied -// from "parentFile" (file descriptor). -// For a "gocryptfs.diriv" file, you would use the parent directory as -// "parentFile". -func (n *Node) newVirtualMemNode(content []byte, parentStat *syscall.Stat_t, inoTag uint8) (vf *VirtualMemNode, errno syscall.Errno) { - if inoTag == 0 { - log.Panicf("BUG: inoTag for virtual file is zero - this will cause ino collisions!") - } - - // Adjust inode number and size - rn := n.rootNode() - st := parentStat - q := inomap.NewQIno(uint64(st.Dev), inoTag, uint64(st.Ino)) - st.Ino = rn.inoMap.Translate(q) - st.Size = int64(len(content)) - st.Mode = virtualFileMode - st.Nlink = 1 - var a fuse.Attr - a.FromStat(st) - - vf = &VirtualMemNode{content: content, attr: a} - return -} - -// Open - FUSE call -func (f *VirtualMemNode) Open(ctx context.Context, flags uint32) (fh fs.FileHandle, fuseFlags uint32, errno syscall.Errno) { - return nil, fuse.FOPEN_KEEP_CACHE, 0 -} - -// GetAttr - FUSE call -func (f *VirtualMemNode) Getattr(ctx context.Context, fh fs.FileHandle, out *fuse.AttrOut) syscall.Errno { - out.Attr = f.attr - return 0 -} - -// Read - FUSE call -func (f *VirtualMemNode) Read(ctx context.Context, fh fs.FileHandle, dest []byte, off int64) (fuse.ReadResult, syscall.Errno) { - end := int(off) + len(dest) - if end > len(f.content) { - end = len(f.content) - } - return fuse.ReadResultData(f.content[off:end]), 0 -} diff --git a/internal/inomap/inomap.go b/internal/inomap/inomap.go deleted file mode 100644 index 0977a46..0000000 --- a/internal/inomap/inomap.go +++ /dev/null @@ -1,117 +0,0 @@ -// inomap translates (Dev, Flags, Ino) tuples to unique uint64 -// inode numbers. -// -// Format of the returned inode numbers: -// -// [spill bit = 0][15 bit namespace id][48 bit passthru inode number] -// [spill bit = 1][63 bit spill inode number ] -// -// Each (Dev, Flags) tuple gets a namespace id assigned. The original inode -// number is then passed through in the lower 48 bits. -// -// If namespace ids are exhaused, or the original id is larger than 48 bits, -// the whole (Dev, Flags, Ino) tuple gets mapped in the spill map, and the -// spill bit is set to 1. -package inomap - -import ( - "log" - "sync" - "syscall" -) - -const ( - // max value of 15 bit namespace id - maxNamespaceId = 1<<15 - 1 - // max value of 48 bit passthru inode number - maxPassthruIno = 1<<48 - 1 - // max value of 63 bit spill inode number - maxSpillIno = 1<<63 - 1 - // bit 63 is used as the spill bit - spillBit = 1 << 63 -) - -// InoMap stores the maps using for inode number translation. -// See package comment for details. -type InoMap struct { - sync.Mutex - // namespaceMap keeps the mapping of (Dev,Flags) tuples to - // 15-bit identifiers (stored in an uint16 with the high bit always zero) - namespaceMap map[namespaceData]uint16 - // spillNext is the next free namespace number in the namespaces map - namespaceNext uint16 - // spill is used once the namespaces map is full - spillMap map[QIno]uint64 - // spillNext is the next free inode number in the spill map - spillNext uint64 -} - -// New returns a new InoMap. -func New() *InoMap { - return &InoMap{ - namespaceMap: make(map[namespaceData]uint16), - namespaceNext: 0, - spillMap: make(map[QIno]uint64), - spillNext: 0, - } -} - -func (m *InoMap) spill(in QIno) (out uint64) { - out, found := m.spillMap[in] - if found { - return out | spillBit - } - if m.spillNext >= maxSpillIno { - log.Panicf("spillMap overflow: spillNext = 0x%x", m.spillNext) - } - out = m.spillNext - m.spillNext++ - m.spillMap[in] = out - return out | spillBit -} - -// Translate maps the passed-in (device, inode) pair to a unique inode number. -func (m *InoMap) Translate(in QIno) (out uint64) { - m.Lock() - defer m.Unlock() - - if in.Ino > maxPassthruIno { - out = m.spill(in) - return out - } - ns, found := m.namespaceMap[in.namespaceData] - // Use existing namespace - if found { - out = uint64(ns)<<48 | in.Ino - return out - } - // No free namespace slots? - if m.namespaceNext >= maxNamespaceId { - out = m.spill(in) - return out - } - ns = m.namespaceNext - m.namespaceNext++ - m.namespaceMap[in.namespaceData] = ns - out = uint64(ns)<<48 | in.Ino - return out -} - -// TranslateStat translates (device, ino) pair contained in "st" into a unique -// inode number and overwrites the ino in "st" with it. -// Convience wrapper around Translate(). -func (m *InoMap) TranslateStat(st *syscall.Stat_t) { - in := QInoFromStat(st) - st.Ino = m.Translate(in) -} - -type TranslateStater interface { - TranslateStat(st *syscall.Stat_t) -} - -// TranslateStatZero always sets st.Ino to zero. Used for `-sharedstorage`. -type TranslateStatZero struct{} - -func (z TranslateStatZero) TranslateStat(st *syscall.Stat_t) { - st.Ino = 0 -} diff --git a/internal/inomap/inomap_test.go b/internal/inomap/inomap_test.go deleted file mode 100644 index 6fbb4ef..0000000 --- a/internal/inomap/inomap_test.go +++ /dev/null @@ -1,160 +0,0 @@ -package inomap - -import ( - "sync" - "testing" -) - -func TestTranslate(t *testing.T) { - m := New() - q := QIno{Ino: 1} - out := m.Translate(q) - if out != 1 { - t.Errorf("expected 1, got %d", out) - } - q.Ino = maxPassthruIno - out = m.Translate(q) - if out < maxPassthruIno { - t.Errorf("got %d", out) - } - out2 := m.Translate(q) - if out2 != out { - t.Errorf("unstable mapping: %d %d", out2, out) - } -} - -func TestTranslateStress(t *testing.T) { - const baseDev = 12345 - m := New() - - // Make sure baseDev gets namespace id zero - var q QIno - q.Dev = baseDev - m.Translate(q) - - var wg sync.WaitGroup - wg.Add(4) - go func() { - // Some normal inode numbers on baseDev - var q QIno - q.Dev = baseDev - for i := uint64(1); i <= 10000; i++ { - q.Ino = i - out := m.Translate(q) - if out != i { - t.Errorf("i=%d out=%d", i, out) - break - } - } - wg.Done() - }() - go func() { - // Very high (>maxPassthruIno) inode numbers on baseDev - var q QIno - q.Dev = baseDev - for i := uint64(1); i <= 10000; i++ { - q.Ino = maxPassthruIno + i - out := m.Translate(q) - if out < maxPassthruIno { - t.Errorf("out=%d", out) - break - } - } - wg.Done() - }() - go func() { - // Device 9999999 - var q QIno - q.Dev = 9999999 - for i := uint64(1); i <= 10000; i++ { - q.Ino = i - out := m.Translate(q) - if out < maxPassthruIno { - t.Errorf("out=%d", out) - break - } - } - wg.Done() - }() - go func() { - // Device 4444444 - var q QIno - q.Dev = 4444444 - for i := uint64(1); i <= 10000; i++ { - q.Ino = i - out := m.Translate(q) - if out < maxPassthruIno { - t.Errorf("out=%d", out) - break - } - } - wg.Done() - }() - wg.Wait() - if len(m.spillMap) != 10000 { - t.Errorf("len=%d", len(m.spillMap)) - } - if len(m.namespaceMap) != 3 { - t.Errorf("len=%d", len(m.namespaceMap)) - } -} - -func TestSpill(t *testing.T) { - m := New() - var q QIno - q.Ino = maxPassthruIno + 1 - out1 := m.Translate(q) - if out1&spillBit == 0 { - t.Error("spill bit not set") - } - out2 := m.Translate(q) - if out2&spillBit == 0 { - t.Error("spill bit not set") - } - if out1 != out2 { - t.Errorf("unstable mapping: %d vs %d", out1, out2) - } -} - -// TestUniqueness checks that unique (Dev, Flags, Ino) tuples get unique inode -// numbers -func TestUniqueness(t *testing.T) { - m := New() - var q QIno - outMap := make(map[uint64]struct{}) - for q.Dev = 0; q.Dev < 10; q.Dev++ { - for q.Tag = 0; q.Tag < 10; q.Tag++ { - // some go into spill - for q.Ino = maxPassthruIno - 100; q.Ino < maxPassthruIno+100; q.Ino++ { - out := m.Translate(q) - _, found := outMap[out] - if found { - t.Fatalf("inode number %d already used", out) - } - outMap[out] = struct{}{} - } - } - } - if len(outMap) != 10*10*200 { - t.Errorf("%d", len(outMap)) - } -} - -func BenchmarkTranslateSingleDev(b *testing.B) { - m := New() - var q QIno - for n := 0; n < b.N; n++ { - q.Ino = uint64(n % 1000) - m.Translate(q) - } -} - -func BenchmarkTranslateManyDevs(b *testing.B) { - m := New() - var q QIno - for n := 0; n < b.N; n++ { - q.Dev = uint64(n % 10) - q.Ino = uint64(n % 1000) - m.Translate(q) - } -} diff --git a/internal/inomap/qino.go b/internal/inomap/qino.go deleted file mode 100644 index ed514e8..0000000 --- a/internal/inomap/qino.go +++ /dev/null @@ -1,43 +0,0 @@ -package inomap - -import ( - "syscall" -) - -type namespaceData struct { - // Stat_t.Dev is uint64 on 32- and 64-bit Linux - Dev uint64 - // Tag acts like an extension of the Dev field. - // It is used by reverse mode for virtual files. - // Normal (forward) mode does not use it and it - // stays always zero there. - Tag uint8 -} - -// QIno = Qualified Inode number. -// Uniquely identifies a backing file through the device number, -// inode number pair. -type QIno struct { - namespaceData - // Stat_t.Ino is uint64 on 32- and 64-bit Linu - Ino uint64 -} - -// NewQIno returns a filled QIno struct -func NewQIno(dev uint64, tag uint8, ino uint64) QIno { - return QIno{ - namespaceData: namespaceData{ - Dev: dev, - Tag: tag, - }, - Ino: ino, - } -} - -// QInoFromStat fills a new QIno struct with the passed Stat_t info. -func QInoFromStat(st *syscall.Stat_t) QIno { - // There are some architectures that use 32-bit values here - // (darwin, freebsd-32, maybe others). Add an explicit cast to make - // this function work everywhere. - return NewQIno(uint64(st.Dev), 0, uint64(st.Ino)) -} diff --git a/internal/nametransform/diriv.go b/internal/nametransform/diriv.go index 1d27aa5..67635b3 100644 --- a/internal/nametransform/diriv.go +++ b/internal/nametransform/diriv.go @@ -8,9 +8,8 @@ import ( "path/filepath" "syscall" - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" + "../cryptocore" + "../syscallcompat" ) const ( @@ -68,7 +67,6 @@ func WriteDirIVAt(dirfd int) error { // https://github.com/rfjakob/gocryptfs/commit/7d38f80a78644c8ec4900cc990bfb894387112ed fd, err := syscallcompat.Openat(dirfd, DirIVFilename, os.O_WRONLY|os.O_CREATE|os.O_EXCL, dirivPerms) if err != nil { - tlog.Warn.Printf("WriteDirIV: Openat: %v", err) return err } // Wrap the fd in an os.File - we need the write retry logic. @@ -77,16 +75,12 @@ func WriteDirIVAt(dirfd int) error { if err != nil { f.Close() // It is normal to get ENOSPC here - if !syscallcompat.IsENOSPC(err) { - tlog.Warn.Printf("WriteDirIV: Write: %v", err) - } // Delete incomplete gocryptfs.diriv file syscallcompat.Unlinkat(dirfd, DirIVFilename, 0) return err } err = f.Close() if err != nil { - tlog.Warn.Printf("WriteDirIV: Close: %v", err) // Delete incomplete gocryptfs.diriv file syscallcompat.Unlinkat(dirfd, DirIVFilename, 0) return err diff --git a/internal/nametransform/longnames.go b/internal/nametransform/longnames.go index 74ddb07..21e7714 100644 --- a/internal/nametransform/longnames.go +++ b/internal/nametransform/longnames.go @@ -9,8 +9,7 @@ import ( "strings" "syscall" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/internal/tlog" + "../syscallcompat" ) const ( @@ -113,9 +112,6 @@ func ReadLongNameAt(dirfd int, cName string) (string, error) { // This function is symlink-safe through the use of Unlinkat(). func DeleteLongNameAt(dirfd int, hashName string) error { err := syscallcompat.Unlinkat(dirfd, hashName+LongNameSuffix, 0) - if err != nil { - tlog.Warn.Printf("DeleteLongName: %v", err) - } return err } @@ -141,25 +137,18 @@ func (n *NameTransform) WriteLongNameAt(dirfd int, hashName string, plainName st fdRaw, err := syscallcompat.Openat(dirfd, hashName+LongNameSuffix, syscall.O_WRONLY|syscall.O_CREAT|syscall.O_EXCL, namePerms) if err != nil { - // Don't warn if the file already exists - this is allowed for renames - // and should be handled by the caller. - if err != syscall.EEXIST { - tlog.Warn.Printf("WriteLongName: Openat: %v", err) - } return err } fd := os.NewFile(uintptr(fdRaw), hashName+LongNameSuffix) _, err = fd.Write([]byte(cName)) if err != nil { fd.Close() - tlog.Warn.Printf("WriteLongName: Write: %v", err) // Delete incomplete longname file syscallcompat.Unlinkat(dirfd, hashName+LongNameSuffix, 0) return err } err = fd.Close() if err != nil { - tlog.Warn.Printf("WriteLongName: Close: %v", err) // Delete incomplete longname file syscallcompat.Unlinkat(dirfd, hashName+LongNameSuffix, 0) return err diff --git a/internal/nametransform/longnames_test.go b/internal/nametransform/longnames_test.go deleted file mode 100644 index 4210492..0000000 --- a/internal/nametransform/longnames_test.go +++ /dev/null @@ -1,30 +0,0 @@ -package nametransform - -import ( - "testing" -) - -func TestIsLongName(t *testing.T) { - n := "gocryptfs.longname.LkwUdALvV_ANnzQN6ZZMYnxxfARD3IeZWCKnxGJjYmU=.name" - if NameType(n) != LongNameFilename { - t.Errorf("False negative") - } - - n = "gocryptfs.longname.LkwUdALvV_ANnzQN6ZZMYnxxfARD3IeZWCKnxGJjYmU=" - if NameType(n) != LongNameContent { - t.Errorf("False negative") - } - - n = "LkwUdALvV_ANnzQN6ZZMYnxxfARD3IeZWCKnxGJjYmU=" - if NameType(n) != LongNameNone { - t.Errorf("False positive") - } -} - -func TestRemoveLongNameSuffix(t *testing.T) { - filename := "gocryptfs.longname.LkwUdALvV_ANnzQN6ZZMYnxxfARD3IeZWCKnxGJjYmU=.name" - content := "gocryptfs.longname.LkwUdALvV_ANnzQN6ZZMYnxxfARD3IeZWCKnxGJjYmU=" - if RemoveLongNameSuffix(filename) != content { - t.Error(".name suffix not removed") - } -} diff --git a/internal/nametransform/names.go b/internal/nametransform/names.go index ca28230..fc7c7ff 100644 --- a/internal/nametransform/names.go +++ b/internal/nametransform/names.go @@ -8,8 +8,6 @@ import ( "syscall" "github.com/rfjakob/eme" - - "github.com/rfjakob/gocryptfs/internal/tlog" ) const ( @@ -88,22 +86,18 @@ func (n *NameTransform) decryptName(cipherName string, iv []byte) (string, error return "", err } if len(bin) == 0 { - tlog.Warn.Printf("DecryptName: empty input") return "", syscall.EBADMSG } if len(bin)%aes.BlockSize != 0 { - tlog.Debug.Printf("DecryptName %q: decoded length %d is not a multiple of 16", cipherName, len(bin)) return "", syscall.EBADMSG } bin = n.emeCipher.Decrypt(iv, bin) bin, err = unPad16(bin) if err != nil { - tlog.Warn.Printf("DecryptName %q: unPad16 error: %v", cipherName, err) return "", syscall.EBADMSG } plain := string(bin) if err := IsValidName(plain); err != nil { - tlog.Warn.Printf("DecryptName %q: invalid name after decryption: %v", cipherName, err) return "", syscall.EBADMSG } return plain, err @@ -116,7 +110,6 @@ func (n *NameTransform) decryptName(cipherName string, iv []byte) (string, error // to the full (not hashed) name if longname is used. func (n *NameTransform) EncryptName(plainName string, iv []byte) (cipherName64 string, err error) { if err := IsValidName(plainName); err != nil { - tlog.Warn.Printf("EncryptName %q: invalid plainName: %v", plainName, err) return "", syscall.EBADMSG } bin := []byte(plainName) diff --git a/internal/nametransform/names_test.go b/internal/nametransform/names_test.go deleted file mode 100644 index b4e98d4..0000000 --- a/internal/nametransform/names_test.go +++ /dev/null @@ -1,77 +0,0 @@ -package nametransform - -import ( - "bytes" - "strings" - "testing" -) - -func TestPad16(t *testing.T) { - s := [][]byte{ - []byte("foo"), - []byte("12345678901234567"), - []byte("12345678901234567abcdefg"), - } - - for i := range s { - orig := s[i] - padded := pad16(orig) - if len(padded) <= len(orig) { - t.Errorf("Padded length not bigger than orig: %d", len(padded)) - } - if len(padded)%16 != 0 { - t.Errorf("Length is not aligend: %d", len(padded)) - } - unpadded, err := unPad16(padded) - if err != nil { - t.Error("unPad16 returned error:", err) - } - if len(unpadded) != len(orig) { - t.Errorf("Size mismatch: orig=%d unpadded=%d", len(s[i]), len(unpadded)) - } - if !bytes.Equal(orig, unpadded) { - t.Error("Content mismatch orig vs unpadded") - } - } -} - -// TestUnpad16Garbage - unPad16 should never crash on corrupt or malicious inputs -func TestUnpad16Garbage(t *testing.T) { - testCases := [][]byte{ - make([]byte, 0), - make([]byte, 16), - make([]byte, 1), - make([]byte, 17), - bytes.Repeat([]byte{16}, 16), - bytes.Repeat([]byte{17}, 16), - } - for _, v := range testCases { - _, err := unPad16([]byte(v)) - if err == nil { - t.Fail() - } - } -} - -func TestIsValidName(t *testing.T) { - cases := []struct { - in string - want bool - }{ - {"", false}, - {".", false}, - {"..", false}, - {"...", true}, - {"asdasd/asdasd", false}, - {"asdasd\000asdasd", false}, - {"hello", true}, - {strings.Repeat("x", 255), true}, - {strings.Repeat("x", 256), false}, - } - for _, c := range cases { - have := IsValidName(c.in) - if (have == nil) != c.want { - t.Errorf("IsValidName(%q): want %v have %v", c.in, c.want, have) - } - } -} diff --git a/internal/openfiletable/open_file_table.go b/internal/openfiletable/open_file_table.go deleted file mode 100644 index dfd9637..0000000 --- a/internal/openfiletable/open_file_table.go +++ /dev/null @@ -1,103 +0,0 @@ -// Package openfiletable maintains a table of currently opened files, identified -// by the device number + inode number pair. This table is used by fusefrontend -// to centrally store the current file ID and to lock files against concurrent -// writes. -package openfiletable - -import ( - "sync" - "sync/atomic" - - "github.com/rfjakob/gocryptfs/internal/inomap" -) - -// wlock - serializes write accesses to each file (identified by inode number) -// Writing partial blocks means we have to do read-modify-write cycles. We -// really don't want concurrent writes there. -// Concurrent full-block writes could actually be allowed, but are not to -// keep the locking simple. -var t table - -func init() { - t.entries = make(map[inomap.QIno]*Entry) -} - -type table struct { - // writeOpCount counts entry.ContentLock.Lock() calls. As every operation that - // modifies a file should - // call it, this effectively serves as a write-operation counter. - // The variable is accessed without holding any locks so atomic operations - // must be used. It must be the first element of the struct to guarantee - // 64-bit alignment. - writeOpCount uint64 - // Protects map access - sync.Mutex - // Table entries - entries map[inomap.QIno]*Entry -} - -// Entry is an entry in the open file table -type Entry struct { - // Reference count. Protected by the table lock. - refCount int - // ContentLock protects on-disk content from concurrent writes. Every writer - // must take this lock before modifying the file content. - ContentLock countingMutex - // ID is the file ID in the file header. - ID []byte - // IDLock must be taken before reading or writing the ID field in this struct, - // unless you have an exclusive lock on ContentLock. - IDLock sync.Mutex -} - -// Register creates an open file table entry for "qi" (or incrementes the -// reference count if the entry already exists) and returns the entry. -func Register(qi inomap.QIno) *Entry { - t.Lock() - defer t.Unlock() - - e := t.entries[qi] - if e == nil { - e = &Entry{} - t.entries[qi] = e - } - e.refCount++ - return e -} - -// Unregister decrements the reference count for "qi" and deletes the entry from -// the open file table if the reference count reaches 0. -func Unregister(qi inomap.QIno) { - t.Lock() - defer t.Unlock() - - e := t.entries[qi] - e.refCount-- - if e.refCount == 0 { - delete(t.entries, qi) - } -} - -// countingMutex incrementes t.writeLockCount on each Lock() call. -type countingMutex struct { - sync.RWMutex -} - -func (c *countingMutex) Lock() { - c.RWMutex.Lock() - atomic.AddUint64(&t.writeOpCount, 1) -} - -// WriteOpCount returns the write lock counter value. This value is incremented -// each time writeLock.Lock() on a file table entry is called. -func WriteOpCount() uint64 { - return atomic.LoadUint64(&t.writeOpCount) -} - -// CountOpenFiles returns how many entries are currently in the table -// in a threadsafe manner. -func CountOpenFiles() int { - t.Lock() - defer t.Unlock() - return len(t.entries) -} diff --git a/internal/pathiv/pathiv.go b/internal/pathiv/pathiv.go index 08042e9..db0f7af 100644 --- a/internal/pathiv/pathiv.go +++ b/internal/pathiv/pathiv.go @@ -4,7 +4,7 @@ import ( "crypto/sha256" "encoding/binary" - "github.com/rfjakob/gocryptfs/internal/nametransform" + "../nametransform" ) // Purpose identifies for which purpose the IV will be used. This is mixed into the diff --git a/internal/readpassword/extpass_test.go b/internal/readpassword/extpass_test.go deleted file mode 100644 index 9a643a5..0000000 --- a/internal/readpassword/extpass_test.go +++ /dev/null @@ -1,85 +0,0 @@ -package readpassword - -import ( - "os" - "os/exec" - "testing" - - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -var testPw = []byte("test") - -func TestMain(m *testing.M) { - // Shut up info output - tlog.Info.Enabled = false - os.Exit(m.Run()) -} - -func TestExtpass(t *testing.T) { - p1 := "ads2q4tw41reg52" - p2 := string(readPasswordExtpass([]string{"echo " + p1})) - if p1 != p2 { - t.Errorf("p1=%q != p2=%q", p1, p2) - } -} - -func TestOnceExtpass(t *testing.T) { - p1 := "lkadsf0923rdfi48rqwhdsf" - p2 := string(Once([]string{"echo " + p1}, nil, "")) - if p1 != p2 { - t.Errorf("p1=%q != p2=%q", p1, p2) - } -} - -// extpass with two arguments -func TestOnceExtpass2(t *testing.T) { - p1 := "foo" - p2 := string(Once([]string{"echo", p1}, nil, "")) - if p1 != p2 { - t.Errorf("p1=%q != p2=%q", p1, p2) - } -} - -// extpass with three arguments -func TestOnceExtpass3(t *testing.T) { - p1 := "foo bar baz" - p2 := string(Once([]string{"echo", "foo", "bar", "baz"}, nil, "")) - if p1 != p2 { - t.Errorf("p1=%q != p2=%q", p1, p2) - } -} - -func TestOnceExtpassSpaces(t *testing.T) { - p1 := "mypassword" - p2 := string(Once([]string{"cat", "passfile_test_files/file with spaces.txt"}, nil, "")) - if p1 != p2 { - t.Errorf("p1=%q != p2=%q", p1, p2) - } -} - -func TestTwiceExtpass(t *testing.T) { - p1 := "w5w44t3wfe45srz434" - p2 := string(Once([]string{"echo " + p1}, nil, "")) - if p1 != p2 { - t.Errorf("p1=%q != p2=%q", p1, p2) - } -} - -// When extpass returns an empty string, we should crash. -// -// The TEST_SLAVE magic is explained at -// https://talks.golang.org/2014/testing.slide#23 . -func TestExtpassEmpty(t *testing.T) { - if os.Getenv("TEST_SLAVE") == "1" { - readPasswordExtpass([]string{"echo"}) - return - } - cmd := exec.Command(os.Args[0], "-test.run=TestExtpassEmpty$") - cmd.Env = append(os.Environ(), "TEST_SLAVE=1") - err := cmd.Run() - if err != nil { - return - } - t.Fatal("empty password should have failed") -} diff --git a/internal/readpassword/passfile.go b/internal/readpassword/passfile.go deleted file mode 100644 index df6cd4d..0000000 --- a/internal/readpassword/passfile.go +++ /dev/null @@ -1,53 +0,0 @@ -package readpassword - -import ( - "bytes" - "os" - - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// readPassFileConcatenate reads the first line from each file name and -// concatenates the results. The result does not contain any newlines. -func readPassFileConcatenate(passfileSlice []string) (result []byte) { - for _, e := range passfileSlice { - result = append(result, readPassFile(e)...) - } - return result -} - -// readPassFile reads the first line from the passed file name. -func readPassFile(passfile string) []byte { - tlog.Info.Printf("passfile: reading from file %q", passfile) - f, err := os.Open(passfile) - if err != nil { - tlog.Fatal.Printf("fatal: passfile: could not open %q: %v", passfile, err) - os.Exit(exitcodes.ReadPassword) - } - defer f.Close() - // +1 for an optional trailing newline, - // +2 so we can detect if maxPasswordLen is exceeded. - buf := make([]byte, maxPasswordLen+2) - n, err := f.Read(buf) - if err != nil { - tlog.Fatal.Printf("fatal: passfile: could not read from %q: %v", passfile, err) - os.Exit(exitcodes.ReadPassword) - } - buf = buf[:n] - // Split into first line and "trailing garbage" - lines := bytes.SplitN(buf, []byte("\n"), 2) - if len(lines[0]) == 0 { - tlog.Fatal.Printf("fatal: passfile: empty first line in %q", passfile) - os.Exit(exitcodes.ReadPassword) - } - if len(lines[0]) > maxPasswordLen { - tlog.Fatal.Printf("fatal: passfile: max password length (%d bytes) exceeded", maxPasswordLen) - os.Exit(exitcodes.ReadPassword) - } - if len(lines) > 1 && len(lines[1]) > 0 { - tlog.Warn.Printf("warning: passfile: ignoring trailing garbage (%d bytes) after first line", - len(lines[1])) - } - return lines[0] -} diff --git a/internal/readpassword/passfile_test.go b/internal/readpassword/passfile_test.go deleted file mode 100644 index dbfe159..0000000 --- a/internal/readpassword/passfile_test.go +++ /dev/null @@ -1,102 +0,0 @@ -package readpassword - -import ( - "os" - "os/exec" - "testing" -) - -func TestPassfile(t *testing.T) { - testcases := []struct { - file string - want string - }{ - {"mypassword.txt", "mypassword"}, - {"mypassword_garbage.txt", "mypassword"}, - {"mypassword_missing_newline.txt", "mypassword"}, - {"file with spaces.txt", "mypassword"}, - } - for _, tc := range testcases { - pw := readPassFile("passfile_test_files/" + tc.file) - if string(pw) != tc.want { - t.Errorf("Wrong result: want=%q have=%q", tc.want, pw) - } - // Calling readPassFileConcatenate with only one element should give the - // same result - pw = readPassFileConcatenate([]string{"passfile_test_files/" + tc.file}) - if string(pw) != tc.want { - t.Errorf("Wrong result: want=%q have=%q", tc.want, pw) - } - } -} - -// readPassFile() should exit instead of returning an empty string. -// -// The TEST_SLAVE magic is explained at -// https://talks.golang.org/2014/testing.slide#23 , mirror: -// http://web.archive.org/web/20200426174352/https://talks.golang.org/2014/testing.slide#23 -func TestPassfileEmpty(t *testing.T) { - if os.Getenv("TEST_SLAVE") == "1" { - readPassFile("passfile_test_files/empty.txt") - return - } - cmd := exec.Command(os.Args[0], "-test.run=TestPassfileEmpty$") - cmd.Env = append(os.Environ(), "TEST_SLAVE=1") - err := cmd.Run() - if err != nil { - return - } - t.Fatal("should have exited") -} - -// File containing just a newline. -// readPassFile() should exit instead of returning an empty string. -// -// The TEST_SLAVE magic is explained at -// https://talks.golang.org/2014/testing.slide#23 , mirror: -// http://web.archive.org/web/20200426174352/https://talks.golang.org/2014/testing.slide#23 -func TestPassfileNewline(t *testing.T) { - if os.Getenv("TEST_SLAVE") == "1" { - readPassFile("passfile_test_files/newline.txt") - return - } - cmd := exec.Command(os.Args[0], "-test.run=TestPassfileNewline$") - cmd.Env = append(os.Environ(), "TEST_SLAVE=1") - err := cmd.Run() - if err != nil { - return - } - t.Fatal("should have exited") -} - -// File containing "\ngarbage". -// readPassFile() should exit instead of returning an empty string. -// -// The TEST_SLAVE magic is explained at -// https://talks.golang.org/2014/testing.slide#23 , mirror: -// http://web.archive.org/web/20200426174352/https://talks.golang.org/2014/testing.slide#23 -func TestPassfileEmptyFirstLine(t *testing.T) { - if os.Getenv("TEST_SLAVE") == "1" { - readPassFile("passfile_test_files/empty_first_line.txt") - return - } - cmd := exec.Command(os.Args[0], "-test.run=TestPassfileEmptyFirstLine$") - cmd.Env = append(os.Environ(), "TEST_SLAVE=1") - err := cmd.Run() - if err != nil { - return - } - t.Fatal("should have exited") -} - -// TestPassFileConcatenate tests readPassFileConcatenate -func TestPassFileConcatenate(t *testing.T) { - files := []string{ - "passfile_test_files/file with spaces.txt", - "passfile_test_files/mypassword_garbage.txt", - } - res := string(readPassFileConcatenate(files)) - if res != "mypasswordmypassword" { - t.Errorf("wrong result: %q", res) - } -} diff --git a/internal/readpassword/passfile_test_files/empty.txt b/internal/readpassword/passfile_test_files/empty.txt deleted file mode 100644 index e69de29..0000000 diff --git a/internal/readpassword/passfile_test_files/empty_first_line.txt b/internal/readpassword/passfile_test_files/empty_first_line.txt deleted file mode 100644 index a607e80..0000000 --- a/internal/readpassword/passfile_test_files/empty_first_line.txt +++ /dev/null @@ -1,2 +0,0 @@ - -garbage diff --git a/internal/readpassword/passfile_test_files/file with spaces.txt b/internal/readpassword/passfile_test_files/file with spaces.txt deleted file mode 100644 index 48d23cf..0000000 --- a/internal/readpassword/passfile_test_files/file with spaces.txt +++ /dev/null @@ -1 +0,0 @@ -mypassword diff --git a/internal/readpassword/passfile_test_files/mypassword.txt b/internal/readpassword/passfile_test_files/mypassword.txt deleted file mode 100644 index 48d23cf..0000000 --- a/internal/readpassword/passfile_test_files/mypassword.txt +++ /dev/null @@ -1 +0,0 @@ -mypassword diff --git a/internal/readpassword/passfile_test_files/mypassword_garbage.txt b/internal/readpassword/passfile_test_files/mypassword_garbage.txt deleted file mode 100644 index 74ba741..0000000 --- a/internal/readpassword/passfile_test_files/mypassword_garbage.txt +++ /dev/null @@ -1,2 +0,0 @@ -mypassword -garbage diff --git a/internal/readpassword/passfile_test_files/mypassword_missing_newline.txt b/internal/readpassword/passfile_test_files/mypassword_missing_newline.txt deleted file mode 100644 index b3c42b5..0000000 --- a/internal/readpassword/passfile_test_files/mypassword_missing_newline.txt +++ /dev/null @@ -1 +0,0 @@ -mypassword \ No newline at end of file diff --git a/internal/readpassword/passfile_test_files/newline.txt b/internal/readpassword/passfile_test_files/newline.txt deleted file mode 100644 index 8b13789..0000000 --- a/internal/readpassword/passfile_test_files/newline.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/internal/readpassword/read.go b/internal/readpassword/read.go deleted file mode 100644 index e116f0b..0000000 --- a/internal/readpassword/read.go +++ /dev/null @@ -1,159 +0,0 @@ -// Package readpassword reads a password from the terminal of from stdin. -package readpassword - -import ( - "bytes" - "fmt" - "io" - "os" - "os/exec" - "strings" - - "golang.org/x/crypto/ssh/terminal" - - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -const ( - // 2kB limit like EncFS - maxPasswordLen = 2048 -) - -// Once tries to get a password from the user, either from the terminal, extpass, passfile -// or stdin. Leave "prompt" empty to use the default "Password: " prompt. -func Once(extpass []string, passfile []string, prompt string) []byte { - if len(passfile) != 0 { - return readPassFileConcatenate(passfile) - } - if len(extpass) != 0 { - return readPasswordExtpass(extpass) - } - if prompt == "" { - prompt = "Password" - } - if !terminal.IsTerminal(int(os.Stdin.Fd())) { - return readPasswordStdin(prompt) - } - return readPasswordTerminal(prompt + ": ") -} - -// Twice is the same as Once but will prompt twice if we get the password from -// the terminal. -func Twice(extpass []string, passfile []string) []byte { - if len(passfile) != 0 { - return readPassFileConcatenate(passfile) - } - if len(extpass) != 0 { - return readPasswordExtpass(extpass) - } - if !terminal.IsTerminal(int(os.Stdin.Fd())) { - return readPasswordStdin("Password") - } - p1 := readPasswordTerminal("Password: ") - p2 := readPasswordTerminal("Repeat: ") - if !bytes.Equal(p1, p2) { - tlog.Fatal.Println("Passwords do not match") - os.Exit(exitcodes.ReadPassword) - } - // Wipe the password duplicate from memory - for i := range p2 { - p2[i] = 0 - } - return p1 -} - -// readPasswordTerminal reads a line from the terminal. -// Exits on read error or empty result. -func readPasswordTerminal(prompt string) []byte { - fd := int(os.Stdin.Fd()) - fmt.Fprintf(os.Stderr, prompt) - // terminal.ReadPassword removes the trailing newline - p, err := terminal.ReadPassword(fd) - if err != nil { - tlog.Fatal.Printf("Could not read password from terminal: %v\n", err) - os.Exit(exitcodes.ReadPassword) - } - fmt.Fprintf(os.Stderr, "\n") - if len(p) == 0 { - tlog.Fatal.Println("Password is empty") - os.Exit(exitcodes.PasswordEmpty) - } - return p -} - -// readPasswordStdin reads a line from stdin. -// It exits with a fatal error on read error or empty result. -func readPasswordStdin(prompt string) []byte { - tlog.Info.Printf("Reading %s from stdin", prompt) - p := readLineUnbuffered(os.Stdin) - if len(p) == 0 { - tlog.Fatal.Printf("Got empty %s from stdin", prompt) - os.Exit(exitcodes.ReadPassword) - } - return p -} - -// readPasswordExtpass executes the "extpass" program and returns the first line -// of the output. -// Exits on read error or empty result. -func readPasswordExtpass(extpass []string) []byte { - var parts []string - if len(extpass) == 1 { - parts = strings.Split(extpass[0], " ") - } else { - parts = extpass - } - tlog.Info.Printf("Reading password from extpass program %q, arguments: %q\n", parts[0], parts[1:]) - cmd := exec.Command(parts[0], parts[1:]...) - cmd.Stderr = os.Stderr - pipe, err := cmd.StdoutPipe() - if err != nil { - tlog.Fatal.Printf("extpass pipe setup failed: %v", err) - os.Exit(exitcodes.ReadPassword) - } - err = cmd.Start() - if err != nil { - tlog.Fatal.Printf("extpass cmd start failed: %v", err) - os.Exit(exitcodes.ReadPassword) - } - p := readLineUnbuffered(pipe) - pipe.Close() - err = cmd.Wait() - if err != nil { - tlog.Fatal.Printf("extpass program returned an error: %v", err) - os.Exit(exitcodes.ReadPassword) - } - if len(p) == 0 { - tlog.Fatal.Println("extpass: password is empty") - os.Exit(exitcodes.ReadPassword) - } - return p -} - -// readLineUnbuffered reads single bytes from "r" util it gets "\n" or EOF. -// The returned string does NOT contain the trailing "\n". -func readLineUnbuffered(r io.Reader) (l []byte) { - b := make([]byte, 1) - for { - if len(l) > maxPasswordLen { - tlog.Fatal.Printf("fatal: maximum password length of %d bytes exceeded", maxPasswordLen) - os.Exit(exitcodes.ReadPassword) - } - n, err := r.Read(b) - if err == io.EOF { - return l - } - if err != nil { - tlog.Fatal.Printf("readLineUnbuffered: %v", err) - os.Exit(exitcodes.ReadPassword) - } - if n == 0 { - continue - } - if b[0] == '\n' { - return l - } - l = append(l, b...) - } -} diff --git a/internal/readpassword/stdin_test.go b/internal/readpassword/stdin_test.go deleted file mode 100644 index 01dd701..0000000 --- a/internal/readpassword/stdin_test.go +++ /dev/null @@ -1,100 +0,0 @@ -package readpassword - -import ( - "fmt" - "os" - "os/exec" - "testing" -) - -// Provide password via stdin, terminated by "\n". -func TestStdin(t *testing.T) { - p1 := "g55434t55wef" - if os.Getenv("TEST_SLAVE") == "1" { - p2 := string(readPasswordStdin("foo")) - if p1 != p2 { - fmt.Fprintf(os.Stderr, "%q != %q", p1, p2) - os.Exit(1) - } - return - } - cmd := exec.Command(os.Args[0], "-test.run=TestStdin$") - cmd.Env = append(os.Environ(), "TEST_SLAVE=1") - cmd.Stderr = os.Stderr - pipe, err := cmd.StdinPipe() - if err != nil { - t.Fatal(err) - } - err = cmd.Start() - if err != nil { - t.Fatal(err) - } - n, err := pipe.Write([]byte(p1 + "\n")) - if n == 0 || err != nil { - t.Fatal(err) - } - err = cmd.Wait() - if err != nil { - t.Fatalf("slave failed with %v", err) - } -} - -// Provide password via stdin, terminated by EOF (pipe close). This should not -// hang. -func TestStdinEof(t *testing.T) { - p1 := "asd45as5f4a36" - if os.Getenv("TEST_SLAVE") == "1" { - p2 := string(readPasswordStdin("foo")) - if p1 != p2 { - fmt.Fprintf(os.Stderr, "%q != %q", p1, p2) - os.Exit(1) - } - return - } - cmd := exec.Command(os.Args[0], "-test.run=TestStdinEof$") - cmd.Env = append(os.Environ(), "TEST_SLAVE=1") - cmd.Stderr = os.Stderr - pipe, err := cmd.StdinPipe() - if err != nil { - t.Fatal(err) - } - err = cmd.Start() - if err != nil { - t.Fatal(err) - } - _, err = pipe.Write([]byte(p1)) - if err != nil { - t.Fatal(err) - } - pipe.Close() - err = cmd.Wait() - if err != nil { - t.Fatalf("slave failed with %v", err) - } -} - -// Provide empty password via stdin -func TestStdinEmpty(t *testing.T) { - if os.Getenv("TEST_SLAVE") == "1" { - readPasswordStdin("foo") - } - cmd := exec.Command(os.Args[0], "-test.run=TestStdinEmpty$") - cmd.Env = append(os.Environ(), "TEST_SLAVE=1") - pipe, err := cmd.StdinPipe() - if err != nil { - t.Fatal(err) - } - err = cmd.Start() - if err != nil { - t.Fatal(err) - } - _, err = pipe.Write([]byte("\n")) - if err != nil { - t.Fatal(err) - } - pipe.Close() - err = cmd.Wait() - if err == nil { - t.Fatalf("empty password should have failed") - } -} diff --git a/internal/serialize_reads/sr.go b/internal/serialize_reads/sr.go deleted file mode 100644 index 96cec4f..0000000 --- a/internal/serialize_reads/sr.go +++ /dev/null @@ -1,150 +0,0 @@ -package serialize_reads - -import ( - "log" - "sync" - "time" - - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// serializerState is used by the Wait and Done functions -type serializerState struct { - // we get submissions through the "input" channel - input chan *submission - // q = Queue - q []*submission - // wg is used to wait for the read to complete before unblocking the next - wg sync.WaitGroup -} - -// Wait places the caller into a queue and blocks -func Wait(offset int64, size int) { - serializer.wait(offset, size) -} - -// Done signals that the read operation has finished -func Done() { - serializer.wg.Done() -} - -type submission struct { - // "ch" is closed by "eventLoop" once it wants to unblock the caller - ch chan struct{} - // submissions are prioritized by offset (lowest offset gets unblocked first) - offset int64 - // size will be used in the future to detect consecutive read requests. These - // can be unblocked immediately. - size int -} - -func (sr *serializerState) wait(offset int64, size int) { - ch := make(chan struct{}) - sb := &submission{ - ch: ch, - offset: offset, - size: size, - } - // Send our submission - sr.input <- sb - // Wait till we get unblocked - <-ch -} - -// push returns true if the queue is full after the element has been stored. -// It panics if it did not have space to store the element. -func (sr *serializerState) push(sb *submission) (full bool) { - free := 0 - stored := false - for i, v := range sr.q { - if v != nil { - continue - } - if !stored { - sr.q[i] = sb - stored = true - continue - } - free++ - } - if !stored { - // This should never happen because eventLoop checks if the queue got full - log.Panic("BUG: unhandled queue overflow") - } - if free == 0 { - return true - } - return false -} - -// pop the submission with the lowest offset off the queue -func (sr *serializerState) pop() *submission { - var winner *submission - var winnerIndex int - for i, v := range sr.q { - if v == nil { - continue - } - if winner == nil { - winner = v - winnerIndex = i - continue - } - if v.offset < winner.offset { - winner = v - winnerIndex = i - } - } - if winner == nil { - return nil - } - sr.q[winnerIndex] = nil - return winner -} - -func (sr *serializerState) eventLoop() { - sr.input = make(chan *submission) - empty := true - for { - if empty { - // If the queue is empty we block on the channel to conserve CPU - sb := <-sr.input - sr.push(sb) - empty = false - } - select { - case sb := <-sr.input: - full := sr.push(sb) - if full { - // Queue is full, unblock the new request immediately - tlog.Warn.Printf("serialize_reads: queue full, forcing unblock") - sr.unblockOne() - } - case <-time.After(time.Microsecond * 500): - // Looks like we have waited out all concurrent requests. - empty = sr.unblockOne() - } - } -} - -// Unblock a submission and wait for completion -func (sr *serializerState) unblockOne() (empty bool) { - winner := sr.pop() - if winner == nil { - return true - } - sr.wg.Add(1) - close(winner.ch) - sr.wg.Wait() - return false -} - -var serializer serializerState - -// InitSerializer sets up the internal serializer state and starts the event loop. -// Called by fusefrontend.NewFS. -func InitSerializer() { - serializer.input = make(chan *submission) - serializer.q = make([]*submission, 10) - go serializer.eventLoop() -} diff --git a/internal/siv_aead/benchmark.bash b/internal/siv_aead/benchmark.bash deleted file mode 100755 index 40b57b3..0000000 --- a/internal/siv_aead/benchmark.bash +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -set -eu - -cd "$(dirname "$0")" - -../stupidgcm/benchmark.bash diff --git a/internal/siv_aead/correctness_test.go b/internal/siv_aead/correctness_test.go deleted file mode 100644 index b52774b..0000000 --- a/internal/siv_aead/correctness_test.go +++ /dev/null @@ -1,148 +0,0 @@ -package siv_aead - -import ( - "bytes" - "encoding/hex" - "testing" - - "github.com/jacobsa/crypto/siv" -) - -// Test all supported key lengths -func TestKeyLens(t *testing.T) { - keyLens := []int{32, 48, 64} - nonce := make([]byte, 16) - plaintext := []byte("foobar") - for _, keyLen := range keyLens { - key := make([]byte, keyLen) - a := new2(key) - ciphertext2 := a.Seal(nil, nonce, plaintext, nil) - - ciphertext, err := siv.Encrypt(nil, key, plaintext, [][]byte{nil, nonce}) - if err != nil { - t.Error(err) - } else if o := len(ciphertext) - len(plaintext); o != a.Overhead() { - t.Errorf("keyLen=%d, actual overhead: %d\n", keyLen, o) - } - if !bytes.Equal(ciphertext, ciphertext2) { - t.Errorf("siv and siv_aead produce different results") - } - } - -} - -// Test using a 32-byte key -func TestK32(t *testing.T) { - key := bytes.Repeat([]byte{1}, 32) - nonce := bytes.Repeat([]byte{2}, 16) - plaintext := []byte{1, 2, 3, 4, 5, 6, 7, 8, 9} - aData := make([]byte, 24) - // Compare siv and siv_aead results - sResult, err := siv.Encrypt(nonce, key, plaintext, [][]byte{aData, nonce}) - if err != nil { - t.Fatal(err) - } - a := new2(key) - aResult := a.Seal(nonce, nonce, plaintext, aData) - if !bytes.Equal(sResult, aResult) { - t.Errorf("siv and siv_aead produce different results") - } - expectedResult, _ := hex.DecodeString( - "02020202020202020202020202020202ad7a4010649a84d8c1dd5f752e935eed57d45b8b10008f3834") - if !bytes.Equal(aResult, expectedResult) { - t.Errorf(hex.EncodeToString(aResult)) - } - // Verify overhead - overhead := len(aResult) - len(plaintext) - len(nonce) - if overhead != a.Overhead() { - t.Errorf("Overhead() returns a wrong value") - } - // Decrypt - p1, err := a.Open(nil, aResult[:16], aResult[16:], aData) - if err != nil { - t.Error(err) - } - if !bytes.Equal(plaintext, p1) { - t.Errorf("wrong plaintext") - } - // Decrypt and append - dst := []byte{0xaa, 0xbb, 0xcc} - p2, err := a.Open(dst, aResult[:16], aResult[16:], aData) - if err != nil { - t.Error(err) - } - p2e := append(dst, plaintext...) - if !bytes.Equal(p2e, p2) { - t.Errorf("wrong plaintext: %s", hex.EncodeToString(p2)) - } - // Decrypt corrupt - aResult[17] = 0 - _, err = a.Open(nil, aResult[:16], aResult[16:], aData) - if err == nil { - t.Error("should have failed") - } - // Decrypt and append corrupt - aResult[17] = 0 - _, err = a.Open(dst, aResult[:16], aResult[16:], aData) - if err == nil { - t.Error("should have failed") - } -} - -// Test using a 64-byte key -func TestK64(t *testing.T) { - key := bytes.Repeat([]byte{1}, 64) - nonce := bytes.Repeat([]byte{2}, 16) - plaintext := []byte{1, 2, 3, 4, 5, 6, 7, 8, 9} - aData := make([]byte, 24) - // Compare siv and siv_aead results - sResult, err := siv.Encrypt(nonce, key, plaintext, [][]byte{aData, nonce}) - if err != nil { - t.Fatal(err) - } - a := New(key) - aResult := a.Seal(nonce, nonce, plaintext, aData) - if !bytes.Equal(sResult, aResult) { - t.Errorf("siv and siv_aead produce different results") - } - expectedResult, _ := hex.DecodeString( - "02020202020202020202020202020202317b316f67c3ad336c01c9a01b4c5e552ba89e966bc4c1ade1") - if !bytes.Equal(aResult, expectedResult) { - t.Errorf(hex.EncodeToString(aResult)) - } - // Verify overhead - overhead := len(aResult) - len(plaintext) - len(nonce) - if overhead != a.Overhead() { - t.Errorf("Overhead() returns a wrong value") - } - // Decrypt - p1, err := a.Open(nil, aResult[:16], aResult[16:], aData) - if err != nil { - t.Error(err) - } - if !bytes.Equal(plaintext, p1) { - t.Errorf("wrong plaintext") - } - // Decrypt and append - dst := []byte{0xaa, 0xbb, 0xcc} - p2, err := a.Open(dst, aResult[:16], aResult[16:], aData) - if err != nil { - t.Error(err) - } - p2e := append(dst, plaintext...) - if !bytes.Equal(p2e, p2) { - t.Errorf("wrong plaintext: %s", hex.EncodeToString(p2)) - } - // Decrypt corrupt - aResult[17] = 0 - _, err = a.Open(nil, aResult[:16], aResult[16:], aData) - if err == nil { - t.Error("should have failed") - } - // Decrypt and append corrupt - aResult[17] = 0 - _, err = a.Open(dst, aResult[:16], aResult[16:], aData) - if err == nil { - t.Error("should have failed") - } -} diff --git a/internal/siv_aead/performance_test.go b/internal/siv_aead/performance_test.go deleted file mode 100644 index 626024e..0000000 --- a/internal/siv_aead/performance_test.go +++ /dev/null @@ -1 +0,0 @@ -package siv_aead diff --git a/internal/speed/benchmark.bash b/internal/speed/benchmark.bash deleted file mode 100755 index d2678a7..0000000 --- a/internal/speed/benchmark.bash +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -set -eu - -cd "$(dirname "$0")" - -go test -bench . diff --git a/internal/speed/speed.go b/internal/speed/speed.go deleted file mode 100644 index e097c55..0000000 --- a/internal/speed/speed.go +++ /dev/null @@ -1,148 +0,0 @@ -// Package speed implements the "-speed" command-line option, -// similar to "openssl speed". -// It benchmarks the crypto algorithms and libraries used by -// gocryptfs. -package speed - -import ( - "crypto/aes" - "crypto/cipher" - "crypto/rand" - "fmt" - "log" - "testing" - - "golang.org/x/crypto/chacha20poly1305" - - "github.com/rfjakob/gocryptfs/internal/siv_aead" - "github.com/rfjakob/gocryptfs/internal/stupidgcm" -) - -// 128-bit file ID + 64 bit block number = 192 bits = 24 bytes -const adLen = 24 - -// gocryptfs uses fixed-size 4 kiB blocks -const blockSize = 4096 - -// Run - run the speed the test and print the results. -func Run() { - bTable := []struct { - name string - f func(*testing.B) - preferred bool - }{ - {name: "AES-GCM-256-OpenSSL", f: bStupidGCM, preferred: stupidgcm.PreferOpenSSL()}, - {name: "AES-GCM-256-Go", f: bGoGCM, preferred: !stupidgcm.PreferOpenSSL()}, - {name: "AES-SIV-512-Go", f: bAESSIV, preferred: false}, - {name: "XChaCha20-Poly1305-Go", f: bChacha20poly1305, preferred: false}, - } - for _, b := range bTable { - fmt.Printf("%-20s\t", b.name) - mbs := mbPerSec(testing.Benchmark(b.f)) - if mbs > 0 { - fmt.Printf("%7.2f MB/s", mbs) - } else { - fmt.Printf(" N/A") - } - if b.preferred { - fmt.Printf("\t(selected in auto mode)\n") - } else if b.name == "XChaCha20-Poly1305-Go" { - fmt.Printf("\t(benchmark only, not selectable yet)\n") - } else { - fmt.Printf("\t\n") - } - } -} - -func mbPerSec(r testing.BenchmarkResult) float64 { - if r.Bytes <= 0 || r.T <= 0 || r.N <= 0 { - return 0 - } - return (float64(r.Bytes) * float64(r.N) / 1e6) / r.T.Seconds() -} - -// Get "n" random bytes from /dev/urandom or panic -func randBytes(n int) []byte { - b := make([]byte, n) - _, err := rand.Read(b) - if err != nil { - log.Panic("Failed to read random bytes: " + err.Error()) - } - return b -} - -// bStupidGCM benchmarks stupidgcm's openssl GCM -func bStupidGCM(b *testing.B) { - if stupidgcm.BuiltWithoutOpenssl { - b.Skip("openssl has been disabled at compile-time") - } - key := randBytes(32) - authData := randBytes(adLen) - iv := randBytes(16) - in := make([]byte, blockSize) - b.SetBytes(int64(len(in))) - - sGCM := stupidgcm.New(key, false) - - b.ResetTimer() - for i := 0; i < b.N; i++ { - // Encrypt and append to nonce - sGCM.Seal(iv, iv, in, authData) - } -} - -// bGoGCM benchmarks Go stdlib GCM -func bGoGCM(b *testing.B) { - key := randBytes(32) - authData := randBytes(adLen) - iv := randBytes(16) - in := make([]byte, blockSize) - b.SetBytes(int64(len(in))) - - gAES, err := aes.NewCipher(key) - if err != nil { - b.Fatal(err) - } - gGCM, err := cipher.NewGCMWithNonceSize(gAES, 16) - if err != nil { - b.Fatal(err) - } - - b.ResetTimer() - for i := 0; i < b.N; i++ { - // Encrypt and append to nonce - gGCM.Seal(iv, iv, in, authData) - } -} - -// bAESSIV benchmarks AES-SIV from github.com/jacobsa/crypto/siv -func bAESSIV(b *testing.B) { - key := randBytes(64) - authData := randBytes(adLen) - iv := randBytes(16) - in := make([]byte, blockSize) - b.SetBytes(int64(len(in))) - gGCM := siv_aead.New(key) - - b.ResetTimer() - for i := 0; i < b.N; i++ { - // Encrypt and append to nonce - gGCM.Seal(iv, iv, in, authData) - } -} - -// bChacha20poly1305 benchmarks XChaCha20 from golang.org/x/crypto/chacha20poly1305 -func bChacha20poly1305(b *testing.B) { - key := randBytes(32) - authData := randBytes(adLen) - iv := randBytes(chacha20poly1305.NonceSizeX) - in := make([]byte, blockSize) - b.SetBytes(int64(len(in))) - c, _ := chacha20poly1305.NewX(key) - - b.ResetTimer() - for i := 0; i < b.N; i++ { - // Encrypt and append to nonce - c.Seal(iv, iv, in, authData) - } -} diff --git a/internal/speed/speed_test.go b/internal/speed/speed_test.go deleted file mode 100644 index 1e9d859..0000000 --- a/internal/speed/speed_test.go +++ /dev/null @@ -1,29 +0,0 @@ -package speed - -/* -Make the "-speed" benchmarks also accessible to the standard test system. -Example run: - -$ go test -bench . -BenchmarkStupidGCM-2 100000 22552 ns/op 181.62 MB/s -BenchmarkGoGCM-2 20000 81871 ns/op 50.03 MB/s -BenchmarkAESSIV-2 10000 104623 ns/op 39.15 MB/s -PASS -ok github.com/rfjakob/gocryptfs/internal/speed 6.022s -*/ - -import ( - "testing" -) - -func BenchmarkStupidGCM(b *testing.B) { - bStupidGCM(b) -} - -func BenchmarkGoGCM(b *testing.B) { - bGoGCM(b) -} - -func BenchmarkAESSIV(b *testing.B) { - bAESSIV(b) -} diff --git a/internal/stupidgcm/stupidgcm_test.go b/internal/stupidgcm/stupidgcm_test.go deleted file mode 100644 index 18732df..0000000 --- a/internal/stupidgcm/stupidgcm_test.go +++ /dev/null @@ -1,195 +0,0 @@ -// +build !without_openssl - -// We compare against Go's built-in GCM implementation. Since stupidgcm only -// supports 128-bit IVs and Go only supports that from 1.5 onward, we cannot -// run these tests on older Go versions. -package stupidgcm - -import ( - "bytes" - "crypto/aes" - "crypto/cipher" - "crypto/rand" - "encoding/hex" - "log" - "testing" -) - -// Get "n" random bytes from /dev/urandom or panic -func randBytes(n int) []byte { - b := make([]byte, n) - _, err := rand.Read(b) - if err != nil { - log.Panic("Failed to read random bytes: " + err.Error()) - } - return b -} - -// TestEncryptDecrypt encrypts and decrypts using both stupidgcm and Go's built-in -// GCM implementation and verifies that the results are identical. -func TestEncryptDecrypt(t *testing.T) { - key := randBytes(32) - sGCM := New(key, false) - authData := randBytes(24) - iv := randBytes(16) - dst := make([]byte, 71) // 71 = random length - - gAES, err := aes.NewCipher(key) - if err != nil { - t.Fatal(err) - } - gGCM, err := cipher.NewGCMWithNonceSize(gAES, 16) - if err != nil { - t.Fatal(err) - } - - // Check all block sizes from 1 to 5000 - for i := 1; i < 5000; i++ { - in := make([]byte, i) - - sOut := sGCM.Seal(dst, iv, in, authData) - gOut := gGCM.Seal(dst, iv, in, authData) - - // Ciphertext must be identical to Go GCM - if !bytes.Equal(sOut, gOut) { - t.Fatalf("Compare failed for encryption, size %d", i) - t.Log("sOut:") - t.Log("\n" + hex.Dump(sOut)) - t.Log("gOut:") - t.Log("\n" + hex.Dump(gOut)) - } - - sOut2, sErr := sGCM.Open(dst, iv, sOut[len(dst):], authData) - if sErr != nil { - t.Fatal(sErr) - } - gOut2, gErr := gGCM.Open(dst, iv, gOut[len(dst):], authData) - if gErr != nil { - t.Fatal(gErr) - } - - // Plaintext must be identical to Go GCM - if !bytes.Equal(sOut2, gOut2) { - t.Fatalf("Compare failed for decryption, size %d", i) - } - } -} - -// Seal re-uses the "dst" buffer it is large enough. -// Check that this works correctly by testing different "dst" capacities from -// 5000 to 16 and "in" lengths from 1 to 5000. -func TestInplaceSeal(t *testing.T) { - key := randBytes(32) - sGCM := New(key, false) - authData := randBytes(24) - iv := randBytes(16) - - gAES, err := aes.NewCipher(key) - if err != nil { - t.Fatal(err) - } - gGCM, err := cipher.NewGCMWithNonceSize(gAES, 16) - if err != nil { - t.Fatal(err) - } - max := 5016 - // Check all block sizes from 1 to 5000 - for i := 1; i < max-16; i++ { - in := make([]byte, i) - dst := make([]byte, max-i) - dst = dst[:16] - - sOut := sGCM.Seal(dst, iv, in, authData) - dst2 := make([]byte, 16) - gOut := gGCM.Seal(dst2, iv, in, authData) - - // Ciphertext must be identical to Go GCM - if !bytes.Equal(sOut, gOut) { - t.Fatalf("Compare failed for encryption, size %d", i) - t.Log("sOut:") - t.Log("\n" + hex.Dump(sOut)) - t.Log("gOut:") - t.Log("\n" + hex.Dump(gOut)) - } - } -} - -// Open re-uses the "dst" buffer it is large enough. -// Check that this works correctly by testing different "dst" capacities from -// 5000 to 16 and "in" lengths from 1 to 5000. -func TestInplaceOpen(t *testing.T) { - key := randBytes(32) - sGCM := New(key, false) - authData := randBytes(24) - iv := randBytes(16) - - gAES, err := aes.NewCipher(key) - if err != nil { - t.Fatal(err) - } - gGCM, err := cipher.NewGCMWithNonceSize(gAES, 16) - if err != nil { - t.Fatal(err) - } - max := 5016 - // Check all block sizes from 1 to 5000 - for i := 1; i < max-16; i++ { - in := make([]byte, i) - - gCiphertext := gGCM.Seal(iv, iv, in, authData) - - dst := make([]byte, max-i) - // sPlaintext ... stupidgcm plaintext - sPlaintext, err := sGCM.Open(dst[:0], iv, gCiphertext[16:], authData) - if err != nil { - t.Fatal(err) - } - - // Plaintext must be identical to Go GCM - if !bytes.Equal(in, sPlaintext) { - t.Fatalf("Compare failed, i=%d", i) - } - } -} - -// TestCorruption verifies that changes in the ciphertext result in a decryption -// error -func TestCorruption(t *testing.T) { - key := randBytes(32) - sGCM := New(key, false) - authData := randBytes(24) - iv := randBytes(16) - - in := make([]byte, 354) - sOut := sGCM.Seal(nil, iv, in, authData) - sOut2, sErr := sGCM.Open(nil, iv, sOut, authData) - if sErr != nil { - t.Fatal(sErr) - } - if !bytes.Equal(in, sOut2) { - t.Fatalf("Compare failed") - } - - // Corrupt first byte - sOut[0]++ - sOut2, sErr = sGCM.Open(nil, iv, sOut, authData) - if sErr == nil || sOut2 != nil { - t.Fatalf("Should have gotten error") - } - sOut[0]-- - - // Corrupt last byte - sOut[len(sOut)-1]++ - sOut2, sErr = sGCM.Open(nil, iv, sOut, authData) - if sErr == nil || sOut2 != nil { - t.Fatalf("Should have gotten error") - } - sOut[len(sOut)-1]-- - - // Append one byte - sOut = append(sOut, 0) - sOut2, sErr = sGCM.Open(nil, iv, sOut, authData) - if sErr == nil || sOut2 != nil { - t.Fatalf("Should have gotten error") - } -} diff --git a/internal/stupidgcm/without_openssl.go b/internal/stupidgcm/without_openssl.go index deac342..d420da3 100644 --- a/internal/stupidgcm/without_openssl.go +++ b/internal/stupidgcm/without_openssl.go @@ -6,7 +6,7 @@ import ( "fmt" "os" - "github.com/rfjakob/gocryptfs/internal/exitcodes" + "../exitcodes" ) type StupidGCM struct{} diff --git a/internal/syscallcompat/emulate.go b/internal/syscallcompat/emulate.go deleted file mode 100644 index 91b592b..0000000 --- a/internal/syscallcompat/emulate.go +++ /dev/null @@ -1,29 +0,0 @@ -package syscallcompat - -import ( - "path/filepath" - "sync" - "syscall" -) - -var chdirMutex sync.Mutex - -// emulateMknodat emulates the syscall for platforms that don't have it -// in the kernel (darwin). -func emulateMknodat(dirfd int, path string, mode uint32, dev int) error { - if !filepath.IsAbs(path) { - chdirMutex.Lock() - defer chdirMutex.Unlock() - cwd, err := syscall.Open(".", syscall.O_RDONLY, 0) - if err != nil { - return err - } - defer syscall.Close(cwd) - err = syscall.Fchdir(dirfd) - if err != nil { - return err - } - defer syscall.Fchdir(cwd) - } - return syscall.Mknod(path, mode, dev) -} diff --git a/internal/syscallcompat/emulate_test.go b/internal/syscallcompat/emulate_test.go deleted file mode 100644 index 16383f2..0000000 --- a/internal/syscallcompat/emulate_test.go +++ /dev/null @@ -1,28 +0,0 @@ -package syscallcompat - -import ( - "os" - "testing" - - "golang.org/x/sys/unix" -) - -func TestEmulateMknodat(t *testing.T) { - err := emulateMknodat(tmpDirFd, "fifo1", unix.S_IFIFO, 0) - if err != nil { - t.Fatal(err) - } - _, err = os.Stat(tmpDir + "/fifo1") - if err != nil { - t.Fatal(err) - } - // Test with absolute path - err = emulateMknodat(-1, tmpDir+"/fifo2", unix.S_IFIFO, 0) - if err != nil { - t.Fatal(err) - } - _, err = os.Stat(tmpDir + "/fifo2") - if err != nil { - t.Fatal(err) - } -} diff --git a/internal/syscallcompat/getdents_linux.go b/internal/syscallcompat/getdents_linux.go index 852b3cd..df886b4 100644 --- a/internal/syscallcompat/getdents_linux.go +++ b/internal/syscallcompat/getdents_linux.go @@ -13,10 +13,6 @@ import ( "unsafe" "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/tlog" ) const sizeofDirent = int(unsafe.Sizeof(unix.Dirent{})) @@ -26,8 +22,13 @@ const sizeofDirent = int(unsafe.Sizeof(unix.Dirent{})) // See https://github.com/rfjakob/gocryptfs/issues/197 for details. const maxReclen = 280 +type DirEntry struct { + Name string + Mode uint32 +} + // getdents wraps unix.Getdents and converts the result to []fuse.DirEntry. -func getdents(fd int) (entries []fuse.DirEntry, entriesSpecial []fuse.DirEntry, err error) { +func getdents(fd int) (entries []DirEntry, entriesSpecial []DirEntry, err error) { // Collect syscall result in smartBuf. // "bytes.Buffer" is smart about expanding the capacity and avoids the // exponential runtime of simple append(). @@ -43,7 +44,6 @@ func getdents(fd int) (entries []fuse.DirEntry, entriesSpecial []fuse.DirEntry, continue } else if err != nil { if smartBuf.Len() > 0 { - tlog.Warn.Printf("warning: unix.Getdents returned errno %d in the middle of data ( https://github.com/rfjakob/gocryptfs/issues/483 )", err.(syscall.Errno)) return nil, nil, syscall.EIO } return nil, nil, err @@ -63,14 +63,10 @@ func getdents(fd int) (entries []fuse.DirEntry, entriesSpecial []fuse.DirEntry, for offset < len(buf) { s := *(*unix.Dirent)(unsafe.Pointer(&buf[offset])) if s.Reclen == 0 { - tlog.Warn.Printf("Getdents: corrupt entry #%d: Reclen=0 at offset=%d. Returning EBADR", - numEntries, offset) // EBADR = Invalid request descriptor return nil, nil, syscall.EBADR } if int(s.Reclen) > maxReclen { - tlog.Warn.Printf("Getdents: corrupt entry #%d: Reclen=%d > %d. Returning EBADR", - numEntries, s.Reclen, maxReclen) return nil, nil, syscall.EBADR } offset += int(s.Reclen) @@ -80,7 +76,7 @@ func getdents(fd int) (entries []fuse.DirEntry, entriesSpecial []fuse.DirEntry, // Note: syscall.ParseDirent() only returns the names, // we want all the data, so we have to implement // it on our own. - entries = make([]fuse.DirEntry, 0, numEntries) + entries = make([]DirEntry, 0, numEntries) offset = 0 for offset < len(buf) { s := *(*unix.Dirent)(unsafe.Pointer(&buf[offset])) @@ -91,8 +87,7 @@ func getdents(fd int) (entries []fuse.DirEntry, entriesSpecial []fuse.DirEntry, offset += int(s.Reclen) if name == "." || name == ".." { // These are always directories, no need to call convertDType. - entriesSpecial = append(entriesSpecial, fuse.DirEntry{ - Ino: s.Ino, + entriesSpecial = append(entriesSpecial, DirEntry{ Mode: syscall.S_IFDIR, Name: name, }) @@ -104,8 +99,7 @@ func getdents(fd int) (entries []fuse.DirEntry, entriesSpecial []fuse.DirEntry, // and go on. continue } - entries = append(entries, fuse.DirEntry{ - Ino: s.Ino, + entries = append(entries, DirEntry{ Mode: mode, Name: name, }) @@ -124,7 +118,6 @@ func getdentsName(s unix.Dirent) (string, error) { } } if l < 1 { - tlog.Warn.Printf("Getdents: invalid name length l=%d. Returning EBADR", l) // EBADR = Invalid request descriptor return "", syscall.EBADR } @@ -139,18 +132,8 @@ func getdentsName(s unix.Dirent) (string, error) { var dtUnknownWarnOnce sync.Once func dtUnknownWarn(dirfd int) { - const XFS_SUPER_MAGIC = 0x58465342 // From man 2 statfs var buf syscall.Statfs_t - err := syscall.Fstatfs(dirfd, &buf) - if err == nil && buf.Type == XFS_SUPER_MAGIC { - // Old XFS filesystems always return DT_UNKNOWN. Downgrade the message - // to "info" level if we are on XFS. - // https://github.com/rfjakob/gocryptfs/issues/267 - tlog.Info.Printf("Getdents: convertDType: received DT_UNKNOWN, fstype=xfs, falling back to stat") - } else { - tlog.Warn.Printf("Getdents: convertDType: received DT_UNKNOWN, fstype=%#x, falling back to stat", - buf.Type) - } + syscall.Fstatfs(dirfd, &buf) } // convertDType converts a Dirent.Type to at Stat_t.Mode value. diff --git a/internal/syscallcompat/getdents_other.go b/internal/syscallcompat/getdents_other.go deleted file mode 100644 index 1ed5ecf..0000000 --- a/internal/syscallcompat/getdents_other.go +++ /dev/null @@ -1,61 +0,0 @@ -package syscallcompat - -import ( - "os" - "syscall" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fuse" -) - -func fillDirEntries(fd int, names []string) ([]fuse.DirEntry, error) { - out := make([]fuse.DirEntry, 0, len(names)) - for _, name := range names { - var st unix.Stat_t - err := Fstatat(fd, name, &st, unix.AT_SYMLINK_NOFOLLOW) - if err == syscall.ENOENT { - // File disappeared between readdir and stat. Pretend we did not - // see it. - continue - } - if err != nil { - return nil, err - } - newEntry := fuse.DirEntry{ - Name: name, - Mode: uint32(st.Mode) & syscall.S_IFMT, - Ino: st.Ino, - } - out = append(out, newEntry) - } - return out, nil -} - -// emulateGetdents reads all directory entries from the open directory "fd" -// and returns normal entries and "." / ".." split into two slices. -func emulateGetdents(fd int) (out []fuse.DirEntry, outSpecial []fuse.DirEntry, err error) { - // os.File closes the fd in its finalizer. Duplicate the fd to not affect - // the original fd. - newFd, err := syscall.Dup(fd) - if err != nil { - return nil, nil, err - } - f := os.NewFile(uintptr(newFd), "") - defer f.Close() - // Get all file names in the directory - names, err := f.Readdirnames(0) - if err != nil { - return nil, nil, err - } - // Stat all the names and convert to fuse.DirEntry - out, err = fillDirEntries(fd, names) - if err != nil { - return nil, nil, err - } - outSpecial, err = fillDirEntries(fd, []string{".", ".."}) - if err != nil { - return nil, nil, err - } - return out, outSpecial, nil -} diff --git a/internal/syscallcompat/getdents_test.go b/internal/syscallcompat/getdents_test.go deleted file mode 100644 index a6f41ca..0000000 --- a/internal/syscallcompat/getdents_test.go +++ /dev/null @@ -1,133 +0,0 @@ -// +build linux - -package syscallcompat - -import ( - "io/ioutil" - "os" - "runtime" - "strings" - "syscall" - "testing" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fuse" -) - -var emulate = false - -func TestGetdents(t *testing.T) { - t.Logf("testing native getdents") - testGetdents(t) - t.Logf("testing emulateGetdents") - emulate = true - testGetdents(t) -} - -// skipOnGccGo skips the emulateGetdents test when we are -// running linux and were compiled with gccgo. The test is known to fail -// (https://github.com/rfjakob/gocryptfs/issues/201), but getdents emulation -// is not used on linux, so let's skip the test and ignore the failure. -func skipOnGccGo(t *testing.T) { - if !emulate || runtime.GOOS != "linux" { - return - } - // runtime.Version() output... - // on go: go1.9.2 - // on gccgo: go1.8.1 gccgo (GCC) 7.2.1 20170915 (Red Hat 7.2.1-2) - v := runtime.Version() - if strings.Contains(v, "gccgo") { - t.Skipf("test is known-broken on gccgo") - } -} - -func testGetdents(t *testing.T) { - getdentsUnderTest := getdents - if emulate { - getdentsUnderTest = emulateGetdents - } - // Fill a directory with filenames of length 1 ... 255 - testDir, err := ioutil.TempDir(tmpDir, "TestGetdents") - if err != nil { - t.Fatal(err) - } - for i := 1; i <= unix.NAME_MAX; i++ { - n := strings.Repeat("x", i) - err = ioutil.WriteFile(testDir+"/"+n, nil, 0600) - if err != nil { - t.Fatal(err) - } - } - // "/", "/dev" and "/proc/self" are good test cases because they contain - // many different file types (block and char devices, symlinks, - // mountpoints). - dirs := []string{testDir, "/", "/dev", "/proc/self"} - for _, dir := range dirs { - // Read directory using stdlib Readdir() - fd, err := os.Open(dir) - if err != nil { - t.Fatal(err) - } - defer fd.Close() - readdirEntries, err := fd.Readdir(0) - if err != nil { - t.Fatal(err) - } - readdirMap := make(map[string]*syscall.Stat_t) - for _, v := range readdirEntries { - readdirMap[v.Name()] = fuse.ToStatT(v) - } - // Read using our Getdents() implementation - _, err = fd.Seek(0, 0) // Rewind directory - if err != nil { - t.Fatal(err) - } - getdentsEntries, special, err := getdentsUnderTest(int(fd.Fd())) - if err != nil { - t.Log(err) - skipOnGccGo(t) - t.FailNow() - } - getdentsMap := make(map[string]fuse.DirEntry) - for _, v := range getdentsEntries { - getdentsMap[v.Name] = v - } - // Compare results - if len(getdentsEntries) != len(readdirEntries) { - t.Fatalf("len(getdentsEntries)=%d, len(readdirEntries)=%d", - len(getdentsEntries), len(readdirEntries)) - } - for name := range readdirMap { - g := getdentsMap[name] - r := readdirMap[name] - rTyp := r.Mode & syscall.S_IFMT - if g.Mode != rTyp { - t.Errorf("%q: g.Mode=%#o, r.Mode=%#o", name, g.Mode, rTyp) - } - if g.Ino != r.Ino { - // The inode number of a directory that is reported by stat - // and getdents is different when it is a mountpoint. Only - // throw an error when we are NOT looking at a directory. - if g.Mode != syscall.S_IFDIR { - t.Errorf("%s: g.Ino=%d, r.Ino=%d", name, g.Ino, r.Ino) - } - } - } - if len(special) != 2 { - t.Error(special) - } - if !(special[0].Name == "." && special[1].Name == ".." || - special[1].Name == "." && special[0].Name == "..") { - t.Error(special) - } - for _, v := range special { - if v.Ino == 0 { - t.Error(v) - } - if v.Mode != syscall.S_IFDIR { - t.Error(v) - } - } - } -} diff --git a/internal/syscallcompat/helpers.go b/internal/syscallcompat/helpers.go deleted file mode 100644 index e2a2215..0000000 --- a/internal/syscallcompat/helpers.go +++ /dev/null @@ -1,21 +0,0 @@ -package syscallcompat - -import ( - "os" - "syscall" -) - -// IsENOSPC tries to find out if "err" is a (potentially wrapped) ENOSPC error. -func IsENOSPC(err error) bool { - // syscallcompat.EnospcPrealloc returns the naked syscall error - if err == syscall.ENOSPC { - return true - } - // os.File.WriteAt returns &PathError - if err2, ok := err.(*os.PathError); ok { - if err2.Err == syscall.ENOSPC { - return true - } - } - return false -} diff --git a/internal/syscallcompat/main_test.go b/internal/syscallcompat/main_test.go deleted file mode 100644 index ddf6bc4..0000000 --- a/internal/syscallcompat/main_test.go +++ /dev/null @@ -1,48 +0,0 @@ -package syscallcompat - -import ( - "fmt" - "io/ioutil" - "os" - "testing" -) - -var tmpDir string -var tmpDirFd int - -func TestMain(m *testing.M) { - origWd, err := os.Getwd() - if err != nil { - fmt.Println(err) - os.Exit(1) - } - // Cannot import test_helpers because of import cycle - parent := fmt.Sprintf("/tmp/gocryptfs-test-parent-%d", os.Getuid()) - err = os.MkdirAll(parent, 0700) - if err != nil { - fmt.Println(err) - os.Exit(1) - } - tmpDir, err = ioutil.TempDir(parent, "syscallcompat") - if err != nil { - fmt.Println(err) - os.Exit(1) - } - dirf, err := os.Open(tmpDir) - if err != nil { - fmt.Println(err) - os.Exit(1) - } - defer dirf.Close() - tmpDirFd = int(dirf.Fd()) - // Run the tests - r := m.Run() - // Check that we are in the same directory again (the emulated syscalls - // use Fchdir a lot) - cwd, _ := os.Getwd() - if cwd != origWd { - fmt.Printf("working dir has changed from %q to %q", origWd, cwd) - os.Exit(1) - } - os.Exit(r) -} diff --git a/internal/syscallcompat/open_nofollow.go b/internal/syscallcompat/open_nofollow.go index f8e50e3..150eb0f 100644 --- a/internal/syscallcompat/open_nofollow.go +++ b/internal/syscallcompat/open_nofollow.go @@ -4,8 +4,6 @@ import ( "path/filepath" "strings" "syscall" - - "github.com/rfjakob/gocryptfs/internal/tlog" ) // OpenDirNofollow opens the dir at "relPath" in a way that is secure against @@ -16,11 +14,9 @@ import ( // Retries on EINTR. func OpenDirNofollow(baseDir string, relPath string) (fd int, err error) { if !filepath.IsAbs(baseDir) { - tlog.Warn.Printf("BUG: OpenDirNofollow called with relative baseDir=%q", baseDir) return -1, syscall.EINVAL } if filepath.IsAbs(relPath) { - tlog.Warn.Printf("BUG: OpenDirNofollow called with absolute relPath=%q", relPath) return -1, syscall.EINVAL } // Open the base dir (following symlinks) diff --git a/internal/syscallcompat/open_nofollow_test.go b/internal/syscallcompat/open_nofollow_test.go deleted file mode 100644 index 1eeac3a..0000000 --- a/internal/syscallcompat/open_nofollow_test.go +++ /dev/null @@ -1,48 +0,0 @@ -package syscallcompat - -import ( - "os" - "syscall" - "testing" -) - -func TestOpenNofollow(t *testing.T) { - err := os.MkdirAll(tmpDir+"/d1/d2/d3", 0700) - if err != nil { - t.Fatal(err) - } - // Create a file - dirfd, err := OpenDirNofollow(tmpDir, "d1/d2/d3") - if err != nil { - t.Fatal(err) - } - fd, err := Openat(dirfd, "f1", syscall.O_RDWR|syscall.O_CREAT|syscall.O_EXCL, 0600) - if err != nil { - t.Fatal(err) - } - syscall.Close(fd) - _, err = os.Stat(tmpDir + "/d1/d2/d3/f1") - if err != nil { - t.Fatal(err) - } - // Replace "d1" with a symlink - open should fail with ELOOP - err = os.Rename(tmpDir+"/d1", tmpDir+"/d1.renamed") - if err != nil { - t.Fatal(err) - } - os.Symlink(tmpDir+"/d1.renamed", tmpDir+"/d1") - fd, err = OpenDirNofollow(tmpDir, "d1/d2/d3") - if err == nil { - t.Fatalf("should have failed") - } - if err != syscall.ELOOP && err != syscall.ENOTDIR { - t.Errorf("expected ELOOP or ENOTDIR, got %v", err) - } - // Check to see that the base dir can be opened as well - fd, err = OpenDirNofollow(tmpDir, "") - if err != nil { - t.Errorf("cannot open base dir: %v", err) - } else { - syscall.Close(fd) - } -} diff --git a/internal/syscallcompat/sys_common.go b/internal/syscallcompat/sys_common.go index fc020bd..0123b25 100644 --- a/internal/syscallcompat/sys_common.go +++ b/internal/syscallcompat/sys_common.go @@ -5,8 +5,6 @@ import ( "syscall" "golang.org/x/sys/unix" - - "github.com/rfjakob/gocryptfs/internal/tlog" ) // PATH_MAX is the maximum allowed path length on Linux. @@ -47,16 +45,9 @@ func Faccessat(dirfd int, path string, mode uint32) error { // Openat wraps the Openat syscall. // Retries on EINTR. func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) { - if flags&syscall.O_CREAT != 0 { - // O_CREAT should be used with O_EXCL. O_NOFOLLOW has no effect with O_EXCL. - if flags&syscall.O_EXCL == 0 { - tlog.Warn.Printf("Openat: O_CREAT without O_EXCL: flags = %#x", flags) - flags |= syscall.O_EXCL - } - } else { + if flags&syscall.O_CREAT == 0 { // If O_CREAT is not used, we should use O_NOFOLLOW if flags&syscall.O_NOFOLLOW == 0 { - tlog.Warn.Printf("Openat: O_NOFOLLOW missing: flags = %#x", flags) flags |= syscall.O_NOFOLLOW } } @@ -70,7 +61,6 @@ func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) { // Why would we ever want to call this without AT_SYMLINK_NOFOLLOW? if flags&unix.AT_SYMLINK_NOFOLLOW == 0 { - tlog.Warn.Printf("Fchownat: adding missing AT_SYMLINK_NOFOLLOW flag") flags |= unix.AT_SYMLINK_NOFOLLOW } return unix.Fchownat(dirfd, path, uid, gid, flags) @@ -81,7 +71,6 @@ func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) { func Fstatat(dirfd int, path string, stat *unix.Stat_t, flags int) (err error) { // Why would we ever want to call this without AT_SYMLINK_NOFOLLOW? if flags&unix.AT_SYMLINK_NOFOLLOW == 0 { - tlog.Warn.Printf("Fstatat: adding missing AT_SYMLINK_NOFOLLOW flag") flags |= unix.AT_SYMLINK_NOFOLLOW } err = retryEINTR(func() error { diff --git a/internal/syscallcompat/sys_common_test.go b/internal/syscallcompat/sys_common_test.go deleted file mode 100644 index 7141b92..0000000 --- a/internal/syscallcompat/sys_common_test.go +++ /dev/null @@ -1,327 +0,0 @@ -package syscallcompat - -import ( - "bytes" - "os" - "runtime" - "syscall" - "testing" - - "golang.org/x/sys/unix" -) - -func TestReadlinkat(t *testing.T) { - for _, targetLen := range []int{100, 500, 4000} { - target := string(bytes.Repeat([]byte("x"), targetLen)) - err := syscall.Symlink(target, tmpDir+"/readlinkat") - if err != nil { - if targetLen > 1000 { - // Symlinks longer than 1024 (?) bytes are not supported on - // MacOS and XFS - t.Logf("skipping targetLen=%d: %v", targetLen, err) - continue - } - t.Fatalf("targetLen=%d: %v", targetLen, err) - } - target2, err := Readlinkat(tmpDirFd, "readlinkat") - if err != nil { - t.Fatal(err) - } - if target != target2 { - t.Errorf("target=%q != target2=%q", target, target2) - } - err = syscall.Unlink(tmpDir + "/readlinkat") - if err != nil { - t.Fatal(err) - } - } -} - -func TestOpenat(t *testing.T) { - // Always pass O_NOFOLLOW to avoid this warning: - // Openat: O_NOFOLLOW missing: flags = 0x0" - _, err := Openat(tmpDirFd, "testOpenAt", syscall.O_NOFOLLOW, 0) - if err == nil { - t.Errorf("should have failed") - } - fd, err := os.Create(tmpDir + "/testOpenAt") - if err != nil { - t.Fatal(err) - } - fd.Close() - rawFd, err := Openat(tmpDirFd, "testOpenAt", syscall.O_NOFOLLOW, 0) - if err != nil { - t.Fatal(err) - } - defer syscall.Close(rawFd) - if rawFd < 0 { - t.Fatalf("rawFd=%d", rawFd) - } - // Test with absolute path - rawFd, err = Openat(-1, tmpDir+"/testOpenAt", syscall.O_NOFOLLOW, 0) - if err != nil { - t.Fatal(err) - } - defer syscall.Close(rawFd) - if rawFd < 0 { - t.Fatalf("rawFd=%d", rawFd) - } -} - -func TestRenameat(t *testing.T) { - os.Mkdir(tmpDir+"/dir1", 0700) - dir1, err := os.Open(tmpDir + "/dir1") - if err != nil { - t.Fatal(err) - } - defer dir1.Close() - os.Mkdir(tmpDir+"/dir2", 0700) - dir2, err := os.Open(tmpDir + "/dir2") - if err != nil { - t.Fatal(err) - } - defer dir2.Close() - fd, err := os.Create(tmpDir + "/dir1/f1") - if err != nil { - t.Fatal(err) - } - fd.Close() - err = Renameat(int(dir1.Fd()), "f1", int(dir2.Fd()), "f2") - if err != nil { - t.Fatal(err) - } - _, err = os.Stat(tmpDir + "/dir2/f2") - if err != nil { - t.Fatal(err) - } - // Test with absolute path - err = Renameat(-1, tmpDir+"/dir2/f2", -1, tmpDir+"/dir2/f1") - if err != nil { - t.Fatal(err) - } - _, err = os.Stat(tmpDir + "/dir2/f1") - if err != nil { - t.Fatal(err) - } -} - -func TestUnlinkat(t *testing.T) { - os.Mkdir(tmpDir+"/unlink1", 0700) - dirfd, err := os.Open(tmpDir + "/unlink1") - if err != nil { - t.Fatal(err) - } - defer dirfd.Close() - // Try to delete file - fd, err := os.Create(tmpDir + "/unlink1/f1") - if err != nil { - t.Fatal(err) - } - fd.Close() - err = Unlinkat(int(dirfd.Fd()), "f1", 0) - if err != nil { - t.Fatal(err) - } - _, err = os.Stat(tmpDir + "/unlink1/f1") - if err == nil { - t.Fatalf("file not deleted!") - } - // Try to delete dir - err = os.Mkdir(tmpDir+"/unlink1/d1", 0700) - if err != nil { - t.Fatal(err) - } - err = Unlinkat(int(dirfd.Fd()), "d1", 0) - if err == nil { - t.Fatalf("this should fail due to missing AT_REMOVEDIR flag") - } - err = Unlinkat(int(dirfd.Fd()), "d1", unix.AT_REMOVEDIR) - if err != nil { - t.Fatal(err) - } - _, err = os.Stat(tmpDir + "/unlink1/d1") - if err == nil { - t.Fatalf("dir not deleted!") - } - // Test with absolute path - err = os.Mkdir(tmpDir+"/unlink1/d1", 0700) - if err != nil { - t.Fatal(err) - } - err = Unlinkat(-1, tmpDir+"/unlink1/d1", unix.AT_REMOVEDIR) - if err != nil { - t.Fatal(err) - } - _, err = os.Stat(tmpDir + "/unlink1/d1") - if err == nil { - t.Fatalf("dir not deleted!") - } -} - -func TestFchmodatNofollow(t *testing.T) { - regular := "TestFchmodat_Regular" - f, err := os.OpenFile(tmpDir+"/"+regular, os.O_CREATE|os.O_WRONLY, 0000) - if err != nil { - t.Fatal(err) - } - f.Close() - symlink := "TestFchmodat_Symlink" - err = syscall.Symlink(regular, tmpDir+"/"+symlink) - if err != nil { - t.Fatal(err) - } - dirfd, err := syscall.Open(tmpDir, syscall.O_RDONLY, 0) - if err != nil { - t.Fatal(err) - } - defer syscall.Close(dirfd) - - // Check that chmod on a regular file works ok - err = FchmodatNofollow(dirfd, regular, 0111) - if err != nil { - t.Fatal(err) - } - var st syscall.Stat_t - syscall.Lstat(tmpDir+"/"+regular, &st) - st.Mode &= 0777 - if st.Mode != 0111 { - t.Errorf("wrong mode: %#0o", st.Mode) - } - err = FchmodatNofollow(dirfd, regular, 0000) - if err != nil { - t.Error(err) - } - syscall.Lstat(tmpDir+"/"+regular, &st) - st.Mode &= 0777 - if st.Mode != 0000 { - t.Errorf("wrong mode: %#0o", st.Mode) - } - - // Check what happens on a symlink - err = FchmodatNofollow(dirfd, symlink, 0333) - // On Darwin, permissions on symlinks are significant and can be changed. On - // Linux they are ignored, and FchmodatNofollow rejects attempts to change - // them. - if err == nil && runtime.GOOS == "linux" { - syscall.Lstat(tmpDir+"/"+symlink, &st) - st.Mode &= 0777 - t.Errorf("chmod on symlink should have failed, but did not. New mode=%#0o", st.Mode) - } - syscall.Lstat(tmpDir+"/"+regular, &st) - st.Mode &= 0777 - if st.Mode != 0000 { - t.Errorf("chmod on symlink affected symlink target: New mode=%#0o", st.Mode) - } -} - -// symlinkCheckMode looks if the mode bits in "st" say that this is a symlink. -// Calls t.Fatal() if not. -func symlinkCheckMode(t *testing.T, st syscall.Stat_t) { - if runtime.GOOS == "darwin" { - // On MacOS, symlinks don't carry their own permissions, so - // only check the file type. - if st.Mode&syscall.S_IFMT != syscall.S_IFLNK { - t.Fatalf("This is not a symlink: mode = 0%o", st.Mode) - } - return - } - if st.Mode != 0120777 { - t.Fatalf("Wrong mode, have 0%o, want 0120777", st.Mode) - } -} - -// We used to have our own wrapper for Symlinkat. The wrapper is gone but the test -// is still useful. -func TestSymlinkat(t *testing.T) { - err := unix.Symlinkat("/foo/bar/baz", tmpDirFd, "symlink1") - if err != nil { - t.Fatal(err) - } - var st syscall.Stat_t - err = syscall.Lstat(tmpDir+"/symlink1", &st) - if err != nil { - t.Fatal(err) - } - symlinkCheckMode(t, st) - // Test with absolute path - err = unix.Symlinkat("/foo/bar/baz", -1, tmpDir+"/symlink2") - if err != nil { - t.Fatal(err) - } - err = syscall.Lstat(tmpDir+"/symlink2", &st) - if err != nil { - t.Fatal(err) - } - symlinkCheckMode(t, st) -} - -// We used to have our own wrapper for Mkdirat. The wrapper is gone but the test -// is still useful. -func TestMkdirat(t *testing.T) { - err := unix.Mkdirat(tmpDirFd, "mkdirat", 0700) - if err != nil { - t.Fatal(err) - } - fi, err := os.Stat(tmpDir + "/mkdirat") - if err != nil { - t.Fatal(err) - } - if !fi.IsDir() { - t.Fatalf("mkdirat did not create a directory") - } - // Test with absolute path - err = unix.Mkdirat(-1, tmpDir+"/mkdirat2", 0700) - if err != nil { - t.Fatal(err) - } - fi, err = os.Stat(tmpDir + "/mkdirat2") - if err != nil { - t.Fatal(err) - } - if !fi.IsDir() { - t.Fatalf("mkdirat did not create a directory") - } -} - -func TestFstatat(t *testing.T) { - var st unix.Stat_t - // stat a normal file (size 3) - f, err := os.Create(tmpDir + "/fstatat") - if err != nil { - t.Fatal(err) - } - _, err = f.Write([]byte("foo")) - if err != nil { - t.Fatal(err) - } - f.Close() - err = Fstatat(tmpDirFd, "fstatat", &st, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - t.Fatal(err) - } - if st.Size != 3 { - t.Errorf("wrong file size: %d", st.Size) - } - // stat a symlink and check that the size matches the length of the - // symlink target. This proves that we have stat'ed the symlink itself. - err = os.Symlink(tmpDir+"/fstatat", tmpDir+"/fstatatSymlink") - if err != nil { - t.Fatal(err) - } - err = Fstatat(tmpDirFd, "fstatatSymlink", &st, unix.AT_SYMLINK_NOFOLLOW) - if err != nil { - t.Fatal(err) - } - expectedSize := int64(len(tmpDir + "/fstatat")) - if st.Size != expectedSize { - t.Errorf("symlink size: expected=%d, got=%d", expectedSize, st.Size) - } -} - -// BenchmarkLgetxattr benchmarks Lgetxattr. Lgetxattr is very hot as the kernel -// queries security.capabilities for every file access. -func BenchmarkLgetxattr(b *testing.B) { - for i := 0; i < b.N; i++ { - Lgetxattr("/", "user.this.attr.does.not.exist") - } -} diff --git a/internal/syscallcompat/sys_darwin.go b/internal/syscallcompat/sys_darwin.go deleted file mode 100644 index 075563f..0000000 --- a/internal/syscallcompat/sys_darwin.go +++ /dev/null @@ -1,230 +0,0 @@ -package syscallcompat - -import ( - "log" - "path/filepath" - "runtime" - "syscall" - "time" - "unsafe" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fuse" -) - -const ( - // O_DIRECT means oncached I/O on Linux. No direct equivalent on MacOS and defined - // to zero there. - O_DIRECT = 0 - - // O_PATH is only defined on Linux - O_PATH = 0 - - // RENAME_NOREPLACE is only defined on Linux - RENAME_NOREPLACE = 0 - - // KAUTH_UID_NONE and KAUTH_GID_NONE are special values to - // revert permissions to the process credentials. - KAUTH_UID_NONE = ^uint32(0) - 100 - KAUTH_GID_NONE = ^uint32(0) - 100 -) - -// Unfortunately pthread_setugid_np does not have a syscall wrapper yet. -func pthread_setugid_np(uid uint32, gid uint32) (err error) { - _, _, e1 := syscall.RawSyscall(syscall.SYS_SETTID, uintptr(uid), uintptr(gid), 0) - if e1 != 0 { - err = e1 - } - return -} - -// Unfortunately fsetattrlist does not have a syscall wrapper yet. -func fsetattrlist(fd int, list unsafe.Pointer, buf unsafe.Pointer, size uintptr, options int) (err error) { - _, _, e1 := syscall.Syscall6(syscall.SYS_FSETATTRLIST, uintptr(fd), uintptr(list), uintptr(buf), uintptr(size), uintptr(options), 0) - if e1 != 0 { - err = e1 - } - return -} - -// Setattrlist already has a syscall wrapper, but it is not exported. -func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, size uintptr, options int) (err error) { - _, _, e1 := syscall.Syscall6(syscall.SYS_SETATTRLIST, uintptr(unsafe.Pointer(path)), uintptr(list), uintptr(buf), uintptr(size), uintptr(options), 0) - if e1 != 0 { - err = e1 - } - return -} - -// Sorry, fallocate is not available on OSX at all and -// fcntl F_PREALLOCATE is not accessible from Go. -// See https://github.com/rfjakob/gocryptfs/issues/18 if you want to help. -func EnospcPrealloc(fd int, off int64, len int64) error { - return nil -} - -// See above. -func Fallocate(fd int, mode uint32, off int64, len int64) error { - return syscall.EOPNOTSUPP -} - -// Dup3 is not available on Darwin, so we use Dup2 instead. -func Dup3(oldfd int, newfd int, flags int) (err error) { - if flags != 0 { - log.Panic("darwin does not support dup3 flags") - } - return syscall.Dup2(oldfd, newfd) -} - -//////////////////////////////////////////////////////// -//// Emulated Syscalls (see emulate.go) //////////////// -//////////////////////////////////////////////////////// - -func OpenatUser(dirfd int, path string, flags int, mode uint32, context *fuse.Context) (fd int, err error) { - if context != nil { - runtime.LockOSThread() - defer runtime.UnlockOSThread() - - err = pthread_setugid_np(context.Owner.Uid, context.Owner.Gid) - if err != nil { - return -1, err - } - defer pthread_setugid_np(KAUTH_UID_NONE, KAUTH_GID_NONE) - } - - return Openat(dirfd, path, flags, mode) -} - -func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { - return emulateMknodat(dirfd, path, mode, dev) -} - -func MknodatUser(dirfd int, path string, mode uint32, dev int, context *fuse.Context) (err error) { - if context != nil { - runtime.LockOSThread() - defer runtime.UnlockOSThread() - - err = pthread_setugid_np(context.Owner.Uid, context.Owner.Gid) - if err != nil { - return err - } - defer pthread_setugid_np(KAUTH_UID_NONE, KAUTH_GID_NONE) - } - - return Mknodat(dirfd, path, mode, dev) -} - -func FchmodatNofollow(dirfd int, path string, mode uint32) (err error) { - return unix.Fchmodat(dirfd, path, mode, unix.AT_SYMLINK_NOFOLLOW) -} - -func SymlinkatUser(oldpath string, newdirfd int, newpath string, context *fuse.Context) (err error) { - if context != nil { - runtime.LockOSThread() - defer runtime.UnlockOSThread() - - err = pthread_setugid_np(context.Owner.Uid, context.Owner.Gid) - if err != nil { - return err - } - defer pthread_setugid_np(KAUTH_UID_NONE, KAUTH_GID_NONE) - } - - return unix.Symlinkat(oldpath, newdirfd, newpath) -} - -func MkdiratUser(dirfd int, path string, mode uint32, context *fuse.Context) (err error) { - if context != nil { - runtime.LockOSThread() - defer runtime.UnlockOSThread() - - err = pthread_setugid_np(context.Owner.Uid, context.Owner.Gid) - if err != nil { - return err - } - defer pthread_setugid_np(KAUTH_UID_NONE, KAUTH_GID_NONE) - } - - return unix.Mkdirat(dirfd, path, mode) -} - -type attrList struct { - bitmapCount uint16 - _ uint16 - CommonAttr uint32 - VolAttr uint32 - DirAttr uint32 - FileAttr uint32 - Forkattr uint32 -} - -func timesToAttrList(a *time.Time, m *time.Time) (attrList attrList, attributes [2]unix.Timespec) { - attrList.bitmapCount = unix.ATTR_BIT_MAP_COUNT - attrList.CommonAttr = 0 - i := 0 - if m != nil { - attributes[i] = unix.Timespec(fuse.UtimeToTimespec(m)) - attrList.CommonAttr |= unix.ATTR_CMN_MODTIME - i += 1 - } - if a != nil { - attributes[i] = unix.Timespec(fuse.UtimeToTimespec(a)) - attrList.CommonAttr |= unix.ATTR_CMN_ACCTIME - i += 1 - } - return attrList, attributes -} - -// FutimesNano syscall. -func FutimesNano(fd int, a *time.Time, m *time.Time) (err error) { - attrList, attributes := timesToAttrList(a, m) - return fsetattrlist(fd, unsafe.Pointer(&attrList), unsafe.Pointer(&attributes), - unsafe.Sizeof(attributes), 0) -} - -// UtimesNanoAtNofollow is like UtimesNanoAt but never follows symlinks. -// -// Unfortunately we cannot use unix.UtimesNanoAt since it is broken and just -// ignores the provided 'dirfd'. In addition, it also lacks handling of 'nil' -// pointers (used to preserve one of both timestamps). -func UtimesNanoAtNofollow(dirfd int, path string, a *time.Time, m *time.Time) (err error) { - if !filepath.IsAbs(path) { - chdirMutex.Lock() - defer chdirMutex.Unlock() - var cwd int - cwd, err = syscall.Open(".", syscall.O_RDONLY, 0) - if err != nil { - return err - } - defer syscall.Close(cwd) - err = syscall.Fchdir(dirfd) - if err != nil { - return err - } - defer syscall.Fchdir(cwd) - } - - _p0, err := syscall.BytePtrFromString(path) - if err != nil { - return err - } - - attrList, attributes := timesToAttrList(a, m) - return setattrlist(_p0, unsafe.Pointer(&attrList), unsafe.Pointer(&attributes), - unsafe.Sizeof(attributes), unix.FSOPT_NOFOLLOW) -} - -func Getdents(fd int) ([]fuse.DirEntry, error) { - entries, _, err := emulateGetdents(fd) - return entries, err -} - -func GetdentsSpecial(fd int) (entries []fuse.DirEntry, entriesSpecial []fuse.DirEntry, err error) { - return emulateGetdents(fd) -} - -// Renameat2 does not exist on Darwin, so we call Renameat and ignore the flags. -func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath string, flags uint) (err error) { - return unix.Renameat(olddirfd, oldpath, newdirfd, newpath) -} diff --git a/internal/syscallcompat/sys_linux.go b/internal/syscallcompat/sys_linux.go index 9672be7..d0fa027 100644 --- a/internal/syscallcompat/sys_linux.go +++ b/internal/syscallcompat/sys_linux.go @@ -2,20 +2,9 @@ package syscallcompat import ( - "fmt" - "io/ioutil" - "runtime" - "strconv" - "strings" - "sync" "syscall" - "time" "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/tlog" ) const ( @@ -32,8 +21,6 @@ const ( RENAME_NOREPLACE = unix.RENAME_NOREPLACE ) -var preallocWarn sync.Once - // EnospcPrealloc preallocates ciphertext space without changing the file // size. This guarantees that we don't run out of space while writing a // ciphertext block (that would corrupt the block). @@ -49,233 +36,18 @@ func EnospcPrealloc(fd int, off int64, len int64) (err error) { if err == syscall.EOPNOTSUPP { // ZFS and ext3 do not support fallocate. Warn but continue anyway. // https://github.com/rfjakob/gocryptfs/issues/22 - preallocWarn.Do(func() { - tlog.Warn.Printf("Warning: The underlying filesystem " + - "does not support fallocate(2). gocryptfs will continue working " + - "but is no longer resistant against out-of-space errors.\n") - }) return nil } return err } } -// Fallocate wraps the Fallocate syscall. -func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { - return syscall.Fallocate(fd, mode, off, len) -} - -func getSupplementaryGroups(pid uint32) (gids []int) { - procPath := fmt.Sprintf("/proc/%d/task/%d/status", pid, pid) - blob, err := ioutil.ReadFile(procPath) - if err != nil { - return nil - } - - lines := strings.Split(string(blob), "\n") - for _, line := range lines { - if strings.HasPrefix(line, "Groups:") { - f := strings.Fields(line[7:]) - gids = make([]int, len(f)) - for i := range gids { - val, err := strconv.ParseInt(f[i], 10, 32) - if err != nil { - return nil - } - gids[i] = int(val) - } - return gids - } - } - - return nil -} - -// asUser runs the function `f` under the effective uid, gid, groups specified -// in `context`. -func asUser(f func() (int, error), context *fuse.Context) (int, error) { - if context != nil { - runtime.LockOSThread() - defer runtime.UnlockOSThread() - - // Since go1.16beta1 (commit d1b1145cace8b968307f9311ff611e4bb810710c , - // https://go-review.googlesource.com/c/go/+/210639 ) - // syscall.{Setgroups,Setregid,Setreuid} affects all threads, which - // is exactly what we not want. - // - // We now use unix.{Setgroups,Setregid,Setreuid} instead. - - err := unix.Setgroups(getSupplementaryGroups(context.Pid)) - if err != nil { - return -1, err - } - defer unix.Setgroups(nil) - - err = unix.Setregid(-1, int(context.Owner.Gid)) - if err != nil { - return -1, err - } - defer unix.Setregid(-1, 0) - - err = unix.Setreuid(-1, int(context.Owner.Uid)) - if err != nil { - return -1, err - } - defer unix.Setreuid(-1, 0) - } - return f() -} - -// OpenatUser runs the Openat syscall in the context of a different user. -// -// It switches the current thread to the new user, performs the syscall, -// and switches back. -// -// If `context` is nil, this function behaves like ordinary Openat (no -// user switching). -func OpenatUser(dirfd int, path string, flags int, mode uint32, context *fuse.Context) (fd int, err error) { - f := func() (int, error) { - return Openat(dirfd, path, flags, mode) - } - return asUser(f, context) -} - -// Mknodat wraps the Mknodat syscall. -func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { - return syscall.Mknodat(dirfd, path, mode, dev) -} - -// MknodatUser runs the Mknodat syscall in the context of a different user. -// If `context` is nil, this function behaves like ordinary Mknodat. -// -// See OpenatUser() for how this works. -func MknodatUser(dirfd int, path string, mode uint32, dev int, context *fuse.Context) (err error) { - f := func() (int, error) { - err := Mknodat(dirfd, path, mode, dev) - return -1, err - } - _, err = asUser(f, context) - return err -} - -// Dup3 wraps the Dup3 syscall. We want to use Dup3 rather than Dup2 because Dup2 -// is not implemented on arm64. -func Dup3(oldfd int, newfd int, flags int) (err error) { - return syscall.Dup3(oldfd, newfd, flags) -} - -// FchmodatNofollow is like Fchmodat but never follows symlinks. -// -// This should be handled by the AT_SYMLINK_NOFOLLOW flag, but Linux -// does not implement it, so we have to perform an elaborate dance -// with O_PATH and /proc/self/fd. -// -// See also: Qemu implemented the same logic as fchmodat_nofollow(): -// https://git.qemu.org/?p=qemu.git;a=blob;f=hw/9pfs/9p-local.c#l335 -func FchmodatNofollow(dirfd int, path string, mode uint32) (err error) { - // Open handle to the filename (but without opening the actual file). - // This succeeds even when we don't have read permissions to the file. - fd, err := syscall.Openat(dirfd, path, syscall.O_NOFOLLOW|O_PATH, 0) - if err != nil { - return err - } - defer syscall.Close(fd) - - // Now we can check the type without the risk of race-conditions. - // Return syscall.ELOOP if it is a symlink. - var st syscall.Stat_t - err = syscall.Fstat(fd, &st) - if err != nil { - return err - } - if st.Mode&syscall.S_IFMT == syscall.S_IFLNK { - return syscall.ELOOP - } - - // Change mode of the actual file. Fchmod does not work with O_PATH, - // but Chmod via /proc/self/fd works. - procPath := fmt.Sprintf("/proc/self/fd/%d", fd) - return syscall.Chmod(procPath, mode) -} - -// SymlinkatUser runs the Symlinkat syscall in the context of a different user. -// If `context` is nil, this function behaves like ordinary Symlinkat. -// -// See OpenatUser() for how this works. -func SymlinkatUser(oldpath string, newdirfd int, newpath string, context *fuse.Context) (err error) { - f := func() (int, error) { - err := unix.Symlinkat(oldpath, newdirfd, newpath) - return -1, err - } - _, err = asUser(f, context) - return err -} - -// MkdiratUser runs the Mkdirat syscall in the context of a different user. -// If `context` is nil, this function behaves like ordinary Mkdirat. -// -// See OpenatUser() for how this works. -func MkdiratUser(dirfd int, path string, mode uint32, context *fuse.Context) (err error) { - f := func() (int, error) { - err := unix.Mkdirat(dirfd, path, mode) - return -1, err - } - _, err = asUser(f, context) - return err -} - -// LsetxattrUser runs the Lsetxattr syscall in the context of a different user. -// This is useful when setting ACLs, as the result depends on the user running -// the operation (see fuse-xfstests generic/375). -// -// If `context` is nil, this function behaves like ordinary Lsetxattr. -func LsetxattrUser(path string, attr string, data []byte, flags int, context *fuse.Context) (err error) { - f := func() (int, error) { - err := unix.Lsetxattr(path, attr, data, flags) - return -1, err - } - _, err = asUser(f, context) - return err -} - -func timesToTimespec(a *time.Time, m *time.Time) []unix.Timespec { - ts := make([]unix.Timespec, 2) - ts[0] = unix.Timespec(fuse.UtimeToTimespec(a)) - ts[1] = unix.Timespec(fuse.UtimeToTimespec(m)) - return ts -} - -// FutimesNano syscall. -func FutimesNano(fd int, a *time.Time, m *time.Time) (err error) { - ts := timesToTimespec(a, m) - // To avoid introducing a separate syscall wrapper for futimens() - // (as done in go-fuse, for example), we instead use the /proc/self/fd trick. - procPath := fmt.Sprintf("/proc/self/fd/%d", fd) - return unix.UtimesNanoAt(unix.AT_FDCWD, procPath, ts, 0) -} - -// UtimesNanoAtNofollow is like UtimesNanoAt but never follows symlinks. -// Retries on EINTR. -func UtimesNanoAtNofollow(dirfd int, path string, a *time.Time, m *time.Time) (err error) { - ts := timesToTimespec(a, m) - err = retryEINTR(func() error { - return unix.UtimesNanoAt(dirfd, path, ts, unix.AT_SYMLINK_NOFOLLOW) - }) - return err -} - // Getdents syscall with "." and ".." filtered out. -func Getdents(fd int) ([]fuse.DirEntry, error) { +func Getdents(fd int) ([]DirEntry, error) { entries, _, err := getdents(fd) return entries, err } -// GetdentsSpecial calls the Getdents syscall, -// with normal entries and "." / ".." split into two slices. -func GetdentsSpecial(fd int) (entries []fuse.DirEntry, entriesSpecial []fuse.DirEntry, err error) { - return getdents(fd) -} - // Renameat2 does not exist on Darwin, so we have to wrap it here. // Retries on EINTR. func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath string, flags uint) (err error) { diff --git a/internal/syscallcompat/unix2syscall_darwin.go b/internal/syscallcompat/unix2syscall_darwin.go deleted file mode 100644 index 5767a27..0000000 --- a/internal/syscallcompat/unix2syscall_darwin.go +++ /dev/null @@ -1,26 +0,0 @@ -package syscallcompat - -import ( - "syscall" - - "golang.org/x/sys/unix" -) - -// Unix2syscall converts a unix.Stat_t struct to a syscall.Stat_t struct. -func Unix2syscall(u unix.Stat_t) syscall.Stat_t { - return syscall.Stat_t{ - Dev: u.Dev, - Ino: u.Ino, - Nlink: u.Nlink, - Mode: u.Mode, - Uid: u.Uid, - Gid: u.Gid, - Rdev: u.Rdev, - Size: u.Size, - Blksize: u.Blksize, - Blocks: u.Blocks, - Atimespec: syscall.Timespec(u.Atim), - Mtimespec: syscall.Timespec(u.Mtim), - Ctimespec: syscall.Timespec(u.Ctim), - } -} diff --git a/internal/tlog/log.go b/internal/tlog/log.go deleted file mode 100644 index 6d32a6b..0000000 --- a/internal/tlog/log.go +++ /dev/null @@ -1,201 +0,0 @@ -// Package tlog is a "toggled logger" that can be enabled and disabled and -// provides coloring. -package tlog - -import ( - "encoding/hex" - "encoding/json" - "fmt" - "log" - "log/syslog" - "os" - - "golang.org/x/crypto/ssh/terminal" -) - -const ( - // ProgramName is used in log reports. - ProgramName = "gocryptfs" - wpanicMsg = "-wpanic turns this warning into a panic: " -) - -// Escape sequences for terminal colors. These are set in init() if and only -// if stdout is a terminal. Otherwise they are empty strings. -var ( - // ColorReset is used to reset terminal colors. - ColorReset string - // ColorGrey is a terminal color setting string. - ColorGrey string - // ColorRed is a terminal color setting string. - ColorRed string - // ColorGreen is a terminal color setting string. - ColorGreen string - // ColorYellow is a terminal color setting string. - ColorYellow string -) - -// JSONDump writes the object in json form. -func JSONDump(obj interface{}) string { - b, err := json.MarshalIndent(obj, "", "\t") - if err != nil { - return err.Error() - } - - return string(b) -} - -// toggledLogger - a Logger than can be enabled and disabled -type toggledLogger struct { - // Enable or disable output - Enabled bool - // Panic after logging a message, useful in regression tests - Wpanic bool - // Private prefix and postfix are used for coloring - prefix string - postfix string - - Logger *log.Logger -} - -// trimNewline removes one trailing newline from "msg" -func trimNewline(msg string) string { - if len(msg) == 0 { - return msg - } - if msg[len(msg)-1] == '\n' { - return msg[:len(msg)-1] - } - return msg -} - -func (l *toggledLogger) Printf(format string, v ...interface{}) { - if !l.Enabled { - return - } - msg := trimNewline(fmt.Sprintf(format, v...)) - l.Logger.Printf(l.prefix + msg + l.postfix) - if l.Wpanic { - l.Logger.Panic(wpanicMsg + msg) - } -} -func (l *toggledLogger) Println(v ...interface{}) { - if !l.Enabled { - return - } - msg := trimNewline(fmt.Sprint(v...)) - l.Logger.Println(l.prefix + msg + l.postfix) - if l.Wpanic { - l.Logger.Panic(wpanicMsg + msg) - } -} - -// Debug logs debug messages -// Can be enabled by passing "-d" -var Debug *toggledLogger - -// Info logs informational message -// Can be disabled by passing "-q" -var Info *toggledLogger - -// Warn logs warnings, -// meaning nothing serious by itself but might indicate problems. -// Passing "-wpanic" will make this function panic after printing the message. -var Warn *toggledLogger - -// Fatal error, we are about to exit -var Fatal *toggledLogger - -func init() { - if terminal.IsTerminal(int(os.Stdout.Fd())) { - ColorReset = "\033[0m" - ColorGrey = "\033[2m" - ColorRed = "\033[31m" - ColorGreen = "\033[32m" - ColorYellow = "\033[33m" - } - - Debug = &toggledLogger{ - Logger: log.New(os.Stdout, "", 0), - } - Info = &toggledLogger{ - Enabled: true, - Logger: log.New(os.Stdout, "", 0), - } - Warn = &toggledLogger{ - Enabled: true, - Logger: log.New(os.Stderr, "", 0), - prefix: ColorYellow, - postfix: ColorReset, - } - Fatal = &toggledLogger{ - Enabled: true, - Logger: log.New(os.Stderr, "", 0), - prefix: ColorRed, - postfix: ColorReset, - } -} - -// SwitchToSyslog redirects the output of this logger to syslog. -// p = facility | severity -func (l *toggledLogger) SwitchToSyslog(p syslog.Priority) { - w, err := syslog.New(p, ProgramName) - if err != nil { - Warn.Printf("SwitchToSyslog: %v", err) - } else { - l.Logger.SetOutput(w) - // Disable colors - l.prefix = "" - l.postfix = "" - } -} - -// SwitchLoggerToSyslog redirects the default log.Logger that the go-fuse lib uses -// to syslog. -func SwitchLoggerToSyslog() { - p := syslog.LOG_USER | syslog.LOG_WARNING - w, err := syslog.New(p, ProgramName) - if err != nil { - Warn.Printf("SwitchLoggerToSyslog: %v", err) - } else { - log.SetPrefix("go-fuse: ") - // Disable printing the timestamp, syslog already provides that - log.SetFlags(0) - log.SetOutput(w) - } -} - -// PrintMasterkeyReminder reminds the user that he should store the master key in -// a safe place. -func PrintMasterkeyReminder(key []byte) { - if !Info.Enabled { - // Quiet mode - return - } - if !terminal.IsTerminal(int(os.Stdout.Fd())) { - // We don't want the master key to end up in a log file - Info.Printf("Not running on a terminal, suppressing master key display\n") - return - } - h := hex.EncodeToString(key) - var hChunked string - // Try to make it less scary by splitting it up in chunks - for i := 0; i < len(h); i += 8 { - hChunked += h[i : i+8] - if i < 52 { - hChunked += "-" - } - if i == 24 { - hChunked += "\n " - } - } - Info.Printf(` -Your master key is: - - %s - -If the gocryptfs.conf file becomes corrupted or you ever forget your password, -there is only one hope for recovery: The master key. Print it to a piece of -paper and store it in a drawer. This message is only printed once. - -`, ColorGrey+hChunked+ColorReset) -} diff --git a/internal/tlog/tlog_test.go b/internal/tlog/tlog_test.go deleted file mode 100644 index 2e1c034..0000000 --- a/internal/tlog/tlog_test.go +++ /dev/null @@ -1,26 +0,0 @@ -package tlog - -import ( - "testing" -) - -// Test that trimNewline() works as expected -func TestTrimNewline(t *testing.T) { - testTable := []struct { - in string - want string - }{ - {"...\n", "..."}, - {"\n...\n", "\n..."}, - {"", ""}, - {"\n", ""}, - {"\n\n", "\n"}, - {" ", " "}, - } - for _, v := range testTable { - have := trimNewline(v.in) - if v.want != have { - t.Errorf("want=%q have=%q", v.want, have) - } - } -} diff --git a/main.go b/main.go index edd61ff..38dd16d 100644 --- a/main.go +++ b/main.go @@ -1,335 +1,3 @@ -// gocryptfs is an encrypted overlay filesystem written in Go. -// See README.md ( https://github.com/rfjakob/gocryptfs/blob/master/README.md ) -// and the official website ( https://nuetzlich.net/gocryptfs/ ) for details. package main -import ( - "fmt" - "log" - "os" - "path/filepath" - "runtime" - "strconv" - "strings" - - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/fido2" - "github.com/rfjakob/gocryptfs/internal/readpassword" - "github.com/rfjakob/gocryptfs/internal/speed" - "github.com/rfjakob/gocryptfs/internal/stupidgcm" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// GitVersion is the gocryptfs version according to git, set by build.bash -var GitVersion = "[GitVersion not set - please compile using ./build.bash]" - -// GitVersionFuse is the go-fuse library version, set by build.bash -var GitVersionFuse = "[GitVersionFuse not set - please compile using ./build.bash]" - -// BuildDate is a date string like "2017-09-06", set by build.bash -var BuildDate = "0000-00-00" - -// raceDetector is set to true by race.go if we are compiled with "go build -race" -var raceDetector bool - -// loadConfig loads the config file `args.config` and decrypts the masterkey, -// or gets via the `-masterkey` or `-zerokey` command line options, if specified. -func loadConfig(args *argContainer) (masterkey []byte, cf *configfile.ConfFile, err error) { - // First check if the file can be read at all. - cf, err = configfile.Load(args.config) - if err != nil { - tlog.Fatal.Printf("Cannot open config file: %v", err) - return nil, nil, err - } - // The user may have passed the master key on the command line (probably because - // he forgot the password). - masterkey = handleArgsMasterkey(args) - if masterkey != nil { - return masterkey, cf, nil - } - var pw []byte - if cf.IsFeatureFlagSet(configfile.FlagFIDO2) { - if args.fido2 == "" { - tlog.Fatal.Printf("Masterkey encrypted using FIDO2 token; need to use the --fido2 option.") - os.Exit(exitcodes.Usage) - } - pw = fido2.Secret(args.fido2, cf.FIDO2.CredentialID, cf.FIDO2.HMACSalt) - } else { - pw = readpassword.Once([]string(args.extpass), []string(args.passfile), "") - } - tlog.Info.Println("Decrypting master key") - masterkey, err = cf.DecryptMasterKey(pw) - for i := range pw { - pw[i] = 0 - } - - if err != nil { - tlog.Fatal.Println(err) - return nil, nil, err - } - return masterkey, cf, nil -} - -// changePassword - change the password of config file "filename" -// Does not return (calls os.Exit both on success and on error). -func changePassword(args *argContainer) { - var confFile *configfile.ConfFile - { - var masterkey []byte - var err error - masterkey, confFile, err = loadConfig(args) - if err != nil { - exitcodes.Exit(err) - } - if len(masterkey) == 0 { - log.Panic("empty masterkey") - } - if confFile.IsFeatureFlagSet(configfile.FlagFIDO2) { - tlog.Fatal.Printf("Password change is not supported on FIDO2-enabled filesystems.") - os.Exit(exitcodes.Usage) - } - tlog.Info.Println("Please enter your new password.") - newPw := readpassword.Twice([]string(args.extpass), []string(args.passfile)) - logN := confFile.ScryptObject.LogN() - if args._explicitScryptn { - logN = args.scryptn - } - confFile.EncryptKey(masterkey, newPw, logN) - for i := range newPw { - newPw[i] = 0 - } - for i := range masterkey { - masterkey[i] = 0 - } - // masterkey and newPw run out of scope here - } - // Are we resetting the password without knowing the old one using - // "-masterkey"? - if args.masterkey != "" { - bak := args.config + ".bak" - err := os.Link(args.config, bak) - if err != nil { - tlog.Fatal.Printf("Could not create backup file: %v", err) - os.Exit(exitcodes.Init) - } - tlog.Info.Printf(tlog.ColorGrey+ - "A copy of the old config file has been created at %q.\n"+ - "Delete it after you have verified that you can access your files with the new password."+ - tlog.ColorReset, bak) - } - err := confFile.WriteFile() - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.WriteConf) - } - tlog.Info.Printf(tlog.ColorGreen + "Password changed." + tlog.ColorReset) -} - -// printVersion prints a version string like this: -// gocryptfs v1.7-32-gcf99cfd; go-fuse v1.0.0-174-g22a9cb9; 2019-05-12 go1.12 linux/amd64 -func printVersion() { - var tagsSlice []string - if stupidgcm.BuiltWithoutOpenssl { - tagsSlice = append(tagsSlice, "without_openssl") - } - tags := "" - if tagsSlice != nil { - tags = " " + strings.Join(tagsSlice, " ") - } - built := fmt.Sprintf("%s %s", BuildDate, runtime.Version()) - if raceDetector { - built += " -race" - } - fmt.Printf("%s %s%s; go-fuse %s; %s %s/%s\n", - tlog.ProgramName, GitVersion, tags, GitVersionFuse, built, - runtime.GOOS, runtime.GOARCH) -} - -func main() { - mxp := runtime.GOMAXPROCS(0) - if mxp < 4 && os.Getenv("GOMAXPROCS") == "" { - // On a 2-core machine, setting maxprocs to 4 gives 10% better performance. - // But don't override an explicitly set GOMAXPROCS env variable. - runtime.GOMAXPROCS(4) - } - // mount(1) unsets PATH. Since exec.Command does not handle this case, we set - // PATH to a default value if it's empty or unset. - if os.Getenv("PATH") == "" { - os.Setenv("PATH", "/usr/sbin:/usr/bin:/sbin:/bin") - } - // Show microseconds in go-fuse debug output (-fusedebug) - log.SetFlags(log.Lmicroseconds) - var err error - // Parse all command-line options (i.e. arguments starting with "-") - // into "args". Path arguments are parsed below. - args := parseCliOpts() - // Fork a child into the background if "-fg" is not set AND we are mounting - // a filesystem. The child will do all the work. - if !args.fg && flagSet.NArg() == 2 { - ret := forkChild() - os.Exit(ret) - } - if args.debug { - tlog.Debug.Enabled = true - } - // "-v" - if args.version { - tlog.Debug.Printf("openssl=%v\n", args.openssl) - tlog.Debug.Printf("on-disk format %d\n", contentenc.CurrentVersion) - printVersion() - os.Exit(0) - } - // "-hh" - if args.hh { - helpLong() - os.Exit(0) - } - // "-speed" - if args.speed { - printVersion() - speed.Run() - os.Exit(0) - } - if args.wpanic { - tlog.Warn.Wpanic = true - tlog.Debug.Printf("Panicking on warnings") - } - // Every operation below requires CIPHERDIR. Exit if we don't have it. - if flagSet.NArg() == 0 { - if flagSet.NFlag() == 0 { - // Naked call to "gocryptfs". Just print the help text. - helpShort() - } else { - // The user has passed some flags, but CIPHERDIR is missing. State - // what is wrong. - tlog.Fatal.Printf("CIPHERDIR argument is missing") - } - os.Exit(exitcodes.Usage) - } - // Check that CIPHERDIR exists - args.cipherdir, _ = filepath.Abs(flagSet.Arg(0)) - err = isDir(args.cipherdir) - if err != nil { - tlog.Fatal.Printf("Invalid cipherdir: %v", err) - os.Exit(exitcodes.CipherDir) - } - // "-q" - if args.quiet { - tlog.Info.Enabled = false - } - // "-reverse" implies "-aessiv" - if args.reverse { - args.aessiv = true - } else { - if args.exclude != nil { - tlog.Fatal.Printf("-exclude only works in reverse mode") - os.Exit(exitcodes.ExcludeError) - } - } - // "-config" - if args.config != "" { - args.config, err = filepath.Abs(args.config) - if err != nil { - tlog.Fatal.Printf("Invalid \"-config\" setting: %v", err) - os.Exit(exitcodes.Init) - } - tlog.Info.Printf("Using config file at custom location %s", args.config) - args._configCustom = true - } else if args.reverse { - args.config = filepath.Join(args.cipherdir, configfile.ConfReverseName) - } else { - args.config = filepath.Join(args.cipherdir, configfile.ConfDefaultName) - } - // "-force_owner" - if args.force_owner != "" { - var uidNum, gidNum int64 - ownerPieces := strings.SplitN(args.force_owner, ":", 2) - if len(ownerPieces) != 2 { - tlog.Fatal.Printf("force_owner must be in form UID:GID") - os.Exit(exitcodes.Usage) - } - uidNum, err = strconv.ParseInt(ownerPieces[0], 0, 32) - if err != nil || uidNum < 0 { - tlog.Fatal.Printf("force_owner: Unable to parse UID %v as positive integer", ownerPieces[0]) - os.Exit(exitcodes.Usage) - } - gidNum, err = strconv.ParseInt(ownerPieces[1], 0, 32) - if err != nil || gidNum < 0 { - tlog.Fatal.Printf("force_owner: Unable to parse GID %v as positive integer", ownerPieces[1]) - os.Exit(exitcodes.Usage) - } - args._forceOwner = &fuse.Owner{Uid: uint32(uidNum), Gid: uint32(gidNum)} - } - // "-cpuprofile" - if args.cpuprofile != "" { - onExitFunc := setupCpuprofile(args.cpuprofile) - defer onExitFunc() - } - // "-memprofile" - if args.memprofile != "" { - onExitFunc := setupMemprofile(args.memprofile) - defer onExitFunc() - } - // "-trace" - if args.trace != "" { - onExitFunc := setupTrace(args.trace) - defer onExitFunc() - } - if args.cpuprofile != "" || args.memprofile != "" || args.trace != "" { - tlog.Info.Printf("Note: You must unmount gracefully, otherwise the profile file(s) will stay empty!\n") - } - // "-openssl" - if !args.openssl { - tlog.Debug.Printf("OpenSSL disabled, using Go GCM") - } else { - tlog.Debug.Printf("OpenSSL enabled") - } - // Operation flags - nOps := countOpFlags(&args) - if nOps == 0 { - // Default operation: mount. - if flagSet.NArg() != 2 { - prettyArgs := prettyArgs() - tlog.Info.Printf("Wrong number of arguments (have %d, want 2). You passed: %s", - flagSet.NArg(), prettyArgs) - tlog.Fatal.Printf("Usage: %s [OPTIONS] CIPHERDIR MOUNTPOINT [-o COMMA-SEPARATED-OPTIONS]", tlog.ProgramName) - os.Exit(exitcodes.Usage) - } - doMount(&args) - // Don't call os.Exit to give deferred functions a chance to run - return - } - if nOps > 1 { - tlog.Fatal.Printf("At most one of -info, -init, -passwd, -fsck is allowed") - os.Exit(exitcodes.Usage) - } - if flagSet.NArg() != 1 { - tlog.Fatal.Printf("The options -info, -init, -passwd, -fsck take exactly one argument, %d given", - flagSet.NArg()) - os.Exit(exitcodes.Usage) - } - // "-info" - if args.info { - info(args.config) - os.Exit(0) - } - // "-init" - if args.init { - initDir(&args) - os.Exit(0) - } - // "-passwd" - if args.passwd { - changePassword(&args) - os.Exit(0) - } - // "-fsck" - if args.fsck { - code := fsck(&args) - os.Exit(code) - } -} +func main() {} diff --git a/masterkey.go b/masterkey.go deleted file mode 100644 index 8d75c75..0000000 --- a/masterkey.go +++ /dev/null @@ -1,60 +0,0 @@ -package main - -import ( - "encoding/hex" - "os" - "strings" - - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/readpassword" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// unhexMasterKey - Convert a hex-encoded master key to binary. -// Calls os.Exit on failure. -func unhexMasterKey(masterkey string, fromStdin bool) []byte { - masterkey = strings.Replace(masterkey, "-", "", -1) - key, err := hex.DecodeString(masterkey) - if err != nil { - tlog.Fatal.Printf("Could not parse master key: %v", err) - os.Exit(exitcodes.MasterKey) - } - if len(key) != cryptocore.KeyLen { - tlog.Fatal.Printf("Master key has length %d but we require length %d", len(key), cryptocore.KeyLen) - os.Exit(exitcodes.MasterKey) - } - tlog.Info.Printf("Using explicit master key.") - if !fromStdin { - tlog.Info.Printf(tlog.ColorYellow + - "THE MASTER KEY IS VISIBLE VIA \"ps ax\" AND MAY BE STORED IN YOUR SHELL HISTORY!\n" + - "ONLY USE THIS MODE FOR EMERGENCIES" + tlog.ColorReset) - } - return key -} - -// handleArgsMasterkey looks at `args.masterkey` and `args.zerokey`, gets the -// masterkey from the source the user wanted (string on the command line, stdin, all-zero), -// and returns it in binary. Returns nil if no masterkey source was specified. -func handleArgsMasterkey(args *argContainer) (masterkey []byte) { - // "-masterkey=stdin" - if args.masterkey == "stdin" { - in := string(readpassword.Once(nil, nil, "Masterkey")) - return unhexMasterKey(in, true) - } - // "-masterkey=941a6029-3adc6a1c-..." - if args.masterkey != "" { - return unhexMasterKey(args.masterkey, false) - } - // "-zerokey" - if args.zerokey { - tlog.Info.Printf("Using all-zero dummy master key.") - tlog.Info.Printf(tlog.ColorYellow + - "ZEROKEY MODE PROVIDES NO SECURITY AT ALL AND SHOULD ONLY BE USED FOR TESTING." + - tlog.ColorReset) - return make([]byte, cryptocore.KeyLen) - } - // No master key source specified on the command line. Caller must parse - // the config file. - return nil -} diff --git a/mount.go b/mount.go deleted file mode 100644 index f992f94..0000000 --- a/mount.go +++ /dev/null @@ -1,531 +0,0 @@ -package main - -import ( - "bytes" - "encoding/json" - "fmt" - "log" - "log/syslog" - "math" - "net" - "os" - "os/exec" - "os/signal" - "path" - "path/filepath" - "runtime" - "runtime/debug" - "strings" - "sync/atomic" - "syscall" - "time" - - "golang.org/x/sys/unix" - - "github.com/hanwen/go-fuse/v2/fs" - "github.com/hanwen/go-fuse/v2/fuse" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/contentenc" - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/internal/ctlsocksrv" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/fusefrontend" - "github.com/rfjakob/gocryptfs/internal/fusefrontend_reverse" - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/openfiletable" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// AfterUnmount is called after the filesystem has been unmounted. -// This can be used for cleanup and printing statistics. -type AfterUnmounter interface { - AfterUnmount() -} - -// doMount mounts an encrypted directory. -// Called from main. -func doMount(args *argContainer) { - // Check mountpoint - var err error - args.mountpoint, err = filepath.Abs(flagSet.Arg(1)) - if err != nil { - tlog.Fatal.Printf("Invalid mountpoint: %v", err) - os.Exit(exitcodes.MountPoint) - } - // We cannot mount "/home/user/.cipher" at "/home/user" because the mount - // will hide ".cipher" also for us. - if args.cipherdir == args.mountpoint || strings.HasPrefix(args.cipherdir, args.mountpoint+"/") { - tlog.Fatal.Printf("Mountpoint %q would shadow cipherdir %q, this is not supported", - args.mountpoint, args.cipherdir) - os.Exit(exitcodes.MountPoint) - } - // Reverse-mounting "/foo" at "/foo/mnt" means we would be recursively - // encrypting ourselves. - if strings.HasPrefix(args.mountpoint, args.cipherdir+"/") { - tlog.Fatal.Printf("Mountpoint %q is contained in cipherdir %q, this is not supported", - args.mountpoint, args.cipherdir) - os.Exit(exitcodes.MountPoint) - } - if args.nonempty { - err = isDir(args.mountpoint) - } else { - err = isEmptyDir(args.mountpoint) - // OSXFuse will create the mountpoint for us ( https://github.com/rfjakob/gocryptfs/issues/194 ) - if runtime.GOOS == "darwin" && os.IsNotExist(err) { - tlog.Info.Printf("Mountpoint %q does not exist, but should be created by OSXFuse", - args.mountpoint) - err = nil - } - } - if err != nil { - tlog.Fatal.Printf("Invalid mountpoint: %v", err) - os.Exit(exitcodes.MountPoint) - } - // Open control socket early so we can error out before asking the user - // for the password - if args.ctlsock != "" { - // We must use an absolute path because we cd to / when daemonizing. - // This messes up the delete-on-close logic in the unix socket object. - args.ctlsock, _ = filepath.Abs(args.ctlsock) - var sock net.Listener - sock, err = net.Listen("unix", args.ctlsock) - if err != nil { - tlog.Fatal.Printf("ctlsock: %v", err) - os.Exit(exitcodes.CtlSock) - } - args._ctlsockFd = sock - // Close also deletes the socket file - defer func() { - err = sock.Close() - if err != nil { - tlog.Warn.Printf("ctlsock close: %v", err) - } - }() - } - // Preallocation on Btrfs is broken ( https://github.com/rfjakob/gocryptfs/issues/395 ) - // and slow ( https://github.com/rfjakob/gocryptfs/issues/63 ). - if !args.noprealloc { - // darwin does not have unix.BTRFS_SUPER_MAGIC, so we define it here - const BTRFS_SUPER_MAGIC = 0x9123683e - var st unix.Statfs_t - err = unix.Statfs(args.cipherdir, &st) - // Cast to uint32 avoids compile error on arm: "constant 2435016766 overflows int32" - if err == nil && uint32(st.Type) == BTRFS_SUPER_MAGIC { - tlog.Info.Printf(tlog.ColorYellow + - "Btrfs detected, forcing -noprealloc. See https://github.com/rfjakob/gocryptfs/issues/395 for why." + - tlog.ColorReset) - args.noprealloc = true - } - } - // We cannot use JSON for pretty-printing as the fields are unexported - tlog.Debug.Printf("cli args: %#v", args) - // Initialize gocryptfs (read config file, ask for password, ...) - fs, wipeKeys := initFuseFrontend(args) - // Try to wipe secret keys from memory after unmount - defer wipeKeys() - // Initialize go-fuse FUSE server - srv := initGoFuse(fs, args) - if x, ok := fs.(AfterUnmounter); ok { - defer x.AfterUnmount() - } - - tlog.Info.Println(tlog.ColorGreen + "Filesystem mounted and ready." + tlog.ColorReset) - // We have been forked into the background, as evidenced by the set - // "notifypid". - if args.notifypid > 0 { - // Chdir to the root directory so we don't block unmounting the CWD - os.Chdir("/") - // Switch to syslog - if !args.nosyslog { - // Switch all of our logs and the generic logger to syslog - tlog.Info.SwitchToSyslog(syslog.LOG_USER | syslog.LOG_INFO) - tlog.Debug.SwitchToSyslog(syslog.LOG_USER | syslog.LOG_DEBUG) - tlog.Warn.SwitchToSyslog(syslog.LOG_USER | syslog.LOG_WARNING) - tlog.Fatal.SwitchToSyslog(syslog.LOG_USER | syslog.LOG_CRIT) - tlog.SwitchLoggerToSyslog() - // Daemons should redirect stdin, stdout and stderr - redirectStdFds() - } - // Disconnect from the controlling terminal by creating a new session. - // This prevents us from getting SIGINT when the user presses Ctrl-C - // to exit a running script that has called gocryptfs. - _, err = syscall.Setsid() - if err != nil { - tlog.Warn.Printf("Setsid: %v", err) - } - // Send SIGUSR1 to our parent - sendUsr1(args.notifypid) - } - // Increase the open file limit to 4096. This is not essential, so do it after - // we have switched to syslog and don't bother the user with warnings. - setOpenFileLimit() - // Wait for SIGINT in the background and unmount ourselves if we get it. - // This prevents a dangling "Transport endpoint is not connected" - // mountpoint if the user hits CTRL-C. - handleSigint(srv, args.mountpoint) - // Return memory that was allocated for scrypt (64M by default!) and other - // stuff that is no longer needed to the OS - debug.FreeOSMemory() - // Set up autounmount, if requested. - if args.idle > 0 && !args.reverse { - // Not being in reverse mode means we always have a forward file system. - fwdFs := fs.(*fusefrontend.RootNode) - go idleMonitor(args.idle, fwdFs, srv, args.mountpoint) - } - // Wait for unmount. - srv.Wait() -} - -// Based on the EncFS idle monitor: -// https://github.com/vgough/encfs/blob/1974b417af189a41ffae4c6feb011d2a0498e437/encfs/main.cpp#L851 -// idleMonitor is a function to be run as a thread that checks for -// filesystem idleness and unmounts if we've been idle for long enough. -const checksDuringTimeoutPeriod = 4 - -func idleMonitor(idleTimeout time.Duration, fs *fusefrontend.RootNode, srv *fuse.Server, mountpoint string) { - // sleepNs is the sleep time between checks, in nanoseconds. - sleepNs := contentenc.MinUint64( - uint64(idleTimeout/checksDuringTimeoutPeriod), - uint64(2*time.Minute)) - timeoutCycles := int(math.Ceil(float64(idleTimeout) / float64(sleepNs))) - idleCount := 0 - idleTime := func() time.Duration { - return time.Duration(sleepNs * uint64(idleCount)) - } - for { - // Atomically check whether the flag is 0 and reset it to 1 if so. - isIdle := !atomic.CompareAndSwapUint32(&fs.IsIdle, 0, 1) - // Any form of current or recent access resets the idle counter. - openFileCount := openfiletable.CountOpenFiles() - if !isIdle || openFileCount > 0 { - idleCount = 0 - } else { - idleCount++ - } - tlog.Debug.Printf( - "idleMonitor: idle for %v (idleCount = %d, isIdle = %t, open = %d)", - idleTime(), idleCount, isIdle, openFileCount) - if idleCount > 0 && idleCount%timeoutCycles == 0 { - tlog.Info.Printf("idleMonitor: filesystem idle; unmounting: %s", mountpoint) - err := srv.Unmount() - if err != nil { - // We get "Device or resource busy" when a process has its - // working directory on the mount. Log the event at Info level - // so the user finds out why their filesystem does not get - // unmounted. - tlog.Info.Printf("idleMonitor: unmount failed: %v. Resetting idle time.", err) - idleCount = 0 - } - } - time.Sleep(time.Duration(sleepNs)) - } -} - -// setOpenFileLimit tries to increase the open file limit to 4096 (the default hard -// limit on Linux). -func setOpenFileLimit() { - var lim syscall.Rlimit - err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &lim) - if err != nil { - tlog.Warn.Printf("Getting RLIMIT_NOFILE failed: %v", err) - return - } - if lim.Cur >= 4096 { - return - } - lim.Cur = 4096 - err = syscall.Setrlimit(syscall.RLIMIT_NOFILE, &lim) - if err != nil { - tlog.Warn.Printf("Setting RLIMIT_NOFILE to %+v failed: %v", lim, err) - // %+v output: "{Cur:4097 Max:4096}" ^ - } -} - -// initFuseFrontend - initialize gocryptfs/internal/fusefrontend -// Calls os.Exit on errors -func initFuseFrontend(args *argContainer) (rootNode fs.InodeEmbedder, wipeKeys func()) { - var err error - var confFile *configfile.ConfFile - // Get the masterkey from the command line if it was specified - masterkey := handleArgsMasterkey(args) - // Otherwise, load masterkey from config file (normal operation). - // Prompts the user for the password. - if masterkey == nil { - masterkey, confFile, err = loadConfig(args) - if err != nil { - if args._ctlsockFd != nil { - // Close the socket file (which also deletes it) - args._ctlsockFd.Close() - } - exitcodes.Exit(err) - } - } - // Reconciliate CLI and config file arguments into a fusefrontend.Args struct - // that is passed to the filesystem implementation - cryptoBackend := cryptocore.BackendGoGCM - if args.openssl { - cryptoBackend = cryptocore.BackendOpenSSL - } - if args.aessiv { - cryptoBackend = cryptocore.BackendAESSIV - } - // forceOwner implies allow_other, as documented. - // Set this early, so args.allow_other can be relied on below this point. - if args._forceOwner != nil { - args.allow_other = true - } - frontendArgs := fusefrontend.Args{ - Cipherdir: args.cipherdir, - PlaintextNames: args.plaintextnames, - LongNames: args.longnames, - ConfigCustom: args._configCustom, - NoPrealloc: args.noprealloc, - SerializeReads: args.serialize_reads, - ForceDecode: args.forcedecode, - ForceOwner: args._forceOwner, - Exclude: args.exclude, - ExcludeWildcard: args.excludeWildcard, - ExcludeFrom: args.excludeFrom, - Suid: args.suid, - KernelCache: args.kernel_cache, - SharedStorage: args.sharedstorage, - } - // confFile is nil when "-zerokey" or "-masterkey" was used - if confFile != nil { - // Settings from the config file override command line args - frontendArgs.PlaintextNames = confFile.IsFeatureFlagSet(configfile.FlagPlaintextNames) - args.raw64 = confFile.IsFeatureFlagSet(configfile.FlagRaw64) - args.hkdf = confFile.IsFeatureFlagSet(configfile.FlagHKDF) - if confFile.IsFeatureFlagSet(configfile.FlagAESSIV) { - cryptoBackend = cryptocore.BackendAESSIV - } else if args.reverse { - tlog.Fatal.Printf("AES-SIV is required by reverse mode, but not enabled in the config file") - os.Exit(exitcodes.Usage) - } - } - // If allow_other is set and we run as root, try to give newly created files to - // the right user. - if args.allow_other && os.Getuid() == 0 { - frontendArgs.PreserveOwner = true - } - jsonBytes, _ := json.MarshalIndent(frontendArgs, "", "\t") - tlog.Debug.Printf("frontendArgs: %s", string(jsonBytes)) - - // Init crypto backend - cCore := cryptocore.New(masterkey, cryptoBackend, contentenc.DefaultIVBits, args.hkdf, args.forcedecode) - cEnc := contentenc.New(cCore, contentenc.DefaultBS, args.forcedecode) - nameTransform := nametransform.New(cCore.EMECipher, frontendArgs.LongNames, args.raw64) - // Init badname patterns - nameTransform.BadnamePatterns = make([]string, 0) - for _, pattern := range args.badname { - _, err := filepath.Match(pattern, "") // Make sure pattern is valid - if err != nil { - tlog.Fatal.Printf("-badname: invalid pattern %q supplied", pattern) - os.Exit(exitcodes.Usage) - } else { - nameTransform.BadnamePatterns = append(nameTransform.BadnamePatterns, pattern) - } - } - // After the crypto backend is initialized, - // we can purge the master key from memory. - for i := range masterkey { - masterkey[i] = 0 - } - masterkey = nil - // Spawn fusefrontend - if args.reverse { - if cryptoBackend != cryptocore.BackendAESSIV { - log.Panic("reverse mode must use AES-SIV, everything else is insecure") - } - rootNode = fusefrontend_reverse.NewRootNode(frontendArgs, cEnc, nameTransform) - } else { - rootNode = fusefrontend.NewRootNode(frontendArgs, cEnc, nameTransform) - } - // We have opened the socket early so that we cannot fail here after - // asking the user for the password - if args._ctlsockFd != nil { - go ctlsocksrv.Serve(args._ctlsockFd, rootNode.(ctlsocksrv.Interface)) - } - return rootNode, func() { cCore.Wipe() } -} - -// initGoFuse calls into go-fuse to mount `rootNode` on `args.mountpoint`. -// The mountpoint is ready to use when the functions returns. -// On error, it calls os.Exit and does not return. -func initGoFuse(rootNode fs.InodeEmbedder, args *argContainer) *fuse.Server { - var fuseOpts *fs.Options - sec := time.Second - if args.sharedstorage { - // sharedstorage mode sets all cache timeouts to zero so changes to the - // backing shared storage show up immediately. - // Hard links are disabled by using automatically incrementing - // inode numbers provided by go-fuse. - fuseOpts = &fs.Options{ - FirstAutomaticIno: 1000, - } - } else { - fuseOpts = &fs.Options{ - // These options are to be compatible with libfuse defaults, - // making benchmarking easier. - NegativeTimeout: &sec, - AttrTimeout: &sec, - EntryTimeout: &sec, - } - } - fuseOpts.NullPermissions = true - // Enable go-fuse warnings - fuseOpts.Logger = log.New(os.Stderr, "go-fuse: ", log.Lmicroseconds) - fuseOpts.MountOptions = fuse.MountOptions{ - // Writes and reads are usually capped at 128kiB on Linux through - // the FUSE_MAX_PAGES_PER_REQ kernel constant in fuse_i.h. Our - // sync.Pool buffer pools are sized acc. to the default. Users may set - // the kernel constant higher, and Synology NAS kernels are known to - // have it >128kiB. We cannot handle more than 128kiB, so we tell - // the kernel to limit the size explicitly. - MaxWrite: fuse.MAX_KERNEL_WRITE, - Options: []string{fmt.Sprintf("max_read=%d", fuse.MAX_KERNEL_WRITE)}, - Debug: args.fusedebug, - } - - mOpts := &fuseOpts.MountOptions - if args.allow_other { - tlog.Info.Printf(tlog.ColorYellow + "The option \"-allow_other\" is set. Make sure the file " + - "permissions protect your data from unwanted access." + tlog.ColorReset) - mOpts.AllowOther = true - // Make the kernel check the file permissions for us - mOpts.Options = append(mOpts.Options, "default_permissions") - } - if args.acl { - mOpts.EnableAcl = true - } - if args.forcedecode { - tlog.Info.Printf(tlog.ColorYellow + "THE OPTION \"-forcedecode\" IS ACTIVE. GOCRYPTFS WILL RETURN CORRUPT DATA!" + - tlog.ColorReset) - } - // fusermount from libfuse 3.x removed the "nonempty" option and exits - // with an error if it sees it. Only add it to the options on libfuse 2.x. - if args.nonempty && haveFusermount2() { - mOpts.Options = append(mOpts.Options, "nonempty") - } - // Set values shown in "df -T" and friends - // First column, "Filesystem" - fsname := args.cipherdir - if args.fsname != "" { - fsname = args.fsname - } - fsname2 := strings.Replace(fsname, ",", "_", -1) - if fsname2 != fsname { - tlog.Warn.Printf("Warning: %q will be displayed as %q in \"df -T\"", fsname, fsname2) - fsname = fsname2 - } - mOpts.Options = append(mOpts.Options, "fsname="+fsname) - // Second column, "Type", will be shown as "fuse." + Name - mOpts.Name = "gocryptfs" - if args.reverse { - mOpts.Name += "-reverse" - } - // Add a volume name if running osxfuse. Otherwise the Finder will show it as - // something like "osxfuse Volume 0 (gocryptfs)". - if runtime.GOOS == "darwin" { - volname := strings.Replace(path.Base(args.mountpoint), ",", "_", -1) - mOpts.Options = append(mOpts.Options, "volname="+volname) - } - // The kernel enforces read-only operation, we just have to pass "ro". - // Reverse mounts are always read-only. - if args.ro || args.reverse { - mOpts.Options = append(mOpts.Options, "ro") - } else if args.rw { - mOpts.Options = append(mOpts.Options, "rw") - } - // If both "nosuid" & "suid", "nodev" & "dev", etc were passed, the safer - // option wins. - if args.nosuid { - mOpts.Options = append(mOpts.Options, "nosuid") - } else if args.suid { - mOpts.Options = append(mOpts.Options, "suid") - } - if args.nodev { - mOpts.Options = append(mOpts.Options, "nodev") - } else if args.dev { - mOpts.Options = append(mOpts.Options, "dev") - } - if args.noexec { - mOpts.Options = append(mOpts.Options, "noexec") - } else if args.exec { - mOpts.Options = append(mOpts.Options, "exec") - } - // Add additional mount options (if any) after the stock ones, so the user has - // a chance to override them. - if args.ko != "" { - parts := strings.Split(args.ko, ",") - tlog.Debug.Printf("Adding -ko mount options: %v", parts) - mOpts.Options = append(mOpts.Options, parts...) - } - srv, err := fs.Mount(args.mountpoint, rootNode, fuseOpts) - if err != nil { - tlog.Fatal.Printf("fs.Mount failed: %s", strings.TrimSpace(err.Error())) - if runtime.GOOS == "darwin" { - tlog.Info.Printf("Maybe you should run: /Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse") - } - os.Exit(exitcodes.FuseNewServer) - } - - // All FUSE file and directory create calls carry explicit permission - // information. We need an unrestricted umask to create the files and - // directories with the requested permissions. - syscall.Umask(0000) - - return srv -} - -// haveFusermount2 finds out if the "fusermount" binary is from libfuse 2.x. -func haveFusermount2() bool { - path, err := exec.LookPath("fusermount") - if err != nil { - path = "/bin/fusermount" - } - cmd := exec.Command(path, "-V") - var out bytes.Buffer - cmd.Stdout = &out - err = cmd.Run() - if err != nil { - tlog.Warn.Printf("warning: haveFusermount2: %v", err) - return false - } - // libfuse 2: fusermount version: 2.9.9 - // libfuse 3: fusermount3 version: 3.9.0 - v := out.String() - if strings.HasPrefix(v, "fusermount version") { - return true - } - return false -} - -func handleSigint(srv *fuse.Server, mountpoint string) { - ch := make(chan os.Signal, 1) - signal.Notify(ch, os.Interrupt) - signal.Notify(ch, syscall.SIGTERM) - go func() { - <-ch - unmount(srv, mountpoint) - os.Exit(exitcodes.SigInt) - }() -} - -// unmount() calls srv.Unmount(), and if that fails, calls "fusermount -u -z" -// (lazy unmount). -func unmount(srv *fuse.Server, mountpoint string) { - err := srv.Unmount() - if err != nil { - tlog.Warn.Printf("unmount: srv.Unmount returned %v", err) - if runtime.GOOS == "linux" { - // MacOSX does not support lazy unmount - tlog.Info.Printf("Trying lazy unmount") - cmd := exec.Command("fusermount", "-u", "-z", mountpoint) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - cmd.Run() - } - } -} diff --git a/package-release-tarballs.bash b/package-release-tarballs.bash deleted file mode 100755 index ac651bf..0000000 --- a/package-release-tarballs.bash +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/bash - -set -eu - -cd "$(dirname "$0")" - -SIGNME="" - -# git_archive_extra PREFIX EXTRA1 [EXTRA2 ...] -# -# Call git-archive and add additional files to the tarball. -# Output tarball is called "$PREFIX.tar.gz" and contains one folder -# called "$PREFIX". -git_archive_extra() { - local PREFIX=$1 - shift - # Add files tracked in git - git archive --prefix "$PREFIX/" -o "$PREFIX.tar" HEAD - # Add "extra" files - tar --owner=root --group=root --transform "s!^!$PREFIX/!" --append -f "$PREFIX.tar" "$@" - # Compress - gzip -f "$PREFIX.tar" -} - -package_source() { - local GITVERSION - GITVERSION=$(git describe --tags --dirty) - echo "$GITVERSION" > VERSION - - # Render the manpages and include them in the tarball. This - # avoids a build-dependency to pandoc. - ./Documentation/MANPAGE-render.bash - - # gocryptfs source tarball - local PREFIX_SRC_ONLY=gocryptfs_${GITVERSION}_src - git_archive_extra "$PREFIX_SRC_ONLY" VERSION Documentation/*.1 - - # gocryptfs source + dependencies tarball - go mod vendor - local PREFIX_SRC_DEPS=gocryptfs_${GITVERSION}_src-deps - git_archive_extra "$PREFIX_SRC_DEPS" VERSION Documentation/*.1 vendor - - rm VERSION - rm -R vendor - - echo "Tars created." - SIGNME+=" $PREFIX_SRC_ONLY.tar.gz $PREFIX_SRC_DEPS.tar.gz" -} - -package_static_binary() { - # Compiles the gocryptfs binary and sets $GITVERSION - source build-without-openssl.bash - - if ldd gocryptfs > /dev/null ; then - echo "error: compiled gocryptfs binary is not static" - exit 1 - fi - - # Build man pages gocryptfs.1 & gocryptfs-xray.1 - ./Documentation/MANPAGE-render.bash > /dev/null - - local ARCH - ARCH=$(go env GOARCH) - local OS - OS=$(go env GOOS) - - local TARBALL - TARBALL=gocryptfs_${GITVERSION}_${OS}-static_${ARCH}.tar - local TARGZ - TARGZ=$TARBALL.gz - - tar --owner=root --group=root --create -vf "$TARBALL" gocryptfs - tar --owner=root --group=root --append -vf "$TARBALL" -C gocryptfs-xray gocryptfs-xray - tar --owner=root --group=root --append -vf "$TARBALL" -C Documentation gocryptfs.1 gocryptfs-xray.1 - - gzip -f "$TARBALL" - - echo "Tar created." - SIGNME+=" $TARGZ" -} - -signing_hint() { - local GITVERSION - GITVERSION=$(git describe --tags --dirty) - - echo "Hint for signing:" - echo " for i in gocryptfs_${GITVERSION}_*.tar.gz ; do gpg -u 23A02740 --armor --detach-sig \$i ; done" -} - -if git describe --dirty | grep dirty ; then - echo "Tree is dirty - I will not package this!" - exit 1 -fi - -package_source -package_static_binary -signing_hint diff --git a/profiling.go b/profiling.go deleted file mode 100644 index 11d6326..0000000 --- a/profiling.go +++ /dev/null @@ -1,95 +0,0 @@ -package main - -import ( - "os" - "runtime/pprof" - "runtime/trace" - "time" - - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// setupCpuprofile is called to handle a non-empty "-cpuprofile" cli argument -func setupCpuprofile(cpuprofileArg string) func() { - tlog.Info.Printf("Writing CPU profile to %s", cpuprofileArg) - f, err := os.Create(cpuprofileArg) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.Profiler) - } - err = pprof.StartCPUProfile(f) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.Profiler) - } - return func() { - pprof.StopCPUProfile() - } -} - -// setupTrace is called to handle a non-empty "-memprofile" cli argument -func setupMemprofile(memprofileArg string) func() { - tlog.Info.Printf("Will write memory profile to %q", memprofileArg) - f, err := os.Create(memprofileArg) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.Profiler) - } - exiting := false - // Write the memory profile to disk every 60 seconds to get the in-use - // memory stats. - go func() { - for { - time.Sleep(60 * time.Second) - if exiting { - return - } - _, err = f.Seek(0, 0) - if err != nil { - tlog.Warn.Printf("memprofile: Seek failed: %v", err) - return - } - err = f.Truncate(0) - if err != nil { - tlog.Warn.Printf("memprofile: Truncate failed: %v", err) - return - } - err = pprof.WriteHeapProfile(f) - if err == nil { - tlog.Info.Printf("memprofile: periodic write to %q succeeded", - memprofileArg) - } else { - tlog.Warn.Printf("memprofile: periodic WriteHeapProfile failed: %v", err) - return - } - } - }() - // Final write on exit. - return func() { - exiting = true - err = pprof.WriteHeapProfile(f) - if err != nil { - tlog.Warn.Printf("memprofile: on-exit WriteHeapProfile failed: %v", err) - } - f.Close() - } -} - -// setupTrace is called to handle a non-empty "-trace" cli argument -func setupTrace(traceArg string) func() { - tlog.Info.Printf("Writing execution trace to %s", traceArg) - f, err := os.Create(traceArg) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.Profiler) - } - err = trace.Start(f) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.Profiler) - } - return func() { - trace.Stop() - } -} diff --git a/profiling/ls.bash b/profiling/ls.bash deleted file mode 100755 index 5f736b6..0000000 --- a/profiling/ls.bash +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash -eu - -cd "$(dirname "$0")" - -# Download /tmp/linux-3.0.tar.gz -../tests/dl-linux-tarball.bash - -T=$(mktemp -d) -mkdir $T/a $T/b - -../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" $T/a -../gocryptfs -quiet -nosyslog -extpass "echo test" $T/a $T/b - -# Cleanup trap -trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT - -echo "Creating 40000 empty files (linux-3.0.tar.gz contains 36782 files)..." -SECONDS=0 -for dir in $(seq -w 1 200); do - mkdir $T/b/$dir - ( cd $T/b/$dir ; touch $(seq -w 1 200) ) -done -echo "done, $SECONDS seconds" - -echo "Remount..." -fusermount -u $T/b -../gocryptfs -quiet -nosyslog -extpass "echo test" -cpuprofile $T/cprof -memprofile $T/mprof \ - $T/a $T/b - -echo "Running ls under profiler (3x)..." -for i in 1 2 3; do -SECONDS=0 -ls -lR $T/b > /dev/null -echo "$i done, $SECONDS seconds" -done - -echo -echo "Hint: go tool pprof ../gocryptfs $T/cprof" -echo " go tool pprof -alloc_space ../gocryptfs $T/mprof" diff --git a/profiling/streaming-read.bash b/profiling/streaming-read.bash deleted file mode 100755 index df75c68..0000000 --- a/profiling/streaming-read.bash +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -eu - -cd "$(dirname "$0")" - -T=$(mktemp -d) -mkdir $T/a $T/b - -../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" $T/a -../gocryptfs -quiet -extpass "echo test" $T/a $T/b - -# Cleanup trap -trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT - -# Write 100MB test file -dd if=/dev/zero of=$T/b/zero bs=1M count=100 status=none - -# Remount with profiling -fusermount -u $T/b -../gocryptfs -quiet -extpass "echo test" -cpuprofile $T/cprof -memprofile $T/mprof \ - $T/a $T/b - -# Read 10 x 100MB instead of 1 x 1GB to keep the used disk space low -for i in $(seq 1 10); do - dd if=$T/b/zero of=/dev/null bs=1M count=100 -done - -echo -echo "Hint: go tool pprof ../gocryptfs $T/cprof" -echo " go tool pprof -alloc_space ../gocryptfs $T/mprof" diff --git a/profiling/streaming-write.bash b/profiling/streaming-write.bash deleted file mode 100755 index 7732cfb..0000000 --- a/profiling/streaming-write.bash +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -eu - -cd "$(dirname "$0")" - -T=$(mktemp -d) -mkdir $T/a $T/b - -../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" $T/a -../gocryptfs -quiet -extpass "echo test" -cpuprofile $T/cprof -memprofile $T/mprof \ - $T/a $T/b - -# Cleanup trap -trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT - -# Write 10 x 100MB instead of 1 x 1GB to keep the used disk space low -for i in $(seq 1 10); do - dd if=/dev/zero of=$T/b/zero bs=1M count=100 -done - -echo -echo "Hint: go tool pprof ../gocryptfs $T/cprof" -echo " go tool pprof -alloc_space ../gocryptfs $T/mprof" diff --git a/profiling/tar-extract.bash b/profiling/tar-extract.bash deleted file mode 100755 index 21b2e2b..0000000 --- a/profiling/tar-extract.bash +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -eu - -cd "$(dirname "$0")" - -# Download /tmp/linux-3.0.tar.gz -../tests/dl-linux-tarball.bash - -T=$(mktemp -d) -mkdir $T/a $T/b - -../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" $T/a -../gocryptfs -quiet -extpass "echo test" -cpuprofile $T/cprof -memprofile $T/mprof \ - $T/a $T/b - -# Cleanup trap -trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT - -echo "Extracting..." -time tar xzf /tmp/linux-3.0.tar.gz -C $T/b - -echo -echo "Hint: go tool pprof ../gocryptfs $T/cprof" -echo " go tool pprof -alloc_space ../gocryptfs $T/mprof" diff --git a/profiling/write-trace.bash b/profiling/write-trace.bash deleted file mode 100755 index 3475140..0000000 --- a/profiling/write-trace.bash +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -eu -# -# Write an execution trace of writing 100MB of data -# to a new gocryptfs mount on /tmp - -cd "$(dirname "$0")" - -T=$(mktemp -d) -mkdir $T/a $T/b - -../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" $T/a -../gocryptfs -quiet -extpass "echo test" -trace $T/trace \ - $T/a $T/b - -# Cleanup trap -trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT - -# Write only 1x100MB, otherwise the trace gets too big. -dd if=/dev/zero of=$T/b/zero bs=1M count=100 - -echo -echo "Hint: go tool trace $T/trace" - diff --git a/race.go b/race.go deleted file mode 100644 index a17501a..0000000 --- a/race.go +++ /dev/null @@ -1,8 +0,0 @@ -// +build race - -package main - -func init() { - // adds " -race" to the output of "gocryptfs -version" - raceDetector = true -} diff --git a/sendusr1.go b/sendusr1.go deleted file mode 100644 index 0fdcd0e..0000000 --- a/sendusr1.go +++ /dev/null @@ -1,22 +0,0 @@ -package main - -import ( - "os" - "syscall" - - "github.com/rfjakob/gocryptfs/internal/tlog" -) - -// Send signal USR1 to "pid" (usually our parent process). This notifies it -// that the mounting has completed successfully. -func sendUsr1(pid int) { - p, err := os.FindProcess(pid) - if err != nil { - tlog.Warn.Printf("sendUsr1: FindProcess: %v\n", err) - return - } - err = p.Signal(syscall.SIGUSR1) - if err != nil { - tlog.Warn.Printf("sendUsr1: Signal: %v\n", err) - } -} diff --git a/test-without-openssl.bash b/test-without-openssl.bash deleted file mode 100755 index 3f9de9e..0000000 --- a/test-without-openssl.bash +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -eu - -cd "$(dirname "$0")" - -./test.bash -tags without_openssl "$@" diff --git a/test.bash b/test.bash deleted file mode 100755 index 091f0ac..0000000 --- a/test.bash +++ /dev/null @@ -1,93 +0,0 @@ -#!/bin/bash - -if [[ -z $TMPDIR ]]; then - TMPDIR=/var/tmp - export TMPDIR -else - echo "Using TMPDIR=$TMPDIR" -fi - -set -eu - -cd "$(dirname "$0")" -export GO111MODULE=on -MYNAME=$(basename "$0") -TESTDIR=$TMPDIR/gocryptfs-test-parent-$UID -mkdir -p "$TESTDIR" -LOCKFILE=$TESTDIR/$MYNAME.lock - -function unmount_leftovers { - RET=0 - for i in $(mount | grep "$TESTDIR" | cut -f3 -d" "); do - echo "Warning: unmounting leftover filesystem: $i" - tests/fuse-unmount.bash "$i" - RET=1 - done - return $RET -} - -( -# Prevent multiple parallel test.bash instances as this causes -# all kinds of mayham -if ! command -v flock > /dev/null ; then - echo "flock is not available, skipping" -elif ! flock -n 200 ; then - echo "Could not acquire lock on $LOCKFILE - already running?" - exit 1 -fi - -# Clean up dangling filesystems and don't exit if we found some -unmount_leftovers || true - -./build-without-openssl.bash -# Don't build with openssl if we were passed "-tags without_openssl" -if [[ "$*" != *without_openssl* ]] ; then - ./build.bash -fi - -if ! go tool | grep vet > /dev/null ; then - echo "'go tool vet' not available - skipping" -elif [[ -d vendor ]] ; then - echo "vendor directory exists, skipping 'go tool vet'" -else - go vet "$@" . -fi - -if command -v shellcheck > /dev/null ; then - # SC2002 = useless cat. Does no harm, disable the check. - shellcheck -x -e SC2002 ./*.bash -else - echo "shellcheck not installed - skipping" -fi - -# We don't want all the subprocesses -# holding the lock file open -# vvvvv -go test -count 1 ./... "$@" 200>&- -# ^^^^^^^^ -# Disable result caching - -# Clean up dangling filesystems but do exit with an error if we found one -unmount_leftovers || { echo "Error: the tests left mounted filesystems behind" ; exit 1 ; } - -# The tests cannot to this themselves as they are run in parallel. -# Don't descend into possibly still mounted example filesystems. -if [[ $OSTYPE == *linux* ]] ; then - rm -Rf --one-file-system "$TESTDIR" -else - # MacOS "rm" does not understand "--one-file-system" - rm -Rf "$TESTDIR" -fi - -if grep -R "panic(" ./*.go internal ; then - echo "$MYNAME: Please use log.Panic instead of naked panic!" - exit 1 -fi - -# All functions from the commit msg in https://go-review.googlesource.com/c/go/+/210639 -if find . -type f -name \*.go -print0 | xargs -0 grep -E 'syscall.(Setegid|Seteuid|Setgroups|Setgid|Setregid|Setreuid|Setresgid|Setresuid|Setuid)\(' ; then - echo "$MYNAME: You probably want to use unix.Setgroups and friends. See the comments in OpenatUser() for why." - exit 1 -fi - -) 200> "$LOCKFILE" diff --git a/tests/canonical-benchmarks.bash b/tests/canonical-benchmarks.bash deleted file mode 100755 index 71563ab..0000000 --- a/tests/canonical-benchmarks.bash +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash -eu -# -# Run the set of "canonical" benchmarks that are shown on -# https://nuetzlich.net/gocryptfs/comparison/ -# against the directory passed as "$1". -# -# This is called by the top-level script "benchmark.bash". - -cd "$(dirname "$0")" -MYNAME=$(basename "$0") -MD5="$PWD/stress_tests/linux-3.0.md5sums" - -if [ $# -ne 1 ]; then - echo "usage: $MYNAME TESTDIR" - exit 1 -fi - -# Download /tmp/linux-3.0.tar.gz -./dl-linux-tarball.bash - -# cd to TESTDIR -cd "$1" - -# Execute command, discard all stdout output, print elapsed time -# (to stderr, unfortunately). -function etime { - # Make the bash builtin "time" print out only the elapsed wall clock - # seconds - TIMEFORMAT=%R - time "$@" > /dev/null -} - -echo -n "WRITE: " -dd if=/dev/zero of=zero bs=131072 count=2000 2>&1 | tail -n 1 -sleep 0.1 -echo -n "READ: " -dd if=zero of=/dev/null bs=131072 count=2000 2>&1 | tail -n 1 -rm zero -sleep 0.1 -echo -n "UNTAR: " -etime tar xzf /tmp/linux-3.0.tar.gz -sleep 0.1 -echo -n "MD5: " -etime md5sum --quiet -c $MD5 -sleep 0.1 -echo -n "LS: " -etime ls -lR linux-3.0 -sleep 0.1 -echo -n "RM: " -etime rm -Rf linux-3.0 diff --git a/tests/cli/cli_test.go b/tests/cli/cli_test.go deleted file mode 100644 index 9248f5d..0000000 --- a/tests/cli/cli_test.go +++ /dev/null @@ -1,888 +0,0 @@ -package cli - -// Test CLI operations like "-init", "-password" etc - -import ( - "fmt" - "io/ioutil" - "os" - "os/exec" - "strconv" - "strings" - "sync" - "syscall" - "testing" - "time" - - "github.com/rfjakob/gocryptfs/internal/configfile" - "github.com/rfjakob/gocryptfs/internal/exitcodes" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -var testPw = []byte("test") - -func TestMain(m *testing.M) { - test_helpers.ResetTmpDir(false) - before := test_helpers.ListFds(0, "") - r := m.Run() - after := test_helpers.ListFds(0, "") - if len(before) != len(after) { - fmt.Printf("fd leak in test process? before, after:\n%v\n%v\n", before, after) - os.Exit(1) - } - os.Exit(r) -} - -// Test -init flag -func TestInit(t *testing.T) { - dir := test_helpers.InitFS(t) - _, c, err := configfile.LoadAndDecrypt(dir+"/"+configfile.ConfDefaultName, testPw) - if err != nil { - t.Fatal(err) - } - if c.IsFeatureFlagSet(configfile.FlagAESSIV) { - t.Error("AESSIV flag should not be set") - } -} - -// Test that gocryptfs.conf and gocryptfs.diriv are there with the expected -// permissions after -init -func TestInitFilePerms(t *testing.T) { - dir := test_helpers.InitFS(t) - var st syscall.Stat_t - syscall.Stat(dir+"/gocryptfs.conf", &st) - perms := st.Mode & 0777 - if perms != 0400 { - t.Errorf("Wrong permissions for gocryptfs.conf: %#o", perms) - } - st = syscall.Stat_t{} - syscall.Stat(dir+"/gocryptfs.diriv", &st) - perms = st.Mode & 0777 - // From v1.7.1, these are created with 0440 permissions, see - // https://github.com/rfjakob/gocryptfs/issues/387 . - // From v2.0, created with 0444 perms, see - // https://github.com/rfjakob/gocryptfs/issues/539 . - if perms != 0444 { - t.Errorf("Wrong permissions for gocryptfs.diriv: %#o", perms) - } -} - -// Test -init with -devrandom flag -func TestInitDevRandom(t *testing.T) { - test_helpers.InitFS(t, "-devrandom") -} - -// Test -init with -aessiv -func TestInitAessiv(t *testing.T) { - dir := test_helpers.InitFS(t, "-aessiv") - _, c, err := configfile.LoadAndDecrypt(dir+"/"+configfile.ConfDefaultName, testPw) - if err != nil { - t.Fatal(err) - } - if !c.IsFeatureFlagSet(configfile.FlagAESSIV) { - t.Error("AESSIV flag should be set but is not") - } -} - -// Test -init with -reverse -func TestInitReverse(t *testing.T) { - dir := test_helpers.InitFS(t, "-reverse") - _, c, err := configfile.LoadAndDecrypt(dir+"/"+configfile.ConfReverseName, testPw) - if err != nil { - t.Fatal(err) - } - if !c.IsFeatureFlagSet(configfile.FlagAESSIV) { - t.Error("AESSIV flag should be set but is not") - } -} - -// testPasswd changes the password from "test" to "test" using -// the -extpass method, then from "test" to "newpasswd" using the -// stdin method. -func testPasswd(t *testing.T, dir string, extraArgs ...string) { - // Change password using "-extpass" - args := []string{"-q", "-passwd", "-extpass", "echo test"} - args = append(args, extraArgs...) - args = append(args, dir) - cmd := exec.Command(test_helpers.GocryptfsBinary, args...) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - err := cmd.Run() - if err != nil { - t.Error(err) - } - // Change password using stdin - args = []string{"-q", "-passwd"} - args = append(args, extraArgs...) - args = append(args, dir) - cmd = exec.Command(test_helpers.GocryptfsBinary, args...) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - p, err := cmd.StdinPipe() - if err != nil { - t.Fatal(err) - } - err = cmd.Start() - if err != nil { - t.Error(err) - } - // Old password - p.Write([]byte("test\n")) - // New password - p.Write([]byte("newpasswd\n")) - p.Close() - err = cmd.Wait() - if err != nil { - t.Error(err) - } -} - -// Test -passwd flag -func TestPasswd(t *testing.T) { - // Create FS - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - // Add content - test_helpers.MountOrFatal(t, dir, mnt, "-extpass", "echo test") - file1 := mnt + "/file1" - err := ioutil.WriteFile(file1, []byte("somecontent"), 0600) - if err != nil { - t.Fatal(err) - } - err = test_helpers.UnmountErr(mnt) - if err != nil { - t.Fatal(err) - } - // Change password to "newpasswd" - testPasswd(t, dir) - // Mount and verify - test_helpers.MountOrFatal(t, dir, mnt, "-extpass", "echo newpasswd") - content, err := ioutil.ReadFile(file1) - if err != nil { - t.Error(err) - } else if string(content) != "somecontent" { - t.Errorf("wrong content: %q", string(content)) - } - err = test_helpers.UnmountErr(mnt) - if err != nil { - t.Fatal(err) - } -} - -// cp copies file at `src` to `dst`, overwriting -// `dst` if it already exists. Calls t.Fatal on failure. -func cp(t *testing.T, src string, dst string) { - conf, err := ioutil.ReadFile(src) - if err != nil { - t.Fatal(err) - } - syscall.Unlink(dst) - err = ioutil.WriteFile(dst, conf, 0600) - if err != nil { - t.Fatal(err) - } -} - -// Test -passwd with -masterkey -func TestPasswdMasterkey(t *testing.T) { - // Create FS - dir := test_helpers.InitFS(t) - // Overwrite with config with known master key - cp(t, "gocryptfs.conf.b9e5ba23", dir+"/gocryptfs.conf") - // Add content - mnt := dir + ".mnt" - test_helpers.MountOrFatal(t, dir, mnt, "-extpass", "echo test") - file1 := mnt + "/file1" - err := ioutil.WriteFile(file1, []byte("somecontent"), 0600) - if err != nil { - t.Fatal(err) - } - test_helpers.UnmountPanic(mnt) - // Change password using stdin - args := []string{"-q", "-passwd", "-masterkey", - "b9e5ba23-981a22b8-c8d790d8-627add29-f680513f-b7b7035f-d203fb83-21d82205"} - args = append(args, dir) - cmd := exec.Command(test_helpers.GocryptfsBinary, args...) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - p, err := cmd.StdinPipe() - if err != nil { - t.Fatal(err) - } - err = cmd.Start() - if err != nil { - t.Error(err) - } - // New password - p.Write([]byte("newpasswd\n")) - p.Close() - err = cmd.Wait() - if err != nil { - t.Error(err) - } - // Mount and verify - test_helpers.MountOrFatal(t, dir, mnt, "-extpass", "echo newpasswd") - content, err := ioutil.ReadFile(file1) - if err != nil { - t.Error(err) - } else if string(content) != "somecontent" { - t.Errorf("wrong content: %q", string(content)) - } - test_helpers.UnmountPanic(mnt) -} - -// Test -passwd with -masterkey=stdin -func TestPasswdMasterkeyStdin(t *testing.T) { - // Create FS - dir := test_helpers.InitFS(t) - // Overwrite with config with known master key - cp(t, "gocryptfs.conf.b9e5ba23", dir+"/gocryptfs.conf") - // Add content - mnt := dir + ".mnt" - test_helpers.MountOrFatal(t, dir, mnt, "-extpass", "echo test") - file1 := mnt + "/file1" - err := ioutil.WriteFile(file1, []byte("somecontent"), 0600) - if err != nil { - t.Fatal(err) - } - test_helpers.UnmountPanic(mnt) - // Change password using stdin - args := []string{"-q", "-passwd", "-masterkey=stdin"} - args = append(args, dir) - cmd := exec.Command(test_helpers.GocryptfsBinary, args...) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - p, err := cmd.StdinPipe() - if err != nil { - t.Fatal(err) - } - err = cmd.Start() - if err != nil { - t.Error(err) - } - // Masterkey - p.Write([]byte("b9e5ba23-981a22b8-c8d790d8-627add29-f680513f-b7b7035f-d203fb83-21d82205\n")) - // New password - p.Write([]byte("newpasswd\n")) - p.Close() - err = cmd.Wait() - if err != nil { - t.Fatal(err) - } - // Mount and verify - test_helpers.MountOrFatal(t, dir, mnt, "-extpass", "echo newpasswd") - content, err := ioutil.ReadFile(file1) - if err != nil { - t.Fatal(err) - } else if string(content) != "somecontent" { - t.Errorf("wrong content: %q", string(content)) - } - test_helpers.UnmountPanic(mnt) -} - -// Test -passwd with -reverse -func TestPasswdReverse(t *testing.T) { - // Create FS - dir := test_helpers.InitFS(t, "-reverse") - testPasswd(t, dir, "-reverse") -} - -// Test -passwd with -scryptn -func TestPasswdScryptn(t *testing.T) { - dir := test_helpers.InitFS(t) - cf, err := configfile.Load(dir + "/gocryptfs.conf") - if err != nil { - t.Fatal(err) - } - testPasswd(t, dir, "-scryptn", strconv.Itoa(cf.ScryptObject.LogN()+1)) - cf2, err := configfile.Load(dir + "/gocryptfs.conf") - if err != nil { - t.Fatal(err) - } - if cf2.ScryptObject.LogN() != cf.ScryptObject.LogN()+1 { - t.Errorf("wrong logN value %d", cf2.ScryptObject.LogN()) - } -} - -// Test -init & -config flag -func TestInitConfig(t *testing.T) { - config := test_helpers.TmpDir + "/TestInitConfig.conf" - dir := test_helpers.InitFS(t, "-config="+config) - - _, err := os.Stat(config) - if err != nil { - t.Fatal(err) - } - - // Test -passwd & -config - cmd2 := exec.Command(test_helpers.GocryptfsBinary, "-q", "-passwd", "-extpass", "echo test", - "-config", config, dir) - cmd2.Stdout = os.Stdout - cmd2.Stderr = os.Stderr - err = cmd2.Run() - if err != nil { - t.Error(err) - } -} - -// Test -ro -func TestRo(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - test_helpers.MountOrFatal(t, dir, mnt, "-ro", "-extpass=echo test") - defer test_helpers.UnmountPanic(mnt) - - file := mnt + "/file" - err := os.Mkdir(file, 0777) - if err == nil { - t.Errorf("Mkdir should have failed") - } - _, err = os.Create(file) - if err == nil { - t.Errorf("Create should have failed") - } -} - -// Test "-nonempty" -func TestNonempty(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - err := os.Mkdir(mnt, 0700) - if err != nil { - t.Fatal(err) - } - err = ioutil.WriteFile(mnt+"/somefile", []byte("xyz"), 0600) - if err != nil { - t.Fatal(err) - } - err = test_helpers.Mount(dir, mnt, false, "-extpass=echo test") - if err == nil { - t.Errorf("Mounting over a file should fail per default") - } - // Should work with "-nonempty" - test_helpers.MountOrFatal(t, dir, mnt, "-nonempty", "-extpass=echo test") - test_helpers.UnmountPanic(mnt) -} - -// -nofail should be ignored and the mount should succeed -func TestNofail(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - test_helpers.MountOrFatal(t, dir, mnt, "-nofail", "-extpass=echo test") - defer test_helpers.UnmountPanic(mnt) -} - -// Test "mountpoint shadows cipherdir" handling -func TestShadows(t *testing.T) { - mnt := test_helpers.InitFS(t) - cipher := mnt + ".cipher" - err := os.Rename(mnt, cipher) - if err != nil { - t.Fatal(err) - } - // This should work - // (note that MountOrFatal creates "mnt" again) - test_helpers.MountOrFatal(t, cipher, mnt, "-extpass=echo test") - test_helpers.UnmountPanic(mnt) - cipher2 := mnt + "/cipher" - err = os.Rename(cipher, cipher2) - if err != nil { - t.Fatal(err) - } - // This should fail - err = test_helpers.Mount(cipher2, mnt, false, "-extpass=echo test") - if err == nil { - t.Errorf("Should have failed") - } -} - -// TestMountPasswordIncorrect makes sure the correct exit code is used when the password -// was incorrect while mounting -func TestMountPasswordIncorrect(t *testing.T) { - cDir := test_helpers.InitFS(t) // Create filesystem with password "test" - pDir := cDir + ".mnt" - err := test_helpers.Mount(cDir, pDir, false, "-extpass", "echo WRONG", "-wpanic=false") - exitCode := test_helpers.ExtractCmdExitCode(err) - if exitCode != exitcodes.PasswordIncorrect { - t.Errorf("want=%d, got=%d", exitcodes.PasswordIncorrect, exitCode) - } -} - -// TestPasswdPasswordIncorrect makes sure the correct exit code is used when the password -// was incorrect while changing the password -func TestPasswdPasswordIncorrect(t *testing.T) { - cDir := test_helpers.InitFS(t) // Create filesystem with password "test" - // Change password - cmd := exec.Command(test_helpers.GocryptfsBinary, "-passwd", cDir) - childStdin, err := cmd.StdinPipe() - if err != nil { - t.Fatal(err) - } - err = cmd.Start() - if err != nil { - t.Fatal(err) - } - _, err = childStdin.Write([]byte("WRONGPASSWORD\nNewPassword")) - if err != nil { - t.Fatal(err) - } - err = childStdin.Close() - if err != nil { - t.Fatal(err) - } - err = cmd.Wait() - exitCode := test_helpers.ExtractCmdExitCode(err) - if exitCode != exitcodes.PasswordIncorrect { - t.Errorf("want=%d, got=%d", exitcodes.PasswordIncorrect, exitCode) - } -} - -// Check that we correctly background on mount and close stderr and stdout. -// Something like -// gocryptfs a b | cat -// must not hang ( https://github.com/rfjakob/gocryptfs/issues/130 ). -func TestMountBackground(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - err := os.Mkdir(mnt, 0700) - if err != nil { - t.Fatal(err) - } - // Manually create a pipe pair and connect the child's stdout and stderr - // to it. We cannot use StdoutPipe because that will close the pipe - // when the child forks away. - pr, pw, err := os.Pipe() - if err != nil { - t.Fatal(err) - } - args := []string{"-extpass", "echo test", dir, mnt} - cmd := exec.Command(test_helpers.GocryptfsBinary, args...) - cmd.Stdout = pw - cmd.Stderr = pw - err = cmd.Run() - if err != nil { - t.Error(err) - } - pw.Close() - defer test_helpers.UnmountPanic(mnt) - // Read until we get EOF. - c1 := make(chan struct{}, 1) - go func() { - buf := make([]byte, 1000) - for { - _, err = pr.Read(buf) - // We should get io.EOF when the child closes stdout - // and stderr. - if err != nil { - pr.Close() - c1 <- struct{}{} - return - } - } - }() - select { - case <-c1: - return - case <-time.After(time.Second * 5): - t.Fatal("timeout") - } -} - -// Test that "gocryptfs -init -info CIPHERDIR" returns an error to the -// user. Only one operation flag is allowed. -func TestMultipleOperationFlags(t *testing.T) { - // Test all combinations - opFlags := []string{"-init", "-info", "-passwd", "-fsck"} - for _, flag1 := range opFlags { - var flag2 string - for _, flag2 = range opFlags { - if flag1 == flag2 { - continue - } - args := []string{flag1, flag2, "/tmp"} - //t.Logf("testing %v", args) - cmd := exec.Command(test_helpers.GocryptfsBinary, args...) - err := cmd.Run() - exitCode := test_helpers.ExtractCmdExitCode(err) - if exitCode != exitcodes.Usage { - t.Fatalf("this should have failed with code %d, but returned %d", - exitcodes.Usage, exitCode) - } - } - } -} - -func TestNoexec(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - test_helpers.MountOrFatal(t, dir, mnt, "-extpass=echo test", "-noexec") - defer test_helpers.UnmountPanic(mnt) - sh := mnt + "/x.sh" - content := `#!/bin/bash -echo hello -` - err := ioutil.WriteFile(sh, []byte(content), 0755) - if err != nil { - t.Fatal(err) - } - err = exec.Command(sh).Run() - exitCode := test_helpers.ExtractCmdExitCode(err) - if exitCode != int(syscall.EACCES) { - t.Errorf("got exitcode %d instead of EPERM (%d)", exitCode, syscall.EPERM) - } -} - -// Test that a missing argument to "-o" triggers exit code 1. -// See also cli_args_test.go for comprehensive tests of "-o" parsing. -func TestMissingOArg(t *testing.T) { - cmd := exec.Command(test_helpers.GocryptfsBinary, "foo", "bar", "-o") - err := cmd.Run() - exitCode := test_helpers.ExtractCmdExitCode(err) - if exitCode != exitcodes.Usage { - t.Fatalf("this should have failed with code %d, but returned %d", - exitcodes.Usage, exitCode) - } -} - -// -exclude must return an error in forward mode -func TestExcludeForward(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - err := test_helpers.Mount(dir, mnt, false, "-extpass", "echo test", "-exclude", "foo") - if err == nil { - t.Errorf("-exclude in forward mode should fail") - } - t.Log(err) -} - -// Check that the config file can be read from a named pipe. -// Make sure bug https://github.com/rfjakob/gocryptfs/issues/258 does not come -// back. -func TestConfigPipe(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - err := os.Mkdir(mnt, 0700) - if err != nil { - t.Fatal(err) - } - bashLine := fmt.Sprintf("%s -q -extpass \"echo test\" -config <(cat %s/gocryptfs.conf) %s %s", test_helpers.GocryptfsBinary, dir, dir, mnt) - cmd := exec.Command("bash", "-c", bashLine) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stdout - err = cmd.Run() - exitCode := test_helpers.ExtractCmdExitCode(err) - if exitCode != 0 { - t.Errorf("bash command\n%q\nresulted in exit code %d", bashLine, exitCode) - return - } - test_helpers.UnmountPanic(mnt) -} - -// Ciphertext dir and mountpoint contains a comma -// https://github.com/rfjakob/gocryptfs/issues/262 -func TestComma(t *testing.T) { - dir0 := test_helpers.InitFS(t) - dir := dir0 + ",foo,bar" - err := os.Rename(dir0, dir) - if err != nil { - t.Fatal(err) - } - mnt := dir + ".mnt" - err = test_helpers.Mount(dir, mnt, false, "-extpass", "echo test", "-wpanic=0") - if err != nil { - t.Fatalf("Failed to mount %q on %q: %v", dir, mnt, err) - } - test_helpers.UnmountPanic(mnt) -} - -// Mount with idle timeout 10ms and check that the process exits by itself -// within 5 seconds. -func TestIdle(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - err := os.Mkdir(mnt, 0700) - if err != nil { - t.Fatal(err) - } - cmd := exec.Command(test_helpers.GocryptfsBinary, - "-q", "-nosyslog", "-fg", "-extpass", "echo test", "-i", "10ms", dir, mnt) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - err = cmd.Start() - if err != nil { - t.Fatal(err) - } - timer := time.AfterFunc(5*time.Second, func() { - t.Error("timeout waiting for umount") - cmd.Process.Kill() - }) - err = cmd.Wait() - timer.Stop() - if err != nil { - t.Error(err) - } -} - -// Mount with idle timeout of 100ms read something every 10ms. The fs should -// NOT get unmounted. Regression test for https://github.com/rfjakob/gocryptfs/issues/421 -func TestNotIdle(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - err := test_helpers.Mount(dir, mnt, false, "-extpass", "echo test", "-i=100ms") - if err != nil { - t.Fatal(err) - } - err = ioutil.WriteFile(mnt+"/foo", []byte("foo"), 0600) - if err != nil { - t.Fatal(err) - } - // Read every 10 milliseconds for a total of 1 second - for i := 1; i < 100; i++ { - _, err = ioutil.ReadFile(mnt + "/foo") - if err != nil { - t.Fatalf("iteration %d failed: %v", i, err) - } - time.Sleep(10 * time.Millisecond) - } - // Keep a file handle open for 1 second - fd, err := os.Open(mnt + "/foo") - if err != nil { - t.Fatal(err) - } - time.Sleep(1 * time.Second) - buf := make([]byte, 100) - _, err = fd.Read(buf) - if err != nil { - t.Fatal(err) - } - fd.Close() - // All good. - test_helpers.UnmountPanic(mnt) -} - -// TestSymlinkedCipherdir checks that if CIPHERDIR itself is a symlink, it is -// followed. -// https://github.com/rfjakob/gocryptfs/issues/450 -func TestSymlinkedCipherdir(t *testing.T) { - dir := test_helpers.InitFS(t) - dirSymlink := dir + ".symlink" - err := os.Symlink(dir, dirSymlink) - if err != nil { - t.Fatal(err) - } - mnt := dir + ".mnt" - test_helpers.MountOrFatal(t, dirSymlink, mnt, "-extpass=echo test") - defer test_helpers.UnmountPanic(mnt) - - file := mnt + "/file" - f, err := os.Create(file) - if err != nil { - t.Fatal(err) - } - f.Close() - - f, err = os.Open(mnt) - if err != nil { - t.Fatal(err) - } - defer f.Close() - names, err := f.Readdirnames(0) - if err != nil { - t.Fatal(err) - } - if len(names) != 1 || names[0] != "file" { - t.Errorf("wrong Readdirnames result: %v", names) - } -} - -// TestBadname tests the `-badname` option -func TestBadname(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - validFileName := "file" - invalidSuffix := ".invalid_file" - - // use static suffix for testing - test_helpers.MountOrFatal(t, dir, mnt, "-badname=*", "-extpass=echo test") - defer test_helpers.UnmountPanic(mnt) - - // write one valid filename (empty content) - file := mnt + "/" + validFileName - err := ioutil.WriteFile(file, nil, 0600) - if err != nil { - t.Fatal(err) - } - - // read encrypted file name - fread, err := os.Open(dir) - if err != nil { - t.Fatal(err) - } - defer fread.Close() - - encryptedfilename := "" - ciphernames, err := fread.Readdirnames(0) - if err != nil { - t.Fatal(err) - } - for _, ciphername := range ciphernames { - if ciphername != "gocryptfs.conf" && ciphername != "gocryptfs.diriv" { - encryptedfilename = ciphername - // found cipher name of "file" - break - } - } - - // write invalid file which should be decodable - err = ioutil.WriteFile(dir+"/"+encryptedfilename+invalidSuffix, nil, 0600) - if err != nil { - t.Fatal(err) - } - // write invalid file which is not decodable (cropping the encrpyted file name) - err = ioutil.WriteFile(dir+"/"+encryptedfilename[:len(encryptedfilename)-2]+invalidSuffix, nil, 0600) - if err != nil { - t.Fatal(err) - } - - // check for filenames - f, err := os.Open(mnt) - if err != nil { - t.Fatal(err) - } - defer f.Close() - names, err := f.Readdirnames(0) - if err != nil { - t.Fatal(err) - } - foundDecodable := false - foundUndecodable := false - for _, name := range names { - if strings.Contains(name, validFileName+invalidSuffix+" GOCRYPTFS_BAD_NAME") { - foundDecodable = true - } else if strings.Contains(name, encryptedfilename[:len(encryptedfilename)-2]+invalidSuffix+" GOCRYPTFS_BAD_NAME") { - foundUndecodable = true - } - } - - if !foundDecodable { - t.Errorf("did not find invalid name %s in %v", validFileName+invalidSuffix+" GOCRYPTFS_BAD_NAME", names) - } - - if !foundUndecodable { - t.Errorf("did not find invalid name %s in %v", encryptedfilename[:len(encryptedfilename)-2]+invalidSuffix+" GOCRYPTFS_BAD_NAME", names) - } -} - -// TestPassfile tests the `-passfile` option -func TestPassfile(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - passfile1 := mnt + ".1.txt" - ioutil.WriteFile(passfile1, []byte("test"), 0600) - test_helpers.MountOrFatal(t, dir, mnt, "-passfile="+passfile1) - defer test_helpers.UnmountPanic(mnt) -} - -// TestPassfileX2 tests that the `-passfile` option can be passed twice -func TestPassfileX2(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - passfile1 := mnt + ".1.txt" - passfile2 := mnt + ".2.txt" - ioutil.WriteFile(passfile1, []byte("te"), 0600) - ioutil.WriteFile(passfile2, []byte("st"), 0600) - test_helpers.MountOrFatal(t, dir, mnt, "-passfile="+passfile1, "-passfile="+passfile2) - defer test_helpers.UnmountPanic(mnt) -} - -// TestInitNotEmpty checks that `gocryptfs -init` returns the right error code -// if CIPHERDIR is not empty. See https://github.com/rfjakob/gocryptfs/pull/503 -func TestInitNotEmpty(t *testing.T) { - dir := test_helpers.TmpDir + "/" + t.Name() - if err := os.Mkdir(dir, 0700); err != nil { - t.Fatal(err) - } - if err := ioutil.WriteFile(dir+"/foo", nil, 0700); err != nil { - t.Fatal(err) - } - cmd := exec.Command(test_helpers.GocryptfsBinary, "-init", "-extpass", "echo test", dir) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - err := cmd.Run() - exitCode := test_helpers.ExtractCmdExitCode(err) - if exitCode != exitcodes.CipherDir { - t.Fatalf("wrong exit code: have=%d, want=%d", exitCode, exitcodes.CipherDir) - } -} - -// TestSharedstorage checks that `-sharedstorage` hands out arbitrary inode -// numbers (no hard link tracking) -func TestSharedstorage(t *testing.T) { - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - test_helpers.MountOrFatal(t, dir, mnt, "-extpass=echo test", "-sharedstorage") - defer test_helpers.UnmountPanic(mnt) - foo1 := mnt + "/foo1" - foo2 := mnt + "/foo2" - if err := ioutil.WriteFile(foo1, nil, 0755); err != nil { - t.Fatal(err) - } - if err := os.Link(foo1, foo2); err != nil { - t.Fatal(err) - } - var st1, st2, st3 syscall.Stat_t - if err := syscall.Stat(foo1, &st1); err != nil { - t.Fatal(err) - } - // The link show show a new inode number - if err := syscall.Stat(foo2, &st2); err != nil { - t.Fatal(err) - } - // Stat()'ing again should give us again a new inode number - if err := syscall.Stat(foo2, &st3); err != nil { - t.Fatal(err) - } - if st1.Ino == st2.Ino || st2.Ino == st3.Ino || st1.Ino == st3.Ino { - t.Error(st1.Ino, st2.Ino, st3.Ino) - } - // Check that we we don't have stat caching. New length should show up - // on the hard link immediately. - if err := ioutil.WriteFile(foo1, []byte("xxxxxx"), 0755); err != nil { - t.Fatal(err) - } - if err := syscall.Stat(foo2, &st2); err != nil { - t.Fatal(err) - } - if st2.Size != 6 { - t.Fatal(st2.Size) - } -} - -// Test that the filesystem is immediately ready for Creat() after mount returns -func TestMountCreat(t *testing.T) { - const concurrency = 2 - const repeat = 2 - - dir := test_helpers.InitFS(t) - mnt := dir + ".mnt" - - for j := 0; j < repeat; j++ { - test_helpers.MountOrFatal(t, dir, mnt, "-extpass=echo test") - var wg sync.WaitGroup - wg.Add(concurrency) - for i := 0; i < concurrency; i++ { - go func(i int) { - path := fmt.Sprintf("%s/%d", mnt, i) - fd, err := syscall.Creat(path, 0600) - syscall.Close(fd) - if err != nil { - t.Errorf("Creat %q: %v", path, err) - } - wg.Done() - }(i) - } - wg.Wait() - test_helpers.UnmountPanic(mnt) - } -} diff --git a/tests/cli/gocryptfs.conf.b9e5ba23 b/tests/cli/gocryptfs.conf.b9e5ba23 deleted file mode 100644 index 9b2e61a..0000000 --- a/tests/cli/gocryptfs.conf.b9e5ba23 +++ /dev/null @@ -1,18 +0,0 @@ -{ - "Creator": "gocryptfs v1.1-rc1-31-gc487e17-dirty", - "EncryptedKey": "vthRM/vXg3Cn16jld2JxPiRv8OSBSwTYDzOqdlrvD1agJefZhhvDQS7b5fC7B7JRL4UiVUKkNaJRVMRf", - "ScryptObject": { - "Salt": "uVwNDUMLWktmV0WgvPHztVrmoahfYN8A/22I/uq66sU=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "DirIV", - "EMENames", - "LongNames" - ] -} \ No newline at end of file diff --git a/tests/defaults/1980.tar.gz b/tests/defaults/1980.tar.gz deleted file mode 100644 index 1073746..0000000 Binary files a/tests/defaults/1980.tar.gz and /dev/null differ diff --git a/tests/defaults/acl_test.go b/tests/defaults/acl_test.go deleted file mode 100644 index b3826e8..0000000 --- a/tests/defaults/acl_test.go +++ /dev/null @@ -1,202 +0,0 @@ -package defaults - -import ( - "io/ioutil" - "math/rand" - "os" - "os/exec" - "path/filepath" - "syscall" - "testing" - "time" - - "golang.org/x/sys/unix" - - "github.com/pkg/xattr" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -// https://github.com/rfjakob/gocryptfs/issues/543 -func TestCpA(t *testing.T) { - fn1 := filepath.Join(test_helpers.TmpDir, t.Name()) - fn2 := filepath.Join(test_helpers.DefaultPlainDir, t.Name()) - - rand.Seed(int64(time.Now().Nanosecond())) - - { - // Need unrestricted umask - old := syscall.Umask(000) - defer syscall.Umask(old) - } - - for i := 0; i < 10; i++ { - // Random permissions (except owner read, which cp needs) - var modeWant os.FileMode = os.FileMode(rand.Int31n(0777+1) | 0400) - - // Create file outside mount - err := ioutil.WriteFile(fn1, nil, modeWant) - if err != nil { - t.Fatal(err) - } - // Verify perms (umask problems?) - fi, err := os.Stat(fn1) - if err != nil { - t.Fatal(err) - } - if fi.Mode() != modeWant { - t.Errorf("ioutil.WriteFile created wrong permissions: want %o have %o", modeWant, fi.Mode()) - } - - // "cp -a" from outside to inside mount - c := exec.Command("cp", "-a", fn1, fn2) - c.Stderr = os.Stderr - c.Stdout = os.Stdout - err = c.Run() - if err != nil { - t.Fatal(err) - } - - // Check perms - fi, err = os.Stat(fn2) - if err != nil { - t.Fatal(err) - } - if fi.Mode() != modeWant { - t.Errorf("cp -a did not preserve permissions: want %o have %o", modeWant, fi.Mode()) - } - - syscall.Unlink(fn1) - syscall.Unlink(fn2) - } -} - -func getfacl(fn string) (string, error) { - c := exec.Command("getfacl", "-c", "--", fn) - out, err := c.Output() - return string(out), err -} - -// https://github.com/rfjakob/gocryptfs/issues/543 -func TestAcl543(t *testing.T) { - fn1 := test_helpers.TmpDir + "/TestAcl543" - fn2 := test_helpers.DefaultPlainDir + "/TestAcl543" - - var c *exec.Cmd - - var modeWant os.FileMode = 0777 - - { - // Need unrestricted umask - old := syscall.Umask(000) - defer syscall.Umask(old) - } - - // Set acl on file outside gocryptfs mount - err := ioutil.WriteFile(fn1, nil, modeWant) - if err != nil { - t.Fatal(err) - } - c = exec.Command("setfacl", "-m", "u:daemon:rwx", fn1) - c.Stderr = os.Stderr - c.Stdout = os.Stdout - err = c.Run() - if err != nil { - t.Skip(err) - } - aclWant, err := getfacl(fn1) - if err != nil { - t.Fatal(err) - } - fi, err := os.Stat(fn1) - if fi.Mode() != modeWant { - t.Fatalf("mode changed from %o to %o", modeWant, fi.Mode()) - } - - // Set acl on file inside gocryptfs mount - err = ioutil.WriteFile(fn2, nil, modeWant) - if err != nil { - t.Fatal(err) - } - c = exec.Command("setfacl", "-m", "u:daemon:rwx", fn2) - c.Stderr = os.Stderr - c.Stdout = os.Stdout - err = c.Run() - if err != nil { - t.Fatal(err) - } - aclHave1, err := getfacl(fn1) - if err != nil { - t.Fatal(err) - } - if aclHave1 != aclWant { - t.Error(aclHave1) - } - os.Remove(fn2) - - // "cp -a" from outside to inside mount - c = exec.Command("cp", "-a", fn1, fn2) - c.Stderr = os.Stderr - c.Stdout = os.Stdout - err = c.Run() - if err != nil { - t.Fatal(err) - } - fi, err = os.Stat(fn2) - if err != nil { - t.Fatal(err) - } - if fi.Mode() != modeWant { - t.Errorf("cp -a did not preserve permissions: want %o have %o", modeWant, fi.Mode()) - } - aclHave2, err := getfacl(fn2) - if err != nil { - t.Fatal(err) - } - if aclHave2 != aclWant { - t.Errorf("cp -a did not preserve acl: %q", aclHave1) - } -} - -// Check that we handle zero-sized and undersized buffers correctly -func TestXattrOverflow(t *testing.T) { - fn := filepath.Join(test_helpers.DefaultPlainDir, t.Name()) - ioutil.WriteFile(fn, nil, 0600) - - attr := "user.foo123" - val := []byte("12341234") - err := xattr.LSet(fn, attr, val) - if err != nil { - t.Skip(err) - } - - // Getxattr - sz, err := unix.Lgetxattr(fn, attr, nil) - if err != nil { - t.Error(err) - } - if sz != len(val) { - t.Errorf("wrong sz: want %d have %d", len(val), sz) - } - sz, err = unix.Lgetxattr(fn, attr, make([]byte, 1)) - if err != syscall.ERANGE { - t.Error(err) - } - - // Listxattr - szWant, err := unix.Llistxattr(fn, make([]byte, 64*1024)) - if err != nil { - t.Fatal(err) - } - sz, err = unix.Llistxattr(fn, nil) - if err != nil { - t.Error(err) - } - if sz != szWant { - t.Errorf("wrong sz: want %d have %d", szWant, sz) - } - sz, err = unix.Llistxattr(fn, make([]byte, 1)) - if err != syscall.ERANGE { - t.Error(err) - } -} diff --git a/tests/defaults/ctlsock_test.go b/tests/defaults/ctlsock_test.go deleted file mode 100644 index 64b72a2..0000000 --- a/tests/defaults/ctlsock_test.go +++ /dev/null @@ -1,98 +0,0 @@ -package defaults - -import ( - "os" - "syscall" - "testing" - - "github.com/rfjakob/gocryptfs/ctlsock" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func TestCtlSock(t *testing.T) { - cDir := test_helpers.InitFS(t) - pDir := cDir + ".mnt" - sock := cDir + ".sock" - test_helpers.MountOrFatal(t, cDir, pDir, "-ctlsock="+sock, "-extpass", "echo test") - defer test_helpers.UnmountPanic(pDir) - req := ctlsock.RequestStruct{ - EncryptPath: "foobar", - } - response := test_helpers.QueryCtlSock(t, sock, req) - if response.Result == "" || response.ErrNo != 0 { - t.Errorf("got an error reply: %+v", response) - } - req.EncryptPath = "not-existing-dir/xyz" - response = test_helpers.QueryCtlSock(t, sock, req) - if response.ErrNo != int32(syscall.ENOENT) || response.Result != "" { - t.Errorf("incorrect error handling: wanted ErrNo=%d, have %+v", syscall.ENOENT, response) - } - // Strange paths should not cause a crash - crashers := []string{"/foo", "foo/", "/foo/", ".", "/////", "/../../."} - for _, c := range crashers { - req.EncryptPath = c - // QueryCtlSock calls t.Fatal if it gets EOF when gocryptfs panics - response = test_helpers.QueryCtlSock(t, sock, req) - if response.WarnText == "" { - t.Errorf("We should get a warning about non-canonical paths here") - } - } -} - -func TestCtlSockDecrypt(t *testing.T) { - cDir := test_helpers.InitFS(t) - pDir := cDir + ".mnt" - sock := cDir + ".sock" - test_helpers.MountOrFatal(t, cDir, pDir, "-ctlsock="+sock, "-extpass", "echo test") - defer test_helpers.UnmountPanic(pDir) - - paths := []string{ - "xxxxxxx123456789", - "foo/bar/baz", - test_helpers.X255, - "123/" + test_helpers.X255, - "123/" + test_helpers.X255 + "/456", - } - - for _, p := range paths { - // Create path - err := os.MkdirAll(pDir+"/"+p, 0700) - if err != nil { - t.Fatal(err) - } - // Encrypt the path through the ctlsock - req := ctlsock.RequestStruct{ - EncryptPath: p, - } - response := test_helpers.QueryCtlSock(t, sock, req) - if response.Result == "" || response.ErrNo != 0 { - t.Fatalf("got an error reply: %+v", response) - } - // Check if the encrypted path actually exists - cPath := response.Result - _, err = os.Stat(cDir + "/" + cPath) - if err != nil { - t.Fatal(err) - } - // Decrypt the path through the ctlsock and see if we get the original path - req = ctlsock.RequestStruct{ - DecryptPath: cPath, - } - response = test_helpers.QueryCtlSock(t, sock, req) - if response.Result == "" || response.ErrNo != 0 { - t.Errorf("query=%+v, response=%+v", req, response) - continue - } - if response.Result != p { - t.Errorf("want=%q got=%q", p, response.Result) - } - } -} - -func TestCtlSockDecryptCrash(t *testing.T) { - cDir := test_helpers.InitFS(t) - pDir := cDir + ".mnt" - sock := cDir + ".sock" - test_helpers.MountOrFatal(t, cDir, pDir, "-ctlsock="+sock, "-extpass", "echo test") - defer test_helpers.UnmountPanic(pDir) -} diff --git a/tests/defaults/diriv_test.go b/tests/defaults/diriv_test.go deleted file mode 100644 index bf8f233..0000000 --- a/tests/defaults/diriv_test.go +++ /dev/null @@ -1,74 +0,0 @@ -package defaults - -import ( - "io/ioutil" - "os" - "sync" - "sync/atomic" - "syscall" - "testing" - "time" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func TestDirIVRace(t *testing.T) { - // Create "dir1" with one file in it - dir1 := test_helpers.DefaultPlainDir + "/TestDirIVRace_Dir1" - err := os.Mkdir(dir1, 0700) - if err != nil { - t.Fatal(err) - } - err = ioutil.WriteFile(dir1+"/file", nil, 0600) - if err != nil { - t.Fatal(err) - } - - // Create directory "dir2" - dir2 := test_helpers.DefaultPlainDir + "/TestDirIVRace_Dir2" - err = os.Mkdir(dir2, 0700) - if err != nil { - t.Fatal(err) - } - file2 := dir2 + "/file" - err = ioutil.WriteFile(file2, nil, 0600) - if err != nil { - t.Fatal(err) - } - - var stop int32 - defer func() { atomic.StoreInt32(&stop, 1) }() - - var wg sync.WaitGroup - wg.Add(1) - go func() { - wg.Done() - for { - // Keep dir2 in the diriv cache - fd, err2 := os.Open(file2) - if err2 == nil { - fd.Close() - } - if atomic.LoadInt32(&stop) != 0 { - return - } - } - }() - wg.Wait() - time.Sleep(time.Millisecond) - - // Overwrite dir2 with dir1 - err = syscall.Unlink(file2) - if err != nil { - t.Fatal(err) - } - err = syscall.Rename(dir1, dir2) - if err != nil { - t.Fatal(err) - } - // We should be able to stat file2 - _, err = os.Stat(file2) - if err != nil { - t.Error(err) - } -} diff --git a/tests/defaults/main_test.go b/tests/defaults/main_test.go deleted file mode 100644 index 8873f8f..0000000 --- a/tests/defaults/main_test.go +++ /dev/null @@ -1,372 +0,0 @@ -// Tests and benchmarks performed with default settings only. -package defaults - -import ( - "bytes" - "io" - "io/ioutil" - "os" - "os/exec" - "path/filepath" - "runtime" - "strings" - "sync" - "testing" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func TestMain(m *testing.M) { - test_helpers.ResetTmpDir(true) - test_helpers.MountOrExit(test_helpers.DefaultCipherDir, test_helpers.DefaultPlainDir, "-zerokey") - r := m.Run() - test_helpers.UnmountPanic(test_helpers.DefaultPlainDir) - os.Exit(r) -} - -// Test that we get the right timestamp when extracting a tarball. -func Test1980Tar(t *testing.T) { - c := exec.Command("tar", "xzf", "1980.tar.gz", "-C", test_helpers.DefaultPlainDir) - c.Stderr = os.Stderr - c.Stdout = os.Stdout - err := c.Run() - if err != nil { - t.Fatal(err) - } - fi, err := os.Stat(test_helpers.DefaultPlainDir + "/1980.txt") - if err != nil { - t.Fatal(err) - } - m := fi.ModTime().Unix() - if m != 315619323 { - t.Errorf("Wrong mtime: %d", m) - } -} - -// In gocryptfs before v1.2, the file header was only read once for each -// open. But truncating a file to zero will generate a new random file ID. -// The sequence below caused an I/O error to be returned. -func TestOpenTruncateRead(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestTruncateWrite" - // First FD is used for write and truncate. - writeFd, err := os.Create(fn) - if err != nil { - t.Fatal(err) - } - defer writeFd.Close() - abc := []byte("abc") - _, err = writeFd.WriteAt(abc, 0) - if err != nil { - t.Fatal(err) - } - // Second FD is just for reading. - readFd, err := os.Open(fn) - if err != nil { - t.Fatal(err) - } - defer readFd.Close() - content := make([]byte, 3) - _, err = readFd.ReadAt(content, 0) - if err != nil { - t.Fatal(err) - } - if !bytes.Equal(content, abc) { - t.Fatalf("wrong content: %s", string(content)) - } - // Truncate to zero to generate a new file ID and write new content. - err = writeFd.Truncate(0) - if err != nil { - t.Fatal(err) - } - xyz := []byte("xyz") - _, err = writeFd.WriteAt(xyz, 0) - if err != nil { - t.Fatal(err) - } - // Try to read from the other FD. - _, err = readFd.ReadAt(content, 0) - if err != nil { - t.Fatal(err) - } - if !bytes.Equal(content, xyz) { - t.Fatalf("wrong content: %s", string(content)) - } -} - -// TestWORead tries to read from a write-only FD. -func TestWORead(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestWORead" - fd, err := os.OpenFile(fn, os.O_CREATE|os.O_WRONLY, 0600) - if err != nil { - t.Fatal(err) - } - defer fd.Close() - buf := make([]byte, 10) - _, err = fd.Read(buf) - if err == nil { - t.Error("Reading from write-only file should fail, but did not") - } -} - -// xfstests generic/124 triggers this warning: -// cipherSize 18 == header size: interrupted write? -// This test reproduces the problem. -func TestXfs124(t *testing.T) { - // GOMAXPROCS=8 and N=5000 seem to reliably trigger the problem. With N=1000, - // the test passes sometimes. - runtime.GOMAXPROCS(8) - N := 5000 - - fn := test_helpers.DefaultPlainDir + "/TestXfs124" - fd, err := os.Create(fn) - if err != nil { - t.Fatal(err) - } - defer fd.Close() - - var wg sync.WaitGroup - wg.Add(2) - - go func() { - buf := make([]byte, 10) - var err2 error - for i := 0; i < N; i++ { - err2 = fd.Truncate(0) - if err2 != nil { - panic(err2) - } - _, err2 = fd.WriteAt(buf, 0) - if err2 != nil { - panic(err2) - } - } - wg.Done() - }() - - fd2, err := os.Open(fn) - if err != nil { - t.Fatal(err) - } - defer fd2.Close() - - go func() { - buf := make([]byte, 10) - var err3 error - for i := 0; i < N; i++ { - _, err3 = fd2.ReadAt(buf, 0) - if err3 == io.EOF { - continue - } - if err3 != nil { - panic(err3) - } - } - wg.Done() - }() - - wg.Wait() -} - -func TestWrite0200File(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestWrite0200File" - err := ioutil.WriteFile(fn, nil, 0200) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - fd, err := os.OpenFile(fn, os.O_WRONLY, 0) - if err != nil { - t.Fatal(err) - } - fi, err := fd.Stat() - if err != nil { - t.Fatal(err) - } - perms := fi.Mode().Perm() - if perms != 0200 { - t.Fatal("wrong initial permissions") - } - defer fd.Close() - _, err = fd.Write(make([]byte, 10)) - if err != nil { - t.Fatal(err) - } - perms = fi.Mode().Perm() - if perms != 0200 { - t.Fatal("wrong restored permissions") - } -} - -// TestMvWarnings: -// When xattr support was introduced, mv threw warnings like these: -// mv: preserving permissions for ‘b/x’: Operation not permitted -// because we returned EPERM when it tried to set system.posix_acl_access. -// Now we return EOPNOTSUPP and mv is happy. -func TestMvWarnings(t *testing.T) { - fn := test_helpers.TmpDir + "/TestMvWarnings" - err := ioutil.WriteFile(fn, nil, 0600) - if err != nil { - t.Fatalf("creating file failed: %v", err) - } - cmd := exec.Command("mv", fn, test_helpers.DefaultPlainDir) - out, err := cmd.CombinedOutput() - if err != nil { - t.Log(string(out)) - t.Fatal(err) - } - if len(out) != 0 { - t.Fatalf("Got warnings from mv:\n%s", string(out)) - } -} - -// Check for this bug in symlink handling: -// $ ln -s /asd/asdasd/asdasd b/foo -// $ mv b/foo . -// mv: listing attributes of 'b/foo': No such file or directory -// strace shows: -// llistxattr("b/foo", NULL, 0) = -1 ENOENT (No such file or directory) -func TestMvWarningSymlink(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestMvWarningSymlink" - err := os.Symlink("/foo/bar/baz", fn) - if err != nil { - t.Fatal(err) - } - cmd := exec.Command("mv", fn, test_helpers.TmpDir) - out, err := cmd.CombinedOutput() - if err != nil { - t.Log(string(out)) - if runtime.GOOS == "darwin" { - t.Skip("mv on darwin chokes on broken symlinks, see https://github.com/rfjakob/gocryptfs/issues/349") - } - t.Fatal(err) - } - if len(out) != 0 { - t.Log(strings.TrimSpace(string(out))) - t.Fatal("Got warnings") - } -} - -// See TestMvWarnings. -func TestCpWarnings(t *testing.T) { - fn := test_helpers.TmpDir + "/TestCpWarnings" - err := ioutil.WriteFile(fn, []byte("foo"), 0600) - if err != nil { - t.Fatalf("creating file failed: %v", err) - } - cmd := exec.Command("cp", "-a", fn, test_helpers.DefaultPlainDir) - out, err := cmd.CombinedOutput() - if err != nil { - t.Log(string(out)) - t.Fatal(err) - } - if len(out) != 0 { - t.Fatalf("Got warnings from cp -a:\n%s", string(out)) - } -} - -// TestSeekData tests that fs.FileLseeker is implemented -func TestSeekData(t *testing.T) { - fn := filepath.Join(test_helpers.DefaultPlainDir, t.Name()) - f, err := os.Create(fn) - if err != nil { - t.Fatal(err) - } - var oneTiB int64 = 1024 * 1024 * 1024 * 1024 - if _, err = f.Seek(oneTiB, 0); err != nil { - t.Fatal(err) - } - if _, err = f.Write([]byte("foo")); err != nil { - t.Fatal(err) - } - f.Close() - - const SEEK_DATA = 3 - - f, err = os.Open(fn) - if err != nil { - t.Fatal(err) - } - off, err := f.Seek(1024*1024, SEEK_DATA) - if err != nil { - t.Fatal(err) - } - if off < oneTiB-1024*1024 { - t.Errorf("off=%d, expected=%d\n", off, oneTiB) - } - f.Close() -} - -/* -TestMd5sumMaintainers tries to repro this interesting -bug that was seen during gocryptfs v2.0 development: - -$ md5sum linux-3.0/MAINTAINERS linux-3.0/MAINTAINERS linux-3.0/MAINTAINERS linux-3.0/MAINTAINERS -279b6ab0491e7532132e8f32afe6c04d linux-3.0/MAINTAINERS <-- WRONG!!!! -99cc9f0dfd86e63231b94edd43a43e02 linux-3.0/MAINTAINERS <-- correct -99cc9f0dfd86e63231b94edd43a43e02 linux-3.0/MAINTAINERS -99cc9f0dfd86e63231b94edd43a43e02 linux-3.0/MAINTAINERS - -strace shows: - -Bad ---- -fstat(3, {st_mode=S_IFREG|0644, st_size=196745, ...}) = 0 -read(3, "\n\tList of maintainers and how to"..., 32768) = 32768 -read(3, "M:\tSylwester Nawrocki \nL:\tlinux"..., 32768) = 32768 -read(3, "ach-spear3xx/\n\nSPEAR6XX MACHINE "..., 32768) = 32768 -read(3, "", 32768) = 0 -lseek(3, 0, SEEK_CUR) = 196608 -close(3) = 0 -fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0x2), ...}) = 0 -write(1, "279b6ab0491e7532132e8f32afe6c04d"..., 56279b6ab0491e7532132e8f32afe6c04d linux-3.0/MAINTAINERS - -Good ----- -fstat(3, {st_mode=S_IFREG|0644, st_size=195191, ...}) = 0 -read(3, "\n\tList of maintainers and how to"..., 32768) = 32768 -read(3, "M:\tSylwester Nawrocki \nL:\tlinux"..., 32768) = 32768 -read(3, "ach-spear3xx/\n\nSPEAR6XX MACHINE "..., 32768) = 31351 -read(3, "", 4096) = 0 -lseek(3, 0, SEEK_CUR) = 195191 -close(3) = 0 -fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0x2), ...}) = 0 -write(1, "99cc9f0dfd86e63231b94edd43a43e02"..., 5699cc9f0dfd86e63231b94edd43a43e02 linux-3.0/MAINTAINERS -*/ -func TestMd5sumMaintainers(t *testing.T) { - fn := filepath.Join(test_helpers.DefaultPlainDir, t.Name()) - f, err := os.Create(fn) - if err != nil { - t.Fatal(err) - } - // Size of the MAINTAINERS file = 195191 - const sizeWant = 195191 - content := make([]byte, sizeWant) - _, err = f.Write(content) - if err != nil { - t.Fatal(err) - } - f.Close() - - // Remount to clear the linux kernel attr cache - // (otherwise we would have to wait 2 seconds for the entry to expire) - test_helpers.UnmountPanic(test_helpers.DefaultPlainDir) - test_helpers.MountOrExit(test_helpers.DefaultCipherDir, test_helpers.DefaultPlainDir, "-zerokey") - - cmd := exec.Command("md5sum", fn, fn, fn, fn) - out2, err := cmd.CombinedOutput() - out := string(out2) - - // 195191 zero bytes have this md5sum - const md5Want = "b99bf6917f688068acd49126f3b1b005" - - n := strings.Count(out, md5Want) - if n != 4 { - t.Errorf("found %d instead of %d instances of %q", n, 4, md5Want) - t.Logf("full output:\n%s", out) - } -} diff --git a/tests/defaults/performance_test.go b/tests/defaults/performance_test.go deleted file mode 100644 index a2ecf8c..0000000 --- a/tests/defaults/performance_test.go +++ /dev/null @@ -1,131 +0,0 @@ -// Tests and benchmarks performed with default settings only. -package defaults - -import ( - "fmt" - "io" - "io/ioutil" - "os" - "testing" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -// Benchmarks -func BenchmarkStreamWrite(t *testing.B) { - buf := make([]byte, 1024*1024) - t.SetBytes(int64(len(buf))) - - file, err := os.Create(test_helpers.DefaultPlainDir + "/BenchmarkWrite") - if err != nil { - t.Fatal(err) - } - - t.ResetTimer() - var i int - for i = 0; i < t.N; i++ { - written, err := file.Write(buf) - if err != nil { - fmt.Printf("err=\"%s\", written=%d\n", err.Error(), written) - t.Fatal(err) - } - } - file.Close() -} - -func BenchmarkStreamRead(t *testing.B) { - buf := make([]byte, 1024*1024) - t.SetBytes(int64(len(buf))) - - fn := test_helpers.DefaultPlainDir + "/BenchmarkWrite" - fi, err := os.Stat(fn) - if err != nil { - t.Fatal(err) - } - mb := int(fi.Size() / 1024 / 1024) - - if t.N > mb { - // Grow file so we can satisfy the test - //fmt.Printf("Growing file to %d MB... ", t.N) - var f2 *os.File - f2, err = os.OpenFile(fn, os.O_WRONLY|os.O_APPEND, 0666) - if err != nil { - fmt.Println(err) - t.FailNow() - } - for h := 0; h < t.N-mb; h++ { - _, err = f2.Write(buf) - if err != nil { - fmt.Println(err) - t.FailNow() - } - } - f2.Close() - } - - file, err := os.Open(fn) - if err != nil { - t.FailNow() - } - t.ResetTimer() - var i int - for i = 0; i < t.N; i++ { - _, err := file.Read(buf) - if err == io.EOF { - fmt.Println("Test file too small") - t.SkipNow() - } else if err != nil { - fmt.Println(err) - t.FailNow() - } - } - file.Close() -} - -// createFiles - create "count" files of size "size" bytes each -func createFiles(t *testing.B, count int, size int) { - dir := fmt.Sprintf("%s/createFiles_%d_%d", test_helpers.DefaultPlainDir, count, size) - err := os.Mkdir(dir, 0777) - if err != nil { - t.Fatal(err) - } - buf := make([]byte, size) - t.SetBytes(int64(len(buf))) - t.ResetTimer() - var i int - for i = 0; i < count; i++ { - file := fmt.Sprintf("%s/%d", dir, i) - if size > 0 { - err = ioutil.WriteFile(file, buf, 0666) - } else { - var fh *os.File - fh, err = os.Create(file) - fh.Close() - } - if err != nil { - t.Fatal(err) - } - } - t.StopTimer() - os.RemoveAll(dir) -} - -func BenchmarkCreate0B(t *testing.B) { - createFiles(t, t.N, 0) -} - -func BenchmarkCreate1B(t *testing.B) { - createFiles(t, t.N, 1) -} - -func BenchmarkCreate100B(t *testing.B) { - createFiles(t, t.N, 100) -} - -func BenchmarkCreate4kB(t *testing.B) { - createFiles(t, t.N, 4*1024) -} - -func BenchmarkCreate10kB(t *testing.B) { - createFiles(t, t.N, 10*1024) -} diff --git a/tests/dl-linux-tarball.bash b/tests/dl-linux-tarball.bash deleted file mode 100755 index fa27e37..0000000 --- a/tests/dl-linux-tarball.bash +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash -eu -# -# This script checks the size of /tmp/linux-3.0.tar.gz and downloads -# a fresh copy if the size is incorrect or the file is missing. - -URL=https://cdn.kernel.org/pub/linux/kernel/v3.0/linux-3.0.tar.gz -TGZ=/tmp/linux-3.0.tar.gz - -SIZE_WANT=96675825 -SIZE_ACTUAL=0 -if [[ -e $TGZ ]]; then - if [[ $OSTYPE == linux* ]] ; then - SIZE_ACTUAL=$(stat -c %s $TGZ) - else - # Mac OS X - SIZE_ACTUAL=$(stat -f %z $TGZ) - fi -fi - -if [[ $SIZE_ACTUAL -ne $SIZE_WANT ]]; then - echo "Downloading linux-3.0.tar.gz" - if command -v wget > /dev/null ; then - wget -nv --show-progress -c -O $TGZ $URL - else - curl -o $TGZ $URL - fi -fi diff --git a/tests/example_filesystems/content/abs b/tests/example_filesystems/content/abs deleted file mode 120000 index e1740fa..0000000 --- a/tests/example_filesystems/content/abs +++ /dev/null @@ -1 +0,0 @@ -/a/b/c/d \ No newline at end of file diff --git a/tests/example_filesystems/content/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/example_filesystems/content/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index 68300b8..0000000 --- a/tests/example_filesystems/content/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx +++ /dev/null @@ -1 +0,0 @@ -It works! diff --git a/tests/example_filesystems/content/rel b/tests/example_filesystems/content/rel deleted file mode 120000 index 8279c75..0000000 --- a/tests/example_filesystems/content/rel +++ /dev/null @@ -1 +0,0 @@ -status.txt \ No newline at end of file diff --git a/tests/example_filesystems/content/status.txt b/tests/example_filesystems/content/status.txt deleted file mode 100644 index 68300b8..0000000 --- a/tests/example_filesystems/content/status.txt +++ /dev/null @@ -1 +0,0 @@ -It works! diff --git a/tests/example_filesystems/example_filesystems_test.go b/tests/example_filesystems/example_filesystems_test.go deleted file mode 100644 index 36fb554..0000000 --- a/tests/example_filesystems/example_filesystems_test.go +++ /dev/null @@ -1,384 +0,0 @@ -package example_filesystems - -// Mount example filesystems, check that the example content (normal file, symlinks) -// is there and test mkdir and rmdir -// -// Runs all the tests twice, once with "-openssl=false" and once with -// "-openssl=true". - -import ( - "flag" - "fmt" - "os" - "os/exec" - "syscall" - "testing" - - "github.com/rfjakob/gocryptfs/internal/stupidgcm" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -var opensslOpt string - -// tmpFsPath contains a private writeable copy of the example_filesystems -// folder. -var tmpFsPath string - -func TestMain(m *testing.M) { - // Make "testing.Verbose()" return the correct value - flag.Parse() - variants := []string{"-openssl=false"} - if !stupidgcm.BuiltWithoutOpenssl { - variants = append(variants, "-openssl=true") - } else { - fmt.Println("Skipping OpenSSL tests, I have been compiled without openssl support") - } - for _, opensslOpt = range variants { - if testing.Verbose() { - fmt.Printf("example_filesystems: testing with %q\n", opensslOpt) - } - test_helpers.ResetTmpDir(false) - - // Create a private copy of the example filesystems that we can - // mess with - cmd := exec.Command("cp", "-a", "../example_filesystems", test_helpers.TmpDir) - cmd.Stderr = os.Stderr - cmd.Stdout = os.Stdout - err := cmd.Run() - if err != nil { - fmt.Printf("cp -a failed: %v\n", err) - os.Exit(1) - } - tmpFsPath = test_helpers.TmpDir + "/example_filesystems/" - - r := m.Run() - if r != 0 { - os.Exit(r) - } - } - os.Exit(0) -} - -// This filesystem is not supported anymore. -func TestExampleFSv04(t *testing.T) { - cDir := "v0.4" - pDir := test_helpers.TmpDir + "/" + cDir - cDir = tmpFsPath + cDir - err := test_helpers.Mount(cDir, pDir, false, "-extpass", "echo test", opensslOpt) - if err == nil { - t.Errorf("Mounting too old FS should fail") - } -} - -// This filesystem is not supported anymore. -func TestExampleFSv05(t *testing.T) { - cDir := "v0.5" - pDir := test_helpers.TmpDir + "/" + cDir - cDir = tmpFsPath + cDir - err := test_helpers.Mount(cDir, pDir, false, "-extpass", "echo test", opensslOpt) - if err == nil { - t.Errorf("Mounting too old FS should fail") - } -} - -// This filesystem is not supported anymore. -func TestExampleFSv06(t *testing.T) { - cDir := "v0.6" - pDir := test_helpers.TmpDir + "/" + cDir - cDir = tmpFsPath + cDir - err := test_helpers.Mount(cDir, pDir, false, "-extpass", "echo test", opensslOpt) - if err == nil { - t.Errorf("Mounting too old FS should fail") - } -} - -// This filesystem is not supported anymore. -func TestExampleFSv06PlaintextNames(t *testing.T) { - cDir := "v0.6-plaintextnames" - pDir := test_helpers.TmpDir + "/" + cDir - cDir = tmpFsPath + cDir - err := test_helpers.Mount(cDir, pDir, false, "-extpass", "echo test", opensslOpt) - if err == nil { - t.Errorf("Mounting too old FS should fail") - } -} - -// Test example_filesystems/v0.7 -// with password mount and -masterkey mount -// v0.7 adds 128 bit GCM IVs -func TestExampleFSv07(t *testing.T) { - cDir := "v0.7" - pDir := test_helpers.TmpDir + "/" + cDir - cDir = tmpFsPath + cDir - err := os.Mkdir(pDir, 0777) - if err != nil { - t.Fatal(err) - } - test_helpers.MountOrFatal(t, cDir, pDir, "-extpass", "echo test", opensslOpt) - checkExampleFS(t, pDir, true) - test_helpers.UnmountPanic(pDir) - test_helpers.MountOrFatal(t, cDir, pDir, "-masterkey", - "ed7f6d83-40cce86c-0e7d79c2-a9438710-575221bf-30a0eb60-2821fa8f-7f3123bf", - "-raw64=false", "-hkdf=false", opensslOpt) - checkExampleFS(t, pDir, true) - test_helpers.UnmountPanic(pDir) -} - -// gocryptfs v0.7 filesystem created with "-plaintextnames" -func TestExampleFSv07PlaintextNames(t *testing.T) { - cDir := "v0.7-plaintextnames" - pDir := test_helpers.TmpDir + "/" + cDir + ".mnt" - cDir = tmpFsPath + cDir - - test_helpers.MountOrFatal(t, cDir, pDir, "-extpass", "echo test", opensslOpt) - checkExampleFS(t, pDir, true) - test_helpers.UnmountPanic(pDir) - // The actual unmount takes some time, this causes weird problems. Just don't - // reuse the mountpoint. - pDir = pDir + ".2" - test_helpers.MountOrFatal(t, cDir, pDir, "-plaintextnames", "-masterkey", - "6d96397b-585631e1-c7cba69d-61e738b6-4d5ad2c2-e21f0fb3-52f60d3a-b08526f7", - "-raw64=false", "-hkdf=false", opensslOpt) - checkExampleFS(t, pDir, true) - test_helpers.UnmountPanic(pDir) -} - -// Test example_filesystems/v0.9 -// (gocryptfs v0.9 introduced long file name support) -func TestExampleFSv09(t *testing.T) { - cDir := "v0.9" - pDir := test_helpers.TmpDir + "/" + cDir - cDir = tmpFsPath + cDir - err := os.Mkdir(pDir, 0777) - if err != nil { - t.Fatal(err) - } - test_helpers.MountOrFatal(t, cDir, pDir, "-extpass", "echo test", opensslOpt) - checkExampleFSLongnames(t, pDir) - test_helpers.UnmountPanic(pDir) - pDir = pDir + ".2" - test_helpers.MountOrFatal(t, cDir, pDir, "-masterkey", - "1cafe3f4-bc316466-2214c47c-ecd89bf3-4e078fe4-f5faeea7-8b7cab02-884f5e1c", - "-raw64=false", "-hkdf=false", opensslOpt) - checkExampleFSLongnames(t, pDir) - test_helpers.UnmountPanic(pDir) -} - -// gocryptfs v1.1 introduced AES-SIV -func TestExampleFSv11(t *testing.T) { - cDir := "v1.1-aessiv" - pDir := test_helpers.TmpDir + "/" + cDir - cDir = tmpFsPath + cDir - err := os.Mkdir(pDir, 0777) - if err != nil { - t.Fatal(err) - } - test_helpers.MountOrFatal(t, cDir, pDir, "-extpass", "echo test", opensslOpt) - checkExampleFSLongnames(t, pDir) - test_helpers.UnmountPanic(pDir) - pDir = pDir + ".2" - test_helpers.MountOrFatal(t, cDir, pDir, "-masterkey", - "eaf371c3-f9a55336-8819f22b-7bccd7c2-a738cf61-7261c658-14c28a03-9428992b", - "-aessiv", "-raw64=false", "-hkdf=false", opensslOpt) - checkExampleFSLongnames(t, pDir) - test_helpers.UnmountPanic(pDir) -} - -// gocryptfs v1.1 introduced reverse mode -func TestExampleFSv11reverse(t *testing.T) { - dirA := "v1.1-reverse" - dirB := test_helpers.TmpDir + "/" + dirA + ".B" - err := os.Mkdir(dirB, 0700) - if err != nil { - t.Fatal(err) - } - dirC := test_helpers.TmpDir + "/" + dirA + ".C" - err = os.Mkdir(dirC, 0700) - if err != nil { - t.Fatal(err) - } - dirA = tmpFsPath + dirA - test_helpers.MountOrFatal(t, dirA, dirB, "-reverse", "-extpass", "echo test", opensslOpt) - c := dirB + "/gocryptfs.conf" - if !test_helpers.VerifyExistence(t, c) { - t.Errorf("%s missing", c) - } - test_helpers.MountOrFatal(t, dirB, dirC, "-extpass", "echo test", opensslOpt) - checkExampleFSrw(t, dirC, false) - test_helpers.UnmountPanic(dirC) - test_helpers.UnmountPanic(dirB) - - m := "68b51855-042abd80-635ae1ba-90152a78-2ec2d243-832ac72a-eab0561a-f2d37913" - test_helpers.MountOrFatal(t, dirA, dirB, "-reverse", "-masterkey", m, - "-raw64=false", "-hkdf=false", opensslOpt) - if !test_helpers.VerifyExistence(t, c) { - t.Errorf("%s missing", c) - } - test_helpers.MountOrFatal(t, dirB, dirC, "-aessiv", "-masterkey", m, - "-raw64=false", "-hkdf=false", opensslOpt) - checkExampleFSrw(t, dirC, false) - test_helpers.UnmountPanic(dirC) - test_helpers.UnmountPanic(dirB) -} - -// gocryptfs v1.1 introduced reverse mode -func TestExampleFSv11reversePlaintextnames(t *testing.T) { - dirA := "v1.1-reverse-plaintextnames" - dirB := test_helpers.TmpDir + "/" + dirA + ".B" - err := os.Mkdir(dirB, 0700) - if err != nil { - t.Fatal(err) - } - dirC := test_helpers.TmpDir + "/" + dirA + ".C" - err = os.Mkdir(dirC, 0700) - if err != nil { - t.Fatal(err) - } - dirA = tmpFsPath + dirA - test_helpers.MountOrFatal(t, dirA, dirB, "-reverse", "-extpass", "echo test", opensslOpt) - c := dirB + "/gocryptfs.conf" - if !test_helpers.VerifyExistence(t, c) { - t.Errorf("%s missing", c) - } - test_helpers.MountOrFatal(t, dirB, dirC, "-extpass", "echo test", opensslOpt) - checkExampleFSrw(t, dirC, false) - test_helpers.UnmountPanic(dirC) - test_helpers.UnmountPanic(dirB) - - m := "e7fb8f0d-2a81df9e-26611e4b-5540b218-e48aa458-c2a623af-d0c82637-1466b5f2" - test_helpers.MountOrFatal(t, dirA, dirB, "-reverse", "-masterkey", m, - "-raw64=false", "-hkdf=false", opensslOpt) - if !test_helpers.VerifyExistence(t, c) { - t.Errorf("%s missing", c) - } - test_helpers.MountOrFatal(t, dirB, dirC, "-aessiv", "-masterkey", m, - "-raw64=false", "-hkdf=false", opensslOpt) - checkExampleFSrw(t, dirC, false) - test_helpers.UnmountPanic(dirC) - test_helpers.UnmountPanic(dirB) -} - -// gocryptfs v1.3 introduced HKDF -func TestExampleFSv13(t *testing.T) { - cDir := "v1.3" - pDir := test_helpers.TmpDir + "/" + cDir - cDir = tmpFsPath + cDir - err := os.Mkdir(pDir, 0777) - if err != nil { - t.Fatal(err) - } - test_helpers.MountOrFatal(t, cDir, pDir, "-extpass", "echo test", opensslOpt) - checkExampleFSLongnames(t, pDir) - test_helpers.UnmountPanic(pDir) - - pDir = pDir + "_m" - test_helpers.MountOrFatal(t, cDir, pDir, "-masterkey", - "fd890dab-86bf61cf-ec5ad460-ad3ed01f-9c52d546-2a31783d-a56b088d-3d05232e", - opensslOpt) - checkExampleFSLongnames(t, pDir) - test_helpers.UnmountPanic(pDir) -} - -// Check that the masterkey=stdin cli option works. -func TestExampleFSv13MasterkeyStdin(t *testing.T) { - cDir := "v1.3" - pDir := test_helpers.TmpDir + "/TestExampleFSv13MasterkeyStdin.mnt" - cDir = tmpFsPath + cDir - err := os.Mkdir(pDir, 0777) - if err != nil { - t.Fatal(err) - } - args := []string{"-q", "-masterkey=stdin", opensslOpt, cDir, pDir} - cmd := exec.Command(test_helpers.GocryptfsBinary, args...) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - p, err := cmd.StdinPipe() - if err != nil { - t.Fatal(err) - } - err = cmd.Start() - if err != nil { - t.Error(err) - } - // Write masterkey to stdin - p.Write([]byte("fd890dab-86bf61cf-ec5ad460-ad3ed01f-9c52d546-2a31783d-a56b088d-3d05232e")) - p.Close() - err = cmd.Wait() - if err != nil { - t.Error(err) - } - // Check that the fs decrypts ok & unmount - checkExampleFSLongnames(t, pDir) - test_helpers.UnmountPanic(pDir) -} - -// gocryptfs v1.3 introduced HKDF. -// We check the md5 sum of the encrypted version of a file to make sure we don't -// accidentally change the ciphertext generation. -// Create a full crypto round-trip by mounting two times: -// dirA -> reverse mount -> dirB -> forward mount -> dirC -func TestExampleFSv13reverse(t *testing.T) { - var R_OK uint32 = 4 - // Prepare directories - dirA := "v1.3-reverse" - dirB := test_helpers.TmpDir + "/" + dirA + ".B" - err := os.Mkdir(dirB, 0700) - if err != nil { - t.Fatal(err) - } - dirC := test_helpers.TmpDir + "/" + dirA + ".C" - err = os.Mkdir(dirC, 0700) - if err != nil { - t.Fatal(err) - } - dirA = tmpFsPath + dirA - // Mount using password - // We pass "-wpanic=false" because the '..' and '.' tests deliverately trigger warnings - test_helpers.MountOrFatal(t, dirA, dirB, "-reverse", "-extpass", "echo test", "-wpanic=false", opensslOpt) - c := dirB + "/gocryptfs.conf" - if !test_helpers.VerifyExistence(t, c) { - t.Errorf("%s missing", c) - } - test_helpers.MountOrFatal(t, dirB, dirC, "-extpass", "echo test", opensslOpt) - // Test - checkExampleFSrw(t, dirC, false) - // Access to encrypted version of '..' should fail - cPath := dirB + "/D8VwRPqWW8x7M5OEoMs0Eg" - err = syscall.Access(cPath, R_OK) - if err != syscall.ENOENT { - t.Errorf("want ENOENT, got: %v", err) - } - // Access to encrypted version of '.' should fail - cPath = dirB + "/kkmARPseVj4XQFW-EL42-w" - err = syscall.Access(cPath, R_OK) - if err != syscall.ENOENT { - t.Errorf("want ENOENT, got: %v", err) - } - // Encrypted version of dir1/dir2/file (10000 zero bytes) - cPath = dirB + "/zOsW1-BUX54hC2hmhu2EOw/4ZqrpGQdw5r07KR1qw2ZeQ/tfCm9Sp9J_Dvc-jD7J6p8g" - want := "9818501d214c5eb42ca2472caf6c82a1" - actual := test_helpers.Md5fn(cPath) - if actual != want { - t.Errorf("wrong md5") - } - // Unmount - test_helpers.UnmountPanic(dirC) - test_helpers.UnmountPanic(dirB) - - // Mount using masterkey - m := "2290a7f4-3e1908fb-b006f7d9-261bdaf1-4b72bc38-3b24956c-db7d8a8d-d996076a" - test_helpers.MountOrFatal(t, dirA, dirB, "-reverse", "-masterkey", m, opensslOpt) - if !test_helpers.VerifyExistence(t, c) { - t.Errorf("%s missing", c) - } - test_helpers.MountOrFatal(t, dirB, dirC, "-aessiv", "-masterkey", m, opensslOpt) - // Test - checkExampleFSrw(t, dirC, false) - actual = test_helpers.Md5fn(cPath) - if actual != want { - t.Errorf("wrong md5") - } - // Unmmount - test_helpers.UnmountPanic(dirC) - test_helpers.UnmountPanic(dirB) -} diff --git a/tests/example_filesystems/example_test_helpers.go b/tests/example_filesystems/example_test_helpers.go deleted file mode 100644 index e39f8d6..0000000 --- a/tests/example_filesystems/example_test_helpers.go +++ /dev/null @@ -1,80 +0,0 @@ -package example_filesystems - -import ( - "io/ioutil" - "os" - "path/filepath" - "testing" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -const statusTxtContent = "It works!\n" - -// checkExampleFS - verify that "dir" contains the expected test files -func checkExampleFS(t *testing.T, dir string, rw bool) { - // Read regular file - statusFile := filepath.Join(dir, "status.txt") - contentBytes, err := ioutil.ReadFile(statusFile) - if err != nil { - t.Error(err) - return - } - content := string(contentBytes) - if content != statusTxtContent { - t.Errorf("Unexpected content: %s\n", content) - } - // Read relative symlink - symlink := filepath.Join(dir, "rel") - target, err := os.Readlink(symlink) - if err != nil { - t.Error(err) - return - } - if target != "status.txt" { - t.Errorf("Unexpected link target: %s\n", target) - } - // Read absolute symlink - symlink = filepath.Join(dir, "abs") - target, err = os.Readlink(symlink) - if err != nil { - t.Error(err) - return - } - if target != "/a/b/c/d" { - t.Errorf("Unexpected link target: %s\n", target) - } - if rw { - // Test directory operations - test_helpers.TestRename(t, dir) - test_helpers.TestMkdirRmdir(t, dir) - } -} - -// checkExampleFSLongnames - verify that "dir" contains the expected test files -// plus the long file name test file. -// Also tests simple directory operations. -func checkExampleFSLongnames(t *testing.T, dir string) { - checkExampleFSrw(t, dir, true) -} - -// checkExampleFSrw is like checkExampleFSLongnames but gives the caller the -// choice if he wants to run tests that write to the FS. -func checkExampleFSrw(t *testing.T, dir string, rw bool) { - // regular tests - checkExampleFS(t, dir, rw) - // long name test file - longname := "longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + - "xxxxxxxxxxxxxxxxxxxxxxxx" - contentBytes, err := ioutil.ReadFile(filepath.Join(dir, longname)) - if err != nil { - t.Error(err) - return - } - content := string(contentBytes) - if content != statusTxtContent { - t.Errorf("longname_255: unexpected content: %s\n", content) - } -} diff --git a/tests/example_filesystems/v0.4/3-HZSwv99agoWgTErV0YFQ== b/tests/example_filesystems/v0.4/3-HZSwv99agoWgTErV0YFQ== deleted file mode 100644 index 5d0af82..0000000 Binary files a/tests/example_filesystems/v0.4/3-HZSwv99agoWgTErV0YFQ== and /dev/null differ diff --git a/tests/example_filesystems/v0.4/6hL2fPVB2aMSh4-UoDn5Kw== b/tests/example_filesystems/v0.4/6hL2fPVB2aMSh4-UoDn5Kw== deleted file mode 120000 index 31b9013..0000000 --- a/tests/example_filesystems/v0.4/6hL2fPVB2aMSh4-UoDn5Kw== +++ /dev/null @@ -1 +0,0 @@ -3-HZSwv99agoWgTErV0YFQ== \ No newline at end of file diff --git a/tests/example_filesystems/v0.4/TBIgdfhDKwkXVTnWLVzFSg== b/tests/example_filesystems/v0.4/TBIgdfhDKwkXVTnWLVzFSg== deleted file mode 120000 index 7a15694..0000000 --- a/tests/example_filesystems/v0.4/TBIgdfhDKwkXVTnWLVzFSg== +++ /dev/null @@ -1 +0,0 @@ -/tTXhw8tmmz4PK9YG21Whug==/Qe8z0HUArb5bZJjUqEo2Nw==/wv68UB9DLF9OfAcxgRKKtQ==/9No5n3deBUGa-BsvPRi3DQ== \ No newline at end of file diff --git a/tests/example_filesystems/v0.4/gocryptfs.conf b/tests/example_filesystems/v0.4/gocryptfs.conf deleted file mode 100644 index 354b4bb..0000000 --- a/tests/example_filesystems/v0.4/gocryptfs.conf +++ /dev/null @@ -1,12 +0,0 @@ -{ - "EncryptedKey": "He757VFOKOWbMJqJ7HBs67SMSi3Vu8/2vgWNI6j1tVo4JBlNvrQSw6KkCh0lGrHrh6ICbPv4MyoyFdGa", - "ScryptObject": { - "Salt": "MeHSsxsnJwngAwptNzuXQlj7JtF1b0uzZuWvVV3cH3w=", - "N": 65536, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": null -} \ No newline at end of file diff --git a/tests/example_filesystems/v0.5/AOtl_i4xQWDyG0_zUqntOw== b/tests/example_filesystems/v0.5/AOtl_i4xQWDyG0_zUqntOw== deleted file mode 120000 index 7c52a28..0000000 --- a/tests/example_filesystems/v0.5/AOtl_i4xQWDyG0_zUqntOw== +++ /dev/null @@ -1 +0,0 @@ -LFInXW9Djd1p8VfnwbhBaQy7MowhfNUDhsPPXXEiAfrfaVar6Ec= \ No newline at end of file diff --git a/tests/example_filesystems/v0.5/Pf35wlWlf43N68EbhIgTcQ== b/tests/example_filesystems/v0.5/Pf35wlWlf43N68EbhIgTcQ== deleted file mode 120000 index 596cc3d..0000000 --- a/tests/example_filesystems/v0.5/Pf35wlWlf43N68EbhIgTcQ== +++ /dev/null @@ -1 +0,0 @@ -OrWiZIVoBo4qbbJdsPy1MCwlvGTE4t_ackP4lbcLdKiTA-Zf \ No newline at end of file diff --git a/tests/example_filesystems/v0.5/gocryptfs.conf b/tests/example_filesystems/v0.5/gocryptfs.conf deleted file mode 100644 index f839664..0000000 --- a/tests/example_filesystems/v0.5/gocryptfs.conf +++ /dev/null @@ -1,14 +0,0 @@ -{ - "EncryptedKey": "zIY8foMncKrAG8USA1/AQ+R8z+xRge3QZqDpGRIDAeNOkMeQQsnMsJzFJbZHcGlRbUye0CwRghR/UX4R", - "ScryptObject": { - "Salt": "BFQklFzt3j9ZDa8zcR9pwHfa8nDdLqyCzNp5kA+V6Y0=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "DirIV" - ] -} \ No newline at end of file diff --git a/tests/example_filesystems/v0.5/gocryptfs.diriv b/tests/example_filesystems/v0.5/gocryptfs.diriv deleted file mode 100644 index 3670294..0000000 --- a/tests/example_filesystems/v0.5/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -é×Vë¹LÅ×lû×g‘k# \ No newline at end of file diff --git a/tests/example_filesystems/v0.5/j2BpGUT5kOtia20PWQ2rEA== b/tests/example_filesystems/v0.5/j2BpGUT5kOtia20PWQ2rEA== deleted file mode 100644 index 1ad2358..0000000 Binary files a/tests/example_filesystems/v0.5/j2BpGUT5kOtia20PWQ2rEA== and /dev/null differ diff --git a/tests/example_filesystems/v0.6-plaintextnames/abs b/tests/example_filesystems/v0.6-plaintextnames/abs deleted file mode 120000 index e1740fa..0000000 --- a/tests/example_filesystems/v0.6-plaintextnames/abs +++ /dev/null @@ -1 +0,0 @@ -/a/b/c/d \ No newline at end of file diff --git a/tests/example_filesystems/v0.6-plaintextnames/gocryptfs.conf b/tests/example_filesystems/v0.6-plaintextnames/gocryptfs.conf deleted file mode 100644 index 257b7ee..0000000 --- a/tests/example_filesystems/v0.6-plaintextnames/gocryptfs.conf +++ /dev/null @@ -1,14 +0,0 @@ -{ - "EncryptedKey": "SoTMt+DMqVDia42c7cx8YW6KrnzF9EQVYIq5DGR1yFqNKxtOCBIuXEIKJHYSw1Z8VluKRQmkugTOvyTU", - "ScryptObject": { - "Salt": "83wR2p5eDPtozsP48vizN1rAbYeXOtksvwoAZ9Y0vn4=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "PlaintextNames" - ] -} \ No newline at end of file diff --git a/tests/example_filesystems/v0.6-plaintextnames/rel b/tests/example_filesystems/v0.6-plaintextnames/rel deleted file mode 120000 index 8279c75..0000000 --- a/tests/example_filesystems/v0.6-plaintextnames/rel +++ /dev/null @@ -1 +0,0 @@ -status.txt \ No newline at end of file diff --git a/tests/example_filesystems/v0.6-plaintextnames/status.txt b/tests/example_filesystems/v0.6-plaintextnames/status.txt deleted file mode 100644 index e5b62fb..0000000 Binary files a/tests/example_filesystems/v0.6-plaintextnames/status.txt and /dev/null differ diff --git a/tests/example_filesystems/v0.6/9pOs0yjJI5A67pv5CnqomQ== b/tests/example_filesystems/v0.6/9pOs0yjJI5A67pv5CnqomQ== deleted file mode 120000 index 11b0234..0000000 --- a/tests/example_filesystems/v0.6/9pOs0yjJI5A67pv5CnqomQ== +++ /dev/null @@ -1 +0,0 @@ -OoEsnmmWQzBSl3E471yZkI2t2vB4SteL_l1J60HYXZ7g0W3CkTM= \ No newline at end of file diff --git a/tests/example_filesystems/v0.6/G79Zdu41H3bgwdaQlrz-dg== b/tests/example_filesystems/v0.6/G79Zdu41H3bgwdaQlrz-dg== deleted file mode 120000 index b72a393..0000000 --- a/tests/example_filesystems/v0.6/G79Zdu41H3bgwdaQlrz-dg== +++ /dev/null @@ -1 +0,0 @@ -4IGGj21t4IYWI76F46v3gG-JwTcw_QxGDFMSk_19bJav2WNw \ No newline at end of file diff --git a/tests/example_filesystems/v0.6/RuYvQG_raW_-H_LcyJC4LQ== b/tests/example_filesystems/v0.6/RuYvQG_raW_-H_LcyJC4LQ== deleted file mode 100644 index 5821d87..0000000 Binary files a/tests/example_filesystems/v0.6/RuYvQG_raW_-H_LcyJC4LQ== and /dev/null differ diff --git a/tests/example_filesystems/v0.6/gocryptfs.conf b/tests/example_filesystems/v0.6/gocryptfs.conf deleted file mode 100644 index 1c72781..0000000 --- a/tests/example_filesystems/v0.6/gocryptfs.conf +++ /dev/null @@ -1,15 +0,0 @@ -{ - "EncryptedKey": "/PhLwDblkFRGfoIA0egXikG0ZSZTWrOOoFZJPPX0R8JgU5+XnT2M2rxUzHIKKeuGoqZN55phgJjhTu0J", - "ScryptObject": { - "Salt": "YSHRXpcWYp95npMxAy9cf27LoaPR3gvrFpk3Xhg2tM8=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "DirIV", - "EMENames" - ] -} \ No newline at end of file diff --git a/tests/example_filesystems/v0.6/gocryptfs.diriv b/tests/example_filesystems/v0.6/gocryptfs.diriv deleted file mode 100644 index ec9f503..0000000 --- a/tests/example_filesystems/v0.6/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -éœ(ûò'<˜7§Q‹ \ No newline at end of file diff --git a/tests/example_filesystems/v0.7-plaintextnames/abs b/tests/example_filesystems/v0.7-plaintextnames/abs deleted file mode 120000 index e1740fa..0000000 --- a/tests/example_filesystems/v0.7-plaintextnames/abs +++ /dev/null @@ -1 +0,0 @@ -/a/b/c/d \ No newline at end of file diff --git a/tests/example_filesystems/v0.7-plaintextnames/gocryptfs.conf b/tests/example_filesystems/v0.7-plaintextnames/gocryptfs.conf deleted file mode 100644 index 9b462a3..0000000 --- a/tests/example_filesystems/v0.7-plaintextnames/gocryptfs.conf +++ /dev/null @@ -1,15 +0,0 @@ -{ - "EncryptedKey": "13f9NLdlS20w26T0bukhVrqhumJOHhRyntEJb2y2BJK+K1kulklQGT6gxSWPsjDqw5514h9/euMiKMwc", - "ScryptObject": { - "Salt": "b2ZD+7sN6b/lchJbYT+4K73tscC6WwbGrdxHuFjhOT4=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "PlaintextNames" - ] -} \ No newline at end of file diff --git a/tests/example_filesystems/v0.7-plaintextnames/rel b/tests/example_filesystems/v0.7-plaintextnames/rel deleted file mode 120000 index 8279c75..0000000 --- a/tests/example_filesystems/v0.7-plaintextnames/rel +++ /dev/null @@ -1 +0,0 @@ -status.txt \ No newline at end of file diff --git a/tests/example_filesystems/v0.7-plaintextnames/status.txt b/tests/example_filesystems/v0.7-plaintextnames/status.txt deleted file mode 100644 index 86ae6dc..0000000 Binary files a/tests/example_filesystems/v0.7-plaintextnames/status.txt and /dev/null differ diff --git a/tests/example_filesystems/v0.7/4tRF1LdULRFLiXwfze671Q== b/tests/example_filesystems/v0.7/4tRF1LdULRFLiXwfze671Q== deleted file mode 120000 index f06d136..0000000 --- a/tests/example_filesystems/v0.7/4tRF1LdULRFLiXwfze671Q== +++ /dev/null @@ -1 +0,0 @@ -_IdSjAmPQOJW6QkskuyQJS9bFTjntqx9kdg4Z3y8EzKBnIb_Ihqz4w== \ No newline at end of file diff --git a/tests/example_filesystems/v0.7/RWPXmXkRFrWw1aOpq7C-NQ== b/tests/example_filesystems/v0.7/RWPXmXkRFrWw1aOpq7C-NQ== deleted file mode 100644 index 6ddcd1e..0000000 Binary files a/tests/example_filesystems/v0.7/RWPXmXkRFrWw1aOpq7C-NQ== and /dev/null differ diff --git a/tests/example_filesystems/v0.7/dwPcZNei4HN4qPA6FxoG_A== b/tests/example_filesystems/v0.7/dwPcZNei4HN4qPA6FxoG_A== deleted file mode 120000 index c0c731f..0000000 --- a/tests/example_filesystems/v0.7/dwPcZNei4HN4qPA6FxoG_A== +++ /dev/null @@ -1 +0,0 @@ -Ygqk_pYyxE_ac_ufVgxKCPxWHMGqQ8xUohIaHcmgeLU4uQB3_UmicPKB \ No newline at end of file diff --git a/tests/example_filesystems/v0.7/gocryptfs.conf b/tests/example_filesystems/v0.7/gocryptfs.conf deleted file mode 100644 index 80c2673..0000000 --- a/tests/example_filesystems/v0.7/gocryptfs.conf +++ /dev/null @@ -1,16 +0,0 @@ -{ - "EncryptedKey": "0crm+qEf00XPxQrc8NIMp/0rgfaLb8wzTj+3G1slSytjsLHctj/fOKkGJIFyBk7xzvnWdkhyxxvHgfMS", - "ScryptObject": { - "Salt": "yZn+QMjR2ENZ6MoiURpqEqr8mgnCX8WN87KJafgiXhU=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "DirIV", - "EMENames" - ] -} \ No newline at end of file diff --git a/tests/example_filesystems/v0.7/gocryptfs.diriv b/tests/example_filesystems/v0.7/gocryptfs.diriv deleted file mode 100644 index 3adef3c..0000000 --- a/tests/example_filesystems/v0.7/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -ßiȤ·\?…Œ=ÑÎMc \ No newline at end of file diff --git a/tests/example_filesystems/v0.9/00msNUi5h5aKMX_f-4pBhA== b/tests/example_filesystems/v0.9/00msNUi5h5aKMX_f-4pBhA== deleted file mode 120000 index c717734..0000000 --- a/tests/example_filesystems/v0.9/00msNUi5h5aKMX_f-4pBhA== +++ /dev/null @@ -1 +0,0 @@ -5nI119EbCRtgT8AwTDPmxCuORvbGV4xdtmqnur7KK9ufir-ALyneV7Iy \ No newline at end of file diff --git a/tests/example_filesystems/v0.9/R83PhW-BBA_q4rPYD7dEMg== b/tests/example_filesystems/v0.9/R83PhW-BBA_q4rPYD7dEMg== deleted file mode 100644 index 1bc4a81..0000000 Binary files a/tests/example_filesystems/v0.9/R83PhW-BBA_q4rPYD7dEMg== and /dev/null differ diff --git a/tests/example_filesystems/v0.9/gocryptfs.conf b/tests/example_filesystems/v0.9/gocryptfs.conf deleted file mode 100644 index 4d9b089..0000000 --- a/tests/example_filesystems/v0.9/gocryptfs.conf +++ /dev/null @@ -1,17 +0,0 @@ -{ - "EncryptedKey": "sAB/dsiDbFBbMr7ppsB3Fu81hVr6BBxlcfY1wZYRHlRvRV2uwRdYAACNM39CDxLBHZuNjk9UyWh87McP", - "ScryptObject": { - "Salt": "3mphl9Hmhzd6exmc8Um0jOOCgR8hAYvbzbEpTnIEMPg=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "DirIV", - "EMENames", - "LongNames" - ] -} \ No newline at end of file diff --git a/tests/example_filesystems/v0.9/gocryptfs.diriv b/tests/example_filesystems/v0.9/gocryptfs.diriv deleted file mode 100644 index 47d97ee..0000000 --- a/tests/example_filesystems/v0.9/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -ÿ~HÕæá‡A|ÔÈã­ \ No newline at end of file diff --git a/tests/example_filesystems/v0.9/gocryptfs.longname.y4J-w3LBX165Mn_pGdDRY7Gb6EgHcTrdWjME3WGu-CQ= b/tests/example_filesystems/v0.9/gocryptfs.longname.y4J-w3LBX165Mn_pGdDRY7Gb6EgHcTrdWjME3WGu-CQ= deleted file mode 100644 index 78eb3ff..0000000 Binary files a/tests/example_filesystems/v0.9/gocryptfs.longname.y4J-w3LBX165Mn_pGdDRY7Gb6EgHcTrdWjME3WGu-CQ= and /dev/null differ diff --git a/tests/example_filesystems/v0.9/gocryptfs.longname.y4J-w3LBX165Mn_pGdDRY7Gb6EgHcTrdWjME3WGu-CQ=.name b/tests/example_filesystems/v0.9/gocryptfs.longname.y4J-w3LBX165Mn_pGdDRY7Gb6EgHcTrdWjME3WGu-CQ=.name deleted file mode 100644 index 535cee7..0000000 --- a/tests/example_filesystems/v0.9/gocryptfs.longname.y4J-w3LBX165Mn_pGdDRY7Gb6EgHcTrdWjME3WGu-CQ=.name +++ /dev/null @@ -1 +0,0 @@ -Py7wkyXYf1YXvFvHuizOqva6WWWYEQ-JYv1rOAvWWaARLyGdQdxuW-iBf1Vwd8orZjqkcIGgnxOfuRsarXKmn4-3L2MRIZKPhhx2QRqpPRtFylEABH1KwZ_2ZZnx5cpcO8TIoeVdL6NXnRw-WrT06zTUzVRioNPRLPa0J6c8_eb5QFb4EG5wPpn-XlJSedjAw31MUNvFxKYQku_UwJF0CvvXLCozVnNM_dDNWsgBevzB8VBySbfW7XgYMRPJRlJe3Pjeues9tyGJvAxGJVjfo4nZyWusMF2G4f9w06m3Bxjc7ladgJR6F6pyI4Z65DCIL7G6G2y__agmNcKtFwCS_Q== \ No newline at end of file diff --git a/tests/example_filesystems/v0.9/hwE1RKIXtF8hmQMvEXSTtg== b/tests/example_filesystems/v0.9/hwE1RKIXtF8hmQMvEXSTtg== deleted file mode 120000 index 4190a7e..0000000 --- a/tests/example_filesystems/v0.9/hwE1RKIXtF8hmQMvEXSTtg== +++ /dev/null @@ -1 +0,0 @@ -XRx7Nqxt_zuPNo7h8_j1LLVzqzIZg9qAYGRN9Iuq3XBc11Y7_RoQsg== \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-aessiv/MA0FDdmnXpmPJtS_AcAbqQ== b/tests/example_filesystems/v1.1-aessiv/MA0FDdmnXpmPJtS_AcAbqQ== deleted file mode 100644 index 6767b2a..0000000 Binary files a/tests/example_filesystems/v1.1-aessiv/MA0FDdmnXpmPJtS_AcAbqQ== and /dev/null differ diff --git a/tests/example_filesystems/v1.1-aessiv/Sjl6QXHm2IjuKwaKgJ5jig== b/tests/example_filesystems/v1.1-aessiv/Sjl6QXHm2IjuKwaKgJ5jig== deleted file mode 120000 index b3d31e3..0000000 --- a/tests/example_filesystems/v1.1-aessiv/Sjl6QXHm2IjuKwaKgJ5jig== +++ /dev/null @@ -1 +0,0 @@ -ozeZ1xXCP-Q904JCvkPk40enJd5zVL6FqBugkS6Y4tfcii_G1DOdDQ== \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-aessiv/gocryptfs.conf b/tests/example_filesystems/v1.1-aessiv/gocryptfs.conf deleted file mode 100644 index d16051a..0000000 --- a/tests/example_filesystems/v1.1-aessiv/gocryptfs.conf +++ /dev/null @@ -1,19 +0,0 @@ -{ - "Creator": "gocryptfs v1.1-beta1-33-gf054353-dirty", - "EncryptedKey": "y2ldEXg3Ui0jwic99bqvvrvGRPRDB7gYzvOBwZxcmWqRgcp3BLMShhIXwx3Pewmst5TivqSrK2r9wUIL", - "ScryptObject": { - "Salt": "oEt1In6W5UD1Pe9CFSz21x5ptTRluU43mmshUtmSwAk=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "DirIV", - "EMENames", - "LongNames", - "AESSIV" - ] -} \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-aessiv/gocryptfs.diriv b/tests/example_filesystems/v1.1-aessiv/gocryptfs.diriv deleted file mode 100644 index 9ca19fd..0000000 --- a/tests/example_filesystems/v1.1-aessiv/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -‘ºqyæ@Œ¤0‰kY´] \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-aessiv/gocryptfs.longname.dDhdE3C5egl47Q4C4SuPNGPGkzyxuuHCP1efYMCaGqk= b/tests/example_filesystems/v1.1-aessiv/gocryptfs.longname.dDhdE3C5egl47Q4C4SuPNGPGkzyxuuHCP1efYMCaGqk= deleted file mode 100644 index a5c444d..0000000 Binary files a/tests/example_filesystems/v1.1-aessiv/gocryptfs.longname.dDhdE3C5egl47Q4C4SuPNGPGkzyxuuHCP1efYMCaGqk= and /dev/null differ diff --git a/tests/example_filesystems/v1.1-aessiv/gocryptfs.longname.dDhdE3C5egl47Q4C4SuPNGPGkzyxuuHCP1efYMCaGqk=.name b/tests/example_filesystems/v1.1-aessiv/gocryptfs.longname.dDhdE3C5egl47Q4C4SuPNGPGkzyxuuHCP1efYMCaGqk=.name deleted file mode 100644 index 1865eda..0000000 --- a/tests/example_filesystems/v1.1-aessiv/gocryptfs.longname.dDhdE3C5egl47Q4C4SuPNGPGkzyxuuHCP1efYMCaGqk=.name +++ /dev/null @@ -1 +0,0 @@ -8S9oaCrWGfWIF0_DTQsRvNARW78Vl5HcEYPZOwh3susDIHIbs8JiAF19oqWQz5HN1gpH2213kWqE4m1H1jVKslRHxSPxkQ5sDyaIm4PBZZg5-5djCYoQDLObvrgQv9HsN_NDb2rV8bmmH9SFArJ2SSKX5JdbMcraGr9Rj1AE89-9jIS0VTfKvpA_UgZEdR6IJ7V8VnD3eNo4KsBzJiL4G5wlpxvDLTy7mm7lxK_erV5gzKVHZGIz9Z-ehF--duIfY3x_h2hDNdocIKQltOEcxryHtcUqzcuFB_XkjW6BOTOYINHvLLA8CkLNSOXxLAqoeeu-8GwTgIDKrKhGnTTzgQ== \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-aessiv/jCGXyJJqu4sdxRLsDQNEtA== b/tests/example_filesystems/v1.1-aessiv/jCGXyJJqu4sdxRLsDQNEtA== deleted file mode 120000 index 20d2b58..0000000 --- a/tests/example_filesystems/v1.1-aessiv/jCGXyJJqu4sdxRLsDQNEtA== +++ /dev/null @@ -1 +0,0 @@ -GMqHOo4BNUhfLc-Vqi_R6J76C-OQhHLVgsBl5j9t-XFoq97KNlcuC1Vd \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-reverse-plaintextnames/.gocryptfs.reverse.conf b/tests/example_filesystems/v1.1-reverse-plaintextnames/.gocryptfs.reverse.conf deleted file mode 100644 index e7ea1a8..0000000 --- a/tests/example_filesystems/v1.1-reverse-plaintextnames/.gocryptfs.reverse.conf +++ /dev/null @@ -1,17 +0,0 @@ -{ - "Creator": "gocryptfs v1.1-beta1-33-gf054353-dirty", - "EncryptedKey": "bMqEbjtvZek9yAGzhsTYmaDcqnE7wvR+1fWvy+YCMQTwtmvNbpKnfFH3wacPNKttQ7BcpFrOi4Ux+Bw+", - "ScryptObject": { - "Salt": "RgvSW4AxpA9z/Gb6RCCmKeA4A2vC+l0vu9DnEKIWQZU=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "PlaintextNames", - "AESSIV" - ] -} \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-reverse-plaintextnames/abs b/tests/example_filesystems/v1.1-reverse-plaintextnames/abs deleted file mode 120000 index e1740fa..0000000 --- a/tests/example_filesystems/v1.1-reverse-plaintextnames/abs +++ /dev/null @@ -1 +0,0 @@ -/a/b/c/d \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-reverse-plaintextnames/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/example_filesystems/v1.1-reverse-plaintextnames/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index 68300b8..0000000 --- a/tests/example_filesystems/v1.1-reverse-plaintextnames/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx +++ /dev/null @@ -1 +0,0 @@ -It works! diff --git a/tests/example_filesystems/v1.1-reverse-plaintextnames/rel b/tests/example_filesystems/v1.1-reverse-plaintextnames/rel deleted file mode 120000 index 8279c75..0000000 --- a/tests/example_filesystems/v1.1-reverse-plaintextnames/rel +++ /dev/null @@ -1 +0,0 @@ -status.txt \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-reverse-plaintextnames/status.txt b/tests/example_filesystems/v1.1-reverse-plaintextnames/status.txt deleted file mode 100644 index 68300b8..0000000 --- a/tests/example_filesystems/v1.1-reverse-plaintextnames/status.txt +++ /dev/null @@ -1 +0,0 @@ -It works! diff --git a/tests/example_filesystems/v1.1-reverse/.gocryptfs.reverse.conf b/tests/example_filesystems/v1.1-reverse/.gocryptfs.reverse.conf deleted file mode 100644 index 9095ef5..0000000 --- a/tests/example_filesystems/v1.1-reverse/.gocryptfs.reverse.conf +++ /dev/null @@ -1,19 +0,0 @@ -{ - "Creator": "gocryptfs v1.1-beta1-33-gf054353-dirty", - "EncryptedKey": "GD7CQzhKMs4r8B/jc7eNNAffyMn4Z2A0tH9EC50y6v5y6amJdU6NQK5xLPWpWSc45si5L26VOVhT8dhz", - "ScryptObject": { - "Salt": "G/Cpk6TnscJzx1fae9t8guejwoPk1lsGkkcljIMjJdw=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "DirIV", - "EMENames", - "LongNames", - "AESSIV" - ] -} \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-reverse/abs b/tests/example_filesystems/v1.1-reverse/abs deleted file mode 120000 index e1740fa..0000000 --- a/tests/example_filesystems/v1.1-reverse/abs +++ /dev/null @@ -1 +0,0 @@ -/a/b/c/d \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-reverse/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/example_filesystems/v1.1-reverse/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index 68300b8..0000000 --- a/tests/example_filesystems/v1.1-reverse/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx +++ /dev/null @@ -1 +0,0 @@ -It works! diff --git a/tests/example_filesystems/v1.1-reverse/rel b/tests/example_filesystems/v1.1-reverse/rel deleted file mode 120000 index 8279c75..0000000 --- a/tests/example_filesystems/v1.1-reverse/rel +++ /dev/null @@ -1 +0,0 @@ -status.txt \ No newline at end of file diff --git a/tests/example_filesystems/v1.1-reverse/status.txt b/tests/example_filesystems/v1.1-reverse/status.txt deleted file mode 100644 index 68300b8..0000000 --- a/tests/example_filesystems/v1.1-reverse/status.txt +++ /dev/null @@ -1 +0,0 @@ -It works! diff --git a/tests/example_filesystems/v1.3-reverse/.gocryptfs.reverse.conf b/tests/example_filesystems/v1.3-reverse/.gocryptfs.reverse.conf deleted file mode 100644 index 4241280..0000000 --- a/tests/example_filesystems/v1.3-reverse/.gocryptfs.reverse.conf +++ /dev/null @@ -1,21 +0,0 @@ -{ - "Creator": "gocryptfs v1.3", - "EncryptedKey": "o6yhOpoaToWqs7iZMgx2J+dmrRcL8TOjqd7ntlqy4Y/g/ygNRADJXGITtEIDukf7FbGyn2JNZtWs/4ZOgLNmYw==", - "ScryptObject": { - "Salt": "8a64zpm0vXFg9uretHuwbxijzQmx2QF4hKOYM0yK/S8=", - "N": 65536, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "HKDF", - "DirIV", - "EMENames", - "LongNames", - "Raw64", - "AESSIV" - ] -} diff --git a/tests/example_filesystems/v1.3-reverse/abs b/tests/example_filesystems/v1.3-reverse/abs deleted file mode 120000 index e1740fa..0000000 --- a/tests/example_filesystems/v1.3-reverse/abs +++ /dev/null @@ -1 +0,0 @@ -/a/b/c/d \ No newline at end of file diff --git a/tests/example_filesystems/v1.3-reverse/dir1/dir2/file b/tests/example_filesystems/v1.3-reverse/dir1/dir2/file deleted file mode 100644 index e64c723..0000000 Binary files a/tests/example_filesystems/v1.3-reverse/dir1/dir2/file and /dev/null differ diff --git a/tests/example_filesystems/v1.3-reverse/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/example_filesystems/v1.3-reverse/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index 68300b8..0000000 --- a/tests/example_filesystems/v1.3-reverse/longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx +++ /dev/null @@ -1 +0,0 @@ -It works! diff --git a/tests/example_filesystems/v1.3-reverse/rel b/tests/example_filesystems/v1.3-reverse/rel deleted file mode 120000 index 8279c75..0000000 --- a/tests/example_filesystems/v1.3-reverse/rel +++ /dev/null @@ -1 +0,0 @@ -status.txt \ No newline at end of file diff --git a/tests/example_filesystems/v1.3-reverse/status.txt b/tests/example_filesystems/v1.3-reverse/status.txt deleted file mode 100644 index 68300b8..0000000 --- a/tests/example_filesystems/v1.3-reverse/status.txt +++ /dev/null @@ -1 +0,0 @@ -It works! diff --git a/tests/example_filesystems/v1.3/gocryptfs.conf b/tests/example_filesystems/v1.3/gocryptfs.conf deleted file mode 100644 index e6b4aec..0000000 --- a/tests/example_filesystems/v1.3/gocryptfs.conf +++ /dev/null @@ -1,20 +0,0 @@ -{ - "Creator": "gocryptfs v1.2.1-23-gd78a8d1-dirty", - "EncryptedKey": "WGhKfCvV/LBZdwpWz3Fs+9UFUJbtTooBiZMuthd8Hz3nq0g+zU7H+68ZkrCLdcC08PUNHVbvDdlGpRh0czbbyA==", - "ScryptObject": { - "Salt": "LkS43fRGN3SfcFbVhPLo3uKh3h+4LYLNlqEUf+JIWf4=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "DirIV", - "EMENames", - "LongNames", - "Raw64", - "HKDF" - ] -} diff --git a/tests/example_filesystems/v1.3/gocryptfs.diriv b/tests/example_filesystems/v1.3/gocryptfs.diriv deleted file mode 100644 index d507f03..0000000 --- a/tests/example_filesystems/v1.3/gocryptfs.diriv +++ /dev/null @@ -1,2 +0,0 @@ -N¦8‘mm$;ù¹;ó\ -6¶ \ No newline at end of file diff --git a/tests/example_filesystems/v1.3/gocryptfs.longname.QhUr5d9FHerwEs--muUs6_80cy6JRp89c1otLwp92Cs b/tests/example_filesystems/v1.3/gocryptfs.longname.QhUr5d9FHerwEs--muUs6_80cy6JRp89c1otLwp92Cs deleted file mode 100644 index e5c0a58..0000000 Binary files a/tests/example_filesystems/v1.3/gocryptfs.longname.QhUr5d9FHerwEs--muUs6_80cy6JRp89c1otLwp92Cs and /dev/null differ diff --git a/tests/example_filesystems/v1.3/gocryptfs.longname.QhUr5d9FHerwEs--muUs6_80cy6JRp89c1otLwp92Cs.name b/tests/example_filesystems/v1.3/gocryptfs.longname.QhUr5d9FHerwEs--muUs6_80cy6JRp89c1otLwp92Cs.name deleted file mode 100644 index c0aceae..0000000 --- a/tests/example_filesystems/v1.3/gocryptfs.longname.QhUr5d9FHerwEs--muUs6_80cy6JRp89c1otLwp92Cs.name +++ /dev/null @@ -1 +0,0 @@ -K9GWSIcjWZgvd3TpclEcrWUw_QmLRotdyEFxkXLyVDiLZlqC6oJ_LcouD_9ZTkFL72LaB3P0nx7dMeyjd9m1k_aLS1Mqbnj5F7PwiVSVnKugBsooIa7enIuH1x_riP9ppeDEUNPsDXtDlqESe75rc9dYptYmYC_MsG3ve8n78YCU5h8fUBL271v2yv8Tbgc0u7d5ygLqPgTYdBMXsSgOXxviMU73y9UlA3DWfDArb36N0FHpiiphXgu6_uzckiig9o-SFv-o2eyyKjHNClsWAP32opj-T4DuWU7Q_5858hiedJISv8zI0NTYYkeCluSZ_EkIXidzKB5vcswetGSJmg \ No newline at end of file diff --git a/tests/example_filesystems/v1.3/gv65k_g2NQyBsSv_5dzMVQ b/tests/example_filesystems/v1.3/gv65k_g2NQyBsSv_5dzMVQ deleted file mode 120000 index 79876d9..0000000 --- a/tests/example_filesystems/v1.3/gv65k_g2NQyBsSv_5dzMVQ +++ /dev/null @@ -1 +0,0 @@ -ra2NOzuRPOI9tj-Hc7RIYJcZNCJKWY1bo4681ABZi5eEMkK9iZCQ8A \ No newline at end of file diff --git a/tests/example_filesystems/v1.3/mGj2_hdnHe34Sp0iIQUwuw b/tests/example_filesystems/v1.3/mGj2_hdnHe34Sp0iIQUwuw deleted file mode 100644 index d653f78..0000000 Binary files a/tests/example_filesystems/v1.3/mGj2_hdnHe34Sp0iIQUwuw and /dev/null differ diff --git a/tests/example_filesystems/v1.3/uD4PVrDBY5y2k_qLKNOFvA b/tests/example_filesystems/v1.3/uD4PVrDBY5y2k_qLKNOFvA deleted file mode 120000 index d121261..0000000 --- a/tests/example_filesystems/v1.3/uD4PVrDBY5y2k_qLKNOFvA +++ /dev/null @@ -1 +0,0 @@ -pAes0cNmAncysGM-LxZ-jXvIpdLwc2qQNXvrEw0l1-dM5X74-kBXgF7P \ No newline at end of file diff --git a/tests/fsck/broken_fs_v1.4/6nGs4Ugr3EAHd0KzkyLZ-Q b/tests/fsck/broken_fs_v1.4/6nGs4Ugr3EAHd0KzkyLZ-Q deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fsck/broken_fs_v1.4/CMyUifVTjW5fsgXonWBT_RDkvLkdGrLttkZ45T3Oi3A b/tests/fsck/broken_fs_v1.4/CMyUifVTjW5fsgXonWBT_RDkvLkdGrLttkZ45T3Oi3A deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fsck/broken_fs_v1.4/Ef-68icxbQ-TuvmnWHuItB1BeLB92dNCXMXiz2M-zPI b/tests/fsck/broken_fs_v1.4/Ef-68icxbQ-TuvmnWHuItB1BeLB92dNCXMXiz2M-zPI deleted file mode 100644 index 84b9a70..0000000 Binary files a/tests/fsck/broken_fs_v1.4/Ef-68icxbQ-TuvmnWHuItB1BeLB92dNCXMXiz2M-zPI and /dev/null differ diff --git a/tests/fsck/broken_fs_v1.4/GUvJFSfy7S1AXUdy4pDRLw b/tests/fsck/broken_fs_v1.4/GUvJFSfy7S1AXUdy4pDRLw deleted file mode 120000 index 7bbd005..0000000 --- a/tests/fsck/broken_fs_v1.4/GUvJFSfy7S1AXUdy4pDRLw +++ /dev/null @@ -1 +0,0 @@ -RFPnVN8r1HjIrFVJ8PffC7ObzAIeBx3DQh8FbgvmbT8Ho8mU \ No newline at end of file diff --git a/tests/fsck/broken_fs_v1.4/K2m0E6qzIfoLkVZJanoUiQ/mWEr9JLch2FW40qhbnPgpg b/tests/fsck/broken_fs_v1.4/K2m0E6qzIfoLkVZJanoUiQ/mWEr9JLch2FW40qhbnPgpg deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fsck/broken_fs_v1.4/OtrNpznB8aMTKPi6bopM2g b/tests/fsck/broken_fs_v1.4/OtrNpznB8aMTKPi6bopM2g deleted file mode 100644 index dab7c69..0000000 Binary files a/tests/fsck/broken_fs_v1.4/OtrNpznB8aMTKPi6bopM2g and /dev/null differ diff --git a/tests/fsck/broken_fs_v1.4/PnkpLqHimGudw4C3jFY-Yw/_y58usbKXq_YRPMKfC3TNw b/tests/fsck/broken_fs_v1.4/PnkpLqHimGudw4C3jFY-Yw/_y58usbKXq_YRPMKfC3TNw deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fsck/broken_fs_v1.4/PnkpLqHimGudw4C3jFY-Yw/gocryptfs.diriv b/tests/fsck/broken_fs_v1.4/PnkpLqHimGudw4C3jFY-Yw/gocryptfs.diriv deleted file mode 100644 index 178763a..0000000 --- a/tests/fsck/broken_fs_v1.4/PnkpLqHimGudw4C3jFY-Yw/gocryptfs.diriv +++ /dev/null @@ -1,2 +0,0 @@ -f—`Êá -{g*@w¹6£ \ No newline at end of file diff --git a/tests/fsck/broken_fs_v1.4/V5DjvW5BXlGl1yCIJn4lPgdjdMvW_LUfc7G-R8W1cZ0 b/tests/fsck/broken_fs_v1.4/V5DjvW5BXlGl1yCIJn4lPgdjdMvW_LUfc7G-R8W1cZ0 deleted file mode 100644 index 6101efa..0000000 Binary files a/tests/fsck/broken_fs_v1.4/V5DjvW5BXlGl1yCIJn4lPgdjdMvW_LUfc7G-R8W1cZ0 and /dev/null differ diff --git a/tests/fsck/broken_fs_v1.4/b00sbnGXGToadr01GHZaYQn8tjyRhe1OXNBZoQtMlcQ b/tests/fsck/broken_fs_v1.4/b00sbnGXGToadr01GHZaYQn8tjyRhe1OXNBZoQtMlcQ deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fsck/broken_fs_v1.4/ejZ3FX0zlFTpSfv-FBJ2u3ojwSN1XSqpNpCHxa5VGWw b/tests/fsck/broken_fs_v1.4/ejZ3FX0zlFTpSfv-FBJ2u3ojwSN1XSqpNpCHxa5VGWw deleted file mode 100644 index f76dd23..0000000 Binary files a/tests/fsck/broken_fs_v1.4/ejZ3FX0zlFTpSfv-FBJ2u3ojwSN1XSqpNpCHxa5VGWw and /dev/null differ diff --git a/tests/fsck/broken_fs_v1.4/gocryptfs.conf b/tests/fsck/broken_fs_v1.4/gocryptfs.conf deleted file mode 100644 index cedf571..0000000 --- a/tests/fsck/broken_fs_v1.4/gocryptfs.conf +++ /dev/null @@ -1,20 +0,0 @@ -{ - "Creator": "gocryptfs v1.4.4-13-ga4f3a7d-dirty", - "EncryptedKey": "yfnIx9uKv2ZX80KXOlfb4fWws3RNqvcjsx/Ajr0x4pRfg8NLqhWRpEUWGk8NSdVFXKWVDgdhSoYkbfVnFXl07g==", - "ScryptObject": { - "Salt": "R78m123zJxxO6uU1bg6/0azppry1FoGdH1/Op1xFq+4=", - "N": 65536, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "HKDF", - "DirIV", - "EMENames", - "LongNames", - "Raw64" - ] -} diff --git a/tests/fsck/broken_fs_v1.4/gocryptfs.diriv b/tests/fsck/broken_fs_v1.4/gocryptfs.diriv deleted file mode 100644 index d7bbcda..0000000 --- a/tests/fsck/broken_fs_v1.4/gocryptfs.diriv +++ /dev/null @@ -1,2 +0,0 @@ -å8]ÃjM -âPg¡çDóç \ No newline at end of file diff --git a/tests/fsck/broken_fs_v1.4/iI0MtUdzELPeOAZYwYZFee169hpGgd3l2PXQBcc9sl4 b/tests/fsck/broken_fs_v1.4/iI0MtUdzELPeOAZYwYZFee169hpGgd3l2PXQBcc9sl4 deleted file mode 120000 index 4b707cb..0000000 --- a/tests/fsck/broken_fs_v1.4/iI0MtUdzELPeOAZYwYZFee169hpGgd3l2PXQBcc9sl4 +++ /dev/null @@ -1 +0,0 @@ -%%%broken_symlink%%% \ No newline at end of file diff --git a/tests/fsck/broken_fs_v1.4/invalid_file_name.3 b/tests/fsck/broken_fs_v1.4/invalid_file_name.3 deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fsck/broken_fs_v1.4/invalid_file_name_2 b/tests/fsck/broken_fs_v1.4/invalid_file_name_2 deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fsck/broken_fs_v1.4/invalid_file_name____1 b/tests/fsck/broken_fs_v1.4/invalid_file_name____1 deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fsck/broken_fs_v1.4/qOA8a4yuvgbMFpz7277R8A b/tests/fsck/broken_fs_v1.4/qOA8a4yuvgbMFpz7277R8A deleted file mode 100644 index 8621a03..0000000 --- a/tests/fsck/broken_fs_v1.4/qOA8a4yuvgbMFpz7277R8A +++ /dev/null @@ -1 +0,0 @@ -XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX diff --git a/tests/fsck/broken_fs_v1.4/s-P7PcQDUcVkoeMDnC3EYA b/tests/fsck/broken_fs_v1.4/s-P7PcQDUcVkoeMDnC3EYA deleted file mode 120000 index 158f38a..0000000 --- a/tests/fsck/broken_fs_v1.4/s-P7PcQDUcVkoeMDnC3EYA +++ /dev/null @@ -1 +0,0 @@ -Qso5-4WJ2iAxF674mUarvuNbIMTLSJLqfEh3Chq3I_Rm2sY2 \ No newline at end of file diff --git a/tests/fsck/broken_fs_v1.4/trqecbMNXdzLqzpk7fSfKw/gocryptfs.diriv b/tests/fsck/broken_fs_v1.4/trqecbMNXdzLqzpk7fSfKw/gocryptfs.diriv deleted file mode 100644 index 41f0034..0000000 --- a/tests/fsck/broken_fs_v1.4/trqecbMNXdzLqzpk7fSfKw/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -Wc diff --git a/tests/fsck/broken_fs_v1.4/vDKs8a7UtM3PmEKk9wlPcA b/tests/fsck/broken_fs_v1.4/vDKs8a7UtM3PmEKk9wlPcA deleted file mode 100644 index 1dff1a1..0000000 Binary files a/tests/fsck/broken_fs_v1.4/vDKs8a7UtM3PmEKk9wlPcA and /dev/null differ diff --git a/tests/fsck/broken_fs_v1.4/yrwcjj2qoC4IYvhw9sbfRg/gocryptfs.diriv b/tests/fsck/broken_fs_v1.4/yrwcjj2qoC4IYvhw9sbfRg/gocryptfs.diriv deleted file mode 100644 index 29198ce..0000000 --- a/tests/fsck/broken_fs_v1.4/yrwcjj2qoC4IYvhw9sbfRg/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -LOã/;pl]Ù×n·ÌÙfooo diff --git a/tests/fsck/broken_fs_v1.4/yrwcjj2qoC4IYvhw9sbfRg/uC2yqKyQUXSJF-YF1Ya5nQ b/tests/fsck/broken_fs_v1.4/yrwcjj2qoC4IYvhw9sbfRg/uC2yqKyQUXSJF-YF1Ya5nQ deleted file mode 100644 index e69de29..0000000 diff --git a/tests/fsck/fsck_test.go b/tests/fsck/fsck_test.go deleted file mode 100644 index 3aaba9e..0000000 --- a/tests/fsck/fsck_test.go +++ /dev/null @@ -1,128 +0,0 @@ -package fsck - -import ( - "encoding/base64" - "os" - "os/exec" - "runtime" - "strings" - "syscall" - "testing" - "time" - - "github.com/pkg/xattr" - - "github.com/rfjakob/gocryptfs/internal/exitcodes" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func dec64(in string) (out []byte) { - out, err := base64.RawURLEncoding.DecodeString(in) - if err != nil { - panic(err) - } - return out -} - -func TestBrokenFsV14(t *testing.T) { - // git does not save extended attributes, so we apply them here. - // xattr_good - xattr.Set("broken_fs_v1.4/6nGs4Ugr3EAHd0KzkyLZ-Q", - "user.gocryptfs.0a5e7yWl0SGUGeWB0Sy2Kg", - dec64("hxnZvXSkDicfwVS9w4r1yYkFF61Qou6NaL-VhObYEdu6kuM")) - // xattr_corrupt_name - xattr.Set("broken_fs_v1.4/CMyUifVTjW5fsgXonWBT_RDkvLkdGrLttkZ45T3Oi3A", - "user.gocryptfs.0a5e7yWl0SGUGeWB0Sy2K0", - dec64("QHUMDTgbnl8Sv_A2dFQic_G2vN4_gmDna3651JAhF7OZ-YI")) - // xattr_corrupt_value - xattr.Set("broken_fs_v1.4/b00sbnGXGToadr01GHZaYQn8tjyRhe1OXNBZoQtMlcQ", - "user.gocryptfs.0a5e7yWl0SGUGeWB0Sy2Kg", - dec64("A0hvCePeKpL8bCpijhDKtf7cIijXYQsPnEbNJ84M2ONW0dd")) - - cmd := exec.Command(test_helpers.GocryptfsBinary, "-fsck", "-extpass", "echo test", "broken_fs_v1.4") - outBin, err := cmd.CombinedOutput() - out := string(outBin) - t.Log(out) - code := test_helpers.ExtractCmdExitCode(err) - if code != exitcodes.FsckErrors { - t.Errorf("wrong exit code, have=%d want=%d", code, exitcodes.FsckErrors) - } -} - -func TestExampleFses(t *testing.T) { - dirfd, err := os.Open("../example_filesystems") - if err != nil { - t.Fatal(err) - } - var fsNames []string - entries, err := dirfd.Readdir(0) - if err != nil { - t.Fatal(err) - } - for _, e := range entries { - if !e.IsDir() { - continue - } - if strings.Contains(e.Name(), "reverse") { - continue - } - if e.Name() == "content" { - continue - } - fsNames = append(fsNames, e.Name()) - } - for _, n := range fsNames { - t.Logf("Checking %q", n) - path := "../example_filesystems/" + n - cmd := exec.Command(test_helpers.GocryptfsBinary, "-fsck", "-extpass", "echo test", path) - outBin, err := cmd.CombinedOutput() - out := string(outBin) - code := test_helpers.ExtractCmdExitCode(err) - if code == exitcodes.DeprecatedFS { - continue - } - if code != 0 { - t.Log(out) - t.Errorf("fsck returned code %d but fs should be clean", code) - } - } - dirfd.Close() -} - -// TestTerabyteFile verifies that fsck does something intelligent when it hits -// a 1-terabyte sparse file (trying to read the whole file is not intelligent). -func TestTerabyteFile(t *testing.T) { - if runtime.GOOS != "linux" { - t.Skipf("Only linux supports SEEK_DATA") - } - cDir := test_helpers.InitFS(t) - pDir := cDir + ".mnt" - test_helpers.MountOrFatal(t, cDir, pDir, "-extpass", "echo test") - defer test_helpers.UnmountErr(pDir) - veryBigFile := pDir + "/veryBigFile" - fd, err := os.Create(veryBigFile) - if err != nil { - t.Fatal(err) - } - defer fd.Close() - var oneTiB int64 = 1024 * 1024 * 1024 * 1024 - _, err = fd.WriteAt([]byte("foobar"), oneTiB) - if err != nil { - t.Fatal(err) - } - fi, err := fd.Stat() - if err != nil { - t.Fatal(err) - } - t.Logf("size=%d, running fsck", fi.Size()) - cmd := exec.Command(test_helpers.GocryptfsBinary, "-fsck", "-extpass", "echo test", cDir) - cmd.Stderr = os.Stderr - cmd.Stdout = os.Stdout - cmd.Start() - timer := time.AfterFunc(10*time.Second, func() { - t.Error("timeout, sending SIGINT") - syscall.Kill(cmd.Process.Pid, syscall.SIGINT) - }) - cmd.Wait() - timer.Stop() -} diff --git a/tests/fsck/run_fsck.bash b/tests/fsck/run_fsck.bash deleted file mode 100755 index 9637381..0000000 --- a/tests/fsck/run_fsck.bash +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -exec ../../gocryptfs -fsck -extpass "echo test" broken_fs_v1.4 diff --git a/tests/fuse-unmount.bash b/tests/fuse-unmount.bash deleted file mode 100755 index debae29..0000000 --- a/tests/fuse-unmount.bash +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash -eu -# -# Compatibility wrapper around "fusermount" on Linux and "umount" on -# Mac OS X and friends. -# -# This script can be sourced or executed directly. -# -function fuse-unmount { - local MYNAME=$(basename "$BASH_SOURCE") - if [[ $# -eq 0 ]] ; then - echo "$MYNAME: missing argument" - exit 1 - fi - if [[ $OSTYPE == linux* ]] ; then - fusermount -u "$@" - else - # Mountpoint is in last argument, ignore anything else - # (like additional flags for fusermount). - local MNT=${@:$#} - umount "$MNT" - fi -} -# If the process name and the source file name is identical -# we have been executed, not sourced. -if [[ $(basename "$0") == $(basename "$BASH_SOURCE") ]] ; then - fuse-unmount "$@" -fi diff --git a/tests/hkdf_sanity/broken_content/gocryptfs.conf b/tests/hkdf_sanity/broken_content/gocryptfs.conf deleted file mode 100644 index 205f3ad..0000000 --- a/tests/hkdf_sanity/broken_content/gocryptfs.conf +++ /dev/null @@ -1,17 +0,0 @@ -{ - "Creator": "gocryptfs v1.2.1-32-g14038a1-dirty", - "EncryptedKey": "b3888jnQC5GYem+YGtUkOTS13/YCOfA6J0/bkftfEoNA9fZTN2xMGw4c+LK+emg4L6P2wGvm44RUqCfFfgowxw==", - "ScryptObject": { - "Salt": "7YnR8bF7TzYNP5mIwmpQ1qj4e/QZkbH92Hx7YQctIZQ=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "HKDF", - "PlaintextNames" - ] -} diff --git a/tests/hkdf_sanity/broken_content/status.txt b/tests/hkdf_sanity/broken_content/status.txt deleted file mode 100644 index 30d42f7..0000000 Binary files a/tests/hkdf_sanity/broken_content/status.txt and /dev/null differ diff --git a/tests/hkdf_sanity/broken_names/L3yg-cJYAInDGg4TcjXrnw b/tests/hkdf_sanity/broken_names/L3yg-cJYAInDGg4TcjXrnw deleted file mode 100644 index 7ba2789..0000000 Binary files a/tests/hkdf_sanity/broken_names/L3yg-cJYAInDGg4TcjXrnw and /dev/null differ diff --git a/tests/hkdf_sanity/broken_names/gocryptfs.conf b/tests/hkdf_sanity/broken_names/gocryptfs.conf deleted file mode 100644 index f0b1509..0000000 --- a/tests/hkdf_sanity/broken_names/gocryptfs.conf +++ /dev/null @@ -1,20 +0,0 @@ -{ - "Creator": "gocryptfs v1.2.1-32-g14038a1-dirty", - "EncryptedKey": "0ymk/BtKEN1KmRLMquLinLIzXDaf+GLuP2f9R4VbLOglim9nXd5WxkCFl0DQg0J2FtCEke9MQBaCfL5OTJdR4g==", - "ScryptObject": { - "Salt": "tCrF2o5GoOyQt0LAlCWk47hyJsF5K6ID9uPzjTSBbh8=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "HKDF", - "DirIV", - "EMENames", - "LongNames", - "Raw64" - ] -} diff --git a/tests/hkdf_sanity/broken_names/gocryptfs.diriv b/tests/hkdf_sanity/broken_names/gocryptfs.diriv deleted file mode 100644 index 24f3d28..0000000 --- a/tests/hkdf_sanity/broken_names/gocryptfs.diriv +++ /dev/null @@ -1 +0,0 @@ -ï%C´×xõ(E£!½dц \ No newline at end of file diff --git a/tests/hkdf_sanity/sanity_test.go b/tests/hkdf_sanity/sanity_test.go deleted file mode 100644 index b382861..0000000 --- a/tests/hkdf_sanity/sanity_test.go +++ /dev/null @@ -1,34 +0,0 @@ -// We test two filesystems that have the "HKDF" feature flag in their config file -// set, but the actual file contents and names are encrypted with HKDF disabled. -// This test verifies that the "HKDF" feature flag in the config file takes effect. -package hkdf_sanity - -import ( - "io/ioutil" - "os" - "testing" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func TestBrokenContent(t *testing.T) { - cDir := "broken_content" - pDir := test_helpers.TmpDir + "/" + cDir - test_helpers.MountOrFatal(t, cDir, pDir, "-extpass", "echo test", "-wpanic=false") - _, err := ioutil.ReadFile(pDir + "/status.txt") - if err == nil { - t.Error("this should fail") - } - test_helpers.UnmountPanic(pDir) -} - -func TestBrokenNames(t *testing.T) { - cDir := "broken_names" - pDir := test_helpers.TmpDir + "/" + cDir - test_helpers.MountOrFatal(t, cDir, pDir, "-extpass", "echo test", "-wpanic=false") - _, err := os.Stat(pDir + "/status.txt") - if err == nil { - t.Error("this should fail") - } - test_helpers.UnmountPanic(pDir) -} diff --git a/tests/len2elen.sh b/tests/len2elen.sh deleted file mode 100755 index 86f2119..0000000 --- a/tests/len2elen.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -eu -# -# Check plaintext file name length -> encrypted file name length relation -# -# Part of the gocryptfs test suite -# https://nuetzlich.net/gocryptfs/ - -NAME="x" -LEN=1 - -if [[ ! -f a/gocryptfs.conf ]] ; then - echo "fatal: must have gocryptfs dir 'a' mounted at 'b'" - exit 1 -fi -if ! mountpoint b > /dev/null ; then - echo "fatal: must have gocryptfs dir 'a' mounted at 'b'" - exit 1 -fi - -rm -f b/* - -while [[ $LEN -le 255 ]]; do - touch b/$NAME || break - ELEN=$(ls a | wc -L) - echo $LEN $ELEN - rm b/$NAME - NAME="${NAME}x" - LEN=${#NAME} -done diff --git a/tests/matrix/atime_darwin.go b/tests/matrix/atime_darwin.go deleted file mode 100644 index 5f89c69..0000000 --- a/tests/matrix/atime_darwin.go +++ /dev/null @@ -1,9 +0,0 @@ -package matrix - -import ( - "syscall" -) - -func extractAtimeMtime(st syscall.Stat_t) [2]syscall.Timespec { - return [2]syscall.Timespec{st.Atimespec, st.Mtimespec} -} diff --git a/tests/matrix/atime_linux.go b/tests/matrix/atime_linux.go deleted file mode 100644 index fb7b94f..0000000 --- a/tests/matrix/atime_linux.go +++ /dev/null @@ -1,9 +0,0 @@ -package matrix - -import ( - "syscall" -) - -func extractAtimeMtime(st syscall.Stat_t) [2]syscall.Timespec { - return [2]syscall.Timespec{st.Atim, st.Mtim} -} diff --git a/tests/matrix/concurrency_test.go b/tests/matrix/concurrency_test.go deleted file mode 100644 index 24d4578..0000000 --- a/tests/matrix/concurrency_test.go +++ /dev/null @@ -1,186 +0,0 @@ -package matrix - -import ( - "bytes" - "io" - "log" - "os" - "sync" - "syscall" - "testing" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -// https://github.com/rfjakob/gocryptfs/issues/363 -// -// Note: this test calls log.Fatal() instead of t.Fatal() because apparently, -// calling t.Fatal() from a goroutine hangs the test. -func TestConcurrentReadWrite(t *testing.T) { - var wg sync.WaitGroup - fn := test_helpers.DefaultPlainDir + "/TestConcurrentReadWrite" - if f, err := os.Create(fn); err != nil { - t.Fatal(err) - } else { - f.Close() - } - buf := make([]byte, 100) - content := []byte("1234567890") - threads := 10 - loops := 30 - for i := 0; i < threads; i++ { - // Reader thread - wg.Add(1) - go func() { - fRd, err := os.Open(fn) - if err != nil { - log.Fatal(err) - } - for j := 0; j < loops; j++ { - n, err := fRd.ReadAt(buf, 0) - if err != nil && err != io.EOF { - log.Fatal(err) - } - if n != 0 && n != 10 { - log.Fatalf("strange read length: %d", n) - } - } - fRd.Close() - wg.Done() - }() - - // Writer thread - wg.Add(1) - go func() { - fWr, err := os.OpenFile(fn, os.O_RDWR, 0700) - if err != nil { - log.Fatal(err) - } - for j := 0; j < loops; j++ { - err = fWr.Truncate(0) - if err != nil { - log.Fatal(err) - } - _, err = fWr.WriteAt(content, 0) - if err != nil { - log.Fatal(err) - } - } - fWr.Close() - wg.Done() - }() - } - wg.Wait() -} - -// https://github.com/rfjakob/gocryptfs/issues/363 -// -// Note: this test calls log.Fatal() instead of t.Fatal() because apparently, -// calling t.Fatal() from a goroutine hangs the test. -func TestConcurrentReadCreate(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestConcurrentReadCreate" - content := []byte("1234567890") - loops := 100 - var wg sync.WaitGroup - // "Create()" thread - wg.Add(1) - go func() { - for i := 0; i < loops; i++ { - f, err := os.Create(fn) - if err != nil { - log.Fatal(err) - } - _, err = f.Write(content) - if err != nil { - log.Fatal(err) - } - f.Close() - syscall.Unlink(fn) - } - wg.Done() - }() - // "Reader" thread - wg.Add(1) - go func() { - buf0 := make([]byte, 100) - for i := 0; i < loops; i++ { - f, err := os.Open(fn) - if err != nil { - i++ - continue - } - n, err := f.Read(buf0) - if err == io.EOF { - i++ - continue - } - if err != nil { - log.Fatal(err) - } - buf := buf0[:n] - if bytes.Compare(buf, content) != 0 { - log.Fatal("content mismatch") - } - f.Close() - } - wg.Done() - }() - wg.Wait() -} - -// TestInoReuse tries to uncover problems when a file gets replaced by -// a directory with the same inode number (and vice versa). -// -// So far, it only has triggered warnings like this -// -// go-fuse: warning: Inode.Path: inode i4201033 is orphaned, replacing segment with ".go-fuse.5577006791947779410/deleted" -// -// but none of the "blocked waiting for FORGET". -func TestInoReuse(t *testing.T) { - var wg sync.WaitGroup - fn := test_helpers.DefaultPlainDir + "/" + t.Name() - - wg.Add(1) - go func() { - for i := 0; i < 1000; i++ { - fd, err := syscall.Creat(fn, 0600) - if err == syscall.EISDIR { - continue - } - if err != nil { - t.Error(err) - break - } - var st syscall.Stat_t - syscall.Fstat(fd, &st) - if i%2 == 0 { - syscall.Close(fd) - syscall.Unlink(fn) - } else { - syscall.Unlink(fn) - syscall.Close(fd) - - } - } - wg.Done() - }() - - wg.Add(1) - go func() { - for i := 0; i < 1000; i++ { - err := syscall.Mkdir(fn, 0700) - if err == syscall.EEXIST { - continue - } - if err != nil { - t.Error(err) - break - } - var st syscall.Stat_t - syscall.Stat(fn, &st) - syscall.Rmdir(fn) - } - wg.Done() - }() - wg.Wait() -} diff --git a/tests/matrix/dir_test.go b/tests/matrix/dir_test.go deleted file mode 100644 index 2f7a034..0000000 --- a/tests/matrix/dir_test.go +++ /dev/null @@ -1,72 +0,0 @@ -package matrix - -import ( - "fmt" - "os" - "os/exec" - "syscall" - "testing" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -// Test Mkdir and Rmdir -func TestMkdirRmdir(t *testing.T) { - test_helpers.TestMkdirRmdir(t, test_helpers.DefaultPlainDir) -} - -// Overwrite an empty directory with another directory -func TestDirOverwrite(t *testing.T) { - dir1 := test_helpers.DefaultPlainDir + "/DirOverwrite1" - dir2 := test_helpers.DefaultPlainDir + "/DirOverwrite2" - err := os.Mkdir(dir1, 0777) - if err != nil { - t.Fatal(err) - } - err = os.Mkdir(dir2, 0777) - if err != nil { - t.Fatal(err) - } - err = syscall.Rename(dir1, dir2) - if err != nil { - t.Fatal(err) - } -} - -// Test that we can create and remove a directory regardless of the permission it has -// https://github.com/rfjakob/gocryptfs/issues/354 -func TestRmdirPerms(t *testing.T) { - for _, perm := range []uint32{0000, 0100, 0200, 0300, 0400, 0500, 0600, 0700} { - dir := fmt.Sprintf("TestRmdir%#o", perm) - path := test_helpers.DefaultPlainDir + "/" + dir - err := syscall.Mkdir(path, perm) - if err != nil { - t.Fatalf("Mkdir %q: %v", dir, err) - } - err = syscall.Rmdir(path) - if err != nil { - t.Fatalf("Rmdir %q: %v", dir, err) - } - } -} - -// TestHaveDotdot checks that we have "." and ".." in a directory. -// (gocryptfs v2.0-beta1 did not!) -func TestHaveDotdot(t *testing.T) { - dir1 := test_helpers.DefaultPlainDir + "/TestHaveDotdot" - err := os.Mkdir(dir1, 0700) - if err != nil { - t.Fatal(err) - } - // All Go readdir functions filter out "." and "..". - // Fall back to "ls -a" which does not. - out, err := exec.Command("ls", "-a", dir1).CombinedOutput() - if err != nil { - t.Fatal(err) - } - have := string(out) - want := ".\n..\n" - if have != want { - t.Errorf("have=%q want=%q", have, want) - } -} diff --git a/tests/matrix/fallocate_test.go b/tests/matrix/fallocate_test.go deleted file mode 100644 index dde0685..0000000 --- a/tests/matrix/fallocate_test.go +++ /dev/null @@ -1,175 +0,0 @@ -package matrix - -import ( - "os" - "runtime" - "syscall" - "testing" - - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -const ( - // From man statfs - TMPFS_MAGIC = 0x01021994 - EXT4_SUPER_MAGIC = 0xef53 -) - -// isWellKnownFS decides if the backing filesystem is well-known. -// The expected allocated sizes are only valid on tmpfs and ext4. btrfs -// gives different results, but that's not an error. -func isWellKnownFS(fn string) bool { - var fs syscall.Statfs_t - err := syscall.Statfs(fn, &fs) - if err != nil { - panic(err) - } - if fs.Type == EXT4_SUPER_MAGIC || fs.Type == TMPFS_MAGIC { - return true - } - return false -} - -const FALLOC_DEFAULT = 0x00 -const FALLOC_FL_KEEP_SIZE = 0x01 - -func TestFallocate(t *testing.T) { - if runtime.GOOS == "darwin" { - t.Skipf("OSX does not support fallocate") - } - fn := test_helpers.DefaultPlainDir + "/fallocate" - file, err := os.Create(fn) - if err != nil { - t.FailNow() - } - defer file.Close() - wellKnown := isWellKnownFS(test_helpers.DefaultCipherDir) - fd := int(file.Fd()) - nBytes := test_helpers.Du(t, fd) - if nBytes != 0 { - t.Fatalf("Empty file has %d bytes", nBytes) - } - // Allocate 30 bytes, keep size - // gocryptfs || (0 blocks) - // ext4 | d | (1 block) - // ^ d = data block - err = syscallcompat.Fallocate(fd, FALLOC_FL_KEEP_SIZE, 0, 30) - if err != nil { - t.Error(err) - } - var want int64 - nBytes = test_helpers.Du(t, fd) - want = 4096 - if nBytes != want { - t.Errorf("Expected %d allocated bytes, have %d", want, nBytes) - } - test_helpers.VerifySize(t, fn, 0) - // Three ciphertext blocks. The middle one should be a file hole. - // gocryptfs | h | h | d| (1 block) - // ext4 | d | h | d | (2 blocks) - // ^ h = file hole - // (Note that gocryptfs blocks are slightly bigger than the ext4 blocks, - // but the last one is partial) - err = file.Truncate(9000) - if err != nil { - t.Fatal(err) - } - nBytes = test_helpers.Du(t, fd) - want = 2 * 4096 - if wellKnown && nBytes != want { - t.Errorf("Expected %d allocated bytes, have %d", want, nBytes) - } - if md5 := test_helpers.Md5fn(fn); md5 != "5420afa22f6423a9f59e669540656bb4" { - t.Errorf("Wrong md5 %s", md5) - } - // Allocate the whole file space - // gocryptfs | h | h | d| (1 block) - // ext4 | d | d | d | (3 blocks - err = syscallcompat.Fallocate(fd, FALLOC_DEFAULT, 0, 9000) - if err != nil { - t.Fatal(err) - } - nBytes = test_helpers.Du(t, fd) - want = 3 * 4096 - if nBytes != want { - t.Errorf("Expected %d allocated bytes, have %d", want, nBytes) - } - // Neither apparent size nor content should have changed - test_helpers.VerifySize(t, fn, 9000) - if md5 := test_helpers.Md5fn(fn); md5 != "5420afa22f6423a9f59e669540656bb4" { - t.Errorf("Wrong md5 %s", md5) - } - - // Partial block on the end. The first ext4 block is dirtied by the header. - // gocryptfs | h | h | d| (1 block) - // ext4 | d | h | d | (2 blocks) - file.Truncate(0) - file.Truncate(9000) - nBytes = test_helpers.Du(t, fd) - want = 2 * 4096 - if wellKnown && nBytes != want { - t.Errorf("Expected %d allocated bytes, have %d", want, nBytes) - } - // Allocate 10 bytes in the second block - // gocryptfs | h | h | d| (1 block) - // ext4 | d | d | d | (3 blocks) - syscallcompat.Fallocate(fd, FALLOC_DEFAULT, 5000, 10) - nBytes = test_helpers.Du(t, fd) - want = 3 * 4096 - if wellKnown && nBytes != want { - t.Errorf("Expected %d allocated bytes, have %d", want, nBytes) - } - // Neither apparent size nor content should have changed - test_helpers.VerifySize(t, fn, 9000) - if md5 := test_helpers.Md5fn(fn); md5 != "5420afa22f6423a9f59e669540656bb4" { - t.Errorf("Wrong md5 %s", md5) - } - // Grow the file to 4 blocks - // gocryptfs | h | h | d |d| (2 blocks) - // ext4 | d | d | d | d | (4 blocks) - syscallcompat.Fallocate(fd, FALLOC_DEFAULT, 15000, 10) - nBytes = test_helpers.Du(t, fd) - want = 4 * 4096 - if wellKnown && nBytes != want { - t.Errorf("Expected %d allocated bytes, have %d", want, nBytes) - } - test_helpers.VerifySize(t, fn, 15010) - if md5 := test_helpers.Md5fn(fn); md5 != "c4c44c7a41ab7798a79d093eb44f99fc" { - t.Errorf("Wrong md5 %s", md5) - } - // Shrinking a file using fallocate should have no effect - for _, off := range []int64{0, 10, 2000, 5000} { - for _, sz := range []int64{0, 1, 42, 6000} { - syscallcompat.Fallocate(fd, FALLOC_DEFAULT, off, sz) - test_helpers.VerifySize(t, fn, 15010) - if md5 := test_helpers.Md5fn(fn); md5 != "c4c44c7a41ab7798a79d093eb44f99fc" { - t.Errorf("Wrong md5 %s", md5) - } - } - } - // We used to allocate 18 bytes too much: - // https://github.com/rfjakob/gocryptfs/issues/311 - // - // 8110 bytes of plaintext should get us exactly 8192 bytes of ciphertext. - err = file.Truncate(0) - if err != nil { - t.Fatal(err) - } - err = syscallcompat.Fallocate(fd, FALLOC_DEFAULT, 0, 8110) - if err != nil { - t.Fatal(err) - } - nBytes = test_helpers.Du(t, fd) - want = 8192 - if nBytes != want { - t.Errorf("Expected %d allocated bytes, have %d", want, nBytes) - } - // Cleanup - syscall.Unlink(fn) - if !wellKnown { - // Even though most tests have been executed still, inform the user - // that some were disabled - t.Skipf("backing fs is not ext4 or tmpfs, skipped some disk-usage checks\n") - } -} diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go deleted file mode 100644 index 6622213..0000000 --- a/tests/matrix/matrix_test.go +++ /dev/null @@ -1,903 +0,0 @@ -// Tests run for (almost all) combinations of openssl, aessiv, plaintextnames. -package matrix - -// File reading, writing, modification, truncate -// -// Runs everything four times, for all combinations of -// "-plaintextnames" and "-openssl". -// -// Test Matrix: -// openssl=true openssl=false -// plaintextnames=false X X -// plaintextnames=true X X - -import ( - "bytes" - "flag" - "fmt" - "io/ioutil" - "math/rand" - "os" - "os/exec" - "path/filepath" - "runtime" - "sync" - "syscall" - "testing" - - "golang.org/x/sys/unix" - - "github.com/rfjakob/gocryptfs/internal/stupidgcm" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -// Several tests need to be aware if plaintextnames is active or not, so make this -// a global variable -var testcase testcaseMatrix - -type testcaseMatrix struct { - plaintextnames bool - openssl string - aessiv bool - raw64 bool - extraArgs []string -} - -var matrix = []testcaseMatrix{ - // Normal - {false, "auto", false, false, nil}, - {false, "true", false, false, nil}, - {false, "false", false, false, nil}, - // Plaintextnames - {true, "true", false, false, nil}, - {true, "false", false, false, nil}, - // AES-SIV (does not use openssl, no need to test permutations) - {false, "auto", true, false, nil}, - {true, "auto", true, false, nil}, - // Raw64 - {false, "auto", false, true, nil}, - // -serialize_reads - {false, "auto", false, false, []string{"-serialize_reads"}}, - {false, "auto", false, false, []string{"-sharedstorage"}}, -} - -// This is the entry point for the tests -func TestMain(m *testing.M) { - // Make "testing.Verbose()" return the correct value - flag.Parse() - for _, testcase = range matrix { - if testcase.openssl == "true" && stupidgcm.BuiltWithoutOpenssl { - continue - } - if testing.Verbose() { - fmt.Printf("matrix: testcase = %#v\n", testcase) - } - test_helpers.ResetTmpDir(!testcase.plaintextnames) - opts := []string{"-zerokey"} - //opts = append(opts, "-fusedebug") - opts = append(opts, fmt.Sprintf("-openssl=%v", testcase.openssl)) - opts = append(opts, fmt.Sprintf("-plaintextnames=%v", testcase.plaintextnames)) - opts = append(opts, fmt.Sprintf("-aessiv=%v", testcase.aessiv)) - opts = append(opts, fmt.Sprintf("-raw64=%v", testcase.raw64)) - opts = append(opts, testcase.extraArgs...) - test_helpers.MountOrExit(test_helpers.DefaultCipherDir, test_helpers.DefaultPlainDir, opts...) - before := test_helpers.ListFds(0, test_helpers.TmpDir) - r := m.Run() - // Catch fd leaks in the tests. NOTE: this does NOT catch leaks in - // the gocryptfs FUSE process, but only in the tests that access it! - // All fds that point outside TmpDir are not interesting (the Go test - // infrastucture creates temporary log files we don't care about). - after := test_helpers.ListFds(0, test_helpers.TmpDir) - if len(before) != len(after) { - fmt.Printf("fd leak in test process? before, after:\n%v\n%v\n", before, after) - os.Exit(1) - } - test_helpers.UnmountPanic(test_helpers.DefaultPlainDir) - if r != 0 { - os.Exit(r) - } - } - os.Exit(0) -} - -// Write `n` random bytes to filename `fn`, read again, compare hash -func testWriteN(t *testing.T, fn string, n int) string { - file, err := os.Create(test_helpers.DefaultPlainDir + "/" + fn) - if err != nil { - t.Fatal(err) - } - - d := make([]byte, n) - for i := range d { - // Fill with pattern - d[i] = byte(rand.Int()) - } - _, err = file.Write(d) - if err != nil { - t.Fatal(err) - } - err = file.Close() - if err != nil { - t.Fatal(err) - } - - test_helpers.VerifySize(t, test_helpers.DefaultPlainDir+"/"+fn, n) - - hashWant := test_helpers.Md5hex(d) - - hashActual := test_helpers.Md5fn(test_helpers.DefaultPlainDir + "/" + fn) - - if hashActual != hashWant { - t.Errorf("Wrong content, hashWant=%s hashActual=%s", hashWant, hashActual) - } - - return hashActual -} - -func TestWrite10(t *testing.T) { - testWriteN(t, "10", 10) -} - -func TestWrite100(t *testing.T) { - testWriteN(t, "100", 100) -} - -func TestWrite1M(t *testing.T) { - testWriteN(t, "1M", 1024*1024) -} - -func TestWrite100x100(t *testing.T) { - hashWant := testWriteN(t, "100x100", 100) - // Read and check 100 times to catch race conditions - var i int - for i = 0; i < 100; i++ { - hashActual := test_helpers.Md5fn(test_helpers.DefaultPlainDir + "/100x100") - if hashActual != hashWant { - fmt.Printf("Read corruption in loop #%d: have=%s want=%s\n", i, hashActual, hashWant) - t.FailNow() - } else { - //fmt.Print(".") - } - } -} - -func TestWrite10Tight(t *testing.T) { - path := test_helpers.DefaultPlainDir + "/TestWrite10Tight" - content := make([]byte, 10) - buf := make([]byte, 100) - for i := 0; i < 100; i++ { - file, err := os.Create(path) - if err != nil { - t.Fatal(err) - } - _, err = file.Write(content) - if err != nil { - t.Fatal(err) - } - err = file.Close() - if err != nil { - t.Fatal(err) - } - file, err = os.Open(path) - if err != nil { - t.Fatal(err) - } - n, err := file.Read(buf) - if err != nil { - t.Fatal(err) - } - if n != 10 { - t.Fatalf("want 10 bytes, got %d", n) - } - err = file.Close() - if err != nil { - t.Fatal(err) - } - err = os.Remove(path) - if err != nil { - t.Fatal() - } - } -} - -// Hint for calculating reference md5sums: -// dd if=/dev/zero count=1 bs=XYZ | md5sum -func TestTruncate(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/truncate" - file, err := os.Create(fn) - if err != nil { - t.FailNow() - } - defer file.Close() - // Grow to two blocks - file.Truncate(7000) - test_helpers.VerifySize(t, fn, 7000) - if md5 := test_helpers.Md5fn(fn); md5 != "95d4ec7038e3e4fdbd5f15c34c3f0b34" { - t.Errorf("Wrong md5 %s", md5) - } - // Shrink - needs RMW - file.Truncate(6999) - test_helpers.VerifySize(t, fn, 6999) - if md5 := test_helpers.Md5fn(fn); md5 != "35fd15873ec6c35380064a41b9b9683b" { - t.Errorf("Wrong md5 %s", md5) - } - // Shrink to one partial block - file.Truncate(465) - test_helpers.VerifySize(t, fn, 465) - if md5 := test_helpers.Md5fn(fn); md5 != "a1534d6e98a6b21386456a8f66c55260" { - t.Errorf("Wrong md5 %s", md5) - } - // Grow to exactly one block - file.Truncate(4096) - test_helpers.VerifySize(t, fn, 4096) - if md5 := test_helpers.Md5fn(fn); md5 != "620f0b67a91f7f74151bc5be745b7110" { - t.Errorf("Wrong md5 %s", md5) - } - // Truncate to zero - file.Truncate(0) - test_helpers.VerifySize(t, fn, 0) - // Grow to 10MB (creates file holes) - var sz int - sz = 10 * 1024 * 1024 - file.Truncate(int64(sz)) - test_helpers.VerifySize(t, fn, sz) - if md5 := test_helpers.Md5fn(fn); md5 != "f1c9645dbc14efddc7d8a322685f26eb" { - t.Errorf("Wrong md5 %s", md5) - } - // Grow to 10MB + 100B (partial block on the end) - sz = 10*1024*1024 + 100 - file.Truncate(int64(sz)) - test_helpers.VerifySize(t, fn, sz) - if md5 := test_helpers.Md5fn(fn); md5 != "c23ea79b857b91a7ff07c6ecf185f1ca" { - t.Errorf("Wrong md5 %s", md5) - } - // Grow to 20MB (creates file holes, partial block on the front) - sz = 20 * 1024 * 1024 - file.Truncate(int64(sz)) - test_helpers.VerifySize(t, fn, sz) - if md5 := test_helpers.Md5fn(fn); md5 != "8f4e33f3dc3e414ff94e5fb6905cba8c" { - t.Errorf("Wrong md5 %s", md5) - } -} - -func TestAppend(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/append" - file, err := os.Create(fn) - if err != nil { - t.FailNow() - } - defer file.Close() - data := []byte("testdata123456789") // length 17 - var buf bytes.Buffer - var hashWant string - for i := 0; i <= 500; i++ { - file.Write(data) - buf.Write(data) - hashWant = test_helpers.Md5hex(buf.Bytes()) - hashActual := test_helpers.Md5fn(fn) - if hashWant != hashActual { - t.FailNow() - } - } - - // Overwrite with the same data - // Hash must stay the same - file.Seek(0, 0) - for i := 0; i <= 500; i++ { - file.Write(data) - hashActual := test_helpers.Md5fn(fn) - if hashWant != hashActual { - t.FailNow() - } - } -} - -// Create a file with holes by writing to offset 0 (block #0) and -// offset 4096 (block #1). -func TestFileHoles(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/fileholes" - file, err := os.Create(fn) - if err != nil { - t.Errorf("file create failed") - } - defer file.Close() - foo := []byte("foo") - file.Write(foo) - file.WriteAt(foo, 4096) - _, err = ioutil.ReadFile(fn) - if err != nil { - t.Error(err) - } -} - -// sContains - does the slice of strings "haystack" contain "needle"? -func sContains(haystack []string, needle string) bool { - for _, element := range haystack { - if element == needle { - return true - } - } - return false -} - -func TestRmwRace(t *testing.T) { - - runtime.GOMAXPROCS(10) - - fn := test_helpers.DefaultPlainDir + "/rmwrace" - f1, err := os.Create(fn) - if err != nil { - t.Fatalf("file create failed") - } - defer f1.Close() - f2, err := os.Create(fn) - if err != nil { - t.Fatalf("file create failed") - } - defer f2.Close() - - oldBlock := bytes.Repeat([]byte("o"), 4096) - - newBlock := bytes.Repeat([]byte("n"), 4096) - - shortBlock := bytes.Repeat([]byte("s"), 16) - - mergedBlock := make([]byte, 4096) - copy(mergedBlock, newBlock) - copy(mergedBlock[4080:], shortBlock) - - goodMd5 := make(map[string]int) - - for i := 0; i < 1000; i++ { - // Reset to [ooooooooo] - _, err = f1.WriteAt(oldBlock, 0) - if err != nil { - t.Fatalf("Write failed") - } - - var wg sync.WaitGroup - wg.Add(2) - - // Write to the end of the file, [....ssss] - go func() { - f1.WriteAt(shortBlock, 4080) - wg.Done() - }() - - // Overwrite to [nnnnnnn] - go func() { - f2.WriteAt(newBlock, 0) - wg.Done() - }() - - wg.Wait() - - // The file should be either: - // [nnnnnnnnnn] (md5: 6c1660fdabccd448d1359f27b3db3c99) or - // [nnnnnnssss] (md5: da885006a6a284530a427c73ce1e5c32) - // but it must not be - // [oooooossss] - - buf, _ := ioutil.ReadFile(fn) - m := test_helpers.Md5hex(buf) - goodMd5[m] = goodMd5[m] + 1 - - /* - if m == "6c1660fdabccd448d1359f27b3db3c99" { - fmt.Println(hex.Dump(buf)) - t.FailNow() - } - */ - } -} - -// With "--plaintextnames", the name "/gocryptfs.conf" is reserved. -// Otherwise there should be no restrictions. -func TestFiltered(t *testing.T) { - filteredFile := test_helpers.DefaultPlainDir + "/gocryptfs.conf" - file, err := os.Create(filteredFile) - if testcase.plaintextnames && err == nil { - t.Errorf("should have failed but didn't") - } else if !testcase.plaintextnames && err != nil { - t.Error(err) - } - file.Close() - - err = os.Remove(filteredFile) - if testcase.plaintextnames && err == nil { - t.Errorf("should have failed but didn't") - } else if !testcase.plaintextnames && err != nil { - t.Error(err) - } -} - -func TestFilenameEncryption(t *testing.T) { - file, err := os.Create(test_helpers.DefaultPlainDir + "/TestFilenameEncryption.txt") - file.Close() - if err != nil { - t.Fatal(err) - } - _, err = os.Stat(test_helpers.DefaultCipherDir + "/TestFilenameEncryption.txt") - if testcase.plaintextnames && err != nil { - t.Errorf("plaintextnames not working: %v", err) - } else if !testcase.plaintextnames && err == nil { - t.Errorf("file name encryption not working") - } -} - -// Test Rename -func TestRename(t *testing.T) { - test_helpers.TestRename(t, test_helpers.DefaultPlainDir) -} - -// Test that names of all lengths work -func TestNameLengths(t *testing.T) { - f, err := os.Open(test_helpers.DefaultPlainDir) - if err != nil { - t.Fatal(err) - } - entries, err := f.Readdirnames(0) - if err != nil { - t.Fatal(err) - } - f.Close() - cnt1 := len(entries) - - wd := test_helpers.DefaultPlainDir + "/" - name := "x" - for len(name) < 2000 { - f, err := os.Create(wd + name + "x") - if err != nil { - break - } - name = name + "x" - f.Close() - f, err = os.Open(test_helpers.DefaultPlainDir) - if err != nil { - t.Fatal(err) - } - // In v1.7-rc2, we had a bug that allowed creation of too-long names. - // This threw errors in like this in READDIR: - // - // OpenDir ".": invalid entry "gocryptfs.longname.wrE-izsR9ciEkP7JSCFDrk_d_Nj4mQo1dGY6hjuixAU=": - // Could not read .name: ReadLongName: size=345 > limit=344 - // - entries, err = f.Readdirnames(0) - if err != nil { - t.Fatal(err) - } - f.Close() - cnt2 := len(entries) - if cnt2 != cnt1+1 { - t.Fatalf("len=%d: expected %d dir entries, have %d: %v", len(name), cnt1+1, cnt2, entries) - } - err = syscall.Unlink(wd + name) - if err != nil { - t.Fatal(err) - } - } - if len(name) != 255 { - t.Errorf("maxlen=%d", len(name)) - } -} - -func TestLongNames(t *testing.T) { - fi, err := ioutil.ReadDir(test_helpers.DefaultCipherDir) - if err != nil { - t.Fatal(err) - } - cnt1 := len(fi) - wd := test_helpers.DefaultPlainDir + "/" - // Create file with long name - n255x := string(bytes.Repeat([]byte("x"), 255)) - f, err := os.Create(wd + n255x) - if err != nil { - t.Fatalf("Could not create n255x: %v", err) - } - f.Close() - if !test_helpers.VerifyExistence(t, wd+n255x) { - t.Errorf("n255x is not in directory listing") - } - // Rename long to long (target does not exist) - n255y := string(bytes.Repeat([]byte("y"), 255)) - err = os.Rename(wd+n255x, wd+n255y) - if err != nil { - t.Fatalf("Could not rename n255x to n255y: %v", err) - } - if !test_helpers.VerifyExistence(t, wd+n255y) { - t.Errorf("n255y is not in directory listing") - } - // Rename long to long (target exists) - f, err = os.Create(wd + n255x) - if err != nil { - t.Fatalf("Could not create n255x: %v", err) - } - f.Close() - err = os.Rename(wd+n255x, wd+n255y) - if err != nil { - t.Fatalf("Could not rename n255x to n255y: %v", err) - } - if !test_helpers.VerifyExistence(t, wd+n255y) { - t.Errorf("n255y is not in directory listing") - } - // Rename long to short (target does not exist) - err = os.Rename(wd+n255y, wd+"short") - if err != nil { - t.Fatalf("Could not rename n255y to short: %v", err) - } - if !test_helpers.VerifyExistence(t, wd+"short") { - t.Errorf("short is not in directory listing") - } - // Rename long to short (target exists) - f, err = os.Create(wd + n255y) - if err != nil { - t.Fatalf("Could not create n255y: %v", err) - } - f.Close() - err = os.Rename(wd+n255y, wd+"short") - if err != nil { - t.Fatalf("Could not rename n255y to short: %v", err) - } - if !test_helpers.VerifyExistence(t, wd+"short") { - t.Errorf("short is not in directory listing") - } - // Rename short to long (target does not exist) - err = os.Rename(wd+"short", wd+n255x) - if err != nil { - t.Fatalf("Could not rename short to n255x: %v", err) - } - if !test_helpers.VerifyExistence(t, wd+n255x) { - t.Errorf("255x is not in directory listing II") - } - // Rename short to long (target exists) - f, err = os.Create(wd + "short") - if err != nil { - t.Fatalf("Could not create short: %v", err) - } - f.Close() - err = os.Rename(wd+"short", wd+n255x) - if err != nil { - t.Fatalf("Could not rename short to n255x: %v", err) - } - if !test_helpers.VerifyExistence(t, wd+n255x) { - t.Errorf("n255x is not in directory listing") - } - // Unlink - err = syscall.Unlink(wd + n255x) - if err != nil { - t.Fatalf("Could not unlink n255x: %v", err) - } - if test_helpers.VerifyExistence(t, wd+n255x) { - t.Errorf("n255x still there after unlink") - } - // Long symlink - n255s := string(bytes.Repeat([]byte("s"), 255)) - err = os.Symlink("/", wd+n255s) - if err != nil { - t.Fatal(err) - } - if !test_helpers.VerifyExistence(t, wd+n255s) { - t.Errorf("n255s is not in directory listing") - } - err = syscall.Unlink(wd + n255s) - if err != nil { - t.Error(err) - } - // Long dir - n255d := string(bytes.Repeat([]byte("d"), 255)) - err = os.Mkdir(wd+n255d, 0777) - if err != nil { - t.Fatal(err) - } - err = syscall.Rmdir(wd + n255d) - if err != nil { - t.Error(err) - } - // Check for orphaned files - fi, err = ioutil.ReadDir(test_helpers.DefaultCipherDir) - if err != nil { - t.Fatal(err) - } - cnt2 := len(fi) - if cnt1 != cnt2 { - t.Errorf("Leftover files, cnt1=%d cnt2=%d", cnt1, cnt2) - } -} - -// Create hard link with long name. -// This was broken up to v1.2. -func TestLongLink(t *testing.T) { - wd := test_helpers.DefaultPlainDir + "/" - target := wd + "TestLongLink.target" - f, err := os.Create(target) - if err != nil { - t.Fatalf("%v", err) - } - f.Close() - l255 := string(bytes.Repeat([]byte("l"), 255)) - err = os.Link(target, wd+l255) - if err != nil { - t.Error(err) - } -} - -func TestLchown(t *testing.T) { - name := test_helpers.DefaultPlainDir + "/symlink" - err := os.Symlink("/target/does/not/exist", name) - if err != nil { - t.Fatal(err) - } - err = os.Chown(name, os.Getuid(), os.Getgid()) - if err == nil { - t.Error("Chown on dangling symlink should fail") - } - err = os.Lchown(name, os.Getuid(), os.Getgid()) - if err != nil { - t.Error(err) - } -} - -// Set nanoseconds by path, symlink -func TestUtimesNanoSymlink(t *testing.T) { - if runtime.GOOS == "darwin" { - t.Skipf("MacOS \"touch\" does not support \"--no-dereference\"") - } - path := test_helpers.DefaultPlainDir + "/utimesnano_symlink" - err := os.Symlink("/some/nonexisting/file", path) - if err != nil { - t.Fatal(err) - } - // syscall.UtimesNano does not provide a way to pass AT_SYMLINK_NOFOLLOW, - // so we call the external utility "touch", which does. - cmd := exec.Command("touch", "--no-dereference", path) - cmd.Stderr = os.Stderr - cmd.Stdout = os.Stdout - err = cmd.Run() - if err != nil { - t.Error(err) - } -} - -type utimesTestcaseStruct struct { - // Input atime and mtime - in [2]syscall.Timespec - // Expected output atime and mtime - out [2]syscall.Timespec -} - -// compareTimespec return true if the two passed Timespec are identical. -func compareTimespec(want syscall.Timespec, actual syscall.Timespec) bool { - if want.Sec != actual.Sec { - return false - } - if want.Nsec != actual.Nsec { - return false - } - return true -} - -const _UTIME_OMIT = ((1 << 30) - 2) - -// doTestUtimesNano verifies that setting nanosecond-precision times on "path" -// works correctly. Pass "/proc/self/fd/N" to test a file descriptor. -func doTestUtimesNano(t *testing.T, path string) { - utimeTestcases := []utimesTestcaseStruct{ - { - in: [2]syscall.Timespec{{Sec: 50, Nsec: 0}, {Sec: 51, Nsec: 0}}, - out: [2]syscall.Timespec{{Sec: 50, Nsec: 0}, {Sec: 51, Nsec: 0}}, - }, - { - in: [2]syscall.Timespec{{Sec: 1, Nsec: 2}, {Sec: 3, Nsec: 4}}, - out: [2]syscall.Timespec{{Sec: 1, Nsec: 2}, {Sec: 3, Nsec: 4}}, - }, - { - in: [2]syscall.Timespec{{Sec: 7, Nsec: 8}, {Sec: 99, Nsec: _UTIME_OMIT}}, - out: [2]syscall.Timespec{{Sec: 7, Nsec: 8}, {Sec: 3, Nsec: 4}}, - }, - { - in: [2]syscall.Timespec{{Sec: 99, Nsec: _UTIME_OMIT}, {Sec: 5, Nsec: 6}}, - out: [2]syscall.Timespec{{Sec: 7, Nsec: 8}, {Sec: 5, Nsec: 6}}, - }, - } - if runtime.GOOS == "darwin" { - // darwin neither supports UTIME_OMIT nor nanoseconds (!?) - utimeTestcases = utimeTestcases[:1] - } - for i, tc := range utimeTestcases { - err := syscall.UtimesNano(path, tc.in[:]) - if err != nil { - t.Fatalf("%q: %v", path, err) - } - var st syscall.Stat_t - err = syscall.Stat(path, &st) - if err != nil { - t.Fatal(err) - } - want := tc.out - have := extractAtimeMtime(st) - if !compareTimespec(want[0], have[0]) { - t.Errorf("Testcase %d: atime: want=%+v, have=%+v", i, want[0], have[0]) - } - if !compareTimespec(want[1], have[1]) { - t.Errorf("Testcase %d: mtime: want=%+v, have=%+v", i, want[1], have[1]) - } - } -} - -// Set nanoseconds by path, normal file -func TestUtimesNano(t *testing.T) { - path := test_helpers.DefaultPlainDir + "/utimesnano" - err := ioutil.WriteFile(path, []byte("foobar"), 0600) - if err != nil { - t.Fatal(err) - } - doTestUtimesNano(t, path) -} - -// Set nanoseconds by fd -func TestUtimesNanoFd(t *testing.T) { - if runtime.GOOS == "darwin" { - t.Skipf("MacOS does not have /proc") - } - path := test_helpers.DefaultPlainDir + "/utimesnanofd" - f, err := os.Create(path) - if err != nil { - t.Fatal(err) - } - defer f.Close() - procPath := fmt.Sprintf("/proc/self/fd/%d", f.Fd()) - doTestUtimesNano(t, procPath) -} - -// Make sure the Mknod call works by creating a fifo (named pipe) -func TestMkfifo(t *testing.T) { - path := test_helpers.DefaultPlainDir + "/fifo1" - err := syscall.Mkfifo(path, 0700) - if err != nil { - t.Fatal(err) - } - path = test_helpers.DefaultPlainDir + "/gocryptfs.longname.XXX" - err = syscall.Mkfifo(path, 0700) - if err != nil { - t.Fatal(err) - } - err = os.Remove(path) - if err != nil { - t.Fatal(err) - } -} - -// TestMagicNames verifies that "magic" names are handled correctly -// https://github.com/rfjakob/gocryptfs/issues/174 -func TestMagicNames(t *testing.T) { - names := []string{"warmup1", "warmup2", "gocryptfs.longname.QhUr5d9FHerwEs--muUs6_80cy6JRp89c1otLwp92Cs", "gocryptfs.diriv"} - for _, n := range names { - t.Logf("Testing n=%q", n) - p := test_helpers.DefaultPlainDir + "/" + n - // Create file - err := ioutil.WriteFile(p, []byte("xxxxxxx"), 0200) - if err != nil { - t.Fatalf("creating file %q failed: %v", n, err) - } - // Rename magic to normal - err = os.Rename(p, test_helpers.DefaultPlainDir+"/x") - if err != nil { - t.Fatalf("rename 1 failed: %v", err) - } - // Rename normal to magic - err = os.Rename(test_helpers.DefaultPlainDir+"/x", p) - if err != nil { - t.Fatalf("rename 2 failed: %v", err) - } - // Unlink - err = syscall.Unlink(p) - if err != nil { - t.Fatal(err) - } - // Mkdir - err = os.Mkdir(p, 0700) - if err != nil { - t.Fatal(err) - } - // Rmdir - err = syscall.Rmdir(p) - if err != nil { - t.Fatal(err) - } - // Symlink - err = syscall.Symlink("xxxyyyyzzz", p) - if err != nil { - t.Fatal(err) - } - syscall.Unlink(p) - // Link - target := test_helpers.DefaultPlainDir + "/linktarget" - err = ioutil.WriteFile(target, []byte("yyyyy"), 0600) - if err != nil { - t.Fatal(err) - } - err = syscall.Link(target, p) - if err != nil { - t.Fatal(err) - } - } -} - -// Test that chmod works correctly -func TestChmod(t *testing.T) { - path := test_helpers.DefaultPlainDir + "/" + t.Name() - file, err := os.Create(path) - if err != nil { - t.Fatal(err) - } - file.Close() - modes := []os.FileMode{0777, 0707, 0606, 0666, 0444, 0000, 0111, 0123, 0321} - for _, modeWant := range modes { - fi, err := os.Stat(path) - if err != nil { - t.Fatal(err) - } - err = syscall.Chmod(path, uint32(modeWant)) - if err != nil { - t.Errorf("chmod %03o -> %03o failed: %v", fi.Mode(), modeWant, err) - continue - } - fi, err = os.Stat(path) - if err != nil { - t.Fatal(err) - } - modeHave := fi.Mode() - if modeHave != modeWant { - t.Errorf("modeHave %#o != modeWant %#o", modeHave, modeWant) - } - } -} - -// Test that access(2) works correctly -func TestAccess(t *testing.T) { - path := test_helpers.DefaultPlainDir + "/" + t.Name() - file, err := os.Create(path) - if err != nil { - t.Fatal(err) - } - defer file.Close() - - err = unix.Access(path, unix.F_OK) - if err != nil { - t.Error(err) - } - err = unix.Access(path, unix.R_OK) - if err != nil { - t.Error(err) - } - err = unix.Access(path, unix.X_OK) - if err == nil { - t.Error("X_OK should have failed") - } -} - -func TestStatfs(t *testing.T) { - var st syscall.Statfs_t - syscall.Statfs(test_helpers.DefaultPlainDir, &st) - if st.Bsize == 0 { - t.Errorf("statfs reports size zero: %#v", st) - } -} - -// gocryptfs 2.0 reported the ciphertext size on symlink creation, causing -// confusion: https://github.com/rfjakob/gocryptfs/issues/574 -func TestSymlinkSize(t *testing.T) { - p := filepath.Join(test_helpers.DefaultPlainDir, t.Name()) - // SYMLINK reports the size to the kernel - if err := syscall.Symlink("foo", p); err != nil { - t.Fatal(err) - } - // Kernel serves us this value from the attr cache - var st syscall.Stat_t - if err := syscall.Lstat(p, &st); err != nil { - t.Fatal(err) - } - if st.Size != 3 { - t.Errorf("wrong size: have %d, want %d", st.Size, 3) - } -} diff --git a/tests/maxlen.bash b/tests/maxlen.bash deleted file mode 100755 index fb133e0..0000000 --- a/tests/maxlen.bash +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -eu -# -# Find out the maximum supported filename length and print it. -# -# Part of the gocryptfs test suite -# https://nuetzlich.net/gocryptfs/ - -NAME="maxlen." -LEN=0 - -while [ $LEN -le 10000 ]; do - touch $NAME 2> /dev/null || break - rm $NAME - LEN=${#NAME} - NAME="${NAME}x" -done - -echo $LEN diff --git a/tests/plaintextnames/file_holes_test.go b/tests/plaintextnames/file_holes_test.go deleted file mode 100644 index 5de0152..0000000 --- a/tests/plaintextnames/file_holes_test.go +++ /dev/null @@ -1,153 +0,0 @@ -package plaintextnames - -import ( - "fmt" - "math/rand" - "os" - "os/exec" - "syscall" - "testing" - "time" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" - - "github.com/rfjakob/gocryptfs/contrib/findholes/holes" -) - -func findHolesPretty(t *testing.T, path string) string { - f, err := os.Open(path) - if err != nil { - t.Fatal(err) - } - defer f.Close() - - segments, err := holes.Find(int(f.Fd())) - if err != nil { - t.Fatal(err) - } - - return holes.PrettyPrint(segments) -} - -func doTestFileHoleCopy(t *testing.T, name string, writeOffsets []int64) { - n := "TestFileHoleCopy." + name - pPath := []string{pDir + "/" + n} - cPath := []string{cDir + "/" + n} - - os.Remove(pPath[0]) - holes.Create(pPath[0]) - - // expected md6 - md5 := test_helpers.Md5fn(pPath[0]) - - pSegments := []string{findHolesPretty(t, pPath[0])} - cSegments := []string{findHolesPretty(t, cPath[0])} - - // create 5 more copies - for i := 1; i < 5; i++ { - pPath = append(pPath, fmt.Sprintf("%s.%d", pPath[0], i)) - cPath = append(cPath, fmt.Sprintf("%s.%d", cPath[0], i)) - - out, err := exec.Command("cp", "--sparse=auto", pPath[i-1], pPath[i]).CombinedOutput() - if err != nil { - t.Fatal(string(out)) - } - - tmp := test_helpers.Md5fn(pPath[0]) - if tmp != md5 { - t.Errorf("pPath[%d]: wrong md5, have %s, want %s", i, tmp, md5) - } - - pSegments = append(pSegments, findHolesPretty(t, pPath[i])) - cSegments = append(cSegments, findHolesPretty(t, cPath[i])) - } - - // "cp --sparse=auto" checks of the file has fewer blocks on disk than it - // should have for its size. Only then it will try to create a sparse copy. - var st syscall.Stat_t - err := syscall.Stat(pPath[0], &st) - if err != nil { - t.Fatal(err) - } - // convert 512 byte blocks to 4k blocks - blocks4k := st.Blocks / 8 - // For more than a few fragments, ext4 allocates one extra block - blocks4k++ - if blocks4k >= (st.Size+4095)/4096 { - t.Logf("file will look non-sparse to cp, skipping segment check") - return - } - - // Check that size on disk stays the same across copies - var st0 syscall.Stat_t - if err := syscall.Stat(pPath[0], &st0); err != nil { - t.Fatal(err) - } - for i := range pSegments { - var st syscall.Stat_t - if err := syscall.Stat(pPath[i], &st); err != nil { - t.Fatal(err) - } - // Size on disk fluctuates by +-4kB due to different number of extents - // (looking at "filefrag -v", it seems like ext4 needs 4kB extra once - // you have >=4 extents) - if st.Blocks != st0.Blocks && st.Blocks != st0.Blocks-8 && st.Blocks != st0.Blocks+8 { - t.Errorf("size changed: st0.Blocks=%d st%d.Blocks=%d", st0.Blocks, i, st.Blocks) - } - } - - // Check that hole/data segments stays the same across copies - out := "" - same := true - for i := range pSegments { - out += fmt.Sprintf("pSegments[%d]:\n%s\n", i, pSegments[i]) - if i < len(pSegments)-1 { - if pSegments[i+1] != pSegments[i] { - same = false - t.Errorf("error: pSegments[%d] is different than pSegments[%d]!", i, i+1) - } - } - } - out += "------------------------------------\n" - for i := range cSegments { - out += fmt.Sprintf("cSegments[%d]:\n%s\n", i, cSegments[i]) - if i < len(pSegments)-1 { - if cSegments[i+1] != cSegments[i] { - same = false - t.Errorf("error: cSegments[%d] is different than cSegments[%d]!", i, i+1) - } - } - } - if !same { - t.Log(out) - } -} - -// TestFileHoleCopy creates a sparse times, copies it a few times, and check if -// the copies are the same (including the location of holes and data sections). -// -// The test runs with -plaintextnames because that makes it easier to manipulate -// cipherdir directly. -func TestFileHoleCopy(t *testing.T) { - // | hole | x | hole | x | hole | - // truncate -s 50000 foo && dd if=/dev/zero of=foo bs=1 seek=10000 count=1 conv=notrunc && dd if=/dev/zero of=foo bs=1 seek=30000 count=1 conv=notrunc - name := "c0" - c0 := []int64{10000, 30000} - if !t.Run("c0", func(t *testing.T) { doTestFileHoleCopy(t, name, c0) }) { - t.Log("aborting further subtests") - return - } - - rand.Seed(time.Now().UnixNano()) - for k := 0; k < 100; k++ { - c1 := make([]int64, 10) - for i := range c1 { - c1[i] = int64(rand.Int31n(60000)) - } - name := fmt.Sprintf("k%d", k) - if !t.Run(name, func(t *testing.T) { doTestFileHoleCopy(t, name, c1) }) { - t.Log("aborting further subtests") - return - } - } -} diff --git a/tests/plaintextnames/plaintextnames_test.go b/tests/plaintextnames/plaintextnames_test.go deleted file mode 100644 index e3cf953..0000000 --- a/tests/plaintextnames/plaintextnames_test.go +++ /dev/null @@ -1,127 +0,0 @@ -package plaintextnames - -// integration tests that target plaintextnames specifically - -import ( - "fmt" - "io/ioutil" - "os" - "syscall" - "testing" - - "github.com/rfjakob/gocryptfs/internal/configfile" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -var cDir string -var pDir string - -var testPw = []byte("test") - -// Create and mount "-plaintextnames" fs -func TestMain(m *testing.M) { - cDir = test_helpers.InitFS(nil, "-plaintextnames") - pDir = cDir + ".mnt" - test_helpers.MountOrExit(cDir, pDir, "-extpass", "echo test") - r := m.Run() - test_helpers.UnmountPanic(pDir) - os.Exit(r) -} - -// Only the PlaintextNames feature flag should be set -func TestFlags(t *testing.T) { - _, cf, err := configfile.LoadAndDecrypt(cDir+"/gocryptfs.conf", testPw) - if err != nil { - t.Fatal(err) - } - if !cf.IsFeatureFlagSet(configfile.FlagPlaintextNames) { - t.Error("PlaintextNames flag should be set but isn't") - } - if cf.IsFeatureFlagSet(configfile.FlagEMENames) || cf.IsFeatureFlagSet(configfile.FlagDirIV) { - t.Error("FlagEMENames and FlagDirIV should be not set") - } -} - -// gocryptfs.diriv should NOT be created -func TestDirIV(t *testing.T) { - _, err := os.Stat(cDir + "/gocryptfs.diriv") - if err == nil { - t.Errorf("gocryptfs.diriv should not be created in the top directory") - } - err = os.Mkdir(pDir+"/dir1", 0777) - if err != nil { - t.Error(err) - } - _, err = os.Stat(pDir + "/dir1/gocryptfs.diriv") - if err == nil { - t.Errorf("gocryptfs.diriv should not be created in a subdirectory") - } -} - -// With "-plaintextnames", the name "/gocryptfs.conf" is reserved, but everything -// else should work. -func TestFiltered(t *testing.T) { - filteredFile := pDir + "/gocryptfs.conf" - err := ioutil.WriteFile(filteredFile, []byte("foo"), 0777) - if err == nil { - t.Errorf("should have failed but didn't") - } - err = os.Remove(filteredFile) - if err == nil { - t.Errorf("should have failed but didn't") - } - err = ioutil.WriteFile(pDir+"/gocryptfs.diriv", []byte("foo"), 0777) - if err != nil { - t.Error(err) - } - subDir, err := ioutil.TempDir(pDir, "") - if err != nil { - t.Fatal(err) - } - fd, err := os.Create(subDir + "/gocryptfs.conf") - if err != nil { - t.Error(err) - } else { - fd.Close() - } -} - -// TestInoReuseEvil makes it appear that a directory and a file share the -// same inode number. -// Only works on filesystems that recycle inode numbers (ext4 does), -// and then the test causes a hang with these messages: -// -// go-fuse: blocked for 5 seconds waiting for FORGET on i4329366 -// go-fuse: blocked for 11 seconds waiting for FORGET on i4329366 -// go-fuse: blocked for 17 seconds waiting for FORGET on i4329366 -// [...] -// -// The test runs with -plaintextnames because that makes it easier to manipulate -// cipherdir directly. -func TestInoReuseEvil(t *testing.T) { - for i := 0; i < 2; i++ { - n := fmt.Sprintf("%s.%d", t.Name(), i) - pPath := pDir + "/" + n - cPath := cDir + "/" + n - if err := syscall.Mkdir(pPath, 0700); err != nil { - t.Fatal(err) - } - var st syscall.Stat_t - syscall.Stat(pPath, &st) - t.Logf("dir ino = %d", st.Ino) - // delete the dir "behind our back" - if err := syscall.Rmdir(cPath); err != nil { - t.Fatal(err) - } - // create a new file that will likely get the same inode number - pPath2 := pPath + "2" - fd, err := syscall.Creat(pPath2, 0600) - if err != nil { - t.Fatal(err) - } - defer syscall.Close(fd) - syscall.Fstat(fd, &st) - t.Logf("file ino = %d", st.Ino) - } -} diff --git a/tests/reverse/correctness_test.go b/tests/reverse/correctness_test.go deleted file mode 100644 index 9d7a1c8..0000000 --- a/tests/reverse/correctness_test.go +++ /dev/null @@ -1,297 +0,0 @@ -package reverse_test - -import ( - "bytes" - "fmt" - "io/ioutil" - "os" - "path/filepath" - "syscall" - "testing" - - "golang.org/x/sys/unix" - - "github.com/rfjakob/gocryptfs/ctlsock" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -// TestLongnameStat checks that file names of all sizes (1 to 255) show up in -// the decrypted reverse view (dirC, mounted in TestMain). -func TestLongnameStat(t *testing.T) { - for i := 1; i <= 255; i++ { - name := string(bytes.Repeat([]byte("x"), i)) - fd, err := os.Create(dirA + "/" + name) - if err != nil { - t.Fatal(err) - } - fd.Close() - path := dirC + "/" + name - if !test_helpers.VerifyExistence(t, path) { - t.Fatalf("failed to verify %q", path) - } - test_helpers.VerifySize(t, path, 0) - // A large number of longname files is a performance problem in - // reverse mode. Move the file out of the way once we are done with it - // to speed up the test (2 seconds -> 0.2 seconds). - // We do NOT unlink it because ext4 reuses inode numbers immediately, - // which will cause "Found linked inode, but Nlink == 1" warnings and - // file not found errors. - // TODO: This problem should be handled at the go-fuse level. - syscall.Rename(dirA+"/"+name, test_helpers.TmpDir+"/"+fmt.Sprintf("x%d", i)) - } -} - -func TestSymlinks(t *testing.T) { - target := "/" - os.Symlink(target, dirA+"/symlink") - cSymlink := dirC + "/symlink" - _, err := os.Lstat(cSymlink) - if err != nil { - t.Errorf("Lstat: %v", err) - } - _, err = os.Stat(cSymlink) - if err != nil { - t.Errorf("Stat: %v", err) - } - actualTarget, err := os.Readlink(cSymlink) - if err != nil { - t.Fatal(err) - } - if target != actualTarget { - t.Errorf("wrong symlink target: want=%q have=%q", target, actualTarget) - } -} - -// Symbolic link dentry sizes should be set to the length of the string -// that contains the target path. -func TestSymlinkDentrySize(t *testing.T) { - if plaintextnames { - t.Skip("this only tests encrypted names") - } - symlink := "a_symlink" - - mnt, err := ioutil.TempDir(test_helpers.TmpDir, "reverse_mnt_") - if err != nil { - t.Fatal(err) - } - - sock := mnt + ".sock" - test_helpers.MountOrFatal(t, "ctlsock_reverse_test_fs", mnt, "-reverse", "-extpass", "echo test", "-ctlsock="+sock) - defer test_helpers.UnmountPanic(mnt) - - req := ctlsock.RequestStruct{EncryptPath: symlink} - symlinkResponse := test_helpers.QueryCtlSock(t, sock, req) - if symlinkResponse.ErrNo != 0 { - t.Errorf("Encrypt: %q ErrNo=%d ErrText=%s", symlink, symlinkResponse.ErrNo, symlinkResponse.ErrText) - } - - fi, err := os.Lstat(mnt + "/" + symlinkResponse.Result) - if err != nil { - t.Fatalf("Lstat: %v", err) - } - - target, err := os.Readlink(mnt + "/" + symlinkResponse.Result) - if err != nil { - t.Errorf("Readlink: %v", err) - } - - if fi.Size() != int64(len(target)) { - t.Errorf("Lstat reports that symbolic link %q's dentry size is %d, but this does not "+ - "match the length of the string returned by readlink, which is %d.", - symlink, fi.Size(), len(target)) - } -} - -// .gocryptfs.reverse.conf in the plaintext dir should be visible as -// gocryptfs.conf -func TestConfigMapping(t *testing.T) { - c := dirB + "/gocryptfs.conf" - if !test_helpers.VerifyExistence(t, c) { - t.Errorf("%s missing", c) - } - data, err := ioutil.ReadFile(c) - if err != nil { - t.Fatal(err) - } - if len(data) == 0 { - t.Errorf("empty file") - } -} - -// Check that the access() syscall works on virtual files -func TestAccessVirtual(t *testing.T) { - if plaintextnames { - t.Skip("test makes no sense for plaintextnames") - } - var R_OK uint32 = 4 - var W_OK uint32 = 2 - var X_OK uint32 = 1 - fn := dirB + "/gocryptfs.diriv" - err := syscall.Access(fn, R_OK) - if err != nil { - t.Errorf("%q should be readable, but got error: %v", fn, err) - } - err = syscall.Access(fn, W_OK) - if err == nil { - t.Errorf("should NOT be writeable") - } - err = syscall.Access(fn, X_OK) - if err == nil { - t.Errorf("should NOT be executable") - } -} - -// Check that the access() syscall works on regular files -func TestAccess(t *testing.T) { - f, err := os.Create(dirA + "/testaccess1") - if err != nil { - t.Fatal(err) - } - f.Close() - f, err = os.Open(dirB) - if err != nil { - t.Fatal(err) - } - defer f.Close() - names, err := f.Readdirnames(0) - if err != nil { - t.Fatal(err) - } - for _, n := range names { - // Check if file exists - this should never fail - err = syscallcompat.Faccessat(unix.AT_FDCWD, dirB+"/"+n, unix.F_OK) - if err != nil { - t.Errorf("%s: %v", n, err) - } - // Check if file is readable - err = syscallcompat.Faccessat(unix.AT_FDCWD, dirB+"/"+n, unix.R_OK) - if err != nil { - t.Logf("%s: %v", n, err) - } - } -} - -// Opening a nonexistent file name should return ENOENT -// and not EBADMSG or EIO or anything else. -func TestEnoent(t *testing.T) { - fn := dirB + "/TestEnoent" - _, err := syscall.Open(fn, syscall.O_RDONLY, 0) - if err != syscall.ENOENT { - t.Errorf("want ENOENT, got: %v", err) - } -} - -// If the symlink target gets too long due to base64 encoding, we should -// return ENAMETOOLONG instead of having the kernel reject the data and -// returning an I/O error to the user. -// https://github.com/rfjakob/gocryptfs/issues/167 -func TestTooLongSymlink(t *testing.T) { - var err error - var l int - fn := dirA + "/TooLongSymlink" - // Try 4000 first (works on ext4 and tmpfs), then retry with 1000 (XFS and - // Darwin have a limit of about 1024) - for _, l = range []int{4000, 1000} { - target := string(bytes.Repeat([]byte("x"), l)) - err = os.Symlink(target, fn) - if err == nil { - break - } - } - if err != nil { - t.Fatal(err) - } - // save later tests the trouble of dealing with ENAMETOOLONG errors - defer func() { - os.Remove(fn) - // immediately create a new symlink so the inode number is not - // reused for something else - os.Symlink("/tmp", fn) - }() - t.Logf("Created symlink of length %d", l) - _, err = os.Readlink(dirC + "/TooLongSymlink") - if err == nil { - return - } - err2 := err.(*os.PathError) - if err2.Err != syscall.ENAMETOOLONG { - t.Errorf("Expected %q error, got %q instead", syscall.ENAMETOOLONG, - err2.Err) - } -} - -// Test that we can traverse a directory with 0100 permissions -// (execute but no read). This used to be a problem as OpenDirNofollow opened -// all directories in the path with O_RDONLY. Now it uses O_PATH, which only needs -// the executable bit. -func Test0100Dir(t *testing.T) { - dir := dirA + "/" + t.Name() - err := os.Mkdir(dir, 0700) - if err != nil { - t.Fatal(err) - } - file := dir + "/hello" - err = ioutil.WriteFile(file, []byte("hello"), 0600) - if err != nil { - t.Fatal(err) - } - err = os.Chmod(dir, 0100) - if err != nil { - t.Fatal(err) - } - - fileReverse := dirC + "/" + t.Name() + "/hello" - fd, err := os.Open(fileReverse) - // Make sure the dir can be removed after the test is done - os.Chmod(dir, 0700) - if err != nil { - t.Fatal(err) - } - fd.Close() -} - -func TestStatfs(t *testing.T) { - var st syscall.Statfs_t - syscall.Statfs(dirB, &st) - if st.Bsize == 0 { - t.Errorf("statfs reports size zero: %#v", st) - } -} - -// TestSeekData tests that fs.FileLseeker is implemented -func TestSeekData(t *testing.T) { - if !plaintextnames { - t.Skip() - } - - fn := filepath.Join(dirA, t.Name()) - f, err := os.Create(fn) - if err != nil { - t.Fatal(err) - } - var oneTiB int64 = 1024 * 1024 * 1024 * 1024 - if _, err = f.Seek(oneTiB, 0); err != nil { - t.Fatal(err) - } - if _, err = f.Write([]byte("foo")); err != nil { - t.Fatal(err) - } - f.Close() - - const SEEK_DATA = 3 - - fn2 := filepath.Join(dirB, t.Name()) - f, err = os.Open(fn2) - if err != nil { - t.Fatal(err) - } - off, err := f.Seek(1024*1024, SEEK_DATA) - if err != nil { - t.Fatal(err) - } - if off < oneTiB-1024*1024 { - t.Errorf("off=%d, expected=%d\n", off, oneTiB) - } - f.Close() -} diff --git a/tests/reverse/ctlsock_reverse_test_fs/.gocryptfs.reverse.conf b/tests/reverse/ctlsock_reverse_test_fs/.gocryptfs.reverse.conf deleted file mode 100644 index 9bd9259..0000000 --- a/tests/reverse/ctlsock_reverse_test_fs/.gocryptfs.reverse.conf +++ /dev/null @@ -1,19 +0,0 @@ -{ - "Creator": "gocryptfs v1.1.1-16-g75ebb28-dirty", - "EncryptedKey": "cE5bhCZl1iL1tn0dNLh8aQy8n55NMbojmmkwM8iM8/y0uChO0CGaK16sNHffAKJ++qH287JlCpk/BFyi", - "ScryptObject": { - "Salt": "yUxEmtl4KeUkCxL8b6aYcEGVtFe2NAlwy0WsFLt8p+Y=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "DirIV", - "EMENames", - "LongNames", - "AESSIV" - ] -} diff --git a/tests/reverse/ctlsock_reverse_test_fs/a_symlink b/tests/reverse/ctlsock_reverse_test_fs/a_symlink deleted file mode 120000 index 06ed148..0000000 --- a/tests/reverse/ctlsock_reverse_test_fs/a_symlink +++ /dev/null @@ -1 +0,0 @@ -dir/dir/file \ No newline at end of file diff --git a/tests/reverse/ctlsock_reverse_test_fs/dir/dir/file b/tests/reverse/ctlsock_reverse_test_fs/dir/dir/file deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/ctlsock_reverse_test_fs/dir/file b/tests/reverse/ctlsock_reverse_test_fs/dir/file deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/ctlsock_reverse_test_fs/dir/longfile.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/reverse/ctlsock_reverse_test_fs/dir/longfile.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/ctlsock_reverse_test_fs/file b/tests/reverse/ctlsock_reverse_test_fs/file deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/ctlsock_reverse_test_fs/longdir.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/file b/tests/reverse/ctlsock_reverse_test_fs/longdir.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/file deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/ctlsock_reverse_test_fs/longfile.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/reverse/ctlsock_reverse_test_fs/longfile.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/ctlsock_test.go b/tests/reverse/ctlsock_test.go deleted file mode 100644 index ecb0b96..0000000 --- a/tests/reverse/ctlsock_test.go +++ /dev/null @@ -1,88 +0,0 @@ -package reverse_test - -import ( - "io/ioutil" - "syscall" - "testing" - - "github.com/rfjakob/gocryptfs/ctlsock" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -var ctlSockTestCases = [][]string{ - {"4RQq1dJlfvQPaVU5Xypf0w==", "file"}, - {"gocryptfs.longname.ZQCAoi5li3xvDZRO8McBV0L_kzJc4IcAOEzuW-2S1Y4=", "longfile." + x240}, - {"v6puXntoQOk7Mhl8zJ4Idg==", "dir"}, - {"v6puXntoQOk7Mhl8zJ4Idg==/UVy2gV0RQTUC8AE4wYoMwg==", "dir/file"}, - {"v6puXntoQOk7Mhl8zJ4Idg==/fvHFLHlxHCQ7EpVMJu0AZg==", "dir/dir"}, - {"v6puXntoQOk7Mhl8zJ4Idg==/fvHFLHlxHCQ7EpVMJu0AZg==/_4uudIGniACke55JoDsqDA==", "dir/dir/dir"}, - {"v6puXntoQOk7Mhl8zJ4Idg==/fvHFLHlxHCQ7EpVMJu0AZg==/QvPahkkeVRKTw2kdZFZxwQ==", "dir/dir/file"}, - {"v6puXntoQOk7Mhl8zJ4Idg==/gocryptfs.longname.y6rxCn6Id8hIZL2t_STpdLZpu-aE2HpprJR25xD60mk=", "dir/longfile." + x240}, - {"gocryptfs.longname.cvRximo1ATRJVEzw_V9MZieHFlod9y2iv2Sug1kbiTE=", "longdir." + x240}, - {"gocryptfs.longname.cvRximo1ATRJVEzw_V9MZieHFlod9y2iv2Sug1kbiTE=/-LMdFgFt6UxO-z5iJvuC9w==", "longdir." + x240 + "/dir"}, - {"gocryptfs.longname.cvRximo1ATRJVEzw_V9MZieHFlod9y2iv2Sug1kbiTE=/rBPJYAzcHWLdPj1T8kgh8A==", "longdir." + x240 + "/file"}, -} - -// Test DecryptPath and EncryptPath -func TestCtlSockPathOps(t *testing.T) { - if plaintextnames { - t.Skip("this only tests encrypted names") - } - mnt, err := ioutil.TempDir(test_helpers.TmpDir, "reverse_mnt_") - if err != nil { - t.Fatal(err) - } - sock := mnt + ".sock" - test_helpers.MountOrFatal(t, "ctlsock_reverse_test_fs", mnt, "-reverse", "-extpass", "echo test", "-ctlsock="+sock) - defer test_helpers.UnmountPanic(mnt) - var req ctlsock.RequestStruct - var response ctlsock.ResponseStruct - for i, tc := range ctlSockTestCases { - // Decrypt - req = ctlsock.RequestStruct{DecryptPath: tc[0]} - response = test_helpers.QueryCtlSock(t, sock, req) - if response.ErrNo != 0 { - t.Errorf("Testcase %d Decrypt: %q ErrNo=%d ErrText=%s", i, tc[0], response.ErrNo, response.ErrText) - } else if response.Result != tc[1] { - t.Errorf("Testcase %d Decrypt: Want %q got %q", i, tc[1], response.Result) - } - // Encrypt - req = ctlsock.RequestStruct{EncryptPath: tc[1]} - response = test_helpers.QueryCtlSock(t, sock, req) - if response.ErrNo != 0 { - t.Errorf("Testcase %d Encrypt: %q ErrNo=%d ErrText=%s", i, tc[0], response.ErrNo, response.ErrText) - } else if response.Result != tc[0] { - t.Errorf("Testcase %d Encrypt: Want %q got %q", i, tc[1], response.Result) - } - } - // At this point the longname parent cache should be populated. - // Check that we do not mix up information for different directories. - req = ctlsock.RequestStruct{DecryptPath: "gocryptfs.longname.y6rxCn6Id8hIZL2t_STpdLZpu-aE2HpprJR25xD60mk="} - response = test_helpers.QueryCtlSock(t, sock, req) - if response.ErrNo != int32(syscall.ENOENT) { - t.Errorf("File should not exist: ErrNo=%d ErrText=%s", response.ErrNo, response.ErrText) - } - req = ctlsock.RequestStruct{DecryptPath: "v6puXntoQOk7Mhl8zJ4Idg==/gocryptfs.longname.ZQCAoi5li3xvDZRO8McBV0L_kzJc4IcAOEzuW-2S1Y4="} - response = test_helpers.QueryCtlSock(t, sock, req) - if response.ErrNo != int32(syscall.ENOENT) { - t.Errorf("File should not exist: ErrNo=%d ErrText=%s", response.ErrNo, response.ErrText) - } -} - -// We should not panic when somebody feeds requests that make no sense -func TestCtlSockCrash(t *testing.T) { - if plaintextnames { - t.Skip("this only tests encrypted names") - } - mnt, err := ioutil.TempDir(test_helpers.TmpDir, "reverse_mnt_") - if err != nil { - t.Fatal(err) - } - sock := mnt + ".sock" - test_helpers.MountOrFatal(t, "ctlsock_reverse_test_fs", mnt, "-reverse", "-extpass", "echo test", "-ctlsock="+sock, - "-wpanic=0", "-nosyslog=0") - defer test_helpers.UnmountPanic(mnt) - // Try to crash it - req := ctlsock.RequestStruct{DecryptPath: "gocryptfs.longname.XXX_TestCtlSockCrash_XXX.name"} - test_helpers.QueryCtlSock(t, sock, req) -} diff --git a/tests/reverse/exclude_test.go b/tests/reverse/exclude_test.go deleted file mode 100644 index c493d95..0000000 --- a/tests/reverse/exclude_test.go +++ /dev/null @@ -1,157 +0,0 @@ -package reverse_test - -import ( - "io/ioutil" - "path/filepath" - "testing" - - "github.com/rfjakob/gocryptfs/ctlsock" - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -const xxx = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" - -/* -tree exclude_test_fs -exclude_test_fs/ -├── bkp1~ -├── dir1 -│ ├── file1 -│ ├── file2 -│ ├── exclude -│ ├── longbkp1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx~ -│ ├── longfile1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -│ ├── longfile2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -│ ├── longfile3xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -│ └── subdir1 -│ ├── exclude -│ └── subdir2 -│ └── exclude -├── dir2 -│ ├── file -│ ├── longdir1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -│ │ └── file -│ ├── longfile.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -│ └── subdir -│ └── file -├── file1 -├── file2 -├── longdir1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -│ └── file1 -├── longdir2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -│ ├── bkp~ -│ └── file -├── longfile1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -├── longfile2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -└── longfile3xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -*/ - -func ctlsockEncryptPath(t *testing.T, sock string, path string) string { - req := ctlsock.RequestStruct{EncryptPath: path} - response := test_helpers.QueryCtlSock(t, sock, req) - if response.ErrNo != 0 { - t.Fatal(response) - } - return response.Result -} - -func testExclude(t *testing.T, flag string) { - pPatterns := []string{ - "file1", // matches file1 anywhere - "!longdir1" + xxx + "/file1", // ! includes an otherwise file - "file2/", // a trailing slash matches only a directory - "dir1/file2", // matches file2 inside dir1 anywhere - "#file2", // comments are ignored - "dir2", // excludes the whole directory - "longfile2" + xxx, // matches longfile2 anywhere - "/longfile3" + xxx, // a leading / anchors the match at the root - "*~", // wildcards are supported - "dir1/**/exclude", // ** matches any number of directories - } - pOk := []string{ - "file2", - "dir1/longfile1" + xxx, - "dir1/longfile3" + xxx, - "longdir1" + xxx, - "longdir1" + xxx + "/file1", - "longdir2" + xxx + "/file", - "longfile1" + xxx, - } - pExclude := []string{ - "bkp1~", - "dir1/file1", - "dir1/file2", - "dir1/exclude", - "dir1/longbkp1" + xxx + "~", - "dir1/longfile2" + xxx, - "dir1/subdir1/exclude", - "dir1/subdir1/subdir2/exclude", - "dir2", - "dir2/file", - "dir2/longdir1" + xxx + "/file", - "dir2/longfile." + xxx, - "dir2/subdir", - "dir2/subdir/file", - "file1", - "longdir2" + xxx + "/bkp~", - "longfile2" + xxx, - "longfile3" + xxx, - } - // Mount reverse fs - mnt, err := ioutil.TempDir(test_helpers.TmpDir, "TestExclude") - if err != nil { - t.Fatal(err) - } - sock := mnt + ".sock" - cliArgs := []string{"-reverse", "-extpass", "echo test", "-ctlsock", sock} - for _, v := range pPatterns { - cliArgs = append(cliArgs, flag, v) - } - if plaintextnames { - cliArgs = append(cliArgs, "-config", "exclude_test_fs/.gocryptfs.reverse.conf.plaintextnames") - } - test_helpers.MountOrFatal(t, "exclude_test_fs", mnt, cliArgs...) - defer test_helpers.UnmountPanic(mnt) - // Get encrypted version of "ok" and "excluded" paths - cOk := encryptExcludeTestPaths(t, sock, pOk) - cExclude := encryptExcludeTestPaths(t, sock, pExclude) - // Check that "excluded" paths are not there and "ok" paths are there - for _, v := range cExclude { - t.Logf("File %q should be invisible", v) - if test_helpers.VerifyExistence(t, mnt+"/"+v) { - t.Errorf("File %q is visible, but should be excluded", v) - } - if nametransform.IsLongContent(filepath.Base(v)) { - - } - } - for _, v := range cOk { - t.Logf("File %q should be visible", v) - if !test_helpers.VerifyExistence(t, mnt+"/"+v) { - t.Errorf("File %q is hidden, but should be visible", v) - } - } -} - -// encryptExcludeTestPaths is used by testExclude() to encrypt the lists of -// testcase paths -func encryptExcludeTestPaths(t *testing.T, socket string, pRelPaths []string) (out []string) { - for _, pRelPath := range pRelPaths { - cRelPath := ctlsockEncryptPath(t, socket, pRelPath) - out = append(out, cRelPath) - if !plaintextnames && nametransform.IsLongContent(filepath.Base(cRelPath)) { - // If we exclude - // gocryptfs.longname.3vZ_r3eDPb1_fL3j5VA4rd_bcKWLKT9eaxOVIGK5HFA - // we should also exclude - // gocryptfs.longname.3vZ_r3eDPb1_fL3j5VA4rd_bcKWLKT9eaxOVIGK5HFA.name - out = append(out, cRelPath+nametransform.LongNameSuffix) - } - } - return out -} - -func TestExclude(t *testing.T) { - testExclude(t, "-exclude-wildcard") - testExclude(t, "-ew") -} diff --git a/tests/reverse/exclude_test_fs/.gocryptfs.reverse.conf b/tests/reverse/exclude_test_fs/.gocryptfs.reverse.conf deleted file mode 100644 index 835d11c..0000000 --- a/tests/reverse/exclude_test_fs/.gocryptfs.reverse.conf +++ /dev/null @@ -1,21 +0,0 @@ -{ - "Creator": "gocryptfs v1.5-41-gf48b731-dirty", - "EncryptedKey": "FkACqloUeFZesem0UzRD3ezLXtPl8wIAxEHoIEfZxFdLMQeWOxqtw5xopJagDWE/GI1VFSUIrJIIIwwgMipmYA==", - "ScryptObject": { - "Salt": "UVfIgV31uj/voHWI4GqGwsTcbVKyYDOWvbleqJKhZbk=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "HKDF", - "DirIV", - "EMENames", - "LongNames", - "Raw64", - "AESSIV" - ] -} diff --git a/tests/reverse/exclude_test_fs/.gocryptfs.reverse.conf.plaintextnames b/tests/reverse/exclude_test_fs/.gocryptfs.reverse.conf.plaintextnames deleted file mode 100644 index 9cb762c..0000000 --- a/tests/reverse/exclude_test_fs/.gocryptfs.reverse.conf.plaintextnames +++ /dev/null @@ -1,18 +0,0 @@ -{ - "Creator": "gocryptfs v1.5-41-gf48b731-dirty", - "EncryptedKey": "wAmckZb7QsIv/GCdkhb5ep8TwJa44qhnswn5tbER6Tifk8TbUmkwBTceaTtYfHAnTQ48q9mnIlcN9cfbNe5oPw==", - "ScryptObject": { - "Salt": "o5XJ78TgG85zZXRnU55ZqHhKLbPge6jsyDiqrLvSqe0=", - "N": 1024, - "R": 8, - "P": 1, - "KeyLen": 32 - }, - "Version": 2, - "FeatureFlags": [ - "GCMIV128", - "HKDF", - "PlaintextNames", - "AESSIV" - ] -} diff --git a/tests/reverse/exclude_test_fs/bkp1~ b/tests/reverse/exclude_test_fs/bkp1~ deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir1/exclude b/tests/reverse/exclude_test_fs/dir1/exclude deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir1/file1 b/tests/reverse/exclude_test_fs/dir1/file1 deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir1/file2 b/tests/reverse/exclude_test_fs/dir1/file2 deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir1/longbkp1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx~ b/tests/reverse/exclude_test_fs/dir1/longbkp1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx~ deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir1/longfile1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/reverse/exclude_test_fs/dir1/longfile1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir1/longfile2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/reverse/exclude_test_fs/dir1/longfile2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir1/longfile3xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/reverse/exclude_test_fs/dir1/longfile3xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir1/subdir1/exclude b/tests/reverse/exclude_test_fs/dir1/subdir1/exclude deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir1/subdir1/subdir2/exclude b/tests/reverse/exclude_test_fs/dir1/subdir1/subdir2/exclude deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir2/file b/tests/reverse/exclude_test_fs/dir2/file deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir2/longdir1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/file b/tests/reverse/exclude_test_fs/dir2/longdir1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/file deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir2/longfile.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/reverse/exclude_test_fs/dir2/longfile.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/dir2/subdir/file b/tests/reverse/exclude_test_fs/dir2/subdir/file deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/file1 b/tests/reverse/exclude_test_fs/file1 deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/file2 b/tests/reverse/exclude_test_fs/file2 deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/longdir1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/file1 b/tests/reverse/exclude_test_fs/longdir1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/file1 deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/longdir2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/bkp~ b/tests/reverse/exclude_test_fs/longdir2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/bkp~ deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/longdir2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/file b/tests/reverse/exclude_test_fs/longdir2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/file deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/longfile1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/reverse/exclude_test_fs/longfile1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/longfile2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/reverse/exclude_test_fs/longfile2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/exclude_test_fs/longfile3xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx b/tests/reverse/exclude_test_fs/longfile3xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx deleted file mode 100644 index e69de29..0000000 diff --git a/tests/reverse/inomap_test.go b/tests/reverse/inomap_test.go deleted file mode 100644 index e6fc525..0000000 --- a/tests/reverse/inomap_test.go +++ /dev/null @@ -1,145 +0,0 @@ -package reverse_test - -import ( - "bytes" - "os" - "strings" - "syscall" - "testing" -) - -// findIno looks for the file having inode number `ino` in `dir`. -// Returns "" if not found. -func findIno(dir string, ino uint64) string { - fd, err := os.Open(dir) - if err != nil { - return "" - } - dirents, err := fd.Readdirnames(0) - if err != nil { - return "" - } - fd.Close() - for _, entry := range dirents { - var st syscall.Stat_t - err = syscall.Lstat(dir+"/"+entry, &st) - if err != nil { - continue - } - if ino == st.Ino { - return entry - } - } - return "" -} - -// TestVirtualFileIno creates a directory tree like this: -// -// TestVirtualFileIno <---- parent -// └── xxxxxxx[...] <---- child -// -// Which looks like this encrypted: -// -// OLUKdPMg6l87EiKVlufgwIkQL8MD6JdUgOR3a8nEZ-w <---- parent -// ├── gocryptfs.diriv <---- diriv -// ├── gocryptfs.longname.e31v1ax4h_F0l4jhlN8kCjaWWMq8rO9VVBZ15IYsV50 <---- child -// └── gocryptfs.longname.e31v1ax4h_F0l4jhlN8kCjaWWMq8rO9VVBZ15IYsV50.name <---- name -// -// It verifies that the inode numbers match what we expect. -func TestVirtualFileIno(t *testing.T) { - if plaintextnames { - t.Skip("plaintextnames mode does not have virtual files") - } - - type inoTable struct { - parent uint64 - diriv uint64 - child uint64 - name uint64 - } - var origInos inoTable - var cipherInos inoTable - - parent := dirA + "/TestVirtualFileIno" - name := string(bytes.Repeat([]byte("x"), 240)) - err := os.MkdirAll(parent+"/"+name, 0700) - if err != nil { - t.Fatal(err) - } - var st syscall.Stat_t - err = syscall.Lstat(parent+"/"+name, &st) - if err != nil { - t.Fatal(err) - } - origInos.child = st.Ino - // get inode number of plain parent - err = syscall.Lstat(parent, &st) - if err != nil { - t.Fatal(err) - } - origInos.parent = st.Ino - // find it in encrypted `dirB` - fd, err := os.Open(dirB) - if err != nil { - t.Fatal(err) - } - dirents, err := fd.Readdirnames(0) - if err != nil { - t.Fatal(err) - } - fd.Close() - encryptedParent := findIno(dirB, origInos.parent) - if encryptedParent == "" { - t.Fatalf("could not find ino %d in %q", origInos.parent, dirB) - } - encryptedParent = dirB + "/" + encryptedParent - err = syscall.Stat(encryptedParent, &st) - if err != nil { - t.Fatal(err) - } - cipherInos.parent = st.Ino - fd, err = os.Open(encryptedParent) - if err != nil { - t.Fatal(err) - } - dirents, err = fd.Readdirnames(0) - if err != nil { - t.Fatal(err) - } - fd.Close() - for _, entry := range dirents { - var st2 syscall.Stat_t - err = syscall.Lstat(encryptedParent+"/"+entry, &st2) - if err != nil { - t.Errorf("stat %q: %v", entry, err) - continue - } - if entry == "gocryptfs.diriv" { - cipherInos.diriv = st2.Ino - } else if strings.HasSuffix(entry, ".name") { - cipherInos.name = st2.Ino - } else { - cipherInos.child = st2.Ino - } - } - if origInos.parent != cipherInos.parent { - t.Errorf("parent ino mismatch: %d != %d", origInos.parent, cipherInos.parent) - } - if origInos.parent == cipherInos.diriv { - t.Errorf("diriv ino collision: %d == %d", origInos.parent, cipherInos.diriv) - } - // Lower 48 bits should come from the backing file - const mask = 0xffffffffffff - if origInos.parent&mask != cipherInos.diriv&mask { - t.Errorf("diriv ino mismatch: %#x vs %#x", origInos.parent, cipherInos.diriv) - } - if origInos.child != cipherInos.child { - t.Errorf("child ino mismatch: %d vs %d", origInos.child, cipherInos.child) - } - if origInos.child == cipherInos.name { - t.Errorf("name ino collision: %d == %d", origInos.child, cipherInos.name) - } - if origInos.child&mask != cipherInos.name&mask { - t.Errorf("name ino mismatch: %#x vs %#x", origInos.child, cipherInos.name) - } -} diff --git a/tests/reverse/linux-tarball-test.bash b/tests/reverse/linux-tarball-test.bash deleted file mode 100755 index 26bbb6c..0000000 --- a/tests/reverse/linux-tarball-test.bash +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -set -eu - -cd "$(dirname "$0")" -MD5="$PWD/../stress_tests/linux-3.0.md5sums" -MYNAME=$(basename "$0") -source ../fuse-unmount.bash - -# Setup dirs -../dl-linux-tarball.bash -cd /tmp -WD=$(mktemp -d /tmp/$MYNAME.XXX) - -# Cleanup trap -trap "set +u; cd /; fuse-unmount -z $WD/c; fuse-unmount -z $WD/b; rm -rf $WD" EXIT - -cd $WD -mkdir a b c -echo "Extracting tarball" -tar -x -f /tmp/linux-3.0.tar.gz -C a -echo "Mounting a -> b -> c chain" -# Init "a" -gocryptfs -q -extpass="echo test" -reverse -init -scryptn=10 a -# Reverse-mount "a" on "b" -gocryptfs -q -extpass="echo test" -reverse a b -# Forward-mount "b" on "c" -gocryptfs -q -extpass="echo test" b c -# Check md5 sums -cd c -echo "Checking md5 sums" -set -o pipefail -md5sum -c $MD5 | pv -l -s 36782 -N "files checked" | (grep -v ": OK" || true) diff --git a/tests/reverse/longname_perf_test.go b/tests/reverse/longname_perf_test.go deleted file mode 100644 index 1707cea..0000000 --- a/tests/reverse/longname_perf_test.go +++ /dev/null @@ -1,50 +0,0 @@ -package reverse_test - -import ( - "fmt" - "os" - "testing" -) - -func genName(i int, postfix string) string { - return fmt.Sprintf("%04d.%s", i, postfix) -} - -// Create 10000 files with long names -func generateLongnameFiles(dir string) { - for i := 0; i < 100000; i++ { - n := genName(i, x240) - f, err := os.Create(dir + "/" + n) - if err != nil { - panic(err) - } - f.Close() - } -} - -func BenchmarkLongnameStat(b *testing.B) { - // Setup - generateLongnameFiles(dirA) - dirFd, err := os.Open(dirB) - if err != nil { - b.Fatal(err) - } - encryptedNames, err := dirFd.Readdirnames(-1) - if err != nil { - b.Fatal(err) - } - l := len(encryptedNames) - dirFd.Close() - // Benchmark - b.ResetTimer() - for i := 0; i < b.N; i++ { - _, err := os.Stat(dirB + "/" + encryptedNames[i%l]) - if err != nil { - b.Fatal(err) - } - } - // Cleanup - b.StopTimer() - os.RemoveAll(dirA) - os.Mkdir(dirA, 0700) -} diff --git a/tests/reverse/main_test.go b/tests/reverse/main_test.go deleted file mode 100644 index 3425289..0000000 --- a/tests/reverse/main_test.go +++ /dev/null @@ -1,56 +0,0 @@ -package reverse_test - -import ( - "bytes" - "os" - "testing" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -var x240 = string(bytes.Repeat([]byte("x"), 240)) -var plaintextnames bool - -// dirA is a normal directory -var dirA string - -// dirB is the reverse mount backed by dirA -var dirB string - -// dirC is a forward mount backed by dirB -var dirC string - -// Create directory "dirA", mount it reverse to "dirB", mount it forward -// to "dirC". -func TestMain(m *testing.M) { - var r int - for _, plaintextnames = range []bool{false, true} { - argsA := []string{"-reverse"} - if plaintextnames { - argsA = append(argsA, "-plaintextnames") - } - dirA = test_helpers.InitFS(nil, argsA...) - dirB = test_helpers.TmpDir + "/b" - dirC = test_helpers.TmpDir + "/c" - if err := os.Mkdir(dirB, 0700); err != nil { - panic(err) - } - if err := os.Mkdir(dirC, 0700); err != nil { - panic(err) - } - test_helpers.MountOrExit(dirA, dirB, "-reverse", "-extpass", "echo test") - test_helpers.MountOrExit(dirB, dirC, "-extpass", "echo test") - r = m.Run() - test_helpers.UnmountPanic(dirC) - test_helpers.UnmountPanic(dirB) - - os.RemoveAll(dirA) - os.RemoveAll(dirB) - os.RemoveAll(dirC) - - if r != 0 { - os.Exit(r) - } - } - os.Exit(r) -} diff --git a/tests/reverse/xattr_test.go b/tests/reverse/xattr_test.go deleted file mode 100644 index 8002604..0000000 --- a/tests/reverse/xattr_test.go +++ /dev/null @@ -1,66 +0,0 @@ -package reverse_test - -import ( - "fmt" - "io/ioutil" - "path/filepath" - "syscall" - "testing" - - "github.com/pkg/xattr" -) - -func xattrSupported(path string) bool { - _, err := xattr.LGet(path, "user.xattrSupported-dummy-value") - if err == nil { - return true - } - err2 := err.(*xattr.Error) - if err2.Err == syscall.EOPNOTSUPP { - return false - } - return true -} - -func TestXattrList(t *testing.T) { - t.Skip("TODO: not implemented yet in reverse mode") - - if !xattrSupported(dirA) { - t.Skip() - } - fnA := filepath.Join(dirA, t.Name()) - err := ioutil.WriteFile(fnA, nil, 0700) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - val := []byte("xxxxxxxxyyyyyyyyyyyyyyyzzzzzzzzzzzzz") - num := 20 - var namesA map[string]string - for i := 1; i <= num; i++ { - attr := fmt.Sprintf("user.TestXattrList.%02d", i) - err = xattr.LSet(fnA, attr, val) - if err != nil { - t.Fatal(err) - } - namesA[attr] = string(val) - } - fnC := filepath.Join(dirC, t.Name()) - tmp, err := xattr.LList(fnC) - if err != nil { - t.Fatal(err) - } - var namesC map[string]string - for _, n := range tmp { - namesC[n] = string(val) - } - if len(namesA) != len(namesC) { - t.Errorf("wrong number of names, want=%d have=%d", len(namesA), len(namesC)) - } - for i := range namesC { - valA := namesA[i] - valC := namesC[i] - if valC != valA { - t.Errorf("mismatch on attr %q: valA = %q, valC = %q", i, valA, valC) - } - } -} diff --git a/tests/root_test/root_test.go b/tests/root_test/root_test.go deleted file mode 100644 index 8547e4e..0000000 --- a/tests/root_test/root_test.go +++ /dev/null @@ -1,313 +0,0 @@ -// Package root_test contains tests that need root -// permissions to run -package root_test - -import ( - "io/ioutil" - "os" - "os/exec" - "path/filepath" - "runtime" - "sync" - "syscall" - "testing" - - "golang.org/x/sys/unix" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func asUser(uid int, gid int, supplementaryGroups []int, f func() error) error { - runtime.LockOSThread() - defer runtime.UnlockOSThread() - - err := unix.Setgroups(supplementaryGroups) - if err != nil { - return err - } - defer func() { - err = unix.Setgroups(nil) - if err != nil { - panic(err) - } - }() - err = unix.Setregid(-1, gid) - if err != nil { - return err - } - defer func() { - err = unix.Setregid(-1, 0) - if err != nil { - panic(err) - } - }() - err = unix.Setreuid(-1, uid) - if err != nil { - return err - } - defer func() { - err = unix.Setreuid(-1, 0) - if err != nil { - panic(err) - } - }() - - ret := f() - - // Also reset the saved user id (suid) and saved group id (sgid) to prevent - // bizarre failures in later tests. - // - // Yes, the kernel checks that *all of them* match: - // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/fs/fuse/dir.c?h=v5.12-rc2#n1193 - // - // How to check: - // ps -o tid,pid,euid,ruid,suid,egid,rgid,sgid,cmd -eL - err = unix.Setresuid(0, 0, 0) - if err != nil { - panic(err) - } - err = unix.Setresgid(0, 0, 0) - if err != nil { - panic(err) - } - - return ret -} - -func TestSupplementaryGroups(t *testing.T) { - if os.Getuid() != 0 { - t.Skip("must run as root") - } - cDir := test_helpers.InitFS(t) - os.Chmod(cDir, 0755) - pDir := cDir + ".mnt" - test_helpers.MountOrFatal(t, cDir, pDir, "-allow_other", "-extpass=echo test") - defer test_helpers.UnmountPanic(pDir) - - // We need an unrestricted umask - syscall.Umask(0000) - - dir1 := pDir + "/dir1" - err := os.Mkdir(dir1, 0770) - if err != nil { - t.Fatal(err) - } - err = os.Chown(dir1, 0, 1234) - if err != nil { - t.Fatal(err) - } - - err = asUser(1235, 1235, []int{1234}, func() error { return os.Mkdir(dir1+"/dir2", 0700) }) - if err != nil { - t.Error(err) - } - - err = asUser(1235, 1235, []int{1234}, func() error { - f, err := os.Create(dir1 + "/file1") - if err == nil { - f.Close() - } - return err - }) - if err != nil { - t.Error(err) - } -} - -func writeTillFull(t *testing.T, path string) (int, syscall.Errno) { - runtime.LockOSThread() - defer runtime.UnlockOSThread() - - fd, err := syscall.Creat(path, 0600) - if err != nil { - return 0, err.(syscall.Errno) - } - defer syscall.Close(fd) - // Write in 100.000 byte-blocks, which is not aligend to the - // underlying block size - buf := make([]byte, 100000) - var sz int - for { - n, err := syscall.Write(fd, buf) - if err != nil { - return sz, err.(syscall.Errno) - } - sz += n - } - return sz, 0 -} - -// TestDiskFull needs root permissions because it creates a loop disk -func TestDiskFull(t *testing.T) { - if os.Getuid() != 0 { - t.Skip("must run as root") - } - - // Create 10 MB file full of zeros - ext4img := filepath.Join(test_helpers.TmpDir, t.Name()+".ext4") - f, err := os.Create(ext4img) - if err != nil { - t.Fatal(err) - } - defer f.Close() - err = f.Truncate(10 * 1024 * 1024) - if err != nil { - t.Fatal(err) - } - - // Format as ext4 - cmd := exec.Command("mkfs.ext4", ext4img) - out, err := cmd.CombinedOutput() - if err != nil { - t.Log(string(out)) - t.Fatal(err) - } - - // Mount ext4 - ext4mnt := ext4img + ".mnt" - err = os.Mkdir(ext4mnt, 0600) - if err != nil { - t.Fatal(err) - } - cmd = exec.Command("mount", ext4img, ext4mnt) - out, err = cmd.CombinedOutput() - if err != nil { - t.Log(string(out)) - t.Fatal(err) - } - defer syscall.Unlink(ext4img) - defer syscall.Unmount(ext4mnt, 0) - - // gocryptfs -init - cipherdir := ext4mnt + "/a" - if err = os.Mkdir(cipherdir, 0600); err != nil { - t.Fatal(err) - } - cmd = exec.Command(test_helpers.GocryptfsBinary, "-q", "-init", "-extpass", "echo test", "-scryptn=10", cipherdir) - out, err = cmd.CombinedOutput() - if err != nil { - t.Log(string(out)) - t.Fatal(err) - } - - // Mount gocryptfs - mnt := ext4mnt + "/b" - test_helpers.MountOrFatal(t, cipherdir, mnt, "-extpass", "echo test") - defer test_helpers.UnmountPanic(mnt) - - // Write till we get ENOSPC - var err1, err2 error - var sz1, sz2 int - var wg sync.WaitGroup - wg.Add(2) - go func() { - sz1, err1 = writeTillFull(t, mnt+"/foo1") - wg.Done() - }() - go func() { - sz2, err2 = writeTillFull(t, mnt+"/foo2") - wg.Done() - }() - wg.Wait() - if err1 != syscall.ENOSPC || err2 != syscall.ENOSPC { - t.Fatalf("err1=%v, err2=%v", err1, err2) - } - t.Logf("sz1=%d, sz2=%d", sz1, sz2) - - foo1, err := ioutil.ReadFile(mnt + "/foo1") - if err != nil { - t.Fatal(err) - } - if len(foo1) != sz1 { - t.Fail() - } - - foo2, err := ioutil.ReadFile(mnt + "/foo2") - if err != nil { - t.Fatal(err) - } - if len(foo2) != sz2 { - t.Fail() - } -} - -func TestAcl(t *testing.T) { - if os.Getuid() != 0 { - t.Skip("must run as root") - } - cDir := test_helpers.InitFS(t) - os.Chmod(cDir, 0755) - pDir := cDir + ".mnt" - test_helpers.MountOrFatal(t, cDir, pDir, "-allow_other", "-acl", "-extpass=echo test") - defer test_helpers.UnmountPanic(pDir) - - f1 := pDir + "/f1" - if err := ioutil.WriteFile(f1, []byte("hello world\n"), 000); err != nil { - t.Fatal(err) - } - - openUser1234 := func(rwMode int) error { - return asUser(1234, 1234, nil, func() error { - fd, err := syscall.Open(f1, rwMode, 0) - if err != nil { - return err - } - defer syscall.Close(fd) - buf := make([]byte, 100) - if rwMode == syscall.O_RDONLY || rwMode == syscall.O_RDWR { - _, err = syscall.Read(fd, buf) - if err != nil { - return err - } - } - if rwMode == syscall.O_WRONLY || rwMode == syscall.O_RDWR { - _, err = syscall.Write(fd, buf) - if err != nil { - return err - } - } - return err - }) - } - - dumpAcl := func() { - out, err := exec.Command("getfacl", f1).CombinedOutput() - if err != nil { - t.Fatal(err) - } - t.Log(string(out)) - } - - if err := openUser1234(syscall.O_RDONLY); err == nil { - t.Error("this should have failed") - dumpAcl() - } - - // Allow read - out, err := exec.Command("setfacl", "-m", "u:1234:r", f1).CombinedOutput() - if err != nil { - t.Fatal(string(out)) - } - if err := openUser1234(syscall.O_RDONLY); err != nil { - t.Errorf("O_RDONLY should have worked, but got error: %v", err) - dumpAcl() - } - if err := openUser1234(syscall.O_WRONLY); err == nil { - t.Error("O_WRONLY should have failed") - dumpAcl() - } - - // Allow write - out, err = exec.Command("setfacl", "-m", "u:1234:w", f1).CombinedOutput() - if err != nil { - t.Fatal(string(out)) - } - if err := openUser1234(syscall.O_WRONLY); err != nil { - t.Errorf("O_WRONLY should have worked, but got error: %v", err) - dumpAcl() - } - if err := openUser1234(syscall.O_RDONLY); err == nil { - t.Error("O_RDONLY should have failed") - dumpAcl() - } -} diff --git a/tests/sharedstorage/sharedstorage_test.go b/tests/sharedstorage/sharedstorage_test.go deleted file mode 100644 index 8f46c0d..0000000 --- a/tests/sharedstorage/sharedstorage_test.go +++ /dev/null @@ -1,142 +0,0 @@ -// test gocryptfs cipherdir mounted multiple times at the same time -package sharedstorage - -import ( - "fmt" - "os" - "testing" - "time" - - "golang.org/x/sys/unix" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -var flagSharestorage bool - -// EntryTimeout is 1 second, give the kernel 1.1 second to actually -// expire an entry. The tests fail sometime with 1.0 second! -const waitForExpire = time.Second + 100*time.Millisecond - -func TestMain(m *testing.M) { - ret := 0 - flagSharestorage = false - ret += m.Run() - flagSharestorage = true - ret += m.Run() - os.Exit(ret) -} - -type testCase struct { - t *testing.T - - cipherdir string - mnt1 string - mnt2 string -} - -func newTestCase(t *testing.T) *testCase { - tc := testCase{} - tc.cipherdir = test_helpers.InitFS(t) - tc.mnt1 = tc.cipherdir + ".mnt1" - tc.mnt2 = tc.cipherdir + ".mnt2" - mountSharedstorage(t, tc.cipherdir, tc.mnt1) - mountSharedstorage(t, tc.cipherdir, tc.mnt2) - t.Logf("newTestCase: sharedstorage=%v cipherdir=%q", flagSharestorage, tc.cipherdir) - return &tc -} - -func (tc *testCase) cleanup() { - for _, mnt := range []string{tc.mnt1, tc.mnt2} { - err := test_helpers.UnmountErr(mnt) - if err != nil { - tc.t.Error(err) - } - } -} - -// mountSharedstorage mounts `cipherdir` on `mnt` with or without the -// `-sharedstorage` flag, depending on the global var `flagSharestorage`. -func mountSharedstorage(t *testing.T, cipherdir string, mnt string) { - args := []string{"-extpass=echo test"} - if flagSharestorage { - args = append(args, "-sharedstorage") - } - test_helpers.MountOrFatal(t, cipherdir, mnt, args...) -} - -func TestDirUnlink(t *testing.T) { - tc := newTestCase(t) - defer tc.cleanup() - - // Create dir via mnt1 - if err := unix.Mkdir(tc.mnt1+"/foo", 0700); err != nil { - t.Fatal(err) - } - // Replace dir with file via mnt2 - if err := unix.Rmdir(tc.mnt2 + "/foo"); err != nil { - t.Fatal(err) - } - if fd, err := unix.Creat(tc.mnt2+"/foo", 0600); err != nil { - t.Fatal(err) - } else { - unix.Close(fd) - } - // Try to unlink via mnt1 - if err := unix.Unlink(tc.mnt1 + "/foo"); err != nil { - // Must work with -sharedstorage - if flagSharestorage { - t.Fatal(err) - } else { - // Must always work after cache timeout - time.Sleep(waitForExpire) - if err := unix.Unlink(tc.mnt1 + "/foo"); err != nil { - t.Fatal(err) - } - } - } -} - -// TestStaleHardlinks always failed before -// https://review.gerrithub.io/c/hanwen/go-fuse/+/513646/2 -func TestStaleHardlinks(t *testing.T) { - tc := newTestCase(t) - defer tc.cleanup() - - link0 := tc.mnt1 + "/link0" - if fd, err := unix.Creat(link0, 0600); err != nil { - t.Fatal(err) - } else { - unix.Close(fd) - } - // Create hardlinks via mnt1 - for i := 1; i < 20; i++ { - linki := fmt.Sprintf(tc.mnt1+"/link%d", i) - if err := unix.Link(link0, linki); err != nil { - t.Fatal(err) - } - } - // Delete hardlinks via mnt2 - for i := 1; i < 20; i++ { - linki := fmt.Sprintf(tc.mnt2+"/link%d", i) - if err := unix.Unlink(linki); err != nil { - t.Fatal(err) - } - } - // Open link0 via mnt1 - fd, err := unix.Open(link0, unix.O_RDONLY, 0) - if err != nil { - // Must work with -sharedstorage - if flagSharestorage { - t.Fatal(err) - } else { - // Must always work after cache timeout - time.Sleep(waitForExpire) - fd, err = unix.Open(link0, unix.O_RDONLY, 0) - if err != nil { - t.Fatal(err) - } - } - } - unix.Close(fd) -} diff --git a/tests/sshfs-benchmark.bash b/tests/sshfs-benchmark.bash deleted file mode 100755 index 13c7a0f..0000000 --- a/tests/sshfs-benchmark.bash +++ /dev/null @@ -1,91 +0,0 @@ -#!/bin/bash - -set -eu - -function cleanup { - cd "$LOCAL_TMP" - fusermount -u gocryptfs.mnt - rm -Rf "$SSHFS_TMP" - fusermount -u sshfs.mnt - cd / - rm -Rf "$LOCAL_TMP" -} - -function prepare_mounts { - LOCAL_TMP=$(mktemp -d -t "$MYNAME.XXX") - cd $LOCAL_TMP - echo "working directory: $PWD" - mkdir sshfs.mnt gocryptfs.mnt - sshfs $HOST:/tmp sshfs.mnt - echo "sshfs mounted: $HOST:/tmp -> sshfs.mnt" - trap cleanup EXIT - SSHFS_TMP=$(mktemp -d "sshfs.mnt/$MYNAME.XXX") - mkdir $SSHFS_TMP/gocryptfs.crypt - gocryptfs -q -init -extpass "echo test" -scryptn=10 $SSHFS_TMP/gocryptfs.crypt - gocryptfs -q -extpass "echo test" $SSHFS_TMP/gocryptfs.crypt gocryptfs.mnt - echo "gocryptfs mounted: $SSHFS_TMP/gocryptfs.crypt -> gocryptfs.mnt" -} - -function etime { - T=$(/usr/bin/time -f %e -o /dev/stdout "$@") - LC_ALL=C printf %20.2f "$T" -} - -MYNAME=$(basename "$0") -HOST=$1 - -prepare_mounts - -echo -echo "$MYNAME: sshfs gocryptfs-on-sshfs" -echo -n "git init " -etime git init -q "$SSHFS_TMP/git1" -etime git init -q gocryptfs.mnt/git1 -echo - -git init -q git2 -echo -n "rsync " -etime rsync -a --no-group git2 "$SSHFS_TMP" -etime rsync -a --no-group git2 gocryptfs.mnt -echo - -echo -n "rm -R " -etime rm -R "$SSHFS_TMP/git1" "$SSHFS_TMP/git2" -etime rm -R gocryptfs.mnt/git1 gocryptfs.mnt/git2 -echo - -echo -n "mkdir " -pushd "$SSHFS_TMP" > /dev/null -etime mkdir $(seq 1 20) -popd > /dev/null -cd gocryptfs.mnt -etime mkdir $(seq 1 20) -cd .. -echo - -echo -n "rmdir " -pushd "$SSHFS_TMP" > /dev/null -etime rmdir $(seq 1 20) -popd > /dev/null -cd gocryptfs.mnt -etime rmdir $(seq 1 20) -cd .. -echo - -echo -n "touch " -pushd "$SSHFS_TMP" > /dev/null -etime touch $(seq 101 120) -popd > /dev/null -cd gocryptfs.mnt -etime touch $(seq 101 120) -cd .. -echo - -echo -n "rm " -pushd "$SSHFS_TMP" > /dev/null -etime rm $(seq 101 120) -popd > /dev/null -cd gocryptfs.mnt -etime rm $(seq 101 120) -cd .. -echo diff --git a/tests/stress_tests/extractloop.bash b/tests/stress_tests/extractloop.bash deleted file mode 100755 index cdd0c25..0000000 --- a/tests/stress_tests/extractloop.bash +++ /dev/null @@ -1,135 +0,0 @@ -#!/bin/bash -# -# Mount a gocryptfs filesystem somewhere on /tmp, then run two parallel -# infinite loops inside that do the following: -# 1) Extract linux-3.0.tar.gz -# 2) Verify the md5sums -# 3) Delete, go to (1) -# -# This test is good at discovering inode-related memory leaks because it creates -# huge numbers of files. -# -# See Documentation/extractloop.md for example output. - -if [[ -z $TMPDIR ]]; then - TMPDIR=/var/tmp - export TMPDIR -fi - -set -eu - -# Run at low priority to not annoy the user too much -renice 19 $$ - -cd "$(dirname "$0")" -MD5="$PWD/linux-3.0.md5sums" -MYNAME=$(basename "$0") -source ../fuse-unmount.bash - -# Setup dirs -../dl-linux-tarball.bash -cd $TMPDIR -EXTRACTLOOP_TMPDIR=$TMPDIR/extractloop_tmpdir -mkdir -p $EXTRACTLOOP_TMPDIR -CRYPT=$(mktemp -d $EXTRACTLOOP_TMPDIR/XXX) -CSV=$CRYPT.csv -MNT=$CRYPT.mnt -mkdir $MNT - -function check_md5sums { - if command -v md5sum > /dev/null ; then - md5sum --status -c $1 - else - # MacOS / darwin which do not have the md5sum utility - # installed by default - echo "Skipping md5sum (not installed). Hint: brew install md5sha1sum" - fi -} - -# Mount -FSPID=0 -FS="" -if [ $# -eq 1 ] && [ "$1" == "-encfs" ]; then - FS=encfs - echo "Testing EncFS" - encfs --extpass="echo test" --standard $CRYPT $MNT > /dev/null -elif [ $# -eq 1 ] && [ "$1" == "-loopback" ]; then - FS=loopback - echo "Testing go-fuse loopback" - rm -f /tmp/loopback*.memprof - loopback -memprofile=/tmp/loopback $MNT $CRYPT & - FSPID=$(jobs -p) - disown -else - FS=gocryptfs - echo "Testing gocryptfs" - gocryptfs -q -init -extpass="echo test" -scryptn=10 $CRYPT - gocryptfs -q -extpass="echo test" -nosyslog -fg $CRYPT $MNT & - FSPID=$(jobs -p) - disown - #gocryptfs -q -extpass="echo test" -nosyslog -memprofile /tmp/extractloop-mem $CRYPT $MNT -fi -echo "Test dir: $CRYPT" -# Sleep to make sure the FS is already mounted on MNT -sleep 1 -cd $MNT - -ln -v -sTf $CSV /tmp/extractloop.csv 2> /dev/null || true # fails on MacOS, ignore - -# Cleanup trap -# Note: gocryptfs may have already umounted itself because bash relays SIGINT -# Just ignore unmount errors. -trap cleanup_exit EXIT - -function cleanup_exit { - if [[ $FS == loopback ]]; then - # SIGUSR1 causes loopback to write the memory profile to disk - kill -USR1 $FSPID - fi - cd / - rm -Rf $CRYPT - fuse-unmount -z $MNT || true - rmdir $MNT -} - -function loop { - ID=$1 - mkdir $ID - cd $ID - - echo "[looper $ID] Starting" - - N=1 - RSS=0 - while true - do - t1=$SECONDS - tar xf /tmp/linux-3.0.tar.gz --exclude linux-3.0/arch/microblaze/boot/dts/system.dts - # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - # Exclude the one symlink in the tarball - causes problems on MacOS: "Can't set permissions to 0755" - check_md5sums $MD5 - rm -R linux-3.0 - t2=$SECONDS - delta=$((t2-t1)) - if [[ $FSPID -gt 0 && -d /proc ]]; then - RSS=$(grep VmRSS /proc/$FSPID/status | tr -s ' ' | cut -f2 -d ' ') - echo "$N,$SECONDS,$RSS,$delta" >> $CSV - fi - echo "[looper $ID] Iteration $N done, $delta seconds, RSS $RSS kiB" - let N=$N+1 - done -} - -function memprof { - while true; do - kill -USR1 $FSPID - sleep 60 - done -} - -loop 1 & -loop 2 & -if [[ $FS == loopback ]]; then - memprof & -fi -wait diff --git a/tests/stress_tests/extractloop_plot_csv.m b/tests/stress_tests/extractloop_plot_csv.m deleted file mode 100755 index be80656..0000000 --- a/tests/stress_tests/extractloop_plot_csv.m +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/octave - -r=csvread('/tmp/extractloop.csv'); -figure('Position',[100,100,1600,800]); -[hAx,hLine1,hLine2] = plotyy(r(:,2), r(:,3)/1024, r(:,2), r(:,4)); -xlabel('Runtime (seconds)') -set(hLine1, 'LineWidth', 1, 'Marker', 'o', 'MarkerSize', 10) -% LineWidth also sets the marker drawing thickness -set(hLine2, 'LineWidth', 1, 'LineStyle', 'none', 'Marker', '*', 'MarkerSize', 10) -ylabel(hAx(1), 'RSS (MiB)') -ylabel(hAx(2), 'Iteration Time (seconds)') -grid on; -drawnow; -disp('press enter to exit'); -input(''); diff --git a/tests/stress_tests/fsstress-encfs.bash b/tests/stress_tests/fsstress-encfs.bash deleted file mode 120000 index 139d4ec..0000000 --- a/tests/stress_tests/fsstress-encfs.bash +++ /dev/null @@ -1 +0,0 @@ -fsstress-gocryptfs.bash \ No newline at end of file diff --git a/tests/stress_tests/fsstress-gocryptfs.bash b/tests/stress_tests/fsstress-gocryptfs.bash deleted file mode 100755 index 26e7bc0..0000000 --- a/tests/stress_tests/fsstress-gocryptfs.bash +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/bash -# -# Mount a go-fuse loopback filesystem in /tmp and run fsstress against it -# in an infinite loop, only exiting on errors. -# -# When called as "fsstress-gocryptfs.bash", a gocryptfs filesystem is tested -# instead. -# -# This test used to fail on older go-fuse versions after a few iterations with -# errors like this: -# "rm: cannot remove ‘/tmp/b/fsstress.2/pd/d1XXX/f4a’: No such file or directory" -# -# Nowadays it should pass an indefinite number of iterations. - -set -eu - -# Init variables to default values if unset or empty -export TMPDIR=${TMPDIR:-/var/tmp} -DEBUG=${DEBUG:-0} - -cd "$(dirname "$0")" -MYNAME=$(basename $0) -source ../fuse-unmount.bash - -# fsstress binary -FSSTRESS=$HOME/fuse-xfstests/ltp/fsstress -if [[ ! -x $FSSTRESS ]] -then - echo "$MYNAME: fsstress binary not found at $FSSTRESS" - echo "Please clone and compile https://github.com/rfjakob/fuse-xfstests" - exit 1 -fi - -# Backing directory -DIR=$(mktemp -d $TMPDIR/$MYNAME.XXX) -# Mountpoint -MNT="$DIR.mnt" -mkdir $MNT - -# Set the GOPATH variable to the default if it is empty -GOPATH=$(go env GOPATH) - -# Clean up old mounts -for i in $(mount | cut -d" " -f3 | grep $TMPDIR/$MYNAME) ; do - fusermount -u $i -done - -# FS-specific compile and mount -if [[ $MYNAME = fsstress-loopback.bash ]]; then - echo -n "Recompile go-fuse loopback: " - cd $GOPATH/src/github.com/hanwen/go-fuse/example/loopback - git describe - go build && go install - OPTS="-q" - if [[ $DEBUG -eq 1 ]]; then - OPTS="-debug" - fi - $GOPATH/bin/loopback $OPTS "$MNT" "$DIR" & - disown -elif [[ $MYNAME = fsstress-gocryptfs.bash ]]; then - echo "Recompile gocryptfs" - cd $GOPATH/src/github.com/rfjakob/gocryptfs - ./build.bash # also prints the version - $GOPATH/bin/gocryptfs -q -init -extpass "echo test" -scryptn=10 $DIR - $GOPATH/bin/gocryptfs -q -extpass "echo test" -nosyslog -fusedebug=$DEBUG $DIR $MNT -elif [[ $MYNAME = fsstress-encfs.bash ]]; then - encfs --extpass "echo test" --standard $DIR $MNT -else - echo Unknown mode: $MYNAME - exit 1 -fi - -sleep 0.5 -echo -n "Waiting for mount: " -while ! grep "$(basename $MNT) fuse" /proc/self/mounts > /dev/null -do - sleep 1 - echo -n x -done -echo " ok: $MNT" - -# Cleanup trap -trap "kill %1 ; cd / ; fuse-unmount -z $MNT ; rm -rf $DIR $MNT" EXIT - -echo "Starting fsstress loop" -N=1 -while true -do - echo "$N ................................. $(date)" - mkdir $MNT/fsstress.1 - echo -n " fsstress.1 " - $FSSTRESS -r -m 8 -n 1000 -d $MNT/fsstress.1 & - wait - - mkdir $MNT/fsstress.2 - echo -n " fsstress.2 " - $FSSTRESS -p 20 -r -m 8 -n 1000 -d $MNT/fsstress.2 & - wait - - mkdir $MNT/fsstress.3 - echo -n " fsstress.3 " - $FSSTRESS -p 4 -z -f rmdir=10 -f link=10 -f creat=10 -f mkdir=10 \ - -f rename=30 -f stat=30 -f unlink=30 -f truncate=20 -m 8 \ - -n 1000 -d $MNT/fsstress.3 & - wait - - echo " rm" - rm -Rf $MNT/* - - let N=$N+1 -done - diff --git a/tests/stress_tests/fsstress-loopback.bash b/tests/stress_tests/fsstress-loopback.bash deleted file mode 120000 index 139d4ec..0000000 --- a/tests/stress_tests/fsstress-loopback.bash +++ /dev/null @@ -1 +0,0 @@ -fsstress-gocryptfs.bash \ No newline at end of file diff --git a/tests/stress_tests/fsstress.collect-crashes.sh b/tests/stress_tests/fsstress.collect-crashes.sh deleted file mode 100755 index f315e2e..0000000 --- a/tests/stress_tests/fsstress.collect-crashes.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -cd ~/go/src/github.com/rfjakob/gocryptfs/tests/stress_tests || exit 1 -export TMPDIR=/mnt/ext4-ramdisk -# Check that TMPDIR is writeable -touch "$TMPDIR/$$" || exit 1 -rm "$TMPDIR/$$" -LOGDIR=/tmp/$$ -mkdir "$LOGDIR" || exit 1 -echo "Logging to LOGDIR=$LOGDIR, TMPDIR=$TMPDIR" -for i in $(seq 1 1000) ; do - set -x - LOG="$LOGDIR/fsstress.log.$(date --iso).$i" - if [[ -e $LOG ]]; then - continue - fi - rm -Rf "$TMPDIR"/fsstress* - # 100000 lines ...... ~7 MB - # 1000000 lines ..... ~70 MB - # 10000000 lines .... ~700 MB - DEBUG=1 ./fsstress-loopback.bash 2>&1 | tail -1000000 > "$LOG" -done diff --git a/tests/stress_tests/linux-3.0.md5sums b/tests/stress_tests/linux-3.0.md5sums deleted file mode 100644 index 2cf6349..0000000 --- a/tests/stress_tests/linux-3.0.md5sums +++ /dev/null @@ -1,36782 +0,0 @@ -8a44756de487a56f758ee3dc5d8b1a3f linux-3.0/virt/kvm/kvm_main.c -11b17bdc92061b7b96f7bc3e3653db86 linux-3.0/virt/kvm/irq_comm.c -b806e1725ecc18c4c54c8286e75b86a9 linux-3.0/virt/kvm/iommu.c -89287c0ee08927ac145b6bbbff6973ae linux-3.0/virt/kvm/iodev.h -78b06af814b09a40205250e7ce006bc2 linux-3.0/virt/kvm/ioapic.h -260e5541c3ecfff787430025a115d26d linux-3.0/virt/kvm/ioapic.c -6a6ca7e99fb6a24f1c24d7a9d481c26f linux-3.0/virt/kvm/eventfd.c -fb14b17966783d02a91fc3fc14fb3a6d linux-3.0/virt/kvm/coalesced_mmio.h -55b7c8870ea82a5fbbf54b605acb1187 linux-3.0/virt/kvm/coalesced_mmio.c -335cd037b29751033a198be10597227b linux-3.0/virt/kvm/async_pf.h -25e3d49cb7854c78e00d206a9419d817 linux-3.0/virt/kvm/async_pf.c -2b5dd9a77921b3988322581c663db4bf linux-3.0/virt/kvm/assigned-dev.c -5482920d7d3d151945a4df62a1c7f024 linux-3.0/virt/kvm/Kconfig -047de60ac631660198bdf5ffbe6bb62f linux-3.0/usr/initramfs_data.S -4f8151ebfa1693b19858c5856b43660a linux-3.0/usr/gen_init_cpio.c -f9e1fdbf7a3ade26cd9842cc8506dad9 linux-3.0/usr/Makefile -01eef3783a737e087b97664ecd5faaa9 linux-3.0/usr/Kconfig -530ec264818fd9d7f0810479b3b4e360 linux-3.0/usr/.gitignore -683865743f1dc3997fc7a987a2998a1b linux-3.0/tools/virtio/virtio_test.c -db868860cf4da73eb6499489cc4e096a linux-3.0/tools/virtio/vhost_test/vhost_test.c -e6486bef9d9d891d8532d19c2581d3d8 linux-3.0/tools/virtio/vhost_test/Makefile -9b0e58084141e0dea3340bc3b1211b00 linux-3.0/tools/virtio/linux/virtio.h -50bec7f312c5d26b3db056275ffd7341 linux-3.0/tools/virtio/linux/slab.h -b0c3aee60e5132c53c2ad6b29b93fd49 linux-3.0/tools/virtio/linux/device.h -965a7f7e18ba6d2c0825285c5b58e0d1 linux-3.0/tools/virtio/Makefile -c987e0eec87236de3c1ee9df2f65bc28 linux-3.0/tools/usb/testusb.c -9f629e683ca39333b7f69d727ea9e0c6 linux-3.0/tools/usb/hcd-tests.sh -391b77acfb70985d3f670788f9ebd031 linux-3.0/tools/usb/ffs-test.c -092ccf63c2f76a4ce671981e0a4b3ecc linux-3.0/tools/usb/Makefile -1651035169ef26caf3f4f71ac3ae4f3d linux-3.0/tools/testing/ktest/sample.conf -34162d5a48aba4f15c3e89c22f54aa2e linux-3.0/tools/testing/ktest/ktest.pl -111e72b075bd0f17158cffaf3c445748 linux-3.0/tools/testing/ktest/compare-ktest-sample.pl -c2f4988d33bdf8710c3a83371f3cfecc linux-3.0/tools/slub/slabinfo.c -f9744712354b26eda999e4e751cbbbef linux-3.0/tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c -fc632a92f1476cc2e69e3c4149ed0925 linux-3.0/tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.8 -a5c7116b041fb4818b47af6df1396bf6 linux-3.0/tools/power/x86/x86_energy_perf_policy/Makefile -40337533c5345608c113c70fd8ba84e7 linux-3.0/tools/power/x86/turbostat/turbostat.c -90016eabb766a9edf4f8a8e3a33bce3f linux-3.0/tools/power/x86/turbostat/turbostat.8 -5d75eddb064a1b28956d05bf3dea82bd linux-3.0/tools/power/x86/turbostat/Makefile -f8214f548f349d425897fbfe65be6318 linux-3.0/tools/perf/util/xyarray.h -90c2dc70343ff978cceeb59787b6cd2b linux-3.0/tools/perf/util/xyarray.c -9d6feb3843bd718f8bc953e411fc15d2 linux-3.0/tools/perf/util/wrapper.c -27c4f08d17f80653d99432fa4613f03f linux-3.0/tools/perf/util/values.h -1ccbd280b50970cc1a6303b7e28189d0 linux-3.0/tools/perf/util/values.c -aaf94ff39fc686ce6b49d26691177775 linux-3.0/tools/perf/util/util.h -1cd2c147d326b4b1e0541afc937a254a linux-3.0/tools/perf/util/util.c -b2cd2a25ff8f913820e85230ead5de32 linux-3.0/tools/perf/util/usage.c -ae0f8e45c132c5d81e4e932186d280f5 linux-3.0/tools/perf/util/ui/util.h -16087df9dd67dd7cc945c92bf43c3db0 linux-3.0/tools/perf/util/ui/util.c -fe12940dfcf064637eaf8ef196821d71 linux-3.0/tools/perf/util/ui/ui.h -eed13ffa4256757394482782814626bb linux-3.0/tools/perf/util/ui/setup.c -e2ce908f0214c7c33194071232a24cbc linux-3.0/tools/perf/util/ui/progress.h -b4869f9fc603e9e7411356e19c523c17 linux-3.0/tools/perf/util/ui/progress.c -065c7a777cca0a1371b4c250cb8773b1 linux-3.0/tools/perf/util/ui/libslang.h -89472959a3ab96609acb44fd68c2fcdb linux-3.0/tools/perf/util/ui/helpline.h -9d8240be045ca8686583f27e31f1286f linux-3.0/tools/perf/util/ui/helpline.c -071fa1511cbb5b647298dea89b526b05 linux-3.0/tools/perf/util/ui/browsers/top.c -b6787c67527164c3627d03c46f599ab2 linux-3.0/tools/perf/util/ui/browsers/map.h -71490d5f10e2fef12862d0a8f97fe5f6 linux-3.0/tools/perf/util/ui/browsers/map.c -8bbe9afc81156c13620bdcb717632d66 linux-3.0/tools/perf/util/ui/browsers/hists.c -34bdee201a1830e5daaf388e1d5d4dbd linux-3.0/tools/perf/util/ui/browsers/annotate.c -ca7f4a70d8621b36e09b8ae13eeafa33 linux-3.0/tools/perf/util/ui/browser.h -38488cf8d4eded0d4a052cac606fbdb9 linux-3.0/tools/perf/util/ui/browser.c -f152c7fa179e1b64508583f82fe81b3e linux-3.0/tools/perf/util/types.h -8255bedda876262117c36d4ebfabeee0 linux-3.0/tools/perf/util/trace-event.h -a11a6b4989f700d5d750f68da4cf37f5 linux-3.0/tools/perf/util/trace-event-scripting.c -ec45047d29cb48d51fb78b73be936120 linux-3.0/tools/perf/util/trace-event-read.c -3b7d01975bb448392e7c1bd109547688 linux-3.0/tools/perf/util/trace-event-parse.c -3b76ac45bbfcd6577d312a86b11fb428 linux-3.0/tools/perf/util/trace-event-info.c -a338904b2f4241175c31ef880070f5c5 linux-3.0/tools/perf/util/top.h -edfc85fdd104d33b71be7e78dcd7a7c2 linux-3.0/tools/perf/util/top.c -95d594627a9567524cad3c5f1a19a963 linux-3.0/tools/perf/util/thread_map.h -54e1fee3778469f862fc2071393d2bf6 linux-3.0/tools/perf/util/thread_map.c -5d8b4a93366d6c09847df3167c41daa0 linux-3.0/tools/perf/util/thread.h -f2566439d697770ee419a515f17cc870 linux-3.0/tools/perf/util/thread.c -4353817e9444200f8daafe4cc336245b linux-3.0/tools/perf/util/symbol.h -ed6bbcf665cb44265fd42c7da152c8fb linux-3.0/tools/perf/util/symbol.c -0930549b78d76bfeb2e6b1f3fd1d992a linux-3.0/tools/perf/util/svghelper.h -967d2f0168866591ea0fee83d68b76a9 linux-3.0/tools/perf/util/svghelper.c -6a70054800a47878263641ad3bd27f13 linux-3.0/tools/perf/util/strlist.h -b44f063cf1c8b3853df04c493222cdd9 linux-3.0/tools/perf/util/strlist.c -677719d9975a83e5961e3f2e9a4fd0a9 linux-3.0/tools/perf/util/string.c -3e453c2e89cdd10a967beb599ff4f5ab linux-3.0/tools/perf/util/strfilter.h -683288a8170da2ada41629585f01b442 linux-3.0/tools/perf/util/strfilter.c -0f24c529687cc306396ffdd4c74f4eba linux-3.0/tools/perf/util/strbuf.h -d8594be92a6cb36c0795a11b73035738 linux-3.0/tools/perf/util/strbuf.c -bf70243cf567a7b94022bce1751d0c53 linux-3.0/tools/perf/util/sort.h -c90256d7afb14587eeb8e58f646ac2f6 linux-3.0/tools/perf/util/sort.c -fbfebd61f4582411743caa639d1e6475 linux-3.0/tools/perf/util/sigchain.h -97611192bf70902c9aa1d7d8ec7fb791 linux-3.0/tools/perf/util/sigchain.c -bb39fad37100d36a84bedd73b5089c7a linux-3.0/tools/perf/util/setup.py -33b1a24a4e7fccb8b21a545244b13123 linux-3.0/tools/perf/util/session.h -ad787ecfe904fcdcb55492a4040b495c linux-3.0/tools/perf/util/session.c -f2a7e52e215780cb13de593eeec8780d linux-3.0/tools/perf/util/scripting-engines/trace-event-python.c -963c73397343bc8743906d7930b52f21 linux-3.0/tools/perf/util/scripting-engines/trace-event-perl.c -00a03b81b63f62997cf3e7c5e325a481 linux-3.0/tools/perf/util/run-command.h -6c13c4929ac7ed3682daad3a8fecf560 linux-3.0/tools/perf/util/run-command.c -8005e383cb16095095ad5722149cd395 linux-3.0/tools/perf/util/quote.h -fb53d259350a7b6fc10953415140efaa linux-3.0/tools/perf/util/quote.c -2b20cbcf39c0cb1f8ac745185b0c1229 linux-3.0/tools/perf/util/python.c -4e31e03166484444f238c8ebacb7fba1 linux-3.0/tools/perf/util/pstack.h -763f707263c68cb567d23e7b9c55e00c linux-3.0/tools/perf/util/pstack.c -5e6ceff892a7f172359ca61ea0607850 linux-3.0/tools/perf/util/probe-finder.h -50822b01a2c7fb20820776e0e8c0c83c linux-3.0/tools/perf/util/probe-finder.c -e1b8d87748fe2b2a5219da819110f814 linux-3.0/tools/perf/util/probe-event.h -d876320c52c0c2610b454099a2f141fc linux-3.0/tools/perf/util/probe-event.c -59cb18def9d8bd1b5b04d0a9a1677404 linux-3.0/tools/perf/util/path.c -911bde63991515b7608fe1e4c3eaf59f linux-3.0/tools/perf/util/parse-options.h -695e64d67dd04ea610dfc73957c141dc linux-3.0/tools/perf/util/parse-options.c -f1b81f7dace88fa8a12715b3a41c943f linux-3.0/tools/perf/util/parse-events.h -aac4d09d352f98cc58d979a46a5e841c linux-3.0/tools/perf/util/parse-events.c -dc856e507c1105eb3f2e4660a356a693 linux-3.0/tools/perf/util/pager.c -97130129524daf59c274427fa928afa7 linux-3.0/tools/perf/util/map.h -94efd228d9c019de996c47fd8040832a linux-3.0/tools/perf/util/map.c -cc33a420384a78c0ed8737724fc67410 linux-3.0/tools/perf/util/levenshtein.h -4488ae93a303f331fc6e679cd3589985 linux-3.0/tools/perf/util/levenshtein.c -a807dd338e16a75a16f4da08349a1b94 linux-3.0/tools/perf/util/include/linux/types.h -69d15c31527f01f99796d1e1a414e38f linux-3.0/tools/perf/util/include/linux/string.h -d9335a229992b0225cd12fd1b706705a linux-3.0/tools/perf/util/include/linux/rbtree.h -d29a0d3558d2e321bacfa9c4c403052f linux-3.0/tools/perf/util/include/linux/prefetch.h -bf0f255442e21bfe6021af139e91aa5a linux-3.0/tools/perf/util/include/linux/poison.h -3560c691066e59a53b8f980fc40a350c linux-3.0/tools/perf/util/include/linux/module.h -4215523f252c8e229bab367633362869 linux-3.0/tools/perf/util/include/linux/list.h -b006060ab731a89573b378aa95227a14 linux-3.0/tools/perf/util/include/linux/linkage.h -919a2056fc880f1e6549e28b8f1a2683 linux-3.0/tools/perf/util/include/linux/kernel.h -47ede60d0dd00b0669e4329fb859a7d3 linux-3.0/tools/perf/util/include/linux/hash.h -cf687f1506e6035c235c998141752bbc linux-3.0/tools/perf/util/include/linux/ctype.h -34e07f1daa502377dccafc130e567c93 linux-3.0/tools/perf/util/include/linux/const.h -e11894eaf87b9762a2d4956a9f7d6456 linux-3.0/tools/perf/util/include/linux/compiler.h -5b3702641c0a2779723e19d6d18408ac linux-3.0/tools/perf/util/include/linux/bitops.h -2c31af15add0e60b8b8880fdd83be745 linux-3.0/tools/perf/util/include/linux/bitmap.h -331e4ed3b5453ad70a7a24c23b8d4a20 linux-3.0/tools/perf/util/include/dwarf-regs.h -8ced7bfa99ec38686579bd464da28ebc linux-3.0/tools/perf/util/include/asm/uaccess.h -a863ef5f1c11831afdaf974a863a0a63 linux-3.0/tools/perf/util/include/asm/system.h -7b21b66ba6e9d79afaedf7ae0a17c827 linux-3.0/tools/perf/util/include/asm/swab.h -fdc86d546a33c1348a6b5fd0c5004c9e linux-3.0/tools/perf/util/include/asm/hweight.h -156543607cb7712d966590df378d99d6 linux-3.0/tools/perf/util/include/asm/dwarf2.h -a07a2ee4966f34f01011a77d7a78b154 linux-3.0/tools/perf/util/include/asm/cpufeature.h -89e4ca58025f5ec28310df44486bf510 linux-3.0/tools/perf/util/include/asm/byteorder.h -a5fb921d1d3bb430277b56af9cdf367d linux-3.0/tools/perf/util/include/asm/bug.h -7b21b66ba6e9d79afaedf7ae0a17c827 linux-3.0/tools/perf/util/include/asm/asm-offsets.h -26a809d7880dbdbf03e6664e7adaf183 linux-3.0/tools/perf/util/include/asm/alternative-asm.h -356d340d692d8afce0ddbf5731ab599d linux-3.0/tools/perf/util/hweight.c -a734133f6603d2002854d12532f5c6c9 linux-3.0/tools/perf/util/hist.h -278df634ca2e7ff2b8983bd3f42b2f1f linux-3.0/tools/perf/util/hist.c -eef7f3308b426fcf3a5511acd7f3a585 linux-3.0/tools/perf/util/help.h -f2fef39347d1ee80b98d1b737a26f135 linux-3.0/tools/perf/util/help.c -c8e006fa8c4ccffeed19f0572bf45a38 linux-3.0/tools/perf/util/header.h -1484d479d77752f7d0407ac688734713 linux-3.0/tools/perf/util/header.c -b70c1502642732639df06e50395838c2 linux-3.0/tools/perf/util/generate-cmdlist.sh -5d4d9dfee7c28134a3a24bc45166a71d linux-3.0/tools/perf/util/exec_cmd.h -a1f608c75c66822e6860e954649bcd34 linux-3.0/tools/perf/util/exec_cmd.c -25540eed5eba2cc5b055e722b9d5ebfb linux-3.0/tools/perf/util/evsel.h -7f9bb25644756342ad1ba0b5daee8f8d linux-3.0/tools/perf/util/evsel.c -c4dd1742b7c4ce8a0ceb7346a285d579 linux-3.0/tools/perf/util/evlist.h -d3978a55fb5ac4e922f551d55f264fb0 linux-3.0/tools/perf/util/evlist.c -d23e210dc8bdbc9280955f33a6c20811 linux-3.0/tools/perf/util/event.h -0a1301317c452bf3f74a8cf64eee208a linux-3.0/tools/perf/util/event.c -942dd3cd3bc14d3098fa1d8ecbe46a79 linux-3.0/tools/perf/util/environment.c -70c24620d29d81c8bca3d99367737572 linux-3.0/tools/perf/util/debugfs.h -7560f5c45ac1e89517d317a7e1d5538c linux-3.0/tools/perf/util/debugfs.c -93bb182dbc81d2ae2e542e8726c1750d linux-3.0/tools/perf/util/debug.h -4349c0faba1298273bca8d1f23702fae linux-3.0/tools/perf/util/debug.c -a94bafafc732ff16a7625aab71e53a16 linux-3.0/tools/perf/util/ctype.c -febe42237319d2802e38f6f49082a726 linux-3.0/tools/perf/util/cpumap.h -97fd10ab554d8f516e90328636a8e39e linux-3.0/tools/perf/util/cpumap.c -47d3dde38b91a1f829bcab154041e77e linux-3.0/tools/perf/util/config.c -cb83a74f6422b4ab0839da201862778a linux-3.0/tools/perf/util/color.h -186a3744f5176b63fef77922e6c84e00 linux-3.0/tools/perf/util/color.c -5bd4ed1243f792b66d0fc37d95f761a9 linux-3.0/tools/perf/util/cgroup.h -81d6bb6cec2a9098daf1f70ff798867f linux-3.0/tools/perf/util/cgroup.c -83ec1ebe9255598be889ef5649d2f5d2 linux-3.0/tools/perf/util/callchain.h -a4551bdfd47931396babbfa57f99df3e linux-3.0/tools/perf/util/callchain.c -d675a402ebf5b067448aaa0f42d5a828 linux-3.0/tools/perf/util/cache.h -01663d41bbd5ec2ab76e6d24fd9b9e9c linux-3.0/tools/perf/util/build-id.h -98e3e09e5b508d9fdb0178b36df52802 linux-3.0/tools/perf/util/build-id.c -fd0fa57669c128e50b2805884812c97e linux-3.0/tools/perf/util/bitmap.c -74489edf6a4de9abfc6288599fe27391 linux-3.0/tools/perf/util/annotate.h -051b18ebe1bbea9fa5a999596a032ec3 linux-3.0/tools/perf/util/annotate.c -7847df3719476d031225307476351c8b linux-3.0/tools/perf/util/alias.c -32421cca4eaacfc02ec3f50f8de32417 linux-3.0/tools/perf/util/abspath.c -47ac78c4d9144f8ab2fe4e431e062320 linux-3.0/tools/perf/util/PERF-VERSION-GEN -481c4fd645bd4c1d7ae2469f60fd0197 linux-3.0/tools/perf/scripts/python/syscall-counts.py -d6cc12bb444eb2798e1c9117d56ece12 linux-3.0/tools/perf/scripts/python/syscall-counts-by-pid.py -1dedfc25e63aed3849b8d2632b9f25f5 linux-3.0/tools/perf/scripts/python/sctop.py -eb6947be1ce66560795eeae0a6eb729c linux-3.0/tools/perf/scripts/python/sched-migration.py -f9b0b1011c1e6ebc032b148dd4ecbea2 linux-3.0/tools/perf/scripts/python/netdev-times.py -358c2cc8ea7f55856beb5a7ecf33c2ed linux-3.0/tools/perf/scripts/python/futex-contention.py -8bfed65ef51a1c54ca72aacbe2dd9d26 linux-3.0/tools/perf/scripts/python/failed-syscalls-by-pid.py -cf557a785ef7546e18c0c851d6e4e774 linux-3.0/tools/perf/scripts/python/check-perf-trace.py -7c6887d5738be8c92f9fd119af690e96 linux-3.0/tools/perf/scripts/python/bin/syscall-counts-report -61a81145b068412612ded7691a4d2330 linux-3.0/tools/perf/scripts/python/bin/syscall-counts-record -c6b25fa68c7d4b360fae3c801e746573 linux-3.0/tools/perf/scripts/python/bin/syscall-counts-by-pid-report -61a81145b068412612ded7691a4d2330 linux-3.0/tools/perf/scripts/python/bin/syscall-counts-by-pid-record -8ff62ed8c6eef5f07f0b067bb89e083a linux-3.0/tools/perf/scripts/python/bin/sctop-report -61a81145b068412612ded7691a4d2330 linux-3.0/tools/perf/scripts/python/bin/sctop-record -cded78feb4f7110a7a371d694e51697a linux-3.0/tools/perf/scripts/python/bin/sched-migration-report -ac9fa2d6d25fd94236de21b9b6b1f2eb linux-3.0/tools/perf/scripts/python/bin/sched-migration-record -c6326c54c275cc9657d7df097deae0a0 linux-3.0/tools/perf/scripts/python/bin/netdev-times-report -439e3fee34ecef92d106a5639f7a1372 linux-3.0/tools/perf/scripts/python/bin/netdev-times-record -bb6878c428ec3b49bbcdb8935af4c70d linux-3.0/tools/perf/scripts/python/bin/futex-contention-report -06326a949892ef3d1a7e0d1c2558ccb6 linux-3.0/tools/perf/scripts/python/bin/futex-contention-record -3010bda11c72c3905a21a51c37ecac34 linux-3.0/tools/perf/scripts/python/bin/failed-syscalls-by-pid-report -29ad806ebf367d8955f920696aae0a3b linux-3.0/tools/perf/scripts/python/bin/failed-syscalls-by-pid-record -05a0d525cb7b9fe466b6c33d984da6e7 linux-3.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Util.py -cf3ab1af1b3edd9f30763a5abf1c9c7d linux-3.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/SchedGui.py -c7a6239273f8989b7d1bd1e0f0ec0b6b linux-3.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/Core.py -e70accb6d24004c11aac13f06e2c8a3e linux-3.0/tools/perf/scripts/python/Perf-Trace-Util/Context.c -ac89ba60a8aad3826379e0aaf48fc5fc linux-3.0/tools/perf/scripts/perl/workqueue-stats.pl -af17763cbaa4079cff62ec1af1113dcc linux-3.0/tools/perf/scripts/perl/wakeup-latency.pl -80b48530e606a997390f869bc0701493 linux-3.0/tools/perf/scripts/perl/rwtop.pl -d473861fd7e73a1abc384f7a25867c37 linux-3.0/tools/perf/scripts/perl/rw-by-pid.pl -46513fc784eec1ca19c127a4280ac81e linux-3.0/tools/perf/scripts/perl/rw-by-file.pl -8d96f07ac80eb59ee37a48cbde2c215e linux-3.0/tools/perf/scripts/perl/failed-syscalls.pl -abd172f98b33ff8ae16f2c1e069bc3cb linux-3.0/tools/perf/scripts/perl/check-perf-trace.pl -f53739635695af80288ffdbe001e75fb linux-3.0/tools/perf/scripts/perl/bin/workqueue-stats-report -e9c224481bfa6353d92d96a700488b46 linux-3.0/tools/perf/scripts/perl/bin/workqueue-stats-record -04640f0efa55f5aa8f5b5df9fb5e14d0 linux-3.0/tools/perf/scripts/perl/bin/wakeup-latency-report -8f6c86f33c059dae01df5fbd26fb8828 linux-3.0/tools/perf/scripts/perl/bin/wakeup-latency-record -fe30bfbb976bb370aec28df22a78a22f linux-3.0/tools/perf/scripts/perl/bin/rwtop-report -5f66d67da405bdfb8d4be7fd7df9bd52 linux-3.0/tools/perf/scripts/perl/bin/rwtop-record -05569524632208cb2a585aeb56750756 linux-3.0/tools/perf/scripts/perl/bin/rw-by-pid-report -5f66d67da405bdfb8d4be7fd7df9bd52 linux-3.0/tools/perf/scripts/perl/bin/rw-by-pid-record -7a3282ec87197de664bdc3a64efa43ed linux-3.0/tools/perf/scripts/perl/bin/rw-by-file-report -4f5329582c4f5632ea91002bdce7b07b linux-3.0/tools/perf/scripts/perl/bin/rw-by-file-record -e8de6f7f10fb8024a73427db4943a8e2 linux-3.0/tools/perf/scripts/perl/bin/failed-syscalls-report -29ad806ebf367d8955f920696aae0a3b linux-3.0/tools/perf/scripts/perl/bin/failed-syscalls-record -0d1e56bd0e7fbe04a1df9cbfc5ac8b3b linux-3.0/tools/perf/scripts/perl/bin/check-perf-trace-record -002f01b29ee46d7838c43d3a03c02799 linux-3.0/tools/perf/scripts/perl/Perf-Trace-Util/typemap -ddf3a679721c41d678d642c7fa324ab6 linux-3.0/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/Util.pm -39dd8463a0f410d526a4f56c1d0b596b linux-3.0/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/Core.pm -1684dc43ade3aeb89219ef5ba826b528 linux-3.0/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/Context.pm -df94b9d697ebf63f94e038177b79ad31 linux-3.0/tools/perf/scripts/perl/Perf-Trace-Util/README -79c62345857aff7f890fec80e70d01ac linux-3.0/tools/perf/scripts/perl/Perf-Trace-Util/Makefile.PL -68890c4d69fde7b0aea586404dbba0d8 linux-3.0/tools/perf/scripts/perl/Perf-Trace-Util/Context.xs -d12be9b8d9b2924ff05edbe515d4d686 linux-3.0/tools/perf/scripts/perl/Perf-Trace-Util/Context.c -9bf5153914d71d035d769a51622e9200 linux-3.0/tools/perf/python/twatch.py -adbcd9183fbce860a52d483e012365ac linux-3.0/tools/perf/perf.h -4b369f06efeda5180b0394902b5d6282 linux-3.0/tools/perf/perf.c -3b78dfa24b5976337033eff60d81b818 linux-3.0/tools/perf/perf-archive.sh -befa13ef6d09a7ab5bd51b01040a1045 linux-3.0/tools/perf/design.txt -9c1005db312825114dac05a84a6b4538 linux-3.0/tools/perf/config/utilities.mak -714102ed9321e5c14b73c39d2ff02a43 linux-3.0/tools/perf/config/feature-tests.mak -dd6d00111244feb2ea7d61727a3582c0 linux-3.0/tools/perf/command-list.txt -19f4ef68eab22eea73bc9f74917d9f60 linux-3.0/tools/perf/builtin.h -9a33e7ec6cb3268636ce98873fe14a09 linux-3.0/tools/perf/builtin-top.c -5ee019068da739beb54bfbff615876f9 linux-3.0/tools/perf/builtin-timechart.c -59ea86b65ee276b7e75a6d75ad41a09d linux-3.0/tools/perf/builtin-test.c -d70d11ee98c0e79040658cc565f4a3e3 linux-3.0/tools/perf/builtin-stat.c -52c39c8eb6e6a5dc68c6fe809d471583 linux-3.0/tools/perf/builtin-script.c -c0db5dc4afe875906bc0fa4e443b266c linux-3.0/tools/perf/builtin-sched.c -369ceec454813c43f04c411f1c4c7f99 linux-3.0/tools/perf/builtin-report.c -14f2247687e5b47084b5628abb71d849 linux-3.0/tools/perf/builtin-record.c -bbc85358a2914ba425c67735bfa4787d linux-3.0/tools/perf/builtin-probe.c -9089968321ea3bb1c63aec792a139ed6 linux-3.0/tools/perf/builtin-lock.c -1b0be23b7ecadb935890a63d5668380d linux-3.0/tools/perf/builtin-list.c -07418f6e009013f2f601b41ee0c1fc52 linux-3.0/tools/perf/builtin-kvm.c -dc6d0e2de313431f98d3fb7f2069f509 linux-3.0/tools/perf/builtin-kmem.c -d8c388b47e1ba901a9f9502d16e99747 linux-3.0/tools/perf/builtin-inject.c -47f22592e969e26b1d225ec44b017d74 linux-3.0/tools/perf/builtin-help.c -e75bb45a9513d57f22a4c77da696c6c6 linux-3.0/tools/perf/builtin-evlist.c -81f2449168f104652b0facfc37414b0c linux-3.0/tools/perf/builtin-diff.c -cc9a982718fb9e49de911d16c357d92a linux-3.0/tools/perf/builtin-buildid-list.c -b3f8a4494000510505f075f6b43efbab linux-3.0/tools/perf/builtin-buildid-cache.c -e5d1f524185c30ed129f2f52755bac23 linux-3.0/tools/perf/builtin-bench.c -556a7e970d9776c7f62b5731349b26dd linux-3.0/tools/perf/builtin-annotate.c -6a5e6e18ba5a8c74a2a3a87fe3007d53 linux-3.0/tools/perf/bench/sched-pipe.c -47c92d40435fffea05c6ab6ce80c19d8 linux-3.0/tools/perf/bench/sched-messaging.c -2c126acc3598ee4173da3c4794ebf97b linux-3.0/tools/perf/bench/mem-memcpy.c -6c32a99dca9aa1376cb436deeb6247ae linux-3.0/tools/perf/bench/mem-memcpy-x86-64-asm.S -014cbae3e3fd89c1bc20f6fdf94dcc0e linux-3.0/tools/perf/bench/mem-memcpy-x86-64-asm-def.h -13dbab6e6aae1a02c6f87c0927658c36 linux-3.0/tools/perf/bench/mem-memcpy-arch.h -d40da208df71e4fb7a06a3965075e952 linux-3.0/tools/perf/bench/bench.h -b2ab7f57bf7a1ed26b059bfa5a3f506f linux-3.0/tools/perf/arch/x86/util/dwarf-regs.c -1c250346ac6cd5f4a09950a317e6033d linux-3.0/tools/perf/arch/x86/Makefile -a09b2b36bb4662dab71b5c01e9d59879 linux-3.0/tools/perf/arch/sparc/util/dwarf-regs.c -1c250346ac6cd5f4a09950a317e6033d linux-3.0/tools/perf/arch/sparc/Makefile -3ac6491e10782befcffe08357ab604ad linux-3.0/tools/perf/arch/sh/util/dwarf-regs.c -1c250346ac6cd5f4a09950a317e6033d linux-3.0/tools/perf/arch/sh/Makefile -7d98c6aabb69d7685599cd5cb9cc41a3 linux-3.0/tools/perf/arch/s390/util/dwarf-regs.c -1c250346ac6cd5f4a09950a317e6033d linux-3.0/tools/perf/arch/s390/Makefile -fb786f11326d27a238de6f63e785b534 linux-3.0/tools/perf/arch/powerpc/util/dwarf-regs.c -1c250346ac6cd5f4a09950a317e6033d linux-3.0/tools/perf/arch/powerpc/Makefile -00591183541c19f66d374635b35ace97 linux-3.0/tools/perf/arch/arm/util/dwarf-regs.c -1c250346ac6cd5f4a09950a317e6033d linux-3.0/tools/perf/arch/arm/Makefile -1a9ae59993e7b3afa664cf7a613953bf linux-3.0/tools/perf/Makefile -d50c40968fbd6b1d8718c1777f92cb3d linux-3.0/tools/perf/MANIFEST -93c4cac962074eabd2f6cd8d1e71b691 linux-3.0/tools/perf/Documentation/perf.txt -c29e7d0624c1a8b1dd876bfaba101fb3 linux-3.0/tools/perf/Documentation/perf-top.txt -d992f18addd44b64c81364d106c66238 linux-3.0/tools/perf/Documentation/perf-timechart.txt -ec8df46a7da46fb4f501976265f6bb21 linux-3.0/tools/perf/Documentation/perf-test.txt -2c6ec87628d25168c11451ec43c89e63 linux-3.0/tools/perf/Documentation/perf-stat.txt -5c078d2b59855efda01367ddb4b53be8 linux-3.0/tools/perf/Documentation/perf-script.txt -70af2c62628d6be1595fcebddf74090e linux-3.0/tools/perf/Documentation/perf-script-python.txt -46114d1d5d37f4b783467fde2a8a7e7f linux-3.0/tools/perf/Documentation/perf-script-perl.txt -89aa7f1008b5771306c78675cdfceb1a linux-3.0/tools/perf/Documentation/perf-sched.txt -eb4eb2fe8a19ae98f1d655f75789d329 linux-3.0/tools/perf/Documentation/perf-report.txt -af3f32892c8a3d58c459f3f3896e931e linux-3.0/tools/perf/Documentation/perf-record.txt -b490300006cc6eccf413195e5c34cbec linux-3.0/tools/perf/Documentation/perf-probe.txt -ea10c6bcd557e127411d68ce64e27edd linux-3.0/tools/perf/Documentation/perf-lock.txt -8824d507310503d0d6aa95ffa5334c81 linux-3.0/tools/perf/Documentation/perf-list.txt -8e90f7d8519a9b924af0c11fe75e0214 linux-3.0/tools/perf/Documentation/perf-kvm.txt -ff6bfa8dceb6ef56fe599feeec371d85 linux-3.0/tools/perf/Documentation/perf-kmem.txt -1d9140fdfd8ebdc35076a3a3b2e46c85 linux-3.0/tools/perf/Documentation/perf-inject.txt -6c37c424f2eb440f27530ec27fac0b55 linux-3.0/tools/perf/Documentation/perf-help.txt -3231edcdf426a1028a5a21927d887c71 linux-3.0/tools/perf/Documentation/perf-evlist.txt -4ee566a8fb667cfeb29e0386cb4fa5d2 linux-3.0/tools/perf/Documentation/perf-diff.txt -c8c55623eb52344b3b68cd4ac92fd9da linux-3.0/tools/perf/Documentation/perf-buildid-list.txt -4bbe27358a402ae6b3cc6c6497e74652 linux-3.0/tools/perf/Documentation/perf-buildid-cache.txt -30d839e7ddb9bc232bd15278bf2a4bb1 linux-3.0/tools/perf/Documentation/perf-bench.txt -8e4619e7705c2ddf1764b0972935cc8c linux-3.0/tools/perf/Documentation/perf-archive.txt -d62feb1cbe803159a746d89e0aaaa5be linux-3.0/tools/perf/Documentation/perf-annotate.txt -2f1169639fd5fca33a754016e2d3b89e linux-3.0/tools/perf/Documentation/manpage-suppress-sp.xsl -83f296aa79af8109808364d2421c1140 linux-3.0/tools/perf/Documentation/manpage-normal.xsl -a19316b1e11e779e61c30dfbea0b92f6 linux-3.0/tools/perf/Documentation/manpage-bold-literal.xsl -d0c51aa8fb59ac8d47ac045858d90543 linux-3.0/tools/perf/Documentation/manpage-base.xsl -31936e12e13942a2f2e667b657cb7611 linux-3.0/tools/perf/Documentation/manpage-1.72.xsl -f633d43ab551f7dba36e767bf6ed1f3a linux-3.0/tools/perf/Documentation/examples.txt -c3356b4a7834944003d08ad169d09618 linux-3.0/tools/perf/Documentation/asciidoc.conf -58c212793d1da971c1945c29db0e3435 linux-3.0/tools/perf/Documentation/Makefile -faeb5b249d8ac1c2e437aee897c3ea99 linux-3.0/tools/perf/CREDITS -7c74275e315752ceacf3c8b738ac7aa2 linux-3.0/tools/perf/.gitignore -b703b236e488fb789abe1dc4a21e4d1f linux-3.0/tools/firewire/nosy-dump.h -e291e490458d6a64bd419ff0e6f742df linux-3.0/tools/firewire/nosy-dump.c -e3d2c299fe53f4ec3c6a6860e822b8bc linux-3.0/tools/firewire/list.h -67354cfe4aa922b3cfc3ebc921af4471 linux-3.0/tools/firewire/decode-fcp.c -ab3c4816906ad529fa30dba43d94a8bc linux-3.0/tools/firewire/Makefile -0bdac03006c7223e763ce3ebfc6b2598 linux-3.0/sound/usb/usx2y/usx2yhwdeppcm.h -10e5905f0aa667b89961df1b7df0af44 linux-3.0/sound/usb/usx2y/usx2yhwdeppcm.c -9a0fd42bf5c863a53546479a106faf4d linux-3.0/sound/usb/usx2y/usx2y.h -31c72b242a96274f8f0458a33ec39e31 linux-3.0/sound/usb/usx2y/usbusx2yaudio.c -e1326b764eee9116901aa066ddcab5b5 linux-3.0/sound/usb/usx2y/usbusx2y.h -1ebf5287ef80f5440957d152251b63ad linux-3.0/sound/usb/usx2y/usbusx2y.c -c921038ef91f5c4cb326ea84e3333415 linux-3.0/sound/usb/usx2y/usbus428ctldefs.h -11e7e4fa26130fe459282881a8beac24 linux-3.0/sound/usb/usx2y/usb_stream.h -99f5df9f5cc2f798a01830da6e1746e3 linux-3.0/sound/usb/usx2y/usb_stream.c -531354385d52e2e41a215d9e3d840303 linux-3.0/sound/usb/usx2y/usX2Yhwdep.h -0193f199d433a0924500bcc9c4d57b2e linux-3.0/sound/usb/usx2y/usX2Yhwdep.c -666ddef60c26da2ede7927c88eef312c linux-3.0/sound/usb/usx2y/us122l.h -6340574b5ff23673a1b2eca68ddf19a9 linux-3.0/sound/usb/usx2y/us122l.c -cd385bbdac95b601a1d425505cddf069 linux-3.0/sound/usb/usx2y/Makefile -c67d7ea6556a782f051f207d5925dbde linux-3.0/sound/usb/usbaudio.h -fb6ecbfc04e97a4c85e2eb2707e052ba linux-3.0/sound/usb/urb.h -05922156a57a876fe27aecff23fd8942 linux-3.0/sound/usb/urb.c -428238069b9ad00709112596e3956b66 linux-3.0/sound/usb/quirks.h -9480f1963c4e0e189d35e82df833a8a0 linux-3.0/sound/usb/quirks.c -040ab807b72561e4739dc8205a48a0b6 linux-3.0/sound/usb/quirks-table.h -ec80cf5b9d1fd20ed379530610b7584c linux-3.0/sound/usb/proc.h -a168f2e76ea9d342b3b8890ae29cf6a7 linux-3.0/sound/usb/proc.c -d1b5d46c62a18f67a983feaad933b9ab linux-3.0/sound/usb/power.h -76da4253e3c07626dfaee30766107ad2 linux-3.0/sound/usb/pcm.h -cdd4fc911c96b352dca8624fbaf6cd6a linux-3.0/sound/usb/pcm.c -944c77c7b5dea1afb2d7c29d018a9bdf linux-3.0/sound/usb/mixer_quirks.h -43b3f282acecf30ec809f0d3e9e0ff07 linux-3.0/sound/usb/mixer_quirks.c -e39d2dad088aa936c3e010de9a290b6f linux-3.0/sound/usb/mixer_maps.c -6f2bc0def2d854379e8ad47af4f3e139 linux-3.0/sound/usb/mixer.h -882d5b7b4c6853cfca112ae44205a2b7 linux-3.0/sound/usb/mixer.c -8c032db196836c5b0c9f00cf4f9577e7 linux-3.0/sound/usb/misc/ua101.c -b033844feb8127eae70a301b27c2afce linux-3.0/sound/usb/misc/Makefile -4f2ad22746a841f57c30d1b103a6e99f linux-3.0/sound/usb/midi.h -bc975de6f3dea59ef0da852946e02816 linux-3.0/sound/usb/midi.c -ae453b21a0d4766620e9b7fc8ff732c4 linux-3.0/sound/usb/helper.h -a0cb66e1abf7c5f334e928232d8b1551 linux-3.0/sound/usb/helper.c -a8309597e49a387034ffe70e1b4ff35d linux-3.0/sound/usb/format.h -967646dcbd64eebb5f08a10d12e60918 linux-3.0/sound/usb/format.c -419b72e17464db58b8a4cd302d415cf5 linux-3.0/sound/usb/endpoint.h -6a30480c77048e1e54454976d479ac20 linux-3.0/sound/usb/endpoint.c -c9aba805def6716594b1923a6f43ab51 linux-3.0/sound/usb/debug.h -7c30c007ebcf3a8988d06b7fb696cf49 linux-3.0/sound/usb/clock.h -1e50575a0573d6d5ddd1d531768e1a51 linux-3.0/sound/usb/clock.c -32182a29a7b5bd2d4d1290f015896e76 linux-3.0/sound/usb/card.h -8970be9d950272c44de5f7d2e250c82e linux-3.0/sound/usb/card.c -d7e2d4d04b59260f7345af3d78b38831 linux-3.0/sound/usb/caiaq/midi.h -5c6ab8f48ff68c484ff3bf1ff738eb47 linux-3.0/sound/usb/caiaq/midi.c -737d2335ee636199a673768c3b38561e linux-3.0/sound/usb/caiaq/input.h -f989f57accb68826d468f42dbb29e722 linux-3.0/sound/usb/caiaq/input.c -49ca099c283ce65c275798c49f9f9af2 linux-3.0/sound/usb/caiaq/device.h -23de2aabbbacd2b4b19576c6f1e77aa8 linux-3.0/sound/usb/caiaq/device.c -6388fec88dd65e51e3203af0dd945dad linux-3.0/sound/usb/caiaq/control.h -4de3f2c0ecf9720451dee19ec82522e0 linux-3.0/sound/usb/caiaq/control.c -a46352ebaea75b90541e1e3cb58663b3 linux-3.0/sound/usb/caiaq/audio.h -c6d230ac02003f347cecdc772aca6c01 linux-3.0/sound/usb/caiaq/audio.c -100b4b2301f6081daefd0784e3a3fa16 linux-3.0/sound/usb/caiaq/Makefile -c06316d3cd7ea3173dc66755e038746b linux-3.0/sound/usb/Makefile -d218fc33bfbc493e80ef28a9f9d0a74b linux-3.0/sound/usb/Kconfig -049a54881438e49d087f8d03fad199da linux-3.0/sound/usb/6fire/pcm.h -c0df608d089594ae0361cbd6e6775802 linux-3.0/sound/usb/6fire/pcm.c -73576ff017218bdf6b80a0dfcca280a0 linux-3.0/sound/usb/6fire/midi.h -74ed60b18280f5d6fe45c8a416e7462b linux-3.0/sound/usb/6fire/midi.c -9c78ebf51165c74edf08e5791bc7fb9c linux-3.0/sound/usb/6fire/firmware.h -eda8c202e8579b4cfc10bef75f19b994 linux-3.0/sound/usb/6fire/firmware.c -b8fcc8548df605e694ecbac71a994d8d linux-3.0/sound/usb/6fire/control.h -ccec83b1802add4bb6c82513f5620532 linux-3.0/sound/usb/6fire/control.c -04d06f72f260922d8ca593206018b986 linux-3.0/sound/usb/6fire/common.h -7e6bf829906b5906987dfbe28e70670a linux-3.0/sound/usb/6fire/comm.h -3503662d76989cb325d3486a613dcbbf linux-3.0/sound/usb/6fire/comm.c -9e4c3e4853c9b80f1142b1f58eda6dc6 linux-3.0/sound/usb/6fire/chip.h -5b5124692fe3688f1b5a4648e382913d linux-3.0/sound/usb/6fire/chip.c -71e72ec0f50342023c1cf6d870a3d50a linux-3.0/sound/usb/6fire/Makefile -c4ec639f36f653d26d6a005a96327196 linux-3.0/sound/synth/util_mem.c -72bafbb71cd70bdf41ee43efe77b8240 linux-3.0/sound/synth/emux/soundfont.c -54a7cf4b5a92ce473cbe9eaf47ec6606 linux-3.0/sound/synth/emux/emux_voice.h -89176744ebc679999fbfe29b1fd09876 linux-3.0/sound/synth/emux/emux_synth.c -0b35dec1007d98b43a0d9eb6be8d8391 linux-3.0/sound/synth/emux/emux_seq.c -a52028a135ae20101b63299b3690116a linux-3.0/sound/synth/emux/emux_proc.c -c107707560bcd87ce20389ad4c35c6f4 linux-3.0/sound/synth/emux/emux_oss.c -e0cb274e99af2295570667baf9bc4799 linux-3.0/sound/synth/emux/emux_nrpn.c -e71cc7a527b15fa01b08a8e95917c567 linux-3.0/sound/synth/emux/emux_hwdep.c -9db8487dc3981cd7a528b0aeadb83bd0 linux-3.0/sound/synth/emux/emux_effect.c -815cf03bccdac0009ba9ef1a0f57e5b5 linux-3.0/sound/synth/emux/emux.c -6ca5c6817efad521dcb8e21359a4bb1a linux-3.0/sound/synth/emux/Makefile -0521b52ac764d8d0c98ad720c59e5ae0 linux-3.0/sound/synth/Makefile -a3cb59cce1d7a47f5771c2f11706f5f4 linux-3.0/sound/spi/at73c213.h -6bfbd68287170e618b133d58804591db linux-3.0/sound/spi/at73c213.c -81b963606e39d26aba2c97d553109780 linux-3.0/sound/spi/Makefile -92f6027a13f300bc7637f123c5ef54f1 linux-3.0/sound/spi/Kconfig -649ea4d7ab406c76f9d9ee6db61ce7c2 linux-3.0/sound/sparc/dbri.c -5033b20a760e403bee67011b570de181 linux-3.0/sound/sparc/cs4231.c -6b710da3384470646a817bceff52cbb0 linux-3.0/sound/sparc/amd7930.c -d7fc1e82e4dee3e12916d352b905969b linux-3.0/sound/sparc/Makefile -734d1c7369f9364947737f0e68207824 linux-3.0/sound/sparc/Kconfig -f817c5d398488344b14afe6a12b3dd6b linux-3.0/sound/sound_firmware.c -b39a7ac99ded21a1bf5bf92bf8da3650 linux-3.0/sound/sound_core.c -ef81d1f0d189737155023d0cd3778ab8 linux-3.0/sound/soc/txx9/txx9aclc.h -1292957473dcbf06601036c21d6e0523 linux-3.0/sound/soc/txx9/txx9aclc.c -b47dc636a225b84ee6037bd11dd72a28 linux-3.0/sound/soc/txx9/txx9aclc-generic.c -1b1b2e857401013ce70dfe0c9111336c linux-3.0/sound/soc/txx9/txx9aclc-ac97.c -6e9356a04e631fd557c7f53d7001f33c linux-3.0/sound/soc/txx9/Makefile -5e4433721cd5eb73591c180d0f1e85fc linux-3.0/sound/soc/txx9/Kconfig -6ddbac39284ed646318f15da12294bed linux-3.0/sound/soc/tegra/trimslice.c -6fe70940131cac002f8cec8d09f3a676 linux-3.0/sound/soc/tegra/tegra_wm8903.c -8cab9e6ff04e786c03a5132aff350eb4 linux-3.0/sound/soc/tegra/tegra_pcm.h -e1a511cbb99c0f8873213a7d32637fed linux-3.0/sound/soc/tegra/tegra_pcm.c -b71bbcb64a922d1e7bc71f9edf04a688 linux-3.0/sound/soc/tegra/tegra_i2s.h -5263e2686c0329618bbfc585e7e9ec3b linux-3.0/sound/soc/tegra/tegra_i2s.c -ea58d0b5b0a6252ed49237e9341facf5 linux-3.0/sound/soc/tegra/tegra_das.h -d6224850bcf007f589647e2f02fd45b2 linux-3.0/sound/soc/tegra/tegra_das.c -6b12d9809409a882f74640b686e4a2bf linux-3.0/sound/soc/tegra/tegra_asoc_utils.h -972bfd0ccc188cbb4fe1b8241baedfee linux-3.0/sound/soc/tegra/tegra_asoc_utils.c -ed62a352e765169e88482741ee23b97b linux-3.0/sound/soc/tegra/Makefile -619d90a69ff3be34c895d22c2a76156a linux-3.0/sound/soc/tegra/Kconfig -597d8025d17f846c9bdd58bd956adc5a linux-3.0/sound/soc/soc-utils.c -4a51e6b715c0a7be2aedbf85128be5ab linux-3.0/sound/soc/soc-jack.c -541038cea8bc3eb36d0c2d27b660a46a linux-3.0/sound/soc/soc-dapm.c -12548ac517019b542f0a5b1b681749b8 linux-3.0/sound/soc/soc-core.c -04437e5b6380703764c607b778e6438d linux-3.0/sound/soc/soc-cache.c -0ae012a4139d887af7db7deb3312dead linux-3.0/sound/soc/sh/ssi.c -1de11a4592df561a1002edf631a5745b linux-3.0/sound/soc/sh/siu_pcm.c -6d1b30b96c850d1b5d31240cdd07446f linux-3.0/sound/soc/sh/siu_dai.c -5a19537d39a3cc59a769a81633a26844 linux-3.0/sound/soc/sh/siu.h -801cc12002929d70426ecd1eb9dea514 linux-3.0/sound/soc/sh/sh7760-ac97.c -ee0491934d2710204291fd8114358888 linux-3.0/sound/soc/sh/migor.c -2b2d108f35faa04a36b01d24d9ddf27f linux-3.0/sound/soc/sh/hac.c -69e28a2792c9e450c80f10a5d96fdfaa linux-3.0/sound/soc/sh/fsi.c -8f9afee5dcb8c4cc2d3a36be95c06982 linux-3.0/sound/soc/sh/fsi-hdmi.c -52cb0623384e8368b2ecc05ed82e2106 linux-3.0/sound/soc/sh/fsi-da7210.c -ac1ee3366626d33395d02e634c26c67c linux-3.0/sound/soc/sh/fsi-ak4642.c -b9459c7774374b8d6528b8eb33963ff3 linux-3.0/sound/soc/sh/dma-sh7760.c -ee325a9e7a9d9ed448f4c51fee7b0ab9 linux-3.0/sound/soc/sh/Makefile -98f88fbb8c2f924c8ef20a5753bc8dbb linux-3.0/sound/soc/sh/Kconfig -50a1044686733db37db36cebeb0a3d17 linux-3.0/sound/soc/samsung/speyside.c -18d588e382d8a81ea31ab3bed3c82fea linux-3.0/sound/soc/samsung/spdif.h -414285e492187173197dd0aadec984f3 linux-3.0/sound/soc/samsung/spdif.c -62267da60a4843c94d23a37e7b27b6b6 linux-3.0/sound/soc/samsung/smdk_wm9713.c -96be8ff1e10627f3bb357b815cbdb7ce linux-3.0/sound/soc/samsung/smdk_wm8994.c -281679b2abb348c2d264b4c5c0fc6ed0 linux-3.0/sound/soc/samsung/smdk_wm8580pcm.c -08947dfc33bf85d1b495f29e9b3d5190 linux-3.0/sound/soc/samsung/smdk_wm8580.c -1143e0eceea27b959616bab0a294bb52 linux-3.0/sound/soc/samsung/smdk_spdif.c -b31544606114a5bd37a774eb782ab62f linux-3.0/sound/soc/samsung/smdk2443_wm9710.c -9d2a2adbe4b89603d60b7dd1ee6b0a23 linux-3.0/sound/soc/samsung/smartq_wm8987.c -a007e8fe435f46d7e9248d944100b8de linux-3.0/sound/soc/samsung/s3c24xx_uda134x.c -34cdcefcc0184bfa82439fcede7f3633 linux-3.0/sound/soc/samsung/s3c24xx_simtec_tlv320aic23.c -60a5570c6f175e4ca3ef69eb529120c4 linux-3.0/sound/soc/samsung/s3c24xx_simtec_hermes.c -0126e0f0ef7ef99496649527db8d0296 linux-3.0/sound/soc/samsung/s3c24xx_simtec.h -4d0ac3005b15d21001974d06d4a47a80 linux-3.0/sound/soc/samsung/s3c24xx_simtec.c -54804e1eeea72cf1d4bc13657155b4ce linux-3.0/sound/soc/samsung/s3c24xx-i2s.h -4ffb0594924b1832039e176f5b0bd5a1 linux-3.0/sound/soc/samsung/s3c24xx-i2s.c -211afd814ee26f6f83f40f24667bc621 linux-3.0/sound/soc/samsung/s3c2412-i2s.h -4d5c243a2ad9c8f80e116c80b7b9cdb0 linux-3.0/sound/soc/samsung/s3c2412-i2s.c -4045a8c63b8daa62a280a0423c73d751 linux-3.0/sound/soc/samsung/s3c-i2s-v2.h -d07bad2d05d73209861ddd02c6f4dc29 linux-3.0/sound/soc/samsung/s3c-i2s-v2.c -502d233e7218db0296ef00d3ad672a8e linux-3.0/sound/soc/samsung/rx1950_uda1380.c -16a6870a701c4244b4a554e7b5a612f7 linux-3.0/sound/soc/samsung/regs-i2s-v2.h -ea6897fb5ebffdae2a64996f83f8a88c linux-3.0/sound/soc/samsung/pcm.h -8ac98cc6735893a2781530bfaab9ffde linux-3.0/sound/soc/samsung/pcm.c -8f07706975b04eb51a155a12d7cc37f1 linux-3.0/sound/soc/samsung/neo1973_wm8753.c -ce96a834e709748f1779f7798bef1bc7 linux-3.0/sound/soc/samsung/ln2440sbc_alc650.c -35e5db2c8365c5fa11b41e4986214427 linux-3.0/sound/soc/samsung/jive_wm8750.c -867a5a02802e75593e1f31d4a0d00af6 linux-3.0/sound/soc/samsung/i2s.h -48f7e9d33094c7c3cdfa3eb9c234e5be linux-3.0/sound/soc/samsung/i2s.c -3f148c5ccc8bb82f496df75c0717c6c5 linux-3.0/sound/soc/samsung/h1940_uda1380.c -d2129620bf4afb7e79cd8322d906d065 linux-3.0/sound/soc/samsung/goni_wm8994.c -793b0437551be4b2857bb27369b80767 linux-3.0/sound/soc/samsung/dma.h -32b3e1eb0fe577eed66d578be4126c9a linux-3.0/sound/soc/samsung/dma.c -e453f93a6ab5c3b44973b1d4d75a8245 linux-3.0/sound/soc/samsung/ac97.c -26fac6899b16ec8e2060f53280b957c1 linux-3.0/sound/soc/samsung/Makefile -4ed6620f7ef27897fe5aa9896d0d7a68 linux-3.0/sound/soc/samsung/Kconfig -cdeca89d1996ef81f5a3ac814a946267 linux-3.0/sound/soc/s6000/s6105-ipcam.c -6efc3d9268f7104456e6cdd170feb0ce linux-3.0/sound/soc/s6000/s6000-pcm.h -1fca1e5905482a345fde61ad341948c9 linux-3.0/sound/soc/s6000/s6000-pcm.c -4b6ee4547c13432fffdee33d2c6379ce linux-3.0/sound/soc/s6000/s6000-i2s.h -182794523e283432bc3f26b66583377c linux-3.0/sound/soc/s6000/s6000-i2s.c -eb0a520d75e7a2b64b97215d00d53069 linux-3.0/sound/soc/s6000/Makefile -62bcad2d8be3b2cf1cbc870830d343a5 linux-3.0/sound/soc/s6000/Kconfig -5c33f2468a95c61d8eefc22147d8ddc1 linux-3.0/sound/soc/pxa/zylonite.c -febdc17fafa1781ad512dd16e87008a8 linux-3.0/sound/soc/pxa/z2.c -0b29f615322ce006d8c4cad436c2ec99 linux-3.0/sound/soc/pxa/tosa.c -c2edd2a9e8303605f3db6e0cd84388a0 linux-3.0/sound/soc/pxa/tavorevb3.c -968e18c1ceae53f7481f17bee74ae3b5 linux-3.0/sound/soc/pxa/spitz.c -1655b87d8b8947387e0896db255e1b9f linux-3.0/sound/soc/pxa/saarb.c -0e8e46bc4cd45dcf8db0944cc752696a linux-3.0/sound/soc/pxa/raumfeld.c -756bd0033af961c8c8bb711914670e68 linux-3.0/sound/soc/pxa/pxa2xx-pcm.c -7dc7d52d19d4a48d534404beb23080e7 linux-3.0/sound/soc/pxa/pxa2xx-i2s.h -c40a3b7dfec98fa9fe6c4f8a9c858866 linux-3.0/sound/soc/pxa/pxa2xx-i2s.c -9510ae1236a48d8fe571dad338a84fcd linux-3.0/sound/soc/pxa/pxa2xx-ac97.h -234c640066fbe7bd105314bc2495080a linux-3.0/sound/soc/pxa/pxa2xx-ac97.c -e72957dbd6d82eeab604fb2dde7af08d linux-3.0/sound/soc/pxa/pxa-ssp.h -59f28a4ddc5085d5cf758b939fb9155b linux-3.0/sound/soc/pxa/pxa-ssp.c -4946e631abcd983af41f47963ca1e5df linux-3.0/sound/soc/pxa/poodle.c -9eb4790f82c5100a1ab38915f796e500 linux-3.0/sound/soc/pxa/palm27x.c -0b8df7d283414e6856a0c6680043b9fe linux-3.0/sound/soc/pxa/mioa701_wm9713.c -9a2a293568758f78820dcc9e71777b68 linux-3.0/sound/soc/pxa/magician.c -06ccdd3a064a792d1e11623207d7c820 linux-3.0/sound/soc/pxa/imote2.c -8b558017a2e0b482a292292ba3542b45 linux-3.0/sound/soc/pxa/hx4700.c -9789a127a8b7879bba05be0f6f0ec0cc linux-3.0/sound/soc/pxa/em-x270.c -4fbb97790aac552cfcc552db49dfc093 linux-3.0/sound/soc/pxa/e800_wm9712.c -9317746d3606f5bda46902eeb57adcf8 linux-3.0/sound/soc/pxa/e750_wm9705.c -78e3990eabdf8fc46500bbb48014017b linux-3.0/sound/soc/pxa/e740_wm9705.c -449b54400fb0375d3dbbe7676627597b linux-3.0/sound/soc/pxa/corgi.c -7ebe56d46975b3c3418f640a462086e5 linux-3.0/sound/soc/pxa/Makefile -d94328b0ebcd644db8bdb6ab87699163 linux-3.0/sound/soc/pxa/Kconfig -adb7c897029e7c5213a117bd7fbaf3ff linux-3.0/sound/soc/omap/zoom2.c -8baf0698e7c83e2979ce04d81ba3ccfe linux-3.0/sound/soc/omap/sdp4430.c -09a1971a9401b28702d4749abe16f1cb linux-3.0/sound/soc/omap/sdp3430.c -91b43becd1811b3e7cf3bc4061116b58 linux-3.0/sound/soc/omap/rx51.c -9f70265adf36208f5228f6edc9025d93 linux-3.0/sound/soc/omap/overo.c -c8f3baaa75a4db1163b1e134df3ae065 linux-3.0/sound/soc/omap/osk5912.c -8ae0efa64a48bf1f701a5db70f44b487 linux-3.0/sound/soc/omap/omap3pandora.c -fdd0e522e5337cf9a3336acc8a49c7a3 linux-3.0/sound/soc/omap/omap3evm.c -b1359f59dfe9b991aba9058a0dee8044 linux-3.0/sound/soc/omap/omap3beagle.c -0a005ea8f4a286ddbea5c52f12f3cfaf linux-3.0/sound/soc/omap/omap-pcm.h -843ec660ab28139e336dace482b6b863 linux-3.0/sound/soc/omap/omap-pcm.c -0e46e2b7b0f00e58b174b79260ccbbec linux-3.0/sound/soc/omap/omap-mcpdm.c -21a741c96172cd0ffe316251ac1cac0b linux-3.0/sound/soc/omap/omap-mcbsp.h -7085b63039db44525f62cd5eb8163b0d linux-3.0/sound/soc/omap/omap-mcbsp.c -2d56c7557ef7be5aa5811cb67500f6c8 linux-3.0/sound/soc/omap/n810.c -7f63862a28d2a91821461bb00af85b43 linux-3.0/sound/soc/omap/mcpdm.h -172371794b2036edb5e3765c01fe0e41 linux-3.0/sound/soc/omap/mcpdm.c -af44b24ea737c91e8aace7fc63529435 linux-3.0/sound/soc/omap/igep0020.c -cf2fd98c24682da02e7116efd9cbedaf linux-3.0/sound/soc/omap/ams-delta.c -0ffe0b641eeb1e4864e8222d62b8b078 linux-3.0/sound/soc/omap/am3517evm.c -95b88df32427eca44db15a77618005b2 linux-3.0/sound/soc/omap/Makefile -ea5c129a7fc95ee9787b2b8317075ca8 linux-3.0/sound/soc/omap/Kconfig -e3e310029663442a97977832e5a24b5e linux-3.0/sound/soc/nuc900/nuc900-pcm.c -1a1a183899639bd26e4a08f2ed91bdec linux-3.0/sound/soc/nuc900/nuc900-audio.h -ab5cbd8c9f913fef7bef63208c8cb078 linux-3.0/sound/soc/nuc900/nuc900-audio.c -3a0ff072f73d4d6c77748bacf7dab2fc linux-3.0/sound/soc/nuc900/nuc900-ac97.c -23ba131a39f26bbe7d55d9410a8d1828 linux-3.0/sound/soc/nuc900/Makefile -5b502242c1d7fb0fcd1bd3c5c320a383 linux-3.0/sound/soc/nuc900/Kconfig -2e2a3f284c96b9e42cc4eba0b14e7f69 linux-3.0/sound/soc/mid-x86/sst_platform.h -9064d043ddc90712840d4d102c5acdab linux-3.0/sound/soc/mid-x86/sst_platform.c -4d0a6f286c0c0951d2707b9c3cfc2887 linux-3.0/sound/soc/mid-x86/mfld_machine.c -8ee38bd871049b46725cb100e097708d linux-3.0/sound/soc/mid-x86/Makefile -a83cd6a27be703099121e5b2aea0c603 linux-3.0/sound/soc/mid-x86/Kconfig -d14ed2ee2eb29d7aedabe7a6e61ce229 linux-3.0/sound/soc/kirkwood/kirkwood.h -abc7e355181ffe4a8f62c5e70d57aa63 linux-3.0/sound/soc/kirkwood/kirkwood-t5325.c -fe5a36f57bd26c22a90df36fec5962d4 linux-3.0/sound/soc/kirkwood/kirkwood-openrd.c -9712a21cef01a51ab9ca1669f52c6844 linux-3.0/sound/soc/kirkwood/kirkwood-i2s.c -c7d2558ce2e1cd6ae86b1fcb19f79978 linux-3.0/sound/soc/kirkwood/kirkwood-dma.c -ff552723e35be215277b108b9250933a linux-3.0/sound/soc/kirkwood/Makefile -770872fc98c4344a3cf07350e32849dc linux-3.0/sound/soc/kirkwood/Kconfig -92e7e2664e201aa1031060cdd2025847 linux-3.0/sound/soc/jz4740/qi_lb60.c -d98d0eb22a9afe0a0118e59f8b4d5db1 linux-3.0/sound/soc/jz4740/jz4740-pcm.h -f0bb6185c35e4c57616286ae2018f2a9 linux-3.0/sound/soc/jz4740/jz4740-pcm.c -a4d839d530d972f07b2d753bbfdaeeff linux-3.0/sound/soc/jz4740/jz4740-i2s.h -876497decf815ebb435cdd49942dc739 linux-3.0/sound/soc/jz4740/jz4740-i2s.c -ae1870cc4df488d762879262ba475d15 linux-3.0/sound/soc/jz4740/Makefile -25592518ca68ad638fae0cff371f0150 linux-3.0/sound/soc/jz4740/Kconfig -b7e54fb6f11e4a8978bbfce0218a3198 linux-3.0/sound/soc/imx/wm1133-ev1.c -b39a4abd3970aeff44f33e9566cb0020 linux-3.0/sound/soc/imx/phycore-ac97.c -35f4b1d1b30fb540c5822ac62ef74579 linux-3.0/sound/soc/imx/mx27vis-aic32x4.c -15d61e2c60b9bcd79ef514d919d250f3 linux-3.0/sound/soc/imx/imx-ssi.h -90da63017b162b2b8dbbd7f730cf85e9 linux-3.0/sound/soc/imx/imx-ssi.c -6e983448aff60d33468f4fc6ec04ab56 linux-3.0/sound/soc/imx/imx-pcm-fiq.c -304691b4adb5b4f32e060aac319842d0 linux-3.0/sound/soc/imx/imx-pcm-dma-mx2.c -855bf5c512b4ec7e937dbffec716b804 linux-3.0/sound/soc/imx/eukrea-tlv320.c -8f4b08d6e892f8d050ab37f3872251e5 linux-3.0/sound/soc/imx/Makefile -4b41c348ba4bb6d402a0aa70ba2a0dcb linux-3.0/sound/soc/imx/Kconfig -d9f0bf05413ff2ebfbd72310537d626e linux-3.0/sound/soc/fsl/pcm030-audio-fabric.c -2844a0f3ba2dfa998da94f120acc5312 linux-3.0/sound/soc/fsl/p1022_ds.c -e08c2db7dbcb72a6e5ea71e7c1cba6b4 linux-3.0/sound/soc/fsl/mpc8610_hpcd.c -74a71b37cbd226fb712ccfda1d5bbe97 linux-3.0/sound/soc/fsl/mpc5200_psc_i2s.c -45a3f98bc702e3147f761db259dea997 linux-3.0/sound/soc/fsl/mpc5200_psc_ac97.h -318ab9552fc8318d43eaea0f589b7d62 linux-3.0/sound/soc/fsl/mpc5200_psc_ac97.c -8bc4d73895bcf80f5b9ad7d3d9a5cc84 linux-3.0/sound/soc/fsl/mpc5200_dma.h -8f128d66a4e44ba6c06c989668ebcf87 linux-3.0/sound/soc/fsl/mpc5200_dma.c -df9e73bb2e2101a7d2d7876ff128c930 linux-3.0/sound/soc/fsl/fsl_ssi.h -7ffa6e6aa9228546d3c09b35730104a8 linux-3.0/sound/soc/fsl/fsl_ssi.c -8ad155907fde8ca247a5fef4aa08a3f8 linux-3.0/sound/soc/fsl/fsl_dma.h -c4a622ce680e3f9ff93ac313fcfe4605 linux-3.0/sound/soc/fsl/fsl_dma.c -1d29579cef18b5a244c86f56b591d1d4 linux-3.0/sound/soc/fsl/efika-audio-fabric.c -652303cf97111306ee056d2af1246927 linux-3.0/sound/soc/fsl/Makefile -0d3b789c879931aef84c9650ccd2754c linux-3.0/sound/soc/fsl/Kconfig -e44652aaf19bfc1b1451e86f9c8d9bb1 linux-3.0/sound/soc/ep93xx/snappercl15.c -f8771deb34f8e2c361f058aa503da794 linux-3.0/sound/soc/ep93xx/simone.c -f30b90d43c4bccaf0c592dfbd5d01a96 linux-3.0/sound/soc/ep93xx/ep93xx-pcm.h -bc1a334a2971767b8b8c649e2d5b7f5d linux-3.0/sound/soc/ep93xx/ep93xx-pcm.c -ddde4f4234ad89b8eb34c3aeb1ea99f6 linux-3.0/sound/soc/ep93xx/ep93xx-i2s.c -e075c2aa466a195ee8755041e29c3356 linux-3.0/sound/soc/ep93xx/ep93xx-ac97.c -9ff0a4e935d545d0720b7babb82ec2af linux-3.0/sound/soc/ep93xx/edb93xx.c -f3a8c9d7a460de808c01c2c6966da990 linux-3.0/sound/soc/ep93xx/Makefile -f106f689a23374a20f82c888d8e5bd78 linux-3.0/sound/soc/ep93xx/Kconfig -08648d8e7097cbc2dfb51bd44f0ac9ed linux-3.0/sound/soc/davinci/davinci-vcif.c -f3c3b8774d4784240878ffb70888f169 linux-3.0/sound/soc/davinci/davinci-sffsdr.c -222e6339d103ddbe6e4903f2490c9e0a linux-3.0/sound/soc/davinci/davinci-pcm.h -70c6f93e26c508c3e91023e7d9ffae60 linux-3.0/sound/soc/davinci/davinci-pcm.c -d37c12a62eedd91a20b8452518e9aca7 linux-3.0/sound/soc/davinci/davinci-mcasp.h -d2e8d31b468119da561b9915aee015ce linux-3.0/sound/soc/davinci/davinci-mcasp.c -4f6d6e3f54098a711b8c9bcb259368d9 linux-3.0/sound/soc/davinci/davinci-i2s.h -8d97e74861b276576cd450eb2796409d linux-3.0/sound/soc/davinci/davinci-i2s.c -5e7e4a868e85c5640b22537323b34378 linux-3.0/sound/soc/davinci/davinci-evm.c -b7a6a0234b9c2d55f82e250fb050c560 linux-3.0/sound/soc/davinci/Makefile -04bd46775b9f318011b60808a43802f2 linux-3.0/sound/soc/davinci/Kconfig -dbe990716ff2623195e56e604a51b04b linux-3.0/sound/soc/codecs/wm_hubs.h -7f60434d20c3f4042c85ffbd9811f165 linux-3.0/sound/soc/codecs/wm_hubs.c -ca6bb1425182e5f44c6c4bc7e1ca00ba linux-3.0/sound/soc/codecs/wm9713.h -410d585dd7e74257c157fe8cda80d498 linux-3.0/sound/soc/codecs/wm9713.c -38bc88257bc49bf1321dba0d0bcbe3d8 linux-3.0/sound/soc/codecs/wm9712.h -b4a447d33e677f8c4fc02f4c5129134d linux-3.0/sound/soc/codecs/wm9712.c -9ef51ddc7be44a56b1633d6e08d7eb2f linux-3.0/sound/soc/codecs/wm9705.h -2d7d774daf86a3cc5198ad7c2d78bb22 linux-3.0/sound/soc/codecs/wm9705.c -3e2df84d5a30f2a7c8acd75ecb5dc3bd linux-3.0/sound/soc/codecs/wm9090.h -426e23afae2a87a7f578f72901948732 linux-3.0/sound/soc/codecs/wm9090.c -d573af08306cb3b0ddebd8cd5ba38cdf linux-3.0/sound/soc/codecs/wm9081.h -42c1c15db8e4230902fff324e6dfabd1 linux-3.0/sound/soc/codecs/wm9081.c -c6c1f267c600dbd55d98fa0bcd0227b8 linux-3.0/sound/soc/codecs/wm8995.h -f85bf044a546be0a2097c3b315e0e6fb linux-3.0/sound/soc/codecs/wm8995.c -e9fec1be7fd8da8d6dc87e701fb2e023 linux-3.0/sound/soc/codecs/wm8994.h -5fa46aee2a07ea95604736b74f81eb9b linux-3.0/sound/soc/codecs/wm8994.c -dd8f6ba6e49d1b2c705455c2fcee7783 linux-3.0/sound/soc/codecs/wm8994-tables.c -1565df5157064c749103dfca32a8c512 linux-3.0/sound/soc/codecs/wm8993.h -d0c00656801aef97c561dead5c574035 linux-3.0/sound/soc/codecs/wm8993.c -c08d4ba946cdbb8e4c101c3dbb398d91 linux-3.0/sound/soc/codecs/wm8991.h -0956c7fadb5c13734eff723f8db0f325 linux-3.0/sound/soc/codecs/wm8991.c -52f3d9b31e1ddb7f060068cfa0008edf linux-3.0/sound/soc/codecs/wm8990.h -1a2c00d11d3974e7e27a71165cb16d31 linux-3.0/sound/soc/codecs/wm8990.c -83a36c9ca537ceec5dafa47690bc99d7 linux-3.0/sound/soc/codecs/wm8988.h -c0b3c05f85e92af0b2c6c6064eb931ac linux-3.0/sound/soc/codecs/wm8988.c -6233845e35f9040d579943c0289364ec linux-3.0/sound/soc/codecs/wm8985.h -64aba7d4ac50f0b16833e34db6d071ce linux-3.0/sound/soc/codecs/wm8985.c -62a81ff42e02c53adc1aab94f0bb191d linux-3.0/sound/soc/codecs/wm8978.h -13b1cdb976a154b818ca44c7fd7cfd16 linux-3.0/sound/soc/codecs/wm8978.c -a0d1ebfe7f4d9acbddac9db1b2f1dec0 linux-3.0/sound/soc/codecs/wm8974.h -2bdf9f921e0324d93883a6655fb02bf6 linux-3.0/sound/soc/codecs/wm8974.c -00c4ff0b3e89402feee1df0491a4b598 linux-3.0/sound/soc/codecs/wm8971.h -4568fdb9f3054c1e1a6a8df01e53e6e6 linux-3.0/sound/soc/codecs/wm8971.c -139a62462bf9cb34949a05c5df9b8294 linux-3.0/sound/soc/codecs/wm8962.h -9043a00ab1b4a27734f6ac0824e03910 linux-3.0/sound/soc/codecs/wm8962.c -9f5069aba436864494f278cbfdbb00a0 linux-3.0/sound/soc/codecs/wm8961.h -05dec8b0e76f676fed46fd3858ad47a7 linux-3.0/sound/soc/codecs/wm8961.c -c239614e1bd6c5dc8df47409d3d265fc linux-3.0/sound/soc/codecs/wm8960.h -554ba490b01c5bbb523c4ec1962041cb linux-3.0/sound/soc/codecs/wm8960.c -f138afa0ffb8e7b4b8a700c3cb5140c8 linux-3.0/sound/soc/codecs/wm8958-dsp2.c -5d02914dfb9372e866020425c0d221b5 linux-3.0/sound/soc/codecs/wm8955.h -dfba013bf8f4bb63571876a88a86327e linux-3.0/sound/soc/codecs/wm8955.c -a2bd170c6f68ff4c6261a4645720cbf7 linux-3.0/sound/soc/codecs/wm8940.h -610467d7add2a4fb21ef0ab5a61d49e6 linux-3.0/sound/soc/codecs/wm8940.c -54d672c66ba67a444683fe20c25c7d9d linux-3.0/sound/soc/codecs/wm8915.h -0c8cd9470b8bb0c04fef3d2f53151aba linux-3.0/sound/soc/codecs/wm8915.c -426974d92e2cf991fca6fdfb732b2481 linux-3.0/sound/soc/codecs/wm8904.h -984c7c65afb19c6c282fe88a3edc2ea0 linux-3.0/sound/soc/codecs/wm8904.c -281c0b2a528ab479c68a4f7f1fd50536 linux-3.0/sound/soc/codecs/wm8903.h -d0e547a0fd8d9c996296b85f4077561e linux-3.0/sound/soc/codecs/wm8903.c -da53a2e38b5539ce972737813b58b39c linux-3.0/sound/soc/codecs/wm8900.h -18df17d7c5b0bc9b24fd7ffee6c1e1a3 linux-3.0/sound/soc/codecs/wm8900.c -9604a9fd28b728edfc5d56ed6be204d7 linux-3.0/sound/soc/codecs/wm8804.h -e3bead02a9e9bdd4c454e01d46cfd82b linux-3.0/sound/soc/codecs/wm8804.c -3d4c8fc84202254ed55144a6bd8e4167 linux-3.0/sound/soc/codecs/wm8776.h -409dc1802a4b80158a094cb998847a81 linux-3.0/sound/soc/codecs/wm8776.c -b9e06496a0de5f2b6945a0f65f615b42 linux-3.0/sound/soc/codecs/wm8770.h -26ebdb88b3e270a8fdad8a0c1eb1011e linux-3.0/sound/soc/codecs/wm8770.c -c8794141cf237002ec56231622cac674 linux-3.0/sound/soc/codecs/wm8753.h -9327976bf558cde3a95bb389cde53958 linux-3.0/sound/soc/codecs/wm8753.c -979b2cd650f674cddfeb418e69378133 linux-3.0/sound/soc/codecs/wm8750.h -1f372d0a62f99137bf11c5fe6dd23cdc linux-3.0/sound/soc/codecs/wm8750.c -2e9a78ae51862f447ee29aa50f3e5da6 linux-3.0/sound/soc/codecs/wm8741.h -9389ef6110127b0a4b81d7a2b5af6b59 linux-3.0/sound/soc/codecs/wm8741.c -451117bd860ad8f6ee3609ea0d163bd1 linux-3.0/sound/soc/codecs/wm8737.h -63bc32da5d7a1ab8e3ea553e032417e4 linux-3.0/sound/soc/codecs/wm8737.c -a6f82f20fb7a63099d35b3cef4fbde42 linux-3.0/sound/soc/codecs/wm8731.h -8edcdede472d92e23f404f0971569bb4 linux-3.0/sound/soc/codecs/wm8731.c -0462450f054e4640840c8536ed3daaa8 linux-3.0/sound/soc/codecs/wm8728.h -23a67760c218d1fc0cf90c5e8688697a linux-3.0/sound/soc/codecs/wm8728.c -f5c5d52e9307af6280ec4702dcb8c6bd linux-3.0/sound/soc/codecs/wm8727.c -db0ab4462d4bbf7de3ab5b502bc11607 linux-3.0/sound/soc/codecs/wm8711.h -5e072fcfe280ebeee3ef37754dc63502 linux-3.0/sound/soc/codecs/wm8711.c -6c0986ff3b04325ca3804a396bc031bb linux-3.0/sound/soc/codecs/wm8580.h -d1e8cf4a2d2522f582a32c5087544a70 linux-3.0/sound/soc/codecs/wm8580.c -77a6ddec6d836b4ad064d502f311be38 linux-3.0/sound/soc/codecs/wm8523.h -7cf3f99405fb321cab5b7bf5a5f7276a linux-3.0/sound/soc/codecs/wm8523.c -3ba55def90850ee357f35161886e0982 linux-3.0/sound/soc/codecs/wm8510.h -513b21692bb0673cb6e4d82670b584c9 linux-3.0/sound/soc/codecs/wm8510.c -22f44226206aab232fb7dd33d66c3892 linux-3.0/sound/soc/codecs/wm8400.h -f81278f3bfc6e5736d25da3e82e4000b linux-3.0/sound/soc/codecs/wm8400.c -debf833fd45785165ae615cd1620a295 linux-3.0/sound/soc/codecs/wm8350.h -e06e53fc6949d590517dba61c0e09cd0 linux-3.0/sound/soc/codecs/wm8350.c -b0f560bc2e68863ccbc4ca0a11d850a6 linux-3.0/sound/soc/codecs/wm2000.h -7346fa171fab967606078521d7cb2a15 linux-3.0/sound/soc/codecs/wm2000.c -a823826cc19f0153ab2182e9d51e9bc7 linux-3.0/sound/soc/codecs/wm1250-ev1.c -83ad45dc0fa95658461181db57a5d051 linux-3.0/sound/soc/codecs/wl1273.h -9b44d527a33cf68bdf05d6b0c68f57aa linux-3.0/sound/soc/codecs/wl1273.c -4efec34a06287d8a8a5b7c8541acfd16 linux-3.0/sound/soc/codecs/uda1380.h -45bba0ac2a27daa0b0b96df9167ea611 linux-3.0/sound/soc/codecs/uda1380.c -b8c39c6eaa2ece67ee6e1f722a6aa708 linux-3.0/sound/soc/codecs/uda134x.h -1cc1c9cf3b66a74513e44d94e6212935 linux-3.0/sound/soc/codecs/uda134x.c -fd962624e200d91e87f52d1d1f423a93 linux-3.0/sound/soc/codecs/twl6040.h -ec9fba4476a28c4d59f10f1d0e57dffb linux-3.0/sound/soc/codecs/twl6040.c -0b58034916cd41acaaff77c7398b5081 linux-3.0/sound/soc/codecs/twl4030.c -7f802a126b216a3d111ca8838fe148d3 linux-3.0/sound/soc/codecs/tpa6130a2.h -be9c6d153ed1f8aa276385ead4c6c155 linux-3.0/sound/soc/codecs/tpa6130a2.c -558e525df9c22246841eb18c9ac2ad77 linux-3.0/sound/soc/codecs/tlv320dac33.h -a0e78cfa7594ddee3c728415239a46cf linux-3.0/sound/soc/codecs/tlv320dac33.c -cacee018085520da3095c5617291ebc9 linux-3.0/sound/soc/codecs/tlv320aic3x.h -ce68c3152793c8b80ccdaec0cc5a1d18 linux-3.0/sound/soc/codecs/tlv320aic3x.c -626fa1530648bab4b33c6739045c1c1b linux-3.0/sound/soc/codecs/tlv320aic32x4.h -55efdbba54974571b4f036ad89b182ea linux-3.0/sound/soc/codecs/tlv320aic32x4.c -ec0f91813d3f2c39bc405e79f8fa0b70 linux-3.0/sound/soc/codecs/tlv320aic26.h -b18511607fabaa32cb0c76c9d6394d4b linux-3.0/sound/soc/codecs/tlv320aic26.c -84ac125a70173268420509821f50ca06 linux-3.0/sound/soc/codecs/tlv320aic23.h -42147692093d9aa54f3f5b999fba9899 linux-3.0/sound/soc/codecs/tlv320aic23.c -5536c9dcf9d66516c60f0f72535abd78 linux-3.0/sound/soc/codecs/stac9766.h -eb8dc13a88289957dea0e955a2dfb6f5 linux-3.0/sound/soc/codecs/stac9766.c -efd45f6b87242a331ddaaebe2d477894 linux-3.0/sound/soc/codecs/ssm2602.h -a935440f204d7590ed55cd23e210eab5 linux-3.0/sound/soc/codecs/ssm2602.c -f2a2a2b1448750bcfb280010ab452662 linux-3.0/sound/soc/codecs/spdif_transciever.c -b19f1395ac9fb8d3879a1eb2835b559d linux-3.0/sound/soc/codecs/sn95031.h -e0ee4c8a6ef482bdfee80f3dfb9e9b6c linux-3.0/sound/soc/codecs/sn95031.c -2768712f9ea76b6f4a4fa26df5f7b013 linux-3.0/sound/soc/codecs/sgtl5000.h -ce19b295f39c4495b38efcb1068c0f83 linux-3.0/sound/soc/codecs/sgtl5000.c -c5facd5a893daff8e4f4466b33869897 linux-3.0/sound/soc/codecs/pcm3008.h -1bbc4a0ba7b1376b746cb08480d3cd37 linux-3.0/sound/soc/codecs/pcm3008.c -c70b094a11c5568cf5c29709cdb4a17d linux-3.0/sound/soc/codecs/max9877.h -8b6859ad1050493cae005c76933fe53d linux-3.0/sound/soc/codecs/max9877.c -4810cc315a776b5711e5730521efc9ad linux-3.0/sound/soc/codecs/max9850.h -9579562ccc6a60be796746fd080d6bf8 linux-3.0/sound/soc/codecs/max9850.c -35eef0ecc1e46afa4f7d0937c50988e6 linux-3.0/sound/soc/codecs/max98095.h -8387e0fd493516b76ae7344892faa61a linux-3.0/sound/soc/codecs/max98095.c -aa775c9713aa028fd060a8028a9883ab linux-3.0/sound/soc/codecs/max98088.h -711c9d7c5fe411d2363a7874dd5f3657 linux-3.0/sound/soc/codecs/max98088.c -c39ce649666b0d13cd830fb492d15bc9 linux-3.0/sound/soc/codecs/lm4857.c -44de510e57ce55d6a4eb24d0803523c5 linux-3.0/sound/soc/codecs/l3.c -9825a0a4aa3e9ac1e2ba2cff81f39e20 linux-3.0/sound/soc/codecs/jz4740.c -fd1410d5cf2fbfc453af1c36a0a63f0e linux-3.0/sound/soc/codecs/dmic.c -acf6e1617358a51410a82474e31d81a1 linux-3.0/sound/soc/codecs/dfbmcs320.c -13338a54c6b3de43bde5874aa19644f0 linux-3.0/sound/soc/codecs/da7210.c -8e48217be62406e9b792f56e1ef5ac52 linux-3.0/sound/soc/codecs/cx20442.h -c5642c623152ecbf1224e71146641d35 linux-3.0/sound/soc/codecs/cx20442.c -c3ef698a3782327eb40134b1d018d27d linux-3.0/sound/soc/codecs/cs42l51.h -b32e9cb1b3614770c485b1a63b007277 linux-3.0/sound/soc/codecs/cs42l51.c -48ac4ee126e6f6a5d602f95dd6213384 linux-3.0/sound/soc/codecs/cs4271.c -115a2097a23484ecd5272aa4c0720928 linux-3.0/sound/soc/codecs/cs4270.c -e404d283ffce108bb6ea32f0d4f5da4a linux-3.0/sound/soc/codecs/cq93vc.c -24b6f7e2c91cb97ef8068df9c13dc94a linux-3.0/sound/soc/codecs/alc5623.h -7d208651941b1533d34e7de44e18a40a linux-3.0/sound/soc/codecs/alc5623.c -2fb00e9edde166af0daaa939f4fb1985 linux-3.0/sound/soc/codecs/ak4671.h -d7166ec223e299033b51fbab760475cd linux-3.0/sound/soc/codecs/ak4671.c -8e3f5d365ea66daa6c81ea15eb6aceb1 linux-3.0/sound/soc/codecs/ak4642.c -2803af53951b37e6c3a39cab13ba1c9a linux-3.0/sound/soc/codecs/ak4641.h -f0489d96995347305c24f754e9b96fba linux-3.0/sound/soc/codecs/ak4641.c -0d6d56b23731ce8ce70f1f815823881d linux-3.0/sound/soc/codecs/ak4535.h -802384d809f72fe1bd78377e1a15c0c6 linux-3.0/sound/soc/codecs/ak4535.c -156ac1cb9fbfb0cf713f4d3c3487e795 linux-3.0/sound/soc/codecs/ak4104.c -740944f823bf3c957838d216024dabb4 linux-3.0/sound/soc/codecs/ads117x.h -915ec4e5de0b2ccbc2316d881532dd5f linux-3.0/sound/soc/codecs/ads117x.c -876d22ebbe5342840374064efc85aabe linux-3.0/sound/soc/codecs/ad73311.h -fd7a589eb13843ea71198c84e162e158 linux-3.0/sound/soc/codecs/ad73311.c -7e1a883c6f52f6248d08670993e55165 linux-3.0/sound/soc/codecs/ad1980.h -a04dfd6f49d78355965df81d497f8317 linux-3.0/sound/soc/codecs/ad1980.c -ecb25945808ce9cf3e64956d7b3a2ef3 linux-3.0/sound/soc/codecs/ad193x.h -303f64966033e6c366100c0535aff9d4 linux-3.0/sound/soc/codecs/ad193x.c -9bba601b49e0cc406e93adf68f3a5b5d linux-3.0/sound/soc/codecs/ad1836.h -dbf47460799a97149f3159ba52c64de2 linux-3.0/sound/soc/codecs/ad1836.c -740e7a10d850d7f744118ce1ede2cc98 linux-3.0/sound/soc/codecs/ac97.c -3a3d2a735a3dd8c90ac22e085152d942 linux-3.0/sound/soc/codecs/Makefile -9b9a3b8df0e4d2d2f28b9f06f7597ea6 linux-3.0/sound/soc/codecs/Kconfig -01bf41cfba0920fe3c4e2cf48a438706 linux-3.0/sound/soc/codecs/88pm860x-codec.h -5b9c4cfc648ac50edf5e778ddea058b2 linux-3.0/sound/soc/codecs/88pm860x-codec.c -229a0a0d4e20fa139cf3267618735fb5 linux-3.0/sound/soc/blackfin/bf5xx-tdm.h -1e05f800295af436fb890eb04b0475e8 linux-3.0/sound/soc/blackfin/bf5xx-tdm.c -9b67e31c056703f20978443efd3d66f0 linux-3.0/sound/soc/blackfin/bf5xx-tdm-pcm.h -ea42c995bc7aae78c88bf26d50d7ed0e linux-3.0/sound/soc/blackfin/bf5xx-tdm-pcm.c -baa15c3ccade5b53367f40f52d740232 linux-3.0/sound/soc/blackfin/bf5xx-ssm2602.c -cfa276d12d91ad9a4165b734ad407684 linux-3.0/sound/soc/blackfin/bf5xx-sport.h -d3cd2f91805ba45e93996a397c5ad38a linux-3.0/sound/soc/blackfin/bf5xx-sport.c -7224af5c178ef29499dfd08bb6bd3553 linux-3.0/sound/soc/blackfin/bf5xx-i2s.c -a0960ff85c4f7ed62b1ea14cd430a6c6 linux-3.0/sound/soc/blackfin/bf5xx-i2s-pcm.h -5deec4e5925fed07f50223358fd3cf6d linux-3.0/sound/soc/blackfin/bf5xx-i2s-pcm.c -6b728ddf8156ac0aeb73fd9e7c64b580 linux-3.0/sound/soc/blackfin/bf5xx-ad73311.c -5406f1b733ecf349410236e020c246da linux-3.0/sound/soc/blackfin/bf5xx-ad1980.c -3c9ff7541ff3769df88e61d34e7a0914 linux-3.0/sound/soc/blackfin/bf5xx-ad193x.c -1a44f9d1c0f84f30f9ad27da0fb80c51 linux-3.0/sound/soc/blackfin/bf5xx-ad1836.c -2a2c4f02e35216b3cbffde034d61718c linux-3.0/sound/soc/blackfin/bf5xx-ac97.h -af4df0d8f56adfc3aae8a4af5897d0f6 linux-3.0/sound/soc/blackfin/bf5xx-ac97.c -e10290b6346fc800f2cb9e064aab2848 linux-3.0/sound/soc/blackfin/bf5xx-ac97-pcm.h -38fca8663c487517c56d0229340ee1ee linux-3.0/sound/soc/blackfin/bf5xx-ac97-pcm.c -c0084c87724380f93923e775dc729abb linux-3.0/sound/soc/blackfin/Makefile -a43189e6dfaab36477d8455cd95b9a45 linux-3.0/sound/soc/blackfin/Kconfig -2ef5ed2b4c9d166108391f23304cea27 linux-3.0/sound/soc/au1x/psc.h -d54443b9d04d1f504633f8b685ce8c2d linux-3.0/sound/soc/au1x/psc-i2s.c -7358cc23cce2a9e15db93f828ea9a1ff linux-3.0/sound/soc/au1x/psc-ac97.c -4e22b90062e9a8e06e6db7d8dec8d48c linux-3.0/sound/soc/au1x/dbdma2.c -39a18e8878674bc62f768436b547d407 linux-3.0/sound/soc/au1x/db1200.c -c73d2bf06f1ae44187fde16b777b75b7 linux-3.0/sound/soc/au1x/Makefile -e719a66a3aa68360af4564f9f5402cdd linux-3.0/sound/soc/au1x/Kconfig -86681128748fb0e4baa2f560d91dc29f linux-3.0/sound/soc/atmel/snd-soc-afeb9260.c -0af8f4f25653d6b02fe328bc8f6d9aad linux-3.0/sound/soc/atmel/sam9g20_wm8731.c -5b9f42790440a5b807bce54025734140 linux-3.0/sound/soc/atmel/playpaq_wm8510.c -60469de7d1ffa34cb932c9864182c945 linux-3.0/sound/soc/atmel/atmel_ssc_dai.h -196d9f2b9e4db551ede0707f884305bd linux-3.0/sound/soc/atmel/atmel_ssc_dai.c -aef2d44dd28bc5a746b5b34d3707c901 linux-3.0/sound/soc/atmel/atmel-pcm.h -e49a421631614a716dd75859d4e19a1e linux-3.0/sound/soc/atmel/atmel-pcm.c -f90fccf53fc111e25ebfe3f8e894ea88 linux-3.0/sound/soc/atmel/Makefile -2cc6b04565a9600fce67241e1256f5a5 linux-3.0/sound/soc/atmel/Kconfig -7c5516012176adcc1f07d23b822b5fc5 linux-3.0/sound/soc/Makefile -d1bd211012640ea7a5a6aaf13ad9d1fe linux-3.0/sound/soc/Kconfig -d2f4d88668fcb14409e997665f1974cf linux-3.0/sound/sh/sh_dac_audio.c -0ce8ff665d33275c42934a8f1cc66909 linux-3.0/sound/sh/aica.h -dfe8d0bdb30a325e4ee235d6700e12e6 linux-3.0/sound/sh/aica.c -c8fc146c3634a29b325454a692fa9446 linux-3.0/sound/sh/Makefile -0459e561924e521e263403bc0884ffd0 linux-3.0/sound/sh/Kconfig -9a9456995a314eeb51c59a1b4ab3bb74 linux-3.0/sound/ppc/tumbler_volume.h -566fc6b6d8cf8b0f3aa11c55627ec3c2 linux-3.0/sound/ppc/tumbler.c -9d9b3d8fe9721d834de6b7c2549b3d56 linux-3.0/sound/ppc/snd_ps3_reg.h -d5d579ab2abd7940682257d2b328e2dd linux-3.0/sound/ppc/snd_ps3.h -62a946e81ef8c298987d4e79924a79e0 linux-3.0/sound/ppc/snd_ps3.c -de36042c1967bcd78565e6237caa59e7 linux-3.0/sound/ppc/powermac.c -6e8082d9849c35a5584e3bd79c62ee99 linux-3.0/sound/ppc/pmac.h -c3dac4ceabc9a830382826640081f666 linux-3.0/sound/ppc/pmac.c -3e327ba2134b98798a56b614a312ad72 linux-3.0/sound/ppc/keywest.c -2815438855a10e785481664ff3b4d43a linux-3.0/sound/ppc/daca.c -727c70ac875894b2a515b45e39d1e71a linux-3.0/sound/ppc/burgundy.h -f5ee525785c86c2ae87d2528aff10a44 linux-3.0/sound/ppc/burgundy.c -9e768ac8732404a604d11ec356ee756f linux-3.0/sound/ppc/beep.c -91dc87bc9bd0ffbc7bf38c4787e8b30f linux-3.0/sound/ppc/awacs.h -599a9754be5cd70637ea5cc2236b8a0a linux-3.0/sound/ppc/awacs.c -2360f0f944776ca63d6a59be6d3a4f10 linux-3.0/sound/ppc/Makefile -a2808dec4aa35c4a2299819f6cd47420 linux-3.0/sound/ppc/Kconfig -619c8f30e3579641122ed01e35cfd0c9 linux-3.0/sound/pcmcia/vx/vxpocket.h -9501ce0dee328c5eb55777e711ab8870 linux-3.0/sound/pcmcia/vx/vxpocket.c -a32269b1fd36a6426eaa7df2e3808ac7 linux-3.0/sound/pcmcia/vx/vxp_ops.c -0fdbf5d3eee1d988c3578d03d47f9803 linux-3.0/sound/pcmcia/vx/vxp_mixer.c -84b7245a60923cee8e497ae82b6f89bd linux-3.0/sound/pcmcia/vx/Makefile -b26a6e490bc95eb5b5c21d902eb30853 linux-3.0/sound/pcmcia/pdaudiocf/pdaudiocf_pcm.c -1867c5df4457a99845d4c50695980964 linux-3.0/sound/pcmcia/pdaudiocf/pdaudiocf_irq.c -bebb3af38339cd771a91596ddf374a32 linux-3.0/sound/pcmcia/pdaudiocf/pdaudiocf_core.c -39418eca78dbb8f38388cbf3ba9f3eda linux-3.0/sound/pcmcia/pdaudiocf/pdaudiocf.h -9e11b8652a7ae623f8434e939eddb4ad linux-3.0/sound/pcmcia/pdaudiocf/pdaudiocf.c -5fae2db46f3c04f76bafae9ecceac1cc linux-3.0/sound/pcmcia/pdaudiocf/Makefile -ce638631b25c0c548aba2b0f46213328 linux-3.0/sound/pcmcia/Makefile -c6646ac0b866be2cbf4340190ef8226c linux-3.0/sound/pcmcia/Kconfig -685caaf44dddcf0785b030088ef432e5 linux-3.0/sound/pci/ymfpci/ymfpci_main.c -67d305e2e966ef406fa17c2935636f0c linux-3.0/sound/pci/ymfpci/ymfpci.c -6a14cae089af56725081934eefcd43ba linux-3.0/sound/pci/ymfpci/Makefile -f2a9a5dee8ffe55ea735f6eb2d52477b linux-3.0/sound/pci/vx222/vx222_ops.c -cbaf0460378373f113bf327752d32552 linux-3.0/sound/pci/vx222/vx222.h -a85406ecc1353a598a2a244d30940d72 linux-3.0/sound/pci/vx222/vx222.c -1f7c12715d31e008dec7bf5b1fa86360 linux-3.0/sound/pci/vx222/Makefile -4e48ac0fd98c17fd3a8a6d3c34b39cef linux-3.0/sound/pci/via82xx_modem.c -681cb2417da7fd9b1c7c6b5ffbb9c7bf linux-3.0/sound/pci/via82xx.c -05b9b5c69a6087c74486722b6507d282 linux-3.0/sound/pci/trident/trident_memory.c -2f00f199d226d47578642a8cb393fc45 linux-3.0/sound/pci/trident/trident_main.c -d93de8ae33d2032eac593a00268616c9 linux-3.0/sound/pci/trident/trident.c -9c1bff8c9e28d93fe2f2387d0806ec9f linux-3.0/sound/pci/trident/Makefile -3b39cbbdeb0baa2396b48c4ee8470eeb linux-3.0/sound/pci/sonicvibes.c -f5a01b719cabf36f3458ebb448592d9c linux-3.0/sound/pci/sis7019.h -cab9a1fa3e9bf9acdf36ddc0ca6f37a1 linux-3.0/sound/pci/sis7019.c -f1e575a779ffe324ee478e0036dcad2a linux-3.0/sound/pci/rme9652/rme9652.c -9b26b0a76f010699e9fa80140a990716 linux-3.0/sound/pci/rme9652/hdspm.c -bea311dfa9a45f6dd44de23830a9fc2c linux-3.0/sound/pci/rme9652/hdsp.c -c8e1c495ce08d44aff81a137e91047c4 linux-3.0/sound/pci/rme9652/Makefile -1d596c5f64f4f5f348ed1ab1e0be4345 linux-3.0/sound/pci/rme96.c -beedb353f8c047537921524df2269613 linux-3.0/sound/pci/rme32.c -00a139deccb0b074160eecf35ef6d367 linux-3.0/sound/pci/riptide/riptide.c -fc1fa5e28ad0e48f45cf602cb9f3a3e3 linux-3.0/sound/pci/riptide/Makefile -e2082968f25f059231164ef9a66268bd linux-3.0/sound/pci/pcxhr/pcxhr_mixer.h -bdfd5f5818f993d1b721630278d9738a linux-3.0/sound/pci/pcxhr/pcxhr_mixer.c -87cac6fbe21f416a7ead410e3399cc61 linux-3.0/sound/pci/pcxhr/pcxhr_mix22.h -0995c29fc8fa23080cb0c3fc85fd5b4d linux-3.0/sound/pci/pcxhr/pcxhr_mix22.c -846677bb123a8dcbc9919230b1d66e18 linux-3.0/sound/pci/pcxhr/pcxhr_hwdep.h -4bcb053c7953361f245db9043ba646f0 linux-3.0/sound/pci/pcxhr/pcxhr_hwdep.c -bf631060bac046e792d40a3e33958e62 linux-3.0/sound/pci/pcxhr/pcxhr_core.h -bd961a1942efcf41b83b07c91498ae6e linux-3.0/sound/pci/pcxhr/pcxhr_core.c -96dfbb8bde9a57e8ddd6270485590d27 linux-3.0/sound/pci/pcxhr/pcxhr.h -5ebc8ac873a55e6acc86ae5d52bea20c linux-3.0/sound/pci/pcxhr/pcxhr.c -5315b7a6768621268aa85f59c0a68483 linux-3.0/sound/pci/pcxhr/Makefile -4abd79f069fc0afa2aaa7d67059c83c5 linux-3.0/sound/pci/oxygen/xonar_wm87x6.c -a0630b0c3e0440c692b072c0694f3d6c linux-3.0/sound/pci/oxygen/xonar_pcm179x.c -8cc00ac2562e42df9fd28c18f75bbc67 linux-3.0/sound/pci/oxygen/xonar_lib.c -465da5b53ce09db2e6708610c831dec1 linux-3.0/sound/pci/oxygen/xonar_hdmi.c -92113344ae7a3bdc8b4afd6b6e2695aa linux-3.0/sound/pci/oxygen/xonar_dg.h -68aafd6a3b00ac96781f386951729366 linux-3.0/sound/pci/oxygen/xonar_dg.c -08ff7a7cad7ac44b46ffdea342f2c6b6 linux-3.0/sound/pci/oxygen/xonar_cs43xx.c -3f61fe222b5d37055bfeaed4087381f3 linux-3.0/sound/pci/oxygen/xonar.h -61eae12aac048ab8e5c331430259e594 linux-3.0/sound/pci/oxygen/wm8785.h -65137f05d95298e8f94ba6422396ed32 linux-3.0/sound/pci/oxygen/wm8776.h -1761be94ebb060069e647ed7c0044567 linux-3.0/sound/pci/oxygen/wm8766.h -5628aaccaefa0220319620f2fac437c0 linux-3.0/sound/pci/oxygen/virtuoso.c -fef7e7dc582e52a27bcb8c30e32e718f linux-3.0/sound/pci/oxygen/pcm1796.h -7f67e3a641bcafdededd5762ec1b1097 linux-3.0/sound/pci/oxygen/oxygen_regs.h -c4fce28b096391d80c6d7114d78b3e0f linux-3.0/sound/pci/oxygen/oxygen_pcm.c -c8d8da5ad8b8ffe4654494c10d386dd8 linux-3.0/sound/pci/oxygen/oxygen_mixer.c -e29ac73a53832d96ee1f567b597318a8 linux-3.0/sound/pci/oxygen/oxygen_lib.c -c630fe11f1e8b2373c89d76c932d4376 linux-3.0/sound/pci/oxygen/oxygen_io.c -71ba14c24451df0f5bee83b20f99d981 linux-3.0/sound/pci/oxygen/oxygen.h -7ca62df47a751b079e5a43665abef2d6 linux-3.0/sound/pci/oxygen/oxygen.c -f8ebc06e77c6a09c67a6dad9b08cb403 linux-3.0/sound/pci/oxygen/cs4398.h -8f3f1902dc9506845432679bf9695f83 linux-3.0/sound/pci/oxygen/cs4362a.h -494f4ab559852a9103ffc991cf5150d6 linux-3.0/sound/pci/oxygen/cs4245.h -1310981183277df3fa41ba10d234197b linux-3.0/sound/pci/oxygen/cs2000.h -504153bcb0e170da768f30122fa21fb1 linux-3.0/sound/pci/oxygen/cm9780.h -1acaa0dda7e7d65e61899c2825982d8c linux-3.0/sound/pci/oxygen/ak4396.h -1b8cf92db4d9540bf47710dfd2b9b6f7 linux-3.0/sound/pci/oxygen/Makefile -75c4363c90c7032ab84dbb547efb1ce1 linux-3.0/sound/pci/nm256/nm256_coef.c -f51065e7dc6889180cbe6762a9f1cd3c linux-3.0/sound/pci/nm256/nm256.c -ac4dea01e328ba5d3148d5b0417c0eba linux-3.0/sound/pci/nm256/Makefile -8df4a07c599b03a403bbf182b2001a04 linux-3.0/sound/pci/mixart/mixart_mixer.h -41992926c320b9de4b1f98d8029dd371 linux-3.0/sound/pci/mixart/mixart_mixer.c -39fff58f970c8825cd3748807a329d0c linux-3.0/sound/pci/mixart/mixart_hwdep.h -a355888edf1a5d19dd8208aa7b173a82 linux-3.0/sound/pci/mixart/mixart_hwdep.c -b9f7649759938ab62a7c321cff6cb9bb linux-3.0/sound/pci/mixart/mixart_core.h -2480408e81f1a5309a796c715b374cb2 linux-3.0/sound/pci/mixart/mixart_core.c -9b28d97b1d39e8c1eec726388afe19d6 linux-3.0/sound/pci/mixart/mixart.h -d7730058dd882c38eb166464b4dcd3f3 linux-3.0/sound/pci/mixart/mixart.c -e50284b81e74de54f390d57847b62907 linux-3.0/sound/pci/mixart/Makefile -dea97a9fcb9af4969272397c4c8658ef linux-3.0/sound/pci/maestro3.c -cb5c037f7384fad488041e80108f7d8e linux-3.0/sound/pci/lx6464es/lx_defs.h -a009bec200f6d92452866323a0578f30 linux-3.0/sound/pci/lx6464es/lx_core.h -3ead5ad54a7d86f4c06278896e65a433 linux-3.0/sound/pci/lx6464es/lx_core.c -cb77df6fad278dec8c75f22a852810fd linux-3.0/sound/pci/lx6464es/lx6464es.h -66fcfadb412ae34204781c3358da7b2a linux-3.0/sound/pci/lx6464es/lx6464es.c -da4d42d668d88420aa47f74e75ebd843 linux-3.0/sound/pci/lx6464es/Makefile -996bba98f407548efb0227ff7d828c50 linux-3.0/sound/pci/lola/lola_proc.c -3487d32b00714d7189374a09e0ce20c7 linux-3.0/sound/pci/lola/lola_pcm.c -87279a21211ec4dfb9764730d6e834f6 linux-3.0/sound/pci/lola/lola_mixer.c -5d0c247cced9b4049aa702756a5cd8cd linux-3.0/sound/pci/lola/lola_clock.c -3b5f3f8ed63d2f62987dcebb6866534a linux-3.0/sound/pci/lola/lola.h -fb078d1721222ed26f14e1f69652a808 linux-3.0/sound/pci/lola/lola.c -92bcf510a7f8ca69cba639fdb147410c linux-3.0/sound/pci/lola/Makefile -cd148fad2ffe9159aba89e04727c8007 linux-3.0/sound/pci/korg1212/korg1212.c -7c5812402a252ea5afce8e20c7ccccaa linux-3.0/sound/pci/korg1212/Makefile -4075a8d547666d6e9accd20c73c04c48 linux-3.0/sound/pci/intel8x0m.c -220bbcff1701e753ffe2c9cc0782a013 linux-3.0/sound/pci/intel8x0.c -af42801c85a0323f2ade35a8270e3b97 linux-3.0/sound/pci/ice1712/wtm.h -3d9ebaccffc328cabf9e50e3672d098e linux-3.0/sound/pci/ice1712/wtm.c -27632e1463b917faf829d0f70705e2fb linux-3.0/sound/pci/ice1712/vt1720_mobo.h -987ef52667e78a7e6779cc9ae774ab6c linux-3.0/sound/pci/ice1712/vt1720_mobo.c -52bb82e0219889f740be197e9fb56f8d linux-3.0/sound/pci/ice1712/stac946x.h -a9017eb3f3ec3930e5453c01accd0b87 linux-3.0/sound/pci/ice1712/se.h -fabbad8b19d36236669cfb11fe8984fc linux-3.0/sound/pci/ice1712/se.c -89dd3e7420e92e571826c1dc1df1b100 linux-3.0/sound/pci/ice1712/revo.h -2cf05355756a4204ce9936808b00a942 linux-3.0/sound/pci/ice1712/revo.c -678de9be4beea08659694d528b5b3643 linux-3.0/sound/pci/ice1712/quartet.h -d428b9f0c3f122ebe0792044f7aec9d1 linux-3.0/sound/pci/ice1712/quartet.c -17ade93620b09dd5ef091d96fe58395b linux-3.0/sound/pci/ice1712/prodigy_hifi.h -2e1925b84f861cc1b1f214a9c1417af8 linux-3.0/sound/pci/ice1712/prodigy_hifi.c -50b8225797d05ac8a673fbdf443be88a linux-3.0/sound/pci/ice1712/prodigy192.h -8620d9ce4fee8da2de67aefaf25d8e0b linux-3.0/sound/pci/ice1712/prodigy192.c -9b24b5e9592aee6f5270cdfa9d36db16 linux-3.0/sound/pci/ice1712/pontis.h -af2e8cf05623f726acb298135d9f6585 linux-3.0/sound/pci/ice1712/pontis.c -03926936c1380e9c60eef1c93fdb4bc7 linux-3.0/sound/pci/ice1712/phase.h -4abfd0cbe39386e9a471b3893fae1e25 linux-3.0/sound/pci/ice1712/phase.c -2e7bb015ee3eecef9b43245c1da5962e linux-3.0/sound/pci/ice1712/maya44.h -c4846568c1c73b12488e7be1febedb22 linux-3.0/sound/pci/ice1712/maya44.c -6a00eda8ef5bb62f65c00b8723846044 linux-3.0/sound/pci/ice1712/juli.h -8601c472418098c6b7d2e6f103f49907 linux-3.0/sound/pci/ice1712/juli.c -f998c09dacca1372e0ceeab18d31b1a5 linux-3.0/sound/pci/ice1712/ice1724.c -cfedbde0141f81bdec90594d9a6172c9 linux-3.0/sound/pci/ice1712/ice1712.h -28fd69b5319422d0cf80136ccdb7f050 linux-3.0/sound/pci/ice1712/ice1712.c -10203a8214773f5a1f09473bf1545d51 linux-3.0/sound/pci/ice1712/hoontech.h -a498a81dab96dca747cc133a2574b2b3 linux-3.0/sound/pci/ice1712/hoontech.c -53ef572c0890b5ab78de1c8d598ea1a4 linux-3.0/sound/pci/ice1712/ews.h -2aa363009fe885368ad567ad46b97046 linux-3.0/sound/pci/ice1712/ews.c -7a91109f0346e5a7f8c71ba5096e9a93 linux-3.0/sound/pci/ice1712/envy24ht.h -08f33d784a34c4990916fcc0900afb94 linux-3.0/sound/pci/ice1712/delta.h -8f508af0ce8341ddb461e72872c0a48b linux-3.0/sound/pci/ice1712/delta.c -fc614894ec77c197a09cbf3d1a2157a4 linux-3.0/sound/pci/ice1712/aureon.h -070d9b33906143c792de895bcec5871d linux-3.0/sound/pci/ice1712/aureon.c -65ac233f86353117556375d55b8eb617 linux-3.0/sound/pci/ice1712/amp.h -eda0b171dc388a139dc23907b60d7e0e linux-3.0/sound/pci/ice1712/amp.c -6fce7ecfb3d93755495ef33ebc30faec linux-3.0/sound/pci/ice1712/ak4xxx.c -c88f874007f9dc425be5f149b08e2edc linux-3.0/sound/pci/ice1712/Makefile -9b53b0488f18d179cdacb440f20f5058 linux-3.0/sound/pci/hda/patch_via.c -a2928eb58266ae57c06532efeda15120 linux-3.0/sound/pci/hda/patch_sigmatel.c -f63abbca5191a20497e23d74eaa74d06 linux-3.0/sound/pci/hda/patch_si3054.c -b6d76c0797fc7236531f9972232e695a linux-3.0/sound/pci/hda/patch_realtek.c -5d8944c8d60c3ccc6aec5d1806e0592e linux-3.0/sound/pci/hda/patch_hdmi.c -40499f256fb93b6909c44cd7449b123b linux-3.0/sound/pci/hda/patch_conexant.c -e2b7980b53635b03c9613692f7b701d1 linux-3.0/sound/pci/hda/patch_cmedia.c -a0cf65e56672a00abe580283c377a212 linux-3.0/sound/pci/hda/patch_cirrus.c -3d36a51ef70404b3dd815a8af3deb19b linux-3.0/sound/pci/hda/patch_ca0110.c -20508ecdda6a03d30f0394398ee00a15 linux-3.0/sound/pci/hda/patch_analog.c -4fe5f486abba7be6ef70a6a0e11a81c8 linux-3.0/sound/pci/hda/hda_proc.c -d5798c0d0b828452caf8495f1a885d28 linux-3.0/sound/pci/hda/hda_local.h -4f74ec3d12fca0b76750f0ec5c9a8746 linux-3.0/sound/pci/hda/hda_intel.c -2159181cfccd966635ba93cae761ed3a linux-3.0/sound/pci/hda/hda_hwdep.c -98acfe0551e499711b223eddadbc749f linux-3.0/sound/pci/hda/hda_generic.c -b8442df49c821b7ed5fd7c7492d9df09 linux-3.0/sound/pci/hda/hda_eld.c -45162ad95e990a45122be076dcdb2bab linux-3.0/sound/pci/hda/hda_codec.h -8f7d84b6fcfa1c54e906c98a97b2fa52 linux-3.0/sound/pci/hda/hda_codec.c -40882522c1508a95f1192d24a65af43f linux-3.0/sound/pci/hda/hda_beep.h -7c32788b5cd89747161723e466a8247c linux-3.0/sound/pci/hda/hda_beep.c -975ea1db6c4c06240a250e1f8d9f7261 linux-3.0/sound/pci/hda/Makefile -f31d841c8c4651ce65d21104aff0c906 linux-3.0/sound/pci/hda/Kconfig -132fc0bae6bceff53d98d4a5a504997e linux-3.0/sound/pci/fm801.c -619dc3c58b9cc61e18d7c4e070b84f8b linux-3.0/sound/pci/es1968.c -c887381e81bf01875f02a23e070e0e32 linux-3.0/sound/pci/es1938.c -d2912966a2f65db8efe8be8c018a3e20 linux-3.0/sound/pci/ens1371.c -d8f15649de2b8f564c4428c48b68e453 linux-3.0/sound/pci/ens1370.c -9c07f562411713de6e0b8501658be89a linux-3.0/sound/pci/emu10k1/voice.c -01f1cb48ac31fd780403cccbe711187c linux-3.0/sound/pci/emu10k1/tina2.h -24afa31ad64813480ea41f035c439d41 linux-3.0/sound/pci/emu10k1/timer.c -848fccacc7956a4590ae8dea455852c2 linux-3.0/sound/pci/emu10k1/p17v.h -f128bbd2cb10e2d11d10c15615e57be9 linux-3.0/sound/pci/emu10k1/p16v.h -cd1a1aa6e3cb708b7727454c4ced4319 linux-3.0/sound/pci/emu10k1/p16v.c -b823cf8709033a353aa97c89c222cb52 linux-3.0/sound/pci/emu10k1/memory.c -5e6d64aee2fef90958facf25bfaf06c0 linux-3.0/sound/pci/emu10k1/irq.c -02e1b8385bfa539c7156014449a5aef9 linux-3.0/sound/pci/emu10k1/io.c -b615eccc575d7a45d55a85d115af9b77 linux-3.0/sound/pci/emu10k1/emuproc.c -2fb78263e385d3f8b6eddf5813fe1d38 linux-3.0/sound/pci/emu10k1/emupcm.c -cb145b922a030cb6f676a7c30fa3ff8a linux-3.0/sound/pci/emu10k1/emumpu401.c -1abb24ec29f1556cbf74c6291d32d5b0 linux-3.0/sound/pci/emu10k1/emumixer.c -38d3631cb8050efa9fae7971f2f374eb linux-3.0/sound/pci/emu10k1/emufx.c -198ebacd53d81de85a04830a01ec4372 linux-3.0/sound/pci/emu10k1/emu10k1x.c -9222eee26a94f1a0b457acd0e691b2ba linux-3.0/sound/pci/emu10k1/emu10k1_synth_local.h -785106d6e3c0ce24b3b6228222397c00 linux-3.0/sound/pci/emu10k1/emu10k1_synth.c -e6c4d58fa9999f9d7f5a7feefb92abc0 linux-3.0/sound/pci/emu10k1/emu10k1_patch.c -9dd1fd2a309e233b51611551dd47ffeb linux-3.0/sound/pci/emu10k1/emu10k1_main.c -21b7b6c3fb75e7e5ddd495cf7f2357af linux-3.0/sound/pci/emu10k1/emu10k1_callback.c -27435963af70c2136068811acbca5f5f linux-3.0/sound/pci/emu10k1/emu10k1.c -4574fb7a397f4d3cb2277cedc892091c linux-3.0/sound/pci/emu10k1/Makefile -207d6ce64c5ec1a43d2a647101a077a3 linux-3.0/sound/pci/echoaudio/mona_dsp.c -8031512bde18b9e149f48d8825f5eb2a linux-3.0/sound/pci/echoaudio/mona.c -76fe42e361cb4a4f179ae65ae2e35a75 linux-3.0/sound/pci/echoaudio/midi.c -e950307732695f2440b24a0d4275c6c4 linux-3.0/sound/pci/echoaudio/mia_dsp.c -ea4713f8ce282c1e17a50ded40baa37e linux-3.0/sound/pci/echoaudio/mia.c -2d8bf208d6722d1b6e4b514cb02e5755 linux-3.0/sound/pci/echoaudio/layla24_dsp.c -13e98557520da2aa835ad2ccf6165dfa linux-3.0/sound/pci/echoaudio/layla24.c -5e29029578c97ac5e42dd3ea9f869b44 linux-3.0/sound/pci/echoaudio/layla20_dsp.c -6fba9dad041d5ae4c2836b4d82d13db8 linux-3.0/sound/pci/echoaudio/layla20.c -e8cda889328848c160ed0799ce50697f linux-3.0/sound/pci/echoaudio/indigoiox_dsp.c -330d39db738e9489b9227be4b80d6cc6 linux-3.0/sound/pci/echoaudio/indigoiox.c -bb1939b48faa37ba0e19dfd64dc225ee linux-3.0/sound/pci/echoaudio/indigoio_dsp.c -20d604bcc7fa00f7b2fb949645570e66 linux-3.0/sound/pci/echoaudio/indigoio.c -e4fc9ad1cb8574c9271618bc14846ce1 linux-3.0/sound/pci/echoaudio/indigodjx_dsp.c -3eb0f46c1f8f7605160bcdfa3cb81fbb linux-3.0/sound/pci/echoaudio/indigodjx.c -6c67db5f56704c03bc0db26abf627f6d linux-3.0/sound/pci/echoaudio/indigodj_dsp.c -d481e82dc8334d7eacfbdd02e4cf0c0f linux-3.0/sound/pci/echoaudio/indigodj.c -3fb28fdc2016897d22fc71980921bee5 linux-3.0/sound/pci/echoaudio/indigo_express_dsp.c -31fb71a6b6c81f0e7199807b6282767b linux-3.0/sound/pci/echoaudio/indigo_dsp.c -64e887647cb066c40cff654c9841e908 linux-3.0/sound/pci/echoaudio/indigo.c -b4c07f82398df0b786d7fcc227ff2b78 linux-3.0/sound/pci/echoaudio/gina24_dsp.c -a23a09a15f5328aadf7a9fd4e6330728 linux-3.0/sound/pci/echoaudio/gina24.c -b0a471265b34ad130f9bdaf1d33a3af3 linux-3.0/sound/pci/echoaudio/gina20_dsp.c -04fab4ddf763b2dced6f24e2e06a7564 linux-3.0/sound/pci/echoaudio/gina20.c -b6227daf9b647d2dea697b9ef904592c linux-3.0/sound/pci/echoaudio/echoaudio_gml.c -9bff3b6513d8a24ba9535d723c56c6b7 linux-3.0/sound/pci/echoaudio/echoaudio_dsp.h -a604033569a8ab89be51c204e16d7cc2 linux-3.0/sound/pci/echoaudio/echoaudio_dsp.c -c84749ae2dbf2ea478f1ab2e030ecb54 linux-3.0/sound/pci/echoaudio/echoaudio_3g.c -cc5f9fa7eaad42c43ce870c1a6c74cf5 linux-3.0/sound/pci/echoaudio/echoaudio.h -ff44da9d2b350eef63e9a26ebf7b14fa linux-3.0/sound/pci/echoaudio/echoaudio.c -8bf8284064c5eb63a58efed2d0cf4b25 linux-3.0/sound/pci/echoaudio/echo3g_dsp.c -c6334fd9ebfc3ebf4d2586dd0f31fcaa linux-3.0/sound/pci/echoaudio/echo3g.c -9160f0a3205cf0c130591edd7087dedd linux-3.0/sound/pci/echoaudio/darla24_dsp.c -5403a850ad27554d14966ff5fc34fa04 linux-3.0/sound/pci/echoaudio/darla24.c -f41dcb8cfbeeb96de6b4ead1d13cb0bd linux-3.0/sound/pci/echoaudio/darla20_dsp.c -337e0fcbce949f3dc6e152ba67d7667b linux-3.0/sound/pci/echoaudio/darla20.c -afb3ecf6b7c024c5af71e380cf007277 linux-3.0/sound/pci/echoaudio/Makefile -34e7705a2cdc9f46e0f7de6d17118ef4 linux-3.0/sound/pci/ctxfi/xfi.c -6e278be52250d19bf0e45d35c1d8a4cd linux-3.0/sound/pci/ctxfi/ctvmem.h -0e3ec0dc6944521db7a4d32888c60eab linux-3.0/sound/pci/ctxfi/ctvmem.c -d212c7f96e9917eb6518c784579d7895 linux-3.0/sound/pci/ctxfi/cttimer.h -f883e6e3684dd62de66293b607367897 linux-3.0/sound/pci/ctxfi/cttimer.c -35569ab9c37d467bad7bbb47e992ec1a linux-3.0/sound/pci/ctxfi/ctsrc.h -905b716b5ea30729233cbb8e96070396 linux-3.0/sound/pci/ctxfi/ctsrc.c -007de05b8db86591732d8d84966d3d86 linux-3.0/sound/pci/ctxfi/ctresource.h -16a2663c45077388a3a42c80abddd1ef linux-3.0/sound/pci/ctxfi/ctresource.c -3d601a8ab72777988b42f459c1db2570 linux-3.0/sound/pci/ctxfi/ctpcm.h -4bf7048467eac613f49b3f608d938427 linux-3.0/sound/pci/ctxfi/ctpcm.c -4815e965209251058ff1c8cb41928121 linux-3.0/sound/pci/ctxfi/ctmixer.h -0212a8dbde18ec2fec8a004bc211db3d linux-3.0/sound/pci/ctxfi/ctmixer.c -b35c232ae62d3d978745294435b546e2 linux-3.0/sound/pci/ctxfi/ctimap.h -fda47909f3d592c4ccd1d71490a5341a linux-3.0/sound/pci/ctxfi/ctimap.c -4288e789eaf3fc44d42e742ad71e117d linux-3.0/sound/pci/ctxfi/cthw20k2.h -15400e62e0096976014a8594e90a46a3 linux-3.0/sound/pci/ctxfi/cthw20k2.c -21ca0f5eb69358852c2fa81cdc09cf5c linux-3.0/sound/pci/ctxfi/cthw20k1.h -50ad1fa289de8259656ba5f9581d6bd8 linux-3.0/sound/pci/ctxfi/cthw20k1.c -5ffd7536ed9f9291cc6a263274fd3351 linux-3.0/sound/pci/ctxfi/cthardware.h -6dbfea4320bb66443756cb48516333ff linux-3.0/sound/pci/ctxfi/cthardware.c -bd6312c0b7d1944df2f974bad52eef58 linux-3.0/sound/pci/ctxfi/ctdaio.h -c581bb5867d2a7da7385ac6a1538aa71 linux-3.0/sound/pci/ctxfi/ctdaio.c -13b24f2aa7f79d19f44aea725e3c0532 linux-3.0/sound/pci/ctxfi/ctatc.h -2089ff0d9d4db70e82794f459702fdf6 linux-3.0/sound/pci/ctxfi/ctatc.c -caeea8dc962cf884d508245b00e184ae linux-3.0/sound/pci/ctxfi/ctamixer.h -fd5e62921d816e192fe7471ce43c4501 linux-3.0/sound/pci/ctxfi/ctamixer.c -dd4024d442a207128f942618c7506f40 linux-3.0/sound/pci/ctxfi/ct20k2reg.h -607c69aeef9099fe560a5c98b82e1063 linux-3.0/sound/pci/ctxfi/ct20k1reg.h -fc5c1c7221d29325db7a57401512697e linux-3.0/sound/pci/ctxfi/Makefile -73ba27c21fb473ba755f1a82c319818f linux-3.0/sound/pci/cs5535audio/cs5535audio_pm.c -29a4252907c4ed75ecd6b5ce7a1e8e41 linux-3.0/sound/pci/cs5535audio/cs5535audio_pcm.c -5dd0a12638d5c3f814a9f81f5528b177 linux-3.0/sound/pci/cs5535audio/cs5535audio_olpc.c -fdf8ce7027aa77d3ea0bdf8b3f5b68f8 linux-3.0/sound/pci/cs5535audio/cs5535audio.h -b0a46318fe28b38f3d8f68d57dc53599 linux-3.0/sound/pci/cs5535audio/cs5535audio.c -5d7038d92e40aa1bf7a5d2989f0e0e63 linux-3.0/sound/pci/cs5535audio/Makefile -22119497d5bcab8223269aaf1dbe91a8 linux-3.0/sound/pci/cs5530.c -f89cd396780bffa743292a47d694959f linux-3.0/sound/pci/cs46xx/imgs/cwcsnoop.h -18de5188665443b8c390a7092bd05795 linux-3.0/sound/pci/cs46xx/imgs/cwcdma.h -48631cd5e642b2a11159ee9488ddbe0a linux-3.0/sound/pci/cs46xx/imgs/cwcdma.asp -5806a4c9c0860b3c5849ec9a38d13792 linux-3.0/sound/pci/cs46xx/imgs/cwcbinhack.h -22ab3a6bc8be8b2be69f3061413a678b linux-3.0/sound/pci/cs46xx/imgs/cwcasync.h -69d61194ac463fc8fd4fe1a71a9ab7b9 linux-3.0/sound/pci/cs46xx/imgs/cwc4630.h -c019608b10169eda345283fbb4ffb09b linux-3.0/sound/pci/cs46xx/dsp_spos_scb_lib.c -97bdd11122cec98bcf644501883d3a99 linux-3.0/sound/pci/cs46xx/dsp_spos.h -8a261439d8250471402a2558f048f3f0 linux-3.0/sound/pci/cs46xx/dsp_spos.c -b821fa17db75e4cb5a0f59a0ecc1fc0d linux-3.0/sound/pci/cs46xx/cs46xx_lib.h -b221e7872ba04e681854d2c7f5963d4f linux-3.0/sound/pci/cs46xx/cs46xx_lib.c -5cc53fceda0bf3470b90cd4b9292e101 linux-3.0/sound/pci/cs46xx/cs46xx_image.h -4bdf1847d97c1887a96785c87bb2a459 linux-3.0/sound/pci/cs46xx/cs46xx.c -91c0d7a4ea6b4dc0703aa8ceb50a2506 linux-3.0/sound/pci/cs46xx/Makefile -e5229fa3722731433443844005905745 linux-3.0/sound/pci/cs4281.c -b4748261c68c23151105210cda772b67 linux-3.0/sound/pci/cmipci.c -d384d2fd653c733b9553ab61c2273736 linux-3.0/sound/pci/ca0106/ca_midi.h -555b1e00e9e31e36d87b68c0f5af7617 linux-3.0/sound/pci/ca0106/ca_midi.c -96d50852dd6e066696a9c710e5209fdd linux-3.0/sound/pci/ca0106/ca0106_proc.c -b877c7c48d8ecc81d8655c58ef5f219e linux-3.0/sound/pci/ca0106/ca0106_mixer.c -daf20ae74e4658647bcab1581ff98d94 linux-3.0/sound/pci/ca0106/ca0106_main.c -1612bb475e78fa309fc3b777d412ecf1 linux-3.0/sound/pci/ca0106/ca0106.h -8bc90285c3447fedbb6cdceed3bff865 linux-3.0/sound/pci/ca0106/Makefile -826663f15ca1305fb636e7e6bb321355 linux-3.0/sound/pci/bt87x.c -5d1b5987aa5708eef96f30a3e7031a1d linux-3.0/sound/pci/azt3328.h -8660f3c69db03720f74edcc285c72078 linux-3.0/sound/pci/azt3328.c -fd3d1ef001f91956e7883fa869121cc4 linux-3.0/sound/pci/aw2/saa7146.h -428afea403b2a05eb43f4ac9d49df50e linux-3.0/sound/pci/aw2/aw2-tsl.c -01e03caf908008fa44fb23ea090a8640 linux-3.0/sound/pci/aw2/aw2-saa7146.h -b60302f742bf1f751cd9ec7baace33a2 linux-3.0/sound/pci/aw2/aw2-saa7146.c -6d234c19356aa9f5d0d46a2c75c89f36 linux-3.0/sound/pci/aw2/aw2-alsa.c -5fc8b641f2d23d79966b516d92d3548c linux-3.0/sound/pci/aw2/Makefile -fcf35916261bc6adcd9aba2e88900d31 linux-3.0/sound/pci/au88x0/au88x0_xtalk.h -a93a058114f958b529095b21af18e83f linux-3.0/sound/pci/au88x0/au88x0_xtalk.c -8d495e5c7e0f5b32fee015d418f0d022 linux-3.0/sound/pci/au88x0/au88x0_wt.h -65a01dd8f6b6e33eb77330a7606ee95b linux-3.0/sound/pci/au88x0/au88x0_synth.c -c43ad4ec30b5b2d34434d27b8df0d413 linux-3.0/sound/pci/au88x0/au88x0_pcm.c -162219bb8dcf94633e275a12198b3942 linux-3.0/sound/pci/au88x0/au88x0_mpu401.c -82b2400c4aa7da48b14ac9b6b9894037 linux-3.0/sound/pci/au88x0/au88x0_mixer.c -46f8b6aa05bf1fff2d997e0433802f4e linux-3.0/sound/pci/au88x0/au88x0_game.c -064ffa8b5f05efeafb539cf317a719d0 linux-3.0/sound/pci/au88x0/au88x0_eqdata.c -126044527a328dc3cab23c2aeadc8a76 linux-3.0/sound/pci/au88x0/au88x0_eq.h -3088e20ae1febed1d90c1056001a51fe linux-3.0/sound/pci/au88x0/au88x0_eq.c -833bf0a1cc9d51ccfef672f1439b66bc linux-3.0/sound/pci/au88x0/au88x0_core.c -86d759d0b487a8f9e673001d37267dc0 linux-3.0/sound/pci/au88x0/au88x0_a3ddata.c -523c64b375039b47eab716fd73ed7ba0 linux-3.0/sound/pci/au88x0/au88x0_a3d.h -a560c6a6e7a5940ae63b0c3677753125 linux-3.0/sound/pci/au88x0/au88x0_a3d.c -e8cc51575a8864cfb9e870fb47cb6ac2 linux-3.0/sound/pci/au88x0/au88x0.h -06efdc5fb75de3452febb0f694743ef7 linux-3.0/sound/pci/au88x0/au88x0.c -56dbc36c4aded52f76402f8b423b9d0c linux-3.0/sound/pci/au88x0/au8830.h -795ae382568a42e384a7481ef5d74bcd linux-3.0/sound/pci/au88x0/au8830.c -9ff8c3fb7a40486aef58cf659ab92973 linux-3.0/sound/pci/au88x0/au8820.h -a51611606d325f88e6222a241cabfb3e linux-3.0/sound/pci/au88x0/au8820.c -baffcf90b7e54b4474c8ee442f819bfb linux-3.0/sound/pci/au88x0/au8810.h -87a750d5e1185b57181843533b937477 linux-3.0/sound/pci/au88x0/au8810.c -dac8f9498d7d78ae41b7744b280839c2 linux-3.0/sound/pci/au88x0/Makefile -22b6bc92d5eeb40ae8755762a05e2811 linux-3.0/sound/pci/atiixp_modem.c -7daff5b6f8014ab96df721be879220fa linux-3.0/sound/pci/atiixp.c -19ae0854cc0dc23b3eaf3b8822785409 linux-3.0/sound/pci/asihpi/hpipcida.h -5d549dcb0c525427db65c96377894e33 linux-3.0/sound/pci/asihpi/hpios.h -45e3b2e4acf197b7b05a0bb974be1933 linux-3.0/sound/pci/asihpi/hpios.c -5809cb78324f1e746968c6c246208d6a linux-3.0/sound/pci/asihpi/hpioctl.h -50a78184dc3339dee262987ea5dad8d9 linux-3.0/sound/pci/asihpi/hpioctl.c -34aa120a935169d4dc7c709f0875852b linux-3.0/sound/pci/asihpi/hpimsgx.h -9e8b6d3c9776d1585a8e37ce6843589a linux-3.0/sound/pci/asihpi/hpimsgx.c -48cdbfe79e31a4ed4a02b6a998e4a612 linux-3.0/sound/pci/asihpi/hpimsginit.h -e2d47c154a1cc1fa7f12af6e16755b31 linux-3.0/sound/pci/asihpi/hpimsginit.c -a58a7492c94accd95cd8b0cd2cc05b8c linux-3.0/sound/pci/asihpi/hpifunc.c -75e7d1d157f06d9e5772047df483ccdc linux-3.0/sound/pci/asihpi/hpidspcd.h -18ad89e5d88845d45d6806413f0d20c7 linux-3.0/sound/pci/asihpi/hpidspcd.c -1d138da23bc2440f0900d02d2ed56a16 linux-3.0/sound/pci/asihpi/hpidebug.h -04cda5660d140b46f43c71e559727f59 linux-3.0/sound/pci/asihpi/hpidebug.c -2b7dc88abda7d77a8e1d8ec2d79c7ee8 linux-3.0/sound/pci/asihpi/hpicmn.h -a037ab7faefab626b8da0be0484f6ec2 linux-3.0/sound/pci/asihpi/hpicmn.c -e42f2623df3f8c793290bd0ec23523aa linux-3.0/sound/pci/asihpi/hpi_internal.h -66e2db63750105e7ed5d541ffbc83b45 linux-3.0/sound/pci/asihpi/hpi6205.h -a0d12dd1a6e7a94b848cc520fa3b64e8 linux-3.0/sound/pci/asihpi/hpi6205.c -9585ae6b292cc2d276f3206ca1bfa48a linux-3.0/sound/pci/asihpi/hpi6000.h -b47cff29b7214a2c57b50299ecda7dd3 linux-3.0/sound/pci/asihpi/hpi6000.c -c232e6782e75f1d2e9e5b376548aeac9 linux-3.0/sound/pci/asihpi/hpi.h -6025bd4054725bbc7064165ed9b4450b linux-3.0/sound/pci/asihpi/asihpi.c -6a11615ba7832c174ca41728d8894fb1 linux-3.0/sound/pci/asihpi/Makefile -edc0683885ee7b4496730be1323953f5 linux-3.0/sound/pci/als4000.c -26311d25bdafd0aa38586f86f6f0884f linux-3.0/sound/pci/als300.c -9f53f42c8c9cded0801b05161c8ae339 linux-3.0/sound/pci/ali5451/ali5451.c -eb0308ea5ce8a1c9878ef36871ba8360 linux-3.0/sound/pci/ali5451/Makefile -d5101d122995faabb4141d0cca455afb linux-3.0/sound/pci/ak4531_codec.c -1fc4d259500dcfe61232a771685c39c7 linux-3.0/sound/pci/ad1889.h -d28db2497b0e82fe32c29648c3798956 linux-3.0/sound/pci/ad1889.c -10e1e6c6eba2225f49dc796fd48a6e43 linux-3.0/sound/pci/ac97/ac97_proc.c -ddc409f0d4d967d239d728d52200b80a linux-3.0/sound/pci/ac97/ac97_pcm.c -7312031846d8d6fd61890728b9da9557 linux-3.0/sound/pci/ac97/ac97_patch.h -c7edb8beab6091d35656677b52ebaeb8 linux-3.0/sound/pci/ac97/ac97_patch.c -5d52d86031c96ed68a5341ada062312b linux-3.0/sound/pci/ac97/ac97_local.h -243039df7327ee11db55399a7caffee0 linux-3.0/sound/pci/ac97/ac97_id.h -cfc495f45fefefe3c3ca499e89771dbc linux-3.0/sound/pci/ac97/ac97_codec.c -4ea22d1c93969582a7d1100cd95d2620 linux-3.0/sound/pci/ac97/Makefile -8fd9919f93a4c2eab7735ad00dfdb4a1 linux-3.0/sound/pci/Makefile -d2cc3c3d066f22feac437d6922cef8b3 linux-3.0/sound/pci/Kconfig -7f67c606c8ce6653ff544df1eb83fac7 linux-3.0/sound/parisc/harmony.h -827a37325c6d4dba299753719789ba24 linux-3.0/sound/parisc/harmony.c -a93594dbea6e87a7713c0f4a893377ff linux-3.0/sound/parisc/Makefile -fe4a7d084c4e0863321ac19e82e833bc linux-3.0/sound/parisc/Kconfig -8096c90d7319000e7664b20c08b47e31 linux-3.0/sound/oss/waveartist.h -2e13ecb1da2171ea4494fa723f962cbe linux-3.0/sound/oss/waveartist.c -08eea51bf66a093764143bbdd7d37655 linux-3.0/sound/oss/vwsnd.c -358e1facbff3cf96f71fe6f7353d2804 linux-3.0/sound/oss/vidc_fill.S -808ddad2bfb8f861c6fde2d56e5cb50e linux-3.0/sound/oss/vidc.h -d63b182b0fdb08feb2b411ad5d8738c0 linux-3.0/sound/oss/vidc.c -5b624411a2b5258aa1c3045d6c892cfb linux-3.0/sound/oss/v_midi.h -b6da070e5f06d81e73e78a8b6d1d6fdc linux-3.0/sound/oss/v_midi.c -b7382115cc344db33cca37f4875a62e6 linux-3.0/sound/oss/ulaw.h -689b3e47cca9343ef0ba303bc1fe84ba linux-3.0/sound/oss/uart6850.c -9c03b660bbb2d7776cebbb0705d923d3 linux-3.0/sound/oss/uart401.c -542988bc632f3f535b5f9c27450cf598 linux-3.0/sound/oss/tuning.h -0965fe4b0a69b758e8c4f58ee170bb44 linux-3.0/sound/oss/trix.c -786ae677492923b5b9a7ec1ca5e2f035 linux-3.0/sound/oss/sys_timer.c -a8ed653977d7d7bc033051947bbc96ce linux-3.0/sound/oss/swarm_cs4297a.c -034ff622f3bbd33eba22b2431859b591 linux-3.0/sound/oss/soundvers.h -9aa8c91955e6ea21c172faafa2d4c55e linux-3.0/sound/oss/soundcard.c -4a8af322a8a7f07fe160b85bb377e371 linux-3.0/sound/oss/sound_timer.c -d14fcb2c0d91cb744bf4cfedac18e6aa linux-3.0/sound/oss/sound_firmware.h -a085c87763930adb48034b1c9e5adcf4 linux-3.0/sound/oss/sound_config.h -4608228a44feddb8afdef1aaf0e34fcc linux-3.0/sound/oss/sound_calls.h -79b380fd68abef0d698709f039dc2807 linux-3.0/sound/oss/sequencer.c -10d1cdd8fa8c81ac1ad75c582755dc9d linux-3.0/sound/oss/sb_mixer.h -d23e9f0fabad60dcbdaa56694a40b927 linux-3.0/sound/oss/sb_mixer.c -e811bcd29e91b2031ac3ee51035d5aa5 linux-3.0/sound/oss/sb_midi.c -d9e1f0f6bdf98fa235c02f45a446445f linux-3.0/sound/oss/sb_ess.h -0be4a4e58095f80a2cb0131a10f3f550 linux-3.0/sound/oss/sb_ess.c -51bdbb4ebdc22b59e72408db297a2db8 linux-3.0/sound/oss/sb_common.c -0fbab05e4315cd74ee9396f2e08ec252 linux-3.0/sound/oss/sb_card.h -656faa4ae41b58d7e462a9edacd08865 linux-3.0/sound/oss/sb_card.c -d8724b37657ab82fbb7a2f29c7a01e8b linux-3.0/sound/oss/sb_audio.c -42cb3a028a34a18857a93d286b9e50c2 linux-3.0/sound/oss/sb.h -20c2c3bbb837c3f118fe7ae93a083037 linux-3.0/sound/oss/pss.c -0576e320c3d2404e8bf1d24fa389b904 linux-3.0/sound/oss/pas2_pcm.c -066f44fd1ec8557f5e6e31e4805e6b82 linux-3.0/sound/oss/pas2_mixer.c -9ed0abef2bf49d70c6cbdb10fc844b6b linux-3.0/sound/oss/pas2_midi.c -1b7981de0300f5e4a4fc6f271ec15c58 linux-3.0/sound/oss/pas2_card.c -35b8fc1af4e545d779b737b220c817c1 linux-3.0/sound/oss/pas2.h -e86354884605fb3b9af009bd873f6b7a linux-3.0/sound/oss/os.h -f98d725464ae9469974e6bf2f9fcfeb9 linux-3.0/sound/oss/opl3_hw.h -c57cfd1674a329c2365835b4a0644c2d linux-3.0/sound/oss/opl3.c -ee9d2a7b2dfd14948356ea8eed406168 linux-3.0/sound/oss/msnd_pinnacle.h -72c0402ea0d8f92a1b45bf44b8662a97 linux-3.0/sound/oss/msnd_pinnacle.c -986d7c41be4a72648abec19c1b2bd0b9 linux-3.0/sound/oss/msnd_classic.h -e1def14ef2ec82e7467b425e20002eca linux-3.0/sound/oss/msnd_classic.c -f0f6919aa2ab28a598bbcd62cf8d1064 linux-3.0/sound/oss/msnd.h -f66d7deb98c981146fe9d5add27e1740 linux-3.0/sound/oss/msnd.c -f47d2c75a84a0a5eb4000e71a1d78a8f linux-3.0/sound/oss/mpu401.h -0ca913d83b3a4dfb861a5a473c4120b2 linux-3.0/sound/oss/mpu401.c -6cbba5e6ec5c7b6a19be9115a1d87cf0 linux-3.0/sound/oss/midibuf.c -36f4bd7459542039493fec366452adaf linux-3.0/sound/oss/midi_synth.h -57e3a03f293caf97dd2871d7e78e5b50 linux-3.0/sound/oss/midi_synth.c -9fc144ff8449e0a0685d072dc500352c linux-3.0/sound/oss/midi_ctrl.h -d21eebf230e51349453157ea31acb4e1 linux-3.0/sound/oss/kahlua.c -d0d727cdd82c54c528b1e8ac4556a04e linux-3.0/sound/oss/hex2hex.c -1361b02441cf6a18568e725964a58aeb linux-3.0/sound/oss/dmasound/dmasound_q40.c -9ffdf8bca95edd1c8887700339c66c6d linux-3.0/sound/oss/dmasound/dmasound_paula.c -28252cee4db5cd5d28513ffb81e3729d linux-3.0/sound/oss/dmasound/dmasound_core.c -02dd17fb15d8ca7818bfa2aaca64e7f1 linux-3.0/sound/oss/dmasound/dmasound_atari.c -a5baa12b86639288339338a2c36629c0 linux-3.0/sound/oss/dmasound/dmasound.h -8a1d68a09ca410f629980409c816c3bb linux-3.0/sound/oss/dmasound/Makefile -7626dba14494abb5c843786a794b1b74 linux-3.0/sound/oss/dmasound/Kconfig -798aa34da7182a1b968c99f2b205c4fc linux-3.0/sound/oss/dmabuf.c -3d28a4b3154aef39affd6877efccb7a0 linux-3.0/sound/oss/dev_table.h -25443879abc2c58d0b10499659bd3766 linux-3.0/sound/oss/dev_table.c -8cb3006e970c3d07845b1eb5d3e7430a linux-3.0/sound/oss/coproc.h -85b99f1b33c6ff87b25f54523389f81c linux-3.0/sound/oss/bin2hex.c -e917879fc01765731809294e53fc111f linux-3.0/sound/oss/audio.c -bf32455268e11aeca3760367f713f09d linux-3.0/sound/oss/aedsp16.c -7012fa6e9497b4195902aecd4ac5f6c6 linux-3.0/sound/oss/ad1848_mixer.h -ecda4b094a2af5363d35ed13722157c5 linux-3.0/sound/oss/ad1848.h -fdf03fac02505ef94e2fc60d04ff0bbb linux-3.0/sound/oss/ad1848.c -1f93e2fc154516ab7d008d60e97f480c linux-3.0/sound/oss/README.FIRST -6560b5e436ac86a5e97b6ffaa99bc932 linux-3.0/sound/oss/Makefile -fa85f12f0197660052aaf2c92a37a366 linux-3.0/sound/oss/Kconfig -e39b2322373e29d16f5884243809000d linux-3.0/sound/oss/CHANGELOG -ca0cb4b26d0666a3ad5f23034389fb25 linux-3.0/sound/oss/.gitignore -a932f5bb1e67154fc3eb07d5d8da625a linux-3.0/sound/mips/sgio2audio.c -21872685e446ff2775b2109513288fd5 linux-3.0/sound/mips/hal2.h -4444ea474c7fc73749f0353a93b02020 linux-3.0/sound/mips/hal2.c -67b1dea5a25b264576e6a5a1c4118f36 linux-3.0/sound/mips/au1x00.c -08f1f053212a7588a9b3b495e22320a8 linux-3.0/sound/mips/ad1843.c -71db2b6ecc08e6642f384c5ec17632b5 linux-3.0/sound/mips/Makefile -c7bec396b27d8619ab8bb648bbcc64c0 linux-3.0/sound/mips/Kconfig -1ebda09f71a0c5429e46fd2f356a69a4 linux-3.0/sound/last.c -ecb374f1600b9f3f090f6359d333c5b6 linux-3.0/sound/isa/wss/wss_lib.c -c56e340d83df8970f41be4ec41508802 linux-3.0/sound/isa/wss/Makefile -e410aad4f960405d3acd5a679de03e05 linux-3.0/sound/isa/wavefront/wavefront_synth.c -162e791440cf8df5758e3dec3869909e linux-3.0/sound/isa/wavefront/wavefront_midi.c -1ba83267346a3a5b6835f99c73f702dd linux-3.0/sound/isa/wavefront/wavefront_fx.c -620cb47322d59c248f68d0b7ff8a848d linux-3.0/sound/isa/wavefront/wavefront.c -ad23a5465402cd1f2c7fb7abadf4c0e5 linux-3.0/sound/isa/wavefront/Makefile -0190e4053b095f718eadcbdc07d7b126 linux-3.0/sound/isa/sscape.c -97bdfa69b1177bc25b36c76f4527c0ad linux-3.0/sound/isa/sc6000.c -e6f63cd51d5ca741440d8a3ff95de3a2 linux-3.0/sound/isa/sb/sbawe.c -6d7cdc68d173d576f7103aaad9e6dc65 linux-3.0/sound/isa/sb/sb_mixer.c -100127a75ebaaac199d6d469d9db1c95 linux-3.0/sound/isa/sb/sb_common.c -44ee72e7b24c96f62638f42334f42ff5 linux-3.0/sound/isa/sb/sb8_midi.c -8e046e2cb540a9ecd9cd7beeb9b45ba8 linux-3.0/sound/isa/sb/sb8_main.c -c40e35f7631d17acfb66f62a02f7bc94 linux-3.0/sound/isa/sb/sb8.c -aaebd2b6deafc0d60cc44a915163ab49 linux-3.0/sound/isa/sb/sb16_main.c -c92679d508855ae2f8d912ba9d37c2b4 linux-3.0/sound/isa/sb/sb16_csp.c -3435043a5f0a5daf864605bef42f4e53 linux-3.0/sound/isa/sb/sb16.c -12a8b884affc105739f7f85e0a3c1ebb linux-3.0/sound/isa/sb/jazz16.c -ee685436d9ff6b046392aa7054794e38 linux-3.0/sound/isa/sb/emu8000_synth.c -a081da00c5dd8e4ab4745b947656a4f7 linux-3.0/sound/isa/sb/emu8000_pcm.c -374540e34ffc22328dd4a532567bf751 linux-3.0/sound/isa/sb/emu8000_patch.c -de4840ad085fcab583930355970efe7c linux-3.0/sound/isa/sb/emu8000_local.h -21c3f1460b5696ca8c3a0ddfea0010fd linux-3.0/sound/isa/sb/emu8000_callback.c -42f569125ad06f7df710017bae4872db linux-3.0/sound/isa/sb/emu8000.c -88b395f0ca66fa1544ce3fba3352431e linux-3.0/sound/isa/sb/Makefile -974df45037b01c86a7ce12be1681c83a linux-3.0/sound/isa/opti9xx/opti93x.c -f4f59cf70e21bc03bfc3fa994d5aedff linux-3.0/sound/isa/opti9xx/opti92x-cs4231.c -0daa2cbb132530257df3be2ab8a54542 linux-3.0/sound/isa/opti9xx/opti92x-ad1848.c -b01dfacfaa51d7db90e588bdd192e705 linux-3.0/sound/isa/opti9xx/miro.c -62d4b8a89fd9ba879235eefea3248090 linux-3.0/sound/isa/opti9xx/Makefile -de832afc6cf0b324923ff60a3deca590 linux-3.0/sound/isa/opl3sa2.c -a657fb00a0887ce0baaa15506908752b linux-3.0/sound/isa/msnd/msnd_pinnacle_mixer.c -888cffa4f8664dfd3c118d03a5f65e4a linux-3.0/sound/isa/msnd/msnd_pinnacle.h -f150040b02bfc1aa835939d0ef08120c linux-3.0/sound/isa/msnd/msnd_pinnacle.c -737d4ee116fd871c300c8a731778674c linux-3.0/sound/isa/msnd/msnd_midi.c -9bdcc697bcd56b7f88e67d03f44c2e69 linux-3.0/sound/isa/msnd/msnd_classic.h -e1def14ef2ec82e7467b425e20002eca linux-3.0/sound/isa/msnd/msnd_classic.c -5c2a88c691244a2880cc82ccd8130171 linux-3.0/sound/isa/msnd/msnd.h -afffd7cf6ee211c1e30d098392db8f99 linux-3.0/sound/isa/msnd/msnd.c -851618d7f61a1ea14d9b69ffb299f120 linux-3.0/sound/isa/msnd/Makefile -58b9310d5da69bda2c5cb1b31f56b0e9 linux-3.0/sound/isa/gus/interwave.c -e1d9f44b5e45de1df9ff9a3a21b76677 linux-3.0/sound/isa/gus/interwave-stb.c -26c7d00aef4a0eb082985518ff734088 linux-3.0/sound/isa/gus/gusmax.c -56bacdb41cbfdf431eade686904d15c0 linux-3.0/sound/isa/gus/gusextreme.c -99bc6a6e88970ae2f34182729d611bb0 linux-3.0/sound/isa/gus/gusclassic.c -7bd6aabd717d25a6a5f5b305c7dd2b18 linux-3.0/sound/isa/gus/gus_volume.c -539f7d205ffac55ed5610d65f5e7e350 linux-3.0/sound/isa/gus/gus_uart.c -89fdf1c585d43982f38e670bb2a4330a linux-3.0/sound/isa/gus/gus_timer.c -f9ac24a02accca0d7f807d3ec359ae80 linux-3.0/sound/isa/gus/gus_tables.h -6e9c69cf3fd622672e0c53eba177d27c linux-3.0/sound/isa/gus/gus_reset.c -32e07b9c15d347ed2e48048d8c962bd6 linux-3.0/sound/isa/gus/gus_pcm.c -95135c72ea1e3c965c8072114a10531d linux-3.0/sound/isa/gus/gus_mixer.c -8dd5f09bb1809bac4fe663de98910eef linux-3.0/sound/isa/gus/gus_mem_proc.c -3f16580ffbbabae2043a552fe144f2b3 linux-3.0/sound/isa/gus/gus_mem.c -e22c5ce6faa4ed03f6e9f72e36c77f57 linux-3.0/sound/isa/gus/gus_main.c -96dd9514215a643f0410aa38fc7a2fb2 linux-3.0/sound/isa/gus/gus_irq.c -0b68f3116a5899c3f691ac4f42e5367f linux-3.0/sound/isa/gus/gus_io.c -b26fdd6455ee0a155bac7bb8d3f20e59 linux-3.0/sound/isa/gus/gus_instr.c -9a91570c01450d90ca1a307fe746c2dc linux-3.0/sound/isa/gus/gus_dram.c -6a9b263b6f31fe8aa3ac46e4dc924b6a linux-3.0/sound/isa/gus/gus_dma.c -a43420912444ddf0f299069d223ecc14 linux-3.0/sound/isa/gus/Makefile -cba8d1e29ff976040948668b10316652 linux-3.0/sound/isa/galaxy/galaxy.c -ab6da131f4ca922b9b7acbacabc2a6b8 linux-3.0/sound/isa/galaxy/azt2316.c -1694f4da487f5c8105bed8766394ea3a linux-3.0/sound/isa/galaxy/azt1605.c -7d9beffc6359f814ca765fe98bfd4a04 linux-3.0/sound/isa/galaxy/Makefile -ad27312f9f107ead5b91a8e3d1a57e0d linux-3.0/sound/isa/es18xx.c -3cdc3e65f3393fe0e001cc47073efbe1 linux-3.0/sound/isa/es1688/es1688_lib.c -25787779804e5d58d59291e261d93e7d linux-3.0/sound/isa/es1688/es1688.c -5dbc9cacc35f25b92510a30d1d73ff42 linux-3.0/sound/isa/es1688/Makefile -a08cdce8d275af99314f2eb12fd7d94c linux-3.0/sound/isa/cs423x/cs4236_lib.c -3c9e394c564dcc420ce8efe370d572cf linux-3.0/sound/isa/cs423x/cs4236.c -a487d06539ca20484ab5eb4dc43959e5 linux-3.0/sound/isa/cs423x/cs4231.c -e42e2ed6cb7bf42791a811d9dccb7c49 linux-3.0/sound/isa/cs423x/Makefile -230e8da1f65c1379cca3be4121615333 linux-3.0/sound/isa/cmi8330.c -d57c691362cf54bb824052ae18a64c60 linux-3.0/sound/isa/azt2320.c -73ae9fcfdffd33a8573ccd27745ab37b linux-3.0/sound/isa/als100.c -2ec6015450431b07ee484caa0c36dd71 linux-3.0/sound/isa/adlib.c -a96b1fd9b9f856cc3f159f64576b55a2 linux-3.0/sound/isa/ad1848/ad1848.c -e6cb2f1cd0de30225807901db862eb5d linux-3.0/sound/isa/ad1848/Makefile -17fb0d30bd049c89ed35633f5ecc273c linux-3.0/sound/isa/ad1816a/ad1816a_lib.c -177d20473c43a788cddd60131ca23864 linux-3.0/sound/isa/ad1816a/ad1816a.c -c5ce248ddbce3859b93046221fe9a2c8 linux-3.0/sound/isa/ad1816a/Makefile -7603a8e4d5516e565152063f42ae2279 linux-3.0/sound/isa/Makefile -82f0e6fba532d0f55f01a7219f331fa5 linux-3.0/sound/isa/Kconfig -92b66e3b878867ad4e6b6b3654130225 linux-3.0/sound/i2c/tea6330t.c -8f5bbc5632f62321d436590836b44878 linux-3.0/sound/i2c/other/tea575x-tuner.c -c973fe31cd7ba0551cabfc7fc1ef8ca7 linux-3.0/sound/i2c/other/pt2258.c -b075b3c0f31c300dd6f7e339b63fb2ad linux-3.0/sound/i2c/other/ak4xxx-adda.c -78ff8335ee1f7147ad9e1b80743c6755 linux-3.0/sound/i2c/other/ak4117.c -52fd3365c24d58a0878fc3fc0b0c04e8 linux-3.0/sound/i2c/other/ak4114.c -f1dc930e98265a8692aff9882dbe5aab linux-3.0/sound/i2c/other/ak4113.c -4e74cc6f14774d5a26231d1344fce2e1 linux-3.0/sound/i2c/other/Makefile -3c3977c96e331a4d7a3629dca178e8d6 linux-3.0/sound/i2c/i2c.c -7386acd6faf7af8f192523709d5d6907 linux-3.0/sound/i2c/cs8427.c -4712ae1ccc39fe77e8a6ac4ac7a1cfaa linux-3.0/sound/i2c/Makefile -8f09cd0e077787c3a4d412b775d5b8fd linux-3.0/sound/firewire/speakers.c -6ce20689f5d4f600d56b162ba61d89aa linux-3.0/sound/firewire/packets-buffer.h -7c1d076c9a49e0aae2cebae3dca3ad67 linux-3.0/sound/firewire/packets-buffer.c -4265c12a195b12ffd77976a73ce3a977 linux-3.0/sound/firewire/lib.h -996ecec86386f36be017a227a5606068 linux-3.0/sound/firewire/lib.c -aee92e8b6e30278b93bf8c934800b139 linux-3.0/sound/firewire/iso-resources.h -5713a9334bdeada4a748ba2b5f1404d7 linux-3.0/sound/firewire/iso-resources.c -c48846a2515af8bd1d416daabb4197dd linux-3.0/sound/firewire/isight.c -7ef010b17f45a9522a36a65a3124c1a5 linux-3.0/sound/firewire/fcp.h -d577c7bfe4e1b2187da4ec3eb4d67439 linux-3.0/sound/firewire/fcp.c -70f5c17bec342cdad66ec670e8fb25d2 linux-3.0/sound/firewire/cmp.h -8457052f6a98888f44b8df9b89e1f220 linux-3.0/sound/firewire/cmp.c -55c90708df89e53e8117f7ae12f2aa59 linux-3.0/sound/firewire/amdtp.h -5c6660bed02acaff2d7ac45b79cfe7a1 linux-3.0/sound/firewire/amdtp.c -c60bdb004925418b69c8cadb90936fa2 linux-3.0/sound/firewire/Makefile -edf6a3332822f89b0dce31923935419d linux-3.0/sound/firewire/Kconfig -8dd2b1ea367b249a44ed974054741fbf linux-3.0/sound/drivers/vx/vx_uer.c -3078224b51f89bdfda3d998996725ea2 linux-3.0/sound/drivers/vx/vx_pcm.c -775ed8f6f3f8f31581bfa8c3127e4f95 linux-3.0/sound/drivers/vx/vx_mixer.c -56179e569e874243d4bc10dbfeeb8502 linux-3.0/sound/drivers/vx/vx_hwdep.c -41d7377dd2bee36a57eb1ab1ffa5de5d linux-3.0/sound/drivers/vx/vx_core.c -66ee223d0805afe8e03663ad96d4fb43 linux-3.0/sound/drivers/vx/vx_cmd.h -c59e79cfd0d35be848b09c90ebf283d9 linux-3.0/sound/drivers/vx/vx_cmd.c -951f3d895f6af1d891d1856004002092 linux-3.0/sound/drivers/vx/Makefile -3e74096e4362dcea0cc2cc568bfd0242 linux-3.0/sound/drivers/virmidi.c -04a9b5ed82576bb52c791b9b875552f3 linux-3.0/sound/drivers/serial-u16550.c -10d27f3de68e5ab4eeff56c0647e0491 linux-3.0/sound/drivers/portman2x4.c -f79c0b37dcd866bad6ec808c2ed4c52a linux-3.0/sound/drivers/pcsp/pcsp_mixer.c -98b5cabe9161bf5d4ea720da58ac6cd4 linux-3.0/sound/drivers/pcsp/pcsp_lib.c -680088a1fb84454add4355eab1fdf58c linux-3.0/sound/drivers/pcsp/pcsp_input.h -e3bde40ad116a5420e0f3d20696d846c linux-3.0/sound/drivers/pcsp/pcsp_input.c -b468814ce894dca12cf78f740a803b49 linux-3.0/sound/drivers/pcsp/pcsp.h -d09d8b560a8709f159eddcdfc4474051 linux-3.0/sound/drivers/pcsp/pcsp.c -8b170a95b6734573dbac9f98aa49b026 linux-3.0/sound/drivers/pcsp/Makefile -67fb5d018151ba2dc90648d5c138bbc7 linux-3.0/sound/drivers/pcm-indirect2.h -c761d8b80331b71aaa369c3ff9302bc5 linux-3.0/sound/drivers/pcm-indirect2.c -e0f5b5ac94e05b12eb0db1e286ea2c27 linux-3.0/sound/drivers/opl4/yrw801.c -f6ed5e10732ae53c9a80bf55d36692c9 linux-3.0/sound/drivers/opl4/opl4_synth.c -9637950eb237301ab1bcb4909a5bdc4b linux-3.0/sound/drivers/opl4/opl4_seq.c -d2b8d9057a661fbb69052bf4b3d6c30c linux-3.0/sound/drivers/opl4/opl4_proc.c -b2952a6bcd3939fb9a6ebc03519d48db linux-3.0/sound/drivers/opl4/opl4_mixer.c -c825ee1bd4e0278a45c4ee8c64f19fdc linux-3.0/sound/drivers/opl4/opl4_local.h -a1b296f7be15b82f4122e8f7de4041d4 linux-3.0/sound/drivers/opl4/opl4_lib.c -affef427edac4d8ed2e0ce027681d90e linux-3.0/sound/drivers/opl4/Makefile -21574636a578e9c1b23d8c2dff7dd285 linux-3.0/sound/drivers/opl3/opl3_voice.h -709ba04aca2cf99514327c4561358b71 linux-3.0/sound/drivers/opl3/opl3_synth.c -4ac1556033a2525b89924f94c8a6fcd7 linux-3.0/sound/drivers/opl3/opl3_seq.c -244103b708067dd15d27e77178b1f541 linux-3.0/sound/drivers/opl3/opl3_oss.c -0c2fa630ef3af60b9b4ada8e56fab284 linux-3.0/sound/drivers/opl3/opl3_midi.c -54966302a90041da5a5d1e512581a728 linux-3.0/sound/drivers/opl3/opl3_lib.c -2e05c708aafd952513959b66e4c97c8c linux-3.0/sound/drivers/opl3/opl3_drums.c -7e12e3b87772606614f69a10b3e3945e linux-3.0/sound/drivers/opl3/Makefile -17e1324dad43553b29d9b3de59a36d22 linux-3.0/sound/drivers/mts64.c -1a2a3f15a3ab7a969d4fd99d23068264 linux-3.0/sound/drivers/mtpav.c -46ab23c84b02dac39f4a24e383902e25 linux-3.0/sound/drivers/mpu401/mpu401_uart.c -c8d33e631c6ce50c42a977ec3fbb4e4b linux-3.0/sound/drivers/mpu401/mpu401.c -cb5f4fd1052b73bf8341b21148860473 linux-3.0/sound/drivers/mpu401/Makefile -65040a6df25ade9a34c162127143f374 linux-3.0/sound/drivers/ml403-ac97cr.c -43695c4e1f40209c98e4671f601da957 linux-3.0/sound/drivers/dummy.c -dca012f9de1a859eb9933c045c0b6f70 linux-3.0/sound/drivers/aloop.c -75cd8d0e79f65c747cce35eed9516c14 linux-3.0/sound/drivers/Makefile -dbb5f1d76e3183f45068a17a2255ee58 linux-3.0/sound/drivers/Kconfig -b9cfa184b23ba4ca7de07c0adb316c75 linux-3.0/sound/core/vmaster.c -5b7b1b2621aadfdc1894bf512883693e linux-3.0/sound/core/timer_compat.c -72ea9c3d777cc29f8b189b994c70e735 linux-3.0/sound/core/timer.c -14682e20c6915b5510f387c567f0860a linux-3.0/sound/core/sound_oss.c -0c94f9dd7fc15ad6658b40ed938627c6 linux-3.0/sound/core/sound.c -b64c05b51b6e6502c189f5f840bca635 linux-3.0/sound/core/sgbuf.c -63da7468634a338256e64d09c96c9160 linux-3.0/sound/core/seq/seq_virmidi.c -0ed2633ab8137fa92035b16e1619076f linux-3.0/sound/core/seq/seq_timer.h -a4f9e0c0889a8c4e283dc804fee08c6e linux-3.0/sound/core/seq/seq_timer.c -f44685ad67570276765f3dde2a5db587 linux-3.0/sound/core/seq/seq_system.h -37a76a08926f7e62b65c48944bc2c82e linux-3.0/sound/core/seq/seq_system.c -ebd755c9b82fd2a7edababe0f4193657 linux-3.0/sound/core/seq/seq_queue.h -527348feac121ec8f58c471900eb2b7d linux-3.0/sound/core/seq/seq_queue.c -4cbc97aee9bc43b74bd2ab3bde742953 linux-3.0/sound/core/seq/seq_prioq.h -c09e48238b82ae401b5c6c7411a26877 linux-3.0/sound/core/seq/seq_prioq.c -a7d6b499953645e97eb94cfefc06903b linux-3.0/sound/core/seq/seq_ports.h -311480be1423de6886441311e84a638f linux-3.0/sound/core/seq/seq_ports.c -60c090e59218530466bfa218232c6523 linux-3.0/sound/core/seq/seq_midi_event.c -956e6dc929178f319dc56074f6d27a10 linux-3.0/sound/core/seq/seq_midi_emul.c -da6d982496d0b7bbdf56cf84b1e1d249 linux-3.0/sound/core/seq/seq_midi.c -237734125dbf997f56dcfdfa90171207 linux-3.0/sound/core/seq/seq_memory.h -512ea07b95eb27d7dad274d7eb5af626 linux-3.0/sound/core/seq/seq_memory.c -bc370c0e167f6443e13664af790651ac linux-3.0/sound/core/seq/seq_lock.h -1c7138f6a69c80e29f4b7775820595b1 linux-3.0/sound/core/seq/seq_lock.c -9e3678410b02b5b3601d5ba048954823 linux-3.0/sound/core/seq/seq_info.h -0b380878d50c7188160aacb5cc200450 linux-3.0/sound/core/seq/seq_info.c -7f90a5fa5db0242e781feb6146491ef9 linux-3.0/sound/core/seq/seq_fifo.h -6d06710beacae28348d5ed4623dbef5c linux-3.0/sound/core/seq/seq_fifo.c -97db0592823d87fef6ad9c998d7f5f3d linux-3.0/sound/core/seq/seq_dummy.c -24a356310e5bfbde08a5452386297d75 linux-3.0/sound/core/seq/seq_device.c -595ce59d2770a10da09c9ea7238dc269 linux-3.0/sound/core/seq/seq_compat.c -3d5ad4adff049c647919dc7e534ca572 linux-3.0/sound/core/seq/seq_clientmgr.h -b8a4b2f4816452f868cb6f5b75fd3d10 linux-3.0/sound/core/seq/seq_clientmgr.c -e527806c42050a33b1dbfcc72661effc linux-3.0/sound/core/seq/seq.c -6f727868f9b3a60ce5e73bf725c35c60 linux-3.0/sound/core/seq/oss/seq_oss_writeq.h -c015ba84ec18386072ec65ead8742995 linux-3.0/sound/core/seq/oss/seq_oss_writeq.c -5fbb6b89b53771b858fb2709dcac2030 linux-3.0/sound/core/seq/oss/seq_oss_timer.h -9a69d648cc99aa7958fda26d03abbcb8 linux-3.0/sound/core/seq/oss/seq_oss_timer.c -19665f799b65814735087791ed13b7c7 linux-3.0/sound/core/seq/oss/seq_oss_synth.h -4f57d15e3d697a102adc8f9494155f29 linux-3.0/sound/core/seq/oss/seq_oss_synth.c -6d7ceb14fb4b8dc43188be5a225d3c04 linux-3.0/sound/core/seq/oss/seq_oss_rw.c -31a67898196d61f8ccc3d4e43630dc2b linux-3.0/sound/core/seq/oss/seq_oss_readq.h -edc67ac21041040f7278cb1abdbdd281 linux-3.0/sound/core/seq/oss/seq_oss_readq.c -cfc8dc59e22b4f697c9e3d0f6c8d712c linux-3.0/sound/core/seq/oss/seq_oss_midi.h -5d590d8312bbd1f22db9dc6b05127247 linux-3.0/sound/core/seq/oss/seq_oss_midi.c -67fda32d9e04c5fe456f177f41d19cf2 linux-3.0/sound/core/seq/oss/seq_oss_ioctl.c -bbbf8f585dd3db83e496b11a0e219453 linux-3.0/sound/core/seq/oss/seq_oss_init.c -2c0a7c218802165006b28f3f3c125e24 linux-3.0/sound/core/seq/oss/seq_oss_event.h -8070be3ff6e34f6c7987b8bc142265c1 linux-3.0/sound/core/seq/oss/seq_oss_event.c -18cb8abee40f891d09ec22f5fa8d1318 linux-3.0/sound/core/seq/oss/seq_oss_device.h -747ffe3d198dcebc3f825f1c99ebae87 linux-3.0/sound/core/seq/oss/seq_oss.c -133d9dc2a02f0b627abab4524a808733 linux-3.0/sound/core/seq/oss/Makefile -5a9769d73d54cbaab46ce45ed8b69693 linux-3.0/sound/core/seq/Makefile -4502b39eb151b7e486179515883595e7 linux-3.0/sound/core/seq/Kconfig -88134e884c94cfc9f69e7af6a30ed5e8 linux-3.0/sound/core/rtctimer.c -e9f08f0e9bc8ef3d899d376f8bf68316 linux-3.0/sound/core/rawmidi_compat.c -213e4a877a30f83d65b020e9167515a9 linux-3.0/sound/core/rawmidi.c -4af52913f59c099fc78c35574b65c0df linux-3.0/sound/core/pcm_timer.c -67afd12626c5a80f67fce041232ec4a2 linux-3.0/sound/core/pcm_native.c -1530046eac2b5271779464a542aa85cb linux-3.0/sound/core/pcm_misc.c -5dac0f200391a26892d3cd17f71eb1bf linux-3.0/sound/core/pcm_memory.c -14d817a7b3830b04dd9b872fcc098a9c linux-3.0/sound/core/pcm_lib.c -7dd491abb509fd43e750ec3a8d1abf35 linux-3.0/sound/core/pcm_compat.c -cbaee2979fad096fa99b20bbadb21292 linux-3.0/sound/core/pcm.c -6b5032d38065f3af91e8164e5792e6b9 linux-3.0/sound/core/oss/route.c -dc9a3d8d7ae260a3f84e432dfbf79ea5 linux-3.0/sound/core/oss/rate.c -950fa6c7a91661a5c054f4c548a0ecd9 linux-3.0/sound/core/oss/pcm_plugin.h -e8c4102e480f922907225bfdde6c3048 linux-3.0/sound/core/oss/pcm_plugin.c -5ab5a16cce6e3827440027b739cc10a8 linux-3.0/sound/core/oss/pcm_oss.c -13679a4a6084f4cd15410b159e683d4e linux-3.0/sound/core/oss/mulaw.c -88a0d4c878628004488759db83bc96d7 linux-3.0/sound/core/oss/mixer_oss.c -0836477845a3bef85154d8b8fc0bdcb7 linux-3.0/sound/core/oss/linear.c -76dd5f8bf57fd6e3f9f3c418c1a78463 linux-3.0/sound/core/oss/io.c -3f5068d2670a55ccd693d4d518bf3a05 linux-3.0/sound/core/oss/copy.c -7227e900dcc1eb5f930a653d237a9234 linux-3.0/sound/core/oss/Makefile -a34e08d4c34ac3d3851dfca51fe97f73 linux-3.0/sound/core/misc.c -b7b6eb9bd72e5b8a58681426240a8b93 linux-3.0/sound/core/memory.c -15ea4baf380a155e1724add152831ccb linux-3.0/sound/core/memalloc.c -df5814728477cf017df7453fa15f7a01 linux-3.0/sound/core/jack.c -a9b507d618c257482dec119e5ac7bb60 linux-3.0/sound/core/isadma.c -9579e13c878eabd1bcd2cebf95b62c0f linux-3.0/sound/core/init.c -f1ad0c3dfc21eda4312ff6bcb9656e74 linux-3.0/sound/core/info_oss.c -debe991124efdfc029084021c7fe9f6e linux-3.0/sound/core/info.c -9d7bc4aacfd8787c19392f85d1e61b4c linux-3.0/sound/core/hwdep_compat.c -632443523e19cd0397238e8e312ed23e linux-3.0/sound/core/hwdep.c -4848844523d125b783f3ff27412a7821 linux-3.0/sound/core/hrtimer.c -36089a3e90772c674158044556ac39ea linux-3.0/sound/core/device.c -8a19b1189d7d176af8b9d36f01d8afec linux-3.0/sound/core/control_compat.c -5e09b1b27553b2b80683000ecfd25f16 linux-3.0/sound/core/control.c -fddcd978ae3cd4c3568fc5864155960c linux-3.0/sound/core/Makefile -7bc2a4268ca739a275da5fc88844e4ab linux-3.0/sound/core/Kconfig -462018ed9739cb8e88c3a2320b62d9ba linux-3.0/sound/atmel/ac97c.h -f49552a56de1587fb9542e82412570ec linux-3.0/sound/atmel/ac97c.c -d250c2650e43de1303403d232de0ba6e linux-3.0/sound/atmel/abdac.c -fa03ef55f5adc02476805adb0d00758b linux-3.0/sound/atmel/Makefile -aa3bdaf122fe000013391f0f63228789 linux-3.0/sound/atmel/Kconfig -8fad2b609c3d8655e7bc1bfed729e923 linux-3.0/sound/arm/pxa2xx-pcm.h -1994ca4c0c39541911a0c9eeb9f54a25 linux-3.0/sound/arm/pxa2xx-pcm.c -b18e46f9bdf2aeffaeb1b79d33d76912 linux-3.0/sound/arm/pxa2xx-pcm-lib.c -f4017ab28daea91ec3cc7692fed45fed linux-3.0/sound/arm/pxa2xx-ac97.c -b4daf8b9ec1ce4e204033e7521494692 linux-3.0/sound/arm/pxa2xx-ac97-lib.c -3182b0c385242d3ee72b0aad5adfe888 linux-3.0/sound/arm/aaci.h -f7c08fc29a96618ff14e270585a7be9e linux-3.0/sound/arm/aaci.c -37ccdea37235530dee74433285192480 linux-3.0/sound/arm/Makefile -16245b89b537afd476f9fe3269594c2f linux-3.0/sound/arm/Kconfig -eab40cc549399d20ac7d266b07788bd8 linux-3.0/sound/aoa/soundbus/sysfs.c -edc717e8553280a1e5e7a2bc8c06d8fc linux-3.0/sound/aoa/soundbus/soundbus.h -d8ee39d613559a55c2a6483f80a2670b linux-3.0/sound/aoa/soundbus/i2sbus/pcm.c -e4f2671d69b34f9bc6c99fa60abb19d2 linux-3.0/sound/aoa/soundbus/i2sbus/interface.h -5caadbb3556e11dd9528d3294d876fc0 linux-3.0/sound/aoa/soundbus/i2sbus/i2sbus.h -a62d388caefc7475df6dca1a6f5211c3 linux-3.0/sound/aoa/soundbus/i2sbus/core.c -0035d1b932ff94e754ce67567bf1bee6 linux-3.0/sound/aoa/soundbus/i2sbus/control.c -12f5174b535043834ff50e8f19131b4a linux-3.0/sound/aoa/soundbus/i2sbus/Makefile -308540f0e55d0d75cc2b085442ff7b63 linux-3.0/sound/aoa/soundbus/core.c -fa09740a6f5da0902524462f43206910 linux-3.0/sound/aoa/soundbus/Makefile -be59301bddbf2bea02a986fe6991fe39 linux-3.0/sound/aoa/soundbus/Kconfig -c6555065970d0ed25525c744caa1aecc linux-3.0/sound/aoa/fabrics/layout.c -fe55146f21a495d4f02697ae668f5a1e linux-3.0/sound/aoa/fabrics/Makefile -dbaac1548c0a0b967f086ee620b402fd linux-3.0/sound/aoa/fabrics/Kconfig -e8d20dab01d8d814cdd047ea49542dd3 linux-3.0/sound/aoa/core/gpio-pmf.c -2ef33a93fe9fb5cd97e5960bade652a3 linux-3.0/sound/aoa/core/gpio-feature.c -9eb67f9e7c20ff203c6db01da15df273 linux-3.0/sound/aoa/core/core.c -3e1c51812c451c753fed1a929ff6b0ae linux-3.0/sound/aoa/core/alsa.h -310a75068a0b036ba54befc3e209f98e linux-3.0/sound/aoa/core/alsa.c -45dc98e90fc0bee185125e0653e2aeba linux-3.0/sound/aoa/core/Makefile -ca6d006eca9a248eef72118080fca2b2 linux-3.0/sound/aoa/codecs/toonie.c -836bfa8e52ed674cbb5934ed0d52498a linux-3.0/sound/aoa/codecs/tas.h -9d0251580ef8e20538f7ab6f4f789cdf linux-3.0/sound/aoa/codecs/tas.c -d93046c243a2b23b41ece359638555e1 linux-3.0/sound/aoa/codecs/tas-gain-table.h -82dcd4e97e86434a68a91c9d4455b2c3 linux-3.0/sound/aoa/codecs/tas-basstreble.h -05d1fd783e690c6441849371584ec30b linux-3.0/sound/aoa/codecs/onyx.h -7c6170daa764ed6cd90479521ff17723 linux-3.0/sound/aoa/codecs/onyx.c -272b53ae68151c0ed13cd7d2ded4c0db linux-3.0/sound/aoa/codecs/Makefile -bd07ef1831434136bc09438f3c8ac75c linux-3.0/sound/aoa/codecs/Kconfig -e20a8a2f168597dcf6033e289912bf70 linux-3.0/sound/aoa/aoa.h -f6293617cf76e5cf4ede3570e2c6eb9a linux-3.0/sound/aoa/aoa-gpio.h -2e6537269845624bbf1f86d8e769a330 linux-3.0/sound/aoa/Makefile -c520e1904dd6d3a8b92ee2256093c41c linux-3.0/sound/aoa/Kconfig -7f167377b3f7e3b8599ce437da9ca594 linux-3.0/sound/ac97_bus.c -7b77a3799b4f89bd566f87b423147959 linux-3.0/sound/Makefile -b49a270c9469d06a11e35899d8c88162 linux-3.0/sound/Kconfig -5f57e642e6853b9958ee9b76803a1c3d linux-3.0/security/tomoyo/util.c -3b6797f58ac8226c8d57befbcfc83d90 linux-3.0/security/tomoyo/tomoyo.c -1fab3513e7c83c79f908a53e7aaca90c linux-3.0/security/tomoyo/securityfs_if.c -31b3aec17c653405ad4b1a042fcd1b68 linux-3.0/security/tomoyo/realpath.c -16bcd522c3432629c9af792c0c7278c9 linux-3.0/security/tomoyo/mount.c -e1ea91d3f07f6a6e80a28a810a2887e0 linux-3.0/security/tomoyo/memory.c -cd4511963a36ede466326ecad9700b86 linux-3.0/security/tomoyo/load_policy.c -c73c5f9626f896dbaf082aff0a538fe9 linux-3.0/security/tomoyo/group.c -3265e4a58cf0574e088781e69617de57 linux-3.0/security/tomoyo/gc.c -ddbaf2a7677beab1e799c9d546eca138 linux-3.0/security/tomoyo/file.c -80b27c1b1a9e6d35b959b804f4e8f69e linux-3.0/security/tomoyo/domain.c -89c8bba9c8489bef291bb2dd7480f421 linux-3.0/security/tomoyo/common.h -be1d1ff5f8d2743bb562daffb6f77fb8 linux-3.0/security/tomoyo/common.c -7abd021e6080cf179e2b2c6877431359 linux-3.0/security/tomoyo/Makefile -a2462aad4201c666bd248300bb99b45f linux-3.0/security/tomoyo/Kconfig -ce011e9ae3f8be8e9557f8d0a95e32fe linux-3.0/security/smack/smackfs.c -a08d2822b86948b913e73498ca7c455b linux-3.0/security/smack/smack_lsm.c -19110c10dc2510b8c4254f1bcdfc443b linux-3.0/security/smack/smack_access.c -39aa137d2a2eea105cb6fbfa99dc1d0a linux-3.0/security/smack/smack.h -e87f4f9ac2e46d819ff407b1fddf23c1 linux-3.0/security/smack/Makefile -1a5aeb51218d6e5fd6c40051b72b8a19 linux-3.0/security/smack/Kconfig -1d1f0cb01e9baa07f27bfd596c2c286a linux-3.0/security/selinux/xfrm.c -3b821cb4ce0096931c204fbc119374fe linux-3.0/security/selinux/ss/symtab.h -67324d67fdb01e38545902845be46542 linux-3.0/security/selinux/ss/symtab.c -f870af075a7bd7e6e68453a58020d3bc linux-3.0/security/selinux/ss/status.c -20bc1f0c4d0c1bee7b95774f3d91c1c2 linux-3.0/security/selinux/ss/sidtab.h -5f4fd668033aaca263efa216c664a3c8 linux-3.0/security/selinux/ss/sidtab.c -486cc5613ac10c831c9721b5f2568917 linux-3.0/security/selinux/ss/services.h -de42b810dff685f171dd93dc74ddeb28 linux-3.0/security/selinux/ss/services.c -dacf4a8bc9d7922206137faac578ab81 linux-3.0/security/selinux/ss/policydb.h -687a0748eae1f84038ace509ced532de linux-3.0/security/selinux/ss/policydb.c -4b36d8764c6ee4a7661508258cb9d0b9 linux-3.0/security/selinux/ss/mls_types.h -4b496a6d2b80e44ec17199e59ed194c9 linux-3.0/security/selinux/ss/mls.h -04928f0e7970996169c1e7eec2c4b9a7 linux-3.0/security/selinux/ss/mls.c -639ffabd31f242610dc5ff545a44ade4 linux-3.0/security/selinux/ss/hashtab.h -336ecdf4af93a396c98e1eb82dfbba44 linux-3.0/security/selinux/ss/hashtab.c -d0fc5827a3af946e9ba1589d7b4b2a42 linux-3.0/security/selinux/ss/ebitmap.h -c9c3f83439639216d4f7bf02d4efb7e5 linux-3.0/security/selinux/ss/ebitmap.c -899c9c7a2473d34be5502500d26eebaf linux-3.0/security/selinux/ss/context.h -206e569bc1e6499031b6f878126187fe linux-3.0/security/selinux/ss/constraint.h -d13fd17e20ae02b2d467b62da0fe1305 linux-3.0/security/selinux/ss/conditional.h -4673d3fba655d37cb9184013cc4f16b5 linux-3.0/security/selinux/ss/conditional.c -4bc0acafe642866d4705b6a683eb8b75 linux-3.0/security/selinux/ss/avtab.h -697df01181d28ed8ece86f1444909f56 linux-3.0/security/selinux/ss/avtab.c -d31726629a854754d791674e2842f694 linux-3.0/security/selinux/selinuxfs.c -18fb7a5515f93ee936f6cac9418b24c8 linux-3.0/security/selinux/nlmsgtab.c -d3fa1f08077de1bf7a5fa3372496723b linux-3.0/security/selinux/netport.c -83acee6b15d8aef3777affed02ff12a5 linux-3.0/security/selinux/netnode.c -6bff1ba055ac278485cb2913428c4505 linux-3.0/security/selinux/netlink.c -d5feb7e241041e05dccee6ed2c40daa7 linux-3.0/security/selinux/netlabel.c -54609e9e90ed7f35f4cd71c518ccc46f linux-3.0/security/selinux/netif.c -0e86f893eb850cecfbc5ebefdc8b2754 linux-3.0/security/selinux/include/xfrm.h -f423e127bc16a1df796d333d1e251cb3 linux-3.0/security/selinux/include/security.h -1d34c810b2c92db9cf5e35c3ab0053c5 linux-3.0/security/selinux/include/objsec.h -0da4482e65432b09314300ea71a9e028 linux-3.0/security/selinux/include/netport.h -6fb9ee2a68c225caec3b8199d167e520 linux-3.0/security/selinux/include/netnode.h -eb1c996f52f6aa4d561ea1d677a714ef linux-3.0/security/selinux/include/netlabel.h -d31948df60e838b58f86c935bdcdcaec linux-3.0/security/selinux/include/netif.h -3fa3beb0c15149edd9db5641eb0994a2 linux-3.0/security/selinux/include/initial_sid_to_string.h -6692432b941396dc5485e6d62cfc7d5f linux-3.0/security/selinux/include/conditional.h -af8091b7738f75706b35965977854389 linux-3.0/security/selinux/include/classmap.h -aca2f35a2ed821152d3eff6cf31811ca linux-3.0/security/selinux/include/avc_ss.h -c020a92e36f273e7866bc769b55a8e98 linux-3.0/security/selinux/include/avc.h -1a96345b7380237a2107e96c874c1d0d linux-3.0/security/selinux/include/audit.h -3044cd4d4d8723df189365cd4f18342a linux-3.0/security/selinux/hooks.c -2ba0bc0c986da363cb7b3b95edf59d69 linux-3.0/security/selinux/exports.c -e18cf4714104c665c5d7242bbead31a3 linux-3.0/security/selinux/avc.c -804ade267e3276bc5a5747135e1a58b5 linux-3.0/security/selinux/Makefile -096a9c8a832e1e5e81e0a8614ccf9f7b linux-3.0/security/selinux/Kconfig -6fa9b183d1f035988a4e8c0e546576cb linux-3.0/security/selinux/.gitignore -ca7c9da1806281ea66a2f8ac0560ea24 linux-3.0/security/security.c -fd7f6f8b711dbe02fa8da6c886fda8ce linux-3.0/security/min_addr.c -6cfc3dcb7a14c93f4f5d844513c7b343 linux-3.0/security/lsm_audit.c -203fc953e1b9d3c1fb7645ced2d95b67 linux-3.0/security/keys/user_defined.c -eabd43c8cd50260e182f02155d9e5e2c linux-3.0/security/keys/trusted.h -05b959e363c6b5d84a2d82a9a7c28ff0 linux-3.0/security/keys/trusted.c -b4cdc1492c0068641082acdbcfb1f977 linux-3.0/security/keys/sysctl.c -588e934ffd70f8268874ae729defe3aa linux-3.0/security/keys/request_key_auth.c -da681d749289f68d5d7699cd5a52a672 linux-3.0/security/keys/request_key.c -e2876926ad6b3b0ba7439362a923ced8 linux-3.0/security/keys/process_keys.c -6b91aeb310383e59554eab69cdfd02d7 linux-3.0/security/keys/proc.c -1fc3b043e9697ea06ccb555473389fd7 linux-3.0/security/keys/permission.c -0ddf161c58704c1354835618f1bc6a84 linux-3.0/security/keys/keyring.c -a466273dfc18d0fb6313e03e62069b4f linux-3.0/security/keys/keyctl.c -8d2813f494c46036e6ac400255e114d8 linux-3.0/security/keys/key.c -827cdd218c914df2e19577943c3f98f7 linux-3.0/security/keys/internal.h -8216ec8bb8f8982f31b9ae8989037e16 linux-3.0/security/keys/gc.c -cddfea6616f9a19c5226c8a347f39a58 linux-3.0/security/keys/encrypted.h -eb43a66339a63c40a2a65c035e6e3e57 linux-3.0/security/keys/encrypted.c -ebdaba5503bee67169c28bfa863d77aa linux-3.0/security/keys/compat.c -030a901bfa00c7c921f64c52c8e187df linux-3.0/security/keys/Makefile -c8a5c664ff5690d28ae9ad3c82dac3da linux-3.0/security/integrity/ima/ima_queue.c -5c73357a1a5452f19a3408a7836c5ef2 linux-3.0/security/integrity/ima/ima_policy.c -332973097d744d6da97ad15955f24762 linux-3.0/security/integrity/ima/ima_main.c -9ed87ae4e0f46cb8113479ccd3563cea linux-3.0/security/integrity/ima/ima_init.c -f2490df1d0c1edc7a08bb56680a4c294 linux-3.0/security/integrity/ima/ima_iint.c -5dda419b723c3fb24b458dc62db84f82 linux-3.0/security/integrity/ima/ima_fs.c -c2559381cf7ed63693635dc58cef979b linux-3.0/security/integrity/ima/ima_crypto.c -c68f3f67e9416529a6b51e2ae4abd7df linux-3.0/security/integrity/ima/ima_audit.c -d9bf3f6718864b5a57dbdbdd22df828e linux-3.0/security/integrity/ima/ima_api.c -ced87d22dba178ee172991aab3e599f4 linux-3.0/security/integrity/ima/ima.h -3aa1912cfadf2169c6ce2bfee934ec7e linux-3.0/security/integrity/ima/Makefile -2b5e1df3a341a888258238c840661952 linux-3.0/security/integrity/ima/Kconfig -4c406c20684df4f9e538809308ed3c7e linux-3.0/security/inode.c -a32262195df744e420a27ea8561a4f6c linux-3.0/security/device_cgroup.c -1c8e79c9fd62e28b47f8a73452ffc4c3 linux-3.0/security/commoncap.c -d23df32563810af1230cd9083b2c53ee linux-3.0/security/capability.c -747312f601fa6bb0a90eec02db006dd1 linux-3.0/security/apparmor/sid.c -3b972abc01a772dd769193c3092c1a0a linux-3.0/security/apparmor/resource.c -bc63783f9b07450932cd67be8934be83 linux-3.0/security/apparmor/procattr.c -a7d4a182129dbd980af76490b6698263 linux-3.0/security/apparmor/policy_unpack.c -45ed6a0dd30979228e8f0b76baa7cf5a linux-3.0/security/apparmor/policy.c -f6c987c122cf6769d78157be509ebbac linux-3.0/security/apparmor/path.c -6c15ccace261fa527d9059e77b7790f4 linux-3.0/security/apparmor/match.c -1f32140e79783d21605ee8949baa66f1 linux-3.0/security/apparmor/lsm.c -2dc51e98458293e65ddfeefe3854a051 linux-3.0/security/apparmor/lib.c -1ba39b45ada72338335632ec359ab04d linux-3.0/security/apparmor/ipc.c -a90268c85d05c408f978de2babc79fea linux-3.0/security/apparmor/include/sid.h -bdf8759042498ed13920c905831d698a linux-3.0/security/apparmor/include/resource.h -6a68a5c0e77504c7a00bbb15cbbd20a1 linux-3.0/security/apparmor/include/procattr.h -3ffcb16ef574a0eb46dbd47e5b212907 linux-3.0/security/apparmor/include/policy_unpack.h -540c2fbd81c4067e92c0e6c8630486e5 linux-3.0/security/apparmor/include/policy.h -5e229157532c020a0d0e82580b84a5f0 linux-3.0/security/apparmor/include/path.h -1af7e65d3e0c3b9c25a924ecb42f7e47 linux-3.0/security/apparmor/include/match.h -40ad47a8d5c6226a8638cf36ee220943 linux-3.0/security/apparmor/include/ipc.h -762ebda69a3ef291270a31c5a14a1842 linux-3.0/security/apparmor/include/file.h -90a8e9260c72703d0d604cb7a1b9a830 linux-3.0/security/apparmor/include/domain.h -fb5cbcb7443a70b4b4df083c1e4e7c0a linux-3.0/security/apparmor/include/context.h -523f727844dbc11e2e620b8eb5230494 linux-3.0/security/apparmor/include/capability.h -a6b9081d4dff89ad57f1075ae49db544 linux-3.0/security/apparmor/include/audit.h -9733ac5cff07015a10e0c7e9019452b6 linux-3.0/security/apparmor/include/apparmorfs.h -8827725be00fc7036acec671b06ecb0e linux-3.0/security/apparmor/include/apparmor.h -40130f29aa7a0d80fbfffb95b0348802 linux-3.0/security/apparmor/file.c -f41f0a36782ba2f2c5a4fabd3526ebb0 linux-3.0/security/apparmor/domain.c -82536ea25f5ee84df68ad9586072ce25 linux-3.0/security/apparmor/context.c -5aeace3d16b32d85c05e839cbde22813 linux-3.0/security/apparmor/capability.c -c6466aa71288acaa349eed6a918aa257 linux-3.0/security/apparmor/audit.c -5283b49f86af43d2d42a2886b56acc05 linux-3.0/security/apparmor/apparmorfs.c -8b319a5fa21a1ae3810142ca04d61582 linux-3.0/security/apparmor/Makefile -d2da2d514c5e65502f993370f84b9fb9 linux-3.0/security/apparmor/Kconfig -00c2ededa0fbb43e79c854ef13a71eef linux-3.0/security/apparmor/.gitignore -8e51a3b11753a1ee0939085a33cf57a8 linux-3.0/security/Makefile -a098f3708a314da6210f13a803d0d44d linux-3.0/security/Kconfig -5e54317eb763f2f9ced699a15691071a linux-3.0/scripts/xz_wrap.sh -0a7419178a93de5c1aa000a564363a9c linux-3.0/scripts/ver_linux -7787c27190035c4ad35fa03e5260f6cf linux-3.0/scripts/unifdef.c -679ecfa6569224e4576452e70266b5a3 linux-3.0/scripts/tracing/draw_functrace.py -3197eb0529c9657e27b2bb16946e2598 linux-3.0/scripts/tags.sh -1a0a97f908aabcf4957c5314042fa3a0 linux-3.0/scripts/show_delta -0e3e9b7d30b9af884f79eee5636cac48 linux-3.0/scripts/setlocalversion -3e0975740eec3481da4239017709545c linux-3.0/scripts/selinux/mdp/mdp.c -b1c42884fa5bdbde53d64cff469374fd linux-3.0/scripts/selinux/mdp/dbus_contexts -d5b17207a395d8a544610e7921762bd8 linux-3.0/scripts/selinux/mdp/Makefile -d1c9d4d6c8298009b2a3aeecd684db72 linux-3.0/scripts/selinux/mdp/.gitignore -de03c80328e9a3e875d641e11349ce85 linux-3.0/scripts/selinux/install_policy.sh -1eb1f59c37ac5644e5af0ca3160cc7be linux-3.0/scripts/selinux/genheaders/genheaders.c -257effa6c8370a229f8092c9e14f17af linux-3.0/scripts/selinux/genheaders/Makefile -58dce1f2fbfdc9cc6dd15ee9d2370504 linux-3.0/scripts/selinux/genheaders/.gitignore -ca76bcf8e6a059ec9f29e9d1e9cd57b1 linux-3.0/scripts/selinux/README -42f8ff89f0593769d29050c61459ed05 linux-3.0/scripts/selinux/Makefile -4307e3aa8db753fcef81b69e2814ad33 linux-3.0/scripts/rt-tester/t5-l4-pi-boost-deboost.tst -3acec07fcb4d53a6a76847bb028a1072 linux-3.0/scripts/rt-tester/t5-l4-pi-boost-deboost-setsched.tst -33b4656812264ad1fd765ab88816a1be linux-3.0/scripts/rt-tester/t4-l2-pi-deboost.tst -e73dccd0d51a803b3958f5f55b5370ae linux-3.0/scripts/rt-tester/t3-l2-pi.tst -ef8bdfad61d493578a6adee871c6063c linux-3.0/scripts/rt-tester/t3-l1-pi-steal.tst -5b2afc3d3ce687b6a7cadf11ac4f242e linux-3.0/scripts/rt-tester/t3-l1-pi-signal.tst -22edbe63c0fce6b65b269cc7a08ebc2f linux-3.0/scripts/rt-tester/t3-l1-pi-3rt.tst -9913a4a4c2114fab6dd584acac6d2ac5 linux-3.0/scripts/rt-tester/t3-l1-pi-2rt.tst -da1e9e4bba327e63a8150921fa82273f linux-3.0/scripts/rt-tester/t3-l1-pi-1rt.tst -bfb29784c27ec6a97d2fa2505340ea52 linux-3.0/scripts/rt-tester/t2-l2-2rt-deadlock.tst -ec1e249f643960b6a178d17ceb8fda3d linux-3.0/scripts/rt-tester/t2-l1-signal.tst -1967153946546f63360a3652f7861841 linux-3.0/scripts/rt-tester/t2-l1-pi.tst -9c3c64d31fc3845f2da1e3949647ecb6 linux-3.0/scripts/rt-tester/t2-l1-2rt-sameprio.tst -9711193211b1b501bb84f62be00e13ac linux-3.0/scripts/rt-tester/rt-tester.py -83cb91918bb3d25dfc7b8658b78075d8 linux-3.0/scripts/rt-tester/check-all.sh -bc38e783e678bcade3c62a1a9e2f5e84 linux-3.0/scripts/recordmcount.pl -754207a189d68507c3b12c915932f42e linux-3.0/scripts/recordmcount.h -6517b2e98a3e1cedf27fdd32210f41ec linux-3.0/scripts/recordmcount.c -254ccc549c25c783520e6f99d8c9538e linux-3.0/scripts/profile2linkerlist.pl -7e1995df0f8366e50a96877fe9ba8b88 linux-3.0/scripts/pnmtologo.c -ac14d9409b08c193de88af258b81d5e0 linux-3.0/scripts/patch-kernel -5107fefbe41755a64ec340661d2dae15 linux-3.0/scripts/package/mkspec -1ba2523cabb84cb36a4a0f788253bf18 linux-3.0/scripts/package/buildtar -ab204fb05aa35bdeb77fb27e5f6a03ba linux-3.0/scripts/package/builddeb -d1d25ac03a37ed98027c26c617167165 linux-3.0/scripts/package/Makefile -57f28d1da988ea81391127a4c4c5020e linux-3.0/scripts/namespace.pl -6ba27f228837dd44482ce12ab2094b4d linux-3.0/scripts/module-common.lds -53e36dddb1e5a855e8254c84ee3fb0b4 linux-3.0/scripts/mod/sumversion.c -aacadad6c34964aa7b2a3e82283d8098 linux-3.0/scripts/mod/modpost.h -ce52f55a7538a0e81357ba7eed347ddf linux-3.0/scripts/mod/modpost.c -0ae61355e8ceefd34e417c0a0ea75f14 linux-3.0/scripts/mod/mk_elfconfig.c -810ae2e0807c1353c0d36ee500d287a2 linux-3.0/scripts/mod/file2alias.c -ad1348d1e1397761a9932a84f401c436 linux-3.0/scripts/mod/empty.c -b0af677977e2a0d94a6d934501e5af5e linux-3.0/scripts/mod/Makefile -eb48d1d832e01d829133e2a67fda1a0e linux-3.0/scripts/mod/.gitignore -7ee13cf245d7150105631ec0b283136f linux-3.0/scripts/mkversion -44fcea17a498be27f2d3a88401895c9d linux-3.0/scripts/mkuboot.sh -5a14a5b337499415fb6a82546de97375 linux-3.0/scripts/mksysmap -abc3bc9b9092d2fc338f587e0bed23bf linux-3.0/scripts/mkmakefile -0950be57a8748352ff937486e777da89 linux-3.0/scripts/mkcompile_h -059e2787db647ae4eee9229a4c3de93e linux-3.0/scripts/markup_oops.pl -6b5b4e1610159d42b062badc5add27f5 linux-3.0/scripts/makelst -c3227e84d81e5a83dfdd28e5e6d084a0 linux-3.0/scripts/ksymoops/README -7142e7ace027398141e63cf69805c0d0 linux-3.0/scripts/kernel-doc -ebbc33abe6212be8d7dc5f9622ed0297 linux-3.0/scripts/kconfig/zconf.y -fcd4c65626dfcb428498c12c87e66db2 linux-3.0/scripts/kconfig/zconf.tab.c_shipped -cdf12b23837f0fa8233ef602bcae478d linux-3.0/scripts/kconfig/zconf.l -0130ca987e4d545deacaafe64cb884cd linux-3.0/scripts/kconfig/zconf.hash.c_shipped -daaf15a7714d09af143d65fa23efc108 linux-3.0/scripts/kconfig/zconf.gperf -42d5e998531842ce3d936f8d85576cf3 linux-3.0/scripts/kconfig/util.c -e71e43b8136c1d3b172f7dc10ae7bbaa linux-3.0/scripts/kconfig/symbol.c -cc109a0ebf381e1f7d405f716bd04f53 linux-3.0/scripts/kconfig/streamline_config.pl -300137aa291fcf4dd5c41c9c4a5001d2 linux-3.0/scripts/kconfig/qconf.h -3480cd4f85ab939c2de5881b281f4c62 linux-3.0/scripts/kconfig/qconf.cc -d060fab962445335afb13cf4a4a8a2cf linux-3.0/scripts/kconfig/nconf.h -498466020e1bb267d14cd01400dbd76d linux-3.0/scripts/kconfig/nconf.gui.c -9dc5b49e964ae1369d7b0d813855d350 linux-3.0/scripts/kconfig/nconf.c -e30becda4a04bd20262c9f4aeeefcfef linux-3.0/scripts/kconfig/menu.c -6b63ebecc64fcfc9adf0018e8959f4e8 linux-3.0/scripts/kconfig/mconf.c -9769589490ac420463d64a8b2221ab25 linux-3.0/scripts/kconfig/lxdialog/yesno.c -72a2f3dbdf1d9fa96ff61da28269b52f linux-3.0/scripts/kconfig/lxdialog/util.c -e74891ce550d233ae0da469c1cfed13b linux-3.0/scripts/kconfig/lxdialog/textbox.c -d3e9d71d6cfc6b8c1219678ea146e904 linux-3.0/scripts/kconfig/lxdialog/menubox.c -836070cf260aa9285ff69828124b37c7 linux-3.0/scripts/kconfig/lxdialog/inputbox.c -6ab37e536b723f6cbe07fca073daef03 linux-3.0/scripts/kconfig/lxdialog/dialog.h -4b6cdf8fca5338adc5a995bb5f070d0e linux-3.0/scripts/kconfig/lxdialog/checklist.c -831f9d2b82fff2a0ac6cee4ca0ef64f2 linux-3.0/scripts/kconfig/lxdialog/check-lxdialog.sh -2e0bfdc0eb78ca744114b42489f077d3 linux-3.0/scripts/kconfig/lxdialog/BIG.FAT.WARNING -f1b186abc7a482548c4e0cdd9d362588 linux-3.0/scripts/kconfig/lxdialog/.gitignore -c0d892c01bbd6980fda003d7803f937e linux-3.0/scripts/kconfig/lkc_proto.h -309f1ed1963be925cb3927a053e1386a linux-3.0/scripts/kconfig/lkc.h -cc446d204726d186124db7260560c7bf linux-3.0/scripts/kconfig/lex.zconf.c_shipped -f3c2236bbbed2c8a11a208614f9c4f2d linux-3.0/scripts/kconfig/kxgettext.c -9376b55503a3d5f212697b620df6c178 linux-3.0/scripts/kconfig/kconfig_load.c -41016141bf664d349437c25220c2fc94 linux-3.0/scripts/kconfig/images.c -0aba4498cae58405f721cf4cb8d172d8 linux-3.0/scripts/kconfig/gconf.glade -2aebeff91ff5303ced87cc29a5761781 linux-3.0/scripts/kconfig/gconf.c -5a2fc974e7746ebe9c0a89f869a79173 linux-3.0/scripts/kconfig/expr.h -1494f49397f6d27b07923b66097c2afc linux-3.0/scripts/kconfig/expr.c -199db8ee82da9f96b97803571de59f84 linux-3.0/scripts/kconfig/confdata.c -cd6460481b80a4ae0b72ebfd70ca88a1 linux-3.0/scripts/kconfig/conf.c -18c087cafc6fc643387c4103d4e657f4 linux-3.0/scripts/kconfig/check.sh -7fe8482e843fa5261d5315e4a88f7924 linux-3.0/scripts/kconfig/POTFILES.in -60733d7e27a91baa01afc48d7408d962 linux-3.0/scripts/kconfig/Makefile -8e1a95257917f9fdb64d97bc31707033 linux-3.0/scripts/kconfig/.gitignore -46817f906d048960cfa50985320a5be3 linux-3.0/scripts/kallsyms.c -c266c0148dae15d494577cfdf4f70f07 linux-3.0/scripts/headers_install.pl -4ae251fa6915cedc794b9de33ecd9ef8 linux-3.0/scripts/headers_check.pl -6d883b7bd0aeffe48793d5dc40b4805f linux-3.0/scripts/headers.sh -8af0c972659d0046fe09d4c47525fbf6 linux-3.0/scripts/headerdep.pl -e1244c47a0856980d9ed18d234a881d2 linux-3.0/scripts/gfp-translate -3a7fb481c077cdfa03592115ba2bf860 linux-3.0/scripts/get_maintainer.pl -11bc7512ee10863e9fb5af6b3cd38ca3 linux-3.0/scripts/genksyms/parse.y -6aa35ba3ecd459af95a112deb252c118 linux-3.0/scripts/genksyms/parse.h_shipped -5062a66ed547df2463a77484b87df586 linux-3.0/scripts/genksyms/parse.c_shipped -9b587090fd813577d3fc353a11815ece linux-3.0/scripts/genksyms/lex.l -1b26c01f37f693dcfcc704bd42baf393 linux-3.0/scripts/genksyms/lex.c_shipped -c9bdea696a3a06ee9147384190694511 linux-3.0/scripts/genksyms/keywords.gperf -2a5e4c91a04bfcef81e5de1e48e01763 linux-3.0/scripts/genksyms/keywords.c_shipped -50c9d8233c89aeb61cfd66479438babc linux-3.0/scripts/genksyms/genksyms.h -042f688f8d8b0cfaf741989658ec9acf linux-3.0/scripts/genksyms/genksyms.c -dfe6a04a69f6e3c4fd9fe0026b2cc6ab linux-3.0/scripts/genksyms/Makefile -3b947d62946715f9334b14ec258be1a9 linux-3.0/scripts/genksyms/.gitignore -fc6b43d61c79098ed8333df66aee8f2b linux-3.0/scripts/gen_initramfs_list.sh -d9885a170b8026a4dbfbcac7042604df linux-3.0/scripts/gcc-x86_64-has-stack-protector.sh -c41c70d0a390e67fe978160ed83b68f4 linux-3.0/scripts/gcc-x86_32-has-stack-protector.sh -ae76a0d493652680dbe82b305017db8b linux-3.0/scripts/gcc-version.sh -3aaa2a214f5a13f046a9a85ec0895347 linux-3.0/scripts/gcc-goto.sh -738ba6181d0709d68892d8b57b08f395 linux-3.0/scripts/extract-ikconfig -c39ddfa12e5c2f65f1b3e9d431f3ea72 linux-3.0/scripts/export_report.pl -9879faeeaf6d5289a5112d9f67380f5d linux-3.0/scripts/dtc/version_gen.h -cf47ff95333b89268f24ba426c253415 linux-3.0/scripts/dtc/util.h -d462364096944c031ab530ee36cdcb48 linux-3.0/scripts/dtc/util.c -c19b242ec4976524b704dc9ce40452d2 linux-3.0/scripts/dtc/treesource.c -ca032c5c3ed5c78b012cf97fd10945ff linux-3.0/scripts/dtc/srcpos.h -e34ba8ded6b6171d38277dfcc3518c72 linux-3.0/scripts/dtc/srcpos.c -d01912acf622addab8cf19ba6642032d linux-3.0/scripts/dtc/livetree.c -3933a0bba8fb52065317d551d8330f41 linux-3.0/scripts/dtc/libfdt/libfdt_internal.h -a93109ebc49d8118affda77d57ede155 linux-3.0/scripts/dtc/libfdt/libfdt_env.h -c4ef288354ca8d3e7ab405477eef5680 linux-3.0/scripts/dtc/libfdt/libfdt.h -f040cec9298e25a50badff3a5e30a45b linux-3.0/scripts/dtc/libfdt/fdt_wip.c -875caa55e878310c387eab89ae7bba30 linux-3.0/scripts/dtc/libfdt/fdt_sw.c -3e5f700a69b700020055d8ba2899d769 linux-3.0/scripts/dtc/libfdt/fdt_strerror.c -b68f3b9325d54a06cb52c487fb666f7d linux-3.0/scripts/dtc/libfdt/fdt_rw.c -2b860e5a14b7caf084e4300a300a6f0e linux-3.0/scripts/dtc/libfdt/fdt_ro.c -10a715100b804f8279198c9eb36dc73a linux-3.0/scripts/dtc/libfdt/fdt.h -c575f3407e38320ac9a2823f759202ce linux-3.0/scripts/dtc/libfdt/fdt.c -4b46cd1e2aa554dad70fd9676d2e6ad7 linux-3.0/scripts/dtc/libfdt/Makefile.libfdt -b43894b5917feaa990b475e5085de2a3 linux-3.0/scripts/dtc/fstree.c -044eba0fd7532b742d1637f625c75426 linux-3.0/scripts/dtc/flattree.c -b78ef2e9f3bd322f6c9ba149c7913bc1 linux-3.0/scripts/dtc/dtc.h -261dc90bb97b74b60cc67dd8d0ff5084 linux-3.0/scripts/dtc/dtc.c -9bfaf5a32b441ade7009c8acc18e8c88 linux-3.0/scripts/dtc/dtc-parser.y -fe792f82cb925baa64905459a541c0cd linux-3.0/scripts/dtc/dtc-parser.tab.h_shipped -5bfc7e25dd34cc71e527133017a040b3 linux-3.0/scripts/dtc/dtc-parser.tab.c_shipped -3af764e61fae92411441d31c6f475420 linux-3.0/scripts/dtc/dtc-lexer.lex.c_shipped -3ff20957f59c9b43d9100ddcb96ff42e linux-3.0/scripts/dtc/dtc-lexer.l -14de9d2775c52e2435bdba4c1145f0ca linux-3.0/scripts/dtc/data.c -9cb3a33709eb7a4e50f309bbabe8dfad linux-3.0/scripts/dtc/checks.c -01d559568572de6237689f56559f7209 linux-3.0/scripts/dtc/Makefile.dtc -438de8eecb232f83d9f7cfa549df31d7 linux-3.0/scripts/dtc/Makefile -dcd77f2cf67cd100836bd291df68ac04 linux-3.0/scripts/dtc/.gitignore -eaa3219675031ce5ee5a8de4b52c8fb2 linux-3.0/scripts/docproc.c -f267dbbc34ad47e02f1fc8ebe6b74e3a linux-3.0/scripts/diffconfig -e0f91791a6b4717efa5f5fd9e9969dd3 linux-3.0/scripts/depmod.sh -d971195e88f57f8019c1416cb204ff35 linux-3.0/scripts/decodecode -86c8c555a151b186db23959d1a4b5032 linux-3.0/scripts/conmakehash.c -f4331b2b2fa6e60922b826a88ce922b8 linux-3.0/scripts/config -3d18e7dcd40dc68155d46e0f34d94a16 linux-3.0/scripts/coccinelle/tests/doubletest.cocci -d7d0bf94475275deaea5e3cd1daef3c4 linux-3.0/scripts/coccinelle/tests/doublebitand.cocci -d71f07650abfbb5eecf54c2f3ce1a3f3 linux-3.0/scripts/coccinelle/null/kmerr.cocci -f533b3acebd12d26c56023a81f0c4fd0 linux-3.0/scripts/coccinelle/null/eno.cocci -8c4e05957a4a315c964ae89d103def29 linux-3.0/scripts/coccinelle/null/deref_null.cocci -f82172388d23c4136d56f6ec16240f28 linux-3.0/scripts/coccinelle/misc/ifcol.cocci -19ae4640a51a494d8fa9ca4c2356472f linux-3.0/scripts/coccinelle/misc/doubleinit.cocci -345c3d82db8dea7e7285140f2cf07cb5 linux-3.0/scripts/coccinelle/locks/mini_lock.cocci -2696c3e655c80771c31cf1c0479f4b4c linux-3.0/scripts/coccinelle/locks/flags.cocci -22352d7b203204972299714911848137 linux-3.0/scripts/coccinelle/locks/double_lock.cocci -8d51655003396fa012b1b7232b60a1e3 linux-3.0/scripts/coccinelle/locks/call_kern.cocci -9d0cd350d8a2c3f6e415cde950ec0b5b linux-3.0/scripts/coccinelle/iterators/list_entry_update.cocci -f89ec936fa7765ab726478a496a9c0e5 linux-3.0/scripts/coccinelle/iterators/itnull.cocci -f24d224273f7fabdd80afab9491c890c linux-3.0/scripts/coccinelle/iterators/fen.cocci -e6d2f77efb448c2c809093a0f1ebbc10 linux-3.0/scripts/coccinelle/free/kfree.cocci -2eca061aff8d86361cbe864fe08331fb linux-3.0/scripts/coccinelle/api/resource_size.cocci -f6ca6425a7da734873d03c9188e6eb5a linux-3.0/scripts/coccinelle/api/memdup_user.cocci -0a91d2695b5ed56e0fd3f00e573a661b linux-3.0/scripts/coccinelle/api/memdup.cocci -f34e4e86c7276d0c6fa59cbbe5d08894 linux-3.0/scripts/coccinelle/api/kstrdup.cocci -84b43b07478ea8861aa9260ad4b79006 linux-3.0/scripts/coccinelle/api/err_cast.cocci -81baab136d269509ff6003303192d592 linux-3.0/scripts/coccinelle/api/alloc/kzalloc-simple.cocci -547d177c1ad98d57cd7afb5a669eac9b linux-3.0/scripts/coccinelle/api/alloc/drop_kmalloc_cast.cocci -bb267b9f727b42291477959bf58a4712 linux-3.0/scripts/coccicheck -84b5a9ec6b8b236a95db3437877407f4 linux-3.0/scripts/cleanpatch -bc5d1612e4f4a6f85427ecf28cc7a660 linux-3.0/scripts/cleanfile -18512fa27f7cc97063870d49c8344d97 linux-3.0/scripts/checkversion.pl -00bd26b2ab8eb0a296a2325cf0095fe6 linux-3.0/scripts/checksyscalls.sh -923de84fca39efc8ed732fc828459152 linux-3.0/scripts/checkstack.pl -4c5931375e2097d6d507b964094ce420 linux-3.0/scripts/checkpatch.pl -15a7bb14c253201c78d16cd37d4df3ec linux-3.0/scripts/checkkconfigsymbols.sh -3f019114c4a19600c20fb19da0247241 linux-3.0/scripts/checkincludes.pl -7349ce4d06c82e13df761fa7d0dde7fc linux-3.0/scripts/bootgraph.pl -32c4bad320050f7eff9f6f8629476ff8 linux-3.0/scripts/bloat-o-meter -b8b087b2b06074e2985c768e8bdca357 linux-3.0/scripts/bin2c.c -f346cd3df137340756e3b9e2bf1f89f8 linux-3.0/scripts/basic/fixdep.c -de48aab12a6aea5b4f3a1f75e6bb77ef linux-3.0/scripts/basic/Makefile -f2a839f3afb435ccdaa996d9c403b6f8 linux-3.0/scripts/basic/.gitignore -900552a1ad3712dd2458e08a8128e460 linux-3.0/scripts/Makefile.modpost -ebe485c5f8a3aa0cb203d0e8cb03ed2c linux-3.0/scripts/Makefile.modinst -e98c371abf763509ec7ca49f5b613ce1 linux-3.0/scripts/Makefile.modbuiltin -00dd761b30ad22786424246fc0cb7990 linux-3.0/scripts/Makefile.lib -9da9e47d03142f731f0f651fad4fb28a linux-3.0/scripts/Makefile.host -6409c7aafc6bac7a0805d0a718edc8ef linux-3.0/scripts/Makefile.help -fe8bbf25fedbc1cf475883c6f507426b linux-3.0/scripts/Makefile.headersinst -aee47710527399dc27399b1aa2f07e7b linux-3.0/scripts/Makefile.fwinst -f3da726faef2a80235617a5342e7080d linux-3.0/scripts/Makefile.clean -6801891e8f731b5dcf6da22ec0ded249 linux-3.0/scripts/Makefile.build -89514cbc0f017ab03c8d38114cba200e linux-3.0/scripts/Makefile.asm-generic -e01fe1347b0cea264040157fe6f5fa30 linux-3.0/scripts/Makefile -11a836a5aacc90586554c3718d53f2a1 linux-3.0/scripts/Lindent -19a2e107f7a055544486864136f6e619 linux-3.0/scripts/Kbuild.include -a1d841db9ba94257dcbe30305bea78e1 linux-3.0/scripts/.gitignore -b01e8660c987a21236cace5f6cfb6473 linux-3.0/samples/tracepoints/tracepoint-sample.c -884e37b0ce52bd89d63cfd8ed21aad30 linux-3.0/samples/tracepoints/tracepoint-probe-sample2.c -7223813bd0db108b5b67dbe9de7e3a66 linux-3.0/samples/tracepoints/tracepoint-probe-sample.c -1becc28f9edb35ff72330e4222ee14be linux-3.0/samples/tracepoints/tp-samples-trace.h -4eee7aa4a00b85313be9f4b4d27eb48f linux-3.0/samples/tracepoints/Makefile -8fb862c115a01ad0fe143e1a317d9198 linux-3.0/samples/trace_events/trace-events-sample.h -3f897f49ad897bb51ad38c73b2481948 linux-3.0/samples/trace_events/trace-events-sample.c -089e90f635b9c370369f8b7e4f126cc0 linux-3.0/samples/trace_events/Makefile -b3c4e4513f61c6f90cce98183f5ea8a2 linux-3.0/samples/kprobes/kretprobe_example.c -510e09ef9e497135389d4fb80fcc18b7 linux-3.0/samples/kprobes/kprobe_example.c -e8a402e9c1acea57745de5c49d3e83cd linux-3.0/samples/kprobes/jprobe_example.c -ab645a4232624cf304b31611c4d31639 linux-3.0/samples/kprobes/Makefile -9c421ac2bec461ba741e62ef041e8cea linux-3.0/samples/kobject/kset-example.c -8c9092c5a74814b4710c925dc1a7e171 linux-3.0/samples/kobject/kobject-example.c -b3717824e7a8fd02b04a75381f1da834 linux-3.0/samples/kobject/Makefile -b4ce24244a3ff0f8abd0488c3e056224 linux-3.0/samples/kfifo/record-example.c -f505d486c5eea0ea0c6d8a02bba30c33 linux-3.0/samples/kfifo/inttype-example.c -6cdccb8558b07a17d4aa85ec9c499d47 linux-3.0/samples/kfifo/dma-example.c -4edee9ee18b0134d216a3f9a7a882afa linux-3.0/samples/kfifo/bytestream-example.c -859b65aca7f9983e1e33af300152a8b2 linux-3.0/samples/kfifo/Makefile -f116fcc3a5def736272258fa4eb2eeb6 linux-3.0/samples/kdb/kdb_hello.c -60846f0072beab785af00d2290bbf33d linux-3.0/samples/kdb/Makefile -057d385592649770c916122e123bc424 linux-3.0/samples/hw_breakpoint/data_breakpoint.c -4d204bd8be238cfb19b3f8459d84c45e linux-3.0/samples/hw_breakpoint/Makefile -d14dff562734d8572e80dc9457039d84 linux-3.0/samples/hidraw/hid-example.c -07bdeef9398d9eb33b2faec05fbc838e linux-3.0/samples/hidraw/Makefile -2f5c85ec9e27a4fda1d6b71b9fb48934 linux-3.0/samples/Makefile -12b824079f2192e9e9c22a3378d0becd linux-3.0/samples/Kconfig -03bf613a7215f5943167cdea8936a6f9 linux-3.0/net/xfrm/xfrm_user.c -d41ba97854547ac39ef6bb5355f524df linux-3.0/net/xfrm/xfrm_sysctl.c -b5128cfc213432b46db85f1975c277b4 linux-3.0/net/xfrm/xfrm_state.c -ba9d5d2cc39b5f1845a3122628bf2e36 linux-3.0/net/xfrm/xfrm_replay.c -794194450c39ad8c25d7233ad282d54f linux-3.0/net/xfrm/xfrm_proc.c -4c23b5d8eb838b4227c9040422d6e900 linux-3.0/net/xfrm/xfrm_policy.c -0f575f48ea849675981b0ab329cae467 linux-3.0/net/xfrm/xfrm_output.c -adac4fe90f9192f53d60260e414de075 linux-3.0/net/xfrm/xfrm_ipcomp.c -077a18391489f2f9a783b76f2b2d3a60 linux-3.0/net/xfrm/xfrm_input.c -7c3ba7588b8ee76f53811412a0fe8cc9 linux-3.0/net/xfrm/xfrm_hash.h -44646362f20b4c0a58c57e2fb4309c85 linux-3.0/net/xfrm/xfrm_hash.c -1109ee788b770f51fb90596813c9a272 linux-3.0/net/xfrm/xfrm_algo.c -ece77bcd2cb5f00e2cbcd0310c5bc873 linux-3.0/net/xfrm/Makefile -7c3cf358e6837827e8ded51f4abe8237 linux-3.0/net/xfrm/Kconfig -fe36e04bbc8f74bb7e1517237c74db8d linux-3.0/net/x25/x25_timer.c -14b4f606a4c8e865bdb758b71579e03c linux-3.0/net/x25/x25_subr.c -86770af653d0c6a466ea83eedbfdd866 linux-3.0/net/x25/x25_route.c -4b2e6304be5b60a388ff24cdf115830f linux-3.0/net/x25/x25_proc.c -163e652e15ce469d9961d0fe4dfe081d linux-3.0/net/x25/x25_out.c -cb5bd0219423752f9c3c765b50eb083a linux-3.0/net/x25/x25_link.c -d94446fbdc5fc0a516cc4879ca0e4111 linux-3.0/net/x25/x25_in.c -425f37013da9c28b68dcf2aaf7c9d163 linux-3.0/net/x25/x25_forward.c -6ea4bebf84386dff2ef598b1ce119057 linux-3.0/net/x25/x25_facilities.c -b5e6c6278f9b31a2178b34f8d64a4b9a linux-3.0/net/x25/x25_dev.c -f8fb15fa556113a7e70954f643dccaaa linux-3.0/net/x25/sysctl_net_x25.c -9f71ae68c11b41688776da45bd32db75 linux-3.0/net/x25/af_x25.c -46b986134d9168d3300a029b80baceb0 linux-3.0/net/x25/Makefile -5eb57c92e639ffb0285d3af126dcdf1f linux-3.0/net/x25/Kconfig -342cadfbe2ef395c443443db98fbde9e linux-3.0/net/wireless/wext-spy.c -71149f79d21b1615bffcfb7d171c7108 linux-3.0/net/wireless/wext-sme.c -bf198172f63bd4fdf37416a4f2d06b00 linux-3.0/net/wireless/wext-proc.c -ccb665a9d042c965c59b87fde705213b linux-3.0/net/wireless/wext-priv.c -5a15b2402fdb249b8bf9467078796952 linux-3.0/net/wireless/wext-core.c -f160bcff8481e58cdbbe748dfd54232e linux-3.0/net/wireless/wext-compat.h -3f0959a88537c24c6ed53cd9f081c956 linux-3.0/net/wireless/wext-compat.c -1f04e3b5d4e67fe54a6ba3753172ec90 linux-3.0/net/wireless/util.c -4dee94a93888e6157db00f3be90266cd linux-3.0/net/wireless/sysfs.h -3a60893fe17aba9d45f9fd0e36647fb3 linux-3.0/net/wireless/sysfs.c -78e668ed64f1bb07f0cf1e045e0b0bcd linux-3.0/net/wireless/sme.c -6313338692960e65a662913ad84f5fc4 linux-3.0/net/wireless/scan.c -196fb136a9fd8b6018706055f685cbe7 linux-3.0/net/wireless/regdb.h -098fe2435c2cc43f1cbeb55eed23eef0 linux-3.0/net/wireless/reg.h -8f0f134c673f6994ce337d6691aa4c01 linux-3.0/net/wireless/reg.c -086b784995d9a8aaa1325a6fe11a3e85 linux-3.0/net/wireless/radiotap.c -10c0edd87476aecea171cfc1c6dd10fb linux-3.0/net/wireless/nl80211.h -899b2bad4f9b89ba06f83330750e64b3 linux-3.0/net/wireless/nl80211.c -6e2a6d2bc3cbc1fdf835da58648e5172 linux-3.0/net/wireless/mlme.c -a88bc6ee808e1df3ce8e42cdd4c251d7 linux-3.0/net/wireless/mesh.c -da8f80ee6bd3077bc659bfaaf60c0cad linux-3.0/net/wireless/lib80211_crypt_wep.c -8a28febf95ddea1d8f3eea9295406607 linux-3.0/net/wireless/lib80211_crypt_tkip.c -35e46120b7e0b64b6309f682a26794a3 linux-3.0/net/wireless/lib80211_crypt_ccmp.c -01736ec77a6d376a433789520ac1f0d5 linux-3.0/net/wireless/lib80211.c -bf18ea1b66a93eae8a672980fbef8949 linux-3.0/net/wireless/ibss.c -e5ab47bc065f8196a5765e3b330df828 linux-3.0/net/wireless/genregdb.awk -94eacc1fbeeeb5c7e5617ce95ccde605 linux-3.0/net/wireless/ethtool.h -c667068b96ba1fdd035f0e6664068718 linux-3.0/net/wireless/ethtool.c -68e3d45c727d1ff7650ddc8b0a6b0872 linux-3.0/net/wireless/debugfs.h -55df444ba6bc23e7a03d68b74ad57996 linux-3.0/net/wireless/debugfs.c -079eab79931c561e95f933b1a68bf53e linux-3.0/net/wireless/db.txt -78c2691bb780a287aada617ff51c3bdc linux-3.0/net/wireless/core.h -0a0d8446238b92912e64161080d11dcd linux-3.0/net/wireless/core.c -aac1fe8ef4dd1b67995b357d6a1274d1 linux-3.0/net/wireless/chan.c -cc3fb9c0ad5d02ff5cb4eba80f9df8cc linux-3.0/net/wireless/Makefile -00369047e088a07f9465560153e30954 linux-3.0/net/wireless/Kconfig -8bfccc1f47b557bb89efd8d57498fad8 linux-3.0/net/wireless/.gitignore -9dcb49535d5823d3a520be18a6483115 linux-3.0/net/wimax/wimax-internal.h -04a5bae10dda7e5ae0f69d25cae99a2a linux-3.0/net/wimax/stack.c -d1e50dd3d3b680527775452968fb398a linux-3.0/net/wimax/op-state-get.c -92c837342c5d830441663b9062d848b1 linux-3.0/net/wimax/op-rfkill.c -ea2d1cabe4ddc6ee99ede38402d3a391 linux-3.0/net/wimax/op-reset.c -d3abfb4b9c8e531a034ee24b4df3645e linux-3.0/net/wimax/op-msg.c -f6d59e4cd1f8e2ad3a2dac5d1f7ada44 linux-3.0/net/wimax/id-table.c -31e94c56af32fffaf63e3d51958d0432 linux-3.0/net/wimax/debugfs.c -9638f7378f3fa9540426fcea0b7b1f28 linux-3.0/net/wimax/debug-levels.h -df90012fda145960057ea690dbcabdcb linux-3.0/net/wimax/Makefile -600868e73bd15fa205da6cdde9ee6a1b linux-3.0/net/wimax/Kconfig -e906537f2b66f6cbfd1c85818e45fcad linux-3.0/net/wanrouter/wanproc.c -4a9f0de62e82f8453907c7c24beb9bb6 linux-3.0/net/wanrouter/wanmain.c -48096b8ebd1f9bf4b25a87bc47bd60f5 linux-3.0/net/wanrouter/patchlevel -529238ff7f127c36044001c7b3256a3c linux-3.0/net/wanrouter/Makefile -5f73117caa7c611c54c633b4b63928d0 linux-3.0/net/wanrouter/Kconfig -06741144150ce5b20744b5fe0649db3d linux-3.0/net/unix/sysctl_net_unix.c -b1fe38ef6e69e6eea3c175a8cda2afae linux-3.0/net/unix/garbage.c -d31a619da746032e41c8c60ff737e5da linux-3.0/net/unix/af_unix.c -ba0e7c6ec15e50307f3ae4ab18f8a1f2 linux-3.0/net/unix/Makefile -3ede9ec6efbb6765f5a124e7c2f1111e linux-3.0/net/unix/Kconfig -853fa4128643bf6749a1bb4336c58e89 linux-3.0/net/tipc/subscr.h -919488483d5125481d2855b54b85d766 linux-3.0/net/tipc/subscr.c -74513746937bd2e4ce6c485d7997674b linux-3.0/net/tipc/socket.c -15589a8bee9926f56b4d5c6147e696c2 linux-3.0/net/tipc/ref.h -c644e00714aa69c24cb0380f8eac7d69 linux-3.0/net/tipc/ref.c -198ca2f1db56cc8e40b5519b9291c034 linux-3.0/net/tipc/port.h -821c1c020c8fdc5afea6395345ba26d7 linux-3.0/net/tipc/port.c -ae2c9ac9782bf10aaf84547993be5c7b linux-3.0/net/tipc/node_subscr.h -6694afece31e05846dc37ba7e740a1ec linux-3.0/net/tipc/node_subscr.c -a9d22d64a132094b3e77e48afdc322d4 linux-3.0/net/tipc/node.h -59606c459d36c9e12826b5fc04422735 linux-3.0/net/tipc/node.c -d82a98219dae3805fc039c5ef7bc5570 linux-3.0/net/tipc/netlink.c -61d5831749d2e016ec5691dff19fbe15 linux-3.0/net/tipc/net.h -48e589645a05f7b3f3dee1ee1fa39916 linux-3.0/net/tipc/net.c -1d40e7bd1248a2f25e24cba89fed3d4f linux-3.0/net/tipc/name_table.h -8073f69528a63dd2de3d3cb72cd5a12b linux-3.0/net/tipc/name_table.c -11ab19ea2ae5c0b50ccc28e3bbd82ca3 linux-3.0/net/tipc/name_distr.h -3b931ec0c131a65a93bca71c66403881 linux-3.0/net/tipc/name_distr.c -704a84c12e55eae1b91d3d8b4e4a91f3 linux-3.0/net/tipc/msg.h -70de1d008aac58315e00421ee88a144f linux-3.0/net/tipc/msg.c -7b07a63dfd8af745469f1c9646af0177 linux-3.0/net/tipc/log.h -6d6c845ec5d64a5e83d1f3d6d7832d1f linux-3.0/net/tipc/log.c -faa0baef495b3a64c1afe9909f9ee7d9 linux-3.0/net/tipc/link.h -5166a4298404485f46077fc3a8e6854a linux-3.0/net/tipc/link.c -0df0505239981670edb328b6b942d890 linux-3.0/net/tipc/handler.c -b4d0c183e04d1bff00ab352794dbcaa3 linux-3.0/net/tipc/eth_media.c -07c8b6dcfc7b56635766c7247a3fbf3e linux-3.0/net/tipc/discover.h -45a13c675c755b7f99f68ae74f96921b linux-3.0/net/tipc/discover.c -5c712716a624bf6c42920739ee457896 linux-3.0/net/tipc/core.h -e60e9e659046fb971025c3c4f62ae501 linux-3.0/net/tipc/core.c -e54361ac6e8ca99adadc7e463342660b linux-3.0/net/tipc/config.h -4e5df3965e749d55903b67deac181607 linux-3.0/net/tipc/config.c -31304e792ceaee480c9e3144fc0777bf linux-3.0/net/tipc/bearer.h -2ce3feeca7e9db76703ace3c861c9f50 linux-3.0/net/tipc/bearer.c -204c2ef69be78a1a4d631314e9787e87 linux-3.0/net/tipc/bcast.h -c56f6b9d54d50bed92c5550cd1895c69 linux-3.0/net/tipc/bcast.c -f029d8132471d2dfe90b0091b09ae87c linux-3.0/net/tipc/addr.h -21535b7af59d41e99410dbc39ab2c09b linux-3.0/net/tipc/addr.c -234b3a21649beb8810dfe1ef9e581134 linux-3.0/net/tipc/Makefile -e978a64c9d031e8036c87e5b651fecd5 linux-3.0/net/tipc/Kconfig -088f49e5f5b20255aeb0292e5e6ea179 linux-3.0/net/sysctl_net.c -d5df3ab2b4f974e1338827bb20009cde linux-3.0/net/sunrpc/xprtsock.c -35ca8a3e375e4855ba1682f49a980e8e linux-3.0/net/sunrpc/xprtrdma/xprt_rdma.h -4423b8d37eb186b4cdc9b4348e3bed1a linux-3.0/net/sunrpc/xprtrdma/verbs.c -9bdbb4022b1061ec43d28ff97f8e4b39 linux-3.0/net/sunrpc/xprtrdma/transport.c -b915cada1b2482cb6e5a97e88e7aeaf8 linux-3.0/net/sunrpc/xprtrdma/svc_rdma_transport.c -41082b4a12c4f1f1a7f960940288a11a linux-3.0/net/sunrpc/xprtrdma/svc_rdma_sendto.c -45612f2aeef89562b1ea64c0df2ef351 linux-3.0/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c -bd7f140a2294e85d5f4e112145736e86 linux-3.0/net/sunrpc/xprtrdma/svc_rdma_marshal.c -b6d9eb73ab652df21b7c5b56b6e6c78f linux-3.0/net/sunrpc/xprtrdma/svc_rdma.c -19f85de9715d2808e7b24286337e4fb4 linux-3.0/net/sunrpc/xprtrdma/rpc_rdma.c -32fa05fedd13758192204d0d80613fac linux-3.0/net/sunrpc/xprtrdma/Makefile -3dfe23870a230474cbd99b09ca51c167 linux-3.0/net/sunrpc/xprt.c -c7c39dce88ea81c0f3a70026a3168c2a linux-3.0/net/sunrpc/xdr.c -84f31bbfb40c76f39223e801cda02acf linux-3.0/net/sunrpc/timer.c -5b29d145ad7b74436c57244fa8b00b44 linux-3.0/net/sunrpc/sysctl.c -a31603b319d9683f69d6971a87a64566 linux-3.0/net/sunrpc/svcsock.c -b3ffb4c2fc78331924f1889da9cd045d linux-3.0/net/sunrpc/svcauth_unix.c -35397457dd1bfa9cb83d0e56722d83e5 linux-3.0/net/sunrpc/svcauth.c -8327633a092249051ad351e00a043080 linux-3.0/net/sunrpc/svc_xprt.c -801c254a5596d6bcc253d8b2b7993d5c linux-3.0/net/sunrpc/svc.c -4070449f834ae1b07311472738bff958 linux-3.0/net/sunrpc/sunrpc_syms.c -d6aff2e4ad52e35823b55f02b4fa1580 linux-3.0/net/sunrpc/sunrpc.h -7b8550a03545be3a0de1880234cea1b7 linux-3.0/net/sunrpc/stats.c -0970cb58987b35c4c03067f5a5c8a71f linux-3.0/net/sunrpc/socklib.c -b96b53b0451e36c09f8b50cfd17721ee linux-3.0/net/sunrpc/sched.c -8cd8b0f49a8c439fb96e48740f3dc3ab linux-3.0/net/sunrpc/rpcb_clnt.c -14492e9be744dfeeb9f9a2d2f90ce68f linux-3.0/net/sunrpc/rpc_pipe.c -725283544c874348e24baf599918934b linux-3.0/net/sunrpc/netns.h -515b29483e67f1170ee13cc4ee3696c8 linux-3.0/net/sunrpc/clnt.c -22bbeea8e58effa4fd5977b445cff970 linux-3.0/net/sunrpc/cache.c -69122f7751de83f15243357139a0343f linux-3.0/net/sunrpc/bc_svc.c -e6f0cc78e09e6be2a333a67d6476b83e linux-3.0/net/sunrpc/backchannel_rqst.c -119b9dda7b1e56abb290b82c0489f468 linux-3.0/net/sunrpc/auth_unix.c -cf64f76e445c57c2efb9255ee3626eb9 linux-3.0/net/sunrpc/auth_null.c -bd0a53119e23ea6b5e9a4a45062f82c8 linux-3.0/net/sunrpc/auth_gss/svcauth_gss.c -d3e598003fd36ef4c2d9332243bec33c linux-3.0/net/sunrpc/auth_gss/gss_mech_switch.c -59f06efc4acf86403246e47f979b004c linux-3.0/net/sunrpc/auth_gss/gss_krb5_wrap.c -23f6df04660b9fa26230297e80d13816 linux-3.0/net/sunrpc/auth_gss/gss_krb5_unseal.c -ffa497a7606c7c4081c6578b04d27db5 linux-3.0/net/sunrpc/auth_gss/gss_krb5_seqnum.c -90dd4f76d67187cc390bfab710238670 linux-3.0/net/sunrpc/auth_gss/gss_krb5_seal.c -2b443c7d6b1078ca00e1ac554dffdbef linux-3.0/net/sunrpc/auth_gss/gss_krb5_mech.c -41537591ad8ef563d83018743dcc1340 linux-3.0/net/sunrpc/auth_gss/gss_krb5_keys.c -23cae5fa8f15ca677079136da44343e9 linux-3.0/net/sunrpc/auth_gss/gss_krb5_crypto.c -8908cd978de626bc609a65759a6d5119 linux-3.0/net/sunrpc/auth_gss/gss_generic_token.c -ca97a26417d8236086cf6a2b126cbcbd linux-3.0/net/sunrpc/auth_gss/auth_gss.c -e277f2f93b0f4a10d7c5c9594583c531 linux-3.0/net/sunrpc/auth_gss/Makefile -fca104d1b3368b508bd19a6d94025cc1 linux-3.0/net/sunrpc/auth_generic.c -c5ddc71dde74b75de23faa203dfc5ced linux-3.0/net/sunrpc/auth.c -d9ba0ad6a257e8453aa2afd8e47ca960 linux-3.0/net/sunrpc/addr.c -5ba49574938ee1ae190b131c287047c8 linux-3.0/net/sunrpc/Makefile -ecd31c7512e9f655591dfca7d194e736 linux-3.0/net/sunrpc/Kconfig -9c2f3b4985c5a376cd7887d8466fc943 linux-3.0/net/socket.c -946671f172df78d4ddefc640c4796369 linux-3.0/net/sctp/ulpqueue.c -d35156a87abf55553d7749ca74af18a4 linux-3.0/net/sctp/ulpevent.c -7da78a814a1f1bbe6bf1741342440fa2 linux-3.0/net/sctp/tsnmap.c -ab762db5492ca9411c0ec048bd27049a linux-3.0/net/sctp/transport.c -a5ad17df77ceda58b8acf0f8750303ed linux-3.0/net/sctp/sysctl.c -596e151067253c3f60f94b1a062e9592 linux-3.0/net/sctp/ssnmap.c -b0a9f142cdb4391a81a6c400c880b4d8 linux-3.0/net/sctp/socket.c -c261685eca77b8c4fd2c16b0da171a9d linux-3.0/net/sctp/sm_statetable.c -62a41c24a36a9d0b954aa52baeea1bfe linux-3.0/net/sctp/sm_statefuns.c -10f46fccc6aa499d4ce29966bd67995d linux-3.0/net/sctp/sm_sideeffect.c -976b79cdd328c9355a4640250ccc9305 linux-3.0/net/sctp/sm_make_chunk.c -c75a08fd94bf08f96a9e6ea86c286d11 linux-3.0/net/sctp/protocol.c -1e796a8cffcb64e58eaeb7b760f98a6c linux-3.0/net/sctp/proc.c -a78f88e4b708d182c950cd74950e46d4 linux-3.0/net/sctp/probe.c -f76eaed16b3f4a456bb5b04dc23b9b21 linux-3.0/net/sctp/primitive.c -774978280dd4235e63671891c4e04373 linux-3.0/net/sctp/outqueue.c -898f3f13f4a7a6c0c36eb4080a2c86df linux-3.0/net/sctp/output.c -9887b0f995a6d8312aa5e5eb4cf92c48 linux-3.0/net/sctp/objcnt.c -589701d5d8a60e25598f2675fc811d82 linux-3.0/net/sctp/ipv6.c -4b4a8857c0560fd727e56b607a0e92a4 linux-3.0/net/sctp/inqueue.c -98c64cc3d4fdb93a32a9676109d3590b linux-3.0/net/sctp/input.c -276b76e73fe00b0e22d43982f4e42e4e linux-3.0/net/sctp/endpointola.c -41c8928a5a08b1a6a418eacbb9af343c linux-3.0/net/sctp/debug.c -0b3694a3cf133861c4d2d4ced5dbd6e2 linux-3.0/net/sctp/command.c -a5f60aa1659897bc03c6f3b33befb230 linux-3.0/net/sctp/chunk.c -718ab5ae9cfadcc0bd73034e6996bd2d linux-3.0/net/sctp/bind_addr.c -9cbbf491ff5fbd5917de6c8ecdc5a340 linux-3.0/net/sctp/auth.c -49d699feafd37bccd5a665f7b1c9f9db linux-3.0/net/sctp/associola.c -13c22012f477b848c97d301d0fe20bcc linux-3.0/net/sctp/Makefile -7cfd84a89206d532df6263cfa274e2a6 linux-3.0/net/sctp/Kconfig -3dbefaa1ef5fb1a58fc02e3f53888c79 linux-3.0/net/sched/sch_teql.c -63d923c61cf0336398c4b389b0b7ae85 linux-3.0/net/sched/sch_tbf.c -f339f4fb5f72b394eed829b11284a95f linux-3.0/net/sched/sch_sfq.c -10ec5805b38e330669baf90e8825ec1b linux-3.0/net/sched/sch_sfb.c -4729c4e575e4e00478bffd91168e9527 linux-3.0/net/sched/sch_red.c -e5755e73daea494a0b8f3bc0f08add3b linux-3.0/net/sched/sch_qfq.c -0144ad60d2f9b45b5ca97a572e569dab linux-3.0/net/sched/sch_prio.c -7f2a2e0343c77f847f410d33153fd18a linux-3.0/net/sched/sch_netem.c -2fd7216e30d3eea932ca7d9aeb02d171 linux-3.0/net/sched/sch_multiq.c -4eab16d620ecefc1978846021441de4d linux-3.0/net/sched/sch_mqprio.c -50f15c01d5fad7306f961d275531cde6 linux-3.0/net/sched/sch_mq.c -23f67eb239137a940b2891c95e5c771b linux-3.0/net/sched/sch_ingress.c -9319c7a598d1437224cd793e1e88eb86 linux-3.0/net/sched/sch_htb.c -318436c52c7ab314c9584115913e2dce linux-3.0/net/sched/sch_hfsc.c -b4610936062fdca1911bf8d900c53f87 linux-3.0/net/sched/sch_gred.c -b0a6b5570fda2c478342f03a139be3af linux-3.0/net/sched/sch_generic.c -b99dcf66a23ea3cc1da1a949d422ee79 linux-3.0/net/sched/sch_fifo.c -1a2c56a40e0b97e9b4e1f0989d6c42e2 linux-3.0/net/sched/sch_dsmark.c -147fb50cd49cb84354e1f6abb1dbee16 linux-3.0/net/sched/sch_drr.c -be8b608577949ef2726ae7aa5bcbb04f linux-3.0/net/sched/sch_choke.c -40545c61b241cfeb56eff9bbb4c28be1 linux-3.0/net/sched/sch_cbq.c -0649d6b388f5bcf074183968dd01dd28 linux-3.0/net/sched/sch_blackhole.c -4fae6af5e67315b99270245bfec2211d linux-3.0/net/sched/sch_atm.c -413d4b7c3019b40fabf77798e95f6417 linux-3.0/net/sched/sch_api.c -b0af1d6e3bad798cbcd5b044161ac87a linux-3.0/net/sched/ematch.c -18c90d83a92c72cc6eb666c055016b78 linux-3.0/net/sched/em_u32.c -7bb4359dfc8c8482e16a345bf469fd0f linux-3.0/net/sched/em_text.c -6af892815cc0cd9d5b495822bc1794cb linux-3.0/net/sched/em_nbyte.c -bffcaef55d3880c32a021c7a084091bd linux-3.0/net/sched/em_meta.c -40a05c3ccefca6d2ceff37910576d954 linux-3.0/net/sched/em_cmp.c -f6b411e8d2a460250b5775feb580d67c linux-3.0/net/sched/cls_u32.c -029c56413cca42e155362954ac77cc6d linux-3.0/net/sched/cls_tcindex.c -1fc58cd7f7c0c370d2bc011d29cafede linux-3.0/net/sched/cls_rsvp6.c -af9c0f1c600d960fa72c74476bf3948b linux-3.0/net/sched/cls_rsvp.h -dfb5ec095c7b9433b7fca124c1128572 linux-3.0/net/sched/cls_rsvp.c -688cc71b4e343976c4cef5ec0f283390 linux-3.0/net/sched/cls_route.c -798fc3c3676ff303b7c619815ea800ad linux-3.0/net/sched/cls_fw.c -4ae57bf0ee13e5b42dcf7e2c958127c2 linux-3.0/net/sched/cls_flow.c -d5420edff8382f516f27c207bebbafd7 linux-3.0/net/sched/cls_cgroup.c -78a2b199f737fed942d7a76ac7ae2e38 linux-3.0/net/sched/cls_basic.c -675ea119d5bf6d44d516a42ead10e8aa linux-3.0/net/sched/cls_api.c -2497c76c34e5088c5437f63f436ae452 linux-3.0/net/sched/act_skbedit.c -2db1d356972466f1dbc91262fd1f7f73 linux-3.0/net/sched/act_simple.c -69f824654c3ef4ef138f14eb311e29a3 linux-3.0/net/sched/act_police.c -e1b30c3765973915d2b41feaacf96007 linux-3.0/net/sched/act_pedit.c -5fd224d7591de7adb2abc62a9905d472 linux-3.0/net/sched/act_nat.c -458b1adb709e7b9314975e6191ecb795 linux-3.0/net/sched/act_mirred.c -a2a27e32a7956418c49837e831e461bc linux-3.0/net/sched/act_ipt.c -83d67768d4764e547392b72fdbb66060 linux-3.0/net/sched/act_gact.c -9888a2372e8e52f93d3eb60601289112 linux-3.0/net/sched/act_csum.c -e1044a74e6ef2a4aa2da07826c49be12 linux-3.0/net/sched/act_api.c -24cd64185d0e4180298c688e551dcd96 linux-3.0/net/sched/Makefile -e1e3d89626bbab9f4a59fb3bb59fef42 linux-3.0/net/sched/Kconfig -0a71f402734af3603d9cb6ff0461d7c7 linux-3.0/net/rxrpc/rxkad.c -d748bbcdfb86f61b315034869459c1b4 linux-3.0/net/rxrpc/ar-transport.c -48c87148c47fa3e47b7b4bdaa7146cc2 linux-3.0/net/rxrpc/ar-skbuff.c -2922b04323c13576cd4232ac948d3036 linux-3.0/net/rxrpc/ar-security.c -cf2851f9a3c1d55e88dcf0b7aa9e60ec linux-3.0/net/rxrpc/ar-recvmsg.c -f2c1a30b8f397815393a58fc84429a83 linux-3.0/net/rxrpc/ar-proc.c -6001ee79f63d498fcfcbab7cda236a0a linux-3.0/net/rxrpc/ar-peer.c -9635eb7a8a67610a0e3fa62d0a52ce7e linux-3.0/net/rxrpc/ar-output.c -55e4a017d7b5a8fe61d0365c4fbe9469 linux-3.0/net/rxrpc/ar-local.c -8cba3935ddc4df11cd36defd8cbba40d linux-3.0/net/rxrpc/ar-key.c -0c95458523264e33f69fafdca8c17fd3 linux-3.0/net/rxrpc/ar-internal.h -ac1bed109f03efcbfae93fefd8c12fd9 linux-3.0/net/rxrpc/ar-input.c -d022c39f6ed74a5b342ca19a6061334f linux-3.0/net/rxrpc/ar-error.c -cb75f5147f8183987450625d9747073c linux-3.0/net/rxrpc/ar-connevent.c -f50364a0bdfd47f3267f26073ed3fd4f linux-3.0/net/rxrpc/ar-connection.c -695f417ee6ebca8afa2338739f6cc9f4 linux-3.0/net/rxrpc/ar-call.c -3a1fc324616125d4186b7d8f33fb020d linux-3.0/net/rxrpc/ar-ack.c -60812eef965439cd9a47b95bd6bdb08e linux-3.0/net/rxrpc/ar-accept.c -6fafa1ab8f620ef3a4841864e7c0dc2d linux-3.0/net/rxrpc/af_rxrpc.c -104c2d2f33caddd93e4dbf44e765eaa6 linux-3.0/net/rxrpc/Makefile -fb2e918c787cdef695f1a6bf8170a50e linux-3.0/net/rxrpc/Kconfig -f24c5f65d93200d0aa134d07860f941d linux-3.0/net/rose/sysctl_net_rose.c -2cb174ddf0e9c3e7e4aa74e17094e725 linux-3.0/net/rose/rose_timer.c -dc0f9f58983a09f7999b22e6ba5ace53 linux-3.0/net/rose/rose_subr.c -aa6c3a156db26ba52028c7b05dc538b1 linux-3.0/net/rose/rose_route.c -47ac62ab62659e518ad28ab89c3e271b linux-3.0/net/rose/rose_out.c -9befcfef3ca89253bca67c98532307de linux-3.0/net/rose/rose_loopback.c -a5103f8327759a65e3665175b9589f99 linux-3.0/net/rose/rose_link.c -81d9c904e088be35016dc4d7a4237858 linux-3.0/net/rose/rose_in.c -aea6301419743d331c13bba21c7cedb8 linux-3.0/net/rose/rose_dev.c -ce03c63ac589590cd906d2700243f306 linux-3.0/net/rose/af_rose.c -76247acb228ac32e758d86ca5fd53a87 linux-3.0/net/rose/Makefile -61ba532fd3d9004832a43ac00571e492 linux-3.0/net/rfkill/rfkill.h -9cb938127dc2d40607514c4a04966c03 linux-3.0/net/rfkill/rfkill-regulator.c -41af4b798245620cba16cf3a307e1db2 linux-3.0/net/rfkill/rfkill-gpio.c -60e45657ee337276d0e1478042e044bf linux-3.0/net/rfkill/input.c -f3a3611f27d8eb260ceff54f71011648 linux-3.0/net/rfkill/core.c -c55112ab9ccef4aa5b81c6343a28496f linux-3.0/net/rfkill/Makefile -b3832a4d06c9d6f3f3d2ab5abd1bc653 linux-3.0/net/rfkill/Kconfig -23d7267078ce56d560ae85f2ecf99df6 linux-3.0/net/rds/xlist.h -1e999803bfe142b1a18f9cb428c0704a linux-3.0/net/rds/transport.c -303be9c4ad3259d8d76c0ce21b3a93e2 linux-3.0/net/rds/threads.c -c512035b8b6a2d7499aceb96127ea87e linux-3.0/net/rds/tcp_stats.c -9b8dd1392b03327d38387fc2278126d4 linux-3.0/net/rds/tcp_send.c -7e2fc0f2c72708bde9a4908eabe052d0 linux-3.0/net/rds/tcp_recv.c -824a861196a772eff70b8b78f1419835 linux-3.0/net/rds/tcp_listen.c -b3e0c4d583f5c543dc67db42b1f2b8f0 linux-3.0/net/rds/tcp_connect.c -12f7a75eb804deca3abc37aadc8ccea3 linux-3.0/net/rds/tcp.h -a63a996fe79a6aa179b23fd61ac27ee3 linux-3.0/net/rds/tcp.c -f0fb032ba3d8200cd04c46281b3835ac linux-3.0/net/rds/sysctl.c -aadd5e7710376588cca0fa5f69503bea linux-3.0/net/rds/stats.c -ae5ba96ddddde0e225d245f700105803 linux-3.0/net/rds/send.c -4200c3e18b6fdd0286761be1553b9d44 linux-3.0/net/rds/recv.c -ae3c27bd983240ba29e382914223179e linux-3.0/net/rds/rds.h -78402f9826bd3272b1d422c586d8e5b5 linux-3.0/net/rds/rdma_transport.h -01482b02dc9306e58108ea4791c9a303 linux-3.0/net/rds/rdma_transport.c -4b57763824be3a2a746cb9b7d1fa5bf6 linux-3.0/net/rds/rdma.c -dd2224bd2a72e26f96312d251adc9096 linux-3.0/net/rds/page.c -26f6e1974bd046fec7e242c85ead784d linux-3.0/net/rds/message.c -cfbc5f86c150c5d4895f6df4a88fbbd8 linux-3.0/net/rds/loop.h -e5272c33c2a3a722ececd2f2d8e72e42 linux-3.0/net/rds/loop.c -2e542cc36d37460b1c79225738bf5ef1 linux-3.0/net/rds/iw_sysctl.c -f61366303135ff57654fa0b95b2c4d47 linux-3.0/net/rds/iw_stats.c -9bb82fbf1ad42c7d082f2c2ce51058a2 linux-3.0/net/rds/iw_send.c -5c7fc7f8f85db32ac7f85e8df2c8fc98 linux-3.0/net/rds/iw_ring.c -698766286763b63fc1d7f81a54bc24ff linux-3.0/net/rds/iw_recv.c -d02ee5d10a9849c1cfcb1117c12808eb linux-3.0/net/rds/iw_rdma.c -4faa74349fc639e4556d5399e6a8ed64 linux-3.0/net/rds/iw_cm.c -4c872accee195b350667bc2d08e8f842 linux-3.0/net/rds/iw.h -82c67cd38dc1396fc7aec04379dd5d6e linux-3.0/net/rds/iw.c -326ed206f48ab7ec6bc65417e8213787 linux-3.0/net/rds/info.h -5130fe0be95291e8b1608925934b4058 linux-3.0/net/rds/info.c -7197da2a02487a38c8bcfbde8290ffd5 linux-3.0/net/rds/ib_sysctl.c -3a217206aecd54932d4a3e78907a7cc6 linux-3.0/net/rds/ib_stats.c -b8f1143e46d0ade51ea5adb719dea810 linux-3.0/net/rds/ib_send.c -3eaf413a95ea49cbb07fb4892ef40040 linux-3.0/net/rds/ib_ring.c -03fd016ec4bfcb51b110ed26dec97f47 linux-3.0/net/rds/ib_recv.c -0798749b113711f25e422ba30468c331 linux-3.0/net/rds/ib_rdma.c -5487f3762223aff2f5320dd7261fb1ec linux-3.0/net/rds/ib_cm.c -47f9c80600ebf5b8111f548a89ca1ca8 linux-3.0/net/rds/ib.h -796d87234b5ebdc66beb347c2c328e46 linux-3.0/net/rds/ib.c -c615d8e13251b8079397a37043bfdece linux-3.0/net/rds/connection.c -f5c6261d41d3174606b497b145b05691 linux-3.0/net/rds/cong.c -0704ad688ad47ab884827cc2cb7cb775 linux-3.0/net/rds/bind.c -055838fd77359a06d786ecd7d287ef2f linux-3.0/net/rds/af_rds.c -8aa7a7d82202d20124574a47bee3af7f linux-3.0/net/rds/Makefile -4b9d1dd598937632d17a987baed05f8e linux-3.0/net/rds/Kconfig -bc619ad20167d9bb43fd504c5e3abeb2 linux-3.0/net/phonet/sysctl.c -cbc000cc38a7214848fab5a376b1ad85 linux-3.0/net/phonet/socket.c -943c4ca9530d5638974c03cb5bfa7bac linux-3.0/net/phonet/pn_netlink.c -ecbbd9bb39598266a8b7348b961bad23 linux-3.0/net/phonet/pn_dev.c -323983f0fe7b4af146d888f4459cf618 linux-3.0/net/phonet/pep.c -1cc95f8a1c7fc36a560dbf7e9918141b linux-3.0/net/phonet/pep-gprs.c -75234046e6026ce49744c7cece23bedf linux-3.0/net/phonet/datagram.c -6c002f087a87c69aacbc1332597a4ea3 linux-3.0/net/phonet/af_phonet.c -8762dd55749248c58252e662142300ae linux-3.0/net/phonet/Makefile -9e3a28c87e2014461f62c19c51c810c6 linux-3.0/net/phonet/Kconfig -1199cf39c5fe3affaf269996229c03fb linux-3.0/net/packet/af_packet.c -e7ad58806f4c309763e3965a8def12f2 linux-3.0/net/packet/Makefile -15cee9c03a3552d77c26d78af9ded40e linux-3.0/net/packet/Kconfig -6f339bd1061fa5ef19a885bb027e60a3 linux-3.0/net/nonet.c -c9e1e13340a3c3dc79731412c89e1233 linux-3.0/net/netrom/sysctl_net_netrom.c -40b2cc501cffc92245956eba7f724d24 linux-3.0/net/netrom/nr_timer.c -2a091043e9d4ab13e262c254ed83ec46 linux-3.0/net/netrom/nr_subr.c -112206d18e663cec239061e09f9ff130 linux-3.0/net/netrom/nr_route.c -a7a9a3db692d6f042d352a288b73c50f linux-3.0/net/netrom/nr_out.c -5a4d3068a3dabfdb811e37a25bdd5205 linux-3.0/net/netrom/nr_loopback.c -160052e3b60b12bf2b2526b42e765518 linux-3.0/net/netrom/nr_in.c -8479fb9783f9d512c572b2311b5f12b2 linux-3.0/net/netrom/nr_dev.c -4ff79612d1764e025ab26245d41508a4 linux-3.0/net/netrom/af_netrom.c -53144c6a0918ffe0349fcb46093474f9 linux-3.0/net/netrom/Makefile -a5c00afee46a7ae03b64ae041955e4f9 linux-3.0/net/netlink/genetlink.c -3d29e91405eaa695eb4d8c0b40cfdb14 linux-3.0/net/netlink/af_netlink.c -ec169419bc890b845eaaac842ed5c505 linux-3.0/net/netlink/Makefile -db4d31ca8c62575d13dda4ecaf82bfab linux-3.0/net/netlabel/netlabel_user.h -3b48145951304a6e41db1d45ac8b6d3e linux-3.0/net/netlabel/netlabel_user.c -2b533a0b1c991d4d19d5f5dbfc32a040 linux-3.0/net/netlabel/netlabel_unlabeled.h -bee34233015b9258a2c3adfbd3ce1dcc linux-3.0/net/netlabel/netlabel_unlabeled.c -0c7c35f907dae39219a638de70a5ad34 linux-3.0/net/netlabel/netlabel_mgmt.h -6d986c97e4c82e12d8a8a139b9dea2b6 linux-3.0/net/netlabel/netlabel_mgmt.c -67a61e02c82df64baba827c1be0ddfa1 linux-3.0/net/netlabel/netlabel_kapi.c -3a31228c79644e1143f967f64ba8e917 linux-3.0/net/netlabel/netlabel_domainhash.h -97b440423905ea80d34c3062e824038b linux-3.0/net/netlabel/netlabel_domainhash.c -f4a38accb5c528347362a9f6dfa90332 linux-3.0/net/netlabel/netlabel_cipso_v4.h -ced6d5e76ea3dd43f6d58b888834cae3 linux-3.0/net/netlabel/netlabel_cipso_v4.c -7a4bb258f56cc23b4be11b7eeb05270c linux-3.0/net/netlabel/netlabel_addrlist.h -172594bb96362d7e4da838a23abac8f8 linux-3.0/net/netlabel/netlabel_addrlist.c -6928414175ba04caf44bece1db20604a linux-3.0/net/netlabel/Makefile -7fdcbfa6f5957c90b4e6df4e50a9a51c linux-3.0/net/netlabel/Kconfig -12cb8554844351aede74f08e0b812d7e linux-3.0/net/netfilter/xt_u32.c -5a39995ed9053e9a51af56b1f9fa834f linux-3.0/net/netfilter/xt_time.c -4d00030ceb8fd05a41142c5cca95b0e2 linux-3.0/net/netfilter/xt_tcpudp.c -11e4f6278e191a444eb874941b6a9e37 linux-3.0/net/netfilter/xt_tcpmss.c -029327ad49ad11e5e63e7b9f9cfb5b24 linux-3.0/net/netfilter/xt_string.c -f6154302c201714ba9cedb3f536c4e41 linux-3.0/net/netfilter/xt_statistic.c -a6832d50b210553eccac04261b8e9277 linux-3.0/net/netfilter/xt_state.c -0d04128f36a42f3dacf61861a417ef1a linux-3.0/net/netfilter/xt_socket.c -8635017d084f9dc0802544af85e75455 linux-3.0/net/netfilter/xt_set.c -67b8db39c002126c2398392eb71b1fdb linux-3.0/net/netfilter/xt_sctp.c -e0ffb0a0383e9aba43bd1782492663eb linux-3.0/net/netfilter/xt_repldata.h -c908edebd4349565648ff871074ae80c linux-3.0/net/netfilter/xt_recent.c -173924fb5333d57d8e94c7b4ad942573 linux-3.0/net/netfilter/xt_realm.c -4111205e8b8cc1a10cfc63984f574af3 linux-3.0/net/netfilter/xt_rateest.c -cdd7486ab034712bb3c9dd921b6ff1d9 linux-3.0/net/netfilter/xt_quota.c -a6fcef3aedc4208f8d26bc2c784b4710 linux-3.0/net/netfilter/xt_policy.c -5cc1c700e1083371157955fedaff2edb linux-3.0/net/netfilter/xt_pkttype.c -9ceb61a1c7e03e8214bff2984f01b30f linux-3.0/net/netfilter/xt_physdev.c -10a60854399dde788ed055077428c809 linux-3.0/net/netfilter/xt_owner.c -409eb5675386d70b63f9a8d56f599421 linux-3.0/net/netfilter/xt_osf.c -641299faf17e92f2f30e796e91bd77c8 linux-3.0/net/netfilter/xt_multiport.c -bc71ba6c8f557fcde88bc99cb729d175 linux-3.0/net/netfilter/xt_mark.c -1997f08210f3ffbfec763c86d7f555c1 linux-3.0/net/netfilter/xt_mac.c -c1083b7e8b67334de0a0d981de02a268 linux-3.0/net/netfilter/xt_limit.c -7fa3ac5558b2c6d4c92db5bfa710a659 linux-3.0/net/netfilter/xt_length.c -e38c27cb6218ff6d1e019330098a4245 linux-3.0/net/netfilter/xt_ipvs.c -9225061118902440e76b53f3bff18f3c linux-3.0/net/netfilter/xt_iprange.c -cc8afb204041ddae4689212f198ff5a0 linux-3.0/net/netfilter/xt_hl.c -cf14eab58dd61c86176427d3a16b8910 linux-3.0/net/netfilter/xt_helper.c -f506b71184b0287213ca9bf1f352e682 linux-3.0/net/netfilter/xt_hashlimit.c -1c13ed6f2c1eefb9df45575a39948c4c linux-3.0/net/netfilter/xt_esp.c -ef002096ff9f4e9c634be3090d0e3b70 linux-3.0/net/netfilter/xt_dscp.c -989e71ba0c32ef55e22a148db3663463 linux-3.0/net/netfilter/xt_devgroup.c -efa4eb2cd2054ae390c4be9bfc5654ff linux-3.0/net/netfilter/xt_dccp.c -dc13d245906747d2710ea82ab19608cd linux-3.0/net/netfilter/xt_cpu.c -ef841cf5fb319ae3ccd1ac2f14bb26c5 linux-3.0/net/netfilter/xt_conntrack.c -02009ecc856775bbde50d4cc09a84ea6 linux-3.0/net/netfilter/xt_connmark.c -aaf40a9d1866afd6639794fb957d6e8a linux-3.0/net/netfilter/xt_connlimit.c -901cb151dbf831834a025f027e67388a linux-3.0/net/netfilter/xt_connbytes.c -529111d5b8725f6784105dcfb0c33479 linux-3.0/net/netfilter/xt_comment.c -1fbf9f987c69a07b91b46f06816dc441 linux-3.0/net/netfilter/xt_cluster.c -49614c4aa6b13c32f23b747dc828afed linux-3.0/net/netfilter/xt_addrtype.c -8c520786e86991dfe685aba1a8a49fd6 linux-3.0/net/netfilter/xt_TRACE.c -c963711990fa0ff71c08b9935e263f9f linux-3.0/net/netfilter/xt_TPROXY.c -f18febe8091bc82497c7624d193de627 linux-3.0/net/netfilter/xt_TEE.c -7d4b5b97beb66c8c346b41ae6d81bee3 linux-3.0/net/netfilter/xt_TCPOPTSTRIP.c -092efc795677c181f045b2df71c72ede linux-3.0/net/netfilter/xt_TCPMSS.c -3f8c261ffdc9cd3f923ebfc0b21f654b linux-3.0/net/netfilter/xt_SECMARK.c -0d409f30c2ae9b947793d8bf30046bf1 linux-3.0/net/netfilter/xt_RATEEST.c -0c445ba79deb18d2a19646d205e5d32c linux-3.0/net/netfilter/xt_NOTRACK.c -f80974f64949991612ccafb6bac55a97 linux-3.0/net/netfilter/xt_NFQUEUE.c -d1bf3e693500ffb0f454cef249671e8b linux-3.0/net/netfilter/xt_NFLOG.c -b43e76dd050671af31327c2b46bd4d33 linux-3.0/net/netfilter/xt_LED.c -cf054278521c497b573dc77b84682558 linux-3.0/net/netfilter/xt_IDLETIMER.c -c298f93bbfaf90995fc435239026c172 linux-3.0/net/netfilter/xt_HL.c -87b10a3adbb0b30506acef768c4281aa linux-3.0/net/netfilter/xt_DSCP.c -54f96a623d69613328f0b13039f68730 linux-3.0/net/netfilter/xt_CT.c -c4f4e2cb47f0b8f75f2bab2a523d354e linux-3.0/net/netfilter/xt_CONNSECMARK.c -4804b7cc2f7ca7d3c66070a29cb2dd8f linux-3.0/net/netfilter/xt_CLASSIFY.c -f34aea4f5c29fa727687b6702be51ead linux-3.0/net/netfilter/xt_CHECKSUM.c -3717e22f29a9c8a23fe6a147f3b0a380 linux-3.0/net/netfilter/xt_AUDIT.c -ea19a63aefbce62ff8860f37901686e2 linux-3.0/net/netfilter/x_tables.c -0e45f126d476ab51d7bcc12c8dda0fee linux-3.0/net/netfilter/nfnetlink_queue.c -5089903604616c53a3be6ef000a56ca1 linux-3.0/net/netfilter/nfnetlink_log.c -160b37bd627f7c5c1d407c70fee3050a linux-3.0/net/netfilter/nfnetlink.c -449942a552f2a961fdf83294de9a16e7 linux-3.0/net/netfilter/nf_tproxy_core.c -518629e8837afb3242758db385c2da2d linux-3.0/net/netfilter/nf_sockopt.c -44e0ea96f2108b24b3e3ec148a29a1c4 linux-3.0/net/netfilter/nf_queue.c -52e8ea7a947fbe734270eb57d092fff3 linux-3.0/net/netfilter/nf_log.c -02ee8dd2d260c7c0415a4ba8d989db14 linux-3.0/net/netfilter/nf_internals.h -a9f673081fcacfe07f1d21b4af33a163 linux-3.0/net/netfilter/nf_conntrack_timestamp.c -e2fa1d62a53aff89000550df138f5263 linux-3.0/net/netfilter/nf_conntrack_tftp.c -c10d689e5687113f0c8f5e59e843b8a0 linux-3.0/net/netfilter/nf_conntrack_standalone.c -d20fc0e0d34bdf57303a26f6a35509aa linux-3.0/net/netfilter/nf_conntrack_snmp.c -ecf113c4470751da2e6d6c043c762f62 linux-3.0/net/netfilter/nf_conntrack_sip.c -9af1c31252db6bb6decee84ea368f0c3 linux-3.0/net/netfilter/nf_conntrack_sane.c -853c683f290add645b870faa4d32c4ed linux-3.0/net/netfilter/nf_conntrack_proto_udplite.c -ad3c67597d57ce2907454bde4f74a007 linux-3.0/net/netfilter/nf_conntrack_proto_udp.c -d4b36aa2ecdec760806387dfe087a961 linux-3.0/net/netfilter/nf_conntrack_proto_tcp.c -76b0ee8eaae527400512582bf3bb21f2 linux-3.0/net/netfilter/nf_conntrack_proto_sctp.c -50fd28652c22f43c3fdfe36affba283f linux-3.0/net/netfilter/nf_conntrack_proto_gre.c -efaced0a0b2303cd9ce98b4530799ee8 linux-3.0/net/netfilter/nf_conntrack_proto_generic.c -a284411efdd1e1c5b48b8a2d002bdf4d linux-3.0/net/netfilter/nf_conntrack_proto_dccp.c -4cab6623f6fe378dc4b57faa2a58a3c3 linux-3.0/net/netfilter/nf_conntrack_proto.c -59af2c36b3ee93d4c5ff9dc713c16931 linux-3.0/net/netfilter/nf_conntrack_pptp.c -3814dd50012b84a5410b7e4307830bee linux-3.0/net/netfilter/nf_conntrack_netlink.c -26035e877b4dc4b4898296e648e32271 linux-3.0/net/netfilter/nf_conntrack_netbios_ns.c -56d8c2b32e0e0a09847bd59f63055ff8 linux-3.0/net/netfilter/nf_conntrack_l3proto_generic.c -b6620ba82a3a59ecec3bbcf5cd33d825 linux-3.0/net/netfilter/nf_conntrack_irc.c -e50cba1b52ee166a05b4c5f0ef87e27b linux-3.0/net/netfilter/nf_conntrack_helper.c -0fb971065a3dfc9e128d3032bb7e2645 linux-3.0/net/netfilter/nf_conntrack_h323_types.c -651dcbcd488f9dff8b1b4881a81a3491 linux-3.0/net/netfilter/nf_conntrack_h323_main.c -74b2070e7caa687cb62e0c6c1f2625f1 linux-3.0/net/netfilter/nf_conntrack_h323_asn1.c -c08a44ae9a5a266432d008992be089b1 linux-3.0/net/netfilter/nf_conntrack_ftp.c -6bddd63125153e766aad0ed9684db620 linux-3.0/net/netfilter/nf_conntrack_extend.c -f067b9787dc74bae17e9f8e4540d6e39 linux-3.0/net/netfilter/nf_conntrack_expect.c -07ad7bb68b4e31b7176f1ffe54385129 linux-3.0/net/netfilter/nf_conntrack_ecache.c -6a470cd4ced86db6b090fc4b8693acdc linux-3.0/net/netfilter/nf_conntrack_core.c -ab496094ba78e2166cac060c85f7118c linux-3.0/net/netfilter/nf_conntrack_broadcast.c -523fe7fbbf8f46aca7c32ec7ee3a7e89 linux-3.0/net/netfilter/nf_conntrack_amanda.c -4d797760df8ee1cfc8c7bb41a67886a4 linux-3.0/net/netfilter/nf_conntrack_acct.c -6c1bcc58967137ae0a9553a9effd0b77 linux-3.0/net/netfilter/ipvs/ip_vs_xmit.c -7df2bb81051364c9103726da5d3150f8 linux-3.0/net/netfilter/ipvs/ip_vs_wrr.c -2933646601b6413d687a1f1157041c30 linux-3.0/net/netfilter/ipvs/ip_vs_wlc.c -6f8e1850f4340cb543a72c06498293ad linux-3.0/net/netfilter/ipvs/ip_vs_sync.c -dac2c13c025de69ae7d5389e31c00522 linux-3.0/net/netfilter/ipvs/ip_vs_sh.c -48bb4b92708f1be673412a14f742e6bc linux-3.0/net/netfilter/ipvs/ip_vs_sed.c -683da67e203db542532ba5628df16021 linux-3.0/net/netfilter/ipvs/ip_vs_sched.c -341fb5dbea43a050c23f8ce2dc9d354f linux-3.0/net/netfilter/ipvs/ip_vs_rr.c -824ad4b653ed8967188e73d5afdd0397 linux-3.0/net/netfilter/ipvs/ip_vs_proto_udp.c -117d03ef821f95fd799d89aa7e4a6f07 linux-3.0/net/netfilter/ipvs/ip_vs_proto_tcp.c -ea4996ec160cd88cd414d023579ac7c1 linux-3.0/net/netfilter/ipvs/ip_vs_proto_sctp.c -03a31e21ffa49fa1f16be0b557e930af linux-3.0/net/netfilter/ipvs/ip_vs_proto_ah_esp.c -fa3bd95706c28a1b612e363dbc62b8dd linux-3.0/net/netfilter/ipvs/ip_vs_proto.c -f0aecdce6bf5ff5104222e057b36346b linux-3.0/net/netfilter/ipvs/ip_vs_pe_sip.c -f110eab491f70138a8abc20e2719b31e linux-3.0/net/netfilter/ipvs/ip_vs_pe.c -8f29182fc7c102f9505d1101caa4b5e1 linux-3.0/net/netfilter/ipvs/ip_vs_nq.c -7cc582ed489c6c39556517e84c983b75 linux-3.0/net/netfilter/ipvs/ip_vs_nfct.c -ccd76d646212f26aa2c2a44da0d1bf03 linux-3.0/net/netfilter/ipvs/ip_vs_lc.c -6fe5b7eff9dbfcdec5b958287e0079d4 linux-3.0/net/netfilter/ipvs/ip_vs_lblcr.c -4fbaad71317a45735a605ba205ed8c3a linux-3.0/net/netfilter/ipvs/ip_vs_lblc.c -2ce596b3e363224c83c35a1d10cc4e2b linux-3.0/net/netfilter/ipvs/ip_vs_ftp.c -e6478707189dd76b65f7ad6912876e80 linux-3.0/net/netfilter/ipvs/ip_vs_est.c -6e78a79fc199b1a60598b83c84044f9f linux-3.0/net/netfilter/ipvs/ip_vs_dh.c -4f9b7af975680008f2b3e8a871ef9988 linux-3.0/net/netfilter/ipvs/ip_vs_ctl.c -b7e65491819c4c405652d1e43526d3b8 linux-3.0/net/netfilter/ipvs/ip_vs_core.c -fd866c956ec09e68a833ba9f5e616ae7 linux-3.0/net/netfilter/ipvs/ip_vs_conn.c -bc6cfa961d4cae5edb80dc9b85a7cd5b linux-3.0/net/netfilter/ipvs/ip_vs_app.c -64e788c604504e92b93c9e97db6bf8ab linux-3.0/net/netfilter/ipvs/Makefile -90bfd79709f715de5cbd409ad899ff5d linux-3.0/net/netfilter/ipvs/Kconfig -9d2be7af60467d502f93dfe99b14ab65 linux-3.0/net/netfilter/ipset/pfxlen.c -0f0ed3a20d39879c5513e96c56c0a919 linux-3.0/net/netfilter/ipset/ip_set_list_set.c -bd58a4ad24ae7d496ff57d7377d7c215 linux-3.0/net/netfilter/ipset/ip_set_hash_netport.c -d5b2a9cfbaa5faa15a5870ee85080167 linux-3.0/net/netfilter/ipset/ip_set_hash_net.c -aa0febecd5ad81966173d516a4b42ba1 linux-3.0/net/netfilter/ipset/ip_set_hash_ipportnet.c -cbfa01a33f0ddab3f5497556dd8bc631 linux-3.0/net/netfilter/ipset/ip_set_hash_ipportip.c -aa0a664ff82456c68e6baa77cf1084cc linux-3.0/net/netfilter/ipset/ip_set_hash_ipport.c -d6bef97dd54e897d6ff27eb736db3609 linux-3.0/net/netfilter/ipset/ip_set_hash_ip.c -c96a4bbd9d5eae12591ccf7645c8620d linux-3.0/net/netfilter/ipset/ip_set_getport.c -6943989ed5c233b19192945f2810f4a7 linux-3.0/net/netfilter/ipset/ip_set_core.c -037fcf0325243f25afbe2d525019d99e linux-3.0/net/netfilter/ipset/ip_set_bitmap_port.c -cfa1405151944b3610973cd6c90bd7d8 linux-3.0/net/netfilter/ipset/ip_set_bitmap_ipmac.c -c38abd4828cec3aa4c562aa53b855793 linux-3.0/net/netfilter/ipset/ip_set_bitmap_ip.c -7842cda93bf219115b65ea3e448b62d6 linux-3.0/net/netfilter/ipset/Makefile -2007e070cd009feed223d1dccde19562 linux-3.0/net/netfilter/ipset/Kconfig -729987df7527dbf61735f3aa4f8b7169 linux-3.0/net/netfilter/core.c -b0ebed13c17379b59db513026b362afb linux-3.0/net/netfilter/Makefile -d02ad0ed29e4b412f2abca439a76d212 linux-3.0/net/netfilter/Kconfig -3219d2faafc5cfb958653751161034c3 linux-3.0/net/mac80211/wpa.h -28b2f6c1bc15b5c4b1806ba5ad866b2d linux-3.0/net/mac80211/wpa.c -3a9baf66a0c5249db74a8751b82ec044 linux-3.0/net/mac80211/work.c -8dfcfb6b297991f5c0f6907b8933f50a linux-3.0/net/mac80211/wme.h -fcc637169586800b7ac9df58754dc27f linux-3.0/net/mac80211/wme.c -441b022cdf08b9b3690823bc8276a891 linux-3.0/net/mac80211/wep.h -dbd38b8ceab383d89b453a03b26cff0e linux-3.0/net/mac80211/wep.c -8866f8c670594e39f3242ded89468230 linux-3.0/net/mac80211/util.c -241ffbb312271e62d7a3252add7e47c8 linux-3.0/net/mac80211/tx.c -d8bab56a8023a9d2c0f7d5e5ea50f634 linux-3.0/net/mac80211/tkip.h -9dac02ef7be0a110ce3881579ff7c14d linux-3.0/net/mac80211/tkip.c -8541c08298771b2d423db771ce4440c9 linux-3.0/net/mac80211/status.c -3a151836d39775bf478e974acfeb68b3 linux-3.0/net/mac80211/sta_info.h -21a5ab36b71a63a3a66404acf37e960d linux-3.0/net/mac80211/sta_info.c -73ff12028cd0c4b39ca1a8e448dc1ca7 linux-3.0/net/mac80211/spectmgmt.c -9755cdd34f705fadb2f00f6d4777d7cd linux-3.0/net/mac80211/scan.c -916f0953d8797bc7e170996c9cc2c71e linux-3.0/net/mac80211/rx.c -d1c67f7c26d39a6dda87ac2c6e1ecf11 linux-3.0/net/mac80211/rc80211_pid_debugfs.c -8c892262116e8c99340f75522a3baafe linux-3.0/net/mac80211/rc80211_pid_algo.c -13906bfe5691545fc8365c782f60ea70 linux-3.0/net/mac80211/rc80211_pid.h -db28aaef31d95bfe576db181903bdf8d linux-3.0/net/mac80211/rc80211_minstrel_ht_debugfs.c -6f347f6d5e74bc2c4880827741528fe9 linux-3.0/net/mac80211/rc80211_minstrel_ht.h -1493a938d513470c0e2cc23432a7587b linux-3.0/net/mac80211/rc80211_minstrel_ht.c -8740d17ba5d3dad768f0cc79a016d616 linux-3.0/net/mac80211/rc80211_minstrel_debugfs.c -eea60a1490f65896d91ba9225e869174 linux-3.0/net/mac80211/rc80211_minstrel.h -0625b27ae3bd1f208159050299262adc linux-3.0/net/mac80211/rc80211_minstrel.c -b304476b43c801363d9fbf039d40d387 linux-3.0/net/mac80211/rate.h -66434172da1f566f470e6de356664862 linux-3.0/net/mac80211/rate.c -cede325a973a300ef0b066faa8a6f080 linux-3.0/net/mac80211/pm.c -d03e886b14c0ae445b01a2fb0f76e897 linux-3.0/net/mac80211/offchannel.c -10d57e2ad42d11a96c9a15603a5c29e1 linux-3.0/net/mac80211/mlme.c -216d969f606701174c8a0dd58363e729 linux-3.0/net/mac80211/michael.h -d1834be366c72e14656a559a2541bf20 linux-3.0/net/mac80211/michael.c -70e10f23b364f68e6b8d3650797f2ebb linux-3.0/net/mac80211/mesh_plink.c -ce99acc02d239e6dde1833fa01821478 linux-3.0/net/mac80211/mesh_pathtbl.c -9230bd02e96666998bdadfcc23fb5a89 linux-3.0/net/mac80211/mesh_hwmp.c -9d80f563bf185089db2cd67fb9216732 linux-3.0/net/mac80211/mesh.h -dcc38a9a1e4d25ac08774db832d7eb25 linux-3.0/net/mac80211/mesh.c -d442f264e39f80e8318a651f071164e6 linux-3.0/net/mac80211/main.c -e437ad38b52e071a8ca6db1e1aecabb9 linux-3.0/net/mac80211/led.h -2f1e4850198bb3709c152c9465ca895a linux-3.0/net/mac80211/led.c -63b514d1cd720083f82456a4ab0359d1 linux-3.0/net/mac80211/key.h -b39cfdbd2fdc22175b01339a6464bc70 linux-3.0/net/mac80211/key.c -21063b1bcf3976d34770269f2989e70c linux-3.0/net/mac80211/iface.c -d638c4ea8254cd7649bd9ee0091c82ce linux-3.0/net/mac80211/ieee80211_i.h -5b60a921221d3ce1ab185785b939366d linux-3.0/net/mac80211/ibss.c -ec2ba564e0b5d0a01400919a79359868 linux-3.0/net/mac80211/ht.c -55a3ad455ea5c70803eea0cf70896450 linux-3.0/net/mac80211/event.c -cdf3ee26f5a3588c8ab4def859733599 linux-3.0/net/mac80211/driver-trace.h -872563b9db0317c7307fd010e9a220c3 linux-3.0/net/mac80211/driver-trace.c -ea1311cc77938ce56ae0dca8f3897e13 linux-3.0/net/mac80211/driver-ops.h -4ffda39dd0d8d19c111e078ff60cb926 linux-3.0/net/mac80211/debugfs_sta.h -de37df87d8b5fd10269797076b7a8724 linux-3.0/net/mac80211/debugfs_sta.c -1a4eef429a831789d797dc01cddbf760 linux-3.0/net/mac80211/debugfs_netdev.h -ad9dd938579a3d4fc75be1a5346f2f82 linux-3.0/net/mac80211/debugfs_netdev.c -cb87d205ee6ae21208fc5daed24b59b4 linux-3.0/net/mac80211/debugfs_key.h -15e5ccfc0cb697e89cfa27a7984957f3 linux-3.0/net/mac80211/debugfs_key.c -6666f5b0771be06d455134da769bc650 linux-3.0/net/mac80211/debugfs.h -c9e906fae51c05835994744ef914f50f linux-3.0/net/mac80211/debugfs.c -e9e6e36b4b35d1fdea804a703ad38f49 linux-3.0/net/mac80211/chan.c -c1f8d57334ed1fdf696b6b7f95a8b1ef linux-3.0/net/mac80211/cfg.h -ab1ad7c54c0cac634f151555acc5210b linux-3.0/net/mac80211/cfg.c -ae0ec9a9c1b660f08aecf954c5169fed linux-3.0/net/mac80211/agg-tx.c -307dc413c505b3383bdd2ed691aaa029 linux-3.0/net/mac80211/agg-rx.c -1025b017852b13ee5d9e73d3a79b07f3 linux-3.0/net/mac80211/aes_cmac.h -4b0ad6cadc10490a9d1a0fecf3b86f97 linux-3.0/net/mac80211/aes_cmac.c -8de8e54a3452ff1e38f092447401af81 linux-3.0/net/mac80211/aes_ccm.h -8133638f47dee91cc1a4d74952b7492e linux-3.0/net/mac80211/aes_ccm.c -ba9ff99d74b145e6dfde6159887878cc linux-3.0/net/mac80211/Makefile -2d06b4e8163e6e94883a3db5018c8164 linux-3.0/net/mac80211/Kconfig -322055a6edcbc9764d50a384c703007d linux-3.0/net/llc/sysctl_net_llc.c -85db14668dd3758f74eca0af864f4b67 linux-3.0/net/llc/llc_station.c -8e5b159115c99c057f659345c67c0b2e linux-3.0/net/llc/llc_sap.c -3dfec31df4644d096abcd84c395d9374 linux-3.0/net/llc/llc_s_st.c -0aa9e998e88806a0a8bdb20aa8d89bbf linux-3.0/net/llc/llc_s_ev.c -75c041bd9b77710234be57bca0113eee linux-3.0/net/llc/llc_s_ac.c -ad73db719c264151c714acbd6e3cb619 linux-3.0/net/llc/llc_proc.c -5dc91f4e95074392c37604ddc4d8fef0 linux-3.0/net/llc/llc_pdu.c -dbda8edbe89fe7254cff19ee07f98c0a linux-3.0/net/llc/llc_output.c -65dbefbe340b804467316f6245b9abd3 linux-3.0/net/llc/llc_input.c -0f6643f00da94654803564bb38ada268 linux-3.0/net/llc/llc_if.c -6533a27cdc55b440d1ecf120c692f9ab linux-3.0/net/llc/llc_core.c -6398717b5e1026486b1abad9a06b8866 linux-3.0/net/llc/llc_conn.c -460955f2990dbdb5dba266604359d84e linux-3.0/net/llc/llc_c_st.c -f8ab5d05238c9557fe98290a8a89010b linux-3.0/net/llc/llc_c_ev.c -32628482f986a2e13119ee1943ee9ee7 linux-3.0/net/llc/llc_c_ac.c -2c7b2cae4913825fc006bdfb28f70205 linux-3.0/net/llc/af_llc.c -d6ec8619f79e08483220eec6aa9739c0 linux-3.0/net/llc/Makefile -2cb16d7af6cb8541f7362c62149b5c24 linux-3.0/net/llc/Kconfig -642ffb2377fa85bcb270195d7888a54c linux-3.0/net/lapb/lapb_timer.c -5b18721a02095bc32fc6d1542a72aff7 linux-3.0/net/lapb/lapb_subr.c -f113315ff07dfee653b6ddc98ae08699 linux-3.0/net/lapb/lapb_out.c -d7d39fd7977a24f42329429240f043c1 linux-3.0/net/lapb/lapb_in.c -82d71114c089fd06420f8833765967c0 linux-3.0/net/lapb/lapb_iface.c -f63924d541cb63ce88988a5921666e0b linux-3.0/net/lapb/Makefile -743165b344711d81f6fe31249b03d009 linux-3.0/net/lapb/Kconfig -1f490fc62b9ba57e7ec289bf3f475a32 linux-3.0/net/l2tp/l2tp_ppp.c -365401d846ab25ed99603ed9eb86cc6e linux-3.0/net/l2tp/l2tp_netlink.c -275a2cb343871cd71b7cdb20a7985f5b linux-3.0/net/l2tp/l2tp_ip.c -add6150ef7f05b7353a563997c17a947 linux-3.0/net/l2tp/l2tp_eth.c -91216e3c1c69deebb2f9f44da306481f linux-3.0/net/l2tp/l2tp_debugfs.c -47130163db34e0b7abdc17503a33a541 linux-3.0/net/l2tp/l2tp_core.h -4fe647c5b670a25be127bd54b2769ad9 linux-3.0/net/l2tp/l2tp_core.c -9e397ebd9287e4d784a78843e7ee05bd linux-3.0/net/l2tp/Makefile -a7b49ecf7d5d3060753390aacdbc981d linux-3.0/net/l2tp/Kconfig -8affb7c40878e539e7677682bee7d1c7 linux-3.0/net/key/af_key.c -b882a0e9f6d37962dcf5a8093b50cd6c linux-3.0/net/key/Makefile -779ff61acbf418961db0e7b5136fa348 linux-3.0/net/iucv/iucv.c -bc0442a145e600545b284445f79ac657 linux-3.0/net/iucv/af_iucv.c -5f1e4bb1676d50f6b98c4a09cfdcd01d linux-3.0/net/iucv/Makefile -4ba1c2f115e41fdc907ef4a6b633c495 linux-3.0/net/iucv/Kconfig -3ee91673d31aa3023728cf429fc2f955 linux-3.0/net/irda/wrapper.c -99a4be9db4e69e1cb5f4ca3d652f7a0c linux-3.0/net/irda/timer.c -01bb965f31f5cd91854b90a1407d293e linux-3.0/net/irda/qos.c -e057784df94d9eaa5f26ef0d7bf60f9f linux-3.0/net/irda/parameters.c -05e528f5814e766dc5b6381576893855 linux-3.0/net/irda/irttp.c -8b6530f1cf40f35d6968fe3add722064 linux-3.0/net/irda/irsysctl.c -a44d8781792aebd637e9c9e55acf1bcf linux-3.0/net/irda/irqueue.c -98332f475c1caf6a4d101367bb90f369 linux-3.0/net/irda/irproc.c -34f99c102e337fc8784b2610406e33b9 linux-3.0/net/irda/irnetlink.c -c75302e899d8677547025c88576e4a10 linux-3.0/net/irda/irnet/irnet_ppp.h -5aa6309c14346028edfa8e4c7acddbbf linux-3.0/net/irda/irnet/irnet_ppp.c -3dd0b9434aac855dfc1596f60c24b74a linux-3.0/net/irda/irnet/irnet_irda.h -8902b2ffbf3d64715996c9e1a8432adb linux-3.0/net/irda/irnet/irnet_irda.c -fb74f239082c51c01a1a28abb9c08078 linux-3.0/net/irda/irnet/irnet.h -8f61c006fa4a0138a997819aef53c6f8 linux-3.0/net/irda/irnet/Makefile -f0744a09e98bf5b7c8bfa3e3539096d9 linux-3.0/net/irda/irnet/Kconfig -b68539d506e63a9afe38782a13f03243 linux-3.0/net/irda/irmod.c -abcd5fcdb97b3eb9f8f5462a225dc215 linux-3.0/net/irda/irlmp_frame.c -1674b1528dc5908332f24e64a6383ec1 linux-3.0/net/irda/irlmp_event.c -9fcbaa101c213042373afbb977144990 linux-3.0/net/irda/irlmp.c -04145c2124c141f75c4587ed5c72f8a7 linux-3.0/net/irda/irlap_frame.c -0d989cb541a927fefc8e7c8b31de124e linux-3.0/net/irda/irlap_event.c -8cc412f3f2846f63c5f79dac018979d8 linux-3.0/net/irda/irlap.c -e39a16263fb088bf938c7f78c330a1f5 linux-3.0/net/irda/irlan/irlan_provider_event.c -92d1e54b70b8fadee6e4d477554203ed linux-3.0/net/irda/irlan/irlan_provider.c -97f3e7b70970d7f944972b22ac878660 linux-3.0/net/irda/irlan/irlan_filter.c -858c404211bd782328c1c4efa06c4023 linux-3.0/net/irda/irlan/irlan_event.c -c1799a41d22ebd0cb288a5ace6d9460c linux-3.0/net/irda/irlan/irlan_eth.c -10c482f03a762ac353129ccd5a23ad0b linux-3.0/net/irda/irlan/irlan_common.c -dae99005c76b5b40624fcc30683046af linux-3.0/net/irda/irlan/irlan_client_event.c -7d46222ebde6ac4db18dbd0fdb01a2d2 linux-3.0/net/irda/irlan/irlan_client.c -1565ae77f7cd0a3f3289d4b360cf06a9 linux-3.0/net/irda/irlan/Makefile -54863023f80bf977a3c00fad53150f3a linux-3.0/net/irda/irlan/Kconfig -6dc87d3b9fd0eed0567be4277db390bc linux-3.0/net/irda/irias_object.c -effe5b483e520cfc7bce0e2380128a6a linux-3.0/net/irda/iriap_event.c -41fd454b692e8e2c9d40a6d3272c8959 linux-3.0/net/irda/iriap.c -9dba306f89a5779e96fd70f557576045 linux-3.0/net/irda/irda_device.c -1a5d46aa207af70e753399b5dd1e9cf2 linux-3.0/net/irda/ircomm/ircomm_tty_ioctl.c -01eb556706e8110cad2362654f0efa7b linux-3.0/net/irda/ircomm/ircomm_tty_attach.c -ad51c898274e2bb35778180604c92bf0 linux-3.0/net/irda/ircomm/ircomm_tty.c -ca5efdb010ef374760819e6c2e95fc4d linux-3.0/net/irda/ircomm/ircomm_ttp.c -71058833fa9f69063b89550f59175fd5 linux-3.0/net/irda/ircomm/ircomm_param.c -a4e9341b1d58a537b0a7259397814275 linux-3.0/net/irda/ircomm/ircomm_lmp.c -1cd78406d2adaf8fa159568e2bbdc77b linux-3.0/net/irda/ircomm/ircomm_event.c -8228c34d1bf1f9a71c50e2aaf56e61f6 linux-3.0/net/irda/ircomm/ircomm_core.c -3413ca05a5f7bfb5c69b8a52d7068f05 linux-3.0/net/irda/ircomm/Makefile -5991befcbd98679120f87d7701a86d42 linux-3.0/net/irda/ircomm/Kconfig -ca546288963590c382ec62f25e21fed9 linux-3.0/net/irda/discovery.c -06b55a82f758399eb22fd230e519bbfd linux-3.0/net/irda/af_irda.c -3e7a25527a03725d84367b38715a8f84 linux-3.0/net/irda/Makefile -4ea5adbe31349a0ae90d53fbbe73fe0a linux-3.0/net/irda/Kconfig -4585f9feaa0baa9225ad5a32c83f4168 linux-3.0/net/ipx/sysctl_net_ipx.c -e5d6a13ca1160aab34328892ede59cc6 linux-3.0/net/ipx/ipx_route.c -20266081c10ea28692cd34f56fbffae2 linux-3.0/net/ipx/ipx_proc.c -3cae992b374f81de9388b98a7aa45ca8 linux-3.0/net/ipx/af_ipx.c -e65aac1e1142de6da6196cb693526fdd linux-3.0/net/ipx/Makefile -3c1d617f3637106a20ed86fda90ee603 linux-3.0/net/ipx/Kconfig -c9c29f89df52a7d49c4d186a1462d448 linux-3.0/net/ipv6/xfrm6_tunnel.c -91fc0be28e08b8d763048d82821ffddc linux-3.0/net/ipv6/xfrm6_state.c -fd5e2d43f9c1e07d4ca38f3d3ed15b86 linux-3.0/net/ipv6/xfrm6_policy.c -0c2722d4c5534651b829af03345ca79e linux-3.0/net/ipv6/xfrm6_output.c -c142b97ab351be906832c1abb0ab5883 linux-3.0/net/ipv6/xfrm6_mode_tunnel.c -7d2e4378bfff596249aab7f367e599c7 linux-3.0/net/ipv6/xfrm6_mode_transport.c -2e0d7dfedd88a56eee4a6bd3954ae04e linux-3.0/net/ipv6/xfrm6_mode_ro.c -d8dc224c62603c9f14028c50aaf37f47 linux-3.0/net/ipv6/xfrm6_mode_beet.c -d71b83f8472a554527b390bb73997514 linux-3.0/net/ipv6/xfrm6_input.c -4c056f22ee7510d4b7f24d814756df34 linux-3.0/net/ipv6/udplite.c -f255a94544e1e824c703ed91c3295294 linux-3.0/net/ipv6/udp_impl.h -d34064dd53b7669cde83a7991fbe31ca linux-3.0/net/ipv6/udp.c -60d887e24a57a8af45d7fd8113b7885b linux-3.0/net/ipv6/tunnel6.c -8adbcb100d37891de73f5ed5a100942f linux-3.0/net/ipv6/tcp_ipv6.c -e713f47520c5cb0348871ed20b8e895b linux-3.0/net/ipv6/sysctl_net_ipv6.c -96f0fee2344e46db7a9a64ba4e5142c5 linux-3.0/net/ipv6/syncookies.c -8b4afae4bcf616bf0a54516472182aab linux-3.0/net/ipv6/sit.c -41fdf42287cb9cace510ccbdfd94344d linux-3.0/net/ipv6/route.c -13cd7134b29a48f513ae32226222cb8f linux-3.0/net/ipv6/reassembly.c -2ce5427bb773c961e784ff1dbb511cf9 linux-3.0/net/ipv6/raw.c -466ab555d5b03d06a4e9beaed2fe4b3c linux-3.0/net/ipv6/protocol.c -f04f4d7291fcad33d9e39a03651a54fd linux-3.0/net/ipv6/proc.c -4c4404d37ec5038c552fc81d9c8631a4 linux-3.0/net/ipv6/netfilter/nf_defrag_ipv6_hooks.c -16da28704b9af57e4c59ab3d4da3808c linux-3.0/net/ipv6/netfilter/nf_conntrack_reasm.c -5a9cbbcc276113ee1ccd4e4fb9661fec linux-3.0/net/ipv6/netfilter/nf_conntrack_proto_icmpv6.c -5fea7b1496d9f7e891736d4d747551a5 linux-3.0/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c -dfdfe10cbaa846ef62a5f05d9f74e2b7 linux-3.0/net/ipv6/netfilter/ip6table_security.c -abd423bbd08a6339e626116f68ab6395 linux-3.0/net/ipv6/netfilter/ip6table_raw.c -4cc060cc5574f437d2d31ed2d99f53e2 linux-3.0/net/ipv6/netfilter/ip6table_mangle.c -7d1ba857112e1c77a9e4e07e00acc54d linux-3.0/net/ipv6/netfilter/ip6table_filter.c -bb03c89008f24e1e20882af40220f59e linux-3.0/net/ipv6/netfilter/ip6t_rt.c -bc3cf3ad051f2034ef7cec36f770388b linux-3.0/net/ipv6/netfilter/ip6t_mh.c -714630c5a90c6da52d85f8c0bdad1df3 linux-3.0/net/ipv6/netfilter/ip6t_ipv6header.c -6ebcc812c6ea9022d8842f1ced17b8ec linux-3.0/net/ipv6/netfilter/ip6t_hbh.c -6b02b8d2591901c49f7e173a2ac757e3 linux-3.0/net/ipv6/netfilter/ip6t_frag.c -2684725bcd069a9963be92ed47e262f0 linux-3.0/net/ipv6/netfilter/ip6t_eui64.c -254288d0137b8125c4b56fb69163f8e9 linux-3.0/net/ipv6/netfilter/ip6t_ah.c -06cd531668b7238eded691358f832dc1 linux-3.0/net/ipv6/netfilter/ip6t_REJECT.c -1e51d00ef180b1392aa3407c1a2e716f linux-3.0/net/ipv6/netfilter/ip6t_LOG.c -63f5225844b8fad29c5cc2a3d65b69b7 linux-3.0/net/ipv6/netfilter/ip6_tables.c -13651988f604c97e5d4adda44d24934b linux-3.0/net/ipv6/netfilter/ip6_queue.c -431665140f08c2a642918403aa47ae0f linux-3.0/net/ipv6/netfilter/Makefile -4568dd300b104b3131b8a2bbc5859294 linux-3.0/net/ipv6/netfilter/Kconfig -454e405f615dd8c966a902801374eca7 linux-3.0/net/ipv6/netfilter.c -5d011af1182b2bbd666cf2fa3de39dd2 linux-3.0/net/ipv6/ndisc.c -93cf656eff2a78440ae1c120fe4c8fe5 linux-3.0/net/ipv6/mip6.c -60b5853f4e605fc8fdb6e744cf433493 linux-3.0/net/ipv6/mcast.c -791fcf563d3f62264ac7f7e6d35ecc96 linux-3.0/net/ipv6/ipv6_sockglue.c -b985b757d4e45f81671a7410c5a677e2 linux-3.0/net/ipv6/ipcomp6.c -d111aaef57a1961ebae95e943a966986 linux-3.0/net/ipv6/ip6mr.c -b64f396c03c5b07315fc8a7c396a9709 linux-3.0/net/ipv6/ip6_tunnel.c -3d52019c74e5a16f3a9cf53748fa1c61 linux-3.0/net/ipv6/ip6_output.c -be99839038d81fb075118e8075e3ac93 linux-3.0/net/ipv6/ip6_input.c -8fe42433c1a534f40355affa7ed398d3 linux-3.0/net/ipv6/ip6_flowlabel.c -81c8b33a40d4596f0a92e5b07100e2ea linux-3.0/net/ipv6/ip6_fib.c -be1688b4f018384c2a40f1d3998b81d3 linux-3.0/net/ipv6/inet6_hashtables.c -f32f953daf97cf2e8cba868316d4e21d linux-3.0/net/ipv6/inet6_connection_sock.c -05afae57497c2641dc0174eb0d9b44ba linux-3.0/net/ipv6/icmp.c -93415496d6bb0993f33540ce2c035080 linux-3.0/net/ipv6/fib6_rules.c -e20ee187a0a3dc5e50147e08f94204d4 linux-3.0/net/ipv6/exthdrs_core.c -734637253c0630105cde651ef7c1eaa8 linux-3.0/net/ipv6/exthdrs.c -19d79bd41edcebfd24f8a23869d97620 linux-3.0/net/ipv6/esp6.c -e2e8153dab61573d340484091df9a57c linux-3.0/net/ipv6/datagram.c -ffff2e7c8c37d5638abb899159c1e29a linux-3.0/net/ipv6/anycast.c -9e3974397e025f8bd1afe4115eca8821 linux-3.0/net/ipv6/ah6.c -24b69e80a382fdb2587bc38f254e7671 linux-3.0/net/ipv6/af_inet6.c -a97fd05df55966b57500e0025df72e62 linux-3.0/net/ipv6/addrlabel.c -3f2b7922dcd0b0ce313dff9e2aee798f linux-3.0/net/ipv6/addrconf_core.c -36f5d5be4ee5cec817c2ef695b2e84e9 linux-3.0/net/ipv6/addrconf.c -110164cb6564846718c6edbd1d01c5d8 linux-3.0/net/ipv6/Makefile -00675a0b5b597b956eda1dc5667890ba linux-3.0/net/ipv6/Kconfig -021dfff5a3c6d4d0ff5fa44f36508410 linux-3.0/net/ipv4/xfrm4_tunnel.c -3ce8bc80e42fb1d355ad1588473120a1 linux-3.0/net/ipv4/xfrm4_state.c -a6fe1c88796778ae90e0edf1eaf4136b linux-3.0/net/ipv4/xfrm4_policy.c -30287cd93e593275a2d926411fb8091a linux-3.0/net/ipv4/xfrm4_output.c -92d131bd477e95f66bfbe5380af69c4e linux-3.0/net/ipv4/xfrm4_mode_tunnel.c -da1c024ff03b0b9dcaaa28d4c83f400b linux-3.0/net/ipv4/xfrm4_mode_transport.c -469e3ba189182c79ed7fbbfe72761736 linux-3.0/net/ipv4/xfrm4_mode_beet.c -70090e0711a53edd9c15bd90d365f0ba linux-3.0/net/ipv4/xfrm4_input.c -91d9024bd6d6a90fc9bd46fe0d3b7c7a linux-3.0/net/ipv4/udplite.c -3495c6c8f58ec678bdb996330d011f3f linux-3.0/net/ipv4/udp_impl.h -d0fd8e30963af0f3a1eeb0c21c899266 linux-3.0/net/ipv4/udp.c -92c8954e0b9354d60af896f5b5fee10f linux-3.0/net/ipv4/tunnel4.c -c8478243f20691a253a63b5633dbf6ce linux-3.0/net/ipv4/tcp_yeah.c -e6be8016cb40a5bfe23882d862ad1697 linux-3.0/net/ipv4/tcp_westwood.c -b7e53cb262157c557478b904adb12dd6 linux-3.0/net/ipv4/tcp_veno.c -b43e465bbf4703fde11f8ea9479b7456 linux-3.0/net/ipv4/tcp_vegas.h -f8d9be4f7a8c5669ba86f782ef6beac1 linux-3.0/net/ipv4/tcp_vegas.c -0f8012b80c9f0022a277f618d5d97215 linux-3.0/net/ipv4/tcp_timer.c -45ab3eb007477f1f0524152f92be64ec linux-3.0/net/ipv4/tcp_scalable.c -56ddd544efe22dc37fc4056cdb1ab36a linux-3.0/net/ipv4/tcp_probe.c -432d8abcc7be0a7a7dd75a83c485b680 linux-3.0/net/ipv4/tcp_output.c -75b906b62b423b4c6d1567d87a29b980 linux-3.0/net/ipv4/tcp_minisocks.c -070d017499fa4f2eda694e9ce04428de linux-3.0/net/ipv4/tcp_lp.c -43e5bc3f92aa9a65d4a227aa5b0594cb linux-3.0/net/ipv4/tcp_ipv4.c -d5b683a3a7f52af9f71c25fce497ad69 linux-3.0/net/ipv4/tcp_input.c -87310fbc10aef42df3e81f67e8cddfeb linux-3.0/net/ipv4/tcp_illinois.c -43bae4e6420fb3b3624dad44a45b6cbc linux-3.0/net/ipv4/tcp_hybla.c -85b07440600a5c83dc537d26e85aaf9a linux-3.0/net/ipv4/tcp_htcp.c -0d0f13e32dc67a983df59424b6c9011f linux-3.0/net/ipv4/tcp_highspeed.c -c0a7351377b39a8b3380ba8135272147 linux-3.0/net/ipv4/tcp_diag.c -14b3b8a3c9c38cce19f9c7968591d211 linux-3.0/net/ipv4/tcp_cubic.c -631848e7a1401a2af7c163902d2fb923 linux-3.0/net/ipv4/tcp_cong.c -876d13e27f5930341a2a653a1e0f994b linux-3.0/net/ipv4/tcp_bic.c -4216c0cc5a6c4863996f8c31268ae17a linux-3.0/net/ipv4/tcp.c -1c1fa404d5e166b1f04d901a59df591f linux-3.0/net/ipv4/sysctl_net_ipv4.c -da79961120c58723708468eb014d2ec5 linux-3.0/net/ipv4/syncookies.c -bb9679ebc7efcaaf24a924ae84709009 linux-3.0/net/ipv4/route.c -f68aa64877655e6384f3730d3eccc175 linux-3.0/net/ipv4/raw.c -771c21201d8018b6e96e287323bed35b linux-3.0/net/ipv4/protocol.c -5e7368ce7016a61c57c3c5a556486843 linux-3.0/net/ipv4/proc.c -b9f16332819b3eb2523b290c2751cf38 linux-3.0/net/ipv4/ping.c -59af91e5d1695d8a366f4d40c299eac0 linux-3.0/net/ipv4/netfilter/nf_nat_tftp.c -fda126238be0cb015475a04a702739aa linux-3.0/net/ipv4/netfilter/nf_nat_standalone.c -abeb0fd6640a24d0a7976338a6aa1362 linux-3.0/net/ipv4/netfilter/nf_nat_snmp_basic.c -eeb70e46930de58f99efe6f7bede4653 linux-3.0/net/ipv4/netfilter/nf_nat_sip.c -45857f200279debb8acb5655b1a75dd6 linux-3.0/net/ipv4/netfilter/nf_nat_rule.c -c28a2bb9af2a6c14b0f6a284bae23bdc linux-3.0/net/ipv4/netfilter/nf_nat_proto_unknown.c -08835dfb6671709b9640336fa49192ca linux-3.0/net/ipv4/netfilter/nf_nat_proto_udplite.c -beb75faad91d9bba9d414d82ce3d7900 linux-3.0/net/ipv4/netfilter/nf_nat_proto_udp.c -563c28f2299d836445f271b7ad15a353 linux-3.0/net/ipv4/netfilter/nf_nat_proto_tcp.c -afbf3aae054a039bbae2669ce20fd1be linux-3.0/net/ipv4/netfilter/nf_nat_proto_sctp.c -8dc04ffd7ca59e0f8687974471fa627e linux-3.0/net/ipv4/netfilter/nf_nat_proto_icmp.c -f45a3f00d5783cf74cf72320078c5ab9 linux-3.0/net/ipv4/netfilter/nf_nat_proto_gre.c -bceef2018558af5eece0cbc2b436c326 linux-3.0/net/ipv4/netfilter/nf_nat_proto_dccp.c -fc1dcba7318110367ae5d49b760a3332 linux-3.0/net/ipv4/netfilter/nf_nat_proto_common.c -14fdeb525930f7d25d84ae707b7db0e7 linux-3.0/net/ipv4/netfilter/nf_nat_pptp.c -fe62211778c185e138a2b13bdde460cc linux-3.0/net/ipv4/netfilter/nf_nat_irc.c -79eadf0c41ca696157bfeb3e3759eb7b linux-3.0/net/ipv4/netfilter/nf_nat_helper.c -57d6ea37c00a7770a2521996af19d7b0 linux-3.0/net/ipv4/netfilter/nf_nat_h323.c -563ac5aee2abbdae4eec00a970bf0f08 linux-3.0/net/ipv4/netfilter/nf_nat_ftp.c -613b744fecb2da9428eb2620eb5f1678 linux-3.0/net/ipv4/netfilter/nf_nat_core.c -b5b179d5ca264d680a2e084a8ae906dc linux-3.0/net/ipv4/netfilter/nf_nat_amanda.c -15015bc0e24d49e5023c04fb66fcd51f linux-3.0/net/ipv4/netfilter/nf_defrag_ipv4.c -0fd0d394899b35339818abbba3350b80 linux-3.0/net/ipv4/netfilter/nf_conntrack_proto_icmp.c -830241c932b85d1bf22441bed7211c4b linux-3.0/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c -2f2706d9b921f40f217d3d9e2eee3a5f linux-3.0/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c -26cdd708cfb5aa0777afa67797a0f3f7 linux-3.0/net/ipv4/netfilter/iptable_security.c -c52e54ce3a6964017c489f8e2dcda89e linux-3.0/net/ipv4/netfilter/iptable_raw.c -5118f55c3286a50fbcb89fd63b891e04 linux-3.0/net/ipv4/netfilter/iptable_mangle.c -b25929550e65694b3699b5d1faf2fa71 linux-3.0/net/ipv4/netfilter/iptable_filter.c -e4bda7ac957f6fd276477b588e631ef3 linux-3.0/net/ipv4/netfilter/ipt_ecn.c -60ebe21522875ee5cc71c2781a14f570 linux-3.0/net/ipv4/netfilter/ipt_ah.c -b977287eff3ce7c207f8d37098633bfc linux-3.0/net/ipv4/netfilter/ipt_ULOG.c -f475ed47f93d8aeb6347ea5734b2fa27 linux-3.0/net/ipv4/netfilter/ipt_REJECT.c -54fac2fed7b8335835a146bfb7d73a36 linux-3.0/net/ipv4/netfilter/ipt_REDIRECT.c -e47cd111391aee1e232b27424cb99d3b linux-3.0/net/ipv4/netfilter/ipt_NETMAP.c -e5c2819beb938744a70fc925d2a5bc0b linux-3.0/net/ipv4/netfilter/ipt_MASQUERADE.c -0705e3728a82eedaf343d834374e28cc linux-3.0/net/ipv4/netfilter/ipt_LOG.c -a6b7a06ddba351635c0f6ce77ef587a1 linux-3.0/net/ipv4/netfilter/ipt_ECN.c -ee1e5816bfc620a2c4a7ad37c8bd3b02 linux-3.0/net/ipv4/netfilter/ipt_CLUSTERIP.c -77feb9c99c5fd5e6632b88f8e3b94bb7 linux-3.0/net/ipv4/netfilter/ip_tables.c -dc67e82a653d61eb34c66b899622d575 linux-3.0/net/ipv4/netfilter/ip_queue.c -f3cd9425bf64beb5ec8e68e81a2540ae linux-3.0/net/ipv4/netfilter/arptable_filter.c -2453af2b89ebe3e7e952bbd525882651 linux-3.0/net/ipv4/netfilter/arpt_mangle.c -0df08929947f655fe90488041cbcd174 linux-3.0/net/ipv4/netfilter/arp_tables.c -2a901a41b6f38e5f726b1a7cc759f026 linux-3.0/net/ipv4/netfilter/Makefile -f6b0957d3000eb4e420a69e46b2bb484 linux-3.0/net/ipv4/netfilter/Kconfig -25eda752d3b79f42e299702cb97db183 linux-3.0/net/ipv4/netfilter.c -707443f02c795264420372beb62f885f linux-3.0/net/ipv4/ipmr.c -9ddbe8d105a7ed4bc7f573b7eef721a9 linux-3.0/net/ipv4/ipip.c -8d021a1fd0538fd500f45454ef87409e linux-3.0/net/ipv4/ipconfig.c -ac1426073542445b83631717d67f9019 linux-3.0/net/ipv4/ipcomp.c -efa6b9bbbe100031a7d6ed02283a9d59 linux-3.0/net/ipv4/ip_sockglue.c -de861a24c8da8be2a243cb9e80984068 linux-3.0/net/ipv4/ip_output.c -2c3ea1f6c03f1a64b86f458d35843c6c linux-3.0/net/ipv4/ip_options.c -701be438d369e8cad3ead9015fa70f20 linux-3.0/net/ipv4/ip_input.c -e92bbc9f5929fe9d4046ff638b1f0c7a linux-3.0/net/ipv4/ip_gre.c -ce14c854a36d136332ce37dbfd52f3ba linux-3.0/net/ipv4/ip_fragment.c -bd636622bd8c45dd3ea6926f442ce2b3 linux-3.0/net/ipv4/ip_forward.c -63def26907dceeeeeb9c16be34b86a61 linux-3.0/net/ipv4/inetpeer.c -c73ad2dc4b4ac7b7ce3fdf8b65f83046 linux-3.0/net/ipv4/inet_timewait_sock.c -5eb60ff0e18d2560ea5dbad89eb3119a linux-3.0/net/ipv4/inet_lro.c -f6b7a0677af81449d304005d3ca1d134 linux-3.0/net/ipv4/inet_hashtables.c -4020ce52f127c8912f01f25b270cb3ef linux-3.0/net/ipv4/inet_fragment.c -526fa8a744209c9cb3e6286bc8df2b66 linux-3.0/net/ipv4/inet_diag.c -cf7a636df0b48d7634db07d53cd20cf5 linux-3.0/net/ipv4/inet_connection_sock.c -eca46dde39090b39e270235cbfc4177c linux-3.0/net/ipv4/igmp.c -84d07998211e24b90e7bb6368d0ae6c9 linux-3.0/net/ipv4/icmp.c -313d0d88cd94febf79ba0b62f249a1bc linux-3.0/net/ipv4/gre.c -c0e6d97b886f71512221f0ff6555c160 linux-3.0/net/ipv4/fib_trie.c -b814d73cd427f7aeecdc0d5ecc98b43b linux-3.0/net/ipv4/fib_semantics.c -850af1ca7baa4c45b9ad8cbf0106fd9c linux-3.0/net/ipv4/fib_rules.c -9285680ef9fa079be8f75a6e052d8037 linux-3.0/net/ipv4/fib_lookup.h -3d145df42e6667e4ac40dbec195ebcb5 linux-3.0/net/ipv4/fib_frontend.c -29f565b46258c44cc9867c4e96ea800a linux-3.0/net/ipv4/esp4.c -94cfc3124534b2562a6b12ed19a09b91 linux-3.0/net/ipv4/devinet.c -93d00b49ca33e4ef678b07ad660e8a44 linux-3.0/net/ipv4/datagram.c -18f6ceaffc6271ea47adcc04800ada6e linux-3.0/net/ipv4/cipso_ipv4.c -83d11ced66b1ddcd47564beed6d307db linux-3.0/net/ipv4/arp.c -61f663ec1012f98e1de4d9e9503fe8bc linux-3.0/net/ipv4/ah4.c -e19a50c2e913630b929c7b69752f69a8 linux-3.0/net/ipv4/af_inet.c -c5362e2699252676130c733d4aa45b36 linux-3.0/net/ipv4/Makefile -0f75ca4fed0dbb7043bc74a4b34959bf linux-3.0/net/ipv4/Kconfig -8cc471dd0a5153a39a5b24dcc34d22a6 linux-3.0/net/ieee802154/wpan-class.c -d25f13ad1d95da3c7c89c0f60e64757a linux-3.0/net/ieee802154/raw.c -f6ce6e76ae8cf8e56fb758a28b07bb6c linux-3.0/net/ieee802154/nl_policy.c -741f30c3679d65c9d642dffb79211408 linux-3.0/net/ieee802154/nl-phy.c -2b1a36e9015a3fb9e3681e05dbe68ec0 linux-3.0/net/ieee802154/nl-mac.c -a1e24e24de8ca5a8320682f259066f50 linux-3.0/net/ieee802154/netlink.c -43cc6a26c14fd62d4df0de81ed4bcd75 linux-3.0/net/ieee802154/ieee802154.h -9a9e3867b3706132745e476200529b8c linux-3.0/net/ieee802154/dgram.c -e3991d7406a341b9a7e05e9fcb05cbdc linux-3.0/net/ieee802154/af_ieee802154.c -a4daaae92491b75c99b9dad291d845f5 linux-3.0/net/ieee802154/af802154.h -65c8a50128876c2636ea773dc36eb177 linux-3.0/net/ieee802154/Makefile -9c192f108e7d91cc90e63ba8fa766708 linux-3.0/net/ieee802154/Kconfig -d80e0788d51bf321a8c92fa6e5e0c56e linux-3.0/net/ethernet/pe2.c -16c44f7b9b98c1026ef23ca33d646075 linux-3.0/net/ethernet/eth.c -a4afc87bfc40ba5e17e0e133f3160bb7 linux-3.0/net/ethernet/Makefile -f73400b3e22a81d4336eafe0ac912b3b linux-3.0/net/econet/af_econet.c -bc3db6f5544fa1c3b6792f88fb086cd4 linux-3.0/net/econet/Makefile -ce42d78a91994a40fb760e314592ce0d linux-3.0/net/econet/Kconfig -2949c8ebd92282722e73be4c3b2ff39e linux-3.0/net/dsa/tag_trailer.c -162305abc4880e1eb43663e9ff3ed6ae linux-3.0/net/dsa/tag_edsa.c -c5a7a353975a240ade1ef3f49a279f29 linux-3.0/net/dsa/tag_dsa.c -f84c08a59d09a735ec5192aa364b1a03 linux-3.0/net/dsa/slave.c -87a27c79bf11b0246f6bfbba34b038f7 linux-3.0/net/dsa/mv88e6xxx.h -f8f0aabd62fff4a12386f0ddd06a6003 linux-3.0/net/dsa/mv88e6xxx.c -d03934bf2f03f07e431ca2a0408fa1d4 linux-3.0/net/dsa/mv88e6131.c -dbddb839f366d7ee1e5eec378b8dab5d linux-3.0/net/dsa/mv88e6123_61_65.c -a70e366b33bd06e231e808ee08ef2ec0 linux-3.0/net/dsa/mv88e6060.c -331dcf999a0daccad60ab6eade71763b linux-3.0/net/dsa/dsa_priv.h -5c16283acc6e2817443a1fd288bab323 linux-3.0/net/dsa/dsa.c -b2f54aeb0efd88e02577924aa450dda0 linux-3.0/net/dsa/Makefile -e2f2fd70240466d6b52f023521dc8acf linux-3.0/net/dsa/Kconfig -c1c3da888314f5d9384dbf46f23d8148 linux-3.0/net/dns_resolver/internal.h -a50291cc7b42a77db7fcf7a219e244d6 linux-3.0/net/dns_resolver/dns_query.c -01fa3ce0457dc924a22bb839fa49b42f linux-3.0/net/dns_resolver/dns_key.c -338f58f3ee3387723b3c2d14656fdf92 linux-3.0/net/dns_resolver/Makefile -dd2fb428c2d9fcf597cd6b12fc7566f3 linux-3.0/net/dns_resolver/Kconfig -a3a6a84c3293b0632aa1d6344aa7297d linux-3.0/net/decnet/sysctl_net_decnet.c -8633d4f190423ba8506bd99d23338b60 linux-3.0/net/decnet/netfilter/dn_rtmsg.c -e9de586f0e9640dd0954a95d82d8bc72 linux-3.0/net/decnet/netfilter/Makefile -22f12fd4ed0e519f0393d4eed4b4d330 linux-3.0/net/decnet/netfilter/Kconfig -f08c24e46943aefa7b4e10321da70e17 linux-3.0/net/decnet/dn_timer.c -1960ab458baf9ee06aec1c833dd7c7ad linux-3.0/net/decnet/dn_table.c -2e8df5b3d400f85a3965af49aa49c593 linux-3.0/net/decnet/dn_rules.c -8c8cdfd06e25bbd73cf3a13d31d8a1b9 linux-3.0/net/decnet/dn_route.c -dd01e6684a7b7caa44557f9831089b7c linux-3.0/net/decnet/dn_nsp_out.c -b602364e1a9a184fa8e194a13f4dbbff linux-3.0/net/decnet/dn_nsp_in.c -883ede1e92aa9160ee3892af0ac988a3 linux-3.0/net/decnet/dn_neigh.c -0427d3c877abbe3391936522bd5f6d4a linux-3.0/net/decnet/dn_fib.c -81cc3404736ed6b538beb8e33933da2f linux-3.0/net/decnet/dn_dev.c -3c3f1b1dcf27bb30b94a6cb9c409a1cb linux-3.0/net/decnet/af_decnet.c -a7f38077b97ce2140b0ac891cd5bd727 linux-3.0/net/decnet/TODO -af8c51138d29f9a97ff1045808d710b4 linux-3.0/net/decnet/README -d1a6ecef5eee0a312a4fb7b1d3f74737 linux-3.0/net/decnet/Makefile -d26ac44d57f60a42d8f9000b20eacbab linux-3.0/net/decnet/Kconfig -de02047a7786e933d416faa66c01b412 linux-3.0/net/dccp/timer.c -15cf03571a18fa9dfdc9797bbabe3958 linux-3.0/net/dccp/sysctl.c -b435e548b2afa47b5b594d1aa86ba9b4 linux-3.0/net/dccp/qpolicy.c -b93545e12259bbca93598ddcbb4b18e2 linux-3.0/net/dccp/proto.c -89412fe30a67ae124e2daa213b5063fe linux-3.0/net/dccp/probe.c -5d70c1d7d629b3b6c5a6c24149f2fce3 linux-3.0/net/dccp/output.c -78b67f1abd6affaa88a59a97f2d66f11 linux-3.0/net/dccp/options.c -aec20792bf116c234779c483b1185c37 linux-3.0/net/dccp/minisocks.c -751649899e6cf7f28cb653daec73f2ed linux-3.0/net/dccp/ipv6.h -abb2ca4e6121c8e0a35f0d9fddaa8849 linux-3.0/net/dccp/ipv6.c -0e465c6a132cc80df3091f70ab46127d linux-3.0/net/dccp/ipv4.c -c7ff309992bb778cc21b897bb8056f0b linux-3.0/net/dccp/input.c -53dd0b317c14b37377440827e7f0f0db linux-3.0/net/dccp/feat.h -aa494435ba4191f88ac77611eb628c6d linux-3.0/net/dccp/feat.c -c70e00708e02a957930a1521574ef5b6 linux-3.0/net/dccp/diag.c -41619382d45d04f62d78be27bff09d5f linux-3.0/net/dccp/dccp.h -d7de5aab256e330147feec4c2dd8ecde linux-3.0/net/dccp/ccids/lib/tfrc_equation.c -7898c8ad84193fc3020c139547c6aa6a linux-3.0/net/dccp/ccids/lib/tfrc.h -e91a31c5c2b0f4e21353a59376708586 linux-3.0/net/dccp/ccids/lib/tfrc.c -cc8f2bc99503a40d8af42d32a0ef6351 linux-3.0/net/dccp/ccids/lib/packet_history.h -45f759eec0e5093d24a4dfbdf729227c linux-3.0/net/dccp/ccids/lib/packet_history.c -b219334138c7ff22e85f7f54892ec621 linux-3.0/net/dccp/ccids/lib/loss_interval.h -8843a1f21c526c4c0ae3dd446eecc870 linux-3.0/net/dccp/ccids/lib/loss_interval.c -ecb11e0c4282a141354ae5f552e29760 linux-3.0/net/dccp/ccids/ccid3.h -2333b7ea3a47f1e1e6b475e3ebf03514 linux-3.0/net/dccp/ccids/ccid3.c -1ae14c1da03a5c2a1138d0fab2f85edf linux-3.0/net/dccp/ccids/ccid2.h -43ef0a365a4e52c62237d035fd9328b7 linux-3.0/net/dccp/ccids/ccid2.c -7f8021372189bfacb3d62e6b6eecc0c9 linux-3.0/net/dccp/ccids/Kconfig -573d715b5b0e93efef49cc9058c7342a linux-3.0/net/dccp/ccid.h -b6a7d265a28e7d9c4b869c0aa82983f0 linux-3.0/net/dccp/ccid.c -598591b85c379fc4730eb9de1d8ba928 linux-3.0/net/dccp/ackvec.h -4fb64f32662a35210034d06dc4f59490 linux-3.0/net/dccp/ackvec.c -1f33ea03379e06d2ae67f8849a61704a linux-3.0/net/dccp/Makefile -b7d063cba580ef5b778d6ed9d8562d5f linux-3.0/net/dccp/Kconfig -647f85de2fb53abac90cb4063027e623 linux-3.0/net/dcb/dcbnl.c -a74408e3de09d2c620ebdc2838a2fced linux-3.0/net/dcb/dcbevent.c -1dd8c18d90a452f49ae74fe38c822e91 linux-3.0/net/dcb/Makefile -a1a763b65a79a485b6dcbdeca39cde78 linux-3.0/net/dcb/Kconfig -69c42d8eec54aed143cea60413bc70dc linux-3.0/net/core/utils.c -da75af22078038da228d4dd7e4f3158e linux-3.0/net/core/user_dma.c -06db2ee322ecde2c2353c7bb775f33d1 linux-3.0/net/core/timestamping.c -b89ccfb8e9c39652b359d4dbd74e857c linux-3.0/net/core/sysctl_net_core.c -dedaea6c14d3eaff02794f3813c3c046 linux-3.0/net/core/stream.c -8639402157a31f5d132f1e22ca351fa6 linux-3.0/net/core/sock.c -d435237bc8dbe68d10ba09509acea9e4 linux-3.0/net/core/skbuff.c -847e0f604961e37d6fbc98a0042fff2b linux-3.0/net/core/scm.c -8f8ed04530e424b2a7087b213f218f35 linux-3.0/net/core/rtnetlink.c -96bb42298314b03ae94f6fc38608b09f linux-3.0/net/core/request_sock.c -d52e5f3e90b1cee0d85c6e47fe1e6da6 linux-3.0/net/core/pktgen.c -341e4cd6ae1ee6623fdeab268a911ce3 linux-3.0/net/core/netpoll.c -f3fc17240c61fd35dd6cfbca954a5224 linux-3.0/net/core/netevent.c -540c9ca429b0a8eae6fa98f434fbcba2 linux-3.0/net/core/net_namespace.c -356e9dfa91a060a89fb2fb3140784e26 linux-3.0/net/core/net-traces.c -b34fc663e068b240d20b014bec41759d linux-3.0/net/core/net-sysfs.h -29ca3d2d5d9070cc44e462a9fa87cda2 linux-3.0/net/core/net-sysfs.c -a262a4b348e340938f4c14dcb9f4296e linux-3.0/net/core/neighbour.c -8691858e23d90505a602c445c8397ac8 linux-3.0/net/core/link_watch.c -dd4f4f93c1ab135f2d31314d41b1c373 linux-3.0/net/core/kmap_skb.h -3bf8c4f08983c768516ac5587383c683 linux-3.0/net/core/iovec.c -3c81951139cdadfd25ed9d5640f1e69e linux-3.0/net/core/gen_stats.c -a4574bad6b1ce9117d86df82363bad4b linux-3.0/net/core/gen_estimator.c -6e0fa6518cb30d7952195aaf272234d2 linux-3.0/net/core/flow.c -61a80ff78a05fb6985e1334d65cc4143 linux-3.0/net/core/filter.c -8cd7563335a6fd8c4603f47c5d3f8151 linux-3.0/net/core/fib_rules.c -3aa8f72d8415af9f45904be4969af728 linux-3.0/net/core/ethtool.c -bc70d24f5582c275a872e146fedc41ad linux-3.0/net/core/dst.c -324a1f98c8af115168c232f4d6a9b97d linux-3.0/net/core/drop_monitor.c -e290bbc0e731e0b5cba7f3d55eea121b linux-3.0/net/core/dev_addr_lists.c -cfabdb18c927e97abe60b411867e4dcc linux-3.0/net/core/dev.c -88e08bcd10e72f7a3442ff96424f9b3a linux-3.0/net/core/datagram.c -e55b7be7b4726be5aaa0e12c6a711805 linux-3.0/net/core/Makefile -39b636c8b008d5e14e61e3924a0bf29e linux-3.0/net/compat.c -cd37d1a7ff81e43ca999feaa273669e7 linux-3.0/net/ceph/pagevec.c -7047556693ec045644289becaa07162f linux-3.0/net/ceph/pagelist.c -aab59dffbe852619214caeddf4f0f554 linux-3.0/net/ceph/osdmap.c -d18ca6abebd6f8dd93e949bf642e813b linux-3.0/net/ceph/osd_client.c -3d886599199a88db90a5821a6e2d0360 linux-3.0/net/ceph/msgpool.c -5ce8a2891eb73231c39aa460edf50261 linux-3.0/net/ceph/mon_client.c -f5497c580b867f4f6490cd4d2626c0d9 linux-3.0/net/ceph/messenger.c -a8d493d5c2d9ab00646080d3a15bb419 linux-3.0/net/ceph/debugfs.c -2c328761faa738f19dd60c0a337bf352 linux-3.0/net/ceph/crypto.h -bddd994cecb8c7452ff08682c8a82ce4 linux-3.0/net/ceph/crypto.c -16797d893e3518b486706664c5a44e78 linux-3.0/net/ceph/crush/mapper.c -3441c106e3a69eefc9d19a004c552685 linux-3.0/net/ceph/crush/hash.c -3215b3eb78ae758aa83a64dcb7ee6b0c linux-3.0/net/ceph/crush/crush.c -254a81b6ab448d641625ef1ffec70512 linux-3.0/net/ceph/ceph_strings.c -d749436a04bfb1207c5eb4e68b471488 linux-3.0/net/ceph/ceph_hash.c -2e6b964972031e05cc538c592a079828 linux-3.0/net/ceph/ceph_fs.c -903ef382d3ec66ccf4233870e3699884 linux-3.0/net/ceph/ceph_common.c -800bc489cdb58cce1af621d824dd1b38 linux-3.0/net/ceph/buffer.c -d2266b7e898f0ee0887b4121cedcb557 linux-3.0/net/ceph/auth_x_protocol.h -1e1d770a782f2088289ada905fa2640b linux-3.0/net/ceph/auth_x.h -5f154739f087b0aabbe778980c9fe160 linux-3.0/net/ceph/auth_x.c -69d17cc7d297dd3ac7f24d217b4b3d8e linux-3.0/net/ceph/auth_none.h -95bf7fc22ff4c8a55b44617588887a45 linux-3.0/net/ceph/auth_none.c -8fc08e513b6340775920bf52a3f78e22 linux-3.0/net/ceph/auth.c -b7ed4e42177207e22756a8f18ba26c3e linux-3.0/net/ceph/armor.c -45a121d29de09687f1e27a6c794bf4ad linux-3.0/net/ceph/Makefile -86322ff0fe4b4336b71894b6d20b3126 linux-3.0/net/ceph/Kconfig -da6a7cdcdb3cf13e940f1185f1d7e4d2 linux-3.0/net/can/raw.c -890d259250ac8a1590401b1de3b5c7d3 linux-3.0/net/can/proc.c -ac02e09e4e66954791751d54b26217f1 linux-3.0/net/can/bcm.c -202d263eb4632dab02733ee42534ee61 linux-3.0/net/can/af_can.h -617ac14c07e3b3f89f69617311a3f333 linux-3.0/net/can/af_can.c -423bbe9e21e86bbe5ff9b90c1532da0e linux-3.0/net/can/Makefile -d50fb1166cd558299fe5022985d79343 linux-3.0/net/can/Kconfig -7ffa83c303b3cca862666c176cf904de linux-3.0/net/caif/chnl_net.c -5632a55556af53f361a706d6c6cddfdd linux-3.0/net/caif/cfvidl.c -74cb05336fdbc403f67502901d0cfab5 linux-3.0/net/caif/cfveil.c -76fa5950755193c7077640b5706ac6c8 linux-3.0/net/caif/cfutill.c -7a5412d9b0c965de798fbdfa0e6faa87 linux-3.0/net/caif/cfsrvl.c -3206432f122ff273df0fc49fdf047cf3 linux-3.0/net/caif/cfserl.c -6dce6faed08fa4240a6cc59d802fb3ab linux-3.0/net/caif/cfrfml.c -20425270c8450921f098de9bb9488f69 linux-3.0/net/caif/cfpkt_skbuff.c -81a0aee08df4e8b8f57bbd0ddb96574b linux-3.0/net/caif/cfmuxl.c -f5b8669697564cfa14717e9826c73cf3 linux-3.0/net/caif/cffrml.c -25d6aaff6294cd244ef39dfc5b95c284 linux-3.0/net/caif/cfdgml.c -691d7702941d1d24892e879b8dfca899 linux-3.0/net/caif/cfdbgl.c -6e4dfcedb5bd68d4d702f06a7be29c89 linux-3.0/net/caif/cfctrl.c -bef7716bfd596adec22e589ef9115d50 linux-3.0/net/caif/cfcnfg.c -3cde7d741ff00e1ea85c842770e09cd7 linux-3.0/net/caif/caif_socket.c -d9447a57c32fba2d4436bc714f59597e linux-3.0/net/caif/caif_dev.c -0cb873dfc46325ff80c8b10f499eb3aa linux-3.0/net/caif/Makefile -9b93e7e167b3730bb59bcb31bee629d0 linux-3.0/net/caif/Kconfig -11a7f46b9ad7bae9f2b72c8bae3d48d4 linux-3.0/net/bridge/netfilter/ebtables.c -9974e62859917d8099a6b5fc2833d141 linux-3.0/net/bridge/netfilter/ebtable_nat.c -24d6c416111fdd4b2b9d3b15a601716e linux-3.0/net/bridge/netfilter/ebtable_filter.c -c551bb0acd810f7f4d0d4c1f1e809b7d linux-3.0/net/bridge/netfilter/ebtable_broute.c -0fc2c577ed5a1236347217e8ff7aef1b linux-3.0/net/bridge/netfilter/ebt_vlan.c -816642775f31757025b3eb87ec95e928 linux-3.0/net/bridge/netfilter/ebt_ulog.c -00c83ca6b08c7e360124aff8bc1004a2 linux-3.0/net/bridge/netfilter/ebt_stp.c -52e93400dcb0d17b3da35d0f62532e08 linux-3.0/net/bridge/netfilter/ebt_snat.c -6bf93fa8622b3c28a54bea13c7ade57c linux-3.0/net/bridge/netfilter/ebt_redirect.c -890a6732591be7b79e122d43e39ef103 linux-3.0/net/bridge/netfilter/ebt_pkttype.c -ed6c3715ad3f96c3b64839bfe64d12b3 linux-3.0/net/bridge/netfilter/ebt_nflog.c -5c33ff55cafd08ed57f5990049efea94 linux-3.0/net/bridge/netfilter/ebt_mark_m.c -36687804f2456b3082d7207cc6039737 linux-3.0/net/bridge/netfilter/ebt_mark.c -ef4b0c1696a04a539d066bc243c500e3 linux-3.0/net/bridge/netfilter/ebt_log.c -e3c10e9478428f8e0fcac57d9a831299 linux-3.0/net/bridge/netfilter/ebt_limit.c -632546e2ae26fec329956becf35352ae linux-3.0/net/bridge/netfilter/ebt_ip6.c -73d2c99addda9312f95ccd9aebe1af6b linux-3.0/net/bridge/netfilter/ebt_ip.c -b77bb651f8cd02a4e59e0d6071b8c67e linux-3.0/net/bridge/netfilter/ebt_dnat.c -be86a44ed191113858f4fcf801b8c8bf linux-3.0/net/bridge/netfilter/ebt_arpreply.c -0883ffb30e02238fe2f6da7fea5ce0e6 linux-3.0/net/bridge/netfilter/ebt_arp.c -8705c3a05251316a204942aad7cf7561 linux-3.0/net/bridge/netfilter/ebt_among.c -9f36922c299ccb4614e633306b478ff1 linux-3.0/net/bridge/netfilter/ebt_802_3.c -729be4b08152646c32e95d73c7d59adc linux-3.0/net/bridge/netfilter/Makefile -cce4b6ae1458eb5dcada48f3e0a5ef17 linux-3.0/net/bridge/netfilter/Kconfig -bc9a196e8d242429cf15323ec354a831 linux-3.0/net/bridge/br_sysfs_if.c -57f8da7ae69045413a7271e710bf2f31 linux-3.0/net/bridge/br_sysfs_br.c -699cde6bc619b7a2a958a252b7ee72d5 linux-3.0/net/bridge/br_stp_timer.c -53aee3b08321cdb9b013c600dbde5b72 linux-3.0/net/bridge/br_stp_if.c -fed90c9fc06e3079405a93ad619358a2 linux-3.0/net/bridge/br_stp_bpdu.c -e5605021dc8f48e67c6e8790c89d2722 linux-3.0/net/bridge/br_stp.c -b57bb33ea363bb4ea094cb6f60fc875c linux-3.0/net/bridge/br_private_stp.h -b30a4467d7f936427c0ce38461d43b28 linux-3.0/net/bridge/br_private.h -551e9a593cf35d2c85c45c162890bbf4 linux-3.0/net/bridge/br_notify.c -d82062b8c291e4f7603fc60561fa2934 linux-3.0/net/bridge/br_netlink.c -a7440045a1c37b9f87845bbdf5a61ef1 linux-3.0/net/bridge/br_netfilter.c -5ea1e24ee3cb1d9a518452c24e0080b6 linux-3.0/net/bridge/br_multicast.c -912a93ef2803632f4fdc876861a5be3d linux-3.0/net/bridge/br_ioctl.c -b7d12621edb3ad3639c225b4ad4345e5 linux-3.0/net/bridge/br_input.c -3f65137aac6b8ad5209588b985c124b1 linux-3.0/net/bridge/br_if.c -4aff23816fc93b6628769af7e3281e02 linux-3.0/net/bridge/br_forward.c -1237ea37c87c92ad4d97c0e018f0a692 linux-3.0/net/bridge/br_fdb.c -11839134fe5fb5c9ab115302c1e1860a linux-3.0/net/bridge/br_device.c -df34480578a37c7a7119c1389eadc65c linux-3.0/net/bridge/br.c -517382ce67030b2d3510c2b76423273a linux-3.0/net/bridge/Makefile -238b3e7a5e82ec98a773b857f389ab9e linux-3.0/net/bridge/Kconfig -64efcf58768c4b909442cb8a30442dc9 linux-3.0/net/bluetooth/sco.c -e5fb2011811b3e6d596c19aa726bdc37 linux-3.0/net/bluetooth/rfcomm/tty.c -84687ee5a36713c904ccb6b626a59afe linux-3.0/net/bluetooth/rfcomm/sock.c -de2101db68d5a44a8b3f14c05608292f linux-3.0/net/bluetooth/rfcomm/core.c -426fe95248ac5a2db4649734449e17ae linux-3.0/net/bluetooth/rfcomm/Makefile -b4dbe51f420c8e424557403a1fc10dfa linux-3.0/net/bluetooth/rfcomm/Kconfig -0c097c1e217dd9485db4bd190b65a253 linux-3.0/net/bluetooth/mgmt.c -c3e2e91434481a6ed13a17e6d59eaa30 linux-3.0/net/bluetooth/lib.c -4c1e7737618b3ab020dd6cfeca19f298 linux-3.0/net/bluetooth/l2cap_sock.c -d12410770aa081208d6d8235633973f6 linux-3.0/net/bluetooth/l2cap_core.c -cdd2e03d2262b4a1279cfab1b7144296 linux-3.0/net/bluetooth/hidp/sock.c -90ccf6b27306e858db091f8298b4a0a4 linux-3.0/net/bluetooth/hidp/hidp.h -12bb3a378ca661ddd55acd709a165e2e linux-3.0/net/bluetooth/hidp/core.c -c6886e70ac71ae8b097edc6d20feac0e linux-3.0/net/bluetooth/hidp/Makefile -8a34279ad732fdf8ed87f3e8fe072d1e linux-3.0/net/bluetooth/hidp/Kconfig -fe45c5832aa72638d83bf0402b772efa linux-3.0/net/bluetooth/hci_sysfs.c -415007e00c6ef3f40cffb4ae363a8f20 linux-3.0/net/bluetooth/hci_sock.c -11787b94d47fb741bb05cf438cd60d62 linux-3.0/net/bluetooth/hci_event.c -b469020dab9da761d3ae23f338ac7010 linux-3.0/net/bluetooth/hci_core.c -7b146811d43f2a13dd1a30d26d10f93c linux-3.0/net/bluetooth/hci_conn.c -ecc3deb87a5ef82d748f817e2002c063 linux-3.0/net/bluetooth/cmtp/sock.c -baad7e50eaa273f1d02a7096e5879a9c linux-3.0/net/bluetooth/cmtp/core.c -241c09d4652245eaa06ef177d5cdb564 linux-3.0/net/bluetooth/cmtp/cmtp.h -567d5fa2a8691c14e4c7294e5d904e57 linux-3.0/net/bluetooth/cmtp/capi.c -390a2e3252f5180a6669937de657802f linux-3.0/net/bluetooth/cmtp/Makefile -f09bcae13276db151b9b5fad63c0109b linux-3.0/net/bluetooth/cmtp/Kconfig -fdb0d9c5fb07c41a6c181a40d7cf7929 linux-3.0/net/bluetooth/bnep/sock.c -a61047584fa88520d63c300c51148f1a linux-3.0/net/bluetooth/bnep/netdev.c -6b7d27b87c68efebb6fc37e60eb4e2b1 linux-3.0/net/bluetooth/bnep/core.c -589fcd7fe961305596cd0a8ce97558dd linux-3.0/net/bluetooth/bnep/bnep.h -0d7c1b5816c59d7510d81036d238bffd linux-3.0/net/bluetooth/bnep/Makefile -296b8994ee3307cc55b776b32f69531f linux-3.0/net/bluetooth/bnep/Kconfig -2e466d6de7f8c7f345822ca9315db932 linux-3.0/net/bluetooth/af_bluetooth.c -bc38f4ec39869554567c9e6ab470ff4a linux-3.0/net/bluetooth/Makefile -9e7bb9e7afe0bccda3a381de6a5881e1 linux-3.0/net/bluetooth/Kconfig -210b5a68bda4bb561ac1872960e87513 linux-3.0/net/batman-adv/vis.h -f2cd19df3001374343cae1d90332a4a4 linux-3.0/net/batman-adv/vis.c -5ec5faf7345a96d8bb47c8155d5d321e linux-3.0/net/batman-adv/unicast.h -4d81bbb9435c3a4a3e019e35b719be56 linux-3.0/net/batman-adv/unicast.c -5cf31d7818bb45897557aeb85cc0d214 linux-3.0/net/batman-adv/types.h -6a07e5fe0b00398f7dd526fdda78d113 linux-3.0/net/batman-adv/translation-table.h -5b18badc5a8de66929182202fcd150a8 linux-3.0/net/batman-adv/translation-table.c -9bf55484b86979489046ac4cf914b7bb linux-3.0/net/batman-adv/soft-interface.h -d5e51c4d3f722dc608097c463f3eb4e6 linux-3.0/net/batman-adv/soft-interface.c -11654d9ffc0f048e9d366406ee42454e linux-3.0/net/batman-adv/send.h -1be3cedfd2367f68e9e299dc1e46e1bb linux-3.0/net/batman-adv/send.c -06393bd4568ee850e5b9f8cddbb48520 linux-3.0/net/batman-adv/routing.h -f8df1ee5e6551a59d5e46fea77837e86 linux-3.0/net/batman-adv/routing.c -d312edbb84ffff59f88a3422bb3a8842 linux-3.0/net/batman-adv/ring_buffer.h -cafba747c206d5d987dc9cad773815c5 linux-3.0/net/batman-adv/ring_buffer.c -50c3d095c9117e96e670f4d8f29edfa1 linux-3.0/net/batman-adv/packet.h -5f6cecd692322c14200e7c10a2bd0718 linux-3.0/net/batman-adv/originator.h -a4ddb9fe41ec8582e2828a0338a31220 linux-3.0/net/batman-adv/originator.c -c35090b8574cbe9ded8a6acfca8261fe linux-3.0/net/batman-adv/main.h -10e8c5f5e7ec0dac7a7eef3fec4d09e9 linux-3.0/net/batman-adv/main.c -9460cafd789164072b218856cfae5320 linux-3.0/net/batman-adv/icmp_socket.h -90885cafcc44f6244820abe7c4c0c8f2 linux-3.0/net/batman-adv/icmp_socket.c -316bef6a7aef20711cfd46d3675eacb1 linux-3.0/net/batman-adv/hash.h -a25c5aa447c329e67a504ec23ed09fb2 linux-3.0/net/batman-adv/hash.c -13613ff64ee74116acbcdeb06ae4c382 linux-3.0/net/batman-adv/hard-interface.h -06809aab6b7b429b96fb2e40e04ab898 linux-3.0/net/batman-adv/hard-interface.c -c58217c58d5299aa3f566480a93c2300 linux-3.0/net/batman-adv/gateway_common.h -711f98df72431e1c1c243263bcd09252 linux-3.0/net/batman-adv/gateway_common.c -9f3a0938ed8a01758da77a38208cfefb linux-3.0/net/batman-adv/gateway_client.h -f62ad4db684c3c154efea858d6c197e8 linux-3.0/net/batman-adv/gateway_client.c -467e5a5d9a7a9f0129d8afbe8e08c7f5 linux-3.0/net/batman-adv/bitarray.h -bc8dc0371df7aa648f2692a8b298be9d linux-3.0/net/batman-adv/bitarray.c -2098298b2cd490f62af19c57f10f75da linux-3.0/net/batman-adv/bat_sysfs.h -22830d1873c316c4ad5635503475f6d6 linux-3.0/net/batman-adv/bat_sysfs.c -790a268f6e4c0f2cfe7fb999675cd510 linux-3.0/net/batman-adv/bat_debugfs.h -04709ad4595ac1b37e6e92971d36ee98 linux-3.0/net/batman-adv/bat_debugfs.c -91f48876362dbebd88ffd533306d1a39 linux-3.0/net/batman-adv/aggregation.h -67bcad144d658dd6baff144a7861e413 linux-3.0/net/batman-adv/aggregation.c -5051dc0c815cb01f8bbd5c71600de01a linux-3.0/net/batman-adv/Makefile -f4546d007976cf3fe020ee2b667dd9e9 linux-3.0/net/batman-adv/Kconfig -c8bece26f28e5ba87aa10a16a7dea1be linux-3.0/net/ax25/sysctl_net_ax25.c -a2c311b0d4917a0f43a44b911502755e linux-3.0/net/ax25/ax25_uid.c -b4a31bf88cc4a1aeaeca7d279aaee697 linux-3.0/net/ax25/ax25_timer.c -15095819973e8e67a778056a69c07783 linux-3.0/net/ax25/ax25_subr.c -75e11bbd8596bc265928195d166a8c44 linux-3.0/net/ax25/ax25_std_timer.c -460d94f92e71f3317b5bbaac6d0520b1 linux-3.0/net/ax25/ax25_std_subr.c -3ce1ed1822a67f7b50d6257907d8f2ad linux-3.0/net/ax25/ax25_std_in.c -5541b0cf1faeeb5d6d20a1599abb6099 linux-3.0/net/ax25/ax25_route.c -5f00c042c81ab352d518212dba019357 linux-3.0/net/ax25/ax25_out.c -70163a74ff7c8d68fbc9bfa752a98090 linux-3.0/net/ax25/ax25_ip.c -95c7a228e945f9f42d5d8f05ffc31f35 linux-3.0/net/ax25/ax25_in.c -13dfaac2684fc66173cd752c28fbc27c linux-3.0/net/ax25/ax25_iface.c -c2b485e0db514c480269be12ce7fcac1 linux-3.0/net/ax25/ax25_ds_timer.c -d2a393d2077071c7273af6d81ddb2574 linux-3.0/net/ax25/ax25_ds_subr.c -a2fc73ad978ff3fb3df5a78612f983d2 linux-3.0/net/ax25/ax25_ds_in.c -103db776c290c506efb9b8c45f7276a3 linux-3.0/net/ax25/ax25_dev.c -03c7779266147f0ee15c0e1a26ddd71f linux-3.0/net/ax25/ax25_addr.c -ece1e95931264b165412fe3b94610bd5 linux-3.0/net/ax25/af_ax25.c -48a71091572666ff81f062ce6761f456 linux-3.0/net/ax25/TODO -b2208b5bda15dc5ffb9414caf3fe820e linux-3.0/net/ax25/Makefile -c5feb147ba79df7096afe933a2e07272 linux-3.0/net/ax25/Kconfig -efeb4f1cb489ec8a4717a9f83e5d0515 linux-3.0/net/atm/svc.c -7585c8fd831689440c86b72dd11607a9 linux-3.0/net/atm/signaling.h -4f7faf1be72ed86fc9079ca7de157596 linux-3.0/net/atm/signaling.c -799d291eeb63e3bb84cb0405e653adb5 linux-3.0/net/atm/resources.h -b72488928a2e75ca9e3122a246427758 linux-3.0/net/atm/resources.c -87496f6107819c98d345d06935c007c9 linux-3.0/net/atm/raw.c -c9c14f0f9e738e6f7a171ed52093d183 linux-3.0/net/atm/pvc.c -97f95c2b18c4b2145364bb09c0c75b28 linux-3.0/net/atm/protocols.h -e8c501d6e790acbde09663a19831f5c0 linux-3.0/net/atm/proc.c -ceaea54c5b34f15bd3b5590350dd53e7 linux-3.0/net/atm/pppoatm.c -4c859c5498fc2baabe8e8dda5f2429f3 linux-3.0/net/atm/mpoa_proc.c -c76087d294cd9414ed07128b7e87a23a linux-3.0/net/atm/mpoa_caches.h -ff28ff999a41d6df56a39cf3b6cc346f linux-3.0/net/atm/mpoa_caches.c -1a1ad4d250ff212613e25b0822046379 linux-3.0/net/atm/mpc.h -8a60f482e7a37cfccce32ec6645b5446 linux-3.0/net/atm/mpc.c -08614428b0098b58281bd99abcba8aa0 linux-3.0/net/atm/lec_arpc.h -ecf77573fc1e4b44e537aa6dfebe7da9 linux-3.0/net/atm/lec.h -b8662844cd08f08ffb142e4b9a526c68 linux-3.0/net/atm/lec.c -67029f9a7ea6027ba1b4356b344e9b44 linux-3.0/net/atm/ioctl.c -e8cce10734d6a37496a76f1ef41d8dae linux-3.0/net/atm/common.h -923767c0a28076377c6714178e5844ab linux-3.0/net/atm/common.c -358acebb86fb5fe61b2a757041b1d680 linux-3.0/net/atm/clip.c -e3946449c9cd83c763e05fced2e8e96e linux-3.0/net/atm/br2684.c -186a088ede4f83926e3da33f44d68581 linux-3.0/net/atm/atm_sysfs.c -0f03b27ef5cee8aad58a9663b487fb90 linux-3.0/net/atm/atm_misc.c -e38e57e53024086f87c7fc4889b3ad5f linux-3.0/net/atm/addr.h -452507378be324551ff6ef82362e0b20 linux-3.0/net/atm/addr.c -954d5f669726a8ca73ebdbd62b30934b linux-3.0/net/atm/Makefile -a76399dc29f9042fd9393cefb5b1c28d linux-3.0/net/atm/Kconfig -e7ae373af7d6c650c740ced01dea339d linux-3.0/net/appletalk/sysctl_net_atalk.c -eca6692917a5730bb8b22f5f516ae41f linux-3.0/net/appletalk/dev.c -b5b693d224ebf6f670ab1c62e6d0c8c2 linux-3.0/net/appletalk/ddp.c -ee5c4d6485237f53a9a0f0788c418d31 linux-3.0/net/appletalk/atalk_proc.c -bb0257b479fa138f874170b3d7198cb6 linux-3.0/net/appletalk/aarp.c -f56187b7727f091e716e631c4a9d50d8 linux-3.0/net/appletalk/Makefile -0e3cde343ac03bdf408e31f7b9ba5a0f linux-3.0/net/TUNABLE -b3503c5993aa82ae1baba99c7541da24 linux-3.0/net/Makefile -5025e3d00221c1d2196a90ec8d4c164b linux-3.0/net/Kconfig -7cd461378686300adb17b926a89d6ab7 linux-3.0/net/9p/util.c -0af37162f913c69e5a1c6eb4604a31ae linux-3.0/net/9p/trans_virtio.c -7c7e5d21119c905e418f1701314194be linux-3.0/net/9p/trans_rdma.c -e253ea664205c61e93ef8fe26620ae09 linux-3.0/net/9p/trans_fd.c -e822955d70a3a0f65178b97db29fa5b9 linux-3.0/net/9p/trans_common.h -952bedd3fc1491772065f2686a095a5a linux-3.0/net/9p/trans_common.c -cbcb0a3f3daa671c5b35ab34c4907f7a linux-3.0/net/9p/protocol.h -f2f3e5bd394ab113856ad0d84a8c796b linux-3.0/net/9p/protocol.c -42e5f5b0390b8c1812cc274f27344dda linux-3.0/net/9p/mod.c -0aed9180aae18784d2fd9fe7fc1403c7 linux-3.0/net/9p/error.c -f55c643e00714b24962e339344a856fb linux-3.0/net/9p/client.c -7ebb11aedf4cf4ed9a369cf45485668b linux-3.0/net/9p/Makefile -4ed05e94f822833384d0211d8d3e4b7e linux-3.0/net/9p/Kconfig -c305d70b87b8bfebb0cac2014699c04c linux-3.0/net/8021q/vlanproc.h -7dd16a264084e8a12e7deb53e2a57b13 linux-3.0/net/8021q/vlanproc.c -b3139f8eca5d19637e6d4954e989f317 linux-3.0/net/8021q/vlan_netlink.c -756b151a7e43ec275c16cb2177179c03 linux-3.0/net/8021q/vlan_gvrp.c -b89d2491b4650aa5b9c798d0c98ead05 linux-3.0/net/8021q/vlan_dev.c -155f41ef358c232b7e13ad23c7e1d42d linux-3.0/net/8021q/vlan_core.c -c677615888b825db02a75eba9aa963a6 linux-3.0/net/8021q/vlan.h -7487fd91ee9226b50051e99ffc3043b0 linux-3.0/net/8021q/vlan.c -5533ba62f39128016befda8b676b1543 linux-3.0/net/8021q/Makefile -fd1961afa19a9034632fffbc327a66af linux-3.0/net/8021q/Kconfig -c31361d9674f2d1598c44c019a9c5368 linux-3.0/net/802/tr.c -ee1962af0de708da8d4ba14d639033ed linux-3.0/net/802/stp.c -a9810c896e872cd9b317409c7aa74c8d linux-3.0/net/802/psnap.c -9931228e1ead630144a3906b6584a74e linux-3.0/net/802/p8023.c -f9b1bb898b62ad70e564d52833f72e7f linux-3.0/net/802/p8022.c -15942bdb153b4f6f7f95336374b907c7 linux-3.0/net/802/hippi.c -f4b3e7331074d0ca6028885aff99015b linux-3.0/net/802/garp.c -07ba5ad83183e69a842aea4927c96981 linux-3.0/net/802/fddi.c -1289bb37f46433dc61d423f3c03bf8b0 linux-3.0/net/802/fc.c -e9f83e6846865f3b1f502f2ac9719280 linux-3.0/net/802/Makefile -c81ab0c6e82c0b2fed586dde375f0f53 linux-3.0/net/802/Kconfig -ffd37513751fca75797b9a643110ae9c linux-3.0/mm/vmstat.c -9c87c0bdc848b00a91c0a0c1e0e86f25 linux-3.0/mm/vmscan.c -013bdeb5bfd332ed79825750d5df57f9 linux-3.0/mm/vmalloc.c -94995b1acafb2e0f83fefe179af93179 linux-3.0/mm/util.c -a6683ac27ed59ac940d9f5ee9859201c linux-3.0/mm/truncate.c -5dfd422b5c758dfa255769f4c5d814bb linux-3.0/mm/thrash.c -dcf34d08663197e386143d19de872d2e linux-3.0/mm/swapfile.c -e2b4c79bbff3c81b18ac8b789a084828 linux-3.0/mm/swap_state.c -4e41ba0a09d5cc21b6731538124e6ab9 linux-3.0/mm/swap.c -f73302d054ac538ff59c3f180460d052 linux-3.0/mm/sparse.c -e6990fdc50404bdc0a3773f560af9b27 linux-3.0/mm/sparse-vmemmap.c -222368294494f858cf97545d22cdadca linux-3.0/mm/slub.c -a5217053cbe43a48289a33151bb0da18 linux-3.0/mm/slob.c -4d402f79044a0496d7739e116d700746 linux-3.0/mm/slab.c -8cfa97b605398854d5f882b0c56f3029 linux-3.0/mm/shmem.c -5515593eef99781f489fc53ba4aacbe1 linux-3.0/mm/rmap.c -6ec4cbbdddea36b8ed2e0be7a838bca8 linux-3.0/mm/readahead.c -3c0359100d663919744564c61ff76293 linux-3.0/mm/quicklist.c -53ae1d271bb1c7774bcba04f5c05c34e linux-3.0/mm/prio_tree.c -c024060a09ba2e901da9cc47b5392f7a linux-3.0/mm/pgtable-generic.c -7fb48cd2aa0c87a80508c9d0a0ce083c linux-3.0/mm/percpu.c -3333670689ddaea8f1f85f8c4c7af8a1 linux-3.0/mm/percpu-vm.c -9c9e3a9f187504cee63203cad4e689ac linux-3.0/mm/percpu-km.c -cde2b2189eb5f0026be9ed35c3c788d5 linux-3.0/mm/pagewalk.c -5651207283eb588224bb0f74f4e73203 linux-3.0/mm/page_isolation.c -756946dfea650e9f7fed9c29858efeb9 linux-3.0/mm/page_io.c -177d1aacaa19b8d06f1963d315f548e7 linux-3.0/mm/page_cgroup.c -8ff115095ce952fe23cd932276a3e849 linux-3.0/mm/page_alloc.c -9f3951512fdb04eea712b212d03f0777 linux-3.0/mm/page-writeback.c -4b467776c2df5dfe7e99311efaceef4e linux-3.0/mm/oom_kill.c -809143ef428fae4166ddb0d4b7c07a08 linux-3.0/mm/nommu.c -99f419d3f432b3c1067685777b68d0a0 linux-3.0/mm/nobootmem.c -6c377d90ed38eb6977c7301d6616d46b linux-3.0/mm/msync.c -200ff189771764d5239d2b443e7b6fb5 linux-3.0/mm/mremap.c -b936594ddc09e06474f67f069183109e linux-3.0/mm/mprotect.c -ee1e05f8a8ba2a21eb07c37cdae44280 linux-3.0/mm/mmzone.c -0d01bd743c1899c05ab228c7d37477b5 linux-3.0/mm/mmu_notifier.c -a9a2a27ade4a71f56262bdbf13b73c53 linux-3.0/mm/mmu_context.c -0c555ffc5c4c375a3a6ba564073435eb linux-3.0/mm/mmap.c -0b8f27f0ebef0fc0d2c94f2eca7cb6fb linux-3.0/mm/mm_init.c -493d23afdd8c03f01e0bf2b30af91f9a linux-3.0/mm/mlock.c -e8897e6cab1f9863d3129da821db8bb1 linux-3.0/mm/mincore.c -70615e0149e1ed7b447ac4d53edbac42 linux-3.0/mm/migrate.c -a2cf510be16878d932110ba43ee39947 linux-3.0/mm/mempool.c -4b2006cbfc9317682a5874b037962513 linux-3.0/mm/mempolicy.c -d1d7c8b1ad89e31830a709a78d2ce247 linux-3.0/mm/memory_hotplug.c -93742731894e4f6b2045a9ca6f24e2a5 linux-3.0/mm/memory.c -8db597839166d95ac72fab1dedd8592b linux-3.0/mm/memory-failure.c -713acc0690d94d4bcf4fa396a4e102cb linux-3.0/mm/memcontrol.c -505ac35ca6d53d5fd6cf5bf0a600b18e linux-3.0/mm/memblock.c -fa6877079d08a2253f4a6795b4b15b43 linux-3.0/mm/madvise.c -c1cea0c5e9382f4406d904c082d0db54 linux-3.0/mm/maccess.c -3cd6fcaa35c887d90a4ecaa6c709d4aa linux-3.0/mm/ksm.c -040e5c077e29687e9cde9ab37d074e39 linux-3.0/mm/kmemleak.c -4fe2599829386b9dc600b8024a0cf960 linux-3.0/mm/kmemleak-test.c -8caf574b3fdd46b115405422665cfb25 linux-3.0/mm/kmemcheck.c -7059d2a2ac4b93b7c83b092d81c97b5f linux-3.0/mm/internal.h -184d61b5efe9f1b0aa68cf7d27da61b7 linux-3.0/mm/init-mm.c -b57847b8cc6097c5dc5ff43352e09e36 linux-3.0/mm/hwpoison-inject.c -3abe4dea1350a6c457f7cc4ac82a3ba7 linux-3.0/mm/hugetlb.c -83c8ed39db7afb574e8b1cfd01e44f4c linux-3.0/mm/huge_memory.c -e6daf8a0c9eff39d2d2de28f1aaca118 linux-3.0/mm/highmem.c -2eaec4b1783dbba15cf6494d08422d82 linux-3.0/mm/fremap.c -163b83392585494c92f87ff1d17e2c82 linux-3.0/mm/filemap_xip.c -66a10ad49a3d4dd533f88edab3797ee9 linux-3.0/mm/filemap.c -95f5d62a118d2d77a3a8b2cb6e88788c linux-3.0/mm/failslab.c -815c6ee6156817d1f27af911c574aa76 linux-3.0/mm/fadvise.c -fa0c6d28ff0d4c4b6bf2a0503ccc1246 linux-3.0/mm/dmapool.c -7ad7b8af777688fb6e5908b7d742c96f linux-3.0/mm/debug-pagealloc.c -919e4ac9545b7184c740a65e71fd63b0 linux-3.0/mm/compaction.c -7714238370d2d7c6493eb8585acef7c0 linux-3.0/mm/cleancache.c -c90590e4ca3475f809ac6f1bda3e0293 linux-3.0/mm/bounce.c -67416840805346c76fdd06dfd392205f linux-3.0/mm/bootmem.c -8b1aca21174369c32753165f72c08a7a linux-3.0/mm/backing-dev.c -c1a17eb59c314e367b437d08590be6f9 linux-3.0/mm/Makefile -6655c84826cc303fb67033f8ace37a51 linux-3.0/mm/Kconfig.debug -17acd8e54ef1490b097c1c16ca3e2bcb linux-3.0/mm/Kconfig -ee5331862f2cad24f3b346fe30d9f8e6 linux-3.0/lib/zlib_inflate/infutil.h -eced6cf3ecd7962a46fa971012186f2f linux-3.0/lib/zlib_inflate/infutil.c -196f76384b7df69194d57eded4138662 linux-3.0/lib/zlib_inflate/inftrees.h -be7932668e7c650c07aad0bc049ef9b8 linux-3.0/lib/zlib_inflate/inftrees.c -fe93fb6830ba038718b68ddc806b7628 linux-3.0/lib/zlib_inflate/inflate_syms.c -605833bdf16e28a0272eb636601e45e1 linux-3.0/lib/zlib_inflate/inflate.h -827b318760ba5cdc93926d89b5cc663e linux-3.0/lib/zlib_inflate/inflate.c -28aabce27feb2810caf634a39abb9d8b linux-3.0/lib/zlib_inflate/inffixed.h -2b3215fd5bf91418dcf5e10c9dac6f45 linux-3.0/lib/zlib_inflate/inffast.h -3e6954eaee01b81db978be267a4eac10 linux-3.0/lib/zlib_inflate/inffast.c -3ff3a1933a777782e56b61b20333294b linux-3.0/lib/zlib_inflate/Makefile -82ac205f466bdc3b71a11491e4db8c98 linux-3.0/lib/zlib_deflate/defutil.h -95cd46a4d265a41e5d4fce4781bc7dd4 linux-3.0/lib/zlib_deflate/deftree.c -1e5a9ccbc01e1bb98949b7fa5713ad7d linux-3.0/lib/zlib_deflate/deflate_syms.c -b4ac61124d2a4cf3df5a1849ffdf9b5a linux-3.0/lib/zlib_deflate/deflate.c -3ed82418d6e0660af0cc86ac34cc74c6 linux-3.0/lib/zlib_deflate/Makefile -bba9ab13c754c2b9ce7c012704294058 linux-3.0/lib/xz/xz_stream.h -02662aab1292cb44b998a79acfafead7 linux-3.0/lib/xz/xz_private.h -b37f2841304fa63921754c90ddc74b8a linux-3.0/lib/xz/xz_lzma2.h -100fd0fd9d1c7dfc900514176ed37854 linux-3.0/lib/xz/xz_dec_test.c -dc8189ea80e296fac7e2dc42a9972dad linux-3.0/lib/xz/xz_dec_syms.c -9b771a3004167b5c37f39bbde2686f5c linux-3.0/lib/xz/xz_dec_stream.c -56caa97fa8031b4f4636892b5104d01d linux-3.0/lib/xz/xz_dec_lzma2.c -5c2701c28b5a4398a0bd099174859ce5 linux-3.0/lib/xz/xz_dec_bcj.c -92a77ee52c0b33c31f3c8426aff502f6 linux-3.0/lib/xz/xz_crc32.c -54efeb269c82b46346c41682ee5755b5 linux-3.0/lib/xz/Makefile -d64c9890d1dfa1781b16a382b1aa6ddb linux-3.0/lib/xz/Kconfig -e2bcb3c57bc30984bfe987da34e495e4 linux-3.0/lib/vsprintf.c -004635f7f347986f2dd67ab91e143bea linux-3.0/lib/uuid.c -24570c76066e3033762d477af1871971 linux-3.0/lib/ts_kmp.c -d281e884471ffed3cf331ac1543fac39 linux-3.0/lib/ts_fsm.c -be8b27952e242800f2f12e71b0fbfc2a linux-3.0/lib/ts_bm.c -323d3f3f46431c7e637ee661c37ef7b2 linux-3.0/lib/timerqueue.c -db4d8d434eb94497c6bbdef7fc2c9c29 linux-3.0/lib/textsearch.c -9ea1ad94b3ef4ecc545d6bd74f8d8847 linux-3.0/lib/test-kstrtox.c -9e9e4be18f6312ef2ec1a249bfd9d8a0 linux-3.0/lib/syscall.c -67321e8d0117c477311ae996a693bc95 linux-3.0/lib/swiotlb.c -b952350230688016c5dbaa00421bdaec linux-3.0/lib/string_helpers.c -62075734909483791f14e57dc18b7ba4 linux-3.0/lib/string.c -e95a4cf05e2bd61f4ea9bdb9ad448843 linux-3.0/lib/spinlock_debug.c -05c6c42d2a454531742cf1abea74dc54 linux-3.0/lib/sort.c -fb5bb20a847b07d92e9f5f916ec19201 linux-3.0/lib/smp_processor_id.c -62a23abe003b12bdf7419c7eb2a8af9c linux-3.0/lib/show_mem.c -60934afc47051f29c979eb2b3b3d2b50 linux-3.0/lib/sha1.c -c0a4f2a4bc6bf4b70473e2f570ba7087 linux-3.0/lib/scatterlist.c -ee35a229f6daf3dae1d69812ecd2d791 linux-3.0/lib/rwsem.c -6e29b4bf6e700e5b379097d1a6da6472 linux-3.0/lib/rwsem-spinlock.c -971447dd9743a3d244a0c3448b60f1e7 linux-3.0/lib/reed_solomon/reed_solomon.c -6a94c9e71db10eb0c0275763156247dd linux-3.0/lib/reed_solomon/encode_rs.c -3debc8e00ba78a38409d19eb15b5d3bb linux-3.0/lib/reed_solomon/decode_rs.c -70e42865353bafbf24bebcc019a8eec7 linux-3.0/lib/reed_solomon/Makefile -ad047e4bba6c755f3fd49ff56fd6a19c linux-3.0/lib/reciprocal_div.c -65d0567013fe71c4ebe8e9b14e270352 linux-3.0/lib/rbtree.c -0816f821eb0bd53de0bbff278cdb04a7 linux-3.0/lib/rational.c -78d14f3cab0fd58e1d6c7678329f6678 linux-3.0/lib/ratelimit.c -2c3df489228e5d043a6fa489cfda644e linux-3.0/lib/random32.c -3007ed533f9eabedf7b5a659ac7b05ba linux-3.0/lib/raid6/x86.h -a6b52c89e9bebec167ff919a2c50e2e5 linux-3.0/lib/raid6/unroll.awk -4df6f9928c184da938d7b3af84c1fa19 linux-3.0/lib/raid6/test/test.c -b11a959d1d17115cfd4fbf8d80b461ad linux-3.0/lib/raid6/test/Makefile -cc1b885be90de7293f6872481a9694d7 linux-3.0/lib/raid6/sse2.c -7a2d02134d536eea0be17d9dc8faa6e2 linux-3.0/lib/raid6/sse1.c -62c2d9833ca2fa40c81b1eacb053e9d8 linux-3.0/lib/raid6/recov.c -5cccfc37dee527c95c6db892e049e2b7 linux-3.0/lib/raid6/mmx.c -f93ae1a748abeae4ee88f3249a197e84 linux-3.0/lib/raid6/mktables.c -5616b70eb3b5b5112ff6c7386e89c84a linux-3.0/lib/raid6/int.uc -c1ff856dfef9ea5a4321c8328deeed1c linux-3.0/lib/raid6/altivec.uc -6647071c167e403dce208b1be6aefa35 linux-3.0/lib/raid6/algos.c -60e571d76eae68916973a4eba946f47e linux-3.0/lib/raid6/Makefile -640a1ad933ea85ea1c854bdef4f92f6b linux-3.0/lib/raid6/.gitignore -7c52a436942f1f721efc16fce70d1da9 linux-3.0/lib/radix-tree.c -566362064ded256041bf38aeb75ed1c0 linux-3.0/lib/proportions.c -0868c3c44b182422d3c034a28fea25cb linux-3.0/lib/prio_tree.c -7e82b8b2482cb081b57a9f73675c384e linux-3.0/lib/prio_heap.c -6cec5d7f924dc03e508fa0f41004d01c linux-3.0/lib/plist.c -b2647c364e1be8063301161851141bc8 linux-3.0/lib/percpu_counter.c -b8d922976c17ee7ef56a3fb1e88b738f linux-3.0/lib/parser.c -6836d1e3a7ffc35473399e243978a6a5 linux-3.0/lib/nlattr.c -bea01540764a8ea57f3a7ae0b93d66f1 linux-3.0/lib/lzo/lzodefs.h -4bc926c731dfc4b6203fe18b6b1b1574 linux-3.0/lib/lzo/lzo1x_decompress.c -136925fd4ff8b8888cf3303640d3fb83 linux-3.0/lib/lzo/lzo1x_compress.c -83dd3e80bf2d590fb6fd64deb29c4a46 linux-3.0/lib/lzo/Makefile -858368276e61094affd9c404db4489d6 linux-3.0/lib/lru_cache.c -85b80ab55e93201b008f8bf34e32d952 linux-3.0/lib/locking-selftest.c -a3e883af0799bae30146d88e31f5572e linux-3.0/lib/locking-selftest-wsem.h -a54c2a1934895de57fd661a2883c2ef7 linux-3.0/lib/locking-selftest-wlock.h -7b5b546b898c0f55f8cf3967e0000306 linux-3.0/lib/locking-selftest-wlock-softirq.h -564aa432ab09f550c2275b5d1ccb483a linux-3.0/lib/locking-selftest-wlock-hardirq.h -8a1ccd28651841e9e04b1fab5539a20f linux-3.0/lib/locking-selftest-spin.h -e994aa93eacaaed305c8f1d398a4eb6f linux-3.0/lib/locking-selftest-spin-softirq.h -b3082acbcca16ea78afd4cda96eb4c44 linux-3.0/lib/locking-selftest-spin-hardirq.h -f34c46cf2af0da8bd32047d64b3748a2 linux-3.0/lib/locking-selftest-softirq.h -247f6f2b1bb51a5eda4a11553dc6da98 linux-3.0/lib/locking-selftest-rsem.h -d74ed06a821f21101154e1d0f2fd18cb linux-3.0/lib/locking-selftest-rlock.h -763cf7daf992b4eb652d59d6dffb53ab linux-3.0/lib/locking-selftest-rlock-softirq.h -bd290fbbb1f2d0bce197c29109fc7095 linux-3.0/lib/locking-selftest-rlock-hardirq.h -162ddc34cf0ca25ddba4eee5cb6610cc linux-3.0/lib/locking-selftest-mutex.h -b943f0ca7474b8eabc1cd608f184e382 linux-3.0/lib/locking-selftest-hardirq.h -3285cc7f559441ea27dae4ca9ea49cd2 linux-3.0/lib/list_sort.c -bcf803e741b5d2116bb8b108c50b271a linux-3.0/lib/list_debug.c -b654f79b77f97ea6574866bb8be3036f linux-3.0/lib/libcrc32c.c -3226d921e1386f40b164eb21bc332391 linux-3.0/lib/lcm.c -44a2af30db3e280bf80fc17c8d3ac6ec linux-3.0/lib/kstrtox.c -4a777309be68a2f70ad16e1a61b52d0e linux-3.0/lib/kref.c -d2c1a6ab4c35815efbc1dd379f58c3e2 linux-3.0/lib/kobject_uevent.c -5c7fea4e01aff02719ad798d4b492211 linux-3.0/lib/kobject.c -0b752f653e453244334c47db5ab48a37 linux-3.0/lib/klist.c -df518b618f0e1ffc2f36563f43927b7e linux-3.0/lib/kasprintf.c -2857a868f34bc8923479da65d21ef243 linux-3.0/lib/is_single_threaded.c -75eec42791bd2b39d3792b7fd4e05aac linux-3.0/lib/irq_regs.c -bf0b0150fa698d97199201dc5c8e24ee linux-3.0/lib/ioremap.c -98b43cd2cc6aa535770558034b4a143d linux-3.0/lib/iommu-helper.c -88e1ccc80bb805fd2de7820b3f6f94fd linux-3.0/lib/iomap_copy.c -79a611a1898040badc3afeff28202a6c linux-3.0/lib/iomap.c -8f7b0f8214ff3ecb259a1e36e263c250 linux-3.0/lib/int_sqrt.c -4a9ec5028517487dca5551e8c620b5d7 linux-3.0/lib/inflate.c -0dad4a8bd80716b35b8f7c492aebc85b linux-3.0/lib/idr.c -ccf6b3016aec39f0faa7be9f19a78f63 linux-3.0/lib/hweight.c -79e2bb5e737f8bf0da4a468c3f7eceba linux-3.0/lib/hexdump.c -4e56cc804f1efe2f8e251ee24d5dd619 linux-3.0/lib/halfmd4.c -9c63eacabc3b9abdfd61a39925dd77bb linux-3.0/lib/genalloc.c -bc186cd71197f6fb694b986906c13061 linux-3.0/lib/gen_crc32table.c -9eae2c81d6b6967d12a088f9cbbb3ef1 linux-3.0/lib/gcd.c -0a81f66b056aa36e1e8f74b1a3386a9f linux-3.0/lib/flex_array.c -3dd9eb6d0165c1e14af89ccea38e8565 linux-3.0/lib/find_next_bit.c -de6fd9f9e511dac6e17e3a3ed4976802 linux-3.0/lib/find_last_bit.c -cbac5aa2b94300cdf6b83d8630356916 linux-3.0/lib/fault-inject.c -a21e93a7a4c9f9dc487fcb0923873f2b linux-3.0/lib/extable.c -3c7559cd926114ceda032a915a0c385c linux-3.0/lib/dynamic_debug.c -50f76c2934c94692c06791fa72519d8b linux-3.0/lib/dump_stack.c -c78d5e9ae38b696769fbef42d2095e37 linux-3.0/lib/dma-debug.c -45801e331a9fd24e415eaf0d3da59f71 linux-3.0/lib/div64.c -aa2d4e422fd7a0304a61d5d1154883de linux-3.0/lib/devres.c -2f30b16cd54f8104a669f5c326d38996 linux-3.0/lib/decompress_unxz.c -d9a82d15ea51ff11ab3af6a7cc069359 linux-3.0/lib/decompress_unlzo.c -b8bb0ed18cc59654f3ec6fc8b2ae4243 linux-3.0/lib/decompress_unlzma.c -115525dee3cc3d641f6ac3a0aa1640fc linux-3.0/lib/decompress_inflate.c -13be68832f72b5ad203564841479e020 linux-3.0/lib/decompress_bunzip2.c -7f06c5897c4ae98b2378266c98a55671 linux-3.0/lib/decompress.c -b25f7df3b281dd7663dda02828bbb129 linux-3.0/lib/dec_and_lock.c -0d5ce015708e7455651e5e649079bd69 linux-3.0/lib/debugobjects.c -992f0476d040c8c33500d419148345c3 linux-3.0/lib/debug_locks.c -1e385957c80bcf3f05104e95c2462e1a linux-3.0/lib/ctype.c -b66d462f4e95f5e33f9219d4556dc2b0 linux-3.0/lib/crc7.c -73d3a11d43e45b73c14db3a962f2def9 linux-3.0/lib/crc32defs.h -69bb28a9c5dd18c79102a95177e71bf6 linux-3.0/lib/crc32.c -d066b544a87f73290b00be8538c87187 linux-3.0/lib/crc16.c -ce20480b427bbbb991bc6b16da85a78b linux-3.0/lib/crc-t10dif.c -0808da930a8e568d3261f8a599f61515 linux-3.0/lib/crc-itu-t.c -fa1c7842bfc14805be8c61d258654432 linux-3.0/lib/crc-ccitt.c -a674f4d5e2b47d42317bdf70c59b3636 linux-3.0/lib/cpumask.c -6e6f5c12d753ec4612a034aae978835b linux-3.0/lib/cpu_rmap.c -27ad21839a8560ffb776f8aa1d3636b4 linux-3.0/lib/cpu-notifier-error-inject.c -441cd13f5d417b78acf1022122cf8227 linux-3.0/lib/cmdline.c -1fd1b4bbf7163217ce8ed098b42b58e6 linux-3.0/lib/checksum.c -793678b55e2bdf77e008de5b883ac835 linux-3.0/lib/check_signature.c -3fdf41f5c89bef9111d9ccba2490b1fa linux-3.0/lib/bust_spinlocks.c -1e6dfefacd7aa19971efa7d84207a1ba linux-3.0/lib/bug.c -0c0eeed1bdf74b8759471b559672e741 linux-3.0/lib/btree.c -0c8fcff9a1cd71044a3df8b8b9c0fd54 linux-3.0/lib/bsearch.c -2c72907c43d860598d12492a22023587 linux-3.0/lib/bitrev.c -cd563d2878b9fc1901c8bb3c06ec2690 linux-3.0/lib/bitmap.c -1cf76b846a049aff53cec759cf0e83fe linux-3.0/lib/bch.c -d4538966db047452d4eb8cde14c74462 linux-3.0/lib/bcd.c -a2657ba42caca74b0a0e31a795e034f4 linux-3.0/lib/average.c -59ceb1e4dcfa5e97a9792cd252c40e75 linux-3.0/lib/audit.c -1e6bb75ea34df7ae3ca37d5280c37561 linux-3.0/lib/atomic64_test.c -ee9b41f0a0f512d7d7b914623991a16b linux-3.0/lib/atomic64.c -4b28f483a0c462ad0a02f01a9839a568 linux-3.0/lib/argv_split.c -46b43e43f1516ebd24942147a1bc62b8 linux-3.0/lib/Makefile -4f9fcadc7da3c5a8aa86e12670dbf072 linux-3.0/lib/Kconfig.kmemcheck -4c63bd62fe2b1eb189a7969dd89e1e47 linux-3.0/lib/Kconfig.kgdb -57779483dbf363bc43020c8584acac8d linux-3.0/lib/Kconfig.debug -1424c7de803a11513431847a2deaab07 linux-3.0/lib/Kconfig -bef034312b4c584a46618a3d8e8dd636 linux-3.0/lib/.gitignore -4e706cfc3fa6c65bdf314ea091b9b84e linux-3.0/kernel/workqueue_sched.h -cece20a7e279f1883154a8a8074a463e linux-3.0/kernel/workqueue.c -726acc846b3fdc1b565fed9f428c1278 linux-3.0/kernel/watchdog.c -7ffe2fa63e7809d780659306611aec21 linux-3.0/kernel/wait.c -c4ce0faba53b8d299f2f22c7165bb7f9 linux-3.0/kernel/utsname_sysctl.c -9c8b8812c552018fa8db377ebc107efd linux-3.0/kernel/utsname.c -c8716aa62c226c6a613b8608f6df6217 linux-3.0/kernel/user_namespace.c -0ed0efcab6602b824cecc5ebdd5797ed linux-3.0/kernel/user.c -a0fc41721156699bd04f870c4ee41cf2 linux-3.0/kernel/user-return-notifier.c -1d5a6b69d66c8bc70f30fc6caa2bc028 linux-3.0/kernel/up.c -97d66f502d5d54aef5b4b078ea547181 linux-3.0/kernel/uid16.c -abd2a94b0bfc6bbe6997c4cdc6204090 linux-3.0/kernel/tsacct.c -a383f0a74089d1d259004ce1e4c07aea linux-3.0/kernel/tracepoint.c -bc452b14d7e4b58a337a49547ba8f0df linux-3.0/kernel/trace/trace_workqueue.c -80ea230f350c7e4767bb97b1979521a3 linux-3.0/kernel/trace/trace_syscalls.c -2d87e0bb6090c601bfd664e2d020a486 linux-3.0/kernel/trace/trace_stat.h -56773b86d6cc824ed99cd2a26732de1c linux-3.0/kernel/trace/trace_stat.c -f659f8012c84b4759c23f3959ad988d8 linux-3.0/kernel/trace/trace_stack.c -d0bb71071e482e324acf9fd540abac79 linux-3.0/kernel/trace/trace_selftest_dynamic.c -d3d1c66ae89b9fea28c069f989ab7640 linux-3.0/kernel/trace/trace_selftest.c -5aa9a16513028b8c0057cb6430baeabf linux-3.0/kernel/trace/trace_sched_wakeup.c -3f626943fcd5699a21350720581d5a79 linux-3.0/kernel/trace/trace_sched_switch.c -088a2afbcde4cd9d78eb3262ab6c123f linux-3.0/kernel/trace/trace_printk.c -e2539e64ddfc39cd3edf0f3dc21f47e9 linux-3.0/kernel/trace/trace_output.h -058d5f10e3f9d61ee3e636b62a7aec13 linux-3.0/kernel/trace/trace_output.c -9f15e28cf8cd28da82be21d5532ab2d1 linux-3.0/kernel/trace/trace_nop.c -bb6e5e09849757b0a9a09a8b3170a8cb linux-3.0/kernel/trace/trace_mmiotrace.c -6f259017e5409995c5d588d8e2adfdcd linux-3.0/kernel/trace/trace_kprobe.c -a54c7372c658614e006df2ece155b6fc linux-3.0/kernel/trace/trace_kdb.c -ed38a6a57f58f5b38ac24b78188923ef linux-3.0/kernel/trace/trace_irqsoff.c -138411c77532c2470b265acf8a78840b linux-3.0/kernel/trace/trace_functions_graph.c -3f9c9224098ed77076379283aecf5487 linux-3.0/kernel/trace/trace_functions.c -f71a3faa55ac35329ef35ee5f0ed1575 linux-3.0/kernel/trace/trace_export.c -4b024f3e7ae0f3f8c2d9512f88489bff linux-3.0/kernel/trace/trace_events_filter.c -84368ddfcb3334afa78d4f1f7aa65845 linux-3.0/kernel/trace/trace_events.c -d7d51c281f8a05fe583651b6a6526d03 linux-3.0/kernel/trace/trace_event_perf.c -1b5049b58e5b69fa47798ad2a874d24a linux-3.0/kernel/trace/trace_entries.h -a0416884a71d6fa9f0a841b5eb4c5020 linux-3.0/kernel/trace/trace_clock.c -6d9d32f0041ddf418e5e94bdf40cac87 linux-3.0/kernel/trace/trace_branch.c -b94c4779ab1540bef023b3441381a5d9 linux-3.0/kernel/trace/trace.h -3cd1e1ca8f4d6bc4a7158ac7bd057250 linux-3.0/kernel/trace/trace.c -1ca6fbe32c722d9130208782d45cbe35 linux-3.0/kernel/trace/ring_buffer_benchmark.c -cd12459f94f5e5d48ee1d18b4268e1c5 linux-3.0/kernel/trace/ring_buffer.c -342c3eb3b21cb57b7034def579cb883b linux-3.0/kernel/trace/power-traces.c -405ce0855a8ba63923dce3b48a844bc7 linux-3.0/kernel/trace/ftrace.c -c63ee03fb244e4a0c6c8e7baede796bd linux-3.0/kernel/trace/blktrace.c -3ac0db0f153f23d1a4adfb0a8cb9be00 linux-3.0/kernel/trace/Makefile -3165943d4f5c537f764f10001f9dc564 linux-3.0/kernel/trace/Kconfig -d67b1c72749fd205a09ee66b004be24a linux-3.0/kernel/timer.c -f367060dd0375b8f366e27659030c1e7 linux-3.0/kernel/timeconst.pl -ec072b4b4d02ee5679bfe2a0b9a31cbb linux-3.0/kernel/time/timer_stats.c -66c98b747a16b4a13fc055441830dbb6 linux-3.0/kernel/time/timer_list.c -1d15a11e87d7b0bc70d8e93c29dc4caf linux-3.0/kernel/time/timekeeping.c -83c183b0e757521f009f75ff19f68e26 linux-3.0/kernel/time/timeconv.c -5bf0ac34bb1ee92af346fd065b759992 linux-3.0/kernel/time/timecompare.c -552eb62d78eb6e394586154751aee143 linux-3.0/kernel/time/tick-sched.c -86744bed3e6f9bf36936311b6bd4f589 linux-3.0/kernel/time/tick-oneshot.c -ed4a0e2ea3a5e40b7e2c921bef0bea39 linux-3.0/kernel/time/tick-internal.h -7b897b51d57a635f053c2c0d64682590 linux-3.0/kernel/time/tick-common.c -f216d4eca2417c9ace91c7c726c4e041 linux-3.0/kernel/time/tick-broadcast.c -e69d17633b4900c39962a7de8cfee7f6 linux-3.0/kernel/time/posix-clock.c -3336253506a85da80a789bb9b28df65c linux-3.0/kernel/time/ntp.c -18ca9b28fc0902edccebaba59d31a456 linux-3.0/kernel/time/jiffies.c -d5f6bc137c26450aa06b9ccd5cec5328 linux-3.0/kernel/time/clocksource.c -09d4b3a8cebf0c5e31eff1d27e6d6ba3 linux-3.0/kernel/time/clockevents.c -1fd73785b36486dbc9b80ea475bbed66 linux-3.0/kernel/time/alarmtimer.c -a72cfc4d5e41ac3cfcba42649583e044 linux-3.0/kernel/time/Makefile -c9fa246ddbbb0e12336b1356edf80223 linux-3.0/kernel/time/Kconfig -3fe278732eef385aa7d2f43f6e2986d1 linux-3.0/kernel/time.c -11e2736af7acd9b70694f75ac2792a1f linux-3.0/kernel/test_kprobes.c -9513c8026f0fef8c0ff3ea1f769c49e0 linux-3.0/kernel/taskstats.c -1f19598e63eb6dbaee589f2f373f0bfe linux-3.0/kernel/sysctl_check.c -8e249042dcbf6adf1602c628aea846cf linux-3.0/kernel/sysctl_binary.c -f1ce092c800b04110466d308d18a3c2b linux-3.0/kernel/sysctl.c -d93d7f86aa05d3fcee06ef5174fe7124 linux-3.0/kernel/sys_ni.c -c1b9094254af2852aa7433bc8bbd4841 linux-3.0/kernel/sys.c -43c7e4239e60bb0adeb4895363dfc104 linux-3.0/kernel/stop_machine.c -82572c013e3c874b0acb05dd5f48b9fc linux-3.0/kernel/stacktrace.c -de01a487f65513d8356f384742c6148a linux-3.0/kernel/srcu.c -e744b3403db0b7502071911938fc9fff linux-3.0/kernel/spinlock.c -5234ebbab3ab8644fb81092b9ded3a2d linux-3.0/kernel/softirq.c -f876ced957f8fea404ad88e85abe8cb8 linux-3.0/kernel/smp.c -3b02a8ef67bb285f5c565756384261ce linux-3.0/kernel/signal.c -c7bb3d7070b34569e1c99ee565f809a0 linux-3.0/kernel/semaphore.c -9fd5c0c922e34602e1b68dc71173e8c0 linux-3.0/kernel/seccomp.c -f305f4427ed5aca2d792e94de2363a2d linux-3.0/kernel/sched_stoptask.c -6991f1226dbf682f98b811f0a2312eb7 linux-3.0/kernel/sched_stats.h -60303a16b0a3054381381fa6c1e27ee9 linux-3.0/kernel/sched_rt.c -5e0f2f03096e93deb1d0b4d12069e3a6 linux-3.0/kernel/sched_idletask.c -0d2a2e22c2f663069a0312a4c334e6d6 linux-3.0/kernel/sched_features.h -aadcb11349b42f54ca672cc471562058 linux-3.0/kernel/sched_fair.c -bb055489b3bc1ba1d55f6fb9439736ff linux-3.0/kernel/sched_debug.c -67a974fd5326cab01ad212b6f09a310c linux-3.0/kernel/sched_cpupri.h -00ad3d72b4339954c2ba41176219fa08 linux-3.0/kernel/sched_cpupri.c -4e74a01434c65fc16f5ffb9a33080cbb linux-3.0/kernel/sched_clock.c -ad40b9cdb5390838e617feee64b8485a linux-3.0/kernel/sched_autogroup.h -5349811e1d54b5881e1a181ec7435bb3 linux-3.0/kernel/sched_autogroup.c -741bc1ff43b16a7fd9f23aada5a08678 linux-3.0/kernel/sched.c -e13504ea91324ca042c46944afec35df linux-3.0/kernel/rwsem.c -5d9c49cf318fcacc78bcb4f9bfc4b8c1 linux-3.0/kernel/rtmutex_common.h -f944395ac7e6a356fce23c2bfa9bbe62 linux-3.0/kernel/rtmutex.h -6f99956355c6aa26906198693828e15d linux-3.0/kernel/rtmutex.c -103af97026ea2a1084847ccea06fd5e4 linux-3.0/kernel/rtmutex-tester.c -ece6a488b259d523e031407097c457f2 linux-3.0/kernel/rtmutex-debug.h -f8daf8e916211d9b0b69692d301aa897 linux-3.0/kernel/rtmutex-debug.c -f0eb1b3f2e64fccb636107cadc2628b7 linux-3.0/kernel/resource.c -1fcc303c94e4cd3285d5dc758826c1ae linux-3.0/kernel/res_counter.c -cb82379a02e1d1187f13e0372c0f16c6 linux-3.0/kernel/relay.c -c56b63652865f761eead75eaceac1497 linux-3.0/kernel/rcutree_trace.c -eac8ed5c710c6ab29d6524e82b3636ba linux-3.0/kernel/rcutree_plugin.h -51a3136309b41c73bf4b4e48e54d859f linux-3.0/kernel/rcutree.h -5c7b7f0e84199476b0247d266fb1a35f linux-3.0/kernel/rcutree.c -f82c446910e068fe85d34c4fa8d97304 linux-3.0/kernel/rcutorture.c -c47189a3e8c847fce9e7d78afa55face linux-3.0/kernel/rcutiny_plugin.h -c2420e0fd5dc8ac15934da668fbb6e17 linux-3.0/kernel/rcutiny.c -c08ae0726918d6461b22b24efa916949 linux-3.0/kernel/rcupdate.c -681473823c7daf28e8c577e9bbf67017 linux-3.0/kernel/range.c -08b5fd0c2da0981dceb472f01dafe58e linux-3.0/kernel/ptrace.c -7cb7683b6ea997fa66d1679424e83834 linux-3.0/kernel/profile.c -2b3ec1d61992858e64389246f4d125c1 linux-3.0/kernel/printk.c -fe5bcf721dde0513a3c0db44f08b4eb8 linux-3.0/kernel/power/user.c -6adbec0b0cc77b6a043c91a666b539b2 linux-3.0/kernel/power/swap.c -896ba903fb05b21d82cecc21676a12dc linux-3.0/kernel/power/suspend_test.c -e4cf97cc7f915b823aa276d9d15b109b linux-3.0/kernel/power/suspend.c -f7313bc8d38645f9f31a02d41ec76eac linux-3.0/kernel/power/snapshot.c -6120df024dfde2c5de4f25f774df0c4c linux-3.0/kernel/power/process.c -7bfe07c2e260be6fe857a6c53cb1969b linux-3.0/kernel/power/poweroff.c -482eb08d3421e2c99ed0f4ab7e5b575e linux-3.0/kernel/power/power.h -2fcec31b4aa86efac7da5a4495be08ac linux-3.0/kernel/power/main.c -c349f7d56823a089cfce0eb0c140d49d linux-3.0/kernel/power/hibernate.c -0842228f0d527a9f2d08b85a4877c7c0 linux-3.0/kernel/power/console.c -b24a492b01c78013066260431061468e linux-3.0/kernel/power/block_io.c -a05b0ca0ac86e18dbd1374e43504dc6b linux-3.0/kernel/power/Makefile -5e60453212c789404758457c3dc5fee9 linux-3.0/kernel/power/Kconfig -b01988043c5efce631a4d0c5f3e0146d linux-3.0/kernel/posix-timers.c -faf2d1512a5ded16bd9ef8c4061c34c6 linux-3.0/kernel/posix-cpu-timers.c -842e1c2b9607caf60e90c384e3803d82 linux-3.0/kernel/pm_qos_params.c -46c03343a1f8fa84f6ef73cccb901c20 linux-3.0/kernel/pid_namespace.c -40268abd4e0588ea1265a8ec6c0b51a3 linux-3.0/kernel/pid.c -f61acf56fde0e0a15722bb92cea01b1d linux-3.0/kernel/params.c -6379d313c750098fa44a040005f78dae linux-3.0/kernel/panic.c -73d7a0762b2f973b38e042ae07afa77c linux-3.0/kernel/padata.c -a3a41b765cee3728504e5b89c72ffa9f linux-3.0/kernel/nsproxy.c -686b642a7faa9ba8f7c8839a551aa5d4 linux-3.0/kernel/notifier.c -d4adb640dce813b0e05fcf4268f5f759 linux-3.0/kernel/mutex.h -33c1733ba0bda810492c5194dce3207f linux-3.0/kernel/mutex.c -4f4a9d83471dfbc3bdc06f483dcec7e5 linux-3.0/kernel/mutex-debug.h -b2366654878b30d50b1d081219c269af linux-3.0/kernel/mutex-debug.c -c75c706e0d0aec42e0d75880e451ec2b linux-3.0/kernel/module.c -a79cc2f0a8734efd484c1035a011e94c linux-3.0/kernel/lockdep_states.h -35f455a34b3dc35d5e8395f39b98c4f1 linux-3.0/kernel/lockdep_proc.c -a6eac4df71773d41da23e906dbbc3680 linux-3.0/kernel/lockdep_internals.h -f9a2b0fff7b2d5892b64e067149f48a4 linux-3.0/kernel/lockdep.c -e5c40a23e364a37ad9a1d4bab0f184f0 linux-3.0/kernel/latencytop.c -8eea8a73d12f7d389d97dec82a51ddea linux-3.0/kernel/kthread.c -13ddc8851d4d767c7fc4a37b8e24516f linux-3.0/kernel/ksysfs.c -54c9ab272675fc2f139a1fa94b5fdd7b linux-3.0/kernel/kprobes.c -d3323dd2e1d6c3b2cc061cae893c4b57 linux-3.0/kernel/kmod.c -4410f87fc751ba02c5c04acc2b8f109d linux-3.0/kernel/kfifo.c -4498a6af841c2685b7e5813735e3f124 linux-3.0/kernel/kexec.c -611106ef66be99beb1340c5c2e524ecb linux-3.0/kernel/kallsyms.c -eda08f3178b216504a1202743bb002d6 linux-3.0/kernel/jump_label.c -430c02856ef4ad9abbec0d6181a021eb linux-3.0/kernel/itimer.c -41af5559cb392a1ae69477780d1f6b4b linux-3.0/kernel/irq_work.c -0290848da0002d8e7c737862b460aa1e linux-3.0/kernel/irq/spurious.c -fdd9e1a9b49221231a4b19b5edd28857 linux-3.0/kernel/irq/settings.h -f9b9a9a4adcc2cf85870e77fa33031c9 linux-3.0/kernel/irq/resend.c -b92cc816ce269af1e5670b104e67fe7f linux-3.0/kernel/irq/proc.c -74249b962cbd07d6f41767026090817e linux-3.0/kernel/irq/pm.c -07b5ae9061e5e038775f4da088882b52 linux-3.0/kernel/irq/migration.c -39794a4a30ae3dd843a214c473eaf0ef linux-3.0/kernel/irq/manage.c -87a48d0aa273cdeb02c962935a011596 linux-3.0/kernel/irq/irqdesc.c -a5b80a852b610bfd960abde19d3cd207 linux-3.0/kernel/irq/internals.h -ab954714426e375944d84d09ea5287f2 linux-3.0/kernel/irq/handle.c -cee59c5d13bcce7aabc69305c4c1d9e4 linux-3.0/kernel/irq/generic-chip.c -ebcbf009f41607d9a8f737b3a9dba2ca linux-3.0/kernel/irq/dummychip.c -2433f99bbd4e461b0e304b8a87d6c0dc linux-3.0/kernel/irq/devres.c -08058cffd9106c2d3f9f8ac10c31b757 linux-3.0/kernel/irq/debug.h -f6c4e8cafdb16e11694e3df59207dfa9 linux-3.0/kernel/irq/chip.c -ecd30a5bedfbd612805a1e5924a038a5 linux-3.0/kernel/irq/autoprobe.c -5249a6450544b6c51a75b0f0eac37409 linux-3.0/kernel/irq/Makefile -dec4fc8a5403b810179862b83199bdb4 linux-3.0/kernel/irq/Kconfig -e215cdf94210d677f5296ee58abfb62a linux-3.0/kernel/hung_task.c -fd0a62cac6b53bf01cb993449df67bf2 linux-3.0/kernel/hrtimer.c -7036633d9b7d0b409beb67be30096b44 linux-3.0/kernel/groups.c -4283bd024fa9e4c0a097ad4bc25d65a1 linux-3.0/kernel/gcov/gcov.h -cae42140ccc04e144f315c05f1427c60 linux-3.0/kernel/gcov/gcc_3_4.c -d573a630c6bc351947722aed873e2552 linux-3.0/kernel/gcov/fs.c -b87d5292002e900c926c89e5ca2f3d1b linux-3.0/kernel/gcov/base.c -cbc0217a988b970cc823d63b74885c49 linux-3.0/kernel/gcov/Makefile -0be93aaffce9759b793bbf7ba1b384b9 linux-3.0/kernel/gcov/Kconfig -06901bc21855dc2bd59708af30d4bd66 linux-3.0/kernel/futex_compat.c -d9cbd567b220f1d14599ca2ff6ea739e linux-3.0/kernel/futex.c -ec680a004ede1d4a64a50136d841ed45 linux-3.0/kernel/freezer.c -00c41a7cea0bf2e684d0a136097b88a9 linux-3.0/kernel/fork.c -8a240b38542822b20d04d500c0d81a0b linux-3.0/kernel/extable.c -683f11dcd86d7672bf11e89b8996b10f linux-3.0/kernel/exit.c -919013a6e4523b5ce162e710ba4b512c linux-3.0/kernel/exec_domain.c -d22b0e7842372e06b23cfbb3690769be linux-3.0/kernel/events/hw_breakpoint.c -3abec2a04c2968d9d3622e7fc5bea2e8 linux-3.0/kernel/events/core.c -06ffe1271c704859480b528928d5b896 linux-3.0/kernel/events/Makefile -a87a567f1b043e18ca32378175e9e9d3 linux-3.0/kernel/elfcore.c -35898a550706be3ff878c6b53134da2f linux-3.0/kernel/dma.c -936410d905222935eac3c93cc153693f linux-3.0/kernel/delayacct.c -e0cf7be64001a860c30c9daabd7b3c73 linux-3.0/kernel/debug/kdb/kdb_support.c -8468b85f367d107cf802a81bca234c63 linux-3.0/kernel/debug/kdb/kdb_private.h -e26633e6287b21eec464ce2d116bc623 linux-3.0/kernel/debug/kdb/kdb_main.c -9dd35a9f72c26757c8c32f5c776da92b linux-3.0/kernel/debug/kdb/kdb_keyboard.c -cf77e181bd3c68bc64ded34632cdb22f linux-3.0/kernel/debug/kdb/kdb_io.c -77d7d073259e639ab2c90c4cad38075e linux-3.0/kernel/debug/kdb/kdb_debugger.c -9e692fde98778faf61dc45682f160b4b linux-3.0/kernel/debug/kdb/kdb_cmds -6657584e15acb3f1537bc2ce741ea486 linux-3.0/kernel/debug/kdb/kdb_bt.c -829945ef603acdb2d26b2e065376db11 linux-3.0/kernel/debug/kdb/kdb_bp.c -626b6adad2d6765acbb81ddcabc8583c linux-3.0/kernel/debug/kdb/Makefile -aeda4c2addcbd3021fb55c79966b3840 linux-3.0/kernel/debug/kdb/.gitignore -5cad0b8230b5cda3f36b878f78d745cf linux-3.0/kernel/debug/gdbstub.c -2660fc2059ea7be1fea70248498abef2 linux-3.0/kernel/debug/debug_core.h -40a62faa72be152f02cbfcb70763cfac linux-3.0/kernel/debug/debug_core.c -b2f2afb7a7af9569614d86328dc09b87 linux-3.0/kernel/debug/Makefile -9e0cf1b171644a7c972e55802c44988a linux-3.0/kernel/cred.c -e6a0be97292a5cbb921d1dffb3c52755 linux-3.0/kernel/crash_dump.c -cdc94b92ad7ee46a79c393b180623baa linux-3.0/kernel/cpuset.c -e94358797686bc9140900c958974be85 linux-3.0/kernel/cpu.c -294846625451ccee1079a177a9f22db3 linux-3.0/kernel/configs.c -b875baa2f3c0b5bca808c055af81588a linux-3.0/kernel/compat.c -83af6b409b0b612e54ce85c6fe6fc68b linux-3.0/kernel/cgroup_freezer.c -ff057a1ffb7c610c8b14fc41b2319195 linux-3.0/kernel/cgroup.c -79ed15b735fe673ba08ead50240bcff3 linux-3.0/kernel/capability.c -2a91caadf4136d7eb7eed6ca10faf1a6 linux-3.0/kernel/bounds.c -5205ffc25ce470739b17b7ee0e200c6b linux-3.0/kernel/backtracetest.c -f036fa4a7521374125533718423ba688 linux-3.0/kernel/auditsc.c -9a7b0859af2d28be2a4f1dca204b58c4 linux-3.0/kernel/auditfilter.c -a4886c25ace621410e1777af0d92ee2d linux-3.0/kernel/audit_watch.c -882579503da78e1fb615540ca60d6e65 linux-3.0/kernel/audit_tree.c -80cbaf7f14a6a840281ab40fce16dc35 linux-3.0/kernel/audit.h -0d19b3899446762c5f0779866392cf86 linux-3.0/kernel/audit.c -ae040b40641184390dde354abd64b7df linux-3.0/kernel/async.c -ee6812a2a659509a38afccbc518fa61f linux-3.0/kernel/acct.c -6a69aef91881c4b3fbcc82097df14697 linux-3.0/kernel/Makefile -919c4c30fe262b5871cadc808f1e584d linux-3.0/kernel/Kconfig.preempt -686c59f040b5de3dcc26d0fb44e4b904 linux-3.0/kernel/Kconfig.locks -8fcb042b142c63563405f83b0aef7500 linux-3.0/kernel/Kconfig.hz -77ee1d2c139ff9a16bf2ced0ef3a80f6 linux-3.0/kernel/Kconfig.freezer -aceb78589d13296bc41b83ac1549eb0d linux-3.0/kernel/.gitignore -676a26a0da2abe1cfc2605877e39e539 linux-3.0/ipc/util.h -7a233f00c7efbeff35004c80b42607c6 linux-3.0/ipc/util.c -aa3bb3a2944cd587317e88c6d311d7fc linux-3.0/ipc/syscall.c -bc5421b10dd24eda5882cfe6c1c9b3c6 linux-3.0/ipc/shm.c -8e9fd522e4c3cee43a20a079ee2a7882 linux-3.0/ipc/sem.c -0369c01a13cbb09cba1ac4d831b6fce6 linux-3.0/ipc/namespace.c -56c06a5634eb1c32e9edc174ae54f057 linux-3.0/ipc/msgutil.c -22de321e77785b7c7d9816e7bea863fd linux-3.0/ipc/msg.c -288e09dca44f7d4a11496ec3c2e8c0b4 linux-3.0/ipc/mqueue.c -26bad075f9f00284e72b393cd589a727 linux-3.0/ipc/mq_sysctl.c -dc915f6073fa37a63c2ec24fc2a5d71f linux-3.0/ipc/ipcns_notifier.c -367a9d31a0198ec05c6390b59bdc8d63 linux-3.0/ipc/ipc_sysctl.c -d22fa5ceb47ca4fcc54d38d7b68729a3 linux-3.0/ipc/compat_mq.c -4544332cb74e0fc22b9e41d6eba3f045 linux-3.0/ipc/compat.c -c69956c5c74cb6da65ae0255ae211c0b linux-3.0/ipc/Makefile -ca819436f9be7f46d4b49267149691eb linux-3.0/init/version.c -2943c9173b248324ff2ac424fe31d789 linux-3.0/init/noinitramfs.c -dd863399dc922790cc8f4b218885c672 linux-3.0/init/main.c -d046f917eb68ab0c902c97f31798bf7c linux-3.0/init/initramfs.c -719e093eaa624235a9e684d093272a2e linux-3.0/init/do_mounts_rd.c -10b9eca5d94091be3a85654160636e76 linux-3.0/init/do_mounts_md.c -cd18fd07d9957bff02f03603aff84d61 linux-3.0/init/do_mounts_initrd.c -5ab9de62c2593fc75fd5bc62257fc95f linux-3.0/init/do_mounts.h -85f48d9e5b24d9785b32032fd7434e3d linux-3.0/init/do_mounts.c -c6c9ed4349463504538ad120228269f2 linux-3.0/init/calibrate.c -879d5a2328cd8da71dc65b52d2f79ce0 linux-3.0/init/Makefile -cdbdeab8a33e06cc3789e6787afe457d linux-3.0/init/Kconfig -908f1dd705a044f08f667ff113554179 linux-3.0/include/xen/xencomm.h -e6f3745b817f9fcbbb6176d999d2ee23 linux-3.0/include/xen/xenbus.h -ca901464974aa5d5457b50b2582506e6 linux-3.0/include/xen/xen.h -aa245880bb02fd6655c7405c0a0c1918 linux-3.0/include/xen/xen-ops.h -74dd39db2d740dbee496fbf12ceac643 linux-3.0/include/xen/swiotlb-xen.h -0b6f9535dea1e808c707f0ee8f15c535 linux-3.0/include/xen/privcmd.h -f6ba8f52d535bfbf9eab6cf27437f409 linux-3.0/include/xen/platform_pci.h -6346566e86ec35f5b844176105598107 linux-3.0/include/xen/page.h -6b2d48f4aed2836df82435abcfcea282 linux-3.0/include/xen/interface/xencomm.h -a91db2cef038df4ccec4ffde6144c14e linux-3.0/include/xen/interface/xen.h -65b04742663053e4313c290fdfca9030 linux-3.0/include/xen/interface/version.h -528f4b4e6c86d8361602740cb054c192 linux-3.0/include/xen/interface/vcpu.h -9c5c37f2376acce44aa67f8d61ca762d linux-3.0/include/xen/interface/sched.h -e6fe5de49f1a2d176876d164fc481692 linux-3.0/include/xen/interface/physdev.h -9ab2ae0100a4a89970634c2d69b1005e linux-3.0/include/xen/interface/memory.h -ea4e75e3942213ddf596a73f29a9993e linux-3.0/include/xen/interface/io/xs_wire.h -3db38481082a398db8b7d6114ce193c8 linux-3.0/include/xen/interface/io/xenbus.h -163d65f13e79aeb35621874673a6ee0b linux-3.0/include/xen/interface/io/ring.h -a74a0a089202855450a2a5c063989842 linux-3.0/include/xen/interface/io/protocols.h -23f673e25cb72c9444a2b516a7ea0119 linux-3.0/include/xen/interface/io/pciif.h -12a1f6451b91d202d6dcb9d5215ddc20 linux-3.0/include/xen/interface/io/netif.h -7bf529ec9c0fb5d1f60824a52cd90dab linux-3.0/include/xen/interface/io/kbdif.h -f4184d7f943f104dfb732a86d767b524 linux-3.0/include/xen/interface/io/fbif.h -20faa207967ad9243c5832b76eab5e27 linux-3.0/include/xen/interface/io/console.h -b95e47b5354aff375c554b3bb15b4516 linux-3.0/include/xen/interface/io/blkif.h -c88a488fbd7eaa77d495946057f19cb7 linux-3.0/include/xen/interface/hvm/params.h -c8d03900b71b05efa573bb134748f3b0 linux-3.0/include/xen/interface/hvm/hvm_op.h -b01cde6776e67584fd4ec5885cde742c linux-3.0/include/xen/interface/grant_table.h -c54d6bb0c46e85c5d48c01ac3fc6e503 linux-3.0/include/xen/interface/features.h -2ddb33e784f8e27983f5060202196fde linux-3.0/include/xen/interface/event_channel.h -959759fced36cfe53270addefc621d9b linux-3.0/include/xen/interface/elfnote.h -55b1c8036cec657b0e83bdbf8d8c85dd linux-3.0/include/xen/interface/callback.h -cd00d9a67095170c227a33a0866b94f2 linux-3.0/include/xen/hvm.h -97fb8f528f7044ebba0fc362259bfc23 linux-3.0/include/xen/hvc-console.h -a164bb184bf6329f84fada5f66655832 linux-3.0/include/xen/grant_table.h -184310ddd2dd4a236437107887a3cdb3 linux-3.0/include/xen/gntdev.h -a4b80c706017451d21c7827e23df3e04 linux-3.0/include/xen/gntalloc.h -b432284a6ae358d2fec6a3c67b5054e5 linux-3.0/include/xen/features.h -eb8d9b7615a9734fbf13ce3116d800c6 linux-3.0/include/xen/evtchn.h -f78d238f786cfd88e9781c8206372d9b linux-3.0/include/xen/events.h -158c10c0b0fc20e3291277006fe5b5ea linux-3.0/include/xen/balloon.h -5edd0ffa710770aecd64cad92b1cfe6f linux-3.0/include/xen/Kbuild -d080249deb147a12b9f0dd6163f0dd36 linux-3.0/include/video/w100fb.h -cf6026991729286c5932a93fe58af1c9 linux-3.0/include/video/vga.h -140898b629aec4cba1dfb0ccced465b8 linux-3.0/include/video/uvesafb.h -7039c0321737eef26f8fae22728600bd linux-3.0/include/video/udlfb.h -78a679bda1e7399665f1d9c559e0404c linux-3.0/include/video/trident.h -2d72ae5b3c3d75f03e8a9544a4ce1f25 linux-3.0/include/video/tgafb.h -b5c2a40ce647c9e071e6c6c00414b81a linux-3.0/include/video/tdfx.h -bf7beb43b15f98449d41482656bf324c linux-3.0/include/video/sstfb.h -732ae64d25ef2586396a67aa11f7aaf1 linux-3.0/include/video/sisfb.h -2679dd694ec67120b858f9f774d8ad7c linux-3.0/include/video/sh_mobile_meram.h -7ff9f5356b822504f717a174b9c7cd6a linux-3.0/include/video/sh_mobile_lcdc.h -f2c90e7f484fedb637d0e1631c545850 linux-3.0/include/video/sh_mobile_hdmi.h -d6cb097b3c2ccb0def0ab063b1addff9 linux-3.0/include/video/sh_mipi_dsi.h -f07d0599faab9dd30469c11993a89df2 linux-3.0/include/video/sgivw.h -e3e22a1f289b5b957146735af35033e8 linux-3.0/include/video/s1d13xxxfb.h -68b2374cd7db7c095345359839a0e583 linux-3.0/include/video/radeon.h -5b9f4602ef61949604b2dcc999327d17 linux-3.0/include/video/pxa168fb.h -8195bfdb095ca00b659a7fac94be1c8f linux-3.0/include/video/pmagb-b-fb.h -b177850661b6fc35de93fcdf6b48de0b linux-3.0/include/video/pmag-ba-fb.h -8b6442fb64b998ff916a4d9c7a63cc46 linux-3.0/include/video/pm3fb.h -bff39bb7b1db886fdf245524dbcdcd77 linux-3.0/include/video/platform_lcd.h -f806afea28969b7e574d7f37ec4eeb16 linux-3.0/include/video/permedia2.h -cdfbc81dd6c9e4f3dffc4f5d96231729 linux-3.0/include/video/omapdss.h -e225e68c7eee484b4f0bcb33917041ac linux-3.0/include/video/omap-panel-nokia-dsi.h -e678cf9f7b4c6c3bdda0ae61e53742ba linux-3.0/include/video/omap-panel-generic-dpi.h -04b4afe084f8a776de27baf18e6f8a44 linux-3.0/include/video/newport.h -94889f244846033567fefe782549e019 linux-3.0/include/video/neomagic.h -f7ace84c7ec65c114bcaefc055e2e7c2 linux-3.0/include/video/mipi_display.h -95fd21704cb44620aa6f5a3d3e721bd0 linux-3.0/include/video/metronomefb.h -25f68fbbaba4d850630e5dc937390526 linux-3.0/include/video/mbxfb.h -73887fe9ec6b83959aa17da5366db658 linux-3.0/include/video/maxinefb.h -c8e470cd25965eea4e5685ac96ee9596 linux-3.0/include/video/mach64.h -52fcfa7933817c30641cbf3f0dc42bae linux-3.0/include/video/kyro.h -13e7a13727c6d63b1e37ef2dec72a572 linux-3.0/include/video/ili9320.h -2e880343e48a1b9bb37c9fed3dcc454f linux-3.0/include/video/iga.h -ac546d970fccc5946297e9f7840f27b7 linux-3.0/include/video/hecubafb.h -c5413f7b2e0901af1891482f4dedb42b linux-3.0/include/video/gbe.h -d7dac7471360a0783b789cf113ae36b1 linux-3.0/include/video/epson1355.h -138f9e3ae5e6026a9aab4b715fd75393 linux-3.0/include/video/edid.h -fd3ed62f8b7ed1988c6ac445712b175f linux-3.0/include/video/da8xx-fb.h -1776f519592d7336589c2bcbe2edc481 linux-3.0/include/video/cvisionppc.h -85f33eb7eb58fd9479499a595cb6ab5e linux-3.0/include/video/cirrus.h -f84cd2cade730c5c086f103ae1f590c2 linux-3.0/include/video/broadsheetfb.h -c3be01168179b2aa0560936872c24fd7 linux-3.0/include/video/aty128.h -a3c8a941270632e6808b5ac2de06d738 linux-3.0/include/video/atmel_lcdc.h -fa57017e84e3c5005415683acc0f396c linux-3.0/include/video/Kbuild -ebca650ea4a339c4cc3eac011877578f linux-3.0/include/trace/syscall.h -8f23fd68451067893d3bca8b3fe2caf1 linux-3.0/include/trace/ftrace.h -c63c7854ee28338ec54022ee11f28bfa linux-3.0/include/trace/events/writeback.h -9d426dce852c988c25a46505d7a0288a linux-3.0/include/trace/events/workqueue.h -abed61c9df62d451ee03deed3905548b linux-3.0/include/trace/events/vmscan.h -00932da00b08ffa365ee217bd1ffa288 linux-3.0/include/trace/events/timer.h -ce840b3c1e2445e5f02cbc302b777a85 linux-3.0/include/trace/events/syscalls.h -f81abfc4a084410530f12219c9d8b5a3 linux-3.0/include/trace/events/skb.h -4f7e79dffff5a30828d8542648bc5d71 linux-3.0/include/trace/events/signal.h -3cd15f30f4159abb390c9707591d5838 linux-3.0/include/trace/events/scsi.h -c0aaf0c2a3fc59bef15c8f579ee96b44 linux-3.0/include/trace/events/sched.h -abbe7aab2e52e7f0d6f5fc135cb566f7 linux-3.0/include/trace/events/regulator.h -1b1b8df3f1ad247475933f420a8ed27f linux-3.0/include/trace/events/power.h -9ce000bee89938dc0b96abb730eff01a linux-3.0/include/trace/events/net.h -8523b8726649023825d2de08587fedbd linux-3.0/include/trace/events/napi.h -ea7f17a0fe055a293305ebac4af02867 linux-3.0/include/trace/events/module.h -cbaa5fb4f7f6c5dc691b8f39c05ec7a0 linux-3.0/include/trace/events/mce.h -df4342dd076e4e99ecfac2496b595561 linux-3.0/include/trace/events/lock.h -9ce86b27ea815a31d8be75394c6bc394 linux-3.0/include/trace/events/kvm.h -5011735db47341a749a6810e9c64ece9 linux-3.0/include/trace/events/kmem.h -2571ecac9fc95fb2ae6bc32b7430c839 linux-3.0/include/trace/events/jbd2.h -79e9b5f90789d12af1e7384d485f8aaa linux-3.0/include/trace/events/irq.h -86255193d94aa17f6d16ac3528c45844 linux-3.0/include/trace/events/gpio.h -9aae6202702e4715440b015964645045 linux-3.0/include/trace/events/gfpflags.h -8a12b7c87a4f8f68508036b9f53ee667 linux-3.0/include/trace/events/ext4.h -98401ed33fe660617e51f1e9e08e22fc linux-3.0/include/trace/events/compaction.h -f41deb898692dc2b27d9d4ab69939d18 linux-3.0/include/trace/events/btrfs.h -63575eab9838708f8fb0aeb0c7353b30 linux-3.0/include/trace/events/block.h -bdd3932dcfc098636ccc0243a312a33d linux-3.0/include/trace/events/asoc.h -98cb061cbfa8e456c6609c1993a6a888 linux-3.0/include/trace/define_trace.h -aa92b0dbeb85c01391c501ad1d5e34cb linux-3.0/include/target/target_core_transport.h -73c0f4fab3076213129a060e02143c1c linux-3.0/include/target/target_core_tpg.h -3de8e53df4977b5e62a0c452cd913b20 linux-3.0/include/target/target_core_tmr.h -a4cdae2e731c4bea5bfe64080845e483 linux-3.0/include/target/target_core_fabric_ops.h -cc9a82c4de363881790d227d32685916 linux-3.0/include/target/target_core_fabric_lib.h -6d0ea21c6340dc7716d680e491c66bed linux-3.0/include/target/target_core_fabric_configfs.h -6ffeca082948eab32ceb91ccf7b73e97 linux-3.0/include/target/target_core_device.h -7cea8513efe36913ec573ec796335207 linux-3.0/include/target/target_core_configfs.h -1fa6b7f3bd778c4dc5f471a54c80788a linux-3.0/include/target/target_core_base.h -dc8c9be79738cf4709dddcd4a398cad1 linux-3.0/include/target/configfs_macros.h -e94606fb08e5c5368cbfbc9251273244 linux-3.0/include/sound/ymfpci.h -3e59e76ea89d5603610e329700d1997f linux-3.0/include/sound/wss.h -f41abc005f7b3f08787a44f4c1a87076 linux-3.0/include/sound/wm9090.h -3d86466eef98b2c9f2ed7d994a2ee104 linux-3.0/include/sound/wm9081.h -74d4a5ad47cb47d24a27b06b63547092 linux-3.0/include/sound/wm8993.h -57d7b02f47a000bc19e22ef70ff42da8 linux-3.0/include/sound/wm8962.h -e4dfa0538d3e522816b0e16384a9fdc0 linux-3.0/include/sound/wm8960.h -f0912386ced678b761d2bb6f207c0fdc linux-3.0/include/sound/wm8955.h -0c52db6b6d3cdc98ef80a7bcf94aad7f linux-3.0/include/sound/wm8915.h -abb7ed87b16d9498cc020a3c6db79aaa linux-3.0/include/sound/wm8904.h -0a9f9fce09a47350d0ce1b68b3f3cc4d linux-3.0/include/sound/wm8903.h -e676f7f9083d9b6010f99c18ff9afd35 linux-3.0/include/sound/wm2000.h -f16d6463cc40209a195afb2b5fb3696d linux-3.0/include/sound/wavefront.h -4b5b795b895c3f9d7f28b1f5326bdea1 linux-3.0/include/sound/vx_core.h -052187e50954797ee8eb26eb0fc391ec linux-3.0/include/sound/version.h -f9d2181bb3c6ea9f3f0e1fd41885892f linux-3.0/include/sound/util_mem.h -cddb268241ea0d71d8ef08d8dcab2ce4 linux-3.0/include/sound/uda1380.h -3ecbc3a9d936ed139838ffefe2e1b044 linux-3.0/include/sound/uda134x.h -8af6354e3804378d821ba8cbb83b3fc9 linux-3.0/include/sound/trident.h -e0e865655bb7bc13885383b61861f998 linux-3.0/include/sound/tpa6130a2-plat.h -4cd09d2c078ba7d213ac63757a378c81 linux-3.0/include/sound/tlv320dac33-plat.h -5052e7ff55ab7458d05cb06b6cf68c12 linux-3.0/include/sound/tlv320aic3x.h -a1019a81cca7f81fc5c33e53fc534651 linux-3.0/include/sound/tlv320aic32x4.h -6d4d3730071cd858669d3e7895fef7d2 linux-3.0/include/sound/tlv.h -0c715fe10b3c661bc46de02033360858 linux-3.0/include/sound/timer.h -2b12011a88951940afda134c234a83d4 linux-3.0/include/sound/tea6330t.h -480b2a5b50b5b6b3ab2c8ac575f4c443 linux-3.0/include/sound/tea575x-tuner.h -b65a7c9df84e63cd14bc15cc274c54dc linux-3.0/include/sound/soundfont.h -5b967a4756f3c76bb1c9b7b7f17d93f4 linux-3.0/include/sound/soc.h -a8f6b1c4bf5c1ebd3bddde65edb14021 linux-3.0/include/sound/soc-dapm.h -cb15003188d8f7a60c63873ba4014d21 linux-3.0/include/sound/soc-dai.h -f4df5dffeed3350b20a8fc4bd3eee5eb linux-3.0/include/sound/snd_wavefront.h -7a8b24fbd83e4226114078e7c6a43ebb linux-3.0/include/sound/sh_fsi.h -a0ae2da7685c76edc5e8923c1297067e linux-3.0/include/sound/sh_dac_audio.h -40847d908a77fb814e126106d737f0a7 linux-3.0/include/sound/sfnt_info.h -e7e44a1609ed7f1773f33e8d4ddb51f0 linux-3.0/include/sound/seq_virmidi.h -7a978bbfd740c7beafab17e6d52f822f linux-3.0/include/sound/seq_oss_legacy.h -51ce2e90dbfe6e939e453641e44ee1b6 linux-3.0/include/sound/seq_oss.h -6e4f47817fc0b87d36117294748fdf11 linux-3.0/include/sound/seq_midi_event.h -1dc70d96fad115c560737ebdd33f94f2 linux-3.0/include/sound/seq_midi_emul.h -36668c6fc173c332cdcce16829fb0d28 linux-3.0/include/sound/seq_kernel.h -7ff43e2bd3950f7d700fd1aaeaf56986 linux-3.0/include/sound/seq_device.h -46c054f744e692188ed45ed1000d6da3 linux-3.0/include/sound/sb16_csp.h -e3e967c2181b28ae0d6368261001b24c linux-3.0/include/sound/sb.h -f5b678bf0b46604ba622e5054a65c5c2 linux-3.0/include/sound/s3c24xx_uda134x.h -f995cd2cb4b326001fae3d1c4d4b87f9 linux-3.0/include/sound/rawmidi.h -f341b88a431615eb8c425f5e74a8674b linux-3.0/include/sound/pxa2xx-lib.h -3d0447a9bc285b9c8cae9372fee180df linux-3.0/include/sound/pt2258.h -fb026b97981347b6a12de442359c68c8 linux-3.0/include/sound/pcm_params.h -b54a7d3d261032ab9976e161f92a391c linux-3.0/include/sound/pcm_oss.h -ae06e3d9a4fd76890851937b84821fb2 linux-3.0/include/sound/pcm.h -626787118f96e45f26554924c8e55314 linux-3.0/include/sound/pcm-indirect.h -1eda38eccf393acdb6ac3e657c899432 linux-3.0/include/sound/opl4.h -f8f86dee7c4d4ef78934e4736a02e372 linux-3.0/include/sound/opl3.h -951196df642cc1695c63e68ee7ab1029 linux-3.0/include/sound/mpu401.h -e14ea2cb0721c2b3d25d0e47456f2553 linux-3.0/include/sound/mixer_oss.h -8b68b9f53856c3d842150ca36a91289c linux-3.0/include/sound/minors.h -286269349e42241268ad597134d53d67 linux-3.0/include/sound/memalloc.h -dcb9dd30159c1ea5f45ed023f3b90a0b linux-3.0/include/sound/max98095.h -700a9c79bbf0167aff5b08c212e36f79 linux-3.0/include/sound/max98088.h -43869f3b1ac23918606802f311983c81 linux-3.0/include/sound/l3.h -c6a6b1b3cfe0168061caa29a0df2a421 linux-3.0/include/sound/jack.h -e573b78079101b5a7caccffad47e6739 linux-3.0/include/sound/initval.h -1562563b051561a40404ad9eea070064 linux-3.0/include/sound/info.h -9b908903c67a793ae98570adc8a80a4f linux-3.0/include/sound/i2c.h -7fc3da380f551b7422168255eb34d280 linux-3.0/include/sound/hwdep.h -645ba95301b6de53d08829794f22d396 linux-3.0/include/sound/hdspm.h -23ce46672bfdb7ee60fdd01181248866 linux-3.0/include/sound/hdsp.h -9604256757dfd474ca3d6c92eb8edf3f linux-3.0/include/sound/hda_hwdep.h -aa792a7c9e7a254d227604124c14230c linux-3.0/include/sound/gus.h -43daec7d184f7eaa8d2a04731ec8080f linux-3.0/include/sound/es1688.h -0b59706d6b77106eb666c80995b90313 linux-3.0/include/sound/emux_synth.h -11957741a7e930c5c9de2820a33fd732 linux-3.0/include/sound/emux_legacy.h -6277c492fb3dfb48b496c0b3b2a46017 linux-3.0/include/sound/emu8000_reg.h -ac37eedbf3a30326e46df06189959c79 linux-3.0/include/sound/emu8000.h -30c9a46e099b0c3dcb9c72dd8cfdf28d linux-3.0/include/sound/emu10k1_synth.h -c0d96989e696cc086fb24ad9b6733571 linux-3.0/include/sound/emu10k1.h -126d6fd910d4a224206645d7d927aa1c linux-3.0/include/sound/cs8427.h -673715f252169068654c1a22d4341278 linux-3.0/include/sound/cs8403.h -c013ca72f22d2d08356e0407917155c0 linux-3.0/include/sound/cs46xx_dsp_task_types.h -58a20f7d8e5af6518ca65714974a4b20 linux-3.0/include/sound/cs46xx_dsp_spos.h -eb0a21f6a0e8aab9b001d4da6a65e88e linux-3.0/include/sound/cs46xx_dsp_scb_types.h -b2cb947f7c1fcc7e9d6c30e23c09846e linux-3.0/include/sound/cs46xx.h -a3b6eb3b3bb4f8261e739bef9700d358 linux-3.0/include/sound/cs4271.h -9f35211ae76b574141154a97cf4cb7aa linux-3.0/include/sound/cs4231-regs.h -dda2008beb40f923786ff24829c35d8f linux-3.0/include/sound/core.h -32b3dd2c69d25b4bb527c29476257e40 linux-3.0/include/sound/control.h -1ee90e83c3f1764a044048d158b89cc0 linux-3.0/include/sound/atmel-ac97c.h -cc89f12f4dbffecaaddc0527f11f0ef7 linux-3.0/include/sound/atmel-abdac.h -21a4e3a9d338a5757aa41941045c7f6c linux-3.0/include/sound/asoundef.h -a4d89e98774fbe85eb2f155d99db8041 linux-3.0/include/sound/asound_fm.h -6a3bd294350cb2f3259be07313610d87 linux-3.0/include/sound/asound.h -43f1d101ea6972e164cc3e45d043f8e0 linux-3.0/include/sound/asequencer.h -f167e8a6439cbfdd00e1f6c123c1c466 linux-3.0/include/sound/alc5623.h -9ae625c727001539acb4784767e9b443 linux-3.0/include/sound/ak4xxx-adda.h -5b2cecdb3979eb5a6fc1da958b5352c3 linux-3.0/include/sound/ak4641.h -601c4f5e677f2d89d48fac80e02c7656 linux-3.0/include/sound/ak4531_codec.h -4df250dc2cce079231252601d8c8414d linux-3.0/include/sound/ak4117.h -82d355563af1b36e8356efaf9316f091 linux-3.0/include/sound/ak4114.h -b1a76f62f08ca20accf638273471a1b3 linux-3.0/include/sound/ak4113.h -955b01fdd772c814b40a252a96f2aac9 linux-3.0/include/sound/ad1843.h -db4b474c102fdd6d2f0f3db44f3a30cc linux-3.0/include/sound/ad1816a.h -fd0580d56fa452185d2507e2b3f61b36 linux-3.0/include/sound/aci.h -385d37cd8b88411b4ea363890a4f18ac linux-3.0/include/sound/ac97_codec.h -c6e2a79c2b814affa4a24198c6b9b3b5 linux-3.0/include/sound/Kbuild -d7a2aab6e63c581cc2c3f780a426796c linux-3.0/include/scsi/srp.h -66548b7abe2a33888c1d0ad2aea5a43e linux-3.0/include/scsi/sg.h -1aef6f1ddc8772dbdc4b7ab1917fe3e1 linux-3.0/include/scsi/scsicam.h -21ede6beb25fa84d11a87b339ee0de8c linux-3.0/include/scsi/scsi_transport_srp.h -a08ee732d0d7f115f8a4f50ef56ffb02 linux-3.0/include/scsi/scsi_transport_spi.h -5e3074da7c44e051643dd824d61cf250 linux-3.0/include/scsi/scsi_transport_sas.h -6f4e6ea87c74a89ea083988d1d764ea5 linux-3.0/include/scsi/scsi_transport_iscsi.h -c5c03d57abdc73fa9dfd781bddfede07 linux-3.0/include/scsi/scsi_transport_fc.h -c50daa8d211059c510eaa010106371b9 linux-3.0/include/scsi/scsi_transport.h -2b885494711c83d0d7f9ffd41ff9f705 linux-3.0/include/scsi/scsi_tgt_if.h -c72f1c247a70c300fca3b18ee1509667 linux-3.0/include/scsi/scsi_tgt.h -6ac136f89d6e38fdb03a84c6071906fd linux-3.0/include/scsi/scsi_tcq.h -3f7062c39c222cb928ce5e51e5970d22 linux-3.0/include/scsi/scsi_scan.h -60a827a5babf64d5560c01c8a3d9489c linux-3.0/include/scsi/scsi_netlink_fc.h -8a417f6151d555be175c472db62d5702 linux-3.0/include/scsi/scsi_netlink.h -25c7e4989d8a4b4ce378b57c6f508d26 linux-3.0/include/scsi/scsi_ioctl.h -db0c36c2cd7a8b6089cd3790b9e6fe89 linux-3.0/include/scsi/scsi_host.h -fad567da7a5aa983a8be3391fa290ce0 linux-3.0/include/scsi/scsi_eh.h -082de0b000cc000ba97b3d0a740156e1 linux-3.0/include/scsi/scsi_driver.h -aa467ad877a06e10696a67d9bd3a60ea linux-3.0/include/scsi/scsi_dh.h -1eb232ae25e25168f5384bbbb29c57e6 linux-3.0/include/scsi/scsi_devinfo.h -b8ba1978ad357e6e4de421e41a0d5980 linux-3.0/include/scsi/scsi_device.h -aff3e4adb315aaa615a766037778b0f5 linux-3.0/include/scsi/scsi_dbg.h -3cdbc5afbc45f2949073701fc98b3964 linux-3.0/include/scsi/scsi_cmnd.h -40c62116fb896605adc7da062a58249c linux-3.0/include/scsi/scsi_bsg_fc.h -3efb89b413544e39dfcb8338ab097d3d linux-3.0/include/scsi/scsi.h -12e572e40b8868f0d700c93ad47e6918 linux-3.0/include/scsi/sas_ata.h -1a257839d415cfe11bc91bf570de78aa linux-3.0/include/scsi/sas.h -47d4244b344a356b8c836a07aa30bd80 linux-3.0/include/scsi/osd_types.h -a06d3d39920b020ffa3170a949ee4f4a linux-3.0/include/scsi/osd_sense.h -d9b2116dd3c280a06196cdce5789f340 linux-3.0/include/scsi/osd_sec.h -5e76b31278f681bf2bc7e6e883e6ef2b linux-3.0/include/scsi/osd_protocol.h -d3d14e11c0a6079f02a781c03bd83a74 linux-3.0/include/scsi/osd_initiator.h -71bc168bab47a00caeb44e8d0b86815b linux-3.0/include/scsi/osd_attributes.h -782bd830de1c2c2e30703eb8eda09017 linux-3.0/include/scsi/libsrp.h -08b89d62cceeacddb048771c3f7a7ce8 linux-3.0/include/scsi/libsas.h -a6981538f553f0a4ac2f737afab0cc69 linux-3.0/include/scsi/libiscsi_tcp.h -1c3dcf79348192742f9669fa0d710fb4 linux-3.0/include/scsi/libiscsi.h -f859f7db2323484a7922a7462de91c13 linux-3.0/include/scsi/libfcoe.h -3f6c021307a681315966b935c8c713ac linux-3.0/include/scsi/libfc.h -7701c87405c1267435ca77a323cd391f linux-3.0/include/scsi/iscsi_proto.h -3bc99d49e5c8af0f4d1f65e593dad8ea linux-3.0/include/scsi/iscsi_if.h -d1b76b0e35ac58ef042ebe907c39cba0 linux-3.0/include/scsi/fc_frame.h -a13ad3ef188d344bac3c4591b8e2cde4 linux-3.0/include/scsi/fc_encode.h -a949cc13c8895f001926d94e0c7507a8 linux-3.0/include/scsi/fc/fc_ns.h -d1a859366527ef35169d993873af0771 linux-3.0/include/scsi/fc/fc_gs.h -5b5d178c94f7fe2a373d2060bae09cba linux-3.0/include/scsi/fc/fc_fs.h -44268bfa73eb17b49b57a7ddec92d6ab linux-3.0/include/scsi/fc/fc_fip.h -36885b32e31adb864cd5f1852d34b84e linux-3.0/include/scsi/fc/fc_fcp.h -a437f48980bae27cd9052ca4b1b8d030 linux-3.0/include/scsi/fc/fc_fcoe.h -1fdf0a21ccb8a342753f7703f463916d linux-3.0/include/scsi/fc/fc_fc2.h -4b2bc484ad2a82ea77b82047f0d0b693 linux-3.0/include/scsi/fc/fc_encaps.h -d83e39eb83cb7144517bf43b66cc2cc8 linux-3.0/include/scsi/fc/fc_els.h -369d35f90f6e5d0ab1edefcb6c282f62 linux-3.0/include/scsi/fc/Kbuild -12e4f97fac8059cad0c775d961c19230 linux-3.0/include/scsi/Kbuild -9dcc782dc65f447cdeb6efd3b9bff567 linux-3.0/include/rxrpc/types.h -8ba49491eac25078c0887269d4099455 linux-3.0/include/rxrpc/packet.h -96fcdbdfbad607ae98ca8069ff52f5b0 linux-3.0/include/rdma/rdma_user_cm.h -a543d8eced040e502f14912f66c925a9 linux-3.0/include/rdma/rdma_netlink.h -0b29d142fa0d9c11daa651588479baca linux-3.0/include/rdma/rdma_cm_ib.h -2b15be0c64dc90ee06ff93fe6e9f4ca9 linux-3.0/include/rdma/rdma_cm.h -a409baed72a3185fc4d07245c7e273e8 linux-3.0/include/rdma/iw_cm.h -f3b9335dfa9c4280d4700e721ee2dbeb linux-3.0/include/rdma/ib_verbs.h -975f2fb10396a9b6ad8ba593ad48361f linux-3.0/include/rdma/ib_user_verbs.h -ddf4107a86b87f803258c6c779157c03 linux-3.0/include/rdma/ib_user_sa.h -b82be2ee58cc55cddf492c4fb2a6369a linux-3.0/include/rdma/ib_user_mad.h -4b801d5ecb10a55b1a389278dfcbbf93 linux-3.0/include/rdma/ib_user_cm.h -1edf3e5258b7f79a1fc85069168e1ff2 linux-3.0/include/rdma/ib_umem.h -ef831c78de7e225620c5f2d79aadc0c2 linux-3.0/include/rdma/ib_smi.h -35097c6005a247dead1af2f4ddaf6783 linux-3.0/include/rdma/ib_sa.h -85c2442bdfe08705b48d772d18b78e94 linux-3.0/include/rdma/ib_pack.h -2ffb4ebc4d5ad9a40cf72902fd2e7641 linux-3.0/include/rdma/ib_marshall.h -3b360e4999286dd6d8073abc3c151b1a linux-3.0/include/rdma/ib_mad.h -0ee3fb202273bd91d62c1f254aa61fda linux-3.0/include/rdma/ib_fmr_pool.h -8582cf16f37b7efd07d45ae7ee6e629b linux-3.0/include/rdma/ib_cm.h -7dd32266b402b8c093b2713cba5f506f linux-3.0/include/rdma/ib_cache.h -518081e12c9404452b5ad3b62ed01aca linux-3.0/include/rdma/ib_addr.h -1f2e07a7ab47069fcd30018c90943d27 linux-3.0/include/rdma/Kbuild -1a97a7c4fd9492f043078223ded21937 linux-3.0/include/pcmcia/ss.h -c66456310e460523889fec0d186f73a5 linux-3.0/include/pcmcia/ds.h -c92febf84d752cf9cff06a88c4eb3f8e linux-3.0/include/pcmcia/device_id.h -1d610b63d74116dbb302b66f90f8bb84 linux-3.0/include/pcmcia/cistpl.h -0bcb4b127b2b740c65a136110305f2ad linux-3.0/include/pcmcia/cisreg.h -f4a34955f3f1f744e8c0a9d2eefd5904 linux-3.0/include/pcmcia/ciscode.h -716609158c0b1b9fc939cb4d0fe0333e linux-3.0/include/net/xfrm.h -739e655097507bc238e475a3584c910c linux-3.0/include/net/x25device.h -43ee7c5a0010c074b711f83f578d90e7 linux-3.0/include/net/x25.h -8fc27f8af2f64ab9a67fd76f7a322c94 linux-3.0/include/net/wpan-phy.h -2c6dff882fc681d8fb16933fa0d0dd82 linux-3.0/include/net/wimax.h -fd1e27896180bc1f8758f50b3e6e5873 linux-3.0/include/net/wext.h -0250702ae2cc79e87e04f3f69c51ed6e linux-3.0/include/net/udplite.h -1106e05b1c30483a9fe9852213b802aa linux-3.0/include/net/udp.h -c7ab974cc9f61346b5660edde6868526 linux-3.0/include/net/transp_v6.h -38fdd08e964de6191997341254473539 linux-3.0/include/net/timewait_sock.h -11a584a88b8abb59f0cf8b81188e6262 linux-3.0/include/net/tcp_states.h -02d6da8a1e0a34cd75613953b23a4c88 linux-3.0/include/net/tcp.h -3b15f07fc7f6e036bc8bf5a09c431a41 linux-3.0/include/net/tc_act/tc_skbedit.h -6a534e9fe07c944bf4390a2c876a0f32 linux-3.0/include/net/tc_act/tc_pedit.h -a3297d8a89c631cbb7c929f982ef3296 linux-3.0/include/net/tc_act/tc_nat.h -f8f42a9cf1b7eafc8d37609a5b89b141 linux-3.0/include/net/tc_act/tc_mirred.h -72467aa7462752da344aa260111e5b9b linux-3.0/include/net/tc_act/tc_ipt.h -1b3748be66ae0d7f70ef1dca505a491b linux-3.0/include/net/tc_act/tc_gact.h -a6e01f18618331fa0680a452df80d631 linux-3.0/include/net/tc_act/tc_defact.h -de4832993e9cb31d95b693c749405361 linux-3.0/include/net/tc_act/tc_csum.h -9650cf9ae4e6093c41e7cd4fc4ef4b9e linux-3.0/include/net/stp.h -fb748cdd3ad67995261c5c7a0bec3a1f linux-3.0/include/net/sock.h -e27139abaff50047069fc6a3713b538a linux-3.0/include/net/snmp.h -6e4a51e0bc61bd490fee057adb56467e linux-3.0/include/net/slhc_vj.h -fe4a78dad19bc87bad40c54a1170524e linux-3.0/include/net/sctp/user.h -e19fcabbe53ba3d1a89f388dff841d6b linux-3.0/include/net/sctp/ulpqueue.h -5b51c01dc7f328b3c87a473f5b12cd05 linux-3.0/include/net/sctp/ulpevent.h -d0aea599cf2db076c71adf31c47022c4 linux-3.0/include/net/sctp/tsnmap.h -7a78028e46f0206cfaac5cf3f1dd122c linux-3.0/include/net/sctp/structs.h -f62ea09606d168cc360333a987eebdb5 linux-3.0/include/net/sctp/sm.h -bd701c7c092169f39e41502bf3989d7e linux-3.0/include/net/sctp/sctp.h -52f3bf1825eb9a6ed41e2bb588b0142b linux-3.0/include/net/sctp/constants.h -4df757451a325a2c12c878f3cda6f013 linux-3.0/include/net/sctp/command.h -a618fc404b8ee90e04aa1286227ce21e linux-3.0/include/net/sctp/checksum.h -e053da675c3b6a475976bfe15c5d9911 linux-3.0/include/net/sctp/auth.h -93a7cd7f76a910c1eec6e7d2263b8e24 linux-3.0/include/net/scm.h -62a5d9af4d5c702212fb4ac1a1418074 linux-3.0/include/net/sch_generic.h -6a020ec1b34bf74955bafecf93df5ee1 linux-3.0/include/net/rtnetlink.h -8e0599980724a508e66003e6dcf16376 linux-3.0/include/net/route.h -dcdd271dd305a72fb726589721941878 linux-3.0/include/net/rose.h -cf85919763e553b323a3c590643de688 linux-3.0/include/net/request_sock.h -0f0b4579bc18f106880163e6800d65af linux-3.0/include/net/regulatory.h -bf04987699c34a4ee2b670b2bcde93c8 linux-3.0/include/net/red.h -0b9243a89ac1199edaf40b240e2e0778 linux-3.0/include/net/rawv6.h -308eaf049cf81815b6ea1dea7e8531e8 linux-3.0/include/net/raw.h -8f3812978eaefb83d1d650c70adebe85 linux-3.0/include/net/psnap.h -0fc9a55fc705ef7e928e6eb47f11168c linux-3.0/include/net/protocol.h -ed5bc12f0abd1fa869d9facbe4ab2335 linux-3.0/include/net/pkt_sched.h -2b9c3637deab60f9e5c7446e963b2d7e linux-3.0/include/net/pkt_cls.h -62460e41cf848e8dfe2d0c484c5dd81b linux-3.0/include/net/ping.h -c7113fa354d369e00b996cea68824132 linux-3.0/include/net/phonet/pn_dev.h -78986a5cd7431201871725a1f41f9dff linux-3.0/include/net/phonet/phonet.h -fd2341374a9a373ca54b710a64570274 linux-3.0/include/net/phonet/pep.h -6b1c6d76d22bb36f9248417d6e0d85a4 linux-3.0/include/net/phonet/gprs.h -ad1d03e6c44a1db84c66636d10ddb104 linux-3.0/include/net/p8022.h -8b4f0bdf41f2c71c418e3a2bc01a5ce8 linux-3.0/include/net/nl802154.h -2b550bc47806360a7b030e3e6f61a5f1 linux-3.0/include/net/nexthop.h -e30927a7f7f8dcfc0b02dae3d5905787 linux-3.0/include/net/netrom.h -0a1a054c826b886ba373f2bb37dd8be6 linux-3.0/include/net/netns/xfrm.h -6151ec73dafc465a593d9173586440d5 linux-3.0/include/net/netns/x_tables.h -bfac798859f40b7d14893b19fbc22e12 linux-3.0/include/net/netns/unix.h -cc1fa6f99b9472cf48adcdef9202f42d linux-3.0/include/net/netns/packet.h -f6b9d5bf053d1311d5dad4bc839a446a linux-3.0/include/net/netns/mib.h -df0ba80f4a0ddc99196f286fa0f1e02a linux-3.0/include/net/netns/ipv6.h -28c88f7ad9c13b8f7c385ef138b0eb87 linux-3.0/include/net/netns/ipv4.h -8ee8f1688369e4e8f0932d959f81e78d linux-3.0/include/net/netns/hash.h -a144c598e149dd9ed7e419c82bca37bd linux-3.0/include/net/netns/generic.h -4b476457c1c8f7ec2fc2b27ef6c6215a linux-3.0/include/net/netns/dccp.h -58f08b6a0f55cecafd26f1224b0444f1 linux-3.0/include/net/netns/core.h -2830c3219547537544a7ab303043000a linux-3.0/include/net/netns/conntrack.h -b3bf74e543ed215524f8c7bf4d677d62 linux-3.0/include/net/netlink.h -c94d2c80b8406457e2134dc5394c28d2 linux-3.0/include/net/netlabel.h -bf55a83721cd1fd992b2c4618e15e930 linux-3.0/include/net/netfilter/xt_rateest.h -6b6e1a0fa5bf232da282ece11ecef888 linux-3.0/include/net/netfilter/xt_log.h -3e9cdc678c4912968cef3d2fe7084a55 linux-3.0/include/net/netfilter/nfnetlink_log.h -f57618d52820c7cd213686aeb3f9d2ba linux-3.0/include/net/netfilter/nf_tproxy_core.h -0e2fe63af3630b3aba4e49c6b63fb964 linux-3.0/include/net/netfilter/nf_queue.h -5ee50d6c0e06365d86e25d69b91fb09a linux-3.0/include/net/netfilter/nf_nat_rule.h -4c4d57013fd182a71099916c00c5f68d linux-3.0/include/net/netfilter/nf_nat_protocol.h -7655a35ee93a901228a8473c9ab7f0ae linux-3.0/include/net/netfilter/nf_nat_helper.h -ac7fe63eda26ec5dc4d1dc86c1ec6f95 linux-3.0/include/net/netfilter/nf_nat_core.h -1ab94cb858150761efd620b93ef30252 linux-3.0/include/net/netfilter/nf_nat.h -6c102c076f590b63630aeeb7ec53de06 linux-3.0/include/net/netfilter/nf_log.h -2525e6346798f132bf9e496fc4c1ca2f linux-3.0/include/net/netfilter/nf_conntrack_zones.h -e8505d861c1bf6694522a1612d691c4a linux-3.0/include/net/netfilter/nf_conntrack_tuple.h -e07031f2c9e8760bbefe3670bcf6cf8c linux-3.0/include/net/netfilter/nf_conntrack_timestamp.h -3f667b55680cc09661a051caf9870f3c linux-3.0/include/net/netfilter/nf_conntrack_l4proto.h -70942c696c4e1a1055ce44ff35c5efa3 linux-3.0/include/net/netfilter/nf_conntrack_l3proto.h -eb6adf7ebef1e661f4474ea72d150565 linux-3.0/include/net/netfilter/nf_conntrack_helper.h -6ae281b427aa9388cdd8cf191fc49167 linux-3.0/include/net/netfilter/nf_conntrack_extend.h -ec5948361398a77365814e2ee10861b4 linux-3.0/include/net/netfilter/nf_conntrack_expect.h -7293fe8291f03f004386b869c547bffd linux-3.0/include/net/netfilter/nf_conntrack_ecache.h -d15840d79d2ca2c6dbf638052a3964d4 linux-3.0/include/net/netfilter/nf_conntrack_core.h -a9b43376129d237f0718ed096fb64c25 linux-3.0/include/net/netfilter/nf_conntrack_acct.h -07d560742da2e82073a9928bb5a93ab4 linux-3.0/include/net/netfilter/nf_conntrack.h -e395b817a9a57c77197b5be145214afb linux-3.0/include/net/netfilter/ipv6/nf_defrag_ipv6.h -37a380fb4891a739fa4ac796624f1a6f linux-3.0/include/net/netfilter/ipv6/nf_conntrack_ipv6.h -0c1ee52807becd4970b3dc459010f384 linux-3.0/include/net/netfilter/ipv6/nf_conntrack_icmpv6.h -2ddb355ba0ad3fdb93358d5d8b56ff1c linux-3.0/include/net/netfilter/ipv4/nf_defrag_ipv4.h -ab4ba05e948ebf5ae853fea04fff35d2 linux-3.0/include/net/netfilter/ipv4/nf_conntrack_ipv4.h -d5b3c3c0692dd01e95d1d664f5966634 linux-3.0/include/net/netevent.h -1b7eec5a082c383437f8942dccdcda1f linux-3.0/include/net/netdma.h -8e839818d49e158e5aa5b978c0439238 linux-3.0/include/net/net_ratelimit.h -37cc63b1ac9b3923c5df52f7971996c4 linux-3.0/include/net/net_namespace.h -be20fa65ace71c5f9e05e57c12175bbe linux-3.0/include/net/neighbour.h -f89de7941b8998ea3e7d6e2a603839ef linux-3.0/include/net/ndisc.h -1d859784c24638da9384b30c5a79f542 linux-3.0/include/net/mld.h -015755947c52366b807f4afa9ee1e778 linux-3.0/include/net/mip6.h -575f464162209c23e8aa5bd9767ad2df linux-3.0/include/net/mac80211.h -f1133eb076740623dd59e592073e9ffc linux-3.0/include/net/llc_sap.h -611930fb01ea3b93d52cc181944bf293 linux-3.0/include/net/llc_s_st.h -7c83d10f2660ce379ac1c492941432a0 linux-3.0/include/net/llc_s_ev.h -143371dcbc133cbe02d37a7ce9dbf523 linux-3.0/include/net/llc_s_ac.h -0e42e5c29a3413f4705c401cae143894 linux-3.0/include/net/llc_pdu.h -7673552af136f146b8e492d3c1a7bbee linux-3.0/include/net/llc_if.h -db2029243790c76d27d50d32218fc427 linux-3.0/include/net/llc_conn.h -152535534e8a22f750b79c1dcdb489bc linux-3.0/include/net/llc_c_st.h -88d9bc82018ab3973b0b7c8822c7b75b linux-3.0/include/net/llc_c_ev.h -fcdd079712b40777862cdf83fd5f833e linux-3.0/include/net/llc_c_ac.h -683411109c66b9cea97b83278e7c787f linux-3.0/include/net/llc.h -f54bfcfa7dc9c0845993666f7c8ef171 linux-3.0/include/net/lib80211.h -eefecbc7cff6161c0c06413f19aa65a9 linux-3.0/include/net/lapb.h -590c00d60543bba13512da181051bd20 linux-3.0/include/net/iw_handler.h -9a3ddebabe83f40b401c4d708ee78484 linux-3.0/include/net/iucv/iucv.h -441c777b58685b9b78e3799da4fea678 linux-3.0/include/net/iucv/af_iucv.h -d2c5f7fbc7f9a36d1999e81ebc298d10 linux-3.0/include/net/irda/wrapper.h -24945cd8a8a3b7f38bc2a2bb4e810501 linux-3.0/include/net/irda/timer.h -435a9353b88fb9261890202c7aa4752e linux-3.0/include/net/irda/qos.h -64e0b7a356a0799b5c3a5e8a9f52865a linux-3.0/include/net/irda/parameters.h -09faa027ebec986b88c9612acf0c2236 linux-3.0/include/net/irda/irttp.h -7235de3e35277ab96a0db856bcc78580 linux-3.0/include/net/irda/irqueue.h -af49b13f91285c451674e00e421a81a5 linux-3.0/include/net/irda/irmod.h -f874f42c70d4c05ce4c613643f023eb2 linux-3.0/include/net/irda/irlmp_frame.h -19b13bd6200d73793fe8c28bb6295efd linux-3.0/include/net/irda/irlmp_event.h -5171ad96dd96e7a3c5c8cacabde40d2d linux-3.0/include/net/irda/irlmp.h -7d8b1c7e30e4abe4b959378b5e011116 linux-3.0/include/net/irda/irlap_frame.h -0af89b5d19b3d013d71f85fc042065a7 linux-3.0/include/net/irda/irlap_event.h -f11674bd013871702a28b0aaa180d4fa linux-3.0/include/net/irda/irlap.h -b69fb19dbb0100790feb5c03d05fabed linux-3.0/include/net/irda/irlan_provider.h -1acc08c5bed01984d7d3db8381914594 linux-3.0/include/net/irda/irlan_filter.h -a4a70073ca181d5f01bcd5c6a4d944c3 linux-3.0/include/net/irda/irlan_event.h -323e676ea5f196d4ea9da98a53129d50 linux-3.0/include/net/irda/irlan_eth.h -4ac997edd458c66f3da4915f59042f7f linux-3.0/include/net/irda/irlan_common.h -96b56823caeb0753c62ffced06c39273 linux-3.0/include/net/irda/irlan_client.h -fafa838c85f6f1ca7087cd2c91606ca7 linux-3.0/include/net/irda/irias_object.h -0d285448111940b78bbac325015ddd9b linux-3.0/include/net/irda/iriap_event.h -4f29b6aee43ed78301285b58a382deda linux-3.0/include/net/irda/iriap.h -21d4e99e18a43f6b69e4a12fb24d4637 linux-3.0/include/net/irda/irda_device.h -a57262fd732b4a07c355b6d1848b1fb4 linux-3.0/include/net/irda/irda.h -4b823388b55970a3a56e2d62f9dbf05f linux-3.0/include/net/irda/ircomm_tty_attach.h -9ab5b8d4b5eb600a7bbdb9390b15f15d linux-3.0/include/net/irda/ircomm_tty.h -fd1d0f2a04e9ef1487a04586ba53129c linux-3.0/include/net/irda/ircomm_ttp.h -c3b85d0d9ad4cad798897f6a491af1f5 linux-3.0/include/net/irda/ircomm_param.h -c067e78ae38003853deb4e6c8f6c3ef3 linux-3.0/include/net/irda/ircomm_lmp.h -01224322ae465b3276b95cd57e3115b0 linux-3.0/include/net/irda/ircomm_event.h -e91655273cbf5e61454fe4619885f399 linux-3.0/include/net/irda/ircomm_core.h -0d5b882fd03d4dc681dda680a9e86b7d linux-3.0/include/net/irda/discovery.h -96095a76d67a243ee8a78e83f3fcb66f linux-3.0/include/net/irda/crc.h -cef13c9cdfc0114de64bb98a30d18cdd linux-3.0/include/net/irda/af_irda.h -97e918ec3d1460129c5337e0bd9cef6c linux-3.0/include/net/ipx.h -25718e607b638ed60284e78066cf2baa linux-3.0/include/net/ipv6.h -744fd0ff741bc0ae11162dd4525d88a2 linux-3.0/include/net/ipip.h -82bdcc800fa2a32635a348de68878777 linux-3.0/include/net/ipconfig.h -c7a860f6ce100a50d8304373926739eb linux-3.0/include/net/ipcomp.h -3eb438a5fc400771eb1c2c65dabdf21d linux-3.0/include/net/ip_vs.h -aa0c4c273b143d2a448606d0bf80a962 linux-3.0/include/net/ip_fib.h -76e3d5d194526a4efd1e27b3f95815e4 linux-3.0/include/net/ip6_tunnel.h -aaea6113a8fdaa1df7341bace02568f2 linux-3.0/include/net/ip6_route.h -b1076b5c5c1196e164dba9c9ed3f2164 linux-3.0/include/net/ip6_fib.h -007925155cc809da98c4434e2147e3bf linux-3.0/include/net/ip6_checksum.h -5ede851c0414a74c368a7d1e75689a19 linux-3.0/include/net/ip.h -1146cebf3080623f39c8465af57b15b7 linux-3.0/include/net/inetpeer.h -ff71db3b82372ac17b085c0c47c41e8a linux-3.0/include/net/inet_timewait_sock.h -77b6c347b76c1a12769d40105d9bff97 linux-3.0/include/net/inet_sock.h -1024ec1dad184af5b547d3840522b00a linux-3.0/include/net/inet_hashtables.h -b00c7608f16273a5a97f7a386a100d73 linux-3.0/include/net/inet_frag.h -b42010a1fa630bdfacd30afb1adeebee linux-3.0/include/net/inet_ecn.h -a0f3ab942e42557b9c7438b56f9bd2f1 linux-3.0/include/net/inet_connection_sock.h -e005f22967bc610e10bc7dc92e0414a3 linux-3.0/include/net/inet_common.h -80b82de31ba7aeed3116b58a6d4fa65f linux-3.0/include/net/inet6_hashtables.h -f15593719cf3abe22737e65b205596f8 linux-3.0/include/net/inet6_connection_sock.h -bc0512f00304c58a9627cbad724b5da2 linux-3.0/include/net/if_inet6.h -1bbad656670e33d6ab5b4c7c6058758d linux-3.0/include/net/ieee802154_netdev.h -62af69aaef15a126a8e4b1b80b3ec37b linux-3.0/include/net/ieee802154.h -67002d8ccd85ba5750598f286c802452 linux-3.0/include/net/ieee80211_radiotap.h -2e2d4eb98e2e705573a889a0be4ff76e linux-3.0/include/net/icmp.h -5e388bc890e30359bf09c39f5817b07c linux-3.0/include/net/gre.h -db87be545301a2e597161f6a483b35fb linux-3.0/include/net/genetlink.h -6c10d9ad05612f8fc9fe3f86e6657f90 linux-3.0/include/net/gen_stats.h -1180b09c7dedd6d7f6178be29086d41b linux-3.0/include/net/garp.h -1e102309ebebf9dea8ac5929c99dcf56 linux-3.0/include/net/flow.h -a3b6bda79f03eb72431e92b142f6dc13 linux-3.0/include/net/fib_rules.h -c511f571efa3e4d592f174de8085066d linux-3.0/include/net/ethoc.h -96bb8b43c00bc134ccc41c7d4a7a5035 linux-3.0/include/net/esp.h -2edcb17c485d5b637f048bd332cc2361 linux-3.0/include/net/dst_ops.h -7fd8433957b50966715a43e17e532f47 linux-3.0/include/net/dst.h -49f22bcfe99b067eef10c1be96277c67 linux-3.0/include/net/dsfield.h -29ba7e5c62aeb17bc7fd6ffb29bfb3c7 linux-3.0/include/net/dsa.h -32e7b7f589d3f574ddbcc09e7618757b linux-3.0/include/net/dn_route.h -ffcffc916427c6855fa6c84163529799 linux-3.0/include/net/dn_nsp.h -1568c6f1d7581d8ce4cd8d5500553ead linux-3.0/include/net/dn_neigh.h -5be79841d766c9d0af92c90c053d6738 linux-3.0/include/net/dn_fib.h -5de7f12bdc4a902fe22f5419a055b5bb linux-3.0/include/net/dn_dev.h -834d91fb1a6f6263732f8cf08f862aba linux-3.0/include/net/dn.h -718a3e5309a3eff869e875d72f13bae8 linux-3.0/include/net/dcbnl.h -95c85475be9b4fedd6f5bded921a138a linux-3.0/include/net/dcbevent.h -85efad7fa3229ccb8a67a9841171148c linux-3.0/include/net/datalink.h -683cca511ed7a36c582d65360aad1f53 linux-3.0/include/net/compat.h -788cc793ef6bb3199be869710e853a11 linux-3.0/include/net/cls_cgroup.h -c2a3ed17af6bb6f27292448603a9f8b1 linux-3.0/include/net/cipso_ipv4.h -bd7e3afc886856250b3bf951303a46a3 linux-3.0/include/net/checksum.h -0268c0884546445d6654c27948be178b linux-3.0/include/net/cfg80211.h -7ad94ef37ead2be19073f423031ce3ab linux-3.0/include/net/caif/cfsrvl.h -f9d5e4f3a418a6154a39a54f514f7690 linux-3.0/include/net/caif/cfserl.h -64ee8ebe549e2d65b9d19376c40ec4ba linux-3.0/include/net/caif/cfpkt.h -970ba3b8661e6c0618575fba92dd5288 linux-3.0/include/net/caif/cfmuxl.h -280daafaa79d41161861735fca81a92d linux-3.0/include/net/caif/cffrml.h -9d5f8f9f3bdb7cf93db1a5dbedac81bf linux-3.0/include/net/caif/cfctrl.h -270359f7e14311e9cf33a8959d6b0915 linux-3.0/include/net/caif/cfcnfg.h -c4c50811200589fa219f3c93bf92fb8f linux-3.0/include/net/caif/caif_spi.h -413fdeb85afe49dc95fa68aefcfbea73 linux-3.0/include/net/caif/caif_shm.h -3d5824ce38336e0af7ef54e4e7bcd75a linux-3.0/include/net/caif/caif_layer.h -6cb07330ac88d612a3910d805205e1f8 linux-3.0/include/net/caif/caif_device.h -59ba4bcbe73d984c6ff70ea7bcf64f54 linux-3.0/include/net/caif/caif_dev.h -0550c6695e8a542fb794023fd553cad9 linux-3.0/include/net/bluetooth/smp.h -3bcbae0a7abdf3149b922349e0a1794f linux-3.0/include/net/bluetooth/sco.h -254190ab429ac438b1435174a6f6632d linux-3.0/include/net/bluetooth/rfcomm.h -565f42f3830d7cde685a0d08447d4a2c linux-3.0/include/net/bluetooth/mgmt.h -90dd9e94fd003fb23370ffefb188708f linux-3.0/include/net/bluetooth/l2cap.h -5301233baa5e06d7a4b18c75829b2e54 linux-3.0/include/net/bluetooth/hci_core.h -ea73ae3c4b7eb0ebd7ff105ce4551094 linux-3.0/include/net/bluetooth/hci.h -0a8f935be0b5f6de73653c65ca856962 linux-3.0/include/net/bluetooth/bluetooth.h -38faaad298d6e1e68a9406ab7a1e6185 linux-3.0/include/net/ax88796.h -92a88fe9dd1183ac7c922a38524b8678 linux-3.0/include/net/ax25.h -fb1e8dfdf118c4e2032db92393063ff3 linux-3.0/include/net/atmclip.h -23e8bcdf0f23971181e8deb3a2b15e55 linux-3.0/include/net/arp.h -3fd8ef6672e204f070a712a1b99cefa2 linux-3.0/include/net/ah.h -762cff2ec99f5d88ef0823d9e76111f9 linux-3.0/include/net/af_unix.h -0446204f79f69222bd9974806362db0a linux-3.0/include/net/af_rxrpc.h -f7f9e534de5bb48b4b8bfea3353bb57c linux-3.0/include/net/af_ieee802154.h -33b41ee672f195324368e77df85728d0 linux-3.0/include/net/addrconf.h -0269ad9cc271ebe9cb815958d9afa2eb linux-3.0/include/net/act_api.h -5cd41e263e7d5609663005ac0436c9e3 linux-3.0/include/net/9p/transport.h -bc7e03d804dd0fbd1e0f363785ce2f13 linux-3.0/include/net/9p/client.h -df3db2058f5709ce7244b3f3afffbe75 linux-3.0/include/net/9p/9p.h -88388703db50c32eb6682f6324e3433c linux-3.0/include/mtd/ubi-user.h -95eb557114035d70dd900e7475d1f4a4 linux-3.0/include/mtd/nftl-user.h -64afd2c100b98a5885f3dbeb8e6fd821 linux-3.0/include/mtd/mtd-user.h -ac65c960f7fe942d0085655b1cb539f1 linux-3.0/include/mtd/mtd-abi.h -b2cba7a0171216f7eec0a0d10e5d20cf linux-3.0/include/mtd/inftl-user.h -134eb97ece194fe512a2620f673e691c linux-3.0/include/mtd/Kbuild -4a5eb625bfb6b72682e21e1ec905518d linux-3.0/include/media/wm8775.h -d90f2310d4e5410a8d21d741d7b81f77 linux-3.0/include/media/videobuf2-vmalloc.h -6f66c89837a3fb19f3b9231a0d06d3b3 linux-3.0/include/media/videobuf2-memops.h -1ca05c212cddb7bd0ff67cb8a2a5dd0b linux-3.0/include/media/videobuf2-dma-sg.h -19e93ce0ea24135636d5515367037b83 linux-3.0/include/media/videobuf2-dma-contig.h -9ea3fd0a2b4a613e71705786b5fd2098 linux-3.0/include/media/videobuf2-core.h -e74dafa8f75c06a162de80cd84dc6bd3 linux-3.0/include/media/videobuf-vmalloc.h -99e3f8c4a2294f7d89626f1afc2b034e linux-3.0/include/media/videobuf-dvb.h -31771fee1271a9adfcc3f29cdc75f64c linux-3.0/include/media/videobuf-dma-sg.h -c9d4f3793f8d0efd7c1a3cd710094350 linux-3.0/include/media/videobuf-dma-contig.h -d9651cf58baaa5435192c2f46863c76b linux-3.0/include/media/videobuf-core.h -6cdeef9f4b6cba714e5a7992c0351d06 linux-3.0/include/media/v4l2-subdev.h -9cf187fdcabdcc2d1d0243284aaacd9f linux-3.0/include/media/v4l2-mem2mem.h -24a26141868a16806746c006bc349c4c linux-3.0/include/media/v4l2-mediabus.h -39b11514e997c77bdbdb1e2422ca949f linux-3.0/include/media/v4l2-ioctl.h -575c6c6a07fa6c576dba539a0ed377bf linux-3.0/include/media/v4l2-int-device.h -7db6e85a797afb54e04e24c70b94bab5 linux-3.0/include/media/v4l2-fh.h -e2a47c437983d552405971da67084e15 linux-3.0/include/media/v4l2-event.h -5f2cf9cd9fafd6af6926e945ee8fc3df linux-3.0/include/media/v4l2-device.h -bb35de41d803f83b68f58ec761108621 linux-3.0/include/media/v4l2-dev.h -32fae9754ddd8467ff955ebac61fc267 linux-3.0/include/media/v4l2-ctrls.h -445f83cdc4d30c30e7751fe737ce5b8a linux-3.0/include/media/v4l2-common.h -d01b35c65001c455635b9f3bcf9e427a linux-3.0/include/media/v4l2-chip-ident.h -a609dae418d2f8530cd3b0678d300e05 linux-3.0/include/media/upd64083.h -dae96764b4da0ca7fe718e5788edd358 linux-3.0/include/media/upd64031a.h -86f99c5606af73a47c6ddc3c07b11f41 linux-3.0/include/media/tw9910.h -ceaf6b171963741c36f05e557e938ebe linux-3.0/include/media/tvp7002.h -c4bd4df20d0ac2e1c32fc0e8b494fa5f linux-3.0/include/media/tvp5150.h -2ac939ad3b6756bdb656ea2b251ff96a linux-3.0/include/media/tvp514x.h -148d0171a6ca7930d093b634a981d8d4 linux-3.0/include/media/tveeprom.h -424ac25c7980cec7745e963426a6db29 linux-3.0/include/media/tvaudio.h -189965b91d91846883d5a8c71e6c6d67 linux-3.0/include/media/tuner.h -6db60e53674725144a1d1c77defea181 linux-3.0/include/media/tuner-types.h -7e9c1b3dc3efe926080dafedebef9ea7 linux-3.0/include/media/timb_video.h -5d7587f8f9a13f5a8adcde65c1b09dbb linux-3.0/include/media/timb_radio.h -abc956a633ce4b87999bf7549064c73f linux-3.0/include/media/sr030pc30.h -2ca1c315451f5c16c16c61056d1e3a29 linux-3.0/include/media/soc_mediabus.h -e9124beebbb7b3024d1ab7b751aac220 linux-3.0/include/media/soc_camera_platform.h -563425bc9574c705287578fa138cb9db linux-3.0/include/media/soc_camera.h -38e5bf38edb7217df7b51688fca7731c linux-3.0/include/media/si4713.h -d9dea652a235cc7403ff52a3f511622c linux-3.0/include/media/sh_vou.h -a102146de81428a46e46c4be349dbeb3 linux-3.0/include/media/sh_mobile_csi2.h -a33862d5531fce1a8d66e1ae9bd8f0d0 linux-3.0/include/media/sh_mobile_ceu.h -d689c60eaf1c45bbc50472d8c4560b68 linux-3.0/include/media/saa7146_vv.h -9daf8c04c5ec6a511299cf38f5c2a2b7 linux-3.0/include/media/saa7146.h -e85f2ef8f50cb234cb8d630df0041e5e linux-3.0/include/media/saa7127.h -a472744ee4fe0cc25db2e69ea3668d86 linux-3.0/include/media/saa7115.h -02dce10e89ecbac72cee5d9908c19e72 linux-3.0/include/media/saa6752hs.h -5d8cb0ae17b24c16b2fe521bbe6ce3f3 linux-3.0/include/media/saa6588.h -f152d2dbc0e151cfbf8b8d1d21df742e linux-3.0/include/media/s5p_fimc.h -ee07957238792c1e55b89d20e7bf26ef linux-3.0/include/media/rj54n1cb0c.h -8eb4fe645ce073bfaea1988f63c10b77 linux-3.0/include/media/rc-map.h -e74119d80d74c82ce81cc8bb4dd5043d linux-3.0/include/media/rc-core.h -b2fa6ec1776e3f379b2be6e9c8290f77 linux-3.0/include/media/radio-si4713.h -dbe2a915fbe05fed3eb30968f07987f4 linux-3.0/include/media/pwc-ioctl.h -a468988f12fa74ae25f37a2ca9565e5e linux-3.0/include/media/ov772x.h -3e0a9deebedc132b503aeb6fae1e8d7c linux-3.0/include/media/omap1_camera.h -9947459687481dc88f4b1aecb882ec76 linux-3.0/include/media/noon010pc30.h -59bb90a4d04dce8dcaafe456a9485e94 linux-3.0/include/media/mt9v032.h -75e7d51b7740eccf68826a28404606e0 linux-3.0/include/media/mt9v011.h -43c3cdd82a8b70220ed299ec7ad95b8b linux-3.0/include/media/mt9t112.h -5ab61fb381f725a09ae68bab24b43dde linux-3.0/include/media/msp3400.h -1b0750785c6188c3a155f6517a34ee50 linux-3.0/include/media/media-entity.h -678586bad4974a21916b77b2ed6ef3d8 linux-3.0/include/media/media-devnode.h -979cec9980989f0dfbcb3710ca7c6369 linux-3.0/include/media/media-device.h -903bae2391e1d77dc8980183ab176e2d linux-3.0/include/media/m5mols.h -377a60a103b11ad0b2e2c622935bd1f2 linux-3.0/include/media/m52790.h -e1d2b5a878718d3dead8540ab36ef24f linux-3.0/include/media/lirc_dev.h -8711f1f6f79f222a5fa55e62582b9570 linux-3.0/include/media/lirc.h -4d4afc47213f69b591bdacc1c31d2ce3 linux-3.0/include/media/ir-kbd-i2c.h -a91c5e1fabeb7264bf3dfdc863d2caaf linux-3.0/include/media/i2c-addr.h -e5facfd4c6be888c873b38a67439d260 linux-3.0/include/media/davinci/vpss.h -f3d0c09408394341056d40cace215874 linux-3.0/include/media/davinci/vpfe_types.h -8b886f2ae1228a564427600becbe1eb2 linux-3.0/include/media/davinci/vpfe_capture.h -b10c39c4ad22fd1eaac86cb7f80e0914 linux-3.0/include/media/davinci/isif.h -5080fd11fba633c77c2b8c5bd8f25574 linux-3.0/include/media/davinci/dm644x_ccdc.h -8675fb517039bde5f2884fc1af749ded linux-3.0/include/media/davinci/dm355_ccdc.h -f6a42f68480138ed76f5174702579473 linux-3.0/include/media/davinci/ccdc_types.h -8cdd85366dc7965156e64db378a259a5 linux-3.0/include/media/cx25840.h -ade9d64b25936552046baadb2dd6731d linux-3.0/include/media/cx2341x.h -5b3c6aafdd11344e9695334b8bd7d056 linux-3.0/include/media/cs53l32a.h -810263f7328e58a214a935945d4796ea linux-3.0/include/media/cs5345.h -9bfbfe6da727931023c2528d26575b56 linux-3.0/include/media/bt819.h -637819a22203832d5d1937d0d4385b0a linux-3.0/include/media/ak881x.h -63e1fb07980bcbf630b8905d67ed446b linux-3.0/include/media/adv7343.h -311dcf2f94fa077f82dd5e7a507543b7 linux-3.0/include/math-emu/soft-fp.h -93a231b59e4450e8651036096f70572a linux-3.0/include/math-emu/single.h -660e70679ec9d101072d4acd46194eb1 linux-3.0/include/math-emu/quad.h -e030712e66d62e4f357653f23477e94c linux-3.0/include/math-emu/op-common.h -7193444e3f487d3c4396e346cd19d331 linux-3.0/include/math-emu/op-8.h -f0170318ce01c4f3a05a822fd87083d1 linux-3.0/include/math-emu/op-4.h -6da6d208470c3317cf24d9bc2e277307 linux-3.0/include/math-emu/op-2.h -4f12eeb3e1eaceeac59008930581e0d3 linux-3.0/include/math-emu/op-1.h -6598f0013d027f94da964853d330e5a9 linux-3.0/include/math-emu/double.h -477ad6609a86ed3ba7bc4e0dd8ee0b5a linux-3.0/include/linux/zutil.h -0272ffa2fad24688a5aa365199e1cd08 linux-3.0/include/linux/zorro_ids.h -c9419d09853b092579b7aa9fb3cbc71e linux-3.0/include/linux/zorro.h -8e77e56cbaee4f766f369be92d0d41d3 linux-3.0/include/linux/zlib.h -66c2d885369ef0adc0f1780a0c1150c2 linux-3.0/include/linux/zconf.h -c2b3ff4062bfe24e5a535522e528d68c linux-3.0/include/linux/z2_battery.h -f0cff2a3c2b666f90f1e689a29c2f4a4 linux-3.0/include/linux/yam.h -9e13d3f1cecbcbccddf54ba8fe4d613f linux-3.0/include/linux/xz.h -7a8544c184d36d43e3d5c102c4206c21 linux-3.0/include/linux/xilinxfb.h -b9b0569f78eaca86dae6de573c6eba53 linux-3.0/include/linux/xfrm.h -a63240543816aeb92262380240054cc0 linux-3.0/include/linux/xattr.h -6c379f7b2bdc2f4dd48471167416b85b linux-3.0/include/linux/x25.h -c3487d64b73a3fca932a88a1ae2f1d53 linux-3.0/include/linux/writeback.h -f6f6ac87732c39b6e946d874a5b146b1 linux-3.0/include/linux/workqueue.h -a00fc8a68621dc81cbe51a3bea63efdc linux-3.0/include/linux/wm97xx.h -b0f8c3d4eeaaca64f789889fa5eb7d00 linux-3.0/include/linux/wl12xx.h -e841fdf4c17255ec2e884c9a9900fcdc linux-3.0/include/linux/wireless.h -3e66f64b690b317635a51552acf0be2a linux-3.0/include/linux/wimax/i2400m.h -194bce76f488604877888e0cb2d72ae0 linux-3.0/include/linux/wimax/debug.h -320e7b9b291d91972232a070a8842bdf linux-3.0/include/linux/wimax/Kbuild -fc43bbcc9db4505e5d3a55db0f5fd847 linux-3.0/include/linux/wimax.h -ec6238204a362bdc758ad92d2aebfdc3 linux-3.0/include/linux/watchdog.h -85ddf3f9cbc544f8ccff6ed727f9be5f linux-3.0/include/linux/wanrouter.h -bb4e780ad5d4746c65db3ddc81ec5470 linux-3.0/include/linux/wait.h -647fc40685a0c928745bba2b4c022ab5 linux-3.0/include/linux/w1-gpio.h -02ed991e3d7917a4e8ffd3e12f952104 linux-3.0/include/linux/vt_kern.h -d85af27d9fac0ad7bd0d52248a18b2d0 linux-3.0/include/linux/vt_buffer.h -4967ab39afa77f2af533385fa465a120 linux-3.0/include/linux/vt.h -d9cd6bafb8d047f2fae179bf0c2bfc65 linux-3.0/include/linux/vmstat.h -9d59f3d0fc736af03eaff805be63f048 linux-3.0/include/linux/vmalloc.h -b06ac5ad617e4ad169fe519148dc0dcf linux-3.0/include/linux/vm_event_item.h -06f68fb0685666693ba1b2b1a6c296d6 linux-3.0/include/linux/vlynq.h -70fe6485864c3f4b3d6708d805a096cd linux-3.0/include/linux/virtio_rng.h -b7b93e2395771c80c118dcb700235aa5 linux-3.0/include/linux/virtio_ring.h -568b02964f9cf7c2c112bb98f8607b65 linux-3.0/include/linux/virtio_pci.h -53ba4ebd34a534f5feab87881350cc74 linux-3.0/include/linux/virtio_net.h -e4e1c4e67125174b0d3a7a55e17269c6 linux-3.0/include/linux/virtio_ids.h -89cb468cdd4badd45c3ab3c59d1111b9 linux-3.0/include/linux/virtio_console.h -6c8cb5a056d21c44d9dc16e04bda4d1e linux-3.0/include/linux/virtio_config.h -c91817b543ff1d515b43a82bd0db025c linux-3.0/include/linux/virtio_blk.h -3a630c665d9befb07b354b6f9fe448f3 linux-3.0/include/linux/virtio_balloon.h -85eca5b76f0816c91c483b61c48b5514 linux-3.0/include/linux/virtio_9p.h -02fe47f6b74b87dfcb935a09cff809fa linux-3.0/include/linux/virtio.h -6746f34af131ad36042900bfa1d18b47 linux-3.0/include/linux/videodev2.h -2c4a3fa93321be3cf40f3445eb04fa81 linux-3.0/include/linux/video_output.h -b921a510957bf14f01fb029504148be4 linux-3.0/include/linux/via_i2c.h -037aa5c19794f3c412f0bfd52e8212de linux-3.0/include/linux/via.h -4db1a7dde6507042a987fc85869ce4f9 linux-3.0/include/linux/via-gpio.h -f6e0447082f940684547a3b88534ad8a linux-3.0/include/linux/via-core.h -68e78a39303be457b2cde7389245392f linux-3.0/include/linux/vhost.h -b8f89a0c57fd5b568086168ef9018f79 linux-3.0/include/linux/vgaarb.h -ec517530a8c553cb5e8149f7d27c287c linux-3.0/include/linux/vga_switcheroo.h -4b90f34d2b3d432b142d7abc986b0a3a linux-3.0/include/linux/vfs.h -051654f3bc5de6b714561eee6cd4cf71 linux-3.0/include/linux/veth.h -88cdd12e3c92c9cfcba4df7f26604227 linux-3.0/include/linux/vermagic.h -d240d4d12a960057902bc3f4216e34de linux-3.0/include/linux/v4l2-subdev.h -0b1f719dc47dba1bc949060deb647e19 linux-3.0/include/linux/v4l2-mediabus.h -23df856b904228d44a6dd5c58dc4d6f5 linux-3.0/include/linux/uwb/whci.h -59a893ef7c2a1b8f1f67c1593b7711af linux-3.0/include/linux/uwb/umc.h -f5bed4110423dea527a1df49b2c908b9 linux-3.0/include/linux/uwb/spec.h -382843922feeebcf87655f2825f3a25a linux-3.0/include/linux/uwb/debug-cmd.h -1cca39e2624207c590535b1899e51fbb linux-3.0/include/linux/uwb.h -5eda7a15ba9c13ab15bcdbd40ff41f81 linux-3.0/include/linux/uvcvideo.h -ac305ca70f2fc1803e3af47ddcc49513 linux-3.0/include/linux/uuid.h -f0322b0ebd4d79529fe7fb942c42633a linux-3.0/include/linux/utsname.h -f7d113ffe6d2fee4bf389d967828ef91 linux-3.0/include/linux/uts.h -7bdb764dd5fcd57ae3a47fbc6afaab8e linux-3.0/include/linux/utime.h -3ebed5fe14118fdd07ac8fe7f5a7fea5 linux-3.0/include/linux/user_namespace.h -ed34b8aa0786d210e1812fa21fd12afd linux-3.0/include/linux/user.h -375e3ac5532a63b6b2c3f9491963daf8 linux-3.0/include/linux/user-return-notifier.h -bca4bb6bfc65cbd0e86eb98ef8b9ac59 linux-3.0/include/linux/usbdevice_fs.h -57d3953c193bd8092c372b8024fc62ac linux-3.0/include/linux/usb_usual.h -05ec032886858478291a1a294f4ec406 linux-3.0/include/linux/usb/wusb.h -c7825a9daa915eb1717d7d3554c8625c linux-3.0/include/linux/usb/wusb-wa.h -88c55c1d421ee51a41be9c132d1f3c88 linux-3.0/include/linux/usb/video.h -aecbc084e998cf0daad57dcf78aa76f6 linux-3.0/include/linux/usb/usbnet.h -7696031497e0196c9e887c939398e6e5 linux-3.0/include/linux/usb/ulpi.h -1115fd4c7af53a54f57a913c54333a0a linux-3.0/include/linux/usb/tmc.h -50af47d2345427b9208a379ebf06aabf linux-3.0/include/linux/usb/storage.h -814536138c148c2b874e560f9c00f894 linux-3.0/include/linux/usb/sl811.h -e8fac4c3b1eaec7bcf0139a7689d2aa1 linux-3.0/include/linux/usb/serial.h -9fa0e860028227877fb8b3dec7bac8d2 linux-3.0/include/linux/usb/rndis_host.h -fdb425020554f2cd71274846e450b02a linux-3.0/include/linux/usb/renesas_usbhs.h -26848afa0943cf041e3368bf597f61ac linux-3.0/include/linux/usb/r8a66597.h -41b5b80478b48a45e7437a52f170f755 linux-3.0/include/linux/usb/quirks.h -c0aebc7ac0fcac021e7515e0542ae1b3 linux-3.0/include/linux/usb/otg.h -4a59e78f6dfbcfb38040d80130cab230 linux-3.0/include/linux/usb/net2280.h -0cf63b094e34a511a2a0031540fd953d linux-3.0/include/linux/usb/musb.h -ad5c720198392e1e450fd54b445d2645 linux-3.0/include/linux/usb/msm_hsusb_hw.h -720346ce577d2a3a335f704422f15113 linux-3.0/include/linux/usb/msm_hsusb.h -4c9adade341df867a36bde462f5e27bb linux-3.0/include/linux/usb/midi.h -d3e0205da5b42b217041d3d8dca42f28 linux-3.0/include/linux/usb/m66592.h -4ddd7b01f761f276759bf047b24bddee linux-3.0/include/linux/usb/langwell_udc.h -466da2db773386641495d4c05ca9480a linux-3.0/include/linux/usb/langwell_otg.h -ddca64e3e45feda1c46fd682a82e7337 linux-3.0/include/linux/usb/isp1760.h -3bc62ad901f7467dc4899427aeec6f98 linux-3.0/include/linux/usb/isp1362.h -167bddf12e4c5cb14ea097f1fb14688a linux-3.0/include/linux/usb/isp116x.h -f48bfbc2ab734074669f3f62d3c92129 linux-3.0/include/linux/usb/irda.h -7a4e38f1e7002c7c06a72cb7efe00dfc linux-3.0/include/linux/usb/iowarrior.h -4fca78cfcf2e66d8d6799c2476283850 linux-3.0/include/linux/usb/intel_mid_otg.h -93fd76709713132e9ff4b97f662adebf linux-3.0/include/linux/usb/input.h -47a853c2b921d6219e1891daa348cf2f linux-3.0/include/linux/usb/hcd.h -ee369c74ec6b6a6beb7fabc1770e630a linux-3.0/include/linux/usb/gpio_vbus.h -c7f585a16df110d11a899cd72b49b46d linux-3.0/include/linux/usb/gadgetfs.h -bf56e5a2f3b7d45a31eb8f80dd9e04ae linux-3.0/include/linux/usb/gadget.h -8bb08ad66ed43be82f5e9bc1975bbe39 linux-3.0/include/linux/usb/g_printer.h -2664609d316e7d75c9fdf85e8235c6ef linux-3.0/include/linux/usb/g_hid.h -76d6937eee48761833efe0411dc05280 linux-3.0/include/linux/usb/functionfs.h -e6683893c538ca3fd91f06fba2fe32dd linux-3.0/include/linux/usb/ehci_def.h -3dc9761f3c59d8ff74588a7da5618cc4 linux-3.0/include/linux/usb/composite.h -1798b35957a06f7a89305950a29b7015 linux-3.0/include/linux/usb/ch9.h -ba9b2b990e7bba20bf0c9a1d85689c85 linux-3.0/include/linux/usb/ch11.h -483d15ec404fcd44b29327f94b869fa8 linux-3.0/include/linux/usb/cdc.h -15184bc46e91a59160aa02cecf28f77b linux-3.0/include/linux/usb/c67x00.h -8d33d9c9027594b56b7feae87337fcee linux-3.0/include/linux/usb/audio.h -2e51c3ea1062a1064bc127b888c46805 linux-3.0/include/linux/usb/audio-v2.h -acd341f5c7294a120952edbfeba2c07b linux-3.0/include/linux/usb/atmel_usba_udc.h -79b593d8fb8929f86bb9ef30fc103b5d linux-3.0/include/linux/usb/association.h -02251e9da51201f0feda3cf8bf92dd6b linux-3.0/include/linux/usb/Kbuild -8f045d50edd8024efb1c6acd9a62d0de linux-3.0/include/linux/usb.h -84811f1c2eed3d30426975fc81175cca linux-3.0/include/linux/unistd.h -e792dd5db3b644ab93a430b6607f809a linux-3.0/include/linux/unaligned/packed_struct.h -9ba2c5c810eeb061a4d33033162625e6 linux-3.0/include/linux/unaligned/memmove.h -1a280f16d059f816b566c8cb888d7722 linux-3.0/include/linux/unaligned/le_struct.h -44e237e15d4df645657ba145522d51ea linux-3.0/include/linux/unaligned/le_memmove.h -e330c40b53c8fb8033a6a260ce534c2c linux-3.0/include/linux/unaligned/le_byteshift.h -512648d2153bdd5855b0de25ae5a435c linux-3.0/include/linux/unaligned/generic.h -475d9fc89b6b56f6e6d3ace9da52a842 linux-3.0/include/linux/unaligned/be_struct.h -c62df208ea9540e52e347e3f33d38be9 linux-3.0/include/linux/unaligned/be_memmove.h -facc6a95244748b0f57b8d8a6daf0f98 linux-3.0/include/linux/unaligned/be_byteshift.h -2e101904623c5521a3b50325bf04783a linux-3.0/include/linux/unaligned/access_ok.h -530d783ac795a5ddeef158fe9891c7f6 linux-3.0/include/linux/un.h -291b261d25ce33511d8a4d7cee55d2a0 linux-3.0/include/linux/ultrasound.h -8b83f35a042932cc8fc2ee1b5dceb273 linux-3.0/include/linux/uio_driver.h -55368d7a212338aa87a7d8cfe45af868 linux-3.0/include/linux/uio.h -3fdcde9b21440d74e2213e31bae9e661 linux-3.0/include/linux/uinput.h -359632e5307c4c68349c5a4328084daa linux-3.0/include/linux/udp.h -a9f4dcb792ab79c0fbd5741b0f4ccaa3 linux-3.0/include/linux/udf_fs_i.h -4d1ec01a98adb471ec4163e3424a5663 linux-3.0/include/linux/ucb1400.h -68018d1ad95774756f78c05590c98a78 linux-3.0/include/linux/uaccess.h -176d6255f2b2bd382c77aee89a26501b linux-3.0/include/linux/u64_stats_sync.h -2215832047368e6626bb21e72fe9b704 linux-3.0/include/linux/types.h -b126b84611d4b4e30fdc865112fc72be linux-3.0/include/linux/typecheck.h -02a5b4e8fed99945c300987cbe984f48 linux-3.0/include/linux/tty_ldisc.h -fac9bfb9a6d4800bd9ee8fc2b82ec327 linux-3.0/include/linux/tty_flip.h -ee537e294bece73285747ce05cb51fb4 linux-3.0/include/linux/tty_driver.h -ba004fd7819dfc0df574049f46c0cb29 linux-3.0/include/linux/tty.h -1d2a0f6ce129a7733e76c62f52b60060 linux-3.0/include/linux/tsacct_kern.h -b596cfe6d92982e25892f0b61b76f295 linux-3.0/include/linux/trdevice.h -ab5b888c2ee126e359ee3f802dae8112 linux-3.0/include/linux/transport_class.h -9b3e623fab9691f6419bb80768f01731 linux-3.0/include/linux/tracepoint.h -af9c03ee7993df0fc9521656f16a74bc linux-3.0/include/linux/tracehook.h -86569037c2a8fac60574c09e875b65a5 linux-3.0/include/linux/trace_seq.h -8873c50361117100f3ad59343ff30833 linux-3.0/include/linux/trace_clock.h -a1222c6a4457e0ef9c3a2b15092e4373 linux-3.0/include/linux/tpm_command.h -449078985532140d20a710d463f69f61 linux-3.0/include/linux/tpm.h -22efc8a2c5dcd5ca13bd9d125eaa2ac0 linux-3.0/include/linux/toshiba.h -98d69f375daa252ae8754f26f8c2d621 linux-3.0/include/linux/topology.h -36bac69cda6a9a26c9799abead7c9d2a linux-3.0/include/linux/tipc_config.h -61be2c29a61102a61271d40ae3305080 linux-3.0/include/linux/tipc.h -e4210e4c52dc103642b9159993946f17 linux-3.0/include/linux/tiocl.h -3ff6b30d7851b2a06968f855c4ecc472 linux-3.0/include/linux/timex.h -b3f964f683e51a93731e499af2104679 linux-3.0/include/linux/times.h -c428a2d7e3d67bc259359759d1459fad linux-3.0/include/linux/timerqueue.h -719f43abe6b5f14f6bc331f1625cb2f1 linux-3.0/include/linux/timeriomem-rng.h -09beba3e4eb8e7371bb8443ea23db08e linux-3.0/include/linux/timerfd.h -34f46198f7a2ad2c7a1b7136ae6f70bc linux-3.0/include/linux/timer.h -7a4f7676b05fb0f640b044b13ababaef linux-3.0/include/linux/timecompare.h -04c4af8068df9d0b5188c4d489a801ad linux-3.0/include/linux/time.h -5bf99b449aa4ea0e77eb662fb407e8ec linux-3.0/include/linux/timb_gpio.h -1408e2f5d6c02f21a045abba02edd968 linux-3.0/include/linux/timb_dma.h -8f56d3f4455beb74676aa0d870368d52 linux-3.0/include/linux/tifm.h -b9030353a8aa290533fcdb448da3d79a linux-3.0/include/linux/tick.h -4186bb43343c12feba673302b308f7dc linux-3.0/include/linux/ti_wilink_st.h -198150a1feb6a72ba7fc7401d6864b01 linux-3.0/include/linux/threads.h -74bf6ac1d0ee99a9caa50b139b50698e linux-3.0/include/linux/thread_info.h -8b2d2c987ba6200164bf56845d47b587 linux-3.0/include/linux/thermal.h -e0316dc637704c08ae1e8e9ab3fcf3de linux-3.0/include/linux/tfrc.h -46af3b7476ab84a304928da23c525920 linux-3.0/include/linux/textsearch_fsm.h -8f583419415d7338d6b0d02c09b155fc linux-3.0/include/linux/textsearch.h -4d69f193a1d9a95210cefe6e2f0e444e linux-3.0/include/linux/termios.h -7f174693f1fde82e3a3a4e689c0446cf linux-3.0/include/linux/telephony.h -1bd4f9d1d043c59efd4ce198732b9ae6 linux-3.0/include/linux/tcp.h -52ea76765eb5d8f773c9a0a86a659225 linux-3.0/include/linux/tca6416_keypad.h -83a0fd0a75861bd4603a87b2f2814488 linux-3.0/include/linux/tc_ematch/tc_em_text.h -b64651debc982832de0c8fe8dad6e58d linux-3.0/include/linux/tc_ematch/tc_em_nbyte.h -3f1ee3c9465ab9496071e2bd32a8e76e linux-3.0/include/linux/tc_ematch/tc_em_meta.h -7140b7fc8936965c45a9ba27f738fa7b linux-3.0/include/linux/tc_ematch/tc_em_cmp.h -ad308860f36ec55494cdab08c08ce340 linux-3.0/include/linux/tc_ematch/Kbuild -fa09cda28dbdbb437c7f8cb7123049f8 linux-3.0/include/linux/tc_act/tc_skbedit.h -135beeb133e3cc631a472b4a147045a0 linux-3.0/include/linux/tc_act/tc_pedit.h -7b0f79952ed71e02fd0f5ec7f5423076 linux-3.0/include/linux/tc_act/tc_nat.h -bc73c46e725a2c54ddabc631622b882b linux-3.0/include/linux/tc_act/tc_mirred.h -f1e639e1dbef76a46a80a7fb8195898b linux-3.0/include/linux/tc_act/tc_ipt.h -7167a299c55cc5512be5efcf04601ba4 linux-3.0/include/linux/tc_act/tc_gact.h -47f55bfca3e257235116b417e9b0b228 linux-3.0/include/linux/tc_act/tc_defact.h -8cf29092e1123930b2e63487bb4b7618 linux-3.0/include/linux/tc_act/tc_csum.h -b556950c14eb3d5d415215673e2644be linux-3.0/include/linux/tc_act/Kbuild -3daa4e8df9472eeaeb8483217756f7dc linux-3.0/include/linux/tc.h -f2c377e6fd23634abb2b143faf192503 linux-3.0/include/linux/tboot.h -af8578c59a9303667da16a8ed6bfa9fc linux-3.0/include/linux/taskstats_kern.h -f5f599f5ade515b81964e58211a4d2fb linux-3.0/include/linux/taskstats.h -41b4acbd7386c84f926e798bbe7feb43 linux-3.0/include/linux/task_io_accounting_ops.h -977916d754c3447c6a9c05d4816c4ad9 linux-3.0/include/linux/task_io_accounting.h -529393b67c11a388892667762e4fc0b6 linux-3.0/include/linux/sysv_fs.h -c24909ba6c12bc92c423aac251853979 linux-3.0/include/linux/sysrq.h -d38d546efabff432491d654146dddf40 linux-3.0/include/linux/syslog.h -bbdc8f5ebc965fdf96161adc2ef70fa6 linux-3.0/include/linux/sysfs.h -04fc4b223b96de4c9106641a27107426 linux-3.0/include/linux/sysdev.h -76c375c0c8013e43d64d0d0be44faaee linux-3.0/include/linux/sysctl.h -f237e46f1865ff32e597d3850f091fd9 linux-3.0/include/linux/syscore_ops.h -1c547ecedcdb012fd5f12b3d0410ddcc linux-3.0/include/linux/syscalls.h -d3036f7104cee4bfeb51d7d7864ecd32 linux-3.0/include/linux/sys.h -9e0096003986d85f3008e298fc074a53 linux-3.0/include/linux/synclink.h -0ff81b188ba4acb1acfe680ad4230d4a linux-3.0/include/linux/swiotlb.h -21f54185761919feec3df575363a69ca linux-3.0/include/linux/swapops.h -734e9f7a2727bfc31a5b8d9de2612865 linux-3.0/include/linux/swap.h -85ff33d2ab5cfdc42cc78c5a0410151a linux-3.0/include/linux/swab.h -ff5878baa72b364577f0d4cf1513fbe0 linux-3.0/include/linux/svga.h -bb6a7bd2bd6774ced0a596b59bba9267 linux-3.0/include/linux/suspend_ioctls.h -b6ce3e78174c7690c31ab4c3548120ed linux-3.0/include/linux/suspend.h -27425163b79f03541e6e0166a307d951 linux-3.0/include/linux/superhyway.h -498cd268cf119eb58a78c99dd255bddd linux-3.0/include/linux/sunrpc/xprtsock.h -a2ffb2b8acb99f01b40ddd159b9fc113 linux-3.0/include/linux/sunrpc/xprtrdma.h -74241b9db7b53766d459403c3c1381b1 linux-3.0/include/linux/sunrpc/xprt.h -43cebd31a9a69b0a21eea63cf50e9fad linux-3.0/include/linux/sunrpc/xdr.h -875b34fded14e526efb6b139b02ac0ba linux-3.0/include/linux/sunrpc/types.h -c63a5dabd1b897c998cd93de964f7546 linux-3.0/include/linux/sunrpc/timer.h -f6c96d3696b7bd080edf9655f9fdb0b1 linux-3.0/include/linux/sunrpc/svcsock.h -6551a5ec1f1af2531075aa6ff8a09b79 linux-3.0/include/linux/sunrpc/svcauth_gss.h -91065df1f9d4275fb3ee834e4b46214e linux-3.0/include/linux/sunrpc/svcauth.h -42e66d01eef474c589a81ebbc3fc4a63 linux-3.0/include/linux/sunrpc/svc_xprt.h -5685401011f415ee6e487585e7983fa5 linux-3.0/include/linux/sunrpc/svc_rdma.h -c5489363cfcfcc9044d30fb4eb1a27b3 linux-3.0/include/linux/sunrpc/svc.h -2cd97239f4c300255473ea5114dcb8fc linux-3.0/include/linux/sunrpc/stats.h -55214517af55209333d4f303d9c2941d linux-3.0/include/linux/sunrpc/sched.h -70e7e426431d4742891ef8be9332fd0f linux-3.0/include/linux/sunrpc/rpc_rdma.h -72c04f79e5a7a0d3fdfb68242e01326d linux-3.0/include/linux/sunrpc/rpc_pipe_fs.h -123e0afa4a2256c623d86cbac85da5de linux-3.0/include/linux/sunrpc/msg_prot.h -508751efb21b8f122abb418dfb3e2906 linux-3.0/include/linux/sunrpc/metrics.h -d6f64a86b135f4e63a26c965faa40fcf linux-3.0/include/linux/sunrpc/gss_krb5_enctypes.h -575bfab5519973696df1fa49fd0a4a3b linux-3.0/include/linux/sunrpc/gss_krb5.h -846b9e969cfdcb63c6805c949bb642e9 linux-3.0/include/linux/sunrpc/gss_err.h -54504a57fd28200a288b4f77fe8cea87 linux-3.0/include/linux/sunrpc/gss_asn1.h -696de15c614086b4b4439e8aee30b19c linux-3.0/include/linux/sunrpc/gss_api.h -2f26ee1b4fba293cbc70b4cd9b1a1f18 linux-3.0/include/linux/sunrpc/debug.h -c4e4017d03573d6e2b27d91826e40e87 linux-3.0/include/linux/sunrpc/clnt.h -2dd5b96f086453ba3f591fa6ce0e35cd linux-3.0/include/linux/sunrpc/cache.h -4d0dba1892c70c38d3036b43c1425dc8 linux-3.0/include/linux/sunrpc/bc_xprt.h -cd7d5682144382a850d4c5d97ab6710d linux-3.0/include/linux/sunrpc/auth_gss.h -fd5605f1934bb10246a3cba3a1ce11ae linux-3.0/include/linux/sunrpc/auth.h -33b5a6c926c69bb19cd604b25ddd3a2a linux-3.0/include/linux/sunrpc/Kbuild -40954fd0639e40b7006daa71b592226a linux-3.0/include/linux/stringify.h -23bf92efb2af4d40fe9a96e4e1ba0026 linux-3.0/include/linux/string_helpers.h -ecd387233163944dda4787d5108cf870 linux-3.0/include/linux/string.h -96b6fe34cb15067c98a45d606623635b linux-3.0/include/linux/stop_machine.h -3b4f4a24f161831cc1b32b68a10b127d linux-3.0/include/linux/stmmac.h -29a5fa00d0e342b3a1e8390569a03f3b linux-3.0/include/linux/stddef.h -7a6ce3c481d603088846ab9e6064f153 linux-3.0/include/linux/statfs.h -a27adee1a023bf1f82781dbf7df12c9c linux-3.0/include/linux/stat.h -afefbc51e96dae65d817d62a3cc43f0e linux-3.0/include/linux/start_kernel.h -20d9d14048853458c7a58d41eeea83e6 linux-3.0/include/linux/stallion.h -edc5ec2a6410ca48e09e33db5c689dec linux-3.0/include/linux/stacktrace.h -a7bba7871acb67f30ac08966bed738b4 linux-3.0/include/linux/stackprotector.h -a0785b3f174e4ef98896ac5898c929ea linux-3.0/include/linux/ssb/ssb_regs.h -c78e0513a8dc5d3330b8ff027e67551c linux-3.0/include/linux/ssb/ssb_embedded.h -ec49ad82cdba1760c5662f388993facd linux-3.0/include/linux/ssb/ssb_driver_pci.h -4d59562c8e94d6bf4ae1f5c48ea934a6 linux-3.0/include/linux/ssb/ssb_driver_mips.h -58697c34ab71c5ec1716d23a71becbb5 linux-3.0/include/linux/ssb/ssb_driver_gige.h -01ba4029c485f1791a252bf9ec2fd90c linux-3.0/include/linux/ssb/ssb_driver_extif.h -b0b990f88607189010adf7efcb369e49 linux-3.0/include/linux/ssb/ssb_driver_chipcommon.h -c39789586e17dc982edc6b437049fa20 linux-3.0/include/linux/ssb/ssb.h -73f6f8752a4103675c51041f96771d5a linux-3.0/include/linux/srcu.h -13e91d50d7a97b5d7c7463f6fcad04f3 linux-3.0/include/linux/splice.h -4f33236e6d8041721c373993d21e71b1 linux-3.0/include/linux/spinlock_up.h -9c7d00a407bde4b942448ef185e29431 linux-3.0/include/linux/spinlock_types_up.h -ce65244ca205518a4354b92141eb6381 linux-3.0/include/linux/spinlock_types.h -bdb9ce5bf8f5b85c6cfd7728e790d11d linux-3.0/include/linux/spinlock_api_up.h -bf1d7fa3180344a7ffa824f649ae5f3e linux-3.0/include/linux/spinlock_api_smp.h -677f1bc0c7e5e5465b2b86f2c96eaebc linux-3.0/include/linux/spinlock.h -a12e1e04e072198a7a9995473f16187a linux-3.0/include/linux/spi/xilinx_spi.h -4db41d0634d60ce0c319a14da253b106 linux-3.0/include/linux/spi/tsc2005.h -ca1868309853bb5ae80542fe8a18cde8 linux-3.0/include/linux/spi/tle62x0.h -2364d8e68c6a1ff9421fb50e323f59bb linux-3.0/include/linux/spi/tdo24m.h -dc170c1256e6e548d1a464e2b1cc803a linux-3.0/include/linux/spi/spidev.h -80080deec5bf1a332a041c3d32c8d97e linux-3.0/include/linux/spi/spi_oc_tiny.h -4400286f979987cc9919f4a85c4c213c linux-3.0/include/linux/spi/spi_gpio.h -882ff42f3adafbacd44f0dffa01f5a70 linux-3.0/include/linux/spi/spi_bitbang.h -7b14199bd73c8785476d13317ea1bb94 linux-3.0/include/linux/spi/spi.h -42cb9602675ba5d72e10403d9d76eed2 linux-3.0/include/linux/spi/sh_msiof.h -d48a97f1efb825c4270690d7a82ae382 linux-3.0/include/linux/spi/pxa2xx_spi.h -3837a23e41414055bf0bcb81b5985535 linux-3.0/include/linux/spi/orion_spi.h -64e8be6990f46c5948d9107c42780069 linux-3.0/include/linux/spi/mmc_spi.h -288d1c78426179b778b476b858dda2e5 linux-3.0/include/linux/spi/mcp23s08.h -2c6c9b31c21e0d97fb874786dcc07dad linux-3.0/include/linux/spi/mc33880.h -97db7633da6accde9b2e921ebc99dc8a linux-3.0/include/linux/spi/max7301.h -7104ff332ba5c623939352c45138fe6d linux-3.0/include/linux/spi/lms283gf05.h -7bfae1123afeca75210eec58b90c941b linux-3.0/include/linux/spi/libertas_spi.h -380b52076af573bf73236f8f9319cef8 linux-3.0/include/linux/spi/l4f00242t03.h -5812bbc4134f105d0b6a9539cd2d661b linux-3.0/include/linux/spi/ifx_modem.h -15aed8e28f9a5d0db89790c1b1f3f6e6 linux-3.0/include/linux/spi/flash.h -d7c76c512e0ca3573d57a2333ac35f78 linux-3.0/include/linux/spi/eeprom.h -cf1a1f229411744eae05ed6518ed6536 linux-3.0/include/linux/spi/ds1305.h -499f503f65c9194fc7665b1ea47e2c2f linux-3.0/include/linux/spi/corgi_lcd.h -feb6eae007acad93df85aeeb6ba652a7 linux-3.0/include/linux/spi/at73c213.h -5a4a7a9754e37aead3978d01b4d5fb7b linux-3.0/include/linux/spi/ads7846.h -e5be7b7febd95f6592286e781619ee64 linux-3.0/include/linux/spi/ad7879.h -e937ea733a2cf034375f29cea0dd5a83 linux-3.0/include/linux/spi/ad7877.h -668288880458a2ded22beca7ec70e7f6 linux-3.0/include/linux/spi/Kbuild -ca4e387ade7d5073b73abcecfad90897 linux-3.0/include/linux/spi/74x164.h -9aee3f6c1e196a546e446b68a6e183c7 linux-3.0/include/linux/soundcard.h -53ce16dba76f950d942ed834e1f45790 linux-3.0/include/linux/sound.h -f2fabd2f246fdc86d4a35fb6c62e5d91 linux-3.0/include/linux/sort.h -1761fa7ebcf3e1be05664109ac65e42b linux-3.0/include/linux/sonypi.h -7d1324351028e11f229bc71da6d70b6b linux-3.0/include/linux/sony-laptop.h -94b3873412cfa765a9a86aebb0f8e870 linux-3.0/include/linux/sonet.h -b922adb7bb60b70d5db3cef5ae468ac3 linux-3.0/include/linux/som.h -ebe0c3865700c3532e932fec4e2f4a7c linux-3.0/include/linux/sockios.h -40f87afc12d3f3bdbb20721262622acf linux-3.0/include/linux/socket.h -45a214d7db0686c417a6d946707e1437 linux-3.0/include/linux/snmp.h -19876ecc5f919d1007f8c524d731e0ab linux-3.0/include/linux/smsc911x.h -7b02797943134b3791cdf789793c8321 linux-3.0/include/linux/smp.h -61fe29872fb9f2a7ca9874b6a521fbf0 linux-3.0/include/linux/smc91x.h -a799246e230d3ed4927be2303a4a9f2c linux-3.0/include/linux/smc911x.h -9767673eba0f22d0c7d3693b7fabdc82 linux-3.0/include/linux/sm501.h -93fe09d6b4bab8779db1da99a62af331 linux-3.0/include/linux/sm501-regs.h -b2eefbc1b3daddc440c369c1a3ea4885 linux-3.0/include/linux/slub_def.h -864cd1d673484ec764ba03f5e5890783 linux-3.0/include/linux/slob_def.h -b546135b3cf26c3bfe98649de8dbae80 linux-3.0/include/linux/slab_def.h -5570b8d98a44f1005b0c7181301abe7f linux-3.0/include/linux/slab.h -0ad363ba68922806d4a917f644bf5aed linux-3.0/include/linux/skbuff.h -c4f29722235fd9c842a6121431229a57 linux-3.0/include/linux/signalfd.h -c20e2dd992e7925feddde55641adab3a linux-3.0/include/linux/signal.h -24c94678aa6a0fd4d93c1a065a83e579 linux-3.0/include/linux/sigma.h -96134df444216bbced4a0286bd6b2a10 linux-3.0/include/linux/sht15.h -cfec680e28faab3f8fcbaffc7aa6bb42 linux-3.0/include/linux/shmem_fs.h -007ed53a016c32f0f41d4b5b5b4a2e7d linux-3.0/include/linux/shm.h -2f0b2b28331ac887470d62c0111af973 linux-3.0/include/linux/sh_timer.h -195b9c8c1f3fff66e8bc21be65c4d53e linux-3.0/include/linux/sh_pfc.h -c9303847aba199f1ee5b4db505ad426a linux-3.0/include/linux/sh_intc.h -5b53a93074ce6303a7b3a61983755429 linux-3.0/include/linux/sh_dma.h -1c130fceb7f5085e27ad461c2efbdc66 linux-3.0/include/linux/sh_clk.h -1a1130318f1db769b233000eb3a498c2 linux-3.0/include/linux/sfi_acpi.h -d5d718793e39504be4c5734612f5c9c5 linux-3.0/include/linux/sfi.h -3eb48462359d7bbcd5bb58ce087ec261 linux-3.0/include/linux/serio.h -d505cb09ea3fb7b7a67f2bda3df35080 linux-3.0/include/linux/serial_sci.h -c61556991036eaceb74b13b2028baa20 linux-3.0/include/linux/serial_reg.h -5125e81977c73b7032a4097683f86ae9 linux-3.0/include/linux/serial_pnx8xxx.h -a90bb941a23845565731dd117f85c9b1 linux-3.0/include/linux/serial_mfd.h -e2fc608f87ce792624c0e732959ec03d linux-3.0/include/linux/serial_max3100.h -d80c78533327280dd3022cbf21a70569 linux-3.0/include/linux/serial_core.h -340bfebe32d62337b3edd19d29cee216 linux-3.0/include/linux/serial_8250.h -4206bce0eb970b7d6377694eb0e58b77 linux-3.0/include/linux/serialP.h -9f46296e17def2ad09fdc3a39058f2e7 linux-3.0/include/linux/serial167.h -878ab955c0ba7203db4a5f92fca14199 linux-3.0/include/linux/serial.h -5775ac886ba710caa5cb1a1da0cf9e4b linux-3.0/include/linux/seqlock.h -433c50a3b341233b4d4bb46d94508e28 linux-3.0/include/linux/seq_file_net.h -f52e1ba9c2d467a3fd867dfd72ca0ca0 linux-3.0/include/linux/seq_file.h -f84fcebf3e3330dc65c4ce32f8f7a6c7 linux-3.0/include/linux/semaphore.h -271b07d12842264b9fac03530f101d2a linux-3.0/include/linux/sem.h -c6ae1b14d9d1b4d016ef7639e5ea5157 linux-3.0/include/linux/selinux_netlink.h -c4073793131d1d517bb25b46377d961b linux-3.0/include/linux/selinux.h -e2b1207f3a9d4957b3163b4696fa46c9 linux-3.0/include/linux/selection.h -89653fd1a7a2dc65fcb1ac36ec02732a linux-3.0/include/linux/security.h -b5569c56346067757cb6978046fce337 linux-3.0/include/linux/securebits.h -eeeb3a206030911c01e5e51859158688 linux-3.0/include/linux/seccomp.h -834753b5ee15e2275490fdaf1c6d6533 linux-3.0/include/linux/sdla.h -574e13c342134ac8679dae945f302294 linux-3.0/include/linux/scx200_gpio.h -e4e46a750b09aab5d3da77a277399f43 linux-3.0/include/linux/scx200.h -16dbddd1e60e0c5eed8638aa9c1cc73a linux-3.0/include/linux/sctp.h -dfa51cbcf3f3a1fce5484157193bb1fb linux-3.0/include/linux/screen_info.h -19a9fbe8941ab0c3e068b1660394599a linux-3.0/include/linux/sched.h -8596001bbd5e95651769f4e14498d203 linux-3.0/include/linux/scc.h -21d56c1edf6a45993486544ea0973f2c linux-3.0/include/linux/scatterlist.h -7377dc6fcc7da071645f5f5b1b3e0adb linux-3.0/include/linux/sc26198.h -5b3765d9ed2e4f8078a673137fe782c1 linux-3.0/include/linux/s3c_adc_battery.h -159705468fb205197735084f235c20ea linux-3.0/include/linux/rxrpc.h -3f7b45d0afa297103570d8964d2e4624 linux-3.0/include/linux/rwsem.h -98e5ec68405c37973a1b4ba492dc6e3d linux-3.0/include/linux/rwsem-spinlock.h -a81d48f25e68f486172cba4787eca063 linux-3.0/include/linux/rwlock_types.h -fbb3745e277f4506f52c9e469f6fc545 linux-3.0/include/linux/rwlock_api_smp.h -c689040eee1f64ea9fe9991129b7cca9 linux-3.0/include/linux/rwlock.h -0075b390d1e1476dda66634377232743 linux-3.0/include/linux/rtnetlink.h -3d9a4d5964ba9ba8c5c3d36047c3a6bb linux-3.0/include/linux/rtmutex.h -bca122be0f0c30df7902a8c3e7674424 linux-3.0/include/linux/rtc/m48t59.h -f8e9776036f63e3401f8eb4286456f5c linux-3.0/include/linux/rtc.h -2fc7b5082286891e1151a9fe983f6e3c linux-3.0/include/linux/rtc-v3020.h -5c6f2b17e938f5c367c1f249dff41c2d linux-3.0/include/linux/rslib.h -00664f0b1520dea5c47eafaa3795a8bc linux-3.0/include/linux/route.h -70a153c093b0ed0f6f2adf00ffe06578 linux-3.0/include/linux/rotary_encoder.h -b4ced7d941513991d01fc50cce81a8c4 linux-3.0/include/linux/rose.h -d33142930f8121523cf47b16c86ff182 linux-3.0/include/linux/root_dev.h -cc3fa5de42a2b6b5536662fdff56cca4 linux-3.0/include/linux/romfs_fs.h -f0876ae7dd28984661573151bc50a4dc linux-3.0/include/linux/rmap.h -18b2d5b0505a2e9a5a4e4771fcf160cd linux-3.0/include/linux/rio_regs.h -6cc4ec96f61f53a6a5a94f8e4c5f8286 linux-3.0/include/linux/rio_ids.h -f854a6ee8c31971846d190a29a5c9206 linux-3.0/include/linux/rio_drv.h -c4951aaba41a8c2eea8dc338a28acc08 linux-3.0/include/linux/rio.h -c31574fef531dca2d3ddcf4a0aa8c484 linux-3.0/include/linux/ring_buffer.h -10f0600d866526a5a80db37c196580e0 linux-3.0/include/linux/rfkill.h -63836d88c3cec83791e15f12d62d5e62 linux-3.0/include/linux/rfkill-regulator.h -d36d703f50b596f5661ac93f72f106e7 linux-3.0/include/linux/rfkill-gpio.h -d54d6cf976af3ca128bc57f5bfd1cfea linux-3.0/include/linux/resume-trace.h -a5435fd97c68c600af3a3ccfe2c8085f linux-3.0/include/linux/resource.h -7b6edbcb48850ecce28c6c71f00d892b linux-3.0/include/linux/res_counter.h -f8c4e63f82ca74afd18bec0dde7c7407 linux-3.0/include/linux/relay.h -c43cbe3b8f7a3588903224fdff00b85c linux-3.0/include/linux/reiserfs_xattr.h -d31cad5a0207e6a6789c4e4a2eb6cd00 linux-3.0/include/linux/reiserfs_fs_sb.h -49d85f716077eb69aa078b2848d3ffbf linux-3.0/include/linux/reiserfs_fs_i.h -c4b5b4e5561f65ef262927abc8dcef32 linux-3.0/include/linux/reiserfs_fs.h -50c441913ff57acfeca56cf322f75970 linux-3.0/include/linux/reiserfs_acl.h -3386642ab4e3ebadcacad1c805195844 linux-3.0/include/linux/regulator/userspace-consumer.h -c8da9911e81ab2c344ba37c823b090b8 linux-3.0/include/linux/regulator/tps6507x.h -8a0028cbe634e1620b65c7014eb4590b linux-3.0/include/linux/regulator/max8952.h -e97a071e726a966ce3f40ea9018f882f linux-3.0/include/linux/regulator/max8660.h -b6d41f42cdf804430e0c5667fbdd79d7 linux-3.0/include/linux/regulator/max8649.h -707bbdc50a456714873fce93ec311b13 linux-3.0/include/linux/regulator/max1586.h -ea03b192922b48f04ec3f23ff8f5e2b8 linux-3.0/include/linux/regulator/machine.h -6f6e09458ebe692f4602e4b8e87661cc linux-3.0/include/linux/regulator/lp3972.h -260d882a7337eb4917f92e1997254fc1 linux-3.0/include/linux/regulator/lp3971.h -f74fc361e1a30f4b222fbd4621643ee0 linux-3.0/include/linux/regulator/fixed.h -86cdbbb0b5317bc375ce3c3fe36cc560 linux-3.0/include/linux/regulator/driver.h -b0ee54927203efbb23acb2f185e9386a linux-3.0/include/linux/regulator/db8500-prcmu.h -19e8d67932bdb507001ef16c7f6e1cd5 linux-3.0/include/linux/regulator/consumer.h -a6056175e49919906ecd3e0c8995e924 linux-3.0/include/linux/regulator/bq24022.h -25aed0cd786bf2a6047a081d07d1d0bd linux-3.0/include/linux/regulator/ab8500.h -988056a2b716575093550cf1104d809d linux-3.0/include/linux/regset.h -9d9e67f145368bdeb96b8dda3ae13677 linux-3.0/include/linux/reciprocal_div.h -fc19f3a25a1b90f7053dc5c3a87b470d linux-3.0/include/linux/reboot.h -583759326433cb58c392a1932060546a linux-3.0/include/linux/rds.h -ee3812117c55d9ae863073ab89dd14f6 linux-3.0/include/linux/rcutree.h -32bf279e402a38d5e2fda271f455d08a linux-3.0/include/linux/rcutiny.h -3542ef45af95075282cf6d7f98f52cd1 linux-3.0/include/linux/rcupdate.h -45f7b51467ff185dc2349eefbe9548bb linux-3.0/include/linux/rculist_nulls.h -325b75f474c6dceaa0f331ff497cb214 linux-3.0/include/linux/rculist_bl.h -07fd1870fe6aae6e67441ce27491518e linux-3.0/include/linux/rculist.h -951f43675b739a54111c29aeafda3ed9 linux-3.0/include/linux/rbtree.h -8239192bcb6da785e7970cbc94a803df linux-3.0/include/linux/raw.h -465163fa3c433388e26b22bdc60eaf29 linux-3.0/include/linux/rational.h -09130694513ca82b3ae97cc0abe293b5 linux-3.0/include/linux/ratelimit.h -5e7dd20d56401be25479c1eb06b9fc3f linux-3.0/include/linux/rar_register.h -d3941adabc9adf426669109fe985e9ad linux-3.0/include/linux/range.h -939971501d42e74b6e3b3f82ec85af36 linux-3.0/include/linux/random.h -34bec7e9d4282a1940963e6262cf1b02 linux-3.0/include/linux/ramoops.h -2736d7e36f160d036921d1f4ecf995cf linux-3.0/include/linux/ramfs.h -1728fd76d10a8147bf479cfb72d1b952 linux-3.0/include/linux/raid_class.h -81b2db9d0094eae56e8e98068a94059b linux-3.0/include/linux/raid/xor.h -79095cc66e1b59b4b804789218f4dc3a linux-3.0/include/linux/raid/pq.h -b7fd1e588d4c7a8fc048493ac1dcb404 linux-3.0/include/linux/raid/md_u.h -0c02ae98a60f41ddaf4fb221179ae7c3 linux-3.0/include/linux/raid/md_p.h -d4128002f2316e94435e36cfa10e2a89 linux-3.0/include/linux/raid/Kbuild -b930809632889857f2a6df268a89aeb9 linux-3.0/include/linux/radix-tree.h -7edace77a8e1a5424aa8bd7aa11eddcf linux-3.0/include/linux/radeonfb.h -9048c114671fd5be9c90320a3cb780d3 linux-3.0/include/linux/quotaops.h -0a36780986296ee618d5426cd9c0830e linux-3.0/include/linux/quota.h -876655c5c9618a88c97ee2ed6ba2eff9 linux-3.0/include/linux/quicklist.h -bc3b6276e4e0f1b95c9217e65593220a linux-3.0/include/linux/qnxtypes.h -ea1073a4ef51fade8c038b686744bae4 linux-3.0/include/linux/qnx4_fs.h -ece8a1791350043aab1a272e7762d439 linux-3.0/include/linux/pxa2xx_ssp.h -9aae1d7014bf6742db5e0ed010ace135 linux-3.0/include/linux/pxa168_eth.h -a7f9f7d368030231e87b7c38f52052e7 linux-3.0/include/linux/pwm_backlight.h -46249e7e61bfef1d55386d2f1aba5937 linux-3.0/include/linux/pwm.h -42ae9440d11019d022565dc76b4b8ee7 linux-3.0/include/linux/ptrace.h -bd19c3ca4f63d0e46c84630c40df9483 linux-3.0/include/linux/ptp_clock_kernel.h -fc8cbd17a393c2b003db123bb3c1f516 linux-3.0/include/linux/ptp_clock.h -b53dfc62edd18719f0729b1d60552c9c linux-3.0/include/linux/ptp_classify.h -adce4a7a5b20fac1d0689dbe207ed8f6 linux-3.0/include/linux/pti.h -8eb5a02c1b1b5208d7b483e5cc91530a linux-3.0/include/linux/pstore.h -8cf6d27d7f1c18dc327beadc6fe30bc3 linux-3.0/include/linux/proportions.h -454f2507c490399c162057444a37e5ad linux-3.0/include/linux/profile.h -97c7252e216756ad5123af19b62cb752 linux-3.0/include/linux/proc_fs.h -805411a920bc10c9083ec45dfb309cb6 linux-3.0/include/linux/prio_tree.h -b46befa8cebf770b122f2b957ab5e601 linux-3.0/include/linux/prio_heap.h -b1774eca1f4cdd5759b2b50300637b75 linux-3.0/include/linux/printk.h -b25701ff7d1ed16c039ea1278acdc73b linux-3.0/include/linux/prefetch.h -80d93f679d12ceedb6443ccf65d8bd9e linux-3.0/include/linux/preempt.h -771e09cb480331d4414d58a9be92f715 linux-3.0/include/linux/prctl.h -b678840bd79b1240e5089bcec79ba7f5 linux-3.0/include/linux/pps_kernel.h -6e10fcc0f7aa6ebe5bd811278a05eb95 linux-3.0/include/linux/pps.h -5979322516c4e7af0a3661dfca06e92d linux-3.0/include/linux/ppp_defs.h -6f3880020f49b4c10a8e966ffac7058d linux-3.0/include/linux/ppp_channel.h -67e4498afc565292e0bd014f4518f2d9 linux-3.0/include/linux/ppp-comp.h -322d4662931db8633e48b0515c045949 linux-3.0/include/linux/ppdev.h -0070500a815b6c5e46dd6b550fddbd20 linux-3.0/include/linux/power_supply.h -b531eac22acd8e0af1e7b51300f4af82 linux-3.0/include/linux/power/max8903_charger.h -6b2214c6e47cac8370a6ed7819f404b6 linux-3.0/include/linux/power/max17042_battery.h -4cd7bb58d565cd79fae5d339a6c5d9ae linux-3.0/include/linux/power/jz4740-battery.h -67e9a716f083ce56ab405ff2973f3bdf linux-3.0/include/linux/power/isp1704_charger.h -3b32c90772d8393231e27c755dc4f318 linux-3.0/include/linux/power/gpio-charger.h -e41f286a0f9f6cfc5ba280ff1df13d39 linux-3.0/include/linux/power/bq27x00_battery.h -bf8b683d24dad011e08f28b25e0c5397 linux-3.0/include/linux/power/bq20z75.h -a39e8afea5c753be0301e383a3865d03 linux-3.0/include/linux/posix_types.h -40f7e3afca998d4ca3ee3e22bf0b45ef linux-3.0/include/linux/posix_acl_xattr.h -294792d51b81e13062b56f424e4284f9 linux-3.0/include/linux/posix_acl.h -490344cc75fcf899cfa7e28b7820cf0b linux-3.0/include/linux/posix-timers.h -5fd95e1641b66e247049fc5e9ab63098 linux-3.0/include/linux/posix-clock.h -0472153e0b5811bcae7bb9982c233205 linux-3.0/include/linux/poll.h -38288a0a9060353418831e4b69a77d8c linux-3.0/include/linux/poison.h -897e14044339547af4280be55152dc8a linux-3.0/include/linux/pnp.h -93c44642775ee6ba5a488cd7095197c0 linux-3.0/include/linux/pnfs_osd_xdr.h -58fa732dd51c8ba13dd6423b21b98107 linux-3.0/include/linux/pmu.h -762d4daf962911fc0c98c179e344835c linux-3.0/include/linux/pm_wakeup.h -770e5ec2b7961d99cc88d5d6a42e0058 linux-3.0/include/linux/pm_runtime.h -2238d888b48dfab2bae8b40b6048f509 linux-3.0/include/linux/pm_qos_params.h -618b4574e58866cd855514574d0d9a03 linux-3.0/include/linux/pm.h -6f78bc0113f63645599e0227a47fc3c9 linux-3.0/include/linux/plist.h -364cd159e6b91c1b982b023cdd393016 linux-3.0/include/linux/platform_device.h -e5e3b96062957a5429c196c6066c52ce linux-3.0/include/linux/platform_data/uio_pruss.h -118d05f1064a2315f9466870b1c00842 linux-3.0/include/linux/platform_data/tegra_usb.h -7e79131c2b198e8bb815eabaafe4bb25 linux-3.0/include/linux/platform_data/msm_serial_hs.h -4ffd38c6a15636fe7ac3bbfac298386e linux-3.0/include/linux/pktcdvd.h -59bdcd5be1dd15c0b63269c5e2c8b76a linux-3.0/include/linux/pkt_sched.h -17fc8965c5e36a55e863971aa3555a6d linux-3.0/include/linux/pkt_cls.h -17f1aaaf7e6eaaf0bbd42906ed25be78 linux-3.0/include/linux/pipe_fs_i.h -8558837d51c94fa2e00b81fe86bec8ad linux-3.0/include/linux/pim.h -e1437ec316337d825559d7e049b71d80 linux-3.0/include/linux/pid_namespace.h -230966fde7f4a65346b805cc2a9bf05a linux-3.0/include/linux/pid.h -ff3daec2f727154c3dedf9063912983c linux-3.0/include/linux/phy_fixed.h -f0b28a6726fd8c19e17a830453f041ae linux-3.0/include/linux/phy.h -99767599b2d3fbff005ec91c20933a71 linux-3.0/include/linux/phonet.h -e83a41534c96487948c34154efe07080 linux-3.0/include/linux/phonedev.h -b82ec1444ccd73d042039830da320b45 linux-3.0/include/linux/phantom.h -2ac97a99b307550bbb3cdb0885266bfb linux-3.0/include/linux/pg.h -f8674b509287bb4543b5018e3c296b43 linux-3.0/include/linux/pfn.h -20361c61f778e9d9c678579bf851d26e linux-3.0/include/linux/pfkeyv2.h -1fa556faf02387c4e1f25db7337b4947 linux-3.0/include/linux/personality.h -ac37a440ae1c354288d5b561385a36a7 linux-3.0/include/linux/perf_event.h -973d25ee2c6ff22ba01e7a00cd6c10b8 linux-3.0/include/linux/percpu_counter.h -9e693e37f5405778816b87c074e20ac9 linux-3.0/include/linux/percpu.h -5f06e78be2c5bd2e17bf93dc71597063 linux-3.0/include/linux/percpu-defs.h -23d7c4e86aece14f36e9a1819c5a9192 linux-3.0/include/linux/pda_power.h -421845a2271637f4632a7bb24752e678 linux-3.0/include/linux/pcieport_if.h -6bd18b311da69f5cd279f1ee2f5a2766 linux-3.0/include/linux/pci_regs.h -c1d8cf3ac4b0bf1f60e7ad606ed99015 linux-3.0/include/linux/pci_ids.h -44d895f7862333379645325a6067d41d linux-3.0/include/linux/pci_hotplug.h -6235346484a9c57848f809ed26cd382d linux-3.0/include/linux/pci.h -de4455de8b87a3f8fb19a9fd55e58c55 linux-3.0/include/linux/pci-dma.h -e83d233abb0917e687711d0d230ffeff linux-3.0/include/linux/pci-ats.h -d85d455251ede1f9bcc90e3dfc026d51 linux-3.0/include/linux/pci-aspm.h -4b52bb3997afce6f161681fb428d4336 linux-3.0/include/linux/pci-acpi.h -509cea6cfd1b5459b5ab3ba111c08fd7 linux-3.0/include/linux/pch_dma.h -37c1597d3b21ebd29e48f8a2ad7887a9 linux-3.0/include/linux/path.h -8de0c71f506afc80ddf705106e825549 linux-3.0/include/linux/patchkey.h -0584ee6017086f464e81b0a682d55b80 linux-3.0/include/linux/pata_arasan_cf_data.h -6aff1f7ee963369dd50b99cbcd1f0b8f linux-3.0/include/linux/parser.h -9b3932f57b0a00d2848fd0bdf2466a1a linux-3.0/include/linux/parport_pc.h -3984690c1183415374cef725eac9f5ef linux-3.0/include/linux/parport.h -5ab9e38446642229b140a108c8bfd083 linux-3.0/include/linux/param.h -182b0dff90121eb375b5102ec2a9ad20 linux-3.0/include/linux/pagevec.h -20fb946be2ef21a7600f3ebfd9392602 linux-3.0/include/linux/pagemap.h -a87315f404b9d04abd009b81865af6f0 linux-3.0/include/linux/pageblock-flags.h -e9e5ab57cfe3a536d232e96ca485847d linux-3.0/include/linux/page_cgroup.h -d645707eebf74ac689af1fd21aae9566 linux-3.0/include/linux/page-isolation.h -37f762b741d18876ae2c19891af8875f linux-3.0/include/linux/page-flags.h -b7264f6096b2cf5afcfc526ddbf91f35 linux-3.0/include/linux/page-debug-flags.h -5634bbe2eb9bfe61a2080aad437a26a4 linux-3.0/include/linux/padata.h -ba28e3eacf978422d2f348ca0eff13b3 linux-3.0/include/linux/oxu210hp.h -55ad3ed5841cd728f3d550899a502e8c linux-3.0/include/linux/oprofile.h -bf54a0defaa876fe647b6687ebf4b9ca linux-3.0/include/linux/opp.h -6a10b8bea8f4279eec886dad11da58bb linux-3.0/include/linux/oom.h -748b804bc7aadbe770c745d2d70adfdb linux-3.0/include/linux/omapfb.h -93813d08ca3cfec09092b40b90705a07 linux-3.0/include/linux/omap3isp.h -53e152ac607c44a08d9ea5c8174468e8 linux-3.0/include/linux/of_spi.h -1a7836ae03f5b58f4f312aae7b370885 linux-3.0/include/linux/of_platform.h -3910f5ce05e949df2571eda9519ab947 linux-3.0/include/linux/of_pdt.h -b2184806bae7eb72dab7853912865981 linux-3.0/include/linux/of_pci.h -c009dd6c0a35232036192af70766c0b7 linux-3.0/include/linux/of_net.h -80d626a1dfc55adfc24421237a37ee3d linux-3.0/include/linux/of_mdio.h -73dc6808c48e27cf434b1437d56c0678 linux-3.0/include/linux/of_irq.h -7b1682d681fdb0c46b538efbce23e0d3 linux-3.0/include/linux/of_i2c.h -8b34316c58cf20a6dc320094089a1039 linux-3.0/include/linux/of_gpio.h -91b35cd49e91cea7f38c7efcef702227 linux-3.0/include/linux/of_fdt.h -146b0e30e68df3fc21a06aff63e11576 linux-3.0/include/linux/of_device.h -7f3052626cc33381e3b133358aee365b linux-3.0/include/linux/of_address.h -9be127c3a286bc4185f0e80af34f6caa linux-3.0/include/linux/of.h -d926c919275a426f5a55900eff1f1518 linux-3.0/include/linux/nwpserial.h -4551becbf9272f7c425fcd0eea0bfa7a linux-3.0/include/linux/nvram.h -73c94eab6eaf9fe820839b9c3b0c71ce linux-3.0/include/linux/numa.h -67772017cfbd74d80f9cd59eee6d18d4 linux-3.0/include/linux/nubus.h -0e52635a4e53e84b6108b9eb03515e00 linux-3.0/include/linux/nsproxy.h -973c1cf435713376a64e31ef01036828 linux-3.0/include/linux/nsc_gpio.h -e9acfe0644a6abdb3ec8fd6945f9317d linux-3.0/include/linux/notifier.h -fe501f9b332ff889e6a36943deeb544b linux-3.0/include/linux/nodemask.h -35394c3092d6dfd0ecaecde9b4cedf3c linux-3.0/include/linux/node.h -a04b636cbf22c27460e0e797b9d63e29 linux-3.0/include/linux/nmi.h -527cd0fa8d6696516a8cc5238005ce26 linux-3.0/include/linux/nls.h -746da79998429a9a9da4ffdc3ba8b25d linux-3.0/include/linux/nl802154.h -6435befb55348911537bf09eac2f4db3 linux-3.0/include/linux/nl80211.h -255373d5cdf0b19eb2ea733f5dbc0b43 linux-3.0/include/linux/nilfs2_fs.h -fb32863bf163458fae3dde4e650df265 linux-3.0/include/linux/nfsd/syscall.h -fae6664f1f828fff73094b3bdba1352e linux-3.0/include/linux/nfsd/stats.h -37954657a139679ace5607d7928a9972 linux-3.0/include/linux/nfsd/nfsfh.h -d3a7b8cabae5b495eee973db9b8c6683 linux-3.0/include/linux/nfsd/export.h -7e2155450b144c0672d3aace747626e9 linux-3.0/include/linux/nfsd/debug.h -437a6a4ba33b6364f6f8ce51713f9f32 linux-3.0/include/linux/nfsd/const.h -0f12eb95c04580db21456b4d7821893c linux-3.0/include/linux/nfsd/Kbuild -c2b338043a03b650611cfa8a59ad685f linux-3.0/include/linux/nfsacl.h -4813475029c7bd1313560f0816d22c5b linux-3.0/include/linux/nfs_xdr.h -da84bce404df93ac5f7378687461c965 linux-3.0/include/linux/nfs_page.h -fd7a685d750cbc0c7e39f078b0c33394 linux-3.0/include/linux/nfs_mount.h -5c52ab2995e07d19c3422e7f49975102 linux-3.0/include/linux/nfs_iostat.h -a0aae32a6eeb2a109e6f63acc208a9a9 linux-3.0/include/linux/nfs_idmap.h -6511c6a7e5cc7cab87d4ee35fb505d06 linux-3.0/include/linux/nfs_fs_sb.h -7273d5424cf8a9c70dcc6c53d464a862 linux-3.0/include/linux/nfs_fs_i.h -2e444eeba97e4bfea0e5c75fbe8f3360 linux-3.0/include/linux/nfs_fs.h -ef10f632c9f4d1df98e5e6af7d2a32f0 linux-3.0/include/linux/nfs4_mount.h -8d6333a611283d84f536836aea6a2d02 linux-3.0/include/linux/nfs4.h -6aea7001273148d1ebec4a54b2f73992 linux-3.0/include/linux/nfs3.h -6c7b21d9d0293c9df0554b5eed5fdf0e linux-3.0/include/linux/nfs2.h -602aa7e1046374815f12ebdd14777a56 linux-3.0/include/linux/nfs.h -caed984e1e2b7124071dc42788503034 linux-3.0/include/linux/nfc/pn544.h -d88caaf108ce9c88b61f10ae86634d07 linux-3.0/include/linux/netrom.h -79c16f6b2881cfba9b12e9a111fa5d56 linux-3.0/include/linux/netpoll.h -a7860072e6a7e99af9a24cc87a5b0afd linux-3.0/include/linux/netlink.h -b331f90019b279ed20e977b7a11eaaa5 linux-3.0/include/linux/netfilter_ipv6/ip6t_rt.h -8b86087778dd2b658927e9bfb759f4a1 linux-3.0/include/linux/netfilter_ipv6/ip6t_opts.h -cb6bfda7d4f61d25ca80cbe0d855bc68 linux-3.0/include/linux/netfilter_ipv6/ip6t_mh.h -7a50eb9f34323c3eac2abf213df52ca7 linux-3.0/include/linux/netfilter_ipv6/ip6t_ipv6header.h -f06d50fbbfcd1745411c75917983297f linux-3.0/include/linux/netfilter_ipv6/ip6t_hl.h -e652809d514c813bf69d61079b8f1e02 linux-3.0/include/linux/netfilter_ipv6/ip6t_frag.h -a8292d95c2cb500f3594e05fa4a57599 linux-3.0/include/linux/netfilter_ipv6/ip6t_ah.h -c71e4e0d3ebc1d50d413cb02fbb589b9 linux-3.0/include/linux/netfilter_ipv6/ip6t_REJECT.h -32715464a618d14fdaf8b8d2a2512f3d linux-3.0/include/linux/netfilter_ipv6/ip6t_LOG.h -98282a9d2051d878f50c37d3cd3fd39e linux-3.0/include/linux/netfilter_ipv6/ip6t_HL.h -6706782d26c24a82ad876861407f5c2a linux-3.0/include/linux/netfilter_ipv6/ip6_tables.h -41836ee904b2332f5e7766c498f1ae1e linux-3.0/include/linux/netfilter_ipv6/Kbuild -cd75fc05841ea3dbf4ab4f075dfce390 linux-3.0/include/linux/netfilter_ipv6.h -fd71d63947c8c37ac6d6d2a2904e93be linux-3.0/include/linux/netfilter_ipv4/ipt_ttl.h -f63a48f0e02f2ac7c57416247428d606 linux-3.0/include/linux/netfilter_ipv4/ipt_realm.h -0dbb38c5048b1c907ea4e43617693dd5 linux-3.0/include/linux/netfilter_ipv4/ipt_ecn.h -c9530b3f52d2cf620dc9b31950bf6619 linux-3.0/include/linux/netfilter_ipv4/ipt_ah.h -a7f64e2ad5eb86aafd8b14e69f130a2b linux-3.0/include/linux/netfilter_ipv4/ipt_addrtype.h -06849aacae2f582ecf378b60a5d1d312 linux-3.0/include/linux/netfilter_ipv4/ipt_ULOG.h -410a60bf3d3364f50fb5d7643b74f282 linux-3.0/include/linux/netfilter_ipv4/ipt_TTL.h -c39b64ebd71dad32d030d5156798a56e linux-3.0/include/linux/netfilter_ipv4/ipt_SAME.h -87a62fad08564fcf8ddea591e79e7754 linux-3.0/include/linux/netfilter_ipv4/ipt_REJECT.h -e227c8628c4545cf23205765f24ac41a linux-3.0/include/linux/netfilter_ipv4/ipt_LOG.h -0332e098bdfdd0429f63106bee962285 linux-3.0/include/linux/netfilter_ipv4/ipt_ECN.h -96a1113f4ce64a07d44e0acdba0fb652 linux-3.0/include/linux/netfilter_ipv4/ipt_CLUSTERIP.h -ef49d4ecf6a2baab619c677edb53b064 linux-3.0/include/linux/netfilter_ipv4/ip_tables.h -a80aead7dbafc2a5aad2e60465e3c7d8 linux-3.0/include/linux/netfilter_ipv4/ip_queue.h -ff203acdb52d8dd1338e327affd7c315 linux-3.0/include/linux/netfilter_ipv4/Kbuild -095e6963adc184a0faa121b24b5298c9 linux-3.0/include/linux/netfilter_ipv4.h -c3f1aa05d06d760ed20638afe3e12f8c linux-3.0/include/linux/netfilter_decnet.h -b4cddd0a8b9cfac68291d2bc9d36c62c linux-3.0/include/linux/netfilter_bridge/ebtables.h -b81d30271ed583105badacc4617d9dff linux-3.0/include/linux/netfilter_bridge/ebt_vlan.h -b6dda31e60a5235e62fee588c896cb52 linux-3.0/include/linux/netfilter_bridge/ebt_ulog.h -02028decab99912eb079c432b35e09eb linux-3.0/include/linux/netfilter_bridge/ebt_stp.h -585a7164ea4da8d93ecccc5852c5d6c5 linux-3.0/include/linux/netfilter_bridge/ebt_redirect.h -3177a9beb3687bbf4abdb48e1048a1a6 linux-3.0/include/linux/netfilter_bridge/ebt_pkttype.h -58ed3f355c524161e6bdaea2af8c2fee linux-3.0/include/linux/netfilter_bridge/ebt_nflog.h -b74aa75729dfdaaedde543773366ef7c linux-3.0/include/linux/netfilter_bridge/ebt_nat.h -0089fe8f41c363364afd1a1dcc2357ee linux-3.0/include/linux/netfilter_bridge/ebt_mark_t.h -65bf3e4242ec5e215f4dc3307bddf461 linux-3.0/include/linux/netfilter_bridge/ebt_mark_m.h -fc1b78efea86a7affcfdf8ba91ad2ff1 linux-3.0/include/linux/netfilter_bridge/ebt_log.h -0d412bb4fd2f728aeda16f79ec66c2b6 linux-3.0/include/linux/netfilter_bridge/ebt_limit.h -ffd6ae6bc15d8e399d106ffe9a3d618a linux-3.0/include/linux/netfilter_bridge/ebt_ip6.h -3b3812e25ddf012cc2b513f22f287b67 linux-3.0/include/linux/netfilter_bridge/ebt_ip.h -cb8caa3adbfd8f756073719a7f871421 linux-3.0/include/linux/netfilter_bridge/ebt_arpreply.h -757090ff0a3a97d1c530bcff4872c819 linux-3.0/include/linux/netfilter_bridge/ebt_arp.h -6fab0a353e4be82a807ca95ea71979ae linux-3.0/include/linux/netfilter_bridge/ebt_among.h -91fe77b31589ee4cf9f5d609cfadfc30 linux-3.0/include/linux/netfilter_bridge/ebt_802_3.h -da1b6625fdb91c50a51b70bb8a455b97 linux-3.0/include/linux/netfilter_bridge/Kbuild -107bfd02aa04dd9a602aed38c82462c4 linux-3.0/include/linux/netfilter_bridge.h -65fe752107092e518d72fa93299e973f linux-3.0/include/linux/netfilter_arp/arpt_mangle.h -8cc12fbafdef86d001065add7766227e linux-3.0/include/linux/netfilter_arp/arp_tables.h -6b4945aa404975317968ac7db595418b linux-3.0/include/linux/netfilter_arp/Kbuild -f24d310aac30b30e788be4fe32c05567 linux-3.0/include/linux/netfilter_arp.h -62b1895a0d44d6b97669f537e744b4ce linux-3.0/include/linux/netfilter/xt_u32.h -0d292ae33822f743623efde2d7183af4 linux-3.0/include/linux/netfilter/xt_time.h -e5729e2698f18a08be9e464c2d54ee17 linux-3.0/include/linux/netfilter/xt_tcpudp.h -2bc4c58f3282b60a5edc12a7e602bd52 linux-3.0/include/linux/netfilter/xt_tcpmss.h -491aba24110de7f499ec177824f25104 linux-3.0/include/linux/netfilter/xt_string.h -8322099b59ec3ec8ee09b241dadc8abf linux-3.0/include/linux/netfilter/xt_statistic.h -315836fe004743fa3250ae1caf4890ab linux-3.0/include/linux/netfilter/xt_state.h -6fc56c4d607a056adbb3875b2ae9b2df linux-3.0/include/linux/netfilter/xt_socket.h -2202ea9939fa97b93d48ad4d7c22b53f linux-3.0/include/linux/netfilter/xt_set.h -7214d61075cf78f24749615d77007443 linux-3.0/include/linux/netfilter/xt_sctp.h -2dc2c68ec42f0b797efa29b3c21d4962 linux-3.0/include/linux/netfilter/xt_recent.h -6939be3b460073ad7c2aa8d8655d6ab2 linux-3.0/include/linux/netfilter/xt_realm.h -f4d17bffc4f0e9af83c679a231683444 linux-3.0/include/linux/netfilter/xt_rateest.h -021cd732a4e6f7342988947ae2fc9937 linux-3.0/include/linux/netfilter/xt_quota.h -75b456a0aaa868515f433d716b125c94 linux-3.0/include/linux/netfilter/xt_policy.h -e0dd58666f503de3d78f260323df1b6f linux-3.0/include/linux/netfilter/xt_pkttype.h -3a4095ce020041fd26c1b81a3e910425 linux-3.0/include/linux/netfilter/xt_physdev.h -df627345d02699bec20a86225b1736c6 linux-3.0/include/linux/netfilter/xt_owner.h -d386af4e4d1da7c234d491ffc4b11f23 linux-3.0/include/linux/netfilter/xt_osf.h -dee24fd91ce4168d1669c81d8f6da031 linux-3.0/include/linux/netfilter/xt_multiport.h -e16f80e09d8a2ef4ece3cfa34b8cb2fc linux-3.0/include/linux/netfilter/xt_mark.h -5e0dac49dbd6ab86669030526632d04d linux-3.0/include/linux/netfilter/xt_mac.h -e5835c872d753dc6061296197abf1002 linux-3.0/include/linux/netfilter/xt_limit.h -7f6c04b455e4710cfec005ef2f783110 linux-3.0/include/linux/netfilter/xt_length.h -873d261d4ed81a45811f9e125eb639c2 linux-3.0/include/linux/netfilter/xt_ipvs.h -7b43982dc28b12dbf94ed71f9a3b722c linux-3.0/include/linux/netfilter/xt_iprange.h -e400ee27f832c012c840d4354a0a67ef linux-3.0/include/linux/netfilter/xt_helper.h -750083f00668db2fe578ce7b82870726 linux-3.0/include/linux/netfilter/xt_hashlimit.h -5c2a4bef7afa8fb9852fde0b786c4136 linux-3.0/include/linux/netfilter/xt_esp.h -d7a5f5a01a284e6f360f622dab7b3f27 linux-3.0/include/linux/netfilter/xt_dscp.h -bf7967a223056017fef59183e18b6f52 linux-3.0/include/linux/netfilter/xt_devgroup.h -c298bf4b09738ce16910f3458e76f022 linux-3.0/include/linux/netfilter/xt_dccp.h -5fe303b587ff7f95b69825dbcb02c8e9 linux-3.0/include/linux/netfilter/xt_cpu.h -6a24f86d9237698d9a4ef40170b915d3 linux-3.0/include/linux/netfilter/xt_conntrack.h -0747969489d5f3e69095d61e1109762c linux-3.0/include/linux/netfilter/xt_connmark.h -6e54164c39b37b83d8bf56243b997105 linux-3.0/include/linux/netfilter/xt_connlimit.h -0417be9c901a1708a5814229b154accc linux-3.0/include/linux/netfilter/xt_connbytes.h -ba8aaf72d1ad5abeb3546e2ad8fcd46f linux-3.0/include/linux/netfilter/xt_comment.h -e78f2e0ae09a20d7a36dc82363b0e0e5 linux-3.0/include/linux/netfilter/xt_cluster.h -a75d894537b78f730be02794e08d8a47 linux-3.0/include/linux/netfilter/xt_addrtype.h -dbf327bfac16600e689d584ee5f4bf08 linux-3.0/include/linux/netfilter/xt_TPROXY.h -e0bbf4f4346058f169c28195d3e5108a linux-3.0/include/linux/netfilter/xt_TEE.h -45e9bf15edf344c6c8e739f0ae6e4398 linux-3.0/include/linux/netfilter/xt_TCPOPTSTRIP.h -c92d22c6489a937d74a4406b67f90bd2 linux-3.0/include/linux/netfilter/xt_TCPMSS.h -afe4b0148ae205640c0a7ba07409528f linux-3.0/include/linux/netfilter/xt_SECMARK.h -882c619c4d214f6b720515ac708d160f linux-3.0/include/linux/netfilter/xt_RATEEST.h -4cc98944886964a3c89fe05b6e5bd539 linux-3.0/include/linux/netfilter/xt_NFQUEUE.h -7cbb8be0e99db111997fd9f526a7ad85 linux-3.0/include/linux/netfilter/xt_NFLOG.h -d5a3216e885955d1e6df95d4efc8107c linux-3.0/include/linux/netfilter/xt_MARK.h -7f221b72cc8b51b287817caf4203e80d linux-3.0/include/linux/netfilter/xt_LED.h -dc65fe66dd8b9d0dc2473553a0a4d670 linux-3.0/include/linux/netfilter/xt_IDLETIMER.h -4bb181f75cae83344f3d0a58e14f3289 linux-3.0/include/linux/netfilter/xt_DSCP.h -a8ccd2eb41961bb1a3182b523a4ef84b linux-3.0/include/linux/netfilter/xt_CT.h -cd70f5f4f9512c24669d21e2499a7898 linux-3.0/include/linux/netfilter/xt_CONNSECMARK.h -46392115053f08ccd060a12796c59d23 linux-3.0/include/linux/netfilter/xt_CONNMARK.h -7241892c3ec71ed9859b6089752e8031 linux-3.0/include/linux/netfilter/xt_CLASSIFY.h -417f84d9259e7f46d9bbbf138aa9ee7f linux-3.0/include/linux/netfilter/xt_CHECKSUM.h -4ffdfeeb62d8456bf5c264e3f0ad09e8 linux-3.0/include/linux/netfilter/xt_AUDIT.h -14ede46ebac3623ec6220067998ab9b3 linux-3.0/include/linux/netfilter/x_tables.h -53ab04894c3ae0b042938035fa9e57b8 linux-3.0/include/linux/netfilter/nfnetlink_queue.h -783a153bdb2c57d20e5057d588ca3299 linux-3.0/include/linux/netfilter/nfnetlink_log.h -b4398416f3fe3a3e9a62c9a2c0bd7ae2 linux-3.0/include/linux/netfilter/nfnetlink_conntrack.h -5361a005e5ada19d7adcae493fefd0ed linux-3.0/include/linux/netfilter/nfnetlink_compat.h -7dea0350e7b53b583fc5621405e0cf5a linux-3.0/include/linux/netfilter/nfnetlink.h -720e3a83536cd01860c517748eda856a linux-3.0/include/linux/netfilter/nf_conntrack_tuple_common.h -daca25d7e47f62e9a2e45f3e4bcf8dca linux-3.0/include/linux/netfilter/nf_conntrack_tftp.h -6fec5d13ff671e84ac6ee0b7261819ac linux-3.0/include/linux/netfilter/nf_conntrack_tcp.h -f8d84b32831323d5df696e38ca691987 linux-3.0/include/linux/netfilter/nf_conntrack_snmp.h -9f12732ee88ed0cf1c917d4261366814 linux-3.0/include/linux/netfilter/nf_conntrack_sip.h -307cf4bc525810bec34febeac5d71ad2 linux-3.0/include/linux/netfilter/nf_conntrack_sctp.h -e980cb6b641321416c63254d115ec089 linux-3.0/include/linux/netfilter/nf_conntrack_sane.h -5777ae4dba998ce587e2e2ab5ee3b259 linux-3.0/include/linux/netfilter/nf_conntrack_proto_gre.h -dcdc8641420f341f661fbcd23d09429c linux-3.0/include/linux/netfilter/nf_conntrack_pptp.h -5f592aa4e3ed2ff3ccb8717cefe6567d linux-3.0/include/linux/netfilter/nf_conntrack_irc.h -fddb729f39912690ed453e2efe769480 linux-3.0/include/linux/netfilter/nf_conntrack_h323_types.h -36de0836bcfa0517344d473e62104c65 linux-3.0/include/linux/netfilter/nf_conntrack_h323_asn1.h -3f19ba1abd91998971d8cef200fcf6f2 linux-3.0/include/linux/netfilter/nf_conntrack_h323.h -fb4ed39c481e92d4fe2f612b2743e173 linux-3.0/include/linux/netfilter/nf_conntrack_ftp.h -a24a4bb69e8947b8b29277189da74c70 linux-3.0/include/linux/netfilter/nf_conntrack_dccp.h -e6e87a0b4741f611582251375a2ad540 linux-3.0/include/linux/netfilter/nf_conntrack_common.h -fb23b58b82171dafcaf5876a0b5d0f28 linux-3.0/include/linux/netfilter/nf_conntrack_amanda.h -53182251edb258a31027be488351cf5b linux-3.0/include/linux/netfilter/ipset/pfxlen.h -357ca52515cf80c5cba30df7a3496c27 linux-3.0/include/linux/netfilter/ipset/ip_set_timeout.h -9790d1756cbe41e061b428d188e38952 linux-3.0/include/linux/netfilter/ipset/ip_set_list.h -16face342de592da886557356211b6e9 linux-3.0/include/linux/netfilter/ipset/ip_set_hash.h -e50b9df1d235a0ccb90ae368f66ec6f8 linux-3.0/include/linux/netfilter/ipset/ip_set_getport.h -3fb3caca6f1af5208a917673f1d90b55 linux-3.0/include/linux/netfilter/ipset/ip_set_bitmap.h -8623f947a9332131bc457822e1a24914 linux-3.0/include/linux/netfilter/ipset/ip_set_ahash.h -5232d2198b4e049c41c9c83ba1f7ca0a linux-3.0/include/linux/netfilter/ipset/ip_set.h -2fa39a2b7e64b78e442f097c98bf4cff linux-3.0/include/linux/netfilter/ipset/Kbuild -f98c8da93408de35ff998bc3a7690dbe linux-3.0/include/linux/netfilter/Kbuild -7ab7a8d98fc2718d7fbdee4ed93adc0f linux-3.0/include/linux/netfilter.h -2bc26daa2ca494fa3ebcab18721c262d linux-3.0/include/linux/netdevice.h -8346de769589c89cff46843220cd68e2 linux-3.0/include/linux/net_tstamp.h -0a16a8df8d28aa44a1c9043f6819f3fe linux-3.0/include/linux/net_dropmon.h -c54ee4a6937c124ff046a4d38be0018d linux-3.0/include/linux/net.h -3ed33c22653f871899fb9662c1b54510 linux-3.0/include/linux/neighbour.h -59c1a7bfbc8b62c1b102fb0357d4f137 linux-3.0/include/linux/ncp_no.h -a7aaed0f5109bb6bd7ed9b708ab8ef25 linux-3.0/include/linux/ncp_mount.h -afc2de1f8e6d23fd1bab35c0ba5ed90d linux-3.0/include/linux/ncp_fs.h -e183143fe8c8a2b7ce89684263d64551 linux-3.0/include/linux/ncp.h -7beb5428dbc435f17236aeae2b02be30 linux-3.0/include/linux/nbd.h -25908c08e8f0460d9308ebe0422bfa71 linux-3.0/include/linux/namei.h -9b6c6daf3cc32ae3c0cc5e3154685c70 linux-3.0/include/linux/n_r3964.h -b8a44ed1a501fee780f4641a4822eb55 linux-3.0/include/linux/mxm-wmi.h -baaaade8341655a683603257b868edf8 linux-3.0/include/linux/mv643xx_i2c.h -42aa32c8927009cd9f1c1c4715cbc0ea linux-3.0/include/linux/mv643xx_eth.h -e017d3c0b694bdfffd1408a1ab3b1d3c linux-3.0/include/linux/mv643xx.h -5f77a4048381377de66ffeb5cb086caa linux-3.0/include/linux/mutex.h -2a3ed372513aca59d987c83dfa62fc9d linux-3.0/include/linux/mutex-debug.h -89331ba7143b0a1481aced702b7e09de linux-3.0/include/linux/mtio.h -1fda4dc6b4a69b242fc65df25fd82370 linux-3.0/include/linux/mtd/xip.h -cbc4e8762f817a78d7d518ad99b8734a linux-3.0/include/linux/mtd/ubi.h -4d08198ba413f2cc48e6cebb9a3cd243 linux-3.0/include/linux/mtd/super.h -e22a6dd61d3c1926a14250ca72e33e19 linux-3.0/include/linux/mtd/sharpsl.h -83fd177195f3ccb019503a73ce8e9089 linux-3.0/include/linux/mtd/sh_flctl.h -8cf2af1a8845d162d801a97d90cb52ba linux-3.0/include/linux/mtd/qinfo.h -185fe4a2ea950d1c939fd4c6992b7558 linux-3.0/include/linux/mtd/pmc551.h -ed93acdabc3e88367b18ee13a6b18315 linux-3.0/include/linux/mtd/plat-ram.h -c630aacc025e3593077ccaab98692865 linux-3.0/include/linux/mtd/pismo.h -d28721b3784bce4e672b5fc8c652ce92 linux-3.0/include/linux/mtd/physmap.h -07ba3bdcf579bc4ca747362904d5a819 linux-3.0/include/linux/mtd/pfow.h -9dacd5b01ced19c69fad6774d058c70e linux-3.0/include/linux/mtd/partitions.h -16a69074d33e5d45578b5b2aa1548c9e linux-3.0/include/linux/mtd/onenand_regs.h -4a85caac72058f39d9188db0a1c0bd58 linux-3.0/include/linux/mtd/onenand.h -e78518d4f7b2608ff8e1598595c3fc6b linux-3.0/include/linux/mtd/nftl.h -31920d997cfb2a53caf82724cda45015 linux-3.0/include/linux/mtd/ndfc.h -13bbf18e7999310d97a06c6e25b19c6c linux-3.0/include/linux/mtd/nand_ecc.h -f62105656ae9536d89ed48f4f577e023 linux-3.0/include/linux/mtd/nand_bch.h -eb0e82e9c4ff516f58f227b6c76d5dc2 linux-3.0/include/linux/mtd/nand.h -221132c4f82fbe31ffa628237c286125 linux-3.0/include/linux/mtd/nand-gpio.h -4b7681e9ad147435f7a92a2cf53986fa linux-3.0/include/linux/mtd/mtdram.h -cd75515846e6de2f2c24fe6859891100 linux-3.0/include/linux/mtd/mtd.h -eb00d7a74af80125043d09e67d828f9a linux-3.0/include/linux/mtd/map.h -faa9218eb6a8e2365f07f12807bdc757 linux-3.0/include/linux/mtd/latch-addr-flash.h -3f23009fac0305d14408003baf6f648e linux-3.0/include/linux/mtd/inftl.h -0cd7161517245eaf0d33401dc29b3a0e linux-3.0/include/linux/mtd/gen_probe.h -12b3bfae3f1aec263a73cab21f6d28dd linux-3.0/include/linux/mtd/ftl.h -d53f13b63d922f958985c24572b59441 linux-3.0/include/linux/mtd/fsmc.h -9a30fec768b84daba7b14854c9e9c0da linux-3.0/include/linux/mtd/flashchip.h -84dbbc529499e753891729964e77df3a linux-3.0/include/linux/mtd/doc2000.h -812fcf2dfc0c27dd8d772915ae52c81d linux-3.0/include/linux/mtd/concat.h -da60d6d1684567b1c73fea77ecfe8ac6 linux-3.0/include/linux/mtd/cfi_endian.h -436a8406ddcc2e96e0f88b66487db3be linux-3.0/include/linux/mtd/cfi.h -753b41fbeaf87ec7f90dcb003bb11a04 linux-3.0/include/linux/mtd/blktrans.h -6cd31e4213a7d76e27608f2776e39c6e linux-3.0/include/linux/mtd/bbm.h -3d2dca49719cbd3e3105d387087d4792 linux-3.0/include/linux/msm_mdp.h -d6d185957930283e5f89381c0913961b linux-3.0/include/linux/msi.h -42366aa218c0ed796b8ad7348d476721 linux-3.0/include/linux/msg.h -b598da6d074bcda6c30ba41a46e1b515 linux-3.0/include/linux/msdos_fs.h -6936e467c33732b4ed018755bd8cdbb9 linux-3.0/include/linux/mroute6.h -2e75a89ce9c89ff39e1c7d8b06b29b74 linux-3.0/include/linux/mroute.h -a573046a26c11c1fc92067dda975311c linux-3.0/include/linux/mqueue.h -c08206e0421d9cecabca99885feaeefb linux-3.0/include/linux/mpage.h -e7b7d39bf937a71c06bda2e4dfeda57c linux-3.0/include/linux/mount.h -a33a18c0cc5df0212c56d70743a1e133 linux-3.0/include/linux/moduleparam.h -4d726d91423f11ed4770feeb30fbcccf linux-3.0/include/linux/moduleloader.h -d5eb0b494344bb0a8edb320feb7e2a95 linux-3.0/include/linux/module.h -74e51c3ffa9b81061590ce4a5cbcfff2 linux-3.0/include/linux/mod_devicetable.h -17262caa79a4e604a0902b4a9449aa51 linux-3.0/include/linux/mnt_namespace.h -df347ac2a76ddcdd08e2eb2e75b0c000 linux-3.0/include/linux/mmzone.h -968586fdc543abc69980907f2377c955 linux-3.0/include/linux/mmu_notifier.h -1ddcf06135a02e2117b575fb80cb8115 linux-3.0/include/linux/mmu_context.h -160f81f34df1e220729e2a865e338df2 linux-3.0/include/linux/mmtimer.h -77394a046597a5137c7c4c7e8a87fe65 linux-3.0/include/linux/mmiotrace.h -344389790eb4bdf44bb76c88c341b146 linux-3.0/include/linux/mmdebug.h -669ecba135041829e358ef3dd6384d6d linux-3.0/include/linux/mmc/tmio.h -44403731ab5bd3a42553d5b0e87ae0d8 linux-3.0/include/linux/mmc/sh_mobile_sdhi.h -0da10531498f67fecd94f5c705fb1f90 linux-3.0/include/linux/mmc/sh_mmcif.h -2131916633f5a1372a36bcc0dc8304d2 linux-3.0/include/linux/mmc/sdio_ids.h -e503c0f8ab176448f858b7000ca71ab4 linux-3.0/include/linux/mmc/sdio_func.h -7c36d32cfb2ffc2e019e6ccc5fa36dae linux-3.0/include/linux/mmc/sdio.h -39b6c5c94c61c5b5ef0550dd76f8d28d linux-3.0/include/linux/mmc/sdhci.h -b7bb6c8dc9d6763abd391836444acfc3 linux-3.0/include/linux/mmc/sdhci-spear.h -5d4a0578cb03c4248688b74b1b616d2b linux-3.0/include/linux/mmc/sdhci-pltfm.h -15d6cfc78a231de35977c6f1bfdc0967 linux-3.0/include/linux/mmc/sd.h -3c7028feb4088913d25dbb5f1a6f27da linux-3.0/include/linux/mmc/pm.h -c3866df4d960d3df4c335066fc30b5d5 linux-3.0/include/linux/mmc/mmc.h -d71ff283d850ea0dd3deb82674c7ad58 linux-3.0/include/linux/mmc/ioctl.h -ba6be9bbc4b336d62ed79b2856924d03 linux-3.0/include/linux/mmc/host.h -ddbb3b7de07deec4c89a62450e2adfc0 linux-3.0/include/linux/mmc/dw_mmc.h -21915303885f74cbb76fb4a06ad54212 linux-3.0/include/linux/mmc/core.h -3f8bc44c7f71c6e443b7decc46fdf431 linux-3.0/include/linux/mmc/card.h -cd2826307118cff2f7adeda7b85488d7 linux-3.0/include/linux/mmc/boot.h -e896f5b01bccb21c891754e3415cbe5f linux-3.0/include/linux/mmc/Kbuild -6e42ed8bc16837016792398ffaf24cd6 linux-3.0/include/linux/mman.h -d17a060fe8fe3689d39c89d70304d884 linux-3.0/include/linux/mm_types.h -ebf448e79aa57813273c7c8ecd323ec7 linux-3.0/include/linux/mm_inline.h -65de6b7869a797ad4621bc8c6376344d linux-3.0/include/linux/mm.h -5f776ff07b07fbd4884d9989d9aee076 linux-3.0/include/linux/mlx4/srq.h -95657d24b1ebe2c6e5bb6b595eea47b2 linux-3.0/include/linux/mlx4/qp.h -6439dcb114160dbce0c145e8b1e77aca linux-3.0/include/linux/mlx4/driver.h -967ee216f58559b4872a8aedaa255f94 linux-3.0/include/linux/mlx4/doorbell.h -2493b0f3ff334b3072b304a65e09d00e linux-3.0/include/linux/mlx4/device.h -ae87b07570fcbcadf09d6302e438d801 linux-3.0/include/linux/mlx4/cq.h -55fe0230bdc78e25ef0c7d7d5864fbf8 linux-3.0/include/linux/mlx4/cmd.h -845fb76be9784b345d794a6f4f9ba525 linux-3.0/include/linux/miscdevice.h -b2a46e28a687daaa84695e604639be1d linux-3.0/include/linux/minix_fs.h -4cf210ee2cbd6fa210c1f45140c1f519 linux-3.0/include/linux/mii.h -c902acd0e019c05a74b9b071531b0036 linux-3.0/include/linux/migrate.h -ada6a2df0a3b44ad962a3ddc691a3551 linux-3.0/include/linux/micrel_phy.h -8785721c7fcf2786061fdc4fc9f890ce linux-3.0/include/linux/mg_disk.h -66188a6ade3753b3daef36f6428908c5 linux-3.0/include/linux/mfd/wm8994/registers.h -21b0fcb6580c9fdb49bd2b8a04f596e8 linux-3.0/include/linux/mfd/wm8994/pdata.h -b72654bf570614869560d195de22fb1e linux-3.0/include/linux/mfd/wm8994/gpio.h -00ce750635d0bc8baa8611a352a35f85 linux-3.0/include/linux/mfd/wm8994/core.h -f0a5cd8c1c7762aad527fe743b6f0b04 linux-3.0/include/linux/mfd/wm8400.h -f83da76f8c47fea528059e60c9a33bec linux-3.0/include/linux/mfd/wm8400-private.h -b4e71cbd9fa9dd7712d3c75bedf32beb linux-3.0/include/linux/mfd/wm8400-audio.h -42d957b0307ae93155a97cc839a6c43a linux-3.0/include/linux/mfd/wm8350/wdt.h -880f5011ca460d5c532aa52145cc9baf linux-3.0/include/linux/mfd/wm8350/supply.h -637ef13b87c7c59d34dbbf16b087c910 linux-3.0/include/linux/mfd/wm8350/rtc.h -1442909c8786c030368a9fe570fe7ef0 linux-3.0/include/linux/mfd/wm8350/pmic.h -0951298ba5e01466b2f2f81e86079084 linux-3.0/include/linux/mfd/wm8350/gpio.h -ddcfc3ff89ab3f717594f68c8e916c93 linux-3.0/include/linux/mfd/wm8350/core.h -292b8ab908531f3c69afaea84d021de3 linux-3.0/include/linux/mfd/wm8350/comparator.h -605214cccae931319ee7e57c22392982 linux-3.0/include/linux/mfd/wm8350/audio.h -fe0a307c815c257bfdaf41e551f6afb1 linux-3.0/include/linux/mfd/wm831x/watchdog.h -09754a9a844ab86181c3c7f7323ede48 linux-3.0/include/linux/mfd/wm831x/status.h -3d752256707e6a40cfbe25db83e90239 linux-3.0/include/linux/mfd/wm831x/regulator.h -96148f44ae3620fc5d135f789a95bab3 linux-3.0/include/linux/mfd/wm831x/pmu.h -c4948d9288de7388c0b45daf16c56080 linux-3.0/include/linux/mfd/wm831x/pdata.h -1c6d55c751aa0d924055b724b9549ae5 linux-3.0/include/linux/mfd/wm831x/otp.h -8d734c0d9f81a6003436b8c534004ba0 linux-3.0/include/linux/mfd/wm831x/irq.h -8612c02e4bdf614141459ffbe748a7a7 linux-3.0/include/linux/mfd/wm831x/gpio.h -f4e6bdcb35eaf72ccd70e5970ec78fbb linux-3.0/include/linux/mfd/wm831x/core.h -398f6c0ce36de964d3eedd2036de39f0 linux-3.0/include/linux/mfd/wm831x/auxadc.h -bfa6df45c3d9ef3c0f147627efc28f54 linux-3.0/include/linux/mfd/wl1273-core.h -fb1921fd9b36943959af1a5658113ae9 linux-3.0/include/linux/mfd/ucb1x00.h -86cc76b3725a8ad21793189087917639 linux-3.0/include/linux/mfd/twl4030-codec.h -4f2d89f97803c7ba6a1be39b64f0dfec linux-3.0/include/linux/mfd/tps65910.h -15d5d89b4dd8b01e2e8f4ab47f5e8b40 linux-3.0/include/linux/mfd/tps6586x.h -7ef4d21050b296036241fbbdb05653ca linux-3.0/include/linux/mfd/tps6507x.h -0495537e5f964ccf04ba55b057395d37 linux-3.0/include/linux/mfd/tps6105x.h -8f2bbaf0145d717803f9fbea3c606262 linux-3.0/include/linux/mfd/tmio.h -60064988d721404868a5afb7f4a56e63 linux-3.0/include/linux/mfd/ti_ssp.h -f72a550ef0f831a6731b525a8931716d linux-3.0/include/linux/mfd/tc6393xb.h -2e777c86e10962c4690d96ead6b396a8 linux-3.0/include/linux/mfd/tc6387xb.h -98ec9cd6f48b7f1e20df6d2445a69905 linux-3.0/include/linux/mfd/tc3589x.h -44fc5cd936fa8ed0e494883aee09e926 linux-3.0/include/linux/mfd/t7l66xb.h -6481b558a417ca9238cce12188a12877 linux-3.0/include/linux/mfd/stmpe.h -427dad7710b3ab5026ad1d6aa8005df7 linux-3.0/include/linux/mfd/rdc321x.h -fa4e7efe037dcc22c7eaaeb22c3e4a7e linux-3.0/include/linux/mfd/pm8xxx/pm8921.h -d4c32f4517397933076759f029addeed linux-3.0/include/linux/mfd/pm8xxx/irq.h -8810fd9d6b8de7e7894b1ec9d366ff33 linux-3.0/include/linux/mfd/pm8xxx/core.h -6b1d8d6176e4fab474eeb800971a3491 linux-3.0/include/linux/mfd/pcf50633/pmic.h -f2edf005810c77068de45a27e6624a74 linux-3.0/include/linux/mfd/pcf50633/mbc.h -91c9828d1ce4fa3d7ef36ea54dc08933 linux-3.0/include/linux/mfd/pcf50633/gpio.h -45c74bebfeb04e6626c549b932a960c5 linux-3.0/include/linux/mfd/pcf50633/core.h -e6599d0479c883f285b18241f1cee3ae linux-3.0/include/linux/mfd/pcf50633/backlight.h -76f15e35dabbab7aac23284f59a1cecf linux-3.0/include/linux/mfd/pcf50633/adc.h -032ddedd5766e97bd4e616603fc9afe6 linux-3.0/include/linux/mfd/mcp.h -4027fabe984eb2c40346eba73c1b4383 linux-3.0/include/linux/mfd/mc13xxx.h -a01996796bf9f4a429f5b8ab58af112a linux-3.0/include/linux/mfd/mc13892.h -a83043531222ff27d4f532f29429a1a1 linux-3.0/include/linux/mfd/mc13783.h -3642206c070fdd0d63b9d9636ec3dfad linux-3.0/include/linux/mfd/max8998.h -a63fafd727f97edb05397d2b309e461a linux-3.0/include/linux/mfd/max8998-private.h -35f37fbe053db1c1af008bfe2efb403d linux-3.0/include/linux/mfd/max8997.h -1c4b32936407eef1ad790ddf30471686 linux-3.0/include/linux/mfd/max8997-private.h -b7c0ce0b286f33a2fdcdc3caa4a8f5b0 linux-3.0/include/linux/mfd/max8925.h -41c0ceace7f314b29160702e3ef09f54 linux-3.0/include/linux/mfd/janz.h -261b1879f348104a7c6d494ac6037706 linux-3.0/include/linux/mfd/htc-pasic3.h -a70ede2981affaff0cec04050082d45c linux-3.0/include/linux/mfd/htc-egpio.h -7aa828d1db935636405fcfdb3965522f linux-3.0/include/linux/mfd/ezx-pcap.h -79b2186c766b75606054236faa4c7ba5 linux-3.0/include/linux/mfd/ds1wm.h -80e51e9936f8c4c91cbdd771d4824601 linux-3.0/include/linux/mfd/db8500-prcmu.h -c157618be096dbafc815432ef2985180 linux-3.0/include/linux/mfd/db5500-prcmu.h -52e823456cfe00b08996e8e735e4c9f8 linux-3.0/include/linux/mfd/davinci_voicecodec.h -3d72794ab131953941022be1d58c6a7f linux-3.0/include/linux/mfd/da903x.h -4bbceb32a6f90b8f44a7f8dc2a367052 linux-3.0/include/linux/mfd/core.h -f66a9d970d9e72ea0dd57a5e71dacad5 linux-3.0/include/linux/mfd/asic3.h -befe6d13f04167c5b9c08925856c1691 linux-3.0/include/linux/mfd/adp5520.h -6bd600e264237c95d1db11d8cb93b04d linux-3.0/include/linux/mfd/abx500.h -6821f05c8e02c134cd33f6e63d44727a linux-3.0/include/linux/mfd/ab8500/sysctrl.h -726cf4706ad2132bd533680ee4c6c252 linux-3.0/include/linux/mfd/ab8500/gpio.h -90839e6492534a67ec5d1ed36515bebc linux-3.0/include/linux/mfd/ab8500/gpadc.h -48750b32dff8d851f66b9d16d6196e95 linux-3.0/include/linux/mfd/ab8500.h -c5dd81ae9621da82db0dc4e3a1c6ed70 linux-3.0/include/linux/mfd/88pm860x.h -8b979400b34c57837af30e52e7fdb1b7 linux-3.0/include/linux/meye.h -0aec0bbb2ee8da680adc07523a43d244 linux-3.0/include/linux/memstick.h -ab3ab8748a87e661b4210c970ac2ecf4 linux-3.0/include/linux/mempool.h -aa8475f3b2486ddee376c7cb95ee0c76 linux-3.0/include/linux/mempolicy.h -05b007584ed3512c0a654983a87b6d22 linux-3.0/include/linux/memory_hotplug.h -a7881d48039c8c5e3f0baa1d4bc44db1 linux-3.0/include/linux/memory.h -baaa086ec4e291a62536b3c9ce3e5589 linux-3.0/include/linux/memcontrol.h -4857924f5d2e8cff485fe6815ac28289 linux-3.0/include/linux/memblock.h -4aaef5b5d0d5eac0491d25e6906562a8 linux-3.0/include/linux/media.h -986fa9d51afed24243cf761c171a9057 linux-3.0/include/linux/mdio.h -b27ed3cf8954dd81df8b448c7696baaf linux-3.0/include/linux/mdio-gpio.h -3d45765322353ff0accd6e36e486e49b linux-3.0/include/linux/mdio-bitbang.h -09169dcc465f9618f862e4f2169b5157 linux-3.0/include/linux/mca.h -1575a8ea1ce99067fdca05038c4eaf5e linux-3.0/include/linux/mca-legacy.h -b0b1eb607d33c0b1c0b176f824388a60 linux-3.0/include/linux/mc6821.h -cf59e420040f33ce66daa6f9a63e23ed linux-3.0/include/linux/mc146818rtc.h -286880ccaab235f43d2b727f9f206f28 linux-3.0/include/linux/mbus.h -8783c495ea237e6137a28a579a777d28 linux-3.0/include/linux/mbcache.h -94bcd3c766dbc4351ad86c6f7ea4ed87 linux-3.0/include/linux/max17040_battery.h -b5948e858d0a8123c4cfca40492015e7 linux-3.0/include/linux/matroxfb.h -56ebfafcb102cda8a0a8ea5352a7f4aa linux-3.0/include/linux/math64.h -8d8aa143fe8d037a78320ff50588da8e linux-3.0/include/linux/marvell_phy.h -d69540efd71061fca2d398e14e97cab7 linux-3.0/include/linux/maple.h -ae6d9e4b24f4deb7effd7dfbb1294887 linux-3.0/include/linux/map_to_7segment.h -d6ec864924d4d36ed553a314de5ec1be linux-3.0/include/linux/major.h -49c6d9e1c522c3efdef306f8e8ebe144 linux-3.0/include/linux/magic.h -eafc74acd11893eea64d2eec7fa0f4b1 linux-3.0/include/linux/mISDNif.h -ed3efb3c45b02a08451fcef4739342f0 linux-3.0/include/linux/mISDNhw.h -f7876ebc5f83e930a5a1fcd6e259bf0a linux-3.0/include/linux/mISDNdsp.h -436990226785c17c908b90ccad6e8fc2 linux-3.0/include/linux/m48t86.h -db849fcf9a4752267d90199399cddff5 linux-3.0/include/linux/lzo.h -804520edfb3a9b2dc2cec852f85f5ae7 linux-3.0/include/linux/lsm_audit.h -e4c95bdb245a49562476cf592b39625f linux-3.0/include/linux/lru_cache.h -ec524264dffac1566bf6f25447946bbe linux-3.0/include/linux/lp.h -ac56819f4f8363729666b85aad7ca9ef linux-3.0/include/linux/loop.h -239eeb008ebdd8e3eb7cbbaab6486571 linux-3.0/include/linux/log2.h -95324393b22e36329fe16b5445b1a70b linux-3.0/include/linux/lockdep.h -2bbc8614fa19c13650c642e2e3c6578a linux-3.0/include/linux/lockd/xdr4.h -ed2a078cc49ad60162305b8cd28f16bc linux-3.0/include/linux/lockd/xdr.h -65b3a93160ff7dba8b3737f4ec59e453 linux-3.0/include/linux/lockd/share.h -5eecd355614c46b85c5aadacd7f500b6 linux-3.0/include/linux/lockd/nlm.h -a5b9c0100996491c76e19007cd6388ba linux-3.0/include/linux/lockd/lockd.h -46e87efe61eaf97afa23c9304d09b465 linux-3.0/include/linux/lockd/debug.h -3c3fa92f6275a4859d433418f754a0fc linux-3.0/include/linux/lockd/bind.h -0f40b2d666e4fc1a98a38db570bc3cc3 linux-3.0/include/linux/llc.h -8454dbffb81ae239b84894315cc866e4 linux-3.0/include/linux/list_sort.h -506429903f846553952083750763eb77 linux-3.0/include/linux/list_nulls.h -f83c22412df5c650d11fcfcd1a3612fd linux-3.0/include/linux/list_bl.h -79f540ae1b5e4d95d083d2700b0b8cec linux-3.0/include/linux/list.h -998bf79d0a5794f64c567761f86ac284 linux-3.0/include/linux/lis3lv02d.h -827bbc06c87ce4014cf1bc755d453163 linux-3.0/include/linux/linux_logo.h -d57cb09c317ba46a2e054c6fbe51a6ac linux-3.0/include/linux/linkage.h -dcc63f12c47a79925586edeeba88d40f linux-3.0/include/linux/limits.h -34bc4ac5c1331ab3f24806879f6138ee linux-3.0/include/linux/license.h -23d9a41dfa05cdaeca926d11bf19010e linux-3.0/include/linux/libps2.h -81e7959b89b856afd41f3ed3f4cb8ba3 linux-3.0/include/linux/libata.h -10a451d6fdfdcaf6e02c25dccdb57c26 linux-3.0/include/linux/lguest_launcher.h -1de4a59c37ad5f430f5835487085061a linux-3.0/include/linux/lguest.h -2fe556c641ee38433311739944510958 linux-3.0/include/linux/lglock.h -26d91b2f6ba0506e1969a6bd822465e0 linux-3.0/include/linux/leds_pwm.h -c40d233e36a5b291ad5b35bb5a742b3b linux-3.0/include/linux/leds.h -a30048183157d8ff112c09e9b52b73d7 linux-3.0/include/linux/leds-regulator.h -dcf4b09b806b88ce5e12264d6612dc81 linux-3.0/include/linux/leds-pca9532.h -360e94ba08ceb3cdec896596ccb2d882 linux-3.0/include/linux/leds-lp5523.h -5e69c00bccca8ad30abbf269dde81bf8 linux-3.0/include/linux/leds-lp5521.h -9baeb54965d3cef4f1864d6e4030f3b9 linux-3.0/include/linux/leds-lp3944.h -f3d0f8f1beb75ce861d45bdc91c9e4ca linux-3.0/include/linux/leds-bd2802.h -1f5e684bfb3c727184cd2b54a1a45e9e linux-3.0/include/linux/led-lm3530.h -c7a02fd8182bcb4b6efa216318bd4269 linux-3.0/include/linux/lcm.h -84ac0d5ded2bb51858a7c15ce029607d linux-3.0/include/linux/lcd.h -6fbe7722cf99fe8b618fc0c1ceb3056f linux-3.0/include/linux/latencytop.h -e7e856d945ae8cc8e7b926619baf2eb6 linux-3.0/include/linux/lapb.h -d90908e5d60d3aa1d3873a2b014d2af7 linux-3.0/include/linux/l2tp.h -2fd78bf8806fab47fc5b46c1374a9d21 linux-3.0/include/linux/kvm_types.h -4102d9be8d40c8add593e2305913953b linux-3.0/include/linux/kvm_para.h -fb602179e6c91913ed008224fd5c2418 linux-3.0/include/linux/kvm_host.h -2b0501324cabb83e4be264a642d4bddc linux-3.0/include/linux/kvm.h -7de57ccb8089540ea99a402e755da109 linux-3.0/include/linux/ktime.h -e3efdb8d5b1f546456706c8c138a6f98 linux-3.0/include/linux/kthread.h -11323045533e00c9c8a26b173a75b516 linux-3.0/include/linux/ksm.h -f470683c4208eb57ab4203b07ad180cb linux-3.0/include/linux/ks8842.h -e09b125accc66c836dc120ce86402f54 linux-3.0/include/linux/ks0108.h -cdfbada49f0101c584cb4f9237ccd976 linux-3.0/include/linux/kref.h -6b5039f8fd9ee74c5942201ef2a28e72 linux-3.0/include/linux/kprobes.h -9a2f79ac750b331f761fa1a7954f7a60 linux-3.0/include/linux/kobject_ns.h -f8ac37a3be9511d1f5db95e0e659ad0b linux-3.0/include/linux/kobject.h -09364e876bd0d753f996261f92a585c1 linux-3.0/include/linux/kobj_map.h -4c3088fff20c37547cb03a1736f936c7 linux-3.0/include/linux/kmsg_dump.h -2ce0d7acf6831604df2a81c4d7552144 linux-3.0/include/linux/kmod.h -125620949899d4a6bcae6e232ab336f4 linux-3.0/include/linux/kmemleak.h -faeadbf70fd841192f168b2eeb71dbdf linux-3.0/include/linux/kmemcheck.h -7be85f06477b952512ea0690ceed4435 linux-3.0/include/linux/kmalloc_sizes.h -bcbe492f58a941e13ef8255604eba607 linux-3.0/include/linux/klist.h -23a0861761bd5de18d0cca9dbbf15713 linux-3.0/include/linux/khugepaged.h -85339674e8617a1e4577fddff9ad9fcf linux-3.0/include/linux/kgdb.h -6f1f28c1d174ffa5e481b55066f3ee51 linux-3.0/include/linux/kfifo.h -022433a951affb7756da1ee68720ace8 linux-3.0/include/linux/keyctl.h -e9c883ee279870957ba938c202cff7ec linux-3.0/include/linux/keyboard.h -3c356ccdd5b9363b90722886dceb5c68 linux-3.0/include/linux/key.h -d80aefecbc0aa209b51743f409070f48 linux-3.0/include/linux/key-type.h -74e3ea6c4eac57630d2d873ca19ae9f0 linux-3.0/include/linux/kexec.h -f306df81ea189a90c64aa039b4ac8415 linux-3.0/include/linux/kernelcapi.h -23bd93e708ce9ceb0e8fd58c0cad2e68 linux-3.0/include/linux/kernel_stat.h -0f67e2a49df7fc9c045bbcca388332b7 linux-3.0/include/linux/kernel.h -d457450bd92366716ba79a565b23c1f1 linux-3.0/include/linux/kernel-page-flags.h -918a962c382a3ee3379f20a1d97520b4 linux-3.0/include/linux/kdev_t.h -0e6f0be5ace1e3feb9cf03bafb078de2 linux-3.0/include/linux/kdebug.h -9d0d566feb410d0155ae3bc38c324af0 linux-3.0/include/linux/kdb.h -52af45a66c2401f6b72ba6ccc8a289e0 linux-3.0/include/linux/kd.h -4e64ceca099b45d0844081ce1e31c7f9 linux-3.0/include/linux/kbuild.h -6ad95ea57a450bc67c128a3e244ef7d0 linux-3.0/include/linux/kbd_kern.h -36e233c2e7dcf63a23a4a45a736377f7 linux-3.0/include/linux/kbd_diacr.h -d893cf8a49c48f95641ebee184929e7e linux-3.0/include/linux/kallsyms.h -c9c8d9910db67e49a17c438fcb5dfabd linux-3.0/include/linux/jz4740-adc.h -1b33b590d12854d6e79d52f149390306 linux-3.0/include/linux/jump_label.h -19abcbc1d9321f991edebf13197b6f5d linux-3.0/include/linux/joystick.h -31587aae94d8272159bafcbe7a0bdd07 linux-3.0/include/linux/journal-head.h -062abdc32a2bc5febca32bf799b6c9ce linux-3.0/include/linux/jiffies.h -be0f5f2e6c799de96c7948e55bbdef85 linux-3.0/include/linux/jhash.h -858aaa75fb8ff7af7f243382d7fdb0f5 linux-3.0/include/linux/jffs2.h -3542eaf776e156c0285efaeeb1886245 linux-3.0/include/linux/jbd2.h -a8fa656b6f14b725657e1aacf9ee4fe0 linux-3.0/include/linux/jbd.h -3ed8d44ea2acaf67b77befb6732b15f6 linux-3.0/include/linux/ixjuser.h -515552341c58b9ed6218ab124721e2ba linux-3.0/include/linux/ivtvfb.h -58b22d4ae2d72dd0f3ac765ef4d3fb8e linux-3.0/include/linux/ivtv.h -9a80b714176e0a78fafe45d9cd81a701 linux-3.0/include/linux/istallion.h -578077bd7d35bef8e0932d0eeef167f2 linux-3.0/include/linux/iso_fs.h -7fdc74624a33fcd2d5e6f409756bd67f linux-3.0/include/linux/isicom.h -357e796fb623f694f37e00deadf75d95 linux-3.0/include/linux/isdnif.h -15ed6ff77342659d0e6a63154f1e9508 linux-3.0/include/linux/isdn_ppp.h -a924e4a7e9cb1b46d20a173beeb7887b linux-3.0/include/linux/isdn_divertif.h -e6005bbbcd7883e4ab568774c0abd861 linux-3.0/include/linux/isdn/hdlc.h -6fb8f8da1f3d3a874b38fa36f5eada15 linux-3.0/include/linux/isdn/capiutil.h -1e9c996b70d52485b89fda4401136daf linux-3.0/include/linux/isdn/capilli.h -982dca806b46e6ec81db6654bb412268 linux-3.0/include/linux/isdn/capicmd.h -8757856fa6524ec7212e4ee3a637f4d3 linux-3.0/include/linux/isdn/Kbuild -00a80513b2d50e8f81ccb3551a29587e linux-3.0/include/linux/isdn.h -7a24755f0855b64c56978dfd393bc71e linux-3.0/include/linux/iscsi_ibft.h -55717a007cf9f91d68e3adcc4bc76a8d linux-3.0/include/linux/iscsi_boot_sysfs.h -51036d9b66379e06a34fa9c7b9a39aee linux-3.0/include/linux/isapnp.h -271db4648908c62e3e73811f6aa80951 linux-3.0/include/linux/isa.h -9c011611ac8847189825a04d3e0fda71 linux-3.0/include/linux/irqreturn.h -733ff9e1751128b7add1203ff6e4a658 linux-3.0/include/linux/irqnr.h -f3832e17e558379d04666a3aa7d70f6d linux-3.0/include/linux/irqflags.h -394a32be2416c678e932a833e002b932 linux-3.0/include/linux/irqdesc.h -1b576c91ef37b8010a6079181040469c linux-3.0/include/linux/irq_work.h -488139ad029b5e0ae3e11c98211b6f3c linux-3.0/include/linux/irq_cpustat.h -1ac09a431c96d2213405e1771f18ead1 linux-3.0/include/linux/irq.h -f6cdd97292b88adc6e56d9080dd8d638 linux-3.0/include/linux/irda.h -8e73cdd81a947d9b9ddbf74f5646fb33 linux-3.0/include/linux/ipx.h -ac2572ead7eab6684fa309d77b34cb7f linux-3.0/include/linux/ipv6_route.h -41dd9c5f2aa0a9c946bfd26a807d3697 linux-3.0/include/linux/ipv6.h -979aeb7d9321b7da2de3801f474adf65 linux-3.0/include/linux/ipsec.h -da485b81801c2da0a7cc03d2a67780f9 linux-3.0/include/linux/ipmi_smi.h -74f934cdbda48bc01931097ea0455536 linux-3.0/include/linux/ipmi_msgdefs.h -3f5c663387fe5d20c9256c0215be047f linux-3.0/include/linux/ipmi.h -e394f45e6c9b8f85be13ff487f54245e linux-3.0/include/linux/ipc_namespace.h -a49a9470f2591e8e80617949f752b156 linux-3.0/include/linux/ipc.h -f9e1bb0f1827296474def11b467bcbc2 linux-3.0/include/linux/ip_vs.h -0a53ec630fca5d04dbad26e1b90f5710 linux-3.0/include/linux/ip6_tunnel.h -2608cbc28165ea01e10d058a538a9889 linux-3.0/include/linux/ip.h -3bd346b010bf151c8a75e37d8eb78348 linux-3.0/include/linux/iova.h -6fb14d6a36d6ff97ffb8c1c9ded7fc47 linux-3.0/include/linux/ioprio.h -73b07f83c17cd649f97e994b954006d5 linux-3.0/include/linux/ioport.h -9b661ae03e0233567e562ed28770539f linux-3.0/include/linux/iommu.h -36fc6572663b5c72b3daec60de911bf4 linux-3.0/include/linux/iommu-helper.h -df6fc53075cf3aa043d070c4f651fb87 linux-3.0/include/linux/ioctl.h -5820a06674390ca218c6f01a685717b2 linux-3.0/include/linux/iocontext.h -c40d07961cf23b4bff88c33e1b271920 linux-3.0/include/linux/ioc4.h -dc493d0a3893c23fcc770d0b4344074d linux-3.0/include/linux/ioc3.h -fe58d7ef150fa5ff87a6696eabc941fb linux-3.0/include/linux/io.h -18f474c884373c7cb7f51597d4cd98b2 linux-3.0/include/linux/io-mapping.h -64dca7acbbe136dc70b9c1ad0de88c4f linux-3.0/include/linux/interrupt.h -e2ccbfb3ce591d98fdc31f5d1561ab55 linux-3.0/include/linux/intel_pmic_gpio.h -979d8b76ec7f97e3216908853c676b29 linux-3.0/include/linux/intel_mid_dma.h -89cf943c97d901b2409a6a956104d37b linux-3.0/include/linux/intel-iommu.h -c25472a9d729d0ae97a1981f55ff4104 linux-3.0/include/linux/input/tps6507x-ts.h -8846cbc14c26f6b9fbbbd6d40fdef434 linux-3.0/include/linux/input/sparse-keymap.h -45451853b149a46bc806f42e5b9c7bcf linux-3.0/include/linux/input/sh_keysc.h -ee204ba1c2cf5b91bd41061badb6c8c1 linux-3.0/include/linux/input/pmic8xxx-pwrkey.h -282545f829179f8a199c0ca7a7e19488 linux-3.0/include/linux/input/pmic8xxx-keypad.h -20c4a17468e2a008b033d107461eab26 linux-3.0/include/linux/input/mt.h -f11c72adf0aae48b7f28c123544893f5 linux-3.0/include/linux/input/matrix_keypad.h -219568fd03d684883835ad3a637a0bc6 linux-3.0/include/linux/input/eeti_ts.h -c262d9e8b98cf3a180d9a12c7cbc52cc linux-3.0/include/linux/input/cy8ctmg110_pdata.h -e6f22a4a2de5992153c56911bb1234aa linux-3.0/include/linux/input/cma3000.h -bcf9d09e4ab1f8c28c1a50043cecbbdc linux-3.0/include/linux/input/bu21013.h -b6d4514f92a392c24a92663de191da98 linux-3.0/include/linux/input/as5011.h -5e7df857882b111f26ea0aba714e558a linux-3.0/include/linux/input/adxl34x.h -9e494e9f85916d7f994cd0f37718c453 linux-3.0/include/linux/input/adp5589.h -731a9a61e60881a2113a682f771ef51e linux-3.0/include/linux/input/ad714x.h -89ddce60bf3da3b3c8d4b7d552a6431c linux-3.0/include/linux/input.h -35404bce69bc5df03dc78f4d8a654cba linux-3.0/include/linux/input-polldev.h -d02c5a8e70a16dd12559204900c3d407 linux-3.0/include/linux/inotify.h -4a543799c0e267dc287aeb6c5f560e9f linux-3.0/include/linux/initrd.h -2fffc7c347ad0b9a0de2046cdbd745a6 linux-3.0/include/linux/init_task.h -1bae73a1227f4b69c9e857b9ee673bff linux-3.0/include/linux/init_ohci1394_dma.h -67f21850a8540ce66373018b8295c4cc linux-3.0/include/linux/init.h -4ba28569b924e7136367e95823b1f3d8 linux-3.0/include/linux/inetdevice.h -707d283dc9c8a84e86925f265da11cde linux-3.0/include/linux/inet_lro.h -71a48070adcb16c733a4fd4ee3452906 linux-3.0/include/linux/inet_diag.h -4ddf0f2eb813fd5cfa947467f9c7b2cd linux-3.0/include/linux/inet.h -44c46d163f39bf8dea68fc472b22f9ec linux-3.0/include/linux/in_route.h -6b55c53ddbc29625fffdb06e1626ef00 linux-3.0/include/linux/in6.h -e0423bddc806791d22bb63c043c3824f linux-3.0/include/linux/in.h -d6e9c6b4527c1168cce7790906bd9784 linux-3.0/include/linux/ima.h -26a54fdccb3c6cc572358047fd4ec114 linux-3.0/include/linux/ihex.h -cc4a647199e348c44f88ce3f1347c77e linux-3.0/include/linux/igmp.h -f7968a1f129769a8e139f0527ad76640 linux-3.0/include/linux/if_x25.h -ac33ea3b9525beea962c41d280f7074c linux-3.0/include/linux/if_vlan.h -7776e45f52215099d44fdd8552ed6c26 linux-3.0/include/linux/if_tunnel.h -c4ecd6144546daeb6294f3003218bf57 linux-3.0/include/linux/if_tun.h -3ecd43d2c0371736f7cc5bfd0adc1959 linux-3.0/include/linux/if_tr.h -e5788b85d541f70bad21d8eb97b73de4 linux-3.0/include/linux/if_strip.h -77bd54a5f26f16842d8996ec063b0922 linux-3.0/include/linux/if_slip.h -00c0f36f18a6727c61d5baa5fdce98b4 linux-3.0/include/linux/if_pppox.h -9ca00765286ac13ab441480d15a545f8 linux-3.0/include/linux/if_pppol2tp.h -df1dd73b2fe4bcc72ffca74a87dddfa7 linux-3.0/include/linux/if_ppp.h -2704c81fe6ab48067e771d3d809349b2 linux-3.0/include/linux/if_plip.h -48f375784a3ae5e1723388eb1df3cc8d linux-3.0/include/linux/if_phonet.h -9680863ce9abaf012a67d35728ae55c1 linux-3.0/include/linux/if_packet.h -5b5f84067c61c7f8b901f782506e6973 linux-3.0/include/linux/if_macvlan.h -5a0c11c1d1e10a1636325461be18b9fd linux-3.0/include/linux/if_ltalk.h -875be16acecd088c68e43eabe8bcf17b linux-3.0/include/linux/if_link.h -0af149824ef9c543e33105d695d520ec linux-3.0/include/linux/if_infiniband.h -41d9437bfdca27a77a9b6be09ada50a3 linux-3.0/include/linux/if_hippi.h -1c728c82f5af965419ee535c7318c093 linux-3.0/include/linux/if_frad.h -2df80c8e041c792325841828c7cb99bb linux-3.0/include/linux/if_fddi.h -88c76aa4265a2ec6eb925999f18f9383 linux-3.0/include/linux/if_fc.h -0fcf5f343e5fe9cc68f4b33ea51554c3 linux-3.0/include/linux/if_ether.h -fe1d85bc2a441ad685a4eee4335dfd0c linux-3.0/include/linux/if_eql.h -14658725497af5f0128be70baa40c2eb linux-3.0/include/linux/if_ec.h -318ad7467217c403a2395ce8219d6830 linux-3.0/include/linux/if_cablemodem.h -8d62c41cc7608077c151cf75e0db9e74 linux-3.0/include/linux/if_bridge.h -001e325e7c919ab89c52c4e9194b3040 linux-3.0/include/linux/if_bonding.h -d37e2e857a635c532661ce88825d5fc0 linux-3.0/include/linux/if_arp.h -6e0bd4a09db5dbba824081005190f591 linux-3.0/include/linux/if_arcnet.h -33a0bee7a898ede73f98a9a2a676300b linux-3.0/include/linux/if_alg.h -2b572c608f8b83f731fd1fda229809cf linux-3.0/include/linux/if_addrlabel.h -0087270d67b3ddce37aecb99789a66a0 linux-3.0/include/linux/if_addr.h -d9920a1efe8cbabc5e136dfdf7e1cb53 linux-3.0/include/linux/if.h -da4085db624a839532ab54eb4cbbbcb6 linux-3.0/include/linux/ieee80211.h -30bfbe4e9de03ceba928d4a91045aa5f linux-3.0/include/linux/idr.h -0776b5f7a9dfdef9258405fa16036e3b linux-3.0/include/linux/ide.h -7ba0da75e9e83b36d244f8cc5023e0cd linux-3.0/include/linux/icmpv6.h -c8f50d948f28cf78d885bbb020dca0ad linux-3.0/include/linux/icmp.h -bb5b9469b3866e74961c5b997a13ab0b linux-3.0/include/linux/ibmtr.h -158b51da3e1e401eb812ec9b730c95c0 linux-3.0/include/linux/i8k.h -aae194cce852813dbe9c351c8deceb95 linux-3.0/include/linux/i82593.h -ed6c6617ff080633ca719be1db618922 linux-3.0/include/linux/i8042.h -28fcf4bdde68e63885cfd4bda21217d4 linux-3.0/include/linux/i7300_idle.h -dfdfb0a13502c3745bc18783164062a9 linux-3.0/include/linux/i2o.h -75c9f9f4f5039b57574af64446c2c2e5 linux-3.0/include/linux/i2o-dev.h -ed6335a38c0a5e917aec15d30944f39e linux-3.0/include/linux/i2c/twl4030-madc.h -4de4a48c91c1fac243f92c5d8bfc00e4 linux-3.0/include/linux/i2c/twl.h -ea48542af7d0e28bd3715009c382985e linux-3.0/include/linux/i2c/tsc2007.h -5917051d47129b3e8fb9c5d53c097b59 linux-3.0/include/linux/i2c/tps65010.h -72d037c2b05e9a02908bc554b70ae0f3 linux-3.0/include/linux/i2c/sx150x.h -246a6e91d62699ae68b29ae0f4b4168a linux-3.0/include/linux/i2c/s6000.h -5d2d2d50e89e6355b81d2d0c199d91fe linux-3.0/include/linux/i2c/pxa-i2c.h -04d05a4d38a5160892f2dd99b6a51aab linux-3.0/include/linux/i2c/pmbus.h -9897f4fc20e561fc51e5f321079651cf linux-3.0/include/linux/i2c/pcf857x.h -e07609212393c251541588ee231989b4 linux-3.0/include/linux/i2c/pca954x.h -0857d73297f592db48bedfb67e04b053 linux-3.0/include/linux/i2c/pca953x.h -cd3dd1322ee3b25dd6b546d1cd6965ae linux-3.0/include/linux/i2c/mpr121_touchkey.h -b61548709ba039a922b7e5a0f0341e6f linux-3.0/include/linux/i2c/mcs.h -785e5ca579b7be1ca932b5cf43aee299 linux-3.0/include/linux/i2c/max732x.h -80ea18676dc98a48be3635cefa6d71f9 linux-3.0/include/linux/i2c/max6639.h -6d5be590ce3e403a6c4851ba87f5c676 linux-3.0/include/linux/i2c/ltc4245.h -e94c439a5ec00c3b618547e4897cdd1f linux-3.0/include/linux/i2c/lm8323.h -35e90503a3b11201ec00f023725a926f linux-3.0/include/linux/i2c/i2c-sh_mobile.h -12b60fa4d1bc787a93ac2014c96b6d58 linux-3.0/include/linux/i2c/ds620.h -7b2f9d9d57fe27d5cd3cd43f4a06e2d5 linux-3.0/include/linux/i2c/dm355evm_msp.h -2fefcbc0b316104bbff5695d4ab6adef linux-3.0/include/linux/i2c/bh1770glc.h -6df749409219449e3eba7cf7d013dd4d linux-3.0/include/linux/i2c/atmel_mxt_ts.h -e94f22ae1831cada9248b39acea402c8 linux-3.0/include/linux/i2c/at24.h -f58b29802dfaa979898a7d5472ee6abf linux-3.0/include/linux/i2c/apds990x.h -1c54c0d99572fc6a66b4c3aa90e65719 linux-3.0/include/linux/i2c/ads1015.h -598ae850e7331480f71ab44177d9c1eb linux-3.0/include/linux/i2c/adp8870.h -b4970d674091a605eac894d280a0fb35 linux-3.0/include/linux/i2c/adp8860.h -6ebd421d9270ea55e60495fcb63a91e1 linux-3.0/include/linux/i2c/adp5588.h -e34ae0df4d827d02441f75a431edb28a linux-3.0/include/linux/i2c.h -335daa7fbbe61dc7aec0e2dbd2c0f8b8 linux-3.0/include/linux/i2c-xiic.h -d54f899c967ac6e7d539a5dd976cbf74 linux-3.0/include/linux/i2c-tegra.h -99e6cfd3043962b02eafa073fbb2efad linux-3.0/include/linux/i2c-smbus.h -7878a58b502ab3482ebdf3b53be554f6 linux-3.0/include/linux/i2c-pxa.h -0ce39165132d3a5c9b277c6ad84fbfdf linux-3.0/include/linux/i2c-pnx.h -0df422bc65a969fbc602bee8f5885d0e linux-3.0/include/linux/i2c-pca-platform.h -3d9d7eae645591ec91b34a54587a60eb linux-3.0/include/linux/i2c-omap.h -0bdfd449c379261d8e70076407fb663a linux-3.0/include/linux/i2c-ocores.h -482e3904ec0824e05565b0e675a78557 linux-3.0/include/linux/i2c-mux.h -d07593d91786b2a0fdea5823d00264b7 linux-3.0/include/linux/i2c-gpio.h -dd04584f63e4f57604bd52dc0c074e32 linux-3.0/include/linux/i2c-dev.h -412096673bdf39c694f291d37e8b05b9 linux-3.0/include/linux/i2c-algo-pcf.h -a27266fcdf590190ef441a30dda867cd linux-3.0/include/linux/i2c-algo-pca.h -cd49cfac784c8b3f3205be64eadf5ff3 linux-3.0/include/linux/i2c-algo-bit.h -eb4053b75b583abb39147b148cfe353e linux-3.0/include/linux/hysdn_if.h -4638d53e5f2684e803d4397fbe76d3f2 linux-3.0/include/linux/hwspinlock.h -9871fdef8075ec956aabda76366d90fc linux-3.0/include/linux/hwmon.h -7ffcc02fb97862953632e1f0c168513b linux-3.0/include/linux/hwmon-vid.h -50957c3304588470c45fbe35afae72cc linux-3.0/include/linux/hwmon-sysfs.h -2c05c5d04c2fd207e6105c87ae566d56 linux-3.0/include/linux/hw_random.h -8c7c3e6bf8cc4839922d12b900e63f24 linux-3.0/include/linux/hw_breakpoint.h -2bd17c49fe023b8c7181745c4ef0705b linux-3.0/include/linux/hugetlb_inline.h -986677a4023de2771611c7a9598fb76c linux-3.0/include/linux/hugetlb.h -685ec9f180ee97a80c2471de67f23d7a linux-3.0/include/linux/huge_mm.h -e9287eae37f004a3d1df76601c59fb55 linux-3.0/include/linux/htirq.h -40918913064e9e0efeafefbe9f4b3be4 linux-3.0/include/linux/htcpld.h -9c5f1aa4606a12e9485caeaeec39a72d linux-3.0/include/linux/hrtimer.h -0c8ecb56a7b3cc4e687da0c6a645ee36 linux-3.0/include/linux/hpet.h -9e0e3d06efbdcf45a91b624952b41ef9 linux-3.0/include/linux/hp_sdc.h -75c42e8af578fd645efb26e513a71f97 linux-3.0/include/linux/hippidevice.h -02d5f9a4d77a8dc4a70b9d025169c192 linux-3.0/include/linux/hil_mlc.h -8b1a78fbd10c034c5412bea4a90bfc92 linux-3.0/include/linux/hil.h -3a488da99f55699b4d2d9d7ed70a8f19 linux-3.0/include/linux/highuid.h -4fec0e4241f2d85c54b9e09de3b4882f linux-3.0/include/linux/highmem.h -8af47c2069c716351253aa5a5ea9948a linux-3.0/include/linux/hidraw.h -0f0bb316f5d22afcdc05c2b62c87f83d linux-3.0/include/linux/hiddev.h -331a6c25ab70fbc9c4970ce794c171f6 linux-3.0/include/linux/hid.h -3985e5ae8a76653492619ea31735f201 linux-3.0/include/linux/hid-roccat.h -cc53eab4caa1ffd989d207ac0d40ce03 linux-3.0/include/linux/hid-debug.h -d8d67f2c4759f191fcfa88dbe621e759 linux-3.0/include/linux/hdreg.h -bc136f7ce66add562bba259177404108 linux-3.0/include/linux/hdlcdrv.h -ca34b1fb9d9d3114b5986fc443ccc16c linux-3.0/include/linux/hdlc/ioctl.h -e896f5b01bccb21c891754e3415cbe5f linux-3.0/include/linux/hdlc/Kbuild -021bdb928030fdddcd3ab4b06caa93bd linux-3.0/include/linux/hdlc.h -f39d15b388c131b062529f783b4ad1f2 linux-3.0/include/linux/hash.h -8ec8515a5814c9a8fec171d98b2deef4 linux-3.0/include/linux/hardirq.h -91d0c96c93648eec663fcc3c4345050f linux-3.0/include/linux/gsmmux.h -851c3fe68a547e78ade39229dc735e4f linux-3.0/include/linux/gpio_mouse.h -d4cd6f85a9767b03257dff2db4d2f47b linux-3.0/include/linux/gpio_keys.h -3de8acf8a642902e6237f4d8e5a906ef linux-3.0/include/linux/gpio.h -5aa63d1c181897fc4e4747a06b5777ed linux-3.0/include/linux/gpio-i2cmux.h -9cc7e822a23ed02e9cd943c7bc70d633 linux-3.0/include/linux/gpio-fan.h -01d7a9cb3b2da65e4b2aca000c0d9a84 linux-3.0/include/linux/gigaset_dev.h -2fd600ab15c8b0f31eed445bdab0571c linux-3.0/include/linux/gfs2_ondisk.h -3f9140bcb246dbbb1a2710c66ee78387 linux-3.0/include/linux/gfp.h -ecd0490eee32d90ea15286ac82b0f286 linux-3.0/include/linux/getcpu.h -f98dce0822d3d58800a4465c3a3923ec linux-3.0/include/linux/genhd.h -c226b2b2daaaa413606992787866461a linux-3.0/include/linux/genetlink.h -8a49845ed128c23bc0bb904884aab67e linux-3.0/include/linux/generic_serial.h -30f6c960cdb4da80a26ab183dce5a605 linux-3.0/include/linux/generic_acl.h -1021a0695cc0178cd5557f68996c49fb linux-3.0/include/linux/genalloc.h -47dfb4b7158c6e5176913bc9ed4e8823 linux-3.0/include/linux/gen_stats.h -db44c07665b6bd176c9f1a6957467104 linux-3.0/include/linux/gcd.h -87b6eee1d5645781f57b9283191e4dc8 linux-3.0/include/linux/gameport.h -6e7b1267ff96e117825c3fcb8bfe705e linux-3.0/include/linux/futex.h -08cfb4cd39004ad72300554365b7f65d linux-3.0/include/linux/fuse.h -01996ed5ee92a0f6689d56c52e049a77 linux-3.0/include/linux/ftrace_irq.h -560f5676d795319674c83ae3a67bcbc8 linux-3.0/include/linux/ftrace_event.h -0aa98f25eea8f1c68a6e129f30c23dc6 linux-3.0/include/linux/ftrace.h -3ab68ea1f0d057ab3c8270a08bf83d8d linux-3.0/include/linux/fsnotify_backend.h -5190181ed4e2d73fab6f7fcc7e40c38c linux-3.0/include/linux/fsnotify.h -dd7cf391b9b65e09025ab6977aa1cd88 linux-3.0/include/linux/fsl_devices.h -0a040d942578aadf8f2758b977fe4552 linux-3.0/include/linux/fsl-diu-fb.h -e787546f3dffa41dc72556a3205c4f51 linux-3.0/include/linux/fscache.h -24ac347b9e46a81e40dbee24ea418e60 linux-3.0/include/linux/fscache-cache.h -234e80922a14ffcd09540ec215a9550a linux-3.0/include/linux/fs_uart_pd.h -1c0e0dd3aa2e35406b43eba13613a1df linux-3.0/include/linux/fs_struct.h -f79a57e00b84e9be35228523c26bae6d linux-3.0/include/linux/fs_stack.h -867019e8607a44470e0848747b0e9653 linux-3.0/include/linux/fs_enet_pd.h -088e6960154260e347fae296699e3271 linux-3.0/include/linux/fs.h -e1d257abda70c75fd6cec7db0a505539 linux-3.0/include/linux/freezer.h -b3fb91f930bdbad059799ef3a77784a4 linux-3.0/include/linux/font.h -c22f607f8454246377525e446cd80190 linux-3.0/include/linux/flex_array.h -b351e81e7311b785a783f5d01791238f linux-3.0/include/linux/flat.h -dd20bd4a4cce34e2ade7e494667cc421 linux-3.0/include/linux/firmware.h -d56979b0e5815be81d81352d89bb1093 linux-3.0/include/linux/firmware-map.h -7cbc44e2e7babdeb94c8262818c0b007 linux-3.0/include/linux/firewire.h -9d79db5e801a95eabed1b290810eac7c linux-3.0/include/linux/firewire-constants.h -2795ba10830179a9ea84948d43bb9d55 linux-3.0/include/linux/firewire-cdev.h -6b9627211428d06e11f0398919056776 linux-3.0/include/linux/fips.h -8c53c91f0eb279ad6d098ffcce52ef2e linux-3.0/include/linux/filter.h -a647bf53d1852752ee0731584e8cb93e linux-3.0/include/linux/file.h -76ae488e10c0c14083635964a0f1cf37 linux-3.0/include/linux/fiemap.h -de16da8adc2bdb034f4adf2172470e3c linux-3.0/include/linux/fib_rules.h -e1b0b22a39790c990499f356522538e9 linux-3.0/include/linux/fec.h -08908ca81f6d23bf36f466a4468186c3 linux-3.0/include/linux/fdtable.h -4333fb68d43151a0785e245f8368cbe1 linux-3.0/include/linux/fdreg.h -62db30094cefa87e37d30d8db5307674 linux-3.0/include/linux/fddidevice.h -3352b860738189e765315c1f8cff8397 linux-3.0/include/linux/fd.h -f3bdf657ec2f26968a3b63050a9ac907 linux-3.0/include/linux/fcntl.h -785736070f4f712e76b0ea988d2b91f7 linux-3.0/include/linux/fcdevice.h -6d019b53cca52c7f524037cb68c3a16e linux-3.0/include/linux/fb.h -d0771fced502b7196cd71221b23294e6 linux-3.0/include/linux/fault-inject.h -34467345d65d5c1be84cf39c5707f51d linux-3.0/include/linux/fanotify.h -39506786f2d6f18eef8c126b77dd11aa linux-3.0/include/linux/falloc.h -9f1a919c08472696c656109b2ab186d7 linux-3.0/include/linux/fadvise.h -ff9572374cdb4ed88b12a47fb3b00a59 linux-3.0/include/linux/f75375s.h -18326d530152aab4eb846424f51272c9 linux-3.0/include/linux/ext3_jbd.h -321fb8c09986ad085b307066a9243595 linux-3.0/include/linux/ext3_fs_sb.h -c37de924d7c8f621b5f28ac773e98753 linux-3.0/include/linux/ext3_fs_i.h -350456cf4e1d47aa48e4170f1777bf0a linux-3.0/include/linux/ext3_fs.h -19b4113df9cbd9b4b785110d561f1f65 linux-3.0/include/linux/ext2_fs_sb.h -63d41dbe073c5d145206a687b2610a51 linux-3.0/include/linux/ext2_fs.h -826157344ec8160d08dca8535861fc6d linux-3.0/include/linux/exportfs.h -2fa2d74d70b8c5c64df34fc8c902ed88 linux-3.0/include/linux/eventpoll.h -9232ad28cb08d83753ddef8678b569ef linux-3.0/include/linux/eventfd.h -5c9106d2ef32dea7b841f45bd0bc06af linux-3.0/include/linux/ethtool.h -84be0c4c548c960a193bd93cf014fe6b linux-3.0/include/linux/etherdevice.h -e9ed5e5432281bd1c11f7940323455cd linux-3.0/include/linux/errqueue.h -0afdb36709fb1a5ee08b13b5e96bf92a linux-3.0/include/linux/errno.h -6a61134e6c485f3bb107cacfb14d1e23 linux-3.0/include/linux/err.h -32a63fd62cec780e664a32b8449a31a8 linux-3.0/include/linux/enclosure.h -544cdf6363eb78e4ae3fd693f8aeb2de linux-3.0/include/linux/elfnote.h -a2c3d46a93b41c7c651090b5e1e14a05 linux-3.0/include/linux/elfcore.h -b344e3e370179001ff4bacfdf5c44eed linux-3.0/include/linux/elfcore-compat.h -cf1c6a040430c26c63af304ee49e03ec linux-3.0/include/linux/elf.h -c29d8f2bda8b338d42cb89c865b312a9 linux-3.0/include/linux/elf-fdpic.h -c6dbfca2fd1dd5027af079838482164a linux-3.0/include/linux/elf-em.h -7ab4301679317934411e5c9f7b0e6ecf linux-3.0/include/linux/elevator.h -c5b0b301cf36a221a9edc7efaa4931bd linux-3.0/include/linux/eisa.h -0d95abf161a54f079ea64bb13ca8c198 linux-3.0/include/linux/efs_vh.h -442e65f5510979254a52e1ac322d431b linux-3.0/include/linux/efs_fs_sb.h -a094081e77baca83b26f1074083e7249 linux-3.0/include/linux/efi.h -50215bee7f38bd07a5d3f42e500fec18 linux-3.0/include/linux/eeprom_93cx6.h -2549660d7cd9da86d7c1de910b20d3cc linux-3.0/include/linux/edd.h -fe7d673eeb96c35d2fdb6b68be1becab linux-3.0/include/linux/edac_mce.h -0ad3da32a3256ea6513e661f4666b71b linux-3.0/include/linux/edac.h -672b9caf0ec1417ab7e497acd0b4a2a0 linux-3.0/include/linux/dynamic_debug.h -7810d03db27908d9a0454b85b97efcdf linux-3.0/include/linux/dw_dmac.h -018028c5786ad7a535033cf26577b190 linux-3.0/include/linux/dvb/video.h -52a8cd051bba5add980b6b027e0f41af linux-3.0/include/linux/dvb/version.h -d5dcf0e7dabcf56295713f4011df30ee linux-3.0/include/linux/dvb/osd.h -4fe74866a76b699e26343fb042e32923 linux-3.0/include/linux/dvb/net.h -350f52f50874da892c9d20632c3c29f5 linux-3.0/include/linux/dvb/frontend.h -584634f5c1efe45a226ab91a9998533e linux-3.0/include/linux/dvb/dmx.h -d26b60e9e8a732fb4258cca348caf21d linux-3.0/include/linux/dvb/ca.h -52dd6f3df7397eb45a95948045058742 linux-3.0/include/linux/dvb/audio.h -762b5c3e973155b4d2bcdcb660f930a7 linux-3.0/include/linux/dvb/Kbuild -c1d9081807e9c4654d969dc55ae9c5d6 linux-3.0/include/linux/dtlk.h -34afa1a389ba56f6236c20b1ccab26c6 linux-3.0/include/linux/ds2782_battery.h -322618a130e0b596ac86cfaccd4e01c2 linux-3.0/include/linux/ds17287rtc.h -e168b1a36bd2cf0bdeda1660ed60b95e linux-3.0/include/linux/ds1286.h -7df4de8987fb98f476ab9142dea2a115 linux-3.0/include/linux/drbd_tag_magic.h -97a5731979d4933c900337736a0048dd linux-3.0/include/linux/drbd_nl.h -43fa2417930b68de661e27690bd3b609 linux-3.0/include/linux/drbd_limits.h -fd368a836e702b2a9432f81c57d9406c linux-3.0/include/linux/drbd.h -027331acf4a7901c6ebf16b6d789e1a3 linux-3.0/include/linux/dqblk_xfs.h -46a20cad7f0fd1a72ccb4f0a1ad7f1bb linux-3.0/include/linux/dqblk_v2.h -6c8d7dbb4911db7c4132c895d9e4dcbd linux-3.0/include/linux/dqblk_v1.h -317e63bd8aabdb269958d1fdf4f92e03 linux-3.0/include/linux/dqblk_qtree.h -d3dad144bdaecb3d13c08068ecd9f620 linux-3.0/include/linux/dns_resolver.h -3333f032a57055c5d2b6fee32a01c547 linux-3.0/include/linux/dnotify.h -f6307a52b491f5adf1905bc81da54e62 linux-3.0/include/linux/dn.h -1cf90187fc823af7fa7f4a2d274cd042 linux-3.0/include/linux/dmi.h -ce35bc66a52f01fbccb8b6012b795476 linux-3.0/include/linux/dmar.h -d1f8129bf8c7172f04e28dc301ab8366 linux-3.0/include/linux/dmapool.h -026389cb20df11921b3481fc67dcf4b0 linux-3.0/include/linux/dmaengine.h -d390ab12d66453bff4f5c5b98bd781cc linux-3.0/include/linux/dma_remapping.h -8a7e44bea363f99f749e294fd618a73b linux-3.0/include/linux/dma-mapping.h -c085f31c5956d46abcef4ff934364f8a linux-3.0/include/linux/dma-debug.h -4e229cb19dae6dbcf114517f3ecd8ce9 linux-3.0/include/linux/dma-attrs.h -0425d88da539488a265f73be3a4c49ed linux-3.0/include/linux/dm9000.h -d143c48d8d02dbdfe94d43d6206fbc1a linux-3.0/include/linux/dm-region-hash.h -c5d72189ee6d90d10dd80b8af0f0ebbc linux-3.0/include/linux/dm-log-userspace.h -daa9791ac0cd31d13fd5dcfb9be9fb72 linux-3.0/include/linux/dm-kcopyd.h -dfbc2ee2ae3c5f5217daa9e2a8972def linux-3.0/include/linux/dm-ioctl.h -3f252754890113ce880aee7ef52c44a4 linux-3.0/include/linux/dm-io.h -6b4095ddc77ce87fd6ce489ab7e23810 linux-3.0/include/linux/dm-dirty-log.h -451c9716482a22beae0b84229b1a6a33 linux-3.0/include/linux/dlmconstants.h -150c3272fc591b3530586be03d414807 linux-3.0/include/linux/dlm_plock.h -7bf2925b60668216e2e92d5d03f93760 linux-3.0/include/linux/dlm_netlink.h -d83065d25be042914523242e1ffd5432 linux-3.0/include/linux/dlm_device.h -cb030d04ad7b178ef85c7b10884679d2 linux-3.0/include/linux/dlm.h -d867c79a8e7f9980289fb4493c683467 linux-3.0/include/linux/display.h -d03bc13cdbacdef327cece4c7d74cec2 linux-3.0/include/linux/dirent.h -8267646bff52230622f6c3cba83806d8 linux-3.0/include/linux/dio.h -99b0d195a7a11dbd76d9ccbe3e6341a7 linux-3.0/include/linux/devpts_fs.h -22aca96a0db079c60e49adb8990505d3 linux-3.0/include/linux/device_cgroup.h -57d58b6a07562ab074b07e2b18c7ae8f linux-3.0/include/linux/device.h -9b3cbc48474ac7b1e6f9ee18d3780962 linux-3.0/include/linux/device-mapper.h -19a7f988f5fceb42eb37418f42582d3d linux-3.0/include/linux/delayacct.h -4f8fa8577dcfd9d7138e60ee2008dbeb linux-3.0/include/linux/delay.h -6caad38ccb44e18b62e9a60b9c37fe3b linux-3.0/include/linux/decompress/unxz.h -af3764dd21bf164c92013c2cbf11ccb4 linux-3.0/include/linux/decompress/unlzo.h -719f7a9a3ecab9b8860ecb425d1fa75d linux-3.0/include/linux/decompress/unlzma.h -a6bb81c013443f0933690c6dc81f29d0 linux-3.0/include/linux/decompress/mm.h -6f47f0fa90ab636934b19ee1f45afa3e linux-3.0/include/linux/decompress/inflate.h -c80889d7f83ec4a009e53b3fa27dc0d3 linux-3.0/include/linux/decompress/generic.h -5c9d298edb47040f67ffa44af145502e linux-3.0/include/linux/decompress/bunzip2.h -208e931c6652a36d56686e9fe96d0734 linux-3.0/include/linux/debugobjects.h -68d5f5bd4c4a303e325750ca5c8ac2bb linux-3.0/include/linux/debugfs.h -bb85a558e8bfb4b8103f9daa1269b935 linux-3.0/include/linux/debug_locks.h -84ccc962a4789a303e151c8e353e8312 linux-3.0/include/linux/dcookies.h -edacc57e169c26fd28eec0370b7e61a9 linux-3.0/include/linux/dccp.h -7e82e23dab9d311473ffc2c3f3ced49c linux-3.0/include/linux/dcbnl.h -018b23db158552b163413c9924f56737 linux-3.0/include/linux/dcache.h -e35afbd06f6669abdd8ac85eab8f1b14 linux-3.0/include/linux/dca.h -acaf030ee3ba3a3e0771ea9f325a6192 linux-3.0/include/linux/davinci_emac.h -a5a36c0eab40e43c26d929f171c680a2 linux-3.0/include/linux/cycx_x25.h -90fafc26306ef25186524bbbbca9274c linux-3.0/include/linux/cycx_drv.h -df7ce09503608c294e910412068ffcb6 linux-3.0/include/linux/cycx_cfm.h -032c3247ca912ff64d136d4e4e99ad67 linux-3.0/include/linux/cyclomx.h -8098a5d73dd8e57f1a1d2ab34ee06cb4 linux-3.0/include/linux/cyclades.h -e6a95edde858cdc9fb21e75a021b00ab linux-3.0/include/linux/cuda.h -f61bd0376a915c7fd4e4c27b0023cbf8 linux-3.0/include/linux/ctype.h -058f2f1c09b0b44cbb275d783b85c90d linux-3.0/include/linux/cs5535.h -0e81db00ade7696ece1b641d3cd88a2b linux-3.0/include/linux/cryptohash.h -07324a136876e01fd95c3090197fd866 linux-3.0/include/linux/crypto.h -0a1f498a0fa13ad24e628b872bb7ab94 linux-3.0/include/linux/crush/mapper.h -5ce7f500f518a5e03a39fcf18f688122 linux-3.0/include/linux/crush/hash.h -04ae34241454646192a49933978e7885 linux-3.0/include/linux/crush/crush.h -672fd67cb8d034cae0098f22dacabbf2 linux-3.0/include/linux/cred.h -1b2ffa12a2b1de0ffb9b1205c3dfe017 linux-3.0/include/linux/crc7.h -0e0e556dae386c44d3dd55badbb13041 linux-3.0/include/linux/crc32c.h -2a0aa62af9adbfbdbc46b19fb192e439 linux-3.0/include/linux/crc32.h -6833026cacd25464707fe9691342b765 linux-3.0/include/linux/crc16.h -2a8f078d00a0b57b3f95475ce139c09a linux-3.0/include/linux/crc-t10dif.h -404e99b26962dd01e4f74c10396e63ef linux-3.0/include/linux/crc-itu-t.h -a6f6e0a79236b8eb13313af6e12a6063 linux-3.0/include/linux/crc-ccitt.h -843e15ca4db57bc25e6a012148c8c1fe linux-3.0/include/linux/crash_dump.h -49a64e3b21179cd7164dfd56b23a0a4d linux-3.0/include/linux/cramfs_fs_sb.h -dfbabe00c0d7bb36d6b53801693c30dc linux-3.0/include/linux/cramfs_fs.h -fade8ac0ced2adc6c4f20ac8e3e5612e linux-3.0/include/linux/cpuset.h -7c6d3b2bab2d5d67412153f9cb4c056f linux-3.0/include/linux/cpumask.h -f698c4d0384d2cfbb90410d9637e532f linux-3.0/include/linux/cpuidle.h -ca72b6cbeb57bf8d308a5c66b842adf5 linux-3.0/include/linux/cpufreq.h -23942fe41ae44ece130ec0edf5ae0cee linux-3.0/include/linux/cpu_rmap.h -1866410ebcfd7a3c4c2565853654d81b linux-3.0/include/linux/cpu.h -c3c00cd904dff998bc50dc5768e5125d linux-3.0/include/linux/cper.h -c7c5ba7137a1a780eaea944286381c83 linux-3.0/include/linux/coredump.h -812b9fc49531fb2d5f6402bded585e1b linux-3.0/include/linux/const.h -4267aef9d7869372dda37a6c23af374a linux-3.0/include/linux/consolemap.h -16705f688a219213c5066ea06eb1f792 linux-3.0/include/linux/console_struct.h -c39200d8809307673c8abe172e5280ff linux-3.0/include/linux/console.h -6821ef159bc967b217ec893d8812094c linux-3.0/include/linux/connector.h -03d1b14f7b880cc60c43494638f31877 linux-3.0/include/linux/configfs.h -042eab2a5e3c9d3ae6e908919d4c7b11 linux-3.0/include/linux/concap.h -8a2ddd7fa307295bb55247b76bf37576 linux-3.0/include/linux/comstats.h -31cba93bc499b3f373576ced4e2bc8cc linux-3.0/include/linux/completion.h -8502f851caec15cf15397e4c268f8c98 linux-3.0/include/linux/compiler.h -cb1e6e1279569ebd5ec1fa0ee5b16f17 linux-3.0/include/linux/compiler-intel.h -6caaabaa7019607773c1b659b9df6ef6 linux-3.0/include/linux/compiler-gcc4.h -d4b70117e81d6cfe4ca321fc3ae037be linux-3.0/include/linux/compiler-gcc3.h -0beed69971c9cd57ddd0669d6763b604 linux-3.0/include/linux/compiler-gcc.h -b282d96d43160164cba0226cabcacd23 linux-3.0/include/linux/compat.h -507a523f037ce112b99f3035b5e02e01 linux-3.0/include/linux/compaction.h -949b41cbf8f3bd782094eb25c6b11c39 linux-3.0/include/linux/com20020.h -091de8e14e14332d9488f07e8ad34989 linux-3.0/include/linux/coff.h -90fb4e814427a196a09693514e9d82db linux-3.0/include/linux/coda_psdev.h -632b704510a5d1f1fa37b8ae99103756 linux-3.0/include/linux/coda.h -7e66e9429b32153b2d319ebf639c106c linux-3.0/include/linux/cnt32_to_63.h -527dbdf3775ff5bc07934c5fc2c2821d linux-3.0/include/linux/cn_proc.h -18ce2b0a72652854e552eb0502837b0a linux-3.0/include/linux/cm4000_cs.h -b5abc6b3820d75c3c0d19d2af1af4cd7 linux-3.0/include/linux/clocksource.h -2ea821176485bc9f193186a7b31a15a4 linux-3.0/include/linux/clockchips.h -99f9cbe9804b2ee6fa3e5c52794f2446 linux-3.0/include/linux/clkdev.h -e19958e313e478748a9cc430ddefc361 linux-3.0/include/linux/clk.h -113beeacd8fef11307e9bcda16f78c6e linux-3.0/include/linux/cleancache.h -a6b42537db1bc2f2516bb8b5e2ceab93 linux-3.0/include/linux/circ_buf.h -fcb454fd979f351da0ed38f9969320a3 linux-3.0/include/linux/chio.h -4790bf57352df9d42ee840fd40aa1132 linux-3.0/include/linux/cgroupstats.h -c2e644273722dec7bf99f90b5847306d linux-3.0/include/linux/cgroup_subsys.h -d6b782e65ccfc65ac3df584bf8bf2e21 linux-3.0/include/linux/cgroup.h -59e3691736cf30d0d9fbb0b2b58f9571 linux-3.0/include/linux/cfag12864b.h -91cab4cec7322c67c07cfd6ccdcbe83c linux-3.0/include/linux/ceph/types.h -53cf291f2b8d158d331822fac04b7464 linux-3.0/include/linux/ceph/rados.h -e321214bda261fbeba5a8095b9598711 linux-3.0/include/linux/ceph/pagelist.h -f6616322d199c554dc8ba20832981c8a linux-3.0/include/linux/ceph/osdmap.h -4248a08254774394182c10edae7e009a linux-3.0/include/linux/ceph/osd_client.h -ddf8866146b28b42a865ed17c0e0488c linux-3.0/include/linux/ceph/msgr.h -1026e578f6758a106bbf3da7fb2618a9 linux-3.0/include/linux/ceph/msgpool.h -9402bbf2ed5ac748e167df39194fc80f linux-3.0/include/linux/ceph/mon_client.h -25cf8e990148b335d6e5653f31c29e5d linux-3.0/include/linux/ceph/messenger.h -2a4faf8697f2513154c6ae3bca6e97be linux-3.0/include/linux/ceph/mdsmap.h -953494e3b9698b4c2f91c8b63bea3d97 linux-3.0/include/linux/ceph/libceph.h -df62b4837cf77440c993c1a4c3d06070 linux-3.0/include/linux/ceph/decode.h -397d0606a0b6a445fd913df32a65b939 linux-3.0/include/linux/ceph/debugfs.h -1a50cbd0e91d9b8f5e8c4ca30e5b564f linux-3.0/include/linux/ceph/ceph_hash.h -4e270af3b35301886d5c3a92bbc0e68e linux-3.0/include/linux/ceph/ceph_fs.h -26dd781d46f522c75411a6b5f10c0706 linux-3.0/include/linux/ceph/ceph_frag.h -5fc371d00e55372f3bbd35e74063efcd linux-3.0/include/linux/ceph/ceph_debug.h -35c3c13a7b65c0558b40727964e38228 linux-3.0/include/linux/ceph/buffer.h -d7fc3887a9614a07e6e6654ee03d5dba linux-3.0/include/linux/ceph/auth.h -c68e4663031ed15f1b012a1af2a8c0a7 linux-3.0/include/linux/cdrom.h -bea713ff70c0b50fb54d8963b77a3335 linux-3.0/include/linux/cdk.h -14912c079316c92e9d2ec5c31619997d linux-3.0/include/linux/cdev.h -efcdb1aa61f48623145117824811e23d linux-3.0/include/linux/cd1400.h -e6715518bc4b167b1db9bbb8627bd060 linux-3.0/include/linux/cciss_ioctl.h -63032ca9816e86d0e8af0be71d7cf28b linux-3.0/include/linux/cciss_defs.h -a036dc1cf493867ab4ba66de8ef7746c linux-3.0/include/linux/cb710.h -c59e17c2d7484aae20d6981e832d1f84 linux-3.0/include/linux/capi.h -8476fbc7c3eff523654c59b3b8da91f1 linux-3.0/include/linux/capability.h -b9d0d750235848ee945c0f336e1d2f79 linux-3.0/include/linux/can/raw.h -cf259b9018215cb5025f5cfc7fe61af9 linux-3.0/include/linux/can/platform/ti_hecc.h -46ceae33e6fe968ae0187e11b07f6424 linux-3.0/include/linux/can/platform/sja1000.h -9ce9b711fac5bcb4b678f983cedeffc3 linux-3.0/include/linux/can/platform/mcp251x.h -5f42257c14dece68bc32f4010b1d6d09 linux-3.0/include/linux/can/platform/flexcan.h -76655f89adcef86d07db9d54c40d782f linux-3.0/include/linux/can/netlink.h -168f38c066b9e223e25c1297ffd33dd9 linux-3.0/include/linux/can/error.h -31a8c86c6caa4b5eb14ca05dd28d107c linux-3.0/include/linux/can/dev.h -190fe26ac38eb960b6c496072f829a52 linux-3.0/include/linux/can/core.h -acdd2b18ab21e0721a73fa627e664d75 linux-3.0/include/linux/can/bcm.h -af42f995f74dd36343b01756dc08d763 linux-3.0/include/linux/can/Kbuild -8d5ad8186c11672bd8bfa279ac782c53 linux-3.0/include/linux/can.h -f59f4a76d52637a0d009678792e35484 linux-3.0/include/linux/caif/if_caif.h -915049897ad49f7f4579cfc877e2364e linux-3.0/include/linux/caif/caif_socket.h -b72ccab48192d73e379fd4cd13a30209 linux-3.0/include/linux/caif/Kbuild -c28c49d65a94ae63a373354f83434168 linux-3.0/include/linux/cache.h -a61d8d19d023231101ebf250be2a0f20 linux-3.0/include/linux/c2port.h -752b68bab3c25e412fca5f9feaa69605 linux-3.0/include/linux/byteorder/little_endian.h -a47e85ccd010f0f54c8fd90426dbd8f8 linux-3.0/include/linux/byteorder/generic.h -e2e65191b4fd9980bff5f060b6143968 linux-3.0/include/linux/byteorder/big_endian.h -5f25a96eb6ac0b13660f19ed9d94c927 linux-3.0/include/linux/byteorder/Kbuild -8936c17c855108f66e28ed0ffa9b6088 linux-3.0/include/linux/bug.h -47d522c28007766cb6b04fb1b9deb905 linux-3.0/include/linux/buffer_head.h -086398b34476ce115809807c07e754bf linux-3.0/include/linux/btree.h -bbe5c7c7650bce8336e604b11e69674a linux-3.0/include/linux/btree-type.h -8b38832af4f7b84201258cf92f22b37a linux-3.0/include/linux/btree-128.h -65929cb689ba69025a87c1fd61271087 linux-3.0/include/linux/bsg.h -84eb207bd9b9c61904ddcbd1bfdf2373 linux-3.0/include/linux/bsearch.h -147e64115efc8520286adb4bdb2952fc linux-3.0/include/linux/brcmphy.h -c70c227fa403ed8e13438aeac238f02c linux-3.0/include/linux/bpqether.h -3f0a8197e090396055383821a036e0cc linux-3.0/include/linux/bottom_half.h -9514efeb18b9a67228f8746d446ce3bf linux-3.0/include/linux/bootmem.h -8bba42d3238990bbde911181d37372da linux-3.0/include/linux/blockgroup_lock.h -ef934c128dc038be2a1f1376c871a379 linux-3.0/include/linux/blktrace_api.h -4a7c818ddb146661f9c1bc9a846f4f23 linux-3.0/include/linux/blkpg.h -cce64d598d0dd3f2691ad5daac5ee4c2 linux-3.0/include/linux/blkdev.h -83710604dbc2b21816ebe69b7818f1b9 linux-3.0/include/linux/blk_types.h -8397f1306be45cc3ddd247f08d3b5bed linux-3.0/include/linux/blk-iopoll.h -852a17bac2a07209f1546c64981ce36f linux-3.0/include/linux/bitrev.h -b4c434419825bc0456413118a539a4dd linux-3.0/include/linux/bitops.h -0a2ac599e89a3126a2175c61c864bcad linux-3.0/include/linux/bitmap.h -fcf0c878ed567370807af70a42dc3103 linux-3.0/include/linux/bit_spinlock.h -0d25a40378ec82c46fcfc8f0f3dc8eb9 linux-3.0/include/linux/bio.h -7aef6cb8fff10f1ccb1fa2d766fb7861 linux-3.0/include/linux/binfmts.h -a299c041cc8cf91dc9898ac033a344b3 linux-3.0/include/linux/bfs_fs.h -96ab66cfac724308da28546e1fcb0f8d linux-3.0/include/linux/bfin_mac.h -f64b4d995d89cb40832955047525bdf0 linux-3.0/include/linux/bcma/bcma_regs.h -aa3813c0a2390de61cd123c67c002966 linux-3.0/include/linux/bcma/bcma_driver_pci.h -80e0f3708428d4341cc5cde22d496caa linux-3.0/include/linux/bcma/bcma_driver_chipcommon.h -13aaf0401ed58f9938558ba196e8d583 linux-3.0/include/linux/bcma/bcma.h -039d317d816891f3c8295f0bead28577 linux-3.0/include/linux/bch.h -f061cf439f62973c6e687c160002d50b linux-3.0/include/linux/bcd.h -dd8e8afbae744c0e2bab1997b4ba4e07 linux-3.0/include/linux/baycom.h -04d1f09e5e374e34ef8ee226ead22258 linux-3.0/include/linux/basic_mmio_gpio.h -68e2063faee5caddf1e89c82d9afaad1 linux-3.0/include/linux/backlight.h -1b75911c1097dba6ffb805572301af09 linux-3.0/include/linux/backing-dev.h -da3faecfae41aa91290d4faf38d1e290 linux-3.0/include/linux/b1pcmcia.h -3066caf6ecf866514a74e41dda25a813 linux-3.0/include/linux/b1lli.h -c36449ad2c2845556d3c80ca25d23708 linux-3.0/include/linux/ax25.h -2195bbf6a6c8bef3134e82186bbf4248 linux-3.0/include/linux/average.h -f7aa8f0cc5fc0200410320b310cb4554 linux-3.0/include/linux/auxvec.h -780bc472dc2348c57aff208e2618f9be linux-3.0/include/linux/auto_fs4.h -d3ff4ea6398aa1157b7d33efd1d8bb34 linux-3.0/include/linux/auto_fs.h -76d4c7b3462a28ef6af722670d99c787 linux-3.0/include/linux/auto_dev-ioctl.h -0fb36cddd6fad24ceb9b42e2eabef99c linux-3.0/include/linux/audit.h -0b4559a0246139808e2ad82f56000b90 linux-3.0/include/linux/attribute_container.h -1f71b8cd4432ff97f827ebd81133dded linux-3.0/include/linux/atomic.h -600deb3758a7a17be41d20c49d0f0c65 linux-3.0/include/linux/atmsvc.h -185b4d7a3b7694e65cc85fd4647de30a linux-3.0/include/linux/atmsap.h -e16fe8ae3ea5b85b749478d2c012c94e linux-3.0/include/linux/atmppp.h -8b6c2742f7652e4c128e3bab134dc51d linux-3.0/include/linux/atmmpc.h -bc36108ec5c171788eaa732e388b6303 linux-3.0/include/linux/atmlec.h -dc70932125f315a3b6d5c6109c882c6a linux-3.0/include/linux/atmioc.h -0d9365350bd5dc7c0a7dfe7506cca8d6 linux-3.0/include/linux/atmel_tc.h -285aa1f6524bacbfedeb7034d7173dc7 linux-3.0/include/linux/atmel_serial.h -ebe055c67995b28b7e03552e2b25c2ae linux-3.0/include/linux/atmel_pwm.h -d11d732288d9683a5b2151fbdd3ef2e2 linux-3.0/include/linux/atmel_pdc.h -5e3715f3662310127b3ae0379bfea7e8 linux-3.0/include/linux/atmel-ssc.h -6cb90993364f94c6b85bf598ad056a0c linux-3.0/include/linux/atmel-pwm-bl.h -d22e0027fa7884b13e11c8055c676b43 linux-3.0/include/linux/atmel-mci.h -a130e69261807cdd1b381c1269b4d06d linux-3.0/include/linux/atmdev.h -45727814fb51805e063b9ffb2aab91a7 linux-3.0/include/linux/atmclip.h -4b543bccbf8fa6a44244faedaaa5ca7f linux-3.0/include/linux/atmbr2684.h -2b7d72c295e71823f654f470c4ce22cb linux-3.0/include/linux/atmarp.h -cdbafa97210215a310ea535a6414ae7f linux-3.0/include/linux/atmapi.h -ed5d5ab5a853d0805b92c3ceebfc4cd8 linux-3.0/include/linux/atm_zatm.h -d21c4d0eff794a2042375e23cf7d75c8 linux-3.0/include/linux/atm_tcp.h -c00877cb26bef664550d899950496540 linux-3.0/include/linux/atm_suni.h -2ac573cec5c022acbd58af1dc8c1cf01 linux-3.0/include/linux/atm_nicstar.h -16f7498304243537cf8c7a4d2bb74d61 linux-3.0/include/linux/atm_idt77105.h -1f1f03c349ecb08698aad043f2554342 linux-3.0/include/linux/atm_he.h -a8b502b28302224e1cbd9fa601054711 linux-3.0/include/linux/atm_eni.h -dc4e1453403958bab3bd683e321a72ff linux-3.0/include/linux/atm.h -94fe6e357beb5a1b7c1b3b34d6aa3623 linux-3.0/include/linux/ath9k_platform.h -55f462aafd3cce9f9d9827a9fba667c3 linux-3.0/include/linux/atalk.h -86b1ed8fccd2caa34965bd5ec07c756c linux-3.0/include/linux/ata_platform.h -7396c4b625c37500864c0539d3f785cd linux-3.0/include/linux/ata.h -f286766f76007cda0ba991a07904c626 linux-3.0/include/linux/async_tx.h -afa692e1cb8427fa2a510c7830cf5f62 linux-3.0/include/linux/async.h -272f803648c28df91952d636b5728dfa linux-3.0/include/linux/arcfb.h -8cb87528232a5d0af4ce78205a482cb6 linux-3.0/include/linux/arcdevice.h -58492d01862a3a7fa5b5fec838be61d8 linux-3.0/include/linux/apm_bios.h -998d88c093aee44e0f61a58e06c44792 linux-3.0/include/linux/apm-emulation.h -e552453ea4093c1b393b142eaafdc423 linux-3.0/include/linux/anon_inodes.h -e8fff05960a0bbb0fccbbbbc4d559381 linux-3.0/include/linux/amigaffs.h -931156a723b156db33c39eb2ccdfe350 linux-3.0/include/linux/amifdreg.h -e68206740142251a2dd9188a738c208f linux-3.0/include/linux/amifd.h -9c131cd361d8356e7a28737b84adc0c3 linux-3.0/include/linux/amba/serial.h -ef7998fb5a870970845d7a2a5ef77cdc linux-3.0/include/linux/amba/pl330.h -1fe063d2c9677a0bd6ebe90f4519ca91 linux-3.0/include/linux/amba/pl093.h -f368d844c4ad20000b1bc697e17beb1b linux-3.0/include/linux/amba/pl08x.h -f1a66477e6402c170d1db32323f026a7 linux-3.0/include/linux/amba/pl061.h -7fb776de5d057b98413cbf24f385301a linux-3.0/include/linux/amba/pl022.h -8c7db78a66173e8e7653b133b7ed2dfa linux-3.0/include/linux/amba/mmci.h -d943c64f17dd7a45bf47d056724a1ff8 linux-3.0/include/linux/amba/kmi.h -42f710cdc64e293b8d3f14c51c0a753e linux-3.0/include/linux/amba/clcd.h -479d1bde4af0a5bd288c3d02d6f55353 linux-3.0/include/linux/amba/bus.h -cbfe69c9b594bb1e212a549122edbf48 linux-3.0/include/linux/altera_uart.h -50ad6425812972c6e953a9da45b4b18c linux-3.0/include/linux/altera_jtaguart.h -84ca613d4211caac2ff952c57569bf0c linux-3.0/include/linux/alarmtimer.h -cedf5df9d95391a8d67dfe72db93e0ef linux-3.0/include/linux/aio_abi.h -4704fd8960edf759fe3fb35840b55e55 linux-3.0/include/linux/aio.h -b305d8a4b20a1fdc1fd060fb9e0b28eb linux-3.0/include/linux/ahci_platform.h -80455473163e68870d6008325ccdddee linux-3.0/include/linux/agpgart.h -3c30f66ee89c16f982581c9aa2ca6c9f linux-3.0/include/linux/agp_backend.h -f9c35e343ad860698683641df86bae0f linux-3.0/include/linux/affs_hardblocks.h -f2cbc175d4d3f6d2ab29f43960e49fe2 linux-3.0/include/linux/aer.h -b0557ea3cfa2690e3f1c300123b6c57c linux-3.0/include/linux/adfs_fs.h -7b0594339ca9a86ac5acfd971e859080 linux-3.0/include/linux/adb.h -1186a7be25dcf2866611ac4934364339 linux-3.0/include/linux/acpi_pmtmr.h -20e7233b78e6c372befa99870673ce44 linux-3.0/include/linux/acpi_io.h -0b71935ca6dc3346b9538bc2a621f2a0 linux-3.0/include/linux/acpi.h -72bb4d3a6cda03d7ca1c66eca65f5a7f linux-3.0/include/linux/acct.h -b10b8c2375b4df6185938ee2e9936578 linux-3.0/include/linux/ac97_codec.h -8fab3f13db4f787212c361c7174b42f7 linux-3.0/include/linux/a.out.h -3132bc1c75ec8e7daaf62b30b766b98c linux-3.0/include/linux/Kbuild -6f88f2d5ed2c52f44beb307cb450a8af linux-3.0/include/linux/8250_pci.h -c520f00b9a1b0215d83983ed9cde06c8 linux-3.0/include/keys/user-type.h -6b33603ea64663ac8b1414b4ae86cdd7 linux-3.0/include/keys/trusted-type.h -d1fd1e49ac68469cc5d84b0de310a5e4 linux-3.0/include/keys/rxrpc-type.h -a400b3cbcdd5115da5e7bafb1752663c linux-3.0/include/keys/keyring-type.h -0ae1b8585ef06a9d2ff92d45d83a4cc1 linux-3.0/include/keys/encrypted-type.h -ca077fde6c888b5825e981136449c8c6 linux-3.0/include/keys/dns_resolver-type.h -66978a6e89b373e5b002875670da393a linux-3.0/include/keys/ceph-type.h -4ef5a40b3849f331ec5002e5d51707bd linux-3.0/include/drm/vmwgfx_drm.h -bf8459bd923776040650818c68666fd6 linux-3.0/include/drm/via_drm.h -31191e2ced2d201f6e2996309c89a274 linux-3.0/include/drm/ttm/ttm_placement.h -1f16d44336b245efd58a0ea265bdb891 linux-3.0/include/drm/ttm/ttm_page_alloc.h -3e5e79e4befc4279af67ecb7ed1ee904 linux-3.0/include/drm/ttm/ttm_object.h -b927e128f2c312b6e56ce8dc850cc87c linux-3.0/include/drm/ttm/ttm_module.h -178a135a2bd674424f7eb7dbb3c32971 linux-3.0/include/drm/ttm/ttm_memory.h -772c67c8bc21d519b4dcb15109eee60f linux-3.0/include/drm/ttm/ttm_lock.h -bede6b62687561326a33f4788331227e linux-3.0/include/drm/ttm/ttm_execbuf_util.h -18d859f3006576218240dd252cb4b588 linux-3.0/include/drm/ttm/ttm_bo_driver.h -27479e5a3bfffb5fb37051301ca67862 linux-3.0/include/drm/ttm/ttm_bo_api.h -9b077ebd1e0a26f0f4c9c35216d45eb8 linux-3.0/include/drm/sis_drm.h -d58eb6575a23901dc936d8c1956ee429 linux-3.0/include/drm/savage_drm.h -b834377a187f2041728101df840d4fee linux-3.0/include/drm/radeon_drm.h -e7f20e419659924dbb76947fd832fec7 linux-3.0/include/drm/r128_drm.h -53006b58d7d1756ab45768766b4c2493 linux-3.0/include/drm/nouveau_drm.h -effc2fb2ad4af6a13262b3fd44d3e4bd linux-3.0/include/drm/mga_drm.h -b6e4660a35212f22052cd389650ab3e3 linux-3.0/include/drm/intel-gtt.h -ab5db5ed6f17426934c6ef86d7adc9e1 linux-3.0/include/drm/i915_drm.h -bfb5d4516773bec155234a661cf0c010 linux-3.0/include/drm/i810_drm.h -84fe93a5a05f784ee4869d730214ba81 linux-3.0/include/drm/i2c/sil164.h -a15dd8fec5e0f27aebabe5a2c244985c linux-3.0/include/drm/i2c/ch7006.h -dd1f548a69460744f1c183b0c19c1e67 linux-3.0/include/drm/drm_usb.h -7026f80a520055389e5bff6b7df0df7c linux-3.0/include/drm/drm_sysfs.h -5539e940c04638ce58002e142cd8277d linux-3.0/include/drm/drm_sman.h -cf4ca0396bd9958f59b1ed481531b045 linux-3.0/include/drm/drm_sarea.h -44e8078cf8f5616cca972a89f4c80bfc linux-3.0/include/drm/drm_pciids.h -2226eec128996e145eeb25e27e3fad50 linux-3.0/include/drm/drm_os_linux.h -8cf2f5a1e835396e5cd2999ca164b379 linux-3.0/include/drm/drm_mode.h -962648f868eae9574c4a2925d5df5c48 linux-3.0/include/drm/drm_mm.h -6359e3b549e6538f68befff52f3b6af8 linux-3.0/include/drm/drm_memory.h -e64b81c8957d30c7955d293debc9e06a linux-3.0/include/drm/drm_mem_util.h -ab70e5f25a7c3f7d9007190099279129 linux-3.0/include/drm/drm_hashtab.h -e73dc18f977da742cf616f4f7729f46a linux-3.0/include/drm/drm_global.h -6c5c2685967b24c422dccb84b7dab3f0 linux-3.0/include/drm/drm_fixed.h -3919e020f0fa965c0eb9dca1ddb578a5 linux-3.0/include/drm/drm_fb_helper.h -996dbd1fe18291720b1ddb543dec5e93 linux-3.0/include/drm/drm_encoder_slave.h -a270711c6e75b47459bf8bfa4f92a10a linux-3.0/include/drm/drm_edid.h -48f3a6328b1a367427015c123385c6ff linux-3.0/include/drm/drm_dp_helper.h -b0bf15fec0ac1b7a3c11fa31ec8f40ef linux-3.0/include/drm/drm_crtc_helper.h -f70a752206a7d259a04d5f99d6036d10 linux-3.0/include/drm/drm_crtc.h -23c12aac51f62a2dc9dcab9b00be9c2b linux-3.0/include/drm/drm_core.h -c49da5962302e468cb20bb1b90248a8d linux-3.0/include/drm/drm_cache.h -5d1bc24c5825e24ffac821b4432ac1d6 linux-3.0/include/drm/drm_buffer.h -5374b0759e9498546955f4571f7e7f7c linux-3.0/include/drm/drmP.h -4505b2d36d8b51242f3d165eaafc40e0 linux-3.0/include/drm/drm.h -00679da4cce4d5e1d4ae1f74874663aa linux-3.0/include/drm/Kbuild -7dc5292aab9cbd761116ea034eab7daf linux-3.0/include/crypto/vmac.h -a676d83cb9fd24ed8b3148fca0734c15 linux-3.0/include/crypto/twofish.h -7e4d355d9fb6049999949c88ca2a5e21 linux-3.0/include/crypto/skcipher.h -0e763511c75357e8d94109fde4c82159 linux-3.0/include/crypto/sha.h -0f085b5f6ae1351de68279c4d163e08d linux-3.0/include/crypto/scatterwalk.h -7f0b3287ae15e4ca3acf63666374f03c linux-3.0/include/crypto/rng.h -09c982155844e03f211163644db95da7 linux-3.0/include/crypto/pcrypt.h -8c2f0cf1ee8f99dea874355f8d564da9 linux-3.0/include/crypto/padlock.h -71e3dc18e426ddf7cc6889be689a7a04 linux-3.0/include/crypto/md5.h -4bc7ac99595883e729f28249312057ce linux-3.0/include/crypto/internal/skcipher.h -d113e5dd2aee5c9cc0914c3963b6a65d linux-3.0/include/crypto/internal/rng.h -e8169e29c6a727a71bb7a2e74d570af0 linux-3.0/include/crypto/internal/hash.h -d6e6bd4789fab1fde3b96804b554371b linux-3.0/include/crypto/internal/compress.h -56a7424910cd7f975286b63834f8f70d linux-3.0/include/crypto/internal/aead.h -70c6e581840e6c79a9f94a8077fbf161 linux-3.0/include/crypto/if_alg.h -b1ec7dc66cbdc846962d6325d84e95bc linux-3.0/include/crypto/hash.h -88fbee632a2c4b606268fa724119d667 linux-3.0/include/crypto/gf128mul.h -979bde8d3faba3d28c0680823ea72646 linux-3.0/include/crypto/des.h -2b4738b8e059ec568bada933f99db59e linux-3.0/include/crypto/ctr.h -5e0df59474bf7d0c41ac997fca83812c linux-3.0/include/crypto/crypto_wq.h -fc9bb11e5d5e1f3df0ff51695a8e9d0a linux-3.0/include/crypto/cryptd.h -c18e1c878894d29676c9ab486a9a2b99 linux-3.0/include/crypto/compress.h -a70ea53dc2b99d8807e7c98f62ae6131 linux-3.0/include/crypto/b128ops.h -2888d2ce2354a67f39ff0d5060ba2d05 linux-3.0/include/crypto/authenc.h -30144f540dc0d349d493530f33ae8562 linux-3.0/include/crypto/algapi.h -1c1c8385aad893de1d1f150db783a736 linux-3.0/include/crypto/aes.h -e2a973235249a098b34c84a266aa0a1e linux-3.0/include/crypto/aead.h -b61e87e417265274bb03ee22a44d95d5 linux-3.0/include/asm-generic/xor.h -8bf130ffd002b3bbfc3f849176dbe837 linux-3.0/include/asm-generic/vmlinux.lds.h -a45ccc38271b9331de4c3379db037bb7 linux-3.0/include/asm-generic/vga.h -f1a484fc59837634103ee80eb9686ca0 linux-3.0/include/asm-generic/user.h -2bd6df2bf420531eb525da64509020b0 linux-3.0/include/asm-generic/unistd.h -4daf21923fedcbae197b4e51fcbd390c linux-3.0/include/asm-generic/unaligned.h -65c010aa2aacb0bf1a4401515bfbe196 linux-3.0/include/asm-generic/ucontext.h -e00f2412822cbebc3643167a548d4493 linux-3.0/include/asm-generic/uaccess.h -9e0ac6b93a25a49c4485c7b03cfcb15d linux-3.0/include/asm-generic/uaccess-unaligned.h -08f77d160873a302dcf13f23e14d91d8 linux-3.0/include/asm-generic/types.h -0046cc8e6b0aa92ac2efe2771984fedc linux-3.0/include/asm-generic/topology.h -eb34193e2de6aa0d5e4cbc950be542a7 linux-3.0/include/asm-generic/tlbflush.h -6daece330fefbbb24f5714ff4a3e81c0 linux-3.0/include/asm-generic/tlb.h -cb744d9533bcc70e632988d69fcaa5a9 linux-3.0/include/asm-generic/timex.h -06b640949fb85a8e44189e8ca5c7b0b8 linux-3.0/include/asm-generic/termios.h -a58fe04356bdaf332b43f737fe3bb21c linux-3.0/include/asm-generic/termios-base.h -e368cc572d9242664a2d38040d677440 linux-3.0/include/asm-generic/termbits.h -ccf6d8a800eac08774e6ba5c5e87a0a9 linux-3.0/include/asm-generic/system.h -baba0f5a0f11b2f999df9899e166a5da linux-3.0/include/asm-generic/syscalls.h -ef3da1d20ec3b5b560b704498124efe2 linux-3.0/include/asm-generic/syscall.h -deb20a55b19df3d8f94daaa296127a18 linux-3.0/include/asm-generic/swab.h -d79885de64925903c44d928da6804889 linux-3.0/include/asm-generic/string.h -4775d85247556d478f3e46c52dfbdaa3 linux-3.0/include/asm-generic/statfs.h -d35336f17afa6cc669e5e9d0be325ed9 linux-3.0/include/asm-generic/stat.h -703161be9b3cfce1449e52b484f5dad9 linux-3.0/include/asm-generic/spinlock.h -a57bf84cc55aca2bfc0dc3cebd760887 linux-3.0/include/asm-generic/sockios.h -1403924e80606bd3864e7d3438765705 linux-3.0/include/asm-generic/socket.h -e40d60b3c7fea2ebda172f5d7cc454aa linux-3.0/include/asm-generic/sizes.h -f6b04889a6e58e5a65cdba71b863b413 linux-3.0/include/asm-generic/signal.h -77fee25faf311654bb2b748d6ad0bc86 linux-3.0/include/asm-generic/signal-defs.h -62d291210d9047655d4d72b5b42af91c linux-3.0/include/asm-generic/siginfo.h -5c29cc544fc7604d15f0f5e5e6dcda22 linux-3.0/include/asm-generic/shmparam.h -dd55895943430ce8612fb992c08c7251 linux-3.0/include/asm-generic/shmbuf.h -d4ce0ae0442186a46cf19a7829cec950 linux-3.0/include/asm-generic/setup.h -5a790f0c8e2c0ddc7b03a7c335c7c403 linux-3.0/include/asm-generic/serial.h -bdab98eba4ea644d6c208a88a44a9fd2 linux-3.0/include/asm-generic/sembuf.h -f59452612d2cb88e196221ca27979a38 linux-3.0/include/asm-generic/segment.h -39f4df90960e57700c7dc818fc398a0b linux-3.0/include/asm-generic/sections.h -859a855c7b46b19a87b3877677686f72 linux-3.0/include/asm-generic/scatterlist.h -9c6cb743bbc41d4fc9ca28950c650e02 linux-3.0/include/asm-generic/rtc.h -63b68337c19b87a4c31b96b21e9ecece linux-3.0/include/asm-generic/resource.h -ca1b8ab8234386dae210c8ff4dbabdc6 linux-3.0/include/asm-generic/ptrace.h -95ddde424ed88c6356dfecaecabff1d9 linux-3.0/include/asm-generic/posix_types.h -4050e3436bf89ce330ca1d60307ef4ea linux-3.0/include/asm-generic/poll.h -79f6cd5c732f6f7ede4e518d0fbf828a linux-3.0/include/asm-generic/pgtable.h -2c99c9f5c90fb05b8f84af9b7bde9699 linux-3.0/include/asm-generic/pgtable-nopud.h -e28437c455bcd0f206db412fc5e25cd0 linux-3.0/include/asm-generic/pgtable-nopmd.h -2abcfdc4cb982209a6becd38865e96d9 linux-3.0/include/asm-generic/pgalloc.h -22640af914214d2e78ec3e175e8a950c linux-3.0/include/asm-generic/percpu.h -cb885a8ae62f890d995fe75ca2c67ba0 linux-3.0/include/asm-generic/pci.h -aad1ee49943b26914c19fccdd5e146d0 linux-3.0/include/asm-generic/pci-dma-compat.h -19ede3cc805cd4a557dca451ae412802 linux-3.0/include/asm-generic/parport.h -d6bae3f4446df6eca8f34f95185ad341 linux-3.0/include/asm-generic/param.h -5859cfeda61f12762995cb43ba07ba0e linux-3.0/include/asm-generic/page.h -67bee628c3f756c78b166e1733cc3c4f linux-3.0/include/asm-generic/mutex.h -c5a757e96bff665256d7d21f49e12436 linux-3.0/include/asm-generic/mutex-xchg.h -b263e7a9e93623434d44445c3495ed14 linux-3.0/include/asm-generic/mutex-null.h -993ef6873c974f9d3623e70b086f4163 linux-3.0/include/asm-generic/mutex-dec.h -28447c54cc63a7cc91cbd2a54577fa54 linux-3.0/include/asm-generic/msgbuf.h -90b85c26708d143f7b4c8357c57b69b7 linux-3.0/include/asm-generic/module.h -de734c92b61aef40b69a4a5268da2a0c linux-3.0/include/asm-generic/mmu_context.h -77092fa5c52abffb872e658a03644735 linux-3.0/include/asm-generic/mmu.h -7e2d3e7c678c5108ce9397b5a26c36cf linux-3.0/include/asm-generic/mman.h -b120ac2d1556d667cc38fc357b34eae3 linux-3.0/include/asm-generic/mman-common.h -fccda7a94a368dfee9d73fc2bf923692 linux-3.0/include/asm-generic/mm_hooks.h -b5d7ab81e4aaabd07a20f620959ff8ab linux-3.0/include/asm-generic/memory_model.h -9b93c54384038a5a8715e8a5b17327bd linux-3.0/include/asm-generic/local64.h -0b82ecb93a8f8419ee20ac9f1c8f6542 linux-3.0/include/asm-generic/local.h -b2133cf2eb2fa1034acc8bdeae464d90 linux-3.0/include/asm-generic/linkage.h -ec7d92c1466b5802ae68910e2fcd29d2 linux-3.0/include/asm-generic/libata-portmap.h -ab627accb643b43204e0ab3260f82d84 linux-3.0/include/asm-generic/kmap_types.h -9d08377f960bdacffac2bd1ec00d5228 linux-3.0/include/asm-generic/kdebug.h -975842b3fce13f695f6f13dd1a8ea798 linux-3.0/include/asm-generic/irqflags.h -fa3164786976619b890ee0b4ff2d5d2a linux-3.0/include/asm-generic/irq_regs.h -b5b4fef422a452780f3b46a3852019d6 linux-3.0/include/asm-generic/irq.h -0b37dfa1e4d72942be81b98e23a64613 linux-3.0/include/asm-generic/ipcbuf.h -1397c5e78142632d24d0c8ecbc00e55e linux-3.0/include/asm-generic/iomap.h -af594a85f3a21a190a0c2e5ab4ca3b1f linux-3.0/include/asm-generic/ioctls.h -c853d186d934f5cee44c7038200c100b linux-3.0/include/asm-generic/ioctl.h -abdada0d0ecada1691fc858b84276ae1 linux-3.0/include/asm-generic/io.h -7fed2d9c2287215c2af4e550cb740cd2 linux-3.0/include/asm-generic/int-ll64.h -3e9d331f14c667f192398dc072e05a15 linux-3.0/include/asm-generic/int-l64.h -1fd8c7b09774dfe8e33e792f39067c54 linux-3.0/include/asm-generic/ide_iops.h -ba8f1d44a827eb43624bde66e6dbc2b4 linux-3.0/include/asm-generic/hw_irq.h -148e126455c528dc9d6c52b6f63ae803 linux-3.0/include/asm-generic/hardirq.h -2b4a92a3af5cf899a89ea6967434b894 linux-3.0/include/asm-generic/gpio.h -388765f460d789656c2cf21b86af4200 linux-3.0/include/asm-generic/getorder.h -715e6140977f589b7ac1369013230480 linux-3.0/include/asm-generic/futex.h -e54b5d2dee9d07ef4c61aad3987aa5ce linux-3.0/include/asm-generic/ftrace.h -47997768ce544082f8e4f313a333f88c linux-3.0/include/asm-generic/fcntl.h -1dc54e1fdefe1a299b69e189db2ccdd2 linux-3.0/include/asm-generic/fb.h -88409b494b29720c23957248749705ba linux-3.0/include/asm-generic/errno.h -9cc3432868819357360dbb25e9f6ba85 linux-3.0/include/asm-generic/errno-base.h -39568134572ee17645163814debca4b7 linux-3.0/include/asm-generic/emergency-restart.h -c7402be54cf2633e5b9a72fc953cb219 linux-3.0/include/asm-generic/dma.h -b1e62f5614b7f9ecd637a465761e2d15 linux-3.0/include/asm-generic/dma-mapping-common.h -a17020f530f19950ef4bb7d8bd91d635 linux-3.0/include/asm-generic/dma-mapping-broken.h -0bf952fb218a262085c4917c317bf35d linux-3.0/include/asm-generic/dma-coherent.h -a7bd0535d792269066f8f941e59218ec linux-3.0/include/asm-generic/div64.h -6de98169bc9ad2ead20fc5b82f0b7ecd linux-3.0/include/asm-generic/device.h -8e6ed8adaf4fb9a6ad950abb4c4c3057 linux-3.0/include/asm-generic/delay.h -0e57ac4b0cade4a134ef82bdf1bc89c1 linux-3.0/include/asm-generic/current.h -a4bfed910acce2ecffd8c788e1958f1a linux-3.0/include/asm-generic/cputime.h -b78134958ae3aab8b8e8f62978f3a69c linux-3.0/include/asm-generic/cmpxchg.h -e847de8c43938b6290b2dcc9ca5b19aa linux-3.0/include/asm-generic/cmpxchg-local.h -a04f1bb6707c8d99c1230bc6853a60d2 linux-3.0/include/asm-generic/checksum.h -6f210a88c5eece856f8ecd8c917101dc linux-3.0/include/asm-generic/cacheflush.h -0d1d38cc1a30d22e52f3dcb4e5468bf5 linux-3.0/include/asm-generic/cache.h -b3b6135440ad7edb76e91d0892d749c0 linux-3.0/include/asm-generic/bugs.h -3e22f833de8b0e095ff66e41a7d26274 linux-3.0/include/asm-generic/bug.h -d3f27cb1dfd0a52c8e04e756de37f271 linux-3.0/include/asm-generic/bitsperlong.h -5542f32bff55d95b6e17863e3d8e6016 linux-3.0/include/asm-generic/bitops/sched.h -d106260831f1a389a5f4299ae1a8916c linux-3.0/include/asm-generic/bitops/non-atomic.h -db2a1cd391d358f7ee5944b17c347a66 linux-3.0/include/asm-generic/bitops/lock.h -b493ca75a4bd4ce72b230652838e5ecc linux-3.0/include/asm-generic/bitops/le.h -81b7852339bc7d1904d1204137763846 linux-3.0/include/asm-generic/bitops/hweight.h -1b6d528a7edd27c17ec002b13358d877 linux-3.0/include/asm-generic/bitops/fls64.h -915aacdeb97145e985afe8fc57ef96f5 linux-3.0/include/asm-generic/bitops/fls.h -f297ae5bb39dc04f39e19244092d0a17 linux-3.0/include/asm-generic/bitops/find.h -9d1ca3be1ebb072e019a33c358e3e9e2 linux-3.0/include/asm-generic/bitops/ffz.h -5bdb234d2453abbc3939eb56cc5754be linux-3.0/include/asm-generic/bitops/ffs.h -6080c561198860c571db24671c6b74ed linux-3.0/include/asm-generic/bitops/ext2-atomic.h -3412002de9a62262d076c9b1de4fe14e linux-3.0/include/asm-generic/bitops/const_hweight.h -a24669a7200cb4d599df8c99eb4eeaed linux-3.0/include/asm-generic/bitops/atomic.h -77c082984691fde346deb71d827b6ea7 linux-3.0/include/asm-generic/bitops/arch_hweight.h -51911e018270f512795db82f9db18b9e linux-3.0/include/asm-generic/bitops/__fls.h -22c997abb4d08182538b60c223e0652a linux-3.0/include/asm-generic/bitops/__ffs.h -8a87385878a044eab19cde53ad81aa89 linux-3.0/include/asm-generic/bitops.h -58e8993ca91252da55f3caa7502c4b38 linux-3.0/include/asm-generic/auxvec.h -d722cc0c5b7b5eeeee7aa7a9cb8388c2 linux-3.0/include/asm-generic/audit_write.h -8d3b8cda82fc7db2d91350dddf06d893 linux-3.0/include/asm-generic/audit_signal.h -253b6cdb9c7a187904cb7ce3e0b2023b linux-3.0/include/asm-generic/audit_read.h -88192f60d722342af45853710c2c5402 linux-3.0/include/asm-generic/audit_dir_write.h -14ffecf6ccd451b578193779446d312d linux-3.0/include/asm-generic/audit_change_attr.h -47656ca3d588fbba4eb467e470dacf2f linux-3.0/include/asm-generic/atomic64.h -e330d60d2d9d0ad4c43ab5a21adbe7eb linux-3.0/include/asm-generic/atomic.h -d71aa90da36ec4aa572e4c819cb9bf0b linux-3.0/include/asm-generic/atomic-long.h -5a743ba3e6f4ac02dbdfb49f7d2c13fe linux-3.0/include/asm-generic/Kbuild.asm -df2fa53a35ea8169718efe54ba309085 linux-3.0/include/asm-generic/Kbuild -39da760fbb4d720f6b0a7c9d7481e226 linux-3.0/include/asm-generic/4level-fixup.h -7f16dc4d8d3fcd184ac9158c2cbedb23 linux-3.0/include/acpi/video.h -cd2a8016fde74cf31128d9871e0d7a1f linux-3.0/include/acpi/reboot.h -25fd194ce0e1d8441dba10f956916f38 linux-3.0/include/acpi/processor.h -1ce6a0e57e098245ee63a155bcd38cf8 linux-3.0/include/acpi/platform/aclinux.h -1c2f87783fa32d1420a36f8b58c4634d linux-3.0/include/acpi/platform/acgcc.h -9df9f85f3bb5777152447c8313d4f2f4 linux-3.0/include/acpi/platform/acenv.h -685c4ddec17e5a02d6f782bdfc75a156 linux-3.0/include/acpi/pdc_intel.h -08257c8b5925a5e41c33d2e6d7f8256f linux-3.0/include/acpi/hed.h -79d8a2d35055c9e9bf53444cf9143f7a linux-3.0/include/acpi/container.h -ca03b0738246be563330ba1a8bd02ee9 linux-3.0/include/acpi/button.h -8d3e238fc6c7f05f92bba94ac2d8d771 linux-3.0/include/acpi/atomicio.h -76bd09fdb59b83bac1621274896264d9 linux-3.0/include/acpi/apei.h -bcfc656e3092f610568c89e3a710bd91 linux-3.0/include/acpi/actypes.h -5caebd16aadda347351e9c1118b14976 linux-3.0/include/acpi/actbl2.h -72c356d117348b9c49ab0b56924cb1d3 linux-3.0/include/acpi/actbl1.h -6e7b1852662108468dc7a6193f3bed4e linux-3.0/include/acpi/actbl.h -b5c226f42e896b82268934a1ba875fba linux-3.0/include/acpi/acrestyp.h -acb9c05b5985161cb60bc37aa71f75ab linux-3.0/include/acpi/acpixf.h -0dca7f910649a3267d36ca6d6ba7b7fc linux-3.0/include/acpi/acpiosxf.h -678da30e773ae19844d58d3d052de086 linux-3.0/include/acpi/acpi_numa.h -699d91e27f3a49bb99a42a147c8f70b6 linux-3.0/include/acpi/acpi_drivers.h -05304ec9ac15da5af20d37da6f8b7583 linux-3.0/include/acpi/acpi_bus.h -488eaa9313da345a475d82a55b123293 linux-3.0/include/acpi/acpi.h -05048df970168b225509df4abd7bea27 linux-3.0/include/acpi/acoutput.h -2468d551724a2f08eecc0f0bf3ad2554 linux-3.0/include/acpi/acnames.h -365bd9a60df799147eb75ac83a5ab926 linux-3.0/include/acpi/acexcep.h -57e12abf6086ea4fabdd3a2a3dc7a745 linux-3.0/include/Kbuild -efe9b2f9619f847c5b5a62af9b32df2f linux-3.0/fs/xfs/xfs_vnodeops.h -b5644601c06f7f320a9f09e89dcb7bd9 linux-3.0/fs/xfs/xfs_vnodeops.c -73553fbcdb072ca977c6435a55e2b185 linux-3.0/fs/xfs/xfs_utils.h -523f627fe908a5b0dfeeb6fac186b70f linux-3.0/fs/xfs/xfs_utils.c -71d0ef96e4912d5db0265d4ce07f1feb linux-3.0/fs/xfs/xfs_types.h -4bb7433c646f7b91648fa083bbbfae0e linux-3.0/fs/xfs/xfs_trans_space.h -487f77bbf56b2ecc7242d0ac0f8b276e linux-3.0/fs/xfs/xfs_trans_priv.h -be6e39a591f2929f8d7465da8610a0ac linux-3.0/fs/xfs/xfs_trans_inode.c -f10100a003afb80816f8949d67263104 linux-3.0/fs/xfs/xfs_trans_extfree.c -5480ebe332586fefd41c6b41c7177a0d linux-3.0/fs/xfs/xfs_trans_buf.c -b09ea2c6fd946b33b4e53fb866e6ae22 linux-3.0/fs/xfs/xfs_trans_ail.c -4ac5fe4072bca159d15c7b839991405b linux-3.0/fs/xfs/xfs_trans.h -07e7c22100b6fd45209f2d6b480a1f25 linux-3.0/fs/xfs/xfs_trans.c -9911206f69e79fbca2f7ca653c08a125 linux-3.0/fs/xfs/xfs_sb.h -e2c645d536ffcc3b07580dcf0bab47f9 linux-3.0/fs/xfs/xfs_rw.h -be88b2a3c8c22b66604d33223f9f31a7 linux-3.0/fs/xfs/xfs_rw.c -3c4a366697b3da326313b31e046790f0 linux-3.0/fs/xfs/xfs_rtalloc.h -49c6951599be86cfd61da65f6da27333 linux-3.0/fs/xfs/xfs_rtalloc.c -ece01ed7d47b7321a28f6c45fd0b40e0 linux-3.0/fs/xfs/xfs_rename.c -4992f6d7154bce7bb86c13a7362ca5a4 linux-3.0/fs/xfs/xfs_quota.h -eb864f3ef5a48a45064986a144d2f347 linux-3.0/fs/xfs/xfs_mru_cache.h -6f5546f1f27df7b8067026651d967fa0 linux-3.0/fs/xfs/xfs_mru_cache.c -4bb6383b58c44679974036e6a040320d linux-3.0/fs/xfs/xfs_mount.h -e9ce09f029e7ba78f25d25ff1655b113 linux-3.0/fs/xfs/xfs_mount.c -8a9fc9f8e71e24d3bc41d680722a7f84 linux-3.0/fs/xfs/xfs_log_recover.h -2edc5c193122214cc416d0c2cc90977c linux-3.0/fs/xfs/xfs_log_recover.c -53001f5ef3f5d5879711e2783a6db1df linux-3.0/fs/xfs/xfs_log_priv.h -6a315da808a7903c1f3e4fac19f04262 linux-3.0/fs/xfs/xfs_log_cil.c -fb275dde8481df7250b90fe5de65bc6b linux-3.0/fs/xfs/xfs_log.h -e812f452d678dee3989519ca10addba3 linux-3.0/fs/xfs/xfs_log.c -9d6b857833ae911cd441b2e30635cb95 linux-3.0/fs/xfs/xfs_itable.h -e4f64fa74f6ad37a0ddc5837ec5c3e78 linux-3.0/fs/xfs/xfs_itable.c -e0d37a25b7aeb99ffbcd081c8e73c350 linux-3.0/fs/xfs/xfs_iomap.h -eca941ed57073cc0cb41b840bf68893a linux-3.0/fs/xfs/xfs_iomap.c -4f45b2fa603023107f4ec711e7b80dd8 linux-3.0/fs/xfs/xfs_inum.h -097b0e0ad7d95611e24ba5f8202e3de7 linux-3.0/fs/xfs/xfs_inode_item.h -751a3fce7a5ff27dce730af41938c6d6 linux-3.0/fs/xfs/xfs_inode_item.c -11d2b4d74174e5294fa77ed201aa4733 linux-3.0/fs/xfs/xfs_inode.h -f0356bfe21ea0d014581fc8122b6cd0e linux-3.0/fs/xfs/xfs_inode.c -67caa02edbf98ab19cbf32c63d8fd9a3 linux-3.0/fs/xfs/xfs_iget.c -bae839fb23c84ba57b985e69f387bac9 linux-3.0/fs/xfs/xfs_ialloc_btree.h -0f84cc1726b43c2054e40273834a46bf linux-3.0/fs/xfs/xfs_ialloc_btree.c -b333727f84d32c0db9ee36a2a96bafa9 linux-3.0/fs/xfs/xfs_ialloc.h -0e5a75fa79231b26946f91991a7e4529 linux-3.0/fs/xfs/xfs_ialloc.c -8737d05ef7e2ff8ab003a6ea9334b838 linux-3.0/fs/xfs/xfs_fsops.h -b72a5031828093385880384929380951 linux-3.0/fs/xfs/xfs_fsops.c -a374311aa6b79282734280faafe2c195 linux-3.0/fs/xfs/xfs_fs.h -72a84b0b092c432bba9c726e9df94b96 linux-3.0/fs/xfs/xfs_filestream.h -498595000d89d13f98e21871ce5146bf linux-3.0/fs/xfs/xfs_filestream.c -3a1d0fbff331d2a7e42f2ce616781988 linux-3.0/fs/xfs/xfs_extfree_item.h -9b43fb42cd7ce2032ee8d3115301251d linux-3.0/fs/xfs/xfs_extfree_item.c -74108f44587b1273e1bbdf77924ca0bd linux-3.0/fs/xfs/xfs_error.h -942a9241e8f4edaab72cde4202d652c1 linux-3.0/fs/xfs/xfs_error.c -dd936c296398ba27473d75b8aff80a61 linux-3.0/fs/xfs/xfs_dir2_sf.h -c84df65f630d797c130a08a5f3709577 linux-3.0/fs/xfs/xfs_dir2_sf.c -eade159366dd845fa130f198351573e4 linux-3.0/fs/xfs/xfs_dir2_node.h -f9539b099ef33b3af559228bfadf50ff linux-3.0/fs/xfs/xfs_dir2_node.c -1f61eab0903d5867e58d6b2f749aed18 linux-3.0/fs/xfs/xfs_dir2_leaf.h -e62b866f13685df45f5157fe48ab9171 linux-3.0/fs/xfs/xfs_dir2_leaf.c -249d57473ae50cfb463a9fd370d32e0c linux-3.0/fs/xfs/xfs_dir2_data.h -81a25e87b00f4da4d0ab1cf928ed4a41 linux-3.0/fs/xfs/xfs_dir2_data.c -3447dc24492c458b46a0157866406b42 linux-3.0/fs/xfs/xfs_dir2_block.h -2b5cb7c44c36b75a252b50eef28949ea linux-3.0/fs/xfs/xfs_dir2_block.c -28f3719b3296e37ce4a7fca657c8803e linux-3.0/fs/xfs/xfs_dir2.h -73ba5cad6b2b69cb726662c08a07f71d linux-3.0/fs/xfs/xfs_dir2.c -363f787a7d07d0ac16743cb7a3215016 linux-3.0/fs/xfs/xfs_dinode.h -bb954225b78e04f66b04e991d5d2087f linux-3.0/fs/xfs/xfs_dfrag.h -dca853369002b91578f5d053623a4d13 linux-3.0/fs/xfs/xfs_dfrag.c -bc50ca9506641ad419ad434aaad6949b linux-3.0/fs/xfs/xfs_da_btree.h -598c45e0d8e7361cead6312092061ef6 linux-3.0/fs/xfs/xfs_da_btree.c -56dfbcdcac0e27df3038db5be5001a0a linux-3.0/fs/xfs/xfs_buf_item.h -a5f62a01583a3f0f20f2f15829f1fefd linux-3.0/fs/xfs/xfs_buf_item.c -aae00a792d945c4dbc8d56dbaaf8afc4 linux-3.0/fs/xfs/xfs_btree_trace.h -34e24f8f629fb6e08afcf6301637a53f linux-3.0/fs/xfs/xfs_btree_trace.c -6fb789a6d23125b119e349016652ea21 linux-3.0/fs/xfs/xfs_btree.h -07d55f4c92a212148c7c24030f15a7a6 linux-3.0/fs/xfs/xfs_btree.c -7c0921ac71276637819363eb003678cd linux-3.0/fs/xfs/xfs_bmap_btree.h -4b36532511998849e97e549d73269052 linux-3.0/fs/xfs/xfs_bmap_btree.c -2bd4370f61d540dbde5c3c0229a3df64 linux-3.0/fs/xfs/xfs_bmap.h -9053e1868e7feb68d6b337fdec1b3a54 linux-3.0/fs/xfs/xfs_bmap.c -52db3db9df2cca3f74eae00392c546d8 linux-3.0/fs/xfs/xfs_bit.h -a514e36611fe49c96e1912d4d610ae73 linux-3.0/fs/xfs/xfs_bit.c -3b4dc81b666aee4f878e5598a8be1de4 linux-3.0/fs/xfs/xfs_attr_sf.h -37b3d134b11173069e6c4d238012cfcc linux-3.0/fs/xfs/xfs_attr_leaf.h -9fb4305d3280ef010a542c0d52f99406 linux-3.0/fs/xfs/xfs_attr_leaf.c -297d3368957983893343cabfa0ef2950 linux-3.0/fs/xfs/xfs_attr.h -64d7e598cdfffa200f32bb26e5699e3e linux-3.0/fs/xfs/xfs_attr.c -e360865ad59ea6aa0e8811b10d60b1da linux-3.0/fs/xfs/xfs_arch.h -33a09c2e0c02e60de62b017592d7636b linux-3.0/fs/xfs/xfs_alloc_btree.h -b9a536b2559efa6507274a988fb6698a linux-3.0/fs/xfs/xfs_alloc_btree.c -f7c3a986d01cdcec96466e52c00cb0ac linux-3.0/fs/xfs/xfs_alloc.h -78156561e96ba5b1afd3ddb3b3c2e91d linux-3.0/fs/xfs/xfs_alloc.c -7524ed21f5301a0bfe80c4ac8279e33c linux-3.0/fs/xfs/xfs_ag.h -59631b4d871ad0f9b12696301f74fda2 linux-3.0/fs/xfs/xfs_acl.h -29c055ba0d2d0cbfcdb4ced8d6297aa1 linux-3.0/fs/xfs/xfs.h -f5bb49886020eced5d0017eb84cce7de linux-3.0/fs/xfs/support/uuid.h -af7f2721f46d07d0ed7492c550f7d7e9 linux-3.0/fs/xfs/support/uuid.c -373d2d4679257d27aa3c31e02ae1cb00 linux-3.0/fs/xfs/quota/xfs_trans_dquot.c -4b45a176e8101144d554fc54f8a537d7 linux-3.0/fs/xfs/quota/xfs_quota_priv.h -2e74f2df02929dc5260fd88a70e8a604 linux-3.0/fs/xfs/quota/xfs_qm_syscalls.c -cdd71ada110693f936e96dcef41fa83a linux-3.0/fs/xfs/quota/xfs_qm_stats.h -9642cc7e869a2021a05450ecd44b0e26 linux-3.0/fs/xfs/quota/xfs_qm_stats.c -87bf7c5c3c3b073343e5d7012c701016 linux-3.0/fs/xfs/quota/xfs_qm_bhv.c -fb0bb5ccb80ede500dbcb47731426141 linux-3.0/fs/xfs/quota/xfs_qm.h -1730970b0a702da0abdcd2a420bf6a2a linux-3.0/fs/xfs/quota/xfs_qm.c -428deaf4d2be87e31afcc4c5c76085fa linux-3.0/fs/xfs/quota/xfs_dquot_item.h -15e511ccbf5e494517c433714baee167 linux-3.0/fs/xfs/quota/xfs_dquot_item.c -59b3b7b13dcec976ac67dec09aae87d9 linux-3.0/fs/xfs/quota/xfs_dquot.h -90ca017124843e4af82239029b842750 linux-3.0/fs/xfs/quota/xfs_dquot.c -47e21ff1f7c7eff1cc982fa8c68b5986 linux-3.0/fs/xfs/linux-2.6/xfs_xattr.c -f23f89a945eb92885d4dee47fb54adab linux-3.0/fs/xfs/linux-2.6/xfs_vnode.h -481515ae13a9923b5b6673d5355fa6bf linux-3.0/fs/xfs/linux-2.6/xfs_trace.h -a350688b8762ad7e16384e9d1e557bd6 linux-3.0/fs/xfs/linux-2.6/xfs_trace.c -d0738767c8d955da282e52a69087594a linux-3.0/fs/xfs/linux-2.6/xfs_sysctl.h -b73cb4d8843ec33ee39d866582c31bf0 linux-3.0/fs/xfs/linux-2.6/xfs_sysctl.c -3e9574d7e9ed00c4ceeb2ddafe80a9e6 linux-3.0/fs/xfs/linux-2.6/xfs_sync.h -4066e57e0dc85db01784670121d8627f linux-3.0/fs/xfs/linux-2.6/xfs_sync.c -3d70f85d0f5d9ebb23032e79ca92a951 linux-3.0/fs/xfs/linux-2.6/xfs_super.h -ef1a4f0c40b6aeef18cf883304498ddd linux-3.0/fs/xfs/linux-2.6/xfs_super.c -74f5141684adfd5212e25e7b7c9adb3d linux-3.0/fs/xfs/linux-2.6/xfs_stats.h -58804f9fa28c3ae88a8d87806fdef051 linux-3.0/fs/xfs/linux-2.6/xfs_stats.c -8c3982bef94e5465d2e925a421d7950b linux-3.0/fs/xfs/linux-2.6/xfs_quotaops.c -8b25810b239688d81bdccd9314f44b34 linux-3.0/fs/xfs/linux-2.6/xfs_message.h -b63c7951e44cf9be5aa4246c318e4a9b linux-3.0/fs/xfs/linux-2.6/xfs_message.c -ad50d9d83f1a8bfa4d6f6118c359407c linux-3.0/fs/xfs/linux-2.6/xfs_linux.h -ba830b1751ce29c9e4c66c2103ed3f9e linux-3.0/fs/xfs/linux-2.6/xfs_iops.h -f9123702372e5fa0574f800fdedfaf11 linux-3.0/fs/xfs/linux-2.6/xfs_iops.c -123de2cc489813edc5737ed8052fd73e linux-3.0/fs/xfs/linux-2.6/xfs_ioctl32.h -b453b5d157b3721a8151b8bfe5dee6e1 linux-3.0/fs/xfs/linux-2.6/xfs_ioctl32.c -9a51250b1e65d5c2fdb8cef1928ab47e linux-3.0/fs/xfs/linux-2.6/xfs_ioctl.h -7e567dea4b9ef6231e03abaa790e49bf linux-3.0/fs/xfs/linux-2.6/xfs_ioctl.c -cae7dd3ef46aba1fd84f7b684035f4bb linux-3.0/fs/xfs/linux-2.6/xfs_globals.c -616b01f29a4b4c17ad8d09d431370d0b linux-3.0/fs/xfs/linux-2.6/xfs_fs_subr.c -7d1db46626f12f0029500ed3160f6da2 linux-3.0/fs/xfs/linux-2.6/xfs_file.c -224fa019c209b2e3b064d5cd8b9fdf0d linux-3.0/fs/xfs/linux-2.6/xfs_export.h -4ac5fc155b5a93857960566c3d2124c2 linux-3.0/fs/xfs/linux-2.6/xfs_export.c -e966863417248a37c947dee364aa98d3 linux-3.0/fs/xfs/linux-2.6/xfs_discard.h -9f7882879fdd33fd329d85cd4060f27e linux-3.0/fs/xfs/linux-2.6/xfs_discard.c -3efaa89531644d65878a7e32d854f31c linux-3.0/fs/xfs/linux-2.6/xfs_buf.h -171718f795b7a5b8ffc9f5bcf23ff3af linux-3.0/fs/xfs/linux-2.6/xfs_buf.c -b7bfd16813a442ae64f601b5c474174f linux-3.0/fs/xfs/linux-2.6/xfs_aops.h -d904f7f79d4d95cd6a63e173d00643ad linux-3.0/fs/xfs/linux-2.6/xfs_aops.c -e39911b38d16e054f404fdd0f4873600 linux-3.0/fs/xfs/linux-2.6/xfs_acl.c -8891a859e98f33c7d05cf0151f8c54ab linux-3.0/fs/xfs/linux-2.6/time.h -6856555a6cfff33925af9e6e703bf109 linux-3.0/fs/xfs/linux-2.6/mrlock.h -271ad7a23c1de809f377625462c97bc6 linux-3.0/fs/xfs/linux-2.6/kmem.h -03657e5615e9b96609db2417a196504a linux-3.0/fs/xfs/linux-2.6/kmem.c -c53137eb0d0c8592d009cd844808c1ca linux-3.0/fs/xfs/Makefile -21b4eb755e8acfeee49ffab330f20fcd linux-3.0/fs/xfs/Kconfig -008620f9ddba347121693124b6f27178 linux-3.0/fs/xattr_acl.c -8da284dabf63936221e5b777e4108a36 linux-3.0/fs/xattr.c -7c472b4de84e5c3cfb81a8aec418eab4 linux-3.0/fs/utimes.c -fef9dfc1cbd6da28463511a11f5b9582 linux-3.0/fs/ufs/util.h -d93eaf0230c1c13389db087d5d595980 linux-3.0/fs/ufs/util.c -2ab998fb9e2ff327dc80fc3144c765db linux-3.0/fs/ufs/ufs_fs.h -e1565093668c53005e511c15b3b071f2 linux-3.0/fs/ufs/ufs.h -804b40707cebd176df52061841a0ff25 linux-3.0/fs/ufs/truncate.c -281d0f2d55b22035c805acab89cfb428 linux-3.0/fs/ufs/symlink.c -2dc180f894e3421426038eddf021154f linux-3.0/fs/ufs/swab.h -4c3aa01cdfaeafd76772b8bb9f4f959d linux-3.0/fs/ufs/super.c -b025e18d2e43eab11e85966bba3a1eee linux-3.0/fs/ufs/namei.c -ff50098334468947cd72a16af1d77c75 linux-3.0/fs/ufs/inode.c -c7274fc550ad2a55aeb436c1e8a988ba linux-3.0/fs/ufs/ialloc.c -11a3129eb6a7bca2e074d5acd446db67 linux-3.0/fs/ufs/file.c -997409d20b0c168743f614ec6f171461 linux-3.0/fs/ufs/dir.c -7e1488912e7c6523e1c010e99a041b33 linux-3.0/fs/ufs/cylinder.c -f8e111321cf955380e035225bfb2b5bb linux-3.0/fs/ufs/balloc.c -3d39bc9cfe5217c197bbb1c790a2dc17 linux-3.0/fs/ufs/Makefile -b23f0b8fac17f656c92d4509dfe86dab linux-3.0/fs/ufs/Kconfig -102f5a04c62e64b4b38b1c4d1e831307 linux-3.0/fs/udf/unicode.c -daf127e2d2f197105e37ae80fb672389 linux-3.0/fs/udf/udftime.c -dee06198c825b801984a2f013b6a3a04 linux-3.0/fs/udf/udfend.h -732e0652dcf5df0dfc0f54a77ad0e065 linux-3.0/fs/udf/udfdecl.h -6f2d3065c79c625db264d99d511c2dda linux-3.0/fs/udf/udf_sb.h -de249fdd24d1f4211abedf50c1ed1fe3 linux-3.0/fs/udf/udf_i.h -4cc5b58f902e3cb5fc62f65ecbe3d761 linux-3.0/fs/udf/truncate.c -51aa6ad6c4529f6814c8d637b8ac68e0 linux-3.0/fs/udf/symlink.c -f0d283b5fddcb75ea23fb51cdfc65ddc linux-3.0/fs/udf/super.c -9da9980fd00997db30edcd4e6c89a59d linux-3.0/fs/udf/partition.c -0d8fa66662acf1bfe820ca629cfd8837 linux-3.0/fs/udf/osta_udf.h -7c86c5a1fa96dca346389ec421528737 linux-3.0/fs/udf/namei.c -5022d7aab09cdf9513910c89e6d6e800 linux-3.0/fs/udf/misc.c -34ba0fd4cfce9c51325802b69a8319fc linux-3.0/fs/udf/lowlevel.c -393e9e5874fc794e6cf30f90ae733296 linux-3.0/fs/udf/inode.c -c895de6fd4b0e2ff96830ee6446af9ed linux-3.0/fs/udf/ialloc.c -7fd3582c757ea8ce80c0df6e17158280 linux-3.0/fs/udf/file.c -bcef1149ccdc1fb0f61b847121ba20ed linux-3.0/fs/udf/ecma_167.h -c43bd990372fc2770e035274a88970bd linux-3.0/fs/udf/directory.c -a7c33f4d3f079843000434a05bcba5ab linux-3.0/fs/udf/dir.c -b7c5890defb8dfc499ca923921ef5799 linux-3.0/fs/udf/balloc.c -ecda14b1eafac64a0bbc946f08030f57 linux-3.0/fs/udf/Makefile -992a56ffd17ddcc3dadd6b3a0647b49c linux-3.0/fs/udf/Kconfig -7458f8435de2e17bc0be333c39dc1c71 linux-3.0/fs/ubifs/xattr.c -f1666d70dc9a07955e514183a6e6e57c linux-3.0/fs/ubifs/ubifs.h -ab0dfdb30fa40363e9d8e49f975e62b9 linux-3.0/fs/ubifs/ubifs-media.h -cbbfd817836c3bf0d582c64a4908624b linux-3.0/fs/ubifs/tnc_misc.c -d936d508c5aec8c61fd092e6b72cb03c linux-3.0/fs/ubifs/tnc_commit.c -1f7f9920f738bb0c02ed758058ab3f6d linux-3.0/fs/ubifs/tnc.c -cd0d68642b5421aad49adcdb1d9ae8cc linux-3.0/fs/ubifs/super.c -b60f43ecd936505444cd5eebe1e35c1d linux-3.0/fs/ubifs/shrinker.c -5f2a278354140d64caa6060965209e01 linux-3.0/fs/ubifs/scan.c -babc1db4ecb1c5eec349e70b296e6b83 linux-3.0/fs/ubifs/sb.c -655ef6d9dd2f263f87f23a15c3f92458 linux-3.0/fs/ubifs/replay.c -cedfe8facdd454cb219ef7e39246ddb5 linux-3.0/fs/ubifs/recovery.c -abd6fbde00004f9b6db6dea6875d9914 linux-3.0/fs/ubifs/orphan.c -350d4d59df08872c1108ef9a5832e4d0 linux-3.0/fs/ubifs/misc.h -2298845f7d9ad902ac2f9705a0f7c921 linux-3.0/fs/ubifs/master.c -a00d4ac7919d4b97b495dc7739196940 linux-3.0/fs/ubifs/lpt_commit.c -a02069541fd71779a5f48c4b8b44b403 linux-3.0/fs/ubifs/lpt.c -3be6ddb0c1e68beca481a44436666e89 linux-3.0/fs/ubifs/lprops.c -21f2ba62fd38247964f9b194a8bde9bb linux-3.0/fs/ubifs/log.c -90b8bd3bbf9ccc1b3859800b4a847d0d linux-3.0/fs/ubifs/key.h -7e765ccfff9576019d981d4f7fefebe4 linux-3.0/fs/ubifs/journal.c -89ee62d29e60bef31b6bf675e21f13b0 linux-3.0/fs/ubifs/ioctl.c -4f6578cc32df79671df243a3f457f275 linux-3.0/fs/ubifs/io.c -5fac1379bbc7637e80e779966effdce5 linux-3.0/fs/ubifs/gc.c -c292e81195489e6d03cb52a5c6edfe2b linux-3.0/fs/ubifs/find.c -b43dfd6df6a7a1172498a17dfaa1f519 linux-3.0/fs/ubifs/file.c -6f864909b425cac5d98491ac74c322fc linux-3.0/fs/ubifs/dir.c -f47a9bd37232b4f9943d8aa1ef775652 linux-3.0/fs/ubifs/debug.h -475e99d077794715061b369e5eb4d8c9 linux-3.0/fs/ubifs/debug.c -2630bb7c3206e42da99f4286b3f523cf linux-3.0/fs/ubifs/compress.c -33310fe1aa80772626b742d99225947d linux-3.0/fs/ubifs/commit.c -846027f404872d2fcc7d5074bf19feec linux-3.0/fs/ubifs/budget.c -6eaa48da9119199a977a13ec1b4c69f9 linux-3.0/fs/ubifs/Makefile -8de50bebadf8cd7581ea99f1a6a8028b linux-3.0/fs/ubifs/Kconfig -42e62f39d893d734c919a50515a5f0ca linux-3.0/fs/timerfd.c -b56827d8c4f37a44852b936a9c6acf12 linux-3.0/fs/sysv/sysv.h -d858c67bc2abc57329b0a1add981bd1c linux-3.0/fs/sysv/symlink.c -8db964098ea0ed5f0aecd740086b9c89 linux-3.0/fs/sysv/super.c -cb485dae7a38ffc920ef40b550b6d56c linux-3.0/fs/sysv/namei.c -7191be3ea21972afadee21f5e94dd835 linux-3.0/fs/sysv/itree.c -75b7cdc0c2053b62ed088b4d91590638 linux-3.0/fs/sysv/inode.c -0453880c1814c6974b76c9b7fdcf7088 linux-3.0/fs/sysv/ialloc.c -ff984e86f37c6d4432205e7bf8290e32 linux-3.0/fs/sysv/file.c -6eb0768b438d2ee807a74a9566f28681 linux-3.0/fs/sysv/dir.c -c5a8ebd1e5a2d8a8f59529c94a4534d1 linux-3.0/fs/sysv/balloc.c -601a0aba52da7f1f2ca08f171d916e6f linux-3.0/fs/sysv/Makefile -484447a57ff050c8237176dc3ae673a1 linux-3.0/fs/sysv/Kconfig -0f91478690a2275a2f00b65f55b6fdc3 linux-3.0/fs/sysfs/sysfs.h -44c944c296cf680ecf380f95705021be linux-3.0/fs/sysfs/symlink.c -02ee486baa33808b598f81e555f76ca4 linux-3.0/fs/sysfs/mount.c -015d96b93fd6d07f83efe0dcfdb119fb linux-3.0/fs/sysfs/inode.c -67cbe216b74c7990b0bf70bf1170bb92 linux-3.0/fs/sysfs/group.c -6cf15ac3d77c94c2e43ff57ed6b2308e linux-3.0/fs/sysfs/file.c -1924cb58eb8b9bd7a553093af85bb2c4 linux-3.0/fs/sysfs/dir.c -8f177276de575e340ceb7a1df0abca40 linux-3.0/fs/sysfs/bin.c -75e09d9cb63b37ddf9e09036cf0033cc linux-3.0/fs/sysfs/Makefile -0a3f03cc78bdae718d498bc8b9bf166c linux-3.0/fs/sysfs/Kconfig -118894beab00eba73519160b55f56b6f linux-3.0/fs/sync.c -ccb5093d66dc0061f489a9323928912c linux-3.0/fs/super.c -c903f8a835830b6a7f546f22381fd925 linux-3.0/fs/statfs.c -f4d3331cdec7788995b87d5d1e79543b linux-3.0/fs/stat.c -bf70ce3e9b40834a43dce6bf934a63a2 linux-3.0/fs/stack.c -2ff5608ef86e86bb050cd5853569c370 linux-3.0/fs/squashfs/zlib_wrapper.c -3664cfbf82ddb6898bf92ca03faaa229 linux-3.0/fs/squashfs/xz_wrapper.c -d0e367cb4ddf82feaab6c35d36787603 linux-3.0/fs/squashfs/xattr_id.c -0e9cc23eba4ea6fb52bd23022107d1e1 linux-3.0/fs/squashfs/xattr.h -0f187cff1b2ceb9e6b41cf6e1b7118ae linux-3.0/fs/squashfs/xattr.c -5c1705dc455761bf53849a0398b94565 linux-3.0/fs/squashfs/symlink.c -0ee54f493d1922da39c3364413dfd1f6 linux-3.0/fs/squashfs/super.c -b140f8bebb1f89acdcea6d876586f9b7 linux-3.0/fs/squashfs/squashfs_fs_sb.h -b2aa741418b0f363731890fbc467ae0e linux-3.0/fs/squashfs/squashfs_fs_i.h -b367fed81e171e41b720b561ee4c6e54 linux-3.0/fs/squashfs/squashfs_fs.h -039a0369d1a6571e7009d53ee36dec99 linux-3.0/fs/squashfs/squashfs.h -fab791c43f0cc49e2023e067f406c59e linux-3.0/fs/squashfs/namei.c -703288263c85b93d253ccdfe3cb5cba8 linux-3.0/fs/squashfs/lzo_wrapper.c -86112bacdd5888611e7fc3a7c789b524 linux-3.0/fs/squashfs/inode.c -f87cc511b0239e81de8b43fc35a9373d linux-3.0/fs/squashfs/id.c -f60e1ee213a3bf720d1d71d109307de8 linux-3.0/fs/squashfs/fragment.c -c91ab13a4a295db57814a21475e0db6d linux-3.0/fs/squashfs/file.c -a09cbefd6d369a5a11e5c900e63049e2 linux-3.0/fs/squashfs/export.c -594fa179e2e98bea036c09239dd54058 linux-3.0/fs/squashfs/dir.c -7ebfc77fb7ff4420e64a4bf0b9ee79ed linux-3.0/fs/squashfs/decompressor.h -91638526480a05ac413b3760b6a9c291 linux-3.0/fs/squashfs/decompressor.c -297deb4544f503ebdc41e979108aa7e8 linux-3.0/fs/squashfs/cache.c -b10444579a53c7ada58d56abd51b1d3f linux-3.0/fs/squashfs/block.c -2fb8379e1cfb3197d9235b3552e6b6ee linux-3.0/fs/squashfs/Makefile -75b38795b15fa9627a021958b531ea62 linux-3.0/fs/squashfs/Kconfig -4b01cc5b57d373f4f943a3bdf2992724 linux-3.0/fs/splice.c -268af0605f24f1399449042b38918d70 linux-3.0/fs/signalfd.c -00c10f996930290809f7203d80dabbd0 linux-3.0/fs/seq_file.c -4e20c05fce3bda58d30ed0ab65270d59 linux-3.0/fs/select.c -f2d878120c83f96156422aeb324e8f00 linux-3.0/fs/romfs/super.c -4b674b49a1b75ff2d023d3ea8c53817a linux-3.0/fs/romfs/storage.c -475019fd0bdd8ac4fcb87b489d71c590 linux-3.0/fs/romfs/mmap-nommu.c -083f968e3b3ae99c1e994fae078b88c1 linux-3.0/fs/romfs/internal.h -18a3b90fb9c7b10b4447437a631fd138 linux-3.0/fs/romfs/Makefile -11de28779df10c4b554f851313a59331 linux-3.0/fs/romfs/Kconfig -cd601de0610117a980a2930722c95cf6 linux-3.0/fs/reiserfs/xattr_user.c -d18a4968016109fb48dab5c764ec80b4 linux-3.0/fs/reiserfs/xattr_trusted.c -020f18dfbea3c7f0c8340ae02217d3bb linux-3.0/fs/reiserfs/xattr_security.c -027688568261e3e30f4c6603397d266a linux-3.0/fs/reiserfs/xattr_acl.c -bdd2b890d462000604dd8f8c4767b9e2 linux-3.0/fs/reiserfs/xattr.c -f0323307dc0c003e47437c9d7b6083e8 linux-3.0/fs/reiserfs/tail_conversion.c -ed164a4d77d9bb184e0250cd8a38caf9 linux-3.0/fs/reiserfs/super.c -0101bb4eb978d537e1e66ca5a5a49f02 linux-3.0/fs/reiserfs/stree.c -11325aba735c499c302f5d16f3e22b0a linux-3.0/fs/reiserfs/resize.c -4160c68cfda7a69680472a9f4b1e8446 linux-3.0/fs/reiserfs/procfs.c -f6d9657aa5ec1d4b142f081adb27da0b linux-3.0/fs/reiserfs/prints.c -55e26373af240e2e206eebf768c922b8 linux-3.0/fs/reiserfs/objectid.c -66dada93c0d31a8492a74377cd966cf3 linux-3.0/fs/reiserfs/namei.c -ccd464d8aab7b1c319a1cbdb48de4803 linux-3.0/fs/reiserfs/lock.c -fcfda75d2d4f3298e1e28013d2520ccb linux-3.0/fs/reiserfs/lbalance.c -2f0013948a44a7b539d3b85ad5a8006b linux-3.0/fs/reiserfs/journal.c -a3344b1190f4a03238420d1f447ed035 linux-3.0/fs/reiserfs/item_ops.c -baf05bf14cb488fe3d831c29e4056bda linux-3.0/fs/reiserfs/ioctl.c -efedbad636eb8113a895eb00c517d43b linux-3.0/fs/reiserfs/inode.c -971d3e9e450767819d350f6a7b351667 linux-3.0/fs/reiserfs/ibalance.c -3260684fd9626f47f608bd1027c57c40 linux-3.0/fs/reiserfs/hashes.c -934a00a8c11e788805d74851b2536384 linux-3.0/fs/reiserfs/fix_node.c -70f6c11535d842dbae95b3ef4c786663 linux-3.0/fs/reiserfs/file.c -7cc62b9cc436d2481e9ec4a085ad2bf1 linux-3.0/fs/reiserfs/do_balan.c -dc10f65c8d79417e2275026a64fa78e8 linux-3.0/fs/reiserfs/dir.c -70ac20eb2b12e1deaab204d870050d08 linux-3.0/fs/reiserfs/bitmap.c -a7586f59292f29f36bb28e48305f0423 linux-3.0/fs/reiserfs/README -518ccb19e782c7975c38b9394cc86bfc linux-3.0/fs/reiserfs/Makefile -e3723bfd1cd07dc80bfc36a5d08fb39b linux-3.0/fs/reiserfs/Kconfig -f6fb3e003a2961f7f919533acc377f17 linux-3.0/fs/readdir.c -bc201ffdeff63c04cb5373ead95b6cf7 linux-3.0/fs/read_write.h -fe2e184fcc04a2a07f907edee6b41753 linux-3.0/fs/read_write.c -b9456d529f831b814f2735b8ff9459ad linux-3.0/fs/ramfs/internal.h -6636bf7ddb8aa3c0b36fa27725bde78f linux-3.0/fs/ramfs/inode.c -e374065734900527a195c56b7f8340b6 linux-3.0/fs/ramfs/file-nommu.c -2023b1c8c37993e3df766090e9045a38 linux-3.0/fs/ramfs/file-mmu.c -951644a5d7e724fdc262e8a0d7e18ea2 linux-3.0/fs/ramfs/Makefile -0fe8e6bf9ad244d0a01fd8f5106da0ea linux-3.0/fs/quota/quotaio_v2.h -8dbae19196ea2bd8c265ea20ca633296 linux-3.0/fs/quota/quotaio_v1.h -352e24bcff31a3af8eac0a0bf23926ec linux-3.0/fs/quota/quota_v2.c -109b7a59334eeed8124fd2b8f79e81b6 linux-3.0/fs/quota/quota_v1.c -c3cb2aafd19b9233e6683a787dc7bcc4 linux-3.0/fs/quota/quota_tree.h -52ec4de89ddfe726b15791488a627457 linux-3.0/fs/quota/quota_tree.c -dfb1b015a8ab1c482049d4410650ef2d linux-3.0/fs/quota/quota.c -1bf2eb15adb925b1956947732fc871b4 linux-3.0/fs/quota/netlink.c -2403bd79f297afb62963ca2f1ecf425d linux-3.0/fs/quota/dquot.c -ccccfdd59da581014618905095652e05 linux-3.0/fs/quota/compat.c -0cf1fd4e4f62c6fbc0d9198e130b349c linux-3.0/fs/quota/Makefile -2ffd58f44ad754b4b84c003549753c56 linux-3.0/fs/quota/Kconfig -465ac82d3eab69fb7986d5511ee60c74 linux-3.0/fs/qnx4/qnx4.h -9dd548f07beebb151fa42490983038e9 linux-3.0/fs/qnx4/namei.c -1cf2789c9740f8e698e8e47c9823e646 linux-3.0/fs/qnx4/inode.c -b80d768725298da5acdd500c017a1a0e linux-3.0/fs/qnx4/dir.c -7a0d62969ed464e6d71eaba7ecc3b011 linux-3.0/fs/qnx4/bitmap.c -f729f0db0dc70a75ebcfa41382c641fa linux-3.0/fs/qnx4/README -be45181a9db6ec505ddbb405a370e516 linux-3.0/fs/qnx4/Makefile -72a556af606118a4eb1199e07d4d5f3c linux-3.0/fs/qnx4/Kconfig -53e7f29a8568e5c705e2bf06d5a7916b linux-3.0/fs/pstore/platform.c -df2b3b0fee86b6947f7201fb43b10eeb linux-3.0/fs/pstore/internal.h -dfe88457b4e8941f9ca3c65d0888d177 linux-3.0/fs/pstore/inode.c -ba0556c027b1d4d375e82b844f95af50 linux-3.0/fs/pstore/Makefile -38f089060047a247f00ec3e3bd8dc999 linux-3.0/fs/pstore/Kconfig -bf00e369d00f23656ec348fdfe9ffa02 linux-3.0/fs/proc/vmcore.c -456279c0a055156f64d5b99d77343c5e linux-3.0/fs/proc/version.c -45aa958f1322bc088ba586370a519758 linux-3.0/fs/proc/uptime.c -843e1f68ae4a74aa4ce728663823e57f linux-3.0/fs/proc/task_nommu.c -b450278f2397a74eeea2d4e2512a1772 linux-3.0/fs/proc/task_mmu.c -89f24f87f97d0d88c3e0959185c30feb linux-3.0/fs/proc/stat.c -1430589e1becbc076b15ccc5e1f13157 linux-3.0/fs/proc/softirqs.c -2a6558be93f8c3826d9f72d73ff3cf18 linux-3.0/fs/proc/root.c -bbcdebba5d56244f705f6c8c3051486e linux-3.0/fs/proc/proc_tty.c -6aca2b58673d29e444f80068daa6e360 linux-3.0/fs/proc/proc_sysctl.c -b7232d9abb67b660f54e2a4ec6aefde3 linux-3.0/fs/proc/proc_net.c -57cbfba0ec6a78ebcf378a906a44740a linux-3.0/fs/proc/proc_devtree.c -b3248fd1c3c55dd6ebc3c69f86fdc59d linux-3.0/fs/proc/page.c -8490ad1fdd7e4e046cebeb367644d273 linux-3.0/fs/proc/nommu.c -591840b53f40f3a235727b5b75943c9f linux-3.0/fs/proc/namespaces.c -a78dce92073912a39e2cee9286f56708 linux-3.0/fs/proc/mmu.c -27f40d3c80672ddb967d21072d678c34 linux-3.0/fs/proc/meminfo.c -d5b8e17d5bd1e630f8976ed88be06daf linux-3.0/fs/proc/loadavg.c -6e4eba97e05485c8a632ad05832b3708 linux-3.0/fs/proc/kmsg.c -544c9a2f03a21d60832b33f86f09c89f linux-3.0/fs/proc/kcore.c -6e050241d2b5564fd25726c06792553c linux-3.0/fs/proc/interrupts.c -693e6a764dc3e5c414a1d73bc1adf89a linux-3.0/fs/proc/internal.h -2740ab786991d076a5b84bd4a5fbd48b linux-3.0/fs/proc/inode.c -bbd2f1465ea49322378835eb13cb2764 linux-3.0/fs/proc/generic.c -68fbf6ba50fc12bfb96e6edcd4b78adc linux-3.0/fs/proc/devices.c -5300f284f98d5d5596413a8afa53d97f linux-3.0/fs/proc/cpuinfo.c -5e58a9fadb9a6d15d2a6187719841f06 linux-3.0/fs/proc/consoles.c -584338c8994115e28a69c9323e6b90a0 linux-3.0/fs/proc/cmdline.c -bde77bba284cca3868ba17f1befb1531 linux-3.0/fs/proc/base.c -53a50b1ea6f251221f0b53169c332759 linux-3.0/fs/proc/array.c -31db1f8c2d506aa613647a91d6585bf7 linux-3.0/fs/proc/Makefile -9f54c0e3067cbcf06503a2f94787b588 linux-3.0/fs/proc/Kconfig -87329dd0dc942bc62452bc57f6bc243f linux-3.0/fs/posix_acl.c -5d0ab21691577adb2caa71be6dd3f245 linux-3.0/fs/pnode.h -cca3c5444ea0464e0da08d5450e7c660 linux-3.0/fs/pnode.c -e6a68876bb9b9cbb47d2a6d46b244a65 linux-3.0/fs/pipe.c -53e680cb4bfa4e4a65043cfc2b5e6909 linux-3.0/fs/partitions/ultrix.h -635bb520866f83c3fc4214e09df07cf3 linux-3.0/fs/partitions/ultrix.c -64feb28f849301d32c04c3c626f22acf linux-3.0/fs/partitions/sysv68.h -68d6e48f449ccb35593a516401816eb2 linux-3.0/fs/partitions/sysv68.c -e24ffd1a24ab0ce11b921112363f7d73 linux-3.0/fs/partitions/sun.h -e612b1e4eb470c0885205dea59d42045 linux-3.0/fs/partitions/sun.c -6c3942cae6aecb1e3c21689237af3c09 linux-3.0/fs/partitions/sgi.h -d487a9e03d098d3e5e7c976bac411a5f linux-3.0/fs/partitions/sgi.c -e9a00fdae20f02eab42b15ae1df1f114 linux-3.0/fs/partitions/osf.h -277bbdfb97371d70345311a268100077 linux-3.0/fs/partitions/osf.c -702ae3e4160ca4383c6957c9456bddff linux-3.0/fs/partitions/msdos.h -617f6c23fc63ae163548b1b7fea87061 linux-3.0/fs/partitions/msdos.c -27e721af1fa5dd63db3f3845c24944c8 linux-3.0/fs/partitions/mac.h -cd4e0c273a26d3e7be1802ba639a92fa linux-3.0/fs/partitions/mac.c -330131a8ef27a88cf5d689f235657589 linux-3.0/fs/partitions/ldm.h -3a91b50f906273b3d47c5c78a24493d7 linux-3.0/fs/partitions/ldm.c -e146b15b4cc624a39cccd016a60a0466 linux-3.0/fs/partitions/karma.h -1d62af8b7e09a0b7d48106a4986943c8 linux-3.0/fs/partitions/karma.c -0b2a91dd544480810b0549970ae4cf99 linux-3.0/fs/partitions/ibm.h -63be2abcec5330448a733658bb2ab2db linux-3.0/fs/partitions/ibm.c -597476a212c89ba7738dc924a97bf21e linux-3.0/fs/partitions/efi.h -629850eb88877598fcd98d407d1c7015 linux-3.0/fs/partitions/efi.c -dee0e00828cad2947941b748e4532361 linux-3.0/fs/partitions/check.h -1c8400280544fb9d42b2ef9b176b0432 linux-3.0/fs/partitions/check.c -2a5520568b96e9b35dc2164beb546d62 linux-3.0/fs/partitions/atari.h -bb62e7c375a0b7eca9cdd24be4ca39d3 linux-3.0/fs/partitions/atari.c -a11387d03ec5da731a115b8ccb7bc54c linux-3.0/fs/partitions/amiga.h -2fa02bcc0da3996ccf832b326ebe2cae linux-3.0/fs/partitions/amiga.c -d80084779dcbf931699d7733b803080e linux-3.0/fs/partitions/acorn.h -268fb23a6df6adcde828608c0e3e1c9d linux-3.0/fs/partitions/acorn.c -bdd40dfb0e55a1c5f40e4ba19f958e04 linux-3.0/fs/partitions/Makefile -3308becd1a05e43c917a15e035afc749 linux-3.0/fs/partitions/Kconfig -3df90dc9c682a00f8344183aa1cf15f9 linux-3.0/fs/openpromfs/inode.c -bd5043a54f3926724fba420cf4787996 linux-3.0/fs/openpromfs/Makefile -609ee76ac1a0a3b800077c5595e6b9c8 linux-3.0/fs/open.c -ec4f39a72bde580fad09cc059505dae1 linux-3.0/fs/omfs/omfs_fs.h -7b3ade33f396db3a008e0663a16e850c linux-3.0/fs/omfs/omfs.h -e9b4bb786c94c92f3a0dcd62a689c888 linux-3.0/fs/omfs/inode.c -0cd7995110d6462fe7cee3b981210b87 linux-3.0/fs/omfs/file.c -58e650e089d89477262522cb5fdbf965 linux-3.0/fs/omfs/dir.c -766e11c020ce253b5ba24b4015bf2659 linux-3.0/fs/omfs/bitmap.c -14cd2818327cdeef380647d8cd0c7d2e linux-3.0/fs/omfs/Makefile -561074f8839e62a78f0d91254280d775 linux-3.0/fs/omfs/Kconfig -4749335d59021559eaa7a9cc0e52f231 linux-3.0/fs/ocfs2/xattr.h -1c914c9c8be45b007e227c8296ff5a50 linux-3.0/fs/ocfs2/xattr.c -5a92a078d9ac74011477c30734edb95b linux-3.0/fs/ocfs2/ver.h -5646536db2e588428491263d37b27cfe linux-3.0/fs/ocfs2/ver.c -178da989275d5520617ed20d19ff3f6e linux-3.0/fs/ocfs2/uptodate.h -80fdd6ea84ff802b999f73a770dab30e linux-3.0/fs/ocfs2/uptodate.c -19a698ba485d67aa237e739d763da58a linux-3.0/fs/ocfs2/sysfile.h -49f7e85b710809e21ce25fa24b6b3941 linux-3.0/fs/ocfs2/sysfile.c -e7a06895578d344dcd1b45f1040702fe linux-3.0/fs/ocfs2/symlink.h -ba47f645cbfd9c385a9ea8cbc5fbc62f linux-3.0/fs/ocfs2/symlink.c -d0d5580ce5229cec99737663a3cf0a6e linux-3.0/fs/ocfs2/super.h -545dc8eef4168a7ee41145252d52342b linux-3.0/fs/ocfs2/super.c -d3c72cede0e9a28a593ae8db220039ab linux-3.0/fs/ocfs2/suballoc.h -c237f78a43b4fc081abe595e68cb06eb linux-3.0/fs/ocfs2/suballoc.c -f95a566fca819ed1e676977b519e356b linux-3.0/fs/ocfs2/stackglue.h -0594ef88d61dc0f90085f4186d657950 linux-3.0/fs/ocfs2/stackglue.c -6da550a4e08933d6c4161e7d4d739cad linux-3.0/fs/ocfs2/stack_user.c -bc2f7c7a0d41009ec84c2c409682009b linux-3.0/fs/ocfs2/stack_o2cb.c -2849f62719677b7bdec3e6f582e84856 linux-3.0/fs/ocfs2/slot_map.h -74f7f9846b622310c9cfffc34e65745c linux-3.0/fs/ocfs2/slot_map.c -cba9135e40d74d193ef4896d40005954 linux-3.0/fs/ocfs2/resize.h -543bfc36bf8e9b1d375c2dd7f5109862 linux-3.0/fs/ocfs2/resize.c -344da0799dacc47c39319a166f967a0c linux-3.0/fs/ocfs2/reservations.h -990e00bbac3f733e5087b5f7c4499c76 linux-3.0/fs/ocfs2/reservations.c -ec1be563d48d6a084d0c9226840db76b linux-3.0/fs/ocfs2/refcounttree.h -3f523153fa651dbc1fc2fb7ccf5d470f linux-3.0/fs/ocfs2/refcounttree.c -8ddef23d7ba2f43db393c223e2d5a646 linux-3.0/fs/ocfs2/quota_local.c -501f144ff2b57e452762b90d22b8d3d3 linux-3.0/fs/ocfs2/quota_global.c -27c9fbe1abbbe18e4cfc6ef26924c0be linux-3.0/fs/ocfs2/quota.h -fb5e77861517cb563ee369fc1579d278 linux-3.0/fs/ocfs2/ocfs2_trace.h -6c73f27db7ecdfdd449517044c3530c5 linux-3.0/fs/ocfs2/ocfs2_lockingver.h -93902d197438a7d1beb4f3d5add4468d linux-3.0/fs/ocfs2/ocfs2_lockid.h -fa4135a62d0755ef8581b46018ecaf41 linux-3.0/fs/ocfs2/ocfs2_ioctl.h -d2502592f4bb47929616f5955594fef8 linux-3.0/fs/ocfs2/ocfs2_fs.h -8d4841284f01bb56b5e9ce20431922e1 linux-3.0/fs/ocfs2/ocfs2.h -fc3dab2d3122ba5325704dc5e5d5e289 linux-3.0/fs/ocfs2/ocfs1_fs_compat.h -bd17414283c2f68597c70971087945b1 linux-3.0/fs/ocfs2/namei.h -0fc4e5ec64e816fde7d812f68c1467e8 linux-3.0/fs/ocfs2/namei.c -ca7b87b62ff5b014455495f7a521e5c0 linux-3.0/fs/ocfs2/move_extents.h -de28cc47ecfb99925568c1e672ffd2b2 linux-3.0/fs/ocfs2/move_extents.c -abe7f393bb2b78e2d830b8e50bf46557 linux-3.0/fs/ocfs2/mmap.h -f0985eca1fc48c45b347024a164a4bf5 linux-3.0/fs/ocfs2/mmap.c -e7aca414998ced9e292858cbe36589fd linux-3.0/fs/ocfs2/locks.h -7a3072d29222bc3076f16ba2a425df72 linux-3.0/fs/ocfs2/locks.c -95f89bec8dd8435e8dc1f9a47f175182 linux-3.0/fs/ocfs2/localalloc.h -a59237dd4f456cd8688d3b5ea9115d1f linux-3.0/fs/ocfs2/localalloc.c -7e3e20eeda8d6b6e174383639268fdc4 linux-3.0/fs/ocfs2/journal.h -9a78e682e6d1367517363a347e31e09e linux-3.0/fs/ocfs2/journal.c -d849fbfbdcd19f5cfc0a7e1721faae71 linux-3.0/fs/ocfs2/ioctl.h -6111fb224f1845258d9c9a8990f6d000 linux-3.0/fs/ocfs2/ioctl.c -2611d6ae960724aa517d2eca43099487 linux-3.0/fs/ocfs2/inode.h -904936ac4b6797a4406b348902ba3884 linux-3.0/fs/ocfs2/inode.c -e8c6e32b4eb6121f23971f02f33e054d linux-3.0/fs/ocfs2/heartbeat.h -6c2f4d444d2b85f5c198d4ab87fdd5a8 linux-3.0/fs/ocfs2/heartbeat.c -073bd53856709a6bf97fda39a6eb98c1 linux-3.0/fs/ocfs2/file.h -6509e7ec5c834935b5e7b562a2ae6ac0 linux-3.0/fs/ocfs2/file.c -ee666c2984583c058db886a4f2e38cdf linux-3.0/fs/ocfs2/extent_map.h -eeb13484eafb5f5a07bd5bd68ad8a0b4 linux-3.0/fs/ocfs2/extent_map.c -f5bbf395f59b33275bd52c7ad0744bb7 linux-3.0/fs/ocfs2/export.h -70f085f1e70bf6be545fa331de677dc2 linux-3.0/fs/ocfs2/export.c -f108be59975252190fc272d83fc29954 linux-3.0/fs/ocfs2/dlmglue.h -a407137140581f716508bc76e46f71f1 linux-3.0/fs/ocfs2/dlmglue.c -174cfcddc99908a2edcba50cf25df19c linux-3.0/fs/ocfs2/dlmfs/userdlm.h -65c5f05f87c1c31601d47a1904313b79 linux-3.0/fs/ocfs2/dlmfs/userdlm.c -984f9b39d0b29bfe89044d15ec029677 linux-3.0/fs/ocfs2/dlmfs/dlmfsver.h -fa1159f04095f8d5ffe1ef0e68bfc827 linux-3.0/fs/ocfs2/dlmfs/dlmfsver.c -4680b79b1cf56871d2bd8410c3f3f948 linux-3.0/fs/ocfs2/dlmfs/dlmfs.c -0e6d1e48e985abad486c8bb391976d6e linux-3.0/fs/ocfs2/dlmfs/Makefile -ae7d00457b48b3e2e85acb57d7590687 linux-3.0/fs/ocfs2/dlm/dlmver.h -b660ea07df321acc829b63af5720f08b linux-3.0/fs/ocfs2/dlm/dlmver.c -2656bee4bd1729026a7749b711d14a00 linux-3.0/fs/ocfs2/dlm/dlmunlock.c -a5c2abeb541e5eadc7a55742401e8a93 linux-3.0/fs/ocfs2/dlm/dlmthread.c -a1df059b67cea190848d30a63a054422 linux-3.0/fs/ocfs2/dlm/dlmrecovery.c -27e22b24887d961dfc9ac5c4106a0c34 linux-3.0/fs/ocfs2/dlm/dlmmaster.c -2fdc97e87707be4bb6bd7f4f3a8d1bda linux-3.0/fs/ocfs2/dlm/dlmlock.c -ef51071da7bf65489803116239314682 linux-3.0/fs/ocfs2/dlm/dlmdomain.h -33898446ce9c7cfae2a922fc2e060136 linux-3.0/fs/ocfs2/dlm/dlmdomain.c -c41cc587cb1e10510b10c3e5e9c0a5cf linux-3.0/fs/ocfs2/dlm/dlmdebug.h -75d5d7df5d2b2f3bafa6fcab24f001d2 linux-3.0/fs/ocfs2/dlm/dlmdebug.c -5df4de00e8639390d8cc986314c76bcc linux-3.0/fs/ocfs2/dlm/dlmconvert.h -a5163cb9f700ab9ddb166dcf79c6fb8c linux-3.0/fs/ocfs2/dlm/dlmconvert.c -c50cbfb537d370c452d9db5e7c33336c linux-3.0/fs/ocfs2/dlm/dlmcommon.h -a798c853e82460ef302408631e3e49b8 linux-3.0/fs/ocfs2/dlm/dlmast.c -19741c787bc33932b6d02dbba8c737b5 linux-3.0/fs/ocfs2/dlm/dlmapi.h -cf07d34319c756835b802ce96be933b3 linux-3.0/fs/ocfs2/dlm/Makefile -95cdd4ed8037dde62b9f3b2ed31df1d3 linux-3.0/fs/ocfs2/dir.h -a2fe4c902ce4835dda9fb2029ecc8a9b linux-3.0/fs/ocfs2/dir.c -3e62fd60b79fd34e0fdea60db2fe42c7 linux-3.0/fs/ocfs2/dcache.h -3f3a9e8211765e82fd94955634577878 linux-3.0/fs/ocfs2/dcache.c -92be9932697174151d93b947e2a56df6 linux-3.0/fs/ocfs2/cluster/ver.h -04af29c535f658ef99c98ae3522db839 linux-3.0/fs/ocfs2/cluster/ver.c -1437b817909a09ad303241af9c218dea linux-3.0/fs/ocfs2/cluster/tcp_internal.h -b805b4be757e3c7bafb9c48de89b61bd linux-3.0/fs/ocfs2/cluster/tcp.h -6073b8d93913ac295b5efeb4448455d0 linux-3.0/fs/ocfs2/cluster/tcp.c -62b85e6644979b89a3e8254d1a8cf30a linux-3.0/fs/ocfs2/cluster/sys.h -fe6b835127ebb259fbbc5a76d5f323b0 linux-3.0/fs/ocfs2/cluster/sys.c -b206c4356d9a47e2ee3a76e04212690a linux-3.0/fs/ocfs2/cluster/quorum.h -41eac4c36cfac3dc61d756e7d2cf135b linux-3.0/fs/ocfs2/cluster/quorum.c -0c9832d5ff34848397bdf235cffacd3f linux-3.0/fs/ocfs2/cluster/ocfs2_nodemanager.h -018ee28f7eff65d9338e079626725fcc linux-3.0/fs/ocfs2/cluster/ocfs2_heartbeat.h -8a32275a93c68f7e8cd04c66d9ef2d4b linux-3.0/fs/ocfs2/cluster/nodemanager.h -f0a3ececced598175fa87192ed18bfad linux-3.0/fs/ocfs2/cluster/nodemanager.c -5276ad864a130c668926a5d78588dcb8 linux-3.0/fs/ocfs2/cluster/netdebug.c -78e94ca9a41fa139b38b2988cc878a09 linux-3.0/fs/ocfs2/cluster/masklog.h -244c31d6756e6b87224c709fee798933 linux-3.0/fs/ocfs2/cluster/masklog.c -7d84514e50f7f2a7c9d2fc805bff7132 linux-3.0/fs/ocfs2/cluster/heartbeat.h -9b31fa4f44c436fd8fcc20a888d0946f linux-3.0/fs/ocfs2/cluster/heartbeat.c -c7a9b821b95f4721826e52e16da4bf63 linux-3.0/fs/ocfs2/cluster/Makefile -6f74d1fd3bac8c8bce469e07d4c216c2 linux-3.0/fs/ocfs2/buffer_head_io.h -08a5aa0c5f9fabbb9ff4e239f42cd60e linux-3.0/fs/ocfs2/buffer_head_io.c -a7e960a7d24e615b216f8e30f6537c31 linux-3.0/fs/ocfs2/blockcheck.h -e46fee0ba4895bfd5b9d3f589410e1c1 linux-3.0/fs/ocfs2/blockcheck.c -b666bb8dc35e7aafa38a2fad7b1beea0 linux-3.0/fs/ocfs2/aops.h -0d52a6032badd710ac36a51b52a60a7c linux-3.0/fs/ocfs2/aops.c -2cc8852e8dfbfc9bb0ed0b2df24d817a linux-3.0/fs/ocfs2/alloc.h -715912a4a506455d3b243e7d80c355de linux-3.0/fs/ocfs2/alloc.c -91108ec8f3f0d551aee9a154e0baa5b2 linux-3.0/fs/ocfs2/acl.h -e25642536c20c08e3981ca49d5a27476 linux-3.0/fs/ocfs2/acl.c -e7a9059f2dff76a988a4eee68dc46ad5 linux-3.0/fs/ocfs2/Makefile -5e5014c1f1cce645c65499788c9b06cc linux-3.0/fs/ocfs2/Kconfig -a11121a7854243d4a378d7715f9dcece linux-3.0/fs/ntfs/volume.h -f7694b97b4354b21ce304d12a9a01a63 linux-3.0/fs/ntfs/usnjrnl.h -ba3682d0edfa595da8c21ca9e80a2b81 linux-3.0/fs/ntfs/usnjrnl.c -dd9883f07829be8124e02030f4bff6d1 linux-3.0/fs/ntfs/upcase.c -c06a652dc5a06e166b0ef491c785fbaa linux-3.0/fs/ntfs/unistr.c -f752aa32f849914fe65284f9f62dd7c4 linux-3.0/fs/ntfs/types.h -cb7e29088cc1c5a884a54d5352a9c719 linux-3.0/fs/ntfs/time.h -0e16eb25f03395d3e3ee22b9222f5942 linux-3.0/fs/ntfs/sysctl.h -f66f528347d1974ed2add13a055c5a14 linux-3.0/fs/ntfs/sysctl.c -e830d0a0533ddf79776e108625471cee linux-3.0/fs/ntfs/super.c -6742f24af8d3ddef0df72a6ff7c6b703 linux-3.0/fs/ntfs/runlist.h -0a1a3933207fe44dfd6660ce32eb17b2 linux-3.0/fs/ntfs/runlist.c -bb28c5875a55bc6e8f5962ae7db5c90a linux-3.0/fs/ntfs/quota.h -3dea716aeb2ba26f65363ffb84ccd9f4 linux-3.0/fs/ntfs/quota.c -e7a4c39ecccba5307a697ebbb4b51de4 linux-3.0/fs/ntfs/ntfs.h -29be41224f52f0743472ff83f3ebe305 linux-3.0/fs/ntfs/namei.c -4468e4075aa93c90e813054824aa3714 linux-3.0/fs/ntfs/mst.c -7a6977ca0f8af67a7b8d9a02b692aa98 linux-3.0/fs/ntfs/mft.h -0e7d133d8d2836863c778b8cb4aa6bd4 linux-3.0/fs/ntfs/mft.c -dbf560e0a3051a9aa5bf3b020a8d2938 linux-3.0/fs/ntfs/malloc.h -fc7c14a6aba35aedb4506c8b1ed0ea32 linux-3.0/fs/ntfs/logfile.h -3abeaf550c6ab056a43e4826ce3b8e48 linux-3.0/fs/ntfs/logfile.c -20ce3e00631ec7d78d735e2be77d867a linux-3.0/fs/ntfs/lcnalloc.h -b4a1cef9e34a1715170fcb12c1b895ed linux-3.0/fs/ntfs/lcnalloc.c -ea8803152b56292f95bc1041cadadda2 linux-3.0/fs/ntfs/layout.h -7eb75181c7738680c4ff71a2cf8c4684 linux-3.0/fs/ntfs/inode.h -86e46c52b5fe9f7277571e4809d25e08 linux-3.0/fs/ntfs/inode.c -1c9249a99cd64042f116d0440c99d7c9 linux-3.0/fs/ntfs/index.h -1d7f98e972c6eb41df6b2bcb6388f067 linux-3.0/fs/ntfs/index.c -3e1a8f8941f95f357f311cda4af66ce7 linux-3.0/fs/ntfs/file.c -fcd9030d630afd267e4afcffa0fedd0b linux-3.0/fs/ntfs/endian.h -26e121f8ba6010fe2e187ba619011213 linux-3.0/fs/ntfs/dir.h -5bfcec87d6647b84b7238a02e67bfbf4 linux-3.0/fs/ntfs/dir.c -0e89b70e182bba7a47984999e4bd6c3b linux-3.0/fs/ntfs/debug.h -5df34543ffe0b714d6d8b3dbda626d03 linux-3.0/fs/ntfs/debug.c -0be375d0fde6492a93ddfea0a70504dc linux-3.0/fs/ntfs/compress.c -200ce65620ec491627d0bb46e000d93a linux-3.0/fs/ntfs/collate.h -7b7ee7a93ba0ea9e50267b565d4db562 linux-3.0/fs/ntfs/collate.c -35b03f68f9be463edc8263a6e2e01743 linux-3.0/fs/ntfs/bitmap.h -950e8a848019c76215c1de90765e890f linux-3.0/fs/ntfs/bitmap.c -84b80ac05d53e92bff373d5b434b3851 linux-3.0/fs/ntfs/attrib.h -5c3a02785523fec56d2226cd41e7b9b1 linux-3.0/fs/ntfs/attrib.c -25f8ce2ceee8e628b24e9e6cf2b8d91f linux-3.0/fs/ntfs/aops.h -0c83deaa70f616a2b3e5d78dcc12f152 linux-3.0/fs/ntfs/aops.c -912cbc4330e2fbc12f6159e68f7f0731 linux-3.0/fs/ntfs/Makefile -9b46f46f3eec34c9baac4a46cbc43f75 linux-3.0/fs/ntfs/Kconfig -6f8f32a17d8ee52f297a8be1f2a77fd2 linux-3.0/fs/notify/vfsmount_mark.c -768605d66e4bb7c393ae6ead3eb93072 linux-3.0/fs/notify/notification.c -716b4b75f4579d4baa5874681fbbc65c linux-3.0/fs/notify/mark.c -16cb0ea4f7ea70badea2b6d2c5346927 linux-3.0/fs/notify/inotify/inotify_user.c -602095f23591e56bd05b3bab42845bd2 linux-3.0/fs/notify/inotify/inotify_fsnotify.c -dbdd7c69c8d46ba43b073021f5c44650 linux-3.0/fs/notify/inotify/inotify.h -888c912f2cbef1202df64d94c0e113e0 linux-3.0/fs/notify/inotify/Makefile -f9b23c190716a3b38d038f19349249e6 linux-3.0/fs/notify/inotify/Kconfig -c66819a220d82a689bb3d3aee680b8f8 linux-3.0/fs/notify/inode_mark.c -ab0e3a7f9cfc8bf9a28f87d0b94242e4 linux-3.0/fs/notify/group.c -48630fbdecaea6ff21533f4c6bb50396 linux-3.0/fs/notify/fsnotify.h -3f92ef60f472c97d7ec8c9cdd544f53e linux-3.0/fs/notify/fsnotify.c -91b79964843947a3f8350d7e6ae7975e linux-3.0/fs/notify/fanotify/fanotify_user.c -510142f7458f17b92c4939bfc8272ed5 linux-3.0/fs/notify/fanotify/fanotify.c -8f3eeb24b5e48f00b86306858c7a503a linux-3.0/fs/notify/fanotify/Makefile -65debc611334a1e62c562e8a5148855a linux-3.0/fs/notify/fanotify/Kconfig -713ec3a4ccd3574791ba4014c7766ce3 linux-3.0/fs/notify/dnotify/dnotify.c -a554272f452e3d5dec3426acf0d0463b linux-3.0/fs/notify/dnotify/Makefile -9b5b61dc7262a47dac18286925deaf5a linux-3.0/fs/notify/dnotify/Kconfig -48de93f457ba31f5a2fbfab5cbd4d3d6 linux-3.0/fs/notify/Makefile -e3d5d66b17a55918b6bfc4655e4680dc linux-3.0/fs/notify/Kconfig -5150ac2475a88c35d269e7d7d18d2c42 linux-3.0/fs/no-block.c -2bfcf648f18772ea44352d0d15d1be40 linux-3.0/fs/nls/nls_utf8.c -8f0b667826c6f98066b375ef6f670940 linux-3.0/fs/nls/nls_koi8-u.c -4859f4c8e0b142204d5b42b0155cb457 linux-3.0/fs/nls/nls_koi8-ru.c -e0b2571a18cfec7a4ea7cf16a4554b1c linux-3.0/fs/nls/nls_koi8-r.c -c8afb08568a43925bc771216975e0c3b linux-3.0/fs/nls/nls_iso8859-9.c -90f48fa90462b4b6a11a808dc3e2d8e0 linux-3.0/fs/nls/nls_iso8859-7.c -fadc55d21dda28e10f5491cbb504bfde linux-3.0/fs/nls/nls_iso8859-6.c -407b946bf8c8d310f201c066ed78c96e linux-3.0/fs/nls/nls_iso8859-5.c -b43085f49efadd64b8eea67e8b003867 linux-3.0/fs/nls/nls_iso8859-4.c -3ef5fae679731c0b48a92542c4747702 linux-3.0/fs/nls/nls_iso8859-3.c -e589fb95a266613b4f3a2d9ddf81bacb linux-3.0/fs/nls/nls_iso8859-2.c -4185cf84413cb6b6facc1dd20944fcf2 linux-3.0/fs/nls/nls_iso8859-15.c -73a934dad8bc33aa271c9bed6cb89e0f linux-3.0/fs/nls/nls_iso8859-14.c -d07b12ca0fdcb3d85e75725c8783eb74 linux-3.0/fs/nls/nls_iso8859-13.c -2f248e1595b0184fb43274986b087384 linux-3.0/fs/nls/nls_iso8859-1.c -05d7d4d0b6d9689ca980a7b1cee69c5c linux-3.0/fs/nls/nls_euc-jp.c -938ef8be197da4c792b9b7f668e8aaba linux-3.0/fs/nls/nls_cp950.c -6f72a2b371108a2946ec1134d59c759f linux-3.0/fs/nls/nls_cp949.c -69f1ed019a7d9ca19a59cca7de0bf56e linux-3.0/fs/nls/nls_cp936.c -3c879603aa32ae3707116b81292524ca linux-3.0/fs/nls/nls_cp932.c -033a384ed78aa169f677935b8bd972d1 linux-3.0/fs/nls/nls_cp874.c -50aef15d469f03ca2db5d11ec3053a6b linux-3.0/fs/nls/nls_cp869.c -2e109af9a97801f2ac811204a84a92dc linux-3.0/fs/nls/nls_cp866.c -9f336c1d0ff32a0261c017765cffc246 linux-3.0/fs/nls/nls_cp865.c -2fbae11b2e3ed2f753f253f335388de7 linux-3.0/fs/nls/nls_cp864.c -5892c8753501ad0573f648357a808844 linux-3.0/fs/nls/nls_cp863.c -a7de514302fb5a27e828dad2bf1e6ae4 linux-3.0/fs/nls/nls_cp862.c -15cfd319128a2d883b8d629e345566b1 linux-3.0/fs/nls/nls_cp861.c -07343e83032093203ce1008cebdb5028 linux-3.0/fs/nls/nls_cp860.c -1e7b665266b7e57f10e03b21ce2e4400 linux-3.0/fs/nls/nls_cp857.c -0d5684f69b1631edda640a1e9759343e linux-3.0/fs/nls/nls_cp855.c -383aa0024fbad59cf7d01aa0fd916727 linux-3.0/fs/nls/nls_cp852.c -5d0356974e09e602920349231b151063 linux-3.0/fs/nls/nls_cp850.c -2f4e429ca27421adcbd668f6bfad41c7 linux-3.0/fs/nls/nls_cp775.c -855a6042263da1b9631f42e0199a31cf linux-3.0/fs/nls/nls_cp737.c -4c4d5983af6fbd28333ffdf957971206 linux-3.0/fs/nls/nls_cp437.c -07b64085b31641255f8048c5b27ef683 linux-3.0/fs/nls/nls_cp1255.c -83a765cfbd6679a2668a430d8ab8b501 linux-3.0/fs/nls/nls_cp1251.c -b55d167ca6c6e028578c17e1f11ff501 linux-3.0/fs/nls/nls_cp1250.c -7e6dc9ff40246dbf42fb3d2952bf1f87 linux-3.0/fs/nls/nls_base.c -7a73570f006468ec227d7446999e0554 linux-3.0/fs/nls/nls_ascii.c -8ab030d3fc7b0481d92bece66f93419d linux-3.0/fs/nls/Makefile -50b5e8cb30872fee14f7013e06280295 linux-3.0/fs/nls/Kconfig -4177e29e8387f832ebcb4059ac509b34 linux-3.0/fs/nilfs2/the_nilfs.h -5a1992848abf60afbb5e98dc35f19a08 linux-3.0/fs/nilfs2/the_nilfs.c -b0f00b6aa0a26a24c7419fccf56acc1a linux-3.0/fs/nilfs2/super.c -91ae4f460ae9b8da050d0177e927347c linux-3.0/fs/nilfs2/sufile.h -e8e4131761bb93203711a3fcf1448b32 linux-3.0/fs/nilfs2/sufile.c -fd5fc21791355075a9b308680a15ca39 linux-3.0/fs/nilfs2/segment.h -8620fb80954e283deca3890abd8c4a79 linux-3.0/fs/nilfs2/segment.c -eb06cdbf4d4acd346e2cd8730350d623 linux-3.0/fs/nilfs2/segbuf.h -3a9ae25577c23a01daedcd46d88b5a6e linux-3.0/fs/nilfs2/segbuf.c -a4d5b83006fda473cdb314d89196b888 linux-3.0/fs/nilfs2/recovery.c -3c6089df72209443339f262539f09b34 linux-3.0/fs/nilfs2/page.h -1341139e531a82798ac6f789a5505bd9 linux-3.0/fs/nilfs2/page.c -d6021fcff17a027885ca41b5c6a6cd62 linux-3.0/fs/nilfs2/nilfs.h -f73ab42151fa531e1f166d94a3d75b3f linux-3.0/fs/nilfs2/namei.c -68a9f8f0d2f512a749e8ceee4bd23d13 linux-3.0/fs/nilfs2/mdt.h -78916f81395317ba8dbfaa0c66c5cd4b linux-3.0/fs/nilfs2/mdt.c -94339af3e558e870465957243afee9bd linux-3.0/fs/nilfs2/ioctl.c -637b074e427a557ecabe53fba9814701 linux-3.0/fs/nilfs2/inode.c -837581fdefc07e0a75e546791754fd7e linux-3.0/fs/nilfs2/ifile.h -7e90d28cb4cc561f65181422a1018b3c linux-3.0/fs/nilfs2/ifile.c -79dabf27b013b78e80b10b579a065e06 linux-3.0/fs/nilfs2/gcinode.c -f43b74c09fe8fec8eba2fe09440c8d81 linux-3.0/fs/nilfs2/file.c -1b1f27e5a22cca5869c2b980bbc89ddd linux-3.0/fs/nilfs2/export.h -35f90a4b2fabbd959d44ff1de4bf0f77 linux-3.0/fs/nilfs2/direct.h -f2636c7fa2a223e4e195e6a98f3b3587 linux-3.0/fs/nilfs2/direct.c -858e8008be770c73df3173ec6ae0561c linux-3.0/fs/nilfs2/dir.c -a1f955bcd4e9839104a2448091872c5d linux-3.0/fs/nilfs2/dat.h -cb722d9bc1cbaa31ade413d4f77497d5 linux-3.0/fs/nilfs2/dat.c -8eab6184b50d4bbf8f4b7438d7fa895b linux-3.0/fs/nilfs2/cpfile.h -278062c49f89cdeebc7b1d0e40b31b71 linux-3.0/fs/nilfs2/cpfile.c -99966f14c886cea523f1a7f75345424d linux-3.0/fs/nilfs2/btree.h -7720657986ebb40371ecb02db2f32703 linux-3.0/fs/nilfs2/btree.c -b1c2a20269a37405ee73fca840a16dbe linux-3.0/fs/nilfs2/btnode.h -74997bd487bf1b634b3aa9712fe2f310 linux-3.0/fs/nilfs2/btnode.c -c78dec674520a7d98e275186ea432ca9 linux-3.0/fs/nilfs2/bmap.h -080a5a3e363109f430dd25b9cce8ec94 linux-3.0/fs/nilfs2/bmap.c -9e0111a834b83e4a713447ae9c95ac8a linux-3.0/fs/nilfs2/alloc.h -7a57170a6310ba03afb063ba8ef0b7a5 linux-3.0/fs/nilfs2/alloc.c -7187374bbae17eb1b1df992b0c5d688d linux-3.0/fs/nilfs2/Makefile -872ad47ef430e6f82760535dd3390ccb linux-3.0/fs/nilfs2/Kconfig -9a473d1fbf42882e0fb55b8ef44760f7 linux-3.0/fs/nfsd/xdr4.h -5911028fe7b0f9733d7f6d152f91c8db linux-3.0/fs/nfsd/xdr3.h -6b38b0fec1c9dce900675a8562ba9062 linux-3.0/fs/nfsd/xdr.h -6375953eb86c7315a9f162a08d5b4324 linux-3.0/fs/nfsd/vfs.h -ccbabdd4ba73e2af1954c56618ff555f linux-3.0/fs/nfsd/vfs.c -8e8c0b1bc8f93c25141d60e866746ddd linux-3.0/fs/nfsd/stats.c -f23494017ad343269070c37fb1f04195 linux-3.0/fs/nfsd/state.h -4d34ecf2c41b85dbaffd1c4203e2f3f5 linux-3.0/fs/nfsd/nfsxdr.c -e9a2cb46dd99cd54f3540a20766dad71 linux-3.0/fs/nfsd/nfssvc.c -fdfce74e28ed1a362c826922fa7ad5e3 linux-3.0/fs/nfsd/nfsproc.c -b84ba87e548d4728a5e6dae1fdd9a0af linux-3.0/fs/nfsd/nfsfh.h -b44b1cd28a3bf1a6ab5d022471a0d802 linux-3.0/fs/nfsd/nfsfh.c -10f0547b8e67362853e0e7122df3fa9c linux-3.0/fs/nfsd/nfsd.h -b49fd262e02b10621c723036b2b1a0ba linux-3.0/fs/nfsd/nfsctl.c -71c444207b2b82ed5fcb5972d6fb3804 linux-3.0/fs/nfsd/nfscache.c -9d427e6acea4052a24750b73fe28190e linux-3.0/fs/nfsd/nfs4xdr.c -0fcbc6e98379a62b185068f2d9f0d144 linux-3.0/fs/nfsd/nfs4state.c -02be8cfc376acea0a54a5005fe093c20 linux-3.0/fs/nfsd/nfs4recover.c -0884db6040614b448b0b945ed5decb7e linux-3.0/fs/nfsd/nfs4proc.c -140380ee2e44bae3b5e47af23e04b386 linux-3.0/fs/nfsd/nfs4idmap.c -8ac5d0616559ffccf9913a6424656a16 linux-3.0/fs/nfsd/nfs4callback.c -b141bd5e5fa8e8478f2af0c8ee980d6e linux-3.0/fs/nfsd/nfs4acl.c -eb4b784f5c204128364ec3c530d6c76c linux-3.0/fs/nfsd/nfs3xdr.c -3fa3d0aa1bd775995f77e0873461ea37 linux-3.0/fs/nfsd/nfs3proc.c -afe5c816fc50c258ddcac3cc0e6613ee linux-3.0/fs/nfsd/nfs3acl.c -ed3799ddfcf43a674b7681b0ce9e13c4 linux-3.0/fs/nfsd/nfs2acl.c -27efdb91439cb68755a15589498cd0ac linux-3.0/fs/nfsd/lockd.c -b08ceb8b0a7678028b83889bcf57d6d3 linux-3.0/fs/nfsd/idmap.h -93d6908edf101c9cb49d179619296b07 linux-3.0/fs/nfsd/export.c -15b4959c717fe09b0f7268d528ddbcf8 linux-3.0/fs/nfsd/cache.h -0790764bbe6a7b20a8f8b20927c2424b linux-3.0/fs/nfsd/auth.h -c3df19ab366722f8a594cd36ecb7d147 linux-3.0/fs/nfsd/auth.c -2473cba6b06415548b92cbc29ad6a76a linux-3.0/fs/nfsd/acl.h -ef9f4ba1f7b7f9aa512e86b22c28a661 linux-3.0/fs/nfsd/Makefile -d74b4fb57644e58a33cbeafee7f7d232 linux-3.0/fs/nfsd/Kconfig -7bb2cc1970ca5f4d1fee37cd7ca9ba0d linux-3.0/fs/nfsctl.c -ae7d6905dd8a7e065d1b61da93e83d2e linux-3.0/fs/nfs_common/nfsacl.c -575e43510dd8f9245899c7e31a1bc81b linux-3.0/fs/nfs_common/Makefile -038346f785e911b4ad72c6d2fed40ec2 linux-3.0/fs/nfs/write.c -9cad0a42c4ba4a924bfccc6c5014d33d linux-3.0/fs/nfs/unlink.c -4c9825482267f8ecd4998c4f03a26d4f linux-3.0/fs/nfs/sysctl.c -189ca9135e99db025899e9c25ffdb875 linux-3.0/fs/nfs/symlink.c -7f35ef5f6aceb0ab99eb65a8fd021bbc linux-3.0/fs/nfs/super.c -a848136cebb0a4d084873fab8d5e4976 linux-3.0/fs/nfs/read.c -0cb20928adfecc6c6745a5e86808a7a6 linux-3.0/fs/nfs/proc.c -5a1a7b8db859a517cdc872c5b1dbc111 linux-3.0/fs/nfs/pnfs_dev.c -39aadf50f427c406a6052f6ed806b495 linux-3.0/fs/nfs/pnfs.h -16f80562ff34cceb599fa69b6606b2f3 linux-3.0/fs/nfs/pnfs.c -7b4c39a47ff87ce0700f4a778fc9e3cc linux-3.0/fs/nfs/pagelist.c -119e27f545c524afe7f9ec1ee298beeb linux-3.0/fs/nfs/objlayout/pnfs_osd_xdr_cli.c -786fe5faf967b53dee289e06b5967f03 linux-3.0/fs/nfs/objlayout/objlayout.h -90de0a3431e159485d830b5d97a26b72 linux-3.0/fs/nfs/objlayout/objlayout.c -7dfa4d48ad75f4f6938eb872885e6761 linux-3.0/fs/nfs/objlayout/objio_osd.c -ac35c463dde06eb38612be375dbfb3ba linux-3.0/fs/nfs/objlayout/Kbuild -f46622be341610db6dad35c3dc8848ee linux-3.0/fs/nfs/nfsroot.c -207b9b70798e84b9098a9d9950dbbed0 linux-3.0/fs/nfs/nfs4xdr.c -ce9e43cd042efb1105297790638e33d4 linux-3.0/fs/nfs/nfs4state.c -6996ae0dfc49c8024bf0ef06d327c009 linux-3.0/fs/nfs/nfs4renewd.c -df248bc79607774963ffccb5d607cff4 linux-3.0/fs/nfs/nfs4proc.c -28ae98cff6a4854406eb33a0a1bfb22e linux-3.0/fs/nfs/nfs4namespace.c -2d410bb6ae2e81ad8368ad9e13a24034 linux-3.0/fs/nfs/nfs4filelayoutdev.c -1f8df2c2bda8450a60efe6ea08edd752 linux-3.0/fs/nfs/nfs4filelayout.h -b282876710939ce74db05728f741ac9d linux-3.0/fs/nfs/nfs4filelayout.c -feb42d7c7c9397ec1a3baaf1f6e2e2fc linux-3.0/fs/nfs/nfs4_fs.h -5d8e77c8f5d197f5d6c8adaaa681b728 linux-3.0/fs/nfs/nfs3xdr.c -5d72e1855701564d8e94bc9f36d861f9 linux-3.0/fs/nfs/nfs3proc.c -8a3bc3833c4d7664b53193c78896a800 linux-3.0/fs/nfs/nfs3acl.c -77dbb302a94f5dea4b64d15830dbcc7e linux-3.0/fs/nfs/nfs2xdr.c -b014942c55f51523fcf52419ceea2960 linux-3.0/fs/nfs/namespace.c -0832c49d1b09656fcc613780ad2c585c linux-3.0/fs/nfs/mount_clnt.c -477fea5ddcedd18c78ccc015c38dd5f4 linux-3.0/fs/nfs/iostat.h -c6267e7b46da6bc242cb063a1785a086 linux-3.0/fs/nfs/internal.h -1da0a0e97fe4597c73b42d6eab1b3875 linux-3.0/fs/nfs/inode.c -00a71962c90d8a122dc3faa60c484bc4 linux-3.0/fs/nfs/idmap.c -abe6340d66839b53f018d328f94cd17b linux-3.0/fs/nfs/getroot.c -b5148843d37881d64a3f03abdce82cef linux-3.0/fs/nfs/fscache.h -99c28eccddca45939ab58f5fb82c9b54 linux-3.0/fs/nfs/fscache.c -2e1b9bd06bd07c131d4cf2ccbb8e91e1 linux-3.0/fs/nfs/fscache-index.c -76525b108c7c80f256771830c284f1ab linux-3.0/fs/nfs/file.c -3f6d7f0d4182a75185a111d135d27496 linux-3.0/fs/nfs/dns_resolve.h -be914577c0fd179d522cf122d6b3ae4f linux-3.0/fs/nfs/dns_resolve.c -85cee6891f4d0c88b4a09644753212dc linux-3.0/fs/nfs/direct.c -6d43665aadf91894454d5c104e4fbdec linux-3.0/fs/nfs/dir.c -a2188e31e762d0a2da3e92181d517f15 linux-3.0/fs/nfs/delegation.h -95ae2ddddac08be3005a86fdf59abbd2 linux-3.0/fs/nfs/delegation.c -db035fa0c88ee09b59530476e724868c linux-3.0/fs/nfs/client.c -53d25a3e7ea1e54c0f7b9551c12a2e4e linux-3.0/fs/nfs/callback_xdr.c -55f68c8030c51f965a6c7e0d30f2abbe linux-3.0/fs/nfs/callback_proc.c -80562275630b1ecee050ea850af795e7 linux-3.0/fs/nfs/callback.h -64f8f8569f2b32d8048850673297663e linux-3.0/fs/nfs/callback.c -440df474f80bbbbdbed10d690a2c4d0a linux-3.0/fs/nfs/cache_lib.h -69d86cf747b7b4e9924af60b2f6553ca linux-3.0/fs/nfs/cache_lib.c -dec6f6131b973b2ce0e2fad1e29078b6 linux-3.0/fs/nfs/Makefile -326ef7a19d7dd38b28a4948b351f31f7 linux-3.0/fs/nfs/Kconfig -ee1a00a2d74ee0a02ca1882d7f2d83ba linux-3.0/fs/ncpfs/symlink.c -52270226492e6be9b7038181a3cca9c3 linux-3.0/fs/ncpfs/sock.c -c487d286ee805d19c2a598b0112b720c linux-3.0/fs/ncpfs/ncpsign_kernel.h -55cef062e31085572aa2858fc059aa8d linux-3.0/fs/ncpfs/ncpsign_kernel.c -329fa2569e02f086e493843e1343bd71 linux-3.0/fs/ncpfs/ncplib_kernel.h -3b62a1f5b8af20841873c901b4076d35 linux-3.0/fs/ncpfs/ncplib_kernel.c -fda9ddcb7b40ae608920635e780fdb6e linux-3.0/fs/ncpfs/ncp_fs_sb.h -64d12b7a0d24015d0773a62cec8e7e6f linux-3.0/fs/ncpfs/ncp_fs_i.h -995b9642a9ce71d6e780f4154b60f39f linux-3.0/fs/ncpfs/ncp_fs.h -05f6949238c355f27cb6b01afa914e3a linux-3.0/fs/ncpfs/mmap.c -9c75c42df219525822c76c80481c391a linux-3.0/fs/ncpfs/ioctl.c -b9d9f14996b6c573ceb8ee4aecc7c29c linux-3.0/fs/ncpfs/inode.c -cd57cc83284cce9beb49d1f9f168296f linux-3.0/fs/ncpfs/getopt.h -39fca916acd2adcfbeb4d75d15b14a56 linux-3.0/fs/ncpfs/getopt.c -12a3b200bb914879b4ec5227bb401394 linux-3.0/fs/ncpfs/file.c -4466d5ea6956e77f07cae8643fd720c0 linux-3.0/fs/ncpfs/dir.c -c9121ba334847e7ebdb0770a2cf43cbd linux-3.0/fs/ncpfs/Makefile -57387261ad6a792190c93739ee4af42b linux-3.0/fs/ncpfs/Kconfig -05e730d4703c396e21637c8839830fb7 linux-3.0/fs/namespace.c -8052792c55735f0892f09d3d44f93ec6 linux-3.0/fs/namei.c -679de4d97552e4797266e8aa7a951dcb linux-3.0/fs/mpage.c -a3e72916dc56e6d87c322936fe122364 linux-3.0/fs/minix/namei.c -acfe9fd1f1389cbeda2d5ed5eca1cc06 linux-3.0/fs/minix/minix.h -7b48dab90a90ee85d63321ffe98911d1 linux-3.0/fs/minix/itree_v2.c -7f635e12057e903c2a29b68eaa2c0208 linux-3.0/fs/minix/itree_v1.c -a083aaf5373a0598a80135d5801da1a7 linux-3.0/fs/minix/itree_common.c -6cb0d3898f71b29780e220bf1579a5e4 linux-3.0/fs/minix/inode.c -d9b545e76717e01db13f0b8ed5388cdc linux-3.0/fs/minix/file.c -3ebbf7781550ed7fe808151e274c8881 linux-3.0/fs/minix/dir.c -ef596d0ac2f8e26581227254d0eba467 linux-3.0/fs/minix/bitmap.c -fcb52b90f9585d94e7fa3fdc186f1d62 linux-3.0/fs/minix/Makefile -552818a1826903ac5f0726596c7736b9 linux-3.0/fs/minix/Kconfig -40df630d9226fea881bf7315997bfedc linux-3.0/fs/mbcache.c -cac22842e240cef200fded6fc5ea9017 linux-3.0/fs/logfs/super.c -b6c96a9773c31492df412e272d7baee8 linux-3.0/fs/logfs/segment.c -2dca67f146ef208ef29e8036ec4a2936 linux-3.0/fs/logfs/readwrite.c -4b296968c23fadd23bbb19822e4d9cc7 linux-3.0/fs/logfs/logfs_abi.h -e39a622a273d89088d2c91b856e86022 linux-3.0/fs/logfs/logfs.h -81f47c3a432f1ab3359a1c9403ad157e linux-3.0/fs/logfs/journal.c -4e17312564688b69fd3373eae2fbce59 linux-3.0/fs/logfs/inode.c -dce6a6c73761bb15e280c689868e3333 linux-3.0/fs/logfs/gc.c -44e1215d704e25ea53c3197a77d7e977 linux-3.0/fs/logfs/file.c -438faa8131d76677cca930cd6a5f5742 linux-3.0/fs/logfs/dir.c -a7ed8a78949c65d8fe41c6bedf5a858d linux-3.0/fs/logfs/dev_mtd.c -5e1d29d078c1cca6c79e6b06a5176048 linux-3.0/fs/logfs/dev_bdev.c -0e773f860f72863a840ab8d450206142 linux-3.0/fs/logfs/compr.c -5bfb8a1e43f0c6e08664bbdd39ab15fd linux-3.0/fs/logfs/Makefile -b7683f1d57f6bb4af2e6c2fe75ce0988 linux-3.0/fs/logfs/Kconfig -1c0ef6a1636fc3da36c157fa4889684c linux-3.0/fs/locks.c -8f7cb8f10b383e78ea4076d2cd315ef7 linux-3.0/fs/lockd/xdr4.c -ad178f6a0cf5daea4e0b249af098fc2d linux-3.0/fs/lockd/xdr.c -5a2541ae67f5181b7e7a1e80c57fcd68 linux-3.0/fs/lockd/svcsubs.c -094b8eabd40cc4f16176e29220c3caa0 linux-3.0/fs/lockd/svcshare.c -431c2f341f6b2f5da47a3ae6f5b85065 linux-3.0/fs/lockd/svcproc.c -c7bd3b751f0de4c5b4ac108c0fb724bc linux-3.0/fs/lockd/svclock.c -c736ddb3d5344945fec7e96237c9987b linux-3.0/fs/lockd/svc4proc.c -7b1c2b5d3e9d3ac0b968001c46a38b82 linux-3.0/fs/lockd/svc.c -58d77e44095a761b61af236e5c2cf99a linux-3.0/fs/lockd/mon.c -cfffbb461d5e258b1f6852f22c92af25 linux-3.0/fs/lockd/host.c -15e79d0ffde45145d6e45abf131ff727 linux-3.0/fs/lockd/grace.c -d6ac832691b7075b67605d3cea887876 linux-3.0/fs/lockd/clntxdr.c -9c9056b86cf580a7aaf96eb4a80561aa linux-3.0/fs/lockd/clntproc.c -f1c1485aea3d97c6fdf5335279516326 linux-3.0/fs/lockd/clntlock.c -9c5120e38654db9d646989073d227cee linux-3.0/fs/lockd/clnt4xdr.c -a57928711b1c2bff9a78a309d0cee326 linux-3.0/fs/lockd/Makefile -556ffac3050274d4b746e0ea4a9698f2 linux-3.0/fs/libfs.c -f024740db69acaa6c0691ff4ba949675 linux-3.0/fs/jfs/xattr.c -529f5b00dff70e28a3c9a69263d9d8db linux-3.0/fs/jfs/symlink.c -63da0b220b66983ac326beefeda22feb linux-3.0/fs/jfs/super.c -d75b715b750fe97b3db538ca2b9e4126 linux-3.0/fs/jfs/resize.c -a33533f3cab01005b76404af54a5e129 linux-3.0/fs/jfs/namei.c -0bd3e8ec3039b9de60a36f9312aacc64 linux-3.0/fs/jfs/jfs_xtree.h -4c5575c4be9470acfa2d51e22e5d234c linux-3.0/fs/jfs/jfs_xtree.c -ed2a0ee1f7b139e8e02083be17bf6720 linux-3.0/fs/jfs/jfs_xattr.h -8545247ad21dfb759961a8bba57807b6 linux-3.0/fs/jfs/jfs_uniupr.c -c9cf4e1d136e4a2737251b34adbc17f6 linux-3.0/fs/jfs/jfs_unicode.h -2950a8700313aeff67273f951b8cccbe linux-3.0/fs/jfs/jfs_unicode.c -2b512a5221e2fbf4d3faf9d0339dc7f7 linux-3.0/fs/jfs/jfs_umount.c -b6459a6f432b78d52518ae8b881b1278 linux-3.0/fs/jfs/jfs_types.h -1f3ed07a66ad337fd45718f727b96eb9 linux-3.0/fs/jfs/jfs_txnmgr.h -20adf00dd2a228cedc1e2491c0a48d90 linux-3.0/fs/jfs/jfs_txnmgr.c -6f6652c65d56aa62a532971031203f5b linux-3.0/fs/jfs/jfs_superblock.h -f05ab8319de99b2e06bf4c27da76cce4 linux-3.0/fs/jfs/jfs_mount.c -28a10e373cdf587cc16748ea3b1a70c5 linux-3.0/fs/jfs/jfs_metapage.h -5c2fdf17f86ce932dfbe498f3219236e linux-3.0/fs/jfs/jfs_metapage.c -c2295ec9808db401f9e92c37aa5283a6 linux-3.0/fs/jfs/jfs_logmgr.h -5d9ce864c566ceba1d2a682ad40cf9fc linux-3.0/fs/jfs/jfs_logmgr.c -a936154366cc99ee9af5710966ad4cb9 linux-3.0/fs/jfs/jfs_lock.h -2aa4d56ab1a3ece50d6ca9219dbf5beb linux-3.0/fs/jfs/jfs_inode.h -568e8e1977a3f2f3f9e03e25bd3af6b0 linux-3.0/fs/jfs/jfs_inode.c -85e59a93279a46699dd35b3eb47bb393 linux-3.0/fs/jfs/jfs_incore.h -2d8b5e9fb398b28da8bb0d9641b21b98 linux-3.0/fs/jfs/jfs_imap.h -c58b1d96ebeb5f0b8cccf469ec03a402 linux-3.0/fs/jfs/jfs_imap.c -3811c491517355f75a656cbf2de81dcc linux-3.0/fs/jfs/jfs_filsys.h -8bcded1ca1ffeb3a2f2af666a4fbeaac linux-3.0/fs/jfs/jfs_extent.h -ebb0414186a1e852a6424c72dde1cfba linux-3.0/fs/jfs/jfs_extent.c -7b5bea2eec3529422af05662cfc73fe5 linux-3.0/fs/jfs/jfs_dtree.h -f8e9f1651965d696d86537f4e6a569f8 linux-3.0/fs/jfs/jfs_dtree.c -d8ec68a1d4195b5a47ddd96afbcd0f77 linux-3.0/fs/jfs/jfs_dmap.h -579d4a6e3d8153d972b97a3142a9ccfd linux-3.0/fs/jfs/jfs_dmap.c -27e68fafd9ec69df0c55a748f2a1ea5d linux-3.0/fs/jfs/jfs_dinode.h -17fd89a19c226a61c765e23077675646 linux-3.0/fs/jfs/jfs_debug.h -4e8044389c873e62f8892e657707523d linux-3.0/fs/jfs/jfs_debug.c -f1cc42ee0d92e991f1a371ad5cb68ce9 linux-3.0/fs/jfs/jfs_btree.h -6ed1b3598745f87fd67bc9b5d9cf77df linux-3.0/fs/jfs/jfs_acl.h -47bd66b3123cccb47299e5d570620d02 linux-3.0/fs/jfs/ioctl.c -3a341af859294df2e90690aa0f810460 linux-3.0/fs/jfs/inode.c -4fb97dc959f7c2826d57250c1b5e86dc linux-3.0/fs/jfs/file.c -338756f542187d34d67a4d02eff6c2b1 linux-3.0/fs/jfs/endian24.h -0d8064d148899a11770a51edf1ddf4b0 linux-3.0/fs/jfs/acl.c -aaf127a6e8ffcbd478419179dd54cdae linux-3.0/fs/jfs/Makefile -eef00187b3b4610c811a9245316da1be linux-3.0/fs/jfs/Kconfig -986a00ca61a5aedf2282892918eb7a41 linux-3.0/fs/jffs2/xattr_user.c -7de16aeb0ef1035fed893a315df97068 linux-3.0/fs/jffs2/xattr_trusted.c -0784466d24f5e3cc8dfd424fe468429a linux-3.0/fs/jffs2/xattr.h -b7cfa444e9aa1dbcfcf5c5d03aa304ed linux-3.0/fs/jffs2/xattr.c -59ac9abdd6d301226c1f37b01d00b332 linux-3.0/fs/jffs2/writev.c -8f5a7949668b5c08412006d9857af00b linux-3.0/fs/jffs2/write.c -e1fced62454ccee6bcda9496d156afc7 linux-3.0/fs/jffs2/wbuf.c -a449e035eedd950504cbddbcb8655f64 linux-3.0/fs/jffs2/symlink.c -51679e958693f6793e55a82766a7283e linux-3.0/fs/jffs2/super.c -94b3cc0d52db2c4b04afe203befcb3cd linux-3.0/fs/jffs2/summary.h -a9f3327e1050da50080467fa608df248 linux-3.0/fs/jffs2/summary.c -86bfa4ff90cb1a0634383312bd931876 linux-3.0/fs/jffs2/security.c -362ef649fdaf82af513c1c402f8b07b4 linux-3.0/fs/jffs2/scan.c -c56b35b0a23a8a42027756736f9426dd linux-3.0/fs/jffs2/readinode.c -d1c1068ae5dab03366646c11ac594b3e linux-3.0/fs/jffs2/read.c -eeff3d3d4886bcf1dba1940e15d1ee24 linux-3.0/fs/jffs2/os-linux.h -62f539e18b8ab66e4478134fe4c4e9eb linux-3.0/fs/jffs2/nodemgmt.c -a387f6093dc7df024b3813c27ddd2987 linux-3.0/fs/jffs2/nodelist.h -1e194dfd04187fe311bddb308b8ef8d3 linux-3.0/fs/jffs2/nodelist.c -05a4ab99809afdfeabff68e36fec0e2d linux-3.0/fs/jffs2/malloc.c -eb3e852883c56b0c7242b32674426783 linux-3.0/fs/jffs2/jffs2_fs_sb.h -e2f6bbb5e6aee8d48ad529ad2153961e linux-3.0/fs/jffs2/jffs2_fs_i.h -49fc2a798206cd63f0cf060919bb48d9 linux-3.0/fs/jffs2/ioctl.c -39161033f929780544c81a71d8eee7fb linux-3.0/fs/jffs2/gc.c -f544e627ee9aba5fca55abd8953bd9b1 linux-3.0/fs/jffs2/fs.c -a507f6d5ba8f6df2fec87499266f381f linux-3.0/fs/jffs2/file.c -3917a3279dc39c28c5a708b3d5b0462f linux-3.0/fs/jffs2/erase.c -20cf09942c4fedad0054dcd4c38ebe85 linux-3.0/fs/jffs2/dir.c -d9d122a83d58a669b4bf96c3bca5b7df linux-3.0/fs/jffs2/debug.h -13111535ba2329642ba628f335e996d7 linux-3.0/fs/jffs2/debug.c -c798d112b8b61f640a8f6e01a8f2e704 linux-3.0/fs/jffs2/compr_zlib.c -78ab7107c39d3b7d501b3eb0186c3607 linux-3.0/fs/jffs2/compr_rubin.c -135ca50dfae93d27db5bd1a3a3630ee9 linux-3.0/fs/jffs2/compr_rtime.c -3ca3e3b4ff079dbb8fee6bbcb14fefa7 linux-3.0/fs/jffs2/compr_lzo.c -68795d5948b9ae3c7dcb23551684d066 linux-3.0/fs/jffs2/compr.h -de75bb719fd842f12f9f3c2a1b917be6 linux-3.0/fs/jffs2/compr.c -aaf7386b14a3937b104f399ac90d0846 linux-3.0/fs/jffs2/build.c -4e276c553af38ff0a73a7a7b674168bf linux-3.0/fs/jffs2/background.c -4b5fb3dbd40d32075ab3053860254a8a linux-3.0/fs/jffs2/acl.h -489aad9e2bf82db3fc2fbd0294526bed linux-3.0/fs/jffs2/acl.c -593cd7365c3b926e684049c48e8cf557 linux-3.0/fs/jffs2/TODO -0c9ce8dd62ab0f90ab2a8967aa99fa7b linux-3.0/fs/jffs2/README.Locking -ca61e924436e887324892985dbef9e05 linux-3.0/fs/jffs2/Makefile -fcd40f6cb09221b0782c1d09ba266911 linux-3.0/fs/jffs2/LICENCE -a9cdf6ccd3b3c68c6a5174673c8c2e03 linux-3.0/fs/jffs2/Kconfig -aeb233a4b2fc90793f7b349382ba7d3a linux-3.0/fs/jbd2/transaction.c -c89b5bc4133e669352a4a75cd18f8255 linux-3.0/fs/jbd2/revoke.c -6a0ef9d844122b07275a5b80462ebcd8 linux-3.0/fs/jbd2/recovery.c -e9b0c5b0a0f7c00117a4795184937522 linux-3.0/fs/jbd2/journal.c -81bf910db55ef7b5fcf323f12929aff6 linux-3.0/fs/jbd2/commit.c -27d8ad3b8b67434cc20a6d40dd800a71 linux-3.0/fs/jbd2/checkpoint.c -29d6cd035a8c82df9eaec4e2e292eea3 linux-3.0/fs/jbd2/Makefile -ec6495c2d76b221d510dce21c23bcc58 linux-3.0/fs/jbd2/Kconfig -baf1f219a93c43e6d0bc05d60c419276 linux-3.0/fs/jbd/transaction.c -0e29a1206f4fcb5a94a4c43961cabbd5 linux-3.0/fs/jbd/revoke.c -0599feb0da3e57af1224b261be1e232f linux-3.0/fs/jbd/recovery.c -10b6b4cef3c26c492124ea416f1ac951 linux-3.0/fs/jbd/journal.c -c952726f536dd90de67bb6958c898ab3 linux-3.0/fs/jbd/commit.c -96f71cd8a6250202cab8b107a077aa22 linux-3.0/fs/jbd/checkpoint.c -e7a3b591d36d352db3ecca24b8fae2ac linux-3.0/fs/jbd/Makefile -570fe4b098b3969d6476a1ca3825d1ca linux-3.0/fs/jbd/Kconfig -bab11c228576d636716032d47eec7281 linux-3.0/fs/isofs/zisofs.h -a6d2d2c8d6dd62efa754ef6f47a923d6 linux-3.0/fs/isofs/util.c -574bbd0524c34a929dfb621170afd7eb linux-3.0/fs/isofs/rock.h -a12c3293e7e1aee982feb4dfc276bbd8 linux-3.0/fs/isofs/rock.c -98a1368b060e0a3988375b0c508993dd linux-3.0/fs/isofs/namei.c -7b196c7c11044c75ec5acd59b04902db linux-3.0/fs/isofs/joliet.c -169feb29b1fb4938e2ec3dfae318bda2 linux-3.0/fs/isofs/isofs.h -60a94acd428352c2cb682ec8755df7e1 linux-3.0/fs/isofs/inode.c -68290bb382b95b76b5212ee1d80aa7c8 linux-3.0/fs/isofs/export.c -d9c4c153a2a57a4133d86b0c2aec95d4 linux-3.0/fs/isofs/dir.c -3614c123ffb71c971040eb18257e8fa8 linux-3.0/fs/isofs/compress.c -d2e72fcf939074e61563de852c880a29 linux-3.0/fs/isofs/Makefile -9ed73d1b587d4a849cb8fb7d163b4784 linux-3.0/fs/isofs/Kconfig -4f0f896cfdc94d2ec820b2f00ab7b00a linux-3.0/fs/ioprio.c -582266c9b80f43a9aabe317768c48ced linux-3.0/fs/ioctl.c -b74ae81c88b39b10c38da87577f0df83 linux-3.0/fs/internal.h -64749eb018e322acac2cb7b123ab2755 linux-3.0/fs/inode.c -c93015954cf1a14a6335c996d25cb6a9 linux-3.0/fs/hugetlbfs/inode.c -96e39787824129b083ef31659d6fd9db linux-3.0/fs/hugetlbfs/Makefile -8cc1634ee32a611c82ce13b0234f3daa linux-3.0/fs/hppfs/hppfs.c -6c27d91cf553d9cf35be2d4c1b16dd0b linux-3.0/fs/hppfs/Makefile -5a2236d732eb0f546c9d430d27eed12c linux-3.0/fs/hpfs/super.c -71518a3eef2d27273b1ed68993a9a147 linux-3.0/fs/hpfs/namei.c -f90e271850cd61948a0407235e24fa0a linux-3.0/fs/hpfs/name.c -5637b033e17e5664a4152430c443b849 linux-3.0/fs/hpfs/map.c -9634bbbb9136d242f43c6f7b1c123caa linux-3.0/fs/hpfs/inode.c -4923134cec701c49923b5f760a7fbd82 linux-3.0/fs/hpfs/hpfs_fn.h -9a0a9d6aa2b461ef6ab2c0e299768b55 linux-3.0/fs/hpfs/hpfs.h -e2d93e5d4af83253769e25e5a8b2c723 linux-3.0/fs/hpfs/file.c -b0ff8597dd53673d00bc44a996788d0c linux-3.0/fs/hpfs/ea.c -6ef2a48cca9ebc3e430599c20a5e62a1 linux-3.0/fs/hpfs/dnode.c -564070bd0a45f1d5022c835375593653 linux-3.0/fs/hpfs/dir.c -b3193a594ccb430f431a233ec6ac12b6 linux-3.0/fs/hpfs/dentry.c -ef04fe231fc288d38e3c5c5e0d713058 linux-3.0/fs/hpfs/buffer.c -03359287c4da9e34d76ee8de671e6365 linux-3.0/fs/hpfs/anode.c -8bf7543229ffe645a69b1a82b603a201 linux-3.0/fs/hpfs/alloc.c -8253cdfd864de49c97f97548cb503332 linux-3.0/fs/hpfs/Makefile -ed40ba5031ecc8546f0a0b00d64adc4f linux-3.0/fs/hpfs/Kconfig -5143b2c1a022b6fe01d9059dd0b40059 linux-3.0/fs/hostfs/hostfs_user.c -e25c28facc86742d7e923654cdc553a5 linux-3.0/fs/hostfs/hostfs_kern.c -4adf97738b81e5d2d6daed4e2a22a2c7 linux-3.0/fs/hostfs/hostfs.h -d4bc1f5dc1349c185d644d6509a4eda7 linux-3.0/fs/hostfs/Makefile -f88a5fa17043ef76a2f13eba676b8936 linux-3.0/fs/hfsplus/wrapper.c -d673500b1e00648666e5876b24bc4e70 linux-3.0/fs/hfsplus/unicode.c -a9ae0aa2bff52e83e2e531be0c5a15f1 linux-3.0/fs/hfsplus/tables.c -5a8847386da6376dbc874e68d88cce8b linux-3.0/fs/hfsplus/super.c -a632d980374702e2e236306d2aaaf938 linux-3.0/fs/hfsplus/part_tbl.c -ae2b98d1de7a8e1cf00395a5aa0ec3a1 linux-3.0/fs/hfsplus/options.c -1d73a20bd79e5e57adff4507068de037 linux-3.0/fs/hfsplus/ioctl.c -6e2850f10d173c25330d48b2afff39dd linux-3.0/fs/hfsplus/inode.c -1671ac1c219c318a1c3c20d6ee63253f linux-3.0/fs/hfsplus/hfsplus_raw.h -8bc833e487cefd1e7ff2254431c7d00d linux-3.0/fs/hfsplus/hfsplus_fs.h -fa53b9e7a6943fd6dec734ce5e6ef9dc linux-3.0/fs/hfsplus/extents.c -d9eec406d09137981ede87df5ac5ece3 linux-3.0/fs/hfsplus/dir.c -e59c4918f0655fcf88e190b0e41a06af linux-3.0/fs/hfsplus/catalog.c -c853ee30e71c58eee66e714c57177c86 linux-3.0/fs/hfsplus/btree.c -6aac2c645152249e04ab53c372a9e4ab linux-3.0/fs/hfsplus/brec.c -97c1a9ecdce97f473cb95e506d216a4b linux-3.0/fs/hfsplus/bnode.c -abb38c235d3e25d0c2782f751ea4330d linux-3.0/fs/hfsplus/bitmap.c -e1716df0bac6ac7ff8b112ec868d7c52 linux-3.0/fs/hfsplus/bfind.c -2f22b42acfce1e51480923071113165b linux-3.0/fs/hfsplus/Makefile -95f378a6023af2f3e2c43ff4ab110831 linux-3.0/fs/hfsplus/Kconfig -d99625c6d75f7f40b5daafa7d26b6918 linux-3.0/fs/hfs/trans.c -df780def4a7270842c2547bf38b38a6b linux-3.0/fs/hfs/sysdep.c -603a4299d4e348e3fff84c73df017725 linux-3.0/fs/hfs/super.c -d14a7a2656b3879273ebd0d085a3fddb linux-3.0/fs/hfs/string.c -1df7a6e0f65bfafcdc15b05213135e58 linux-3.0/fs/hfs/part_tbl.c -af952c6e958aebc654e5eb6a20ac01d0 linux-3.0/fs/hfs/mdb.c -ef0e576cc777ad6653746d577eeb2dcc linux-3.0/fs/hfs/inode.c -8af1801845ba7481d542bf9cfc25ce29 linux-3.0/fs/hfs/hfs_fs.h -326048de312733feb97f247369a21e56 linux-3.0/fs/hfs/hfs.h -7dd6e16e82685794dc72546f3b5f1f73 linux-3.0/fs/hfs/extent.c -381fdbb762b527e372fcedf92c7e29ed linux-3.0/fs/hfs/dir.c -872d4b126091095942b21b5a40f38476 linux-3.0/fs/hfs/catalog.c -b697387dd4d9afa7071569159aabe54a linux-3.0/fs/hfs/btree.h -375c77174be10cfed6de7317efe420fb linux-3.0/fs/hfs/btree.c -9552be8e8ee451fd151dc9d99797b043 linux-3.0/fs/hfs/brec.c -bce1655f80c789626b1c646cad5bea4e linux-3.0/fs/hfs/bnode.c -c2d69fd65d333001147521679b589025 linux-3.0/fs/hfs/bitmap.c -d985704c16b4fc6fb51ae41133f7edba linux-3.0/fs/hfs/bfind.c -1a65e1f57f6cc31cd3ce66092490cc24 linux-3.0/fs/hfs/attr.c -fca4f1efa6e01b4e8842899db656f90d linux-3.0/fs/hfs/Makefile -fbd745b15ccc95efdcc4a183fc569cf2 linux-3.0/fs/hfs/Kconfig -930e3d4f9ab877108e843350ec12053d linux-3.0/fs/gfs2/xattr.h -f13b951d54e82cb5e4803d6615965370 linux-3.0/fs/gfs2/xattr.c -efa8acea27ac7bf9d093e0cbfb61ce2c linux-3.0/fs/gfs2/util.h -bee1d8c72aab49baaa0245a0f969d1e0 linux-3.0/fs/gfs2/util.c -3c4881e0622ad47f999ce5d9743440aa linux-3.0/fs/gfs2/trans.h -1a23b4857d701b4eb4349a1b7f906580 linux-3.0/fs/gfs2/trans.c -51f43af2292e38030ea1097169a0c515 linux-3.0/fs/gfs2/trace_gfs2.h -89b30ed8a919e7b0bd77e62a498041f9 linux-3.0/fs/gfs2/sys.h -57c56b90eb450346b9066912305673ae linux-3.0/fs/gfs2/sys.c -fc847bd81c10f11c55b02b527e978f35 linux-3.0/fs/gfs2/super.h -6b4387182b3af618b6de908a0ce79e35 linux-3.0/fs/gfs2/super.c -4dbaa3e86eb67ae0fae1fab22ddc64ce linux-3.0/fs/gfs2/rgrp.h -72aae737fa8583587579b496fc849e8a linux-3.0/fs/gfs2/rgrp.c -0e60eac8fc079c3536c6e320398e07c0 linux-3.0/fs/gfs2/recovery.h -0003df71693fe9a11d8f31371873165d linux-3.0/fs/gfs2/recovery.c -9992752417fb39ce3f3251cd231216bd linux-3.0/fs/gfs2/quota.h -5ba9720ffd1a36d2c5bb4730e34f5954 linux-3.0/fs/gfs2/quota.c -9b03f1ab7519f6011b06a916a7b1e986 linux-3.0/fs/gfs2/ops_fstype.c -dd7d264dd7b387614ba20b9a112f3739 linux-3.0/fs/gfs2/meta_io.h -a351729bf1412ed2b71146c48831262f linux-3.0/fs/gfs2/meta_io.c -558a0435298dc0ba15c858a40e25601a linux-3.0/fs/gfs2/main.c -f2d40a6df50874187bec6b94201c1c09 linux-3.0/fs/gfs2/lops.h -d793cb8215a5cce20d2d301fcfba9a67 linux-3.0/fs/gfs2/lops.c -3178d5058c6d54803fd2b106a6a41bda linux-3.0/fs/gfs2/log.h -0c2d6fa4ec4050f5f7dd5733c8937615 linux-3.0/fs/gfs2/log.c -ef57c2e533b9260e3acb927ab9546ac1 linux-3.0/fs/gfs2/lock_dlm.c -780c1b62873d2536651a294ebc211f30 linux-3.0/fs/gfs2/inode.h -46dfd901d1c1452b42596e0f1ddca308 linux-3.0/fs/gfs2/inode.c -84a7a09a5bfddb1b49887d0fbde1e728 linux-3.0/fs/gfs2/incore.h -d1aa131c7204d2ad5fa143ef3ad83de1 linux-3.0/fs/gfs2/glops.h -80ee860039e03215d1e7fe86f80b4b6b linux-3.0/fs/gfs2/glops.c -ebfc8b5071c05276e330bb734caf168c linux-3.0/fs/gfs2/glock.h -a5c07682c56af7144ed8937eb374c022 linux-3.0/fs/gfs2/glock.c -2ff5a3f47d4d54caf46dd416216061e6 linux-3.0/fs/gfs2/gfs2.h -6e145940c16326cdf3fdd27204a46d66 linux-3.0/fs/gfs2/file.c -1b04be3e3fe123aa0f423cb21b3cc952 linux-3.0/fs/gfs2/export.c -0ba95bc7b21334de676602536786e782 linux-3.0/fs/gfs2/dir.h -8f5922ab330060c2d137d6c033ae6b71 linux-3.0/fs/gfs2/dir.c -a0cdce8df793dc988ceefe9893e05da9 linux-3.0/fs/gfs2/dentry.c -2474eee29f082ff0371fb16d8bd29be9 linux-3.0/fs/gfs2/bmap.h -b8aa6b30821fa67136db32315416c686 linux-3.0/fs/gfs2/bmap.c -a594090acee5b2f63d49427271f7288f linux-3.0/fs/gfs2/aops.c -867f99707dfdfbeb6340f5be9aabc5f4 linux-3.0/fs/gfs2/acl.h -f6fe507fce5028b5235aab2ccb3fe7bb linux-3.0/fs/gfs2/acl.c -6207de457d892c526c4fd4cc0692b7a2 linux-3.0/fs/gfs2/Makefile -8b8c9072ac9725aaca6747d7d7f8be50 linux-3.0/fs/gfs2/Kconfig -3072a5f19a8999e028b5d26a25ac2df1 linux-3.0/fs/generic_acl.c -94cf79c09e5b9243a25f89f4215d9858 linux-3.0/fs/fuse/inode.c -cd2355156b8c1a67adfdc59a69bff332 linux-3.0/fs/fuse/fuse_i.h -73e4b09f9a526c4d367d71eada2c57c0 linux-3.0/fs/fuse/file.c -63a07766c268b0e8ae58ce77a3094c1d linux-3.0/fs/fuse/dir.c -615256870ac7bd2f3963929bbdfb2960 linux-3.0/fs/fuse/dev.c -4a80d601b71e31ea6b0cb0070349cab1 linux-3.0/fs/fuse/cuse.c -cf80471c2928a052bc50f10127f5bf5a linux-3.0/fs/fuse/control.c -2341e4b22c6731c8d3d4727a41e68666 linux-3.0/fs/fuse/Makefile -e8c3402c9e172b9f54ca080e2f09bb6c linux-3.0/fs/fuse/Kconfig -04142c495e63cc1ddb0d31d9a01a38c0 linux-3.0/fs/fscache/stats.c -094ca7e4fb7db024121b2e6e9eefc393 linux-3.0/fs/fscache/proc.c -c5cf0dc5edbc75704b305e1e11ad8fbc linux-3.0/fs/fscache/page.c -df15bd80bcd6972d0185185335644f7b linux-3.0/fs/fscache/operation.c -38a5ea95399e453107b9067318b9519e linux-3.0/fs/fscache/object.c -f6be7a8a7baf248252cbfa5dc13d247b linux-3.0/fs/fscache/object-list.c -d7b110ade2aacd1f0ab9982c5c0c1426 linux-3.0/fs/fscache/netfs.c -81587e2c73654804bb416d9db7a7656f linux-3.0/fs/fscache/main.c -e3525e9b5a6f48a4cf8393e2aeb960cc linux-3.0/fs/fscache/internal.h -1cdba1636502ccf50d71c2811218bf1d linux-3.0/fs/fscache/histogram.c -9b5d71d03e6b38b8fa30531e46cdf59b linux-3.0/fs/fscache/fsdef.c -45c8c51d2d996040880d1bcfa0be7c08 linux-3.0/fs/fscache/cookie.c -d647a14034de9b6862c4d24c918101b2 linux-3.0/fs/fscache/cache.c -766a9880e37030c774fe49b129d20e40 linux-3.0/fs/fscache/Makefile -9024556c2bf037a5836f0363d375237b linux-3.0/fs/fscache/Kconfig -e6b84dd4a22f92e411c594747f0f44fa linux-3.0/fs/fs_struct.c -febd8b6ec1d1a10c60625ea0acc520c6 linux-3.0/fs/fs-writeback.c -7c004416a3b74ad662c2c1e76cfa2ad7 linux-3.0/fs/freevxfs/vxfs_super.c -4c578b521a45a1be552670be18ef1e4d linux-3.0/fs/freevxfs/vxfs_subr.c -f113022fd8dac6ae3883794a75eed01e linux-3.0/fs/freevxfs/vxfs_olt.h -ec1870e2e440670e04da5c0609d47868 linux-3.0/fs/freevxfs/vxfs_olt.c -961b2525fc3d6f84caa03c7127dca9e4 linux-3.0/fs/freevxfs/vxfs_lookup.c -8ca2204877cdf96330f5207c16e0bee5 linux-3.0/fs/freevxfs/vxfs_inode.h -2b59e925a89d13a629b02111ba0a4bf8 linux-3.0/fs/freevxfs/vxfs_inode.c -f156d050f25762ba75686371373024f6 linux-3.0/fs/freevxfs/vxfs_immed.c -3d85e5cdaf9dddc61191ca4b363971cf linux-3.0/fs/freevxfs/vxfs_fshead.h -8374000108c1df1a7d06425690e42878 linux-3.0/fs/freevxfs/vxfs_fshead.c -327416665653a29d642d1a20b5a77ff1 linux-3.0/fs/freevxfs/vxfs_extern.h -2f4abd117a5e73724bad7727a1b4bc43 linux-3.0/fs/freevxfs/vxfs_dir.h -60836c7a2192d4b945609e5e197c55d6 linux-3.0/fs/freevxfs/vxfs_bmap.c -cb1440912a00b5800c6b4749fabf4e6c linux-3.0/fs/freevxfs/vxfs.h -78b617d06af0c8277fd28213357a6273 linux-3.0/fs/freevxfs/Makefile -6ec5c88b997ab6dac72c00652249e7aa linux-3.0/fs/freevxfs/Kconfig -f47d4469b077b65c8d2fa9a38432c580 linux-3.0/fs/filesystems.c -60324cf58ee10af639910deb03d34c61 linux-3.0/fs/file_table.c -51598a4085ed0042985a1f38a351da7b linux-3.0/fs/file.c -e5941fb1061775fb4c1240aaa4c30c73 linux-3.0/fs/fifo.c -7a51d63ab110f614906bed458be09f64 linux-3.0/fs/fhandle.c -eb5a39318f70872474e887be561dc479 linux-3.0/fs/fcntl.c -628d19f6cc808775590e95eddea3a03e linux-3.0/fs/fat/namei_vfat.c -a7d24ecc88efbdf9d50561040d18b5f0 linux-3.0/fs/fat/namei_msdos.c -5954353323ecbf83d3f3f3254f0409e6 linux-3.0/fs/fat/misc.c -c089d07184fb887057c30ecaf837630a linux-3.0/fs/fat/inode.c -f3c3f8eb33d3ec008e12e23636e48044 linux-3.0/fs/fat/file.c -c512f9680b553fb912cc88935efad137 linux-3.0/fs/fat/fatent.c -725b40c5f28bdf10afbfa61b8b062d2b linux-3.0/fs/fat/fat.h -2852075c5fa4c4fc943f505d6254a7eb linux-3.0/fs/fat/dir.c -ebc07dcc0886e21de518cfc6fa53ed1d linux-3.0/fs/fat/cache.c -ca2533343b8820e2e30efa4073c943a4 linux-3.0/fs/fat/Makefile -672959fdc97c7544211309b54d460f47 linux-3.0/fs/fat/Kconfig -881545b0cf4511c7641c40540d296c93 linux-3.0/fs/ext4/xattr_user.c -9645955f0580a93921ef86b4089ac802 linux-3.0/fs/ext4/xattr_trusted.c -17a7b15964ee92631f8ae875bf9f73b4 linux-3.0/fs/ext4/xattr_security.c -137fcb4e6f269db99ec68dff56df745b linux-3.0/fs/ext4/xattr.h -eaaf915656a7693371a0548a2f65c9ed linux-3.0/fs/ext4/xattr.c -86f9c56fa13aa406a94207790cba4130 linux-3.0/fs/ext4/symlink.c -5ec8a94e82e1f34c43fce9b1da07697d linux-3.0/fs/ext4/super.c -ac53eb6aa35a623783609fcbf1d25152 linux-3.0/fs/ext4/resize.c -2d1e099ce7735607646fb5991b41ec34 linux-3.0/fs/ext4/page-io.c -9150afba85a93031a33adaf4295ae946 linux-3.0/fs/ext4/namei.c -212218b2b3c11172defeae583a196d8a linux-3.0/fs/ext4/move_extent.c -734d843cc62acd4d4cd024ebcc76ca14 linux-3.0/fs/ext4/mmp.c -c8b18b52df883ef5051cba0b7c646621 linux-3.0/fs/ext4/migrate.c -110652ff8644cf6106e04a9f77e45d70 linux-3.0/fs/ext4/mballoc.h -11549747c5566af434dde28b94c6c701 linux-3.0/fs/ext4/mballoc.c -748002eaca93e163cafed3cd58e66f8b linux-3.0/fs/ext4/ioctl.c -3fb3295a12be8871fc76379864b7b82b linux-3.0/fs/ext4/inode.c -3951942719101812e2e3e871bb5734cc linux-3.0/fs/ext4/ialloc.c -1df8e5cb527194ccdbd745d9fcac6e39 linux-3.0/fs/ext4/hash.c -3c8c1a135db0aa11312dbe76c88672dc linux-3.0/fs/ext4/fsync.c -bc98448a10b7931e7ec6ab408a22034c linux-3.0/fs/ext4/file.c -c720f9a2075500ee231a501874b57800 linux-3.0/fs/ext4/extents.c -982ce56829e5ed6e92acf024b20c6806 linux-3.0/fs/ext4/ext4_jbd2.h -0e6d66f3991bbe0e6d1e2e02fa739d92 linux-3.0/fs/ext4/ext4_jbd2.c -52f6307cf7725002facccf7efd65a133 linux-3.0/fs/ext4/ext4_extents.h -04a6512ca66d71cc212df2d139e11605 linux-3.0/fs/ext4/ext4.h -040f4dfc05c6601240bf91c344b93cde linux-3.0/fs/ext4/dir.c -aa90bf4fb1806ccedb12a1e8a3313fc0 linux-3.0/fs/ext4/block_validity.c -f0680624e0d5fd8acc8f95621b69982e linux-3.0/fs/ext4/bitmap.c -0110dbd61de9b314199ccf92aef1a006 linux-3.0/fs/ext4/balloc.c -58d81f1538eeb28ded27aecd5b8bc93a linux-3.0/fs/ext4/acl.h -75212335945fed238d370ee1055e43e6 linux-3.0/fs/ext4/acl.c -64c0b5048972721cbe8dd2afba81b7e6 linux-3.0/fs/ext4/Makefile -9281cb53a49719ae814938f4c46d5e57 linux-3.0/fs/ext4/Kconfig -796502834b9facc72a7cb16c36782a77 linux-3.0/fs/ext3/xattr_user.c -20014bccbc7283fe14db904e465dc382 linux-3.0/fs/ext3/xattr_trusted.c -b34d0729df165ae5ee24761401c4b8a3 linux-3.0/fs/ext3/xattr_security.c -e3e9ed1f7f355f5da9ceb9fdb9b5ba78 linux-3.0/fs/ext3/xattr.h -a558bdba7453bd5d3922c1827e0c53c2 linux-3.0/fs/ext3/xattr.c -d15ba5f35c37710c5448d0cd12772260 linux-3.0/fs/ext3/symlink.c -956af502572a96b472e7dd1f21c169c7 linux-3.0/fs/ext3/super.c -da8e5f95bebd3d425605a50d530fd722 linux-3.0/fs/ext3/resize.c -ef0dfe19e4a8393a9d592890b97de044 linux-3.0/fs/ext3/namei.h -211d682cd5ebe1ba4e3a538dd908777d linux-3.0/fs/ext3/namei.c -e44890454e21bdf1aec107ac34d755b2 linux-3.0/fs/ext3/ioctl.c -cb7555fcbb524ee0f8adb82428911190 linux-3.0/fs/ext3/inode.c -c40ac8213c106732951c9f410ad61b9f linux-3.0/fs/ext3/ialloc.c -41921c7841e0856112290fb3da500046 linux-3.0/fs/ext3/hash.c -95cfb4d3b69202613749d49452f8d3ae linux-3.0/fs/ext3/fsync.c -30cf95eb41fb4b68f0358813c2cbff92 linux-3.0/fs/ext3/file.c -205cf9ea046ab430913c3e1ead292574 linux-3.0/fs/ext3/ext3_jbd.c -dedfed59e0d36ac82e1cf956d1eb6d37 linux-3.0/fs/ext3/dir.c -12ca34017fbd0564bc170acde67d78ae linux-3.0/fs/ext3/bitmap.c -86a20cd400681d77d83cbeb507610b88 linux-3.0/fs/ext3/balloc.c -1779a118e3a54cf64d34ff723aecfc8c linux-3.0/fs/ext3/acl.h -37be911821f3e3ee3ac142b8f5926ce4 linux-3.0/fs/ext3/acl.c -3ab66fbc518662bc8f2f914f1a4ae60a linux-3.0/fs/ext3/Makefile -63df5158553ce7fb68c66b5eef63c617 linux-3.0/fs/ext3/Kconfig -133b24bbcb4f745685e3c2ce5ffbd109 linux-3.0/fs/ext2/xip.h -54ed09a29aac8dbe59871663d662c41a linux-3.0/fs/ext2/xip.c -e039f62d86c7c67deed64e6b7b96c5d0 linux-3.0/fs/ext2/xattr_user.c -71b51065f5a0b0e1e1d3e665eda83c8b linux-3.0/fs/ext2/xattr_trusted.c -a92679b3fe173abcf9f5c97359bf105b linux-3.0/fs/ext2/xattr_security.c -9bb8368fc6071372cce49a7807ddfda8 linux-3.0/fs/ext2/xattr.h -1daab47e030be4facca82cd11fc2c72f linux-3.0/fs/ext2/xattr.c -f58cedb4a7585e74bfcafd1bda9e681d linux-3.0/fs/ext2/symlink.c -08bcc00549dce328af4d59b342d99d4c linux-3.0/fs/ext2/super.c -b5bc8bb1a1544d44a5c69c8d13ef1c1e linux-3.0/fs/ext2/namei.c -f6a6497508580d6dd7cf5022dabe850c linux-3.0/fs/ext2/ioctl.c -09a4d46786bba7bff431c5fc8244f8cc linux-3.0/fs/ext2/inode.c -b09503055fd4d60ae95148043e44b4c3 linux-3.0/fs/ext2/ialloc.c -96b8f8a17fb2d74b0239fd0e58c1e35b linux-3.0/fs/ext2/file.c -7538acd82fcc33f875b588d121d897fe linux-3.0/fs/ext2/ext2.h -4cf960d152557573544b1cce39a88711 linux-3.0/fs/ext2/dir.c -d6bdba1273e451d409f4e0b1a2e0d9be linux-3.0/fs/ext2/balloc.c -e5e5e358b6bb9e04fe5b22873ab5235a linux-3.0/fs/ext2/acl.h -1a00f63d39bb607f5f4300231e37afcf linux-3.0/fs/ext2/acl.c -54110bab9b550d9287db1e6816c91345 linux-3.0/fs/ext2/Makefile -5032c46f43a4beda6f217fa44313f503 linux-3.0/fs/ext2/Kconfig -7e375db14fe9c8401fd1ef19fc29fa02 linux-3.0/fs/exportfs/expfs.c -0fa2b75a15af9be8aaf1d72abb4d2e6e linux-3.0/fs/exportfs/Makefile -e6520cb362a2e7daa8ae6625495d5e56 linux-3.0/fs/exofs/symlink.c -7f546c84c2d0c0c4f2282b2895ed9b17 linux-3.0/fs/exofs/super.c -16e2afea72a6ea75456c31bfba8c8c3a linux-3.0/fs/exofs/pnfs.h -07063b9dd685c5f62baa0263c6ff2e95 linux-3.0/fs/exofs/namei.c -43504ebb03b1a35e636d7980805d5315 linux-3.0/fs/exofs/ios.c -6e91c1d582dc1249ba91f6fa0546c38c linux-3.0/fs/exofs/inode.c -b98bbe22418b78f2a7556df4c1dc7574 linux-3.0/fs/exofs/file.c -80d5f8cfdd42e22640154b46dcdd537e linux-3.0/fs/exofs/exofs.h -a2ee241da4a49c0a7cbd22da40eed8f6 linux-3.0/fs/exofs/dir.c -6bdc42724305ea4da8d20dccdf184e5a linux-3.0/fs/exofs/common.h -e3961c3679cf47a1f07e3d60505e45cd linux-3.0/fs/exofs/Kconfig -b2f6a842e99a655e98b15ad0d4b064fb linux-3.0/fs/exofs/Kbuild -c689112542d5813463ad03636fe0f0e4 linux-3.0/fs/exofs/BUGS -ca7efb551e771f5c745c2042d9ac3e0a linux-3.0/fs/exec.c -e3f5133ec88391bbeef05be4c22e954e linux-3.0/fs/eventpoll.c -d90bc3f0a1365e8f39f37b993e9481ea linux-3.0/fs/eventfd.c -449ccfae6cdee1328a7077253b7a3221 linux-3.0/fs/efs/symlink.c -de086126767e593fe6bbc4d57568b1dd linux-3.0/fs/efs/super.c -6e776377a333f09e474f46388a19a2de linux-3.0/fs/efs/namei.c -80f74a8b1222bca8e37025457f1f5e5f linux-3.0/fs/efs/inode.c -d4e0d6bb28149173667af8662ab32e68 linux-3.0/fs/efs/file.c -6c639e750ae513c28ec44f0bcd19d0aa linux-3.0/fs/efs/efs.h -136aaa3e52c4816d2dd4ce378ece3849 linux-3.0/fs/efs/dir.c -4866c6b89676f138b1b99fba480b4d34 linux-3.0/fs/efs/Makefile -2b8c136882d63ba3fec2e5046d66dc57 linux-3.0/fs/efs/Kconfig -fdd137692012e0bac5e8171170a72fe3 linux-3.0/fs/ecryptfs/super.c -a23242c8f0184585595f0482add9b10a linux-3.0/fs/ecryptfs/read_write.c -cde8d2ede82fb8f9fef4bc1ea3b01c62 linux-3.0/fs/ecryptfs/mmap.c -f62cdb0a3cb3fdfbcb85692c3fe6c9a1 linux-3.0/fs/ecryptfs/miscdev.c -354456c2198ca5b8908cebc755ca6bdd linux-3.0/fs/ecryptfs/messaging.c -ad3a46f435a501d44b2a66c4efd5fd9c linux-3.0/fs/ecryptfs/main.c -1cefe34aa5b66474fb970d2bf0222240 linux-3.0/fs/ecryptfs/kthread.c -f0876d832daa477a90ac35d03b1268e9 linux-3.0/fs/ecryptfs/keystore.c -b9bfd881077fbde2bbe853d154f93d31 linux-3.0/fs/ecryptfs/inode.c -9ed0dae5be0d852ab3bf17913d220628 linux-3.0/fs/ecryptfs/file.c -01d5b204bb813380cefe1802206a18ef linux-3.0/fs/ecryptfs/ecryptfs_kernel.h -740cfb48d2a6646bf2a2ed6a10ad88a4 linux-3.0/fs/ecryptfs/dentry.c -10b5b2afb477d645a976ed5a425db6e5 linux-3.0/fs/ecryptfs/debug.c -79d3af01cfe10022df6fdd73c68f7c5c linux-3.0/fs/ecryptfs/crypto.c -523a7fdff137ec001e3bc3011ee9cc15 linux-3.0/fs/ecryptfs/Makefile -415cd34095b9d3009f50efd83076df1a linux-3.0/fs/ecryptfs/Kconfig -d3a452b8403497b549f50a66de6e117a linux-3.0/fs/drop_caches.c -c37d4f6dd30899f2bfcb2bc49aa31f02 linux-3.0/fs/dlm/util.h -02a456252ba9ad15ae7e3722a2db5eb2 linux-3.0/fs/dlm/util.c -b005ba5498b641e34e52c8ad6a0011f5 linux-3.0/fs/dlm/user.h -dd03dd6c28fb98c221eaa96a9889888d linux-3.0/fs/dlm/user.c -4262646133b11d8250b065d573ed191e linux-3.0/fs/dlm/requestqueue.h -20a682fd4c852eedc812c55c5f3f17c3 linux-3.0/fs/dlm/requestqueue.c -aac30e7eac624cb653ce11c5c562fa85 linux-3.0/fs/dlm/recoverd.h -e17d40f1b2e332b6529968c00a41f0a3 linux-3.0/fs/dlm/recoverd.c -56887fcbe5328fd22e438af41ce4ea9a linux-3.0/fs/dlm/recover.h -5ee27a71cbf48e30b06d3cc0cb60fb4b linux-3.0/fs/dlm/recover.c -766d1d009284a593751417ea3b6d1dbd linux-3.0/fs/dlm/rcom.h -e172a44a86fdbd5df2c0b3da9b4e8987 linux-3.0/fs/dlm/rcom.c -6d78b0e2966036382a3769090f0ace17 linux-3.0/fs/dlm/plock.c -3d1421f283447b46bc6360dca3852e98 linux-3.0/fs/dlm/netlink.c -f118803fe02eb4cdfa16de2f4bdf41a9 linux-3.0/fs/dlm/midcomms.h -701a3a533387d90ee727574c6caf33e1 linux-3.0/fs/dlm/midcomms.c -6d1aa7c506f9c6473cafe4d45dd54c08 linux-3.0/fs/dlm/memory.h -514490628b72f3de5c770670322e3cfd linux-3.0/fs/dlm/memory.c -b6fb87331574ad8a0f45228d775d3f07 linux-3.0/fs/dlm/member.h -ce8b777b26d290f8913ac83eb580e0c0 linux-3.0/fs/dlm/member.c -6ec280f3aad4a32aa9a93b3b81c90e22 linux-3.0/fs/dlm/main.c -4cfaee0edbd07720cad78f767342979d linux-3.0/fs/dlm/lvb_table.h -ad345317de8912709b93308e62fb2245 linux-3.0/fs/dlm/lowcomms.h -45dae2cee69f191414ecc55e440ae3c1 linux-3.0/fs/dlm/lowcomms.c -ce5d5cb18e5829eb896f8e3493da44e7 linux-3.0/fs/dlm/lockspace.h -efd19e4e456c99804412ada61ba6e514 linux-3.0/fs/dlm/lockspace.c -c3f38867b30b3c57d2adab5e8bb470ed linux-3.0/fs/dlm/lock.h -c0787d6f2345e1d7e184b8c34153559a linux-3.0/fs/dlm/lock.c -836b8121d9d7869921682a1f4a4f8b53 linux-3.0/fs/dlm/dlm_internal.h -9d9a49951f8a765f5ee86b25cdacafa3 linux-3.0/fs/dlm/dir.h -ab37f4ac9e52e68c5733596813d503e7 linux-3.0/fs/dlm/dir.c -08c440fb12c237c45647bd5db873694e linux-3.0/fs/dlm/debug_fs.c -7632f20d36dc02110933cf40cf35bb97 linux-3.0/fs/dlm/config.h -e762d31f8e831768d9eef42a54ef7a99 linux-3.0/fs/dlm/config.c -6669705642e362df6f20bd76a519b4ed linux-3.0/fs/dlm/ast.h -2d9978b5399b9046cb324760f9f2c511 linux-3.0/fs/dlm/ast.c -e783ef2da17cdf8bff1527452f259fe0 linux-3.0/fs/dlm/Makefile -68674d6164ce4cc1e2d3cac31b6482f4 linux-3.0/fs/dlm/Kconfig -8e787a76f04a2afbcde614b071d1ab95 linux-3.0/fs/direct-io.c -c93f5bbb0f1d624b8a0ea5540befa683 linux-3.0/fs/devpts/inode.c -9b7f9b661c2ffdecac0ff5b49032fc55 linux-3.0/fs/devpts/Makefile -97e86b2c36c5651531ca1f08089e1fa4 linux-3.0/fs/debugfs/inode.c -9935fb8f60535fcff8666d6fe48d5c50 linux-3.0/fs/debugfs/file.c -2e92c7fffaaedcb692bb11cec2953baf linux-3.0/fs/debugfs/Makefile -6ea38e4a361f1252de6d7a518ba88348 linux-3.0/fs/dcookies.c -a3e8a92e601dbc59cd17b468e1c4fe22 linux-3.0/fs/dcache.c -9226342d27e1cd3a3c99f01a30406796 linux-3.0/fs/cramfs/uncompress.c -cd9665893401a13690fb48c0451c0c9c linux-3.0/fs/cramfs/inode.c -54f3da391203e2efdd9b1d425801f46b linux-3.0/fs/cramfs/README -8461781ff2abe39a7d4ee9455ef2ab8d linux-3.0/fs/cramfs/Makefile -dd0ec5ebe45c332a25251d5c51dd3ffc linux-3.0/fs/cramfs/Kconfig -a0cb9c6244b303f962a22c6375b44ddf linux-3.0/fs/configfs/symlink.c -74b7975f60a47364431f483d3c5929b2 linux-3.0/fs/configfs/mount.c -11ca6fe35e0256a7d065c5e6220f01d1 linux-3.0/fs/configfs/item.c -f602d6b48639bdb7b19a317a50ea7c56 linux-3.0/fs/configfs/inode.c -26439e3c45a90eb51484d98ebd86ff50 linux-3.0/fs/configfs/file.c -058507524fbabd5c8415b292fe43298d linux-3.0/fs/configfs/dir.c -47e213caa1b76746746965f28d95a8a7 linux-3.0/fs/configfs/configfs_internal.h -cdf25769c489ada4a0d3591e6ae1815d linux-3.0/fs/configfs/Makefile -41c1cd054bec05b3633cf4287b404b7f linux-3.0/fs/configfs/Kconfig -a2dea591684d61650b8342b5b2cde204 linux-3.0/fs/compat_ioctl.c -233dc15e4cf6da74d7fcd8ff55cfe020 linux-3.0/fs/compat_binfmt_elf.c -9aee4eb7b10804120ce174d6b9bc2071 linux-3.0/fs/compat.c -83578e7d67f4e0381a794784d4b27c8b linux-3.0/fs/coda/upcall.c -48808aed7f8e9d619f5e7b93f99e174e linux-3.0/fs/coda/sysctl.c -66da9b39b2086d3c92605fb099075225 linux-3.0/fs/coda/symlink.c -03107c100fb1a757ff5902f43e0e9f63 linux-3.0/fs/coda/psdev.c -b9cd1c731537d1b9f75f819717fbc3d5 linux-3.0/fs/coda/pioctl.c -cb8699277caa83673f49a940ceab7a62 linux-3.0/fs/coda/inode.c -b0c305726291fd4c1b613c57c8de011f linux-3.0/fs/coda/file.c -4b62c3e2f0b362e143ac068c18505b03 linux-3.0/fs/coda/dir.c -b508d654b58fb76dae92d67c75e7c407 linux-3.0/fs/coda/coda_linux.h -a459501533220e6e12ea931b3ac92233 linux-3.0/fs/coda/coda_linux.c -312795dd0845a825b6f66a5261e0b4fa linux-3.0/fs/coda/coda_int.h -c0ccf9750188a64b21d9a25b72038eb1 linux-3.0/fs/coda/coda_fs_i.h -9accad0e5b24004f536e601b14fcdfc7 linux-3.0/fs/coda/coda_cache.h -54c0fa6f51e8ea9b173c1441245c0d0d linux-3.0/fs/coda/cnode.c -cc7f823329e826c0fa3bdb06e228f1c8 linux-3.0/fs/coda/cache.c -cab35181d14341ee623ac52e59352e73 linux-3.0/fs/coda/Makefile -172c781c1fcb1d30e5a537fc1767a3da linux-3.0/fs/coda/Kconfig -0a635fa8a98741fbbbd606a8c73e8396 linux-3.0/fs/cifs/xattr.c -581374381a49487720b6581537d69103 linux-3.0/fs/cifs/transport.c -38f2e0cbb6fd875a2901d5f276c2abd4 linux-3.0/fs/cifs/smbfsctl.h -f22d07d7ac0c82617050ed726e09ae93 linux-3.0/fs/cifs/smberr.h -93dd38abd1bb5275537ffe6dced5765d linux-3.0/fs/cifs/smbencrypt.c -6f1506340399b0c817802f8d2b67d931 linux-3.0/fs/cifs/sess.c -041bbfba298f572745c7b3c01752f3bb linux-3.0/fs/cifs/rfc1002pdu.h -0c9712ab0dad4136fe46d502a6ef240a linux-3.0/fs/cifs/readdir.c -152b00805578a904168aa499d8bc5e1b linux-3.0/fs/cifs/ntlmssp.h -7ef0069ae05f963ea666e26965c8517e linux-3.0/fs/cifs/nterr.h -edea44e511d4bf499b6f688eee8357d5 linux-3.0/fs/cifs/nterr.c -62d337e5eab411043adfd4cda3394d5c linux-3.0/fs/cifs/netmisc.c -068800def182dd61fb92cdb46ddc9cb7 linux-3.0/fs/cifs/misc.c -a974dd7d8aa0e0357aa8279e6997bc55 linux-3.0/fs/cifs/link.c -1c2baf000833e587017a32546099ae32 linux-3.0/fs/cifs/ioctl.c -81df6497958755dbfd8544d59be6e8f5 linux-3.0/fs/cifs/inode.c -9a8a0e11b15c8f8f931d1fe6d0ebd209 linux-3.0/fs/cifs/fscache.h -5e960c519fdcf4d618248491bc285292 linux-3.0/fs/cifs/fscache.c -2972a9f8ae8a89471fb16a749c5df6ed linux-3.0/fs/cifs/file.c -5c98d161cf4d4c50f7ad477d88c02059 linux-3.0/fs/cifs/export.c -18dfdbdc52e73e7e05c2226a4073c9ac linux-3.0/fs/cifs/dns_resolve.h -61cdd08b5984e1f71a451b2ddaf327c1 linux-3.0/fs/cifs/dns_resolve.c -b3277701ac16b727a7081dba515ec7e4 linux-3.0/fs/cifs/dir.c -cc934bd28094857caae3767e6f127854 linux-3.0/fs/cifs/connect.c -9fbfe169b71ab2567242c2c853c28f3e linux-3.0/fs/cifs/cifssmb.c -b4ab7d4647b47d8ed4d034d2ebcd53ee linux-3.0/fs/cifs/cifsproto.h -fc0bf0cac8dc127fcdb239e6f6c003e7 linux-3.0/fs/cifs/cifspdu.h -c86d2b75460118277d4f728e84ace890 linux-3.0/fs/cifs/cifsglob.h -183122e0363c4d78f7aec006f823e94e linux-3.0/fs/cifs/cifsfs.h -570fde7ed9c278ed3d6a8c464a319f97 linux-3.0/fs/cifs/cifsfs.c -41dd9ef63beda833ff6b316a00fc572c linux-3.0/fs/cifs/cifsencrypt.c -e80948ff2c5d18a65214f75face32ba1 linux-3.0/fs/cifs/cifsacl.h -771f58d0d138fc6633174050de1530d4 linux-3.0/fs/cifs/cifsacl.c -ec63dfb3717d2a9c5691d291ec565e31 linux-3.0/fs/cifs/cifs_uniupr.h -bfa73d648a2ab500a565ab7c92ffdbb7 linux-3.0/fs/cifs/cifs_unicode.h -f593032d8f42a79631ba78cbe8d1ed4b linux-3.0/fs/cifs/cifs_unicode.c -5c4b1d3a84fcfec3d2d632305c787f36 linux-3.0/fs/cifs/cifs_spnego.h -b4820c45619be9dc69e402ddb9afaca0 linux-3.0/fs/cifs/cifs_spnego.c -38c615782725c51d18a8df33e0390d6a linux-3.0/fs/cifs/cifs_fs_sb.h -2472e3b7e9028b365a93a0d3665823b0 linux-3.0/fs/cifs/cifs_dfs_ref.c -71726336a308baefb79bc4e5ec22d5bb linux-3.0/fs/cifs/cifs_debug.h -4ace6d3c0348fc5d4aa1adb266989bf8 linux-3.0/fs/cifs/cifs_debug.c -05242ac2dc710e8462b489eaa8d21997 linux-3.0/fs/cifs/cache.c -31fb07508a7500112090b4cb97e1622f linux-3.0/fs/cifs/asn1.c -7bf3b212f0bbdd2eed4dab75edba848f linux-3.0/fs/cifs/TODO -565727da61153c2b21497adc22d7ac91 linux-3.0/fs/cifs/README -14a0d8cfed55d1d881fe38c9ed84ed1f linux-3.0/fs/cifs/Makefile -273464122ffe2f5cca9927e4ae5b8840 linux-3.0/fs/cifs/Kconfig -675d59f6c7859c2c4644d163764f2a43 linux-3.0/fs/cifs/CHANGES -3226e695c41088e729e9e5efcf983a97 linux-3.0/fs/cifs/AUTHORS -2e3b175305c4bf14b380a83ef87fa9b3 linux-3.0/fs/char_dev.c -c6deb86c8831e6783be8d7a33cd2e24f linux-3.0/fs/ceph/xattr.c -ba2ab12aa18d5e9779a9c81531298ee1 linux-3.0/fs/ceph/super.h -62ce5c15bf0750fe921ec451b30410c7 linux-3.0/fs/ceph/super.c -de6b1fea1b1d1b3b6f3dfc2fb429c912 linux-3.0/fs/ceph/strings.c -195095594aaa8632ab87a4597a00d4cb linux-3.0/fs/ceph/snap.c -5e5a9924e0b874c9e3a1722cc1932899 linux-3.0/fs/ceph/mdsmap.c -5f9ae083d5b7e44f1b44c489ce184a30 linux-3.0/fs/ceph/mds_client.h -6fa41667439624333ea8b01ba52a6633 linux-3.0/fs/ceph/mds_client.c -a14b490db25bd68221d8fd2844b396e4 linux-3.0/fs/ceph/locks.c -deab5f8bc4b7e8773f8f5621f0c48a34 linux-3.0/fs/ceph/ioctl.h -b5a2da8ffd424ef08a0167602695b583 linux-3.0/fs/ceph/ioctl.c -67afbb5b99dd0053d565d49ab7a74cc1 linux-3.0/fs/ceph/inode.c -48a9747cc072cb4300f1b9358f2601a4 linux-3.0/fs/ceph/file.c -724e962e1a81c8fb73850907a6a6027c linux-3.0/fs/ceph/export.c -44eeaea7bc922314655d89de4a330283 linux-3.0/fs/ceph/dir.c -9151c668d93053992374966e989e9006 linux-3.0/fs/ceph/debugfs.c -6fc652bc664047f0b0d67255a63335ec linux-3.0/fs/ceph/ceph_frag.c -420bae9a1f20f122fa6e49b116857865 linux-3.0/fs/ceph/caps.c -9bdc9baf2deb7cd0287d34e02009798d linux-3.0/fs/ceph/addr.c -079d1c1c773d88e6748baec0bffe80bb linux-3.0/fs/ceph/Makefile -cec3d60402ef3d30aa5b072488362166 linux-3.0/fs/ceph/Kconfig -a7b72a97a947ee266904c1fc7e22347d linux-3.0/fs/cachefiles/xattr.c -9b75ae463db951c2ee2334164df6debd linux-3.0/fs/cachefiles/security.c -f17901bf3b1dd48742f50f36159d64b6 linux-3.0/fs/cachefiles/rdwr.c -8aeb4ee689919e134493cb7e57f7ec30 linux-3.0/fs/cachefiles/proc.c -77f3b868f961a583b1c1958ae55bc590 linux-3.0/fs/cachefiles/namei.c -4cb106e89108d46f2b26eb9b0d6d802c linux-3.0/fs/cachefiles/main.c -d6ff6614f5f0a08e72ceadd57e0afea9 linux-3.0/fs/cachefiles/key.c -e11295671468d8ba8e2bfaf9584e450e linux-3.0/fs/cachefiles/internal.h -7ae2ea9572933521321065dce11d8811 linux-3.0/fs/cachefiles/interface.c -f55843d3c253de1347ca98e8b52fc8e1 linux-3.0/fs/cachefiles/daemon.c -c35f93b323732e83b922c368085444b9 linux-3.0/fs/cachefiles/bind.c -9d5bd1f7c2432893bc130fe5c4862c37 linux-3.0/fs/cachefiles/Makefile -225972d678658017ea8c17483ddbc47e linux-3.0/fs/cachefiles/Kconfig -bef72ea34d0398b1194dd7a098a4877d linux-3.0/fs/buffer.c -28425ceee2995f3a777853599bfb9de1 linux-3.0/fs/btrfs/zlib.c -fb3e6ecfd11a69366cb4efc91bec3a1d linux-3.0/fs/btrfs/xattr.h -facaecb4b98cd13f41670c7e3e0c39db linux-3.0/fs/btrfs/xattr.c -85eb040ab61c6fe1b1736e7969565a9f linux-3.0/fs/btrfs/volumes.h -9b0613745600fcf4d549e6e35de5959b linux-3.0/fs/btrfs/volumes.c -81bfc6c6b458f0a27322f05955eb0b79 linux-3.0/fs/btrfs/version.h -b21eeb299c8ec66b00284ce1f41ef041 linux-3.0/fs/btrfs/tree-log.h -23c7643b56ec2fdc2b1dfc36de4d1ce9 linux-3.0/fs/btrfs/tree-log.c -4b394f3411272ec9fd8835f74649af83 linux-3.0/fs/btrfs/tree-defrag.c -6af4daba8053c0ad973b5d683807e4bd linux-3.0/fs/btrfs/transaction.h -38195a7482fcf99a2d1176c7322b8906 linux-3.0/fs/btrfs/transaction.c -871eb0f9482b52844d081089b7997e06 linux-3.0/fs/btrfs/sysfs.c -50e8f4bd1df79c5e23560401aaa7e0cc linux-3.0/fs/btrfs/super.c -e36677f27adbb6f84970deaec337e456 linux-3.0/fs/btrfs/struct-funcs.c -7640da482c80a21b9569da1c9c0f3d9f linux-3.0/fs/btrfs/scrub.c -0058c2696e1ac974fa65d135551d5baf linux-3.0/fs/btrfs/root-tree.c -c7be33fa55d48b16ed939f6a3bf154c8 linux-3.0/fs/btrfs/relocation.c -fac67a5e4a860fa4d875868c7867acb0 linux-3.0/fs/btrfs/ref-cache.h -44be93c747630351bd2c43a791c9757a linux-3.0/fs/btrfs/ref-cache.c -24c5c7707bd590680974a87c56005e67 linux-3.0/fs/btrfs/print-tree.h -d3e2f8ed1eb65c9fd8a039ee35f63260 linux-3.0/fs/btrfs/print-tree.c -9686df7926f446b99822015f6fdaf892 linux-3.0/fs/btrfs/orphan.c -03771f50b1ed28b7f55e074cf1da5d6b linux-3.0/fs/btrfs/ordered-data.h -8261c992af5aafebe7eb7689fd6f0b0c linux-3.0/fs/btrfs/ordered-data.c -71468200302e16846fe6b68b62e4c949 linux-3.0/fs/btrfs/lzo.c -a0851c8706e824b6838c500d1d53216d linux-3.0/fs/btrfs/locking.h -d40cca3da115120b269ae5240a565dfc linux-3.0/fs/btrfs/locking.c -5b7471395463561f3e6f7071bf2579b3 linux-3.0/fs/btrfs/ioctl.h -c6181600c6ec936521a07481e817bb8b linux-3.0/fs/btrfs/ioctl.c -b7423c0237674ffc7cc7190b84d89112 linux-3.0/fs/btrfs/inode.c -beb25af93081f5583b867e7fb5f2ce90 linux-3.0/fs/btrfs/inode-map.h -4cf0c2acc0b0c54978c7242d0f07aa45 linux-3.0/fs/btrfs/inode-map.c -76734f25e55679a7da56e15bea8ae775 linux-3.0/fs/btrfs/inode-item.c -65ae5082110a5201ae0e7a44f059070a linux-3.0/fs/btrfs/hash.h -80b525212d669b6757100562cb235a72 linux-3.0/fs/btrfs/free-space-cache.h -af944864f119a8810e99a784b98d0beb linux-3.0/fs/btrfs/free-space-cache.c -bc5f3ec4da22fb88ff7e927d94686f36 linux-3.0/fs/btrfs/file.c -267c4ab31526b26b825fa31d8f423490 linux-3.0/fs/btrfs/file-item.c -68a00962a41f368514a1cb706e4c7c5c linux-3.0/fs/btrfs/extent_map.h -70d7e2dfe28d3964db895ed7f77a5b05 linux-3.0/fs/btrfs/extent_map.c -bd2f8912c61b9fa006231c9226d9816c linux-3.0/fs/btrfs/extent_io.h -80d0314a691614e1a3a2aa762016f304 linux-3.0/fs/btrfs/extent_io.c -06a3dba1f25bd798804d30c058bf5527 linux-3.0/fs/btrfs/extent-tree.c -00262a4630ec8296585a6f8db325465f linux-3.0/fs/btrfs/export.h -26a226c869307dfb00dbd9ddd61beb03 linux-3.0/fs/btrfs/export.c -246af54ca4310892ebfc4910fd6a0750 linux-3.0/fs/btrfs/disk-io.h -952a70b042d0d7b545305beb708d481e linux-3.0/fs/btrfs/disk-io.c -4e11615800ec8c732f7934af239b1bee linux-3.0/fs/btrfs/dir-item.c -fdd482fdc836ce606a6aaa8dc8248644 linux-3.0/fs/btrfs/delayed-ref.h -a65622c538907950d1d10d63eb912769 linux-3.0/fs/btrfs/delayed-ref.c -aa761b416688bfc79af3ecb0b21390a6 linux-3.0/fs/btrfs/delayed-inode.h -f7e8d0403c20920960478aefa85285ae linux-3.0/fs/btrfs/delayed-inode.c -c6a4db625935155a4bff1cbde88d481c linux-3.0/fs/btrfs/ctree.h -fd5a7ff4970fc49ab7e1bf0f30721e69 linux-3.0/fs/btrfs/ctree.c -34a973fbf7cfff9e65e02b4a10d06c69 linux-3.0/fs/btrfs/compression.h -d059d56646e18bd33cdddf93481f5553 linux-3.0/fs/btrfs/compression.c -18747a040143a90ddab53ccf130bbc43 linux-3.0/fs/btrfs/compat.h -d5784c6e1dc7c3991fab8848973174ed linux-3.0/fs/btrfs/btrfs_inode.h -aea9f266b1ae0829b5dbbad308abdc02 linux-3.0/fs/btrfs/async-thread.h -4305ca804870bf713ca950aa6cd13783 linux-3.0/fs/btrfs/async-thread.c -602173d97d750fba9b43550575ec2acd linux-3.0/fs/btrfs/acl.c -eb0d48ebf29a4cf299eed765e1227365 linux-3.0/fs/btrfs/Makefile -27ff8c7bc62a90f0f18dd2c8833b45a3 linux-3.0/fs/btrfs/Kconfig -6585e58a15b5a51630c757ce6df8d753 linux-3.0/fs/block_dev.c -d163c570500eabcdda6dacafc49a8e39 linux-3.0/fs/bio.c -796a228cb31fdd9d9a353be24150e745 linux-3.0/fs/bio-integrity.c -8a6f5ba43f4489c8bd1ee2bb7fa9a45a linux-3.0/fs/binfmt_som.c -99f2a64682bf9b52c5536a33dd4ef374 linux-3.0/fs/binfmt_script.c -864ddaf40ffbbd7728ce41dd63b9af28 linux-3.0/fs/binfmt_misc.c -0702e5a83a82ed1fe33ddebb0e6781d9 linux-3.0/fs/binfmt_flat.c -ede640ff237217f96de6248ab163f583 linux-3.0/fs/binfmt_em86.c -3a25dc3ac3543bd202e066a77f3d1bb3 linux-3.0/fs/binfmt_elf_fdpic.c -31fee5bf593e9e493ae654724f603115 linux-3.0/fs/binfmt_elf.c -e23250361587eec0bde56f6397e9bb82 linux-3.0/fs/binfmt_aout.c -02ecfd71d2513fd8afe02d028705bf2f linux-3.0/fs/bfs/inode.c -0741728868501ede356e5a4013988a09 linux-3.0/fs/bfs/file.c -44caa4f0d947bca1a70b3236da162291 linux-3.0/fs/bfs/dir.c -0d1c7243841270b17e0f4f62de133f4a linux-3.0/fs/bfs/bfs.h -7f104fc65c036f639fd47b0f90f65434 linux-3.0/fs/bfs/Makefile -39a772d46aeae9f804734c4946f9c5e4 linux-3.0/fs/bfs/Kconfig -3a4b5696150dc69fe3a469a853a13cc6 linux-3.0/fs/befs/super.h -c41458c98011a4f9bda7f18511158d97 linux-3.0/fs/befs/super.c -c8715d77dd84143403fab268da63fb83 linux-3.0/fs/befs/linuxvfs.c -af65731b9e30c0e9908f8e256ed65b6f linux-3.0/fs/befs/io.h -b5708c72a4a9acf4ff5e053b4fcb7168 linux-3.0/fs/befs/io.c -ee07f4e04219345b8f65cdf59bb7f1a3 linux-3.0/fs/befs/inode.h -7af76ee9b495e45dcd02faa88313a667 linux-3.0/fs/befs/inode.c -fad008b9cfe7125e62c49273562a7de5 linux-3.0/fs/befs/endian.h -75daca6696325a046df65f90cc9d6bb5 linux-3.0/fs/befs/debug.c -84a14094fba765524b155afbea9d6b85 linux-3.0/fs/befs/datastream.h -9639576ab2a3fd8cbd7177b3e6c842ba linux-3.0/fs/befs/datastream.c -7614752b38fb99716e01f3275ea1abf4 linux-3.0/fs/befs/btree.h -1bf458a281f950a9adbf2409c64478c5 linux-3.0/fs/befs/btree.c -62cd35d1c13de5e4b04cfa3773a4e164 linux-3.0/fs/befs/befs_fs_types.h -39222d3726122a79d2d86a92f4dfd69a linux-3.0/fs/befs/befs.h -0c6eef560e5bc44c396036d3da6825ae linux-3.0/fs/befs/TODO -bc9f1f5371a9e0b5a119525989ab71e7 linux-3.0/fs/befs/Makefile -7fc414fdcab7143b12f663ad976b1d80 linux-3.0/fs/befs/Kconfig -3740e62d56065064eaf8bf88f3bbbe58 linux-3.0/fs/befs/ChangeLog -1be2320438461f7b89d15133d7097f2c linux-3.0/fs/bad_inode.c -8c32fd5225e152f082c9d4c7573d2d4d linux-3.0/fs/autofs4/waitq.c -53fc1796f955f7f604fc09d0bbd4e666 linux-3.0/fs/autofs4/symlink.c -e99974fba258fa80a813f79602f0dfda linux-3.0/fs/autofs4/root.c -589b14fa7e6252f33a9154edc3d277fb linux-3.0/fs/autofs4/inode.c -c913d2386221afae3eda0930c8713fae linux-3.0/fs/autofs4/init.c -f06c1add7649cbcf190c802e70573b09 linux-3.0/fs/autofs4/expire.c -24a103fc1b07f29abb10012d475a0021 linux-3.0/fs/autofs4/dev-ioctl.c -e049804b08f2e4caa1ab3e7897fcc6da linux-3.0/fs/autofs4/autofs_i.h -a1c7fbcaafcf3f68e4f4ad791828d65a linux-3.0/fs/autofs4/Makefile -72ca4b9314e50c030b2d15b2903f2bbd linux-3.0/fs/autofs4/Kconfig -a81ccf83a1f3f92b817e4c05b3463d80 linux-3.0/fs/attr.c -0326ac8f750a506da1bc0bfe81cac116 linux-3.0/fs/anon_inodes.c -e09194fd0525929f2752232f1fc02ab6 linux-3.0/fs/aio.c -1fd6fd174f6ef44598ad3dd2bd0a6b13 linux-3.0/fs/afs/write.c -4fa67c43e41d0e8b43a4bb417fcb0cad linux-3.0/fs/afs/volume.c -d6182538b5b05639ce49f2e52d00d11f linux-3.0/fs/afs/vnode.c -620ccf2095d583b613f4b60e985025ee linux-3.0/fs/afs/vlocation.c -05d91e7ce55ff3b3de3912b6427b495f linux-3.0/fs/afs/vlclient.c -3b7bc50f548263d390e9f83bbc8ca68d linux-3.0/fs/afs/super.c -3880f945c7abb6340df785e0ce38f84a linux-3.0/fs/afs/server.c -70b34078cbf96546cd8eb2ab1a6886d0 linux-3.0/fs/afs/security.c -2ded332c8cda38db0d72be1a6a07f1b0 linux-3.0/fs/afs/rxrpc.c -8ab39a8b7d9468a231a0e445f603e074 linux-3.0/fs/afs/proc.c -813429d2bfcc12b7317ac80ef5d5bd4f linux-3.0/fs/afs/netdevices.c -ea20c0931813063d46891ac3aa83569e linux-3.0/fs/afs/mntpt.c -e1748f47831c9203d10ac8ceadc0ce74 linux-3.0/fs/afs/misc.c -28ef96d54ce2e9091c16be9dbc833f22 linux-3.0/fs/afs/main.c -40cae95aad21a6323844901cb2a17027 linux-3.0/fs/afs/internal.h -7b99e114dae3bb3702628f212457922f linux-3.0/fs/afs/inode.c -fb443b3426ebdc6bfc852c3f9fcccac4 linux-3.0/fs/afs/fsclient.c -3a772888e5d8e6723ae8be647f0dd32d linux-3.0/fs/afs/flock.c -a69a012d044452a5048f8c9d6b4b3a13 linux-3.0/fs/afs/file.c -ad839e1eb73814c370737ef5526c6806 linux-3.0/fs/afs/dir.c -807a505c0c691241d74c9353e9c785ac linux-3.0/fs/afs/cmservice.c -8f14fba98160688c580b681d0edd6dd6 linux-3.0/fs/afs/cell.c -8f88ef157132c9f4511cbe1e86cd618f linux-3.0/fs/afs/callback.c -df46a74eef185753f53f425c88faf36f linux-3.0/fs/afs/cache.c -dc8002733b9ce20c997f7beb33e5ba77 linux-3.0/fs/afs/afs_vl.h -b4ccc98722b59fa1e495229f5fd73f42 linux-3.0/fs/afs/afs_fs.h -fdd48239182929a29a59c44393b601e9 linux-3.0/fs/afs/afs_cm.h -cdf54bb1b3812a8d323ca2a116182f21 linux-3.0/fs/afs/afs.h -77c1dd4efd45e32bf1c53395a0f036c1 linux-3.0/fs/afs/Makefile -e209b852aadb09e6d611d89aebb61b32 linux-3.0/fs/afs/Kconfig -4683a6e0554eb69fcf3ec9894ab2a3f8 linux-3.0/fs/affs/symlink.c -8aaa4d2b78b4a1d4d6854db4c68a1ebb linux-3.0/fs/affs/super.c -ffff6be5a37d292825b40cad5c0ee511 linux-3.0/fs/affs/namei.c -125d04dd9eab724bbd918c0bc2c342eb linux-3.0/fs/affs/inode.c -bbd158163a3f58913e2e5d4978d9964e linux-3.0/fs/affs/file.c -893ecc46a03fec59ff7a31ef7b513be6 linux-3.0/fs/affs/dir.c -175e6bbc0380ca8b5df38e2c8859d592 linux-3.0/fs/affs/bitmap.c -c26ee07af93d116f50e59049737aa77b linux-3.0/fs/affs/amigaffs.c -397a7538fdf593cd53c3f621ae039064 linux-3.0/fs/affs/affs.h -a79321b4995414f4a119e648865b3440 linux-3.0/fs/affs/Makefile -83ec91f30eec3edc746f0594993c4c61 linux-3.0/fs/affs/Kconfig -1f30389a76d1f7d736b39b8c2647a29c linux-3.0/fs/affs/Changes -81e39e5bcc390aaeab50c36644e84118 linux-3.0/fs/adfs/super.c -ab7a3e1c84b089cbabf200eb37a59953 linux-3.0/fs/adfs/map.c -e8feb157f9289950d463d6ff524a061f linux-3.0/fs/adfs/inode.c -73063143ddeb692d2532dade49d640d1 linux-3.0/fs/adfs/file.c -9a391d00f32b32b46c040623bc1c0d22 linux-3.0/fs/adfs/dir_fplus.h -ee7b372b916d75c16117a4624a44e456 linux-3.0/fs/adfs/dir_fplus.c -60d94403fe85347d20a4cb7a7b41bb07 linux-3.0/fs/adfs/dir_f.h -60ce49411fdf38fab073146a2282a62a linux-3.0/fs/adfs/dir_f.c -fa5eaf6d4066f100b5f19118c712d354 linux-3.0/fs/adfs/dir.c -ccf6a27fd853eaf8cd6b58bc1944d9de linux-3.0/fs/adfs/adfs.h -8dbe890be87287c9dbdfe58283b22770 linux-3.0/fs/adfs/Makefile -abeeac6b2afc249857dddf257af6d4b8 linux-3.0/fs/adfs/Kconfig -b9ff163f9b2322e8dd58e991f623a1dd linux-3.0/fs/Makefile -d7fa65ba9fc7154fe707ecb60549e8ec linux-3.0/fs/Kconfig.binfmt -d04911b02d9d7c8dca7762033cc38f00 linux-3.0/fs/Kconfig -45f588a2a17931f95e701c52df6901ba linux-3.0/fs/9p/xattr_user.c -10c3e9ace7efaded06407a7859387016 linux-3.0/fs/9p/xattr.h -423310f04f6d3cd384daec6f833f0312 linux-3.0/fs/9p/xattr.c -d7fffb7ffd5e8729eaf17e325becf4dc linux-3.0/fs/9p/vfs_super.c -96e3bb8439fbd85bc752e0adf2fc1ee4 linux-3.0/fs/9p/vfs_inode_dotl.c -03f12459c6ca6a4bb8c63e07fe8237a1 linux-3.0/fs/9p/vfs_inode.c -5e4b2b542b056e7392c27106118d4ea6 linux-3.0/fs/9p/vfs_file.c -832a48e85a1848a9085bb7d273bcadc2 linux-3.0/fs/9p/vfs_dir.c -123915e27b635003206c80c16b419d36 linux-3.0/fs/9p/vfs_dentry.c -7392d399ee92eecf69e708cd3aa3c6a1 linux-3.0/fs/9p/vfs_addr.c -c6d2487e895e6ea204a55c8e5ebcce5c linux-3.0/fs/9p/v9fs_vfs.h -f8978fb0a1d7261ff8f051c9a5c1941e linux-3.0/fs/9p/v9fs.h -1debbd2284e7464e1b8b46b7ae05dee7 linux-3.0/fs/9p/v9fs.c -1f9a3d8bdb4673fe14bf9a065bcfef0b linux-3.0/fs/9p/fid.h -ee7c6a6c71e3919f697efc1e7b0abc2c linux-3.0/fs/9p/fid.c -b23d68b08adcacff0ebfa967be060404 linux-3.0/fs/9p/cache.h -77ee47ac68204d6c803a792b3242dfa5 linux-3.0/fs/9p/cache.c -497d5254afa2f1ae4c137bddfadd2cc6 linux-3.0/fs/9p/acl.h -da102d5fd920fe0c2b76eca0880663ec linux-3.0/fs/9p/acl.c -b1bc8d199c7ca2470016b01033dd4c07 linux-3.0/fs/9p/Makefile -3d9c073d1c82a5aa6cb9fb1599674458 linux-3.0/fs/9p/Kconfig -f77bb44a8c166e76c41ba496ee51d018 linux-3.0/firmware/yamaha/yss225_registers.bin.ihex -f03a615df5936c3fc9dabd823c60033f linux-3.0/firmware/yamaha/ds1e_ctrl.fw.ihex -f6bae05173b8137b67e879709ecf8eb7 linux-3.0/firmware/yamaha/ds1_dsp.fw.ihex -5df2059882026b8d89214ca9954ed82e linux-3.0/firmware/yamaha/ds1_ctrl.fw.ihex -8835b7bdd2985a208a262fbba04de1ab linux-3.0/firmware/yam/9600.bin.ihex -c0888d003b88aea3f8d073abd9d460fc linux-3.0/firmware/yam/1200.bin.ihex -1c5144966adb0e27a3d1e6cb4bfaf0d2 linux-3.0/firmware/whiteheat_loader_debug.HEX -120c17b40b42e3f38eb6f7655c95fcc3 linux-3.0/firmware/whiteheat_loader.HEX -e1995da20a85185ce9f859159cd5c7d5 linux-3.0/firmware/whiteheat.HEX -9451e8c175f72c44e12e25e24e5948a4 linux-3.0/firmware/vicam/firmware.H16 -e3cd84d6e1f93e73a476e57d55f5a874 linux-3.0/firmware/ttusb-budget/dspbootcode.bin.ihex -0474782318760167c9f1e86fd8b8486e linux-3.0/firmware/tr_smctr.bin.ihex -08ba8014b9e3ec10ff074ea15de14c92 linux-3.0/firmware/tigon/tg3_tso5.bin.ihex -6849b82ca5d6ac87576c10715f74dce2 linux-3.0/firmware/tigon/tg3_tso.bin.ihex -7e1bb45fbf62a00a48a87de9626650a9 linux-3.0/firmware/tigon/tg3.bin.ihex -a700914311795afd368d3e598ff14525 linux-3.0/firmware/ti_5052.fw.ihex -fbc65ee84a46e4f65952efc046f4701b linux-3.0/firmware/ti_3410.fw.ihex -54361372f44d984f5c07efce06455234 linux-3.0/firmware/tehuti/bdx.bin.ihex -d490f767532e053aadb5a565948a12a9 linux-3.0/firmware/sun/cassini.bin.ihex -6d4eead5e3a186e4173f213401400c58 linux-3.0/firmware/sb16/mulaw_main.csp.ihex -495786a3cabd31d8432a069e628eec94 linux-3.0/firmware/sb16/ima_adpcm_playback.csp.ihex -c6d9b4ac95633adf86dc6dff8de37095 linux-3.0/firmware/sb16/ima_adpcm_init.csp.ihex -b36468cfd8083b5af44d4c372a237767 linux-3.0/firmware/sb16/ima_adpcm_capture.csp.ihex -cd57ff20854cd39cd65e3f74c9f0e00e linux-3.0/firmware/sb16/alaw_main.csp.ihex -e85c1e9564cf56970543149da16ad1ec linux-3.0/firmware/radeon/RV770_pfp.bin.ihex -f19c907d71ce4823ba703186be46d623 linux-3.0/firmware/radeon/RV770_me.bin.ihex -08f69039919dd22e4f3ee88d46612c61 linux-3.0/firmware/radeon/RV730_pfp.bin.ihex -b0d3719b72fa067f54299d2cbaf6b405 linux-3.0/firmware/radeon/RV730_me.bin.ihex -08f69039919dd22e4f3ee88d46612c61 linux-3.0/firmware/radeon/RV710_pfp.bin.ihex -381daa18d4957fe76b82536005dce834 linux-3.0/firmware/radeon/RV710_me.bin.ihex -72b0b8f922dc7f125c7aaed79f9d274a linux-3.0/firmware/radeon/RV670_pfp.bin.ihex -d0df3810d128f5fc54f37a0c33806356 linux-3.0/firmware/radeon/RV670_me.bin.ihex -72b0b8f922dc7f125c7aaed79f9d274a linux-3.0/firmware/radeon/RV635_pfp.bin.ihex -6512ba891df48e1fd01042f4f95e21d9 linux-3.0/firmware/radeon/RV635_me.bin.ihex -72b0b8f922dc7f125c7aaed79f9d274a linux-3.0/firmware/radeon/RV630_pfp.bin.ihex -6512ba891df48e1fd01042f4f95e21d9 linux-3.0/firmware/radeon/RV630_me.bin.ihex -72b0b8f922dc7f125c7aaed79f9d274a linux-3.0/firmware/radeon/RV620_pfp.bin.ihex -afc7972d8e2f0725d76d8d6fa926dbdd linux-3.0/firmware/radeon/RV620_me.bin.ihex -72b0b8f922dc7f125c7aaed79f9d274a linux-3.0/firmware/radeon/RV610_pfp.bin.ihex -afc7972d8e2f0725d76d8d6fa926dbdd linux-3.0/firmware/radeon/RV610_me.bin.ihex -5026943087018821f2d1dd77ffec2717 linux-3.0/firmware/radeon/RS780_pfp.bin.ihex -d66a865a03e4facec17990aa7d0bd11d linux-3.0/firmware/radeon/RS780_me.bin.ihex -2306c8c54b43c377370d808bbef53664 linux-3.0/firmware/radeon/RS690_cp.bin.ihex -a0c89ec52e29b8f152ba3c17438e6672 linux-3.0/firmware/radeon/RS600_cp.bin.ihex -c10429c8685620f2c56dd1e41edf76dc linux-3.0/firmware/radeon/R600_pfp.bin.ihex -bc0d26d7759e0ec2c695d250eeabd268 linux-3.0/firmware/radeon/R600_me.bin.ihex -f89050ac5510a5ddd11d9c305a50fc7a linux-3.0/firmware/radeon/R520_cp.bin.ihex -a86d02bdda88af61b6e4da6991be3e5c linux-3.0/firmware/radeon/R420_cp.bin.ihex -5f53b96ee3779455d305b9f31628bcb6 linux-3.0/firmware/radeon/R300_cp.bin.ihex -a52e91647f95f2a20757c99612b5d877 linux-3.0/firmware/radeon/R200_cp.bin.ihex -9b760e3dc3fe6103b3f6d310dfc124d7 linux-3.0/firmware/radeon/R100_cp.bin.ihex -680a58cd111fde31feac8cf689164ace linux-3.0/firmware/r128/r128_cce.bin.ihex -d6efd6d900e401aa1edef857a1f73f64 linux-3.0/firmware/qlogic/sd7220.fw.ihex -6b282f3d84b54c77d7fa0beeb9bd92d5 linux-3.0/firmware/qlogic/isp1000.bin.ihex -5e165d3afa853ad7b887ecc0307e3997 linux-3.0/firmware/qlogic/1280.bin.ihex -018ac9b1660d5e7d834a1259d97fca2c linux-3.0/firmware/qlogic/12160.bin.ihex -fe114cd776d22e47e3d5cc06d93c5a54 linux-3.0/firmware/qlogic/1040.bin.ihex -77d5e644e6edb60713f6fbebba0ab23e linux-3.0/firmware/ositech/Xilinx7OD.bin.ihex -b1309a564e26e5c1e56d2bbdcc91fd17 linux-3.0/firmware/myricom/lanai.bin.ihex -4ecdfef93ca5c94e441f47b5f0f6fe6e linux-3.0/firmware/mts_gsm.fw.ihex -78da61fd6e27e573597db69b9dcecea4 linux-3.0/firmware/mts_edge.fw.ihex -4ecdfef93ca5c94e441f47b5f0f6fe6e linux-3.0/firmware/mts_cdma.fw.ihex -f85bf4ceb76ba43051eed3c1c704ac39 linux-3.0/firmware/matrox/g400_warp.H16 -d72c8fef44e9d169c2a34dc3fec72e5a linux-3.0/firmware/matrox/g200_warp.H16 -92f3b1120005426051f3d72820353917 linux-3.0/firmware/korg/k1212.dsp.ihex -5691a255b7e88894ac423caa9feb8aa6 linux-3.0/firmware/keyspan_pda/xircom_pgs.S -5caec477c882ed09bfddd70973c31933 linux-3.0/firmware/keyspan_pda/xircom_pgs.HEX -43c076c59b38c3898d8c3c5f172740d0 linux-3.0/firmware/keyspan_pda/keyspan_pda.S -edb44cef34416f3bc5a8aee193bf20b5 linux-3.0/firmware/keyspan_pda/keyspan_pda.HEX -92ab7ce593494d7fbb685ca9f47edbd5 linux-3.0/firmware/keyspan/usa49wlc.HEX -7d2f95ee9d58a04d7e2cec6226745a1d linux-3.0/firmware/keyspan/usa49w.HEX -75e9039706d9b4a25ba5937bd97dc140 linux-3.0/firmware/keyspan/usa28xb.HEX -ba89758914934ab4ba633008d599b4b5 linux-3.0/firmware/keyspan/usa28xa.HEX -003bf7f7e25f9a3d424802ec063cb9f3 linux-3.0/firmware/keyspan/usa28x.HEX -3a7eb9d789ce346f20a715c83a924605 linux-3.0/firmware/keyspan/usa28.HEX -ae20631e10dfb2830f2f2c4ea49445b3 linux-3.0/firmware/keyspan/usa19w.HEX -ad09c580ed49755be7e217351cfc6902 linux-3.0/firmware/keyspan/usa19qw.HEX -94366ea2cfff0bd13a84c41bdd7331c3 linux-3.0/firmware/keyspan/usa19qi.HEX -a9e09f3a77bf78f833c12b47957982d2 linux-3.0/firmware/keyspan/usa19.HEX -517d0d6c03d628abc4db4176ddae8501 linux-3.0/firmware/keyspan/usa18x.HEX -9320ed1c9331aa61ab1324a0e051f719 linux-3.0/firmware/keyspan/mpr.HEX -d42ad6bd268274babd60f491d6957220 linux-3.0/firmware/kaweth/trigger_code_fix.bin.ihex -4942642ff08829e4c7546b42dc7650e5 linux-3.0/firmware/kaweth/trigger_code.bin.ihex -f809a4f06ba9151ca9f696ef516017ce linux-3.0/firmware/kaweth/new_code_fix.bin.ihex -fbd624bf3aeba24af54f49ce70a73123 linux-3.0/firmware/kaweth/new_code.bin.ihex -509d67c4f3a70c1fb725ef55417f96c9 linux-3.0/firmware/isci/isci_firmware.bin.ihex -168fd238931b90e6604b93b3dbd75eab linux-3.0/firmware/intelliport2.bin.ihex -4b1ef3e4ed575246ec40bbb6214c587b linux-3.0/firmware/ihex2fw.c -e3895b8aee81d475dfa593a1bb569864 linux-3.0/firmware/ess/maestro3_assp_minisrc.fw.ihex -f96225ad01dcabeb3624222ccbcc3050 linux-3.0/firmware/ess/maestro3_assp_kernel.fw.ihex -239ed3704ab9b6a60a10a8f0e4c43671 linux-3.0/firmware/emi62/spdif.HEX -27523372782495b36ad9c8c9891deee6 linux-3.0/firmware/emi62/midi.HEX -88ae6a251ea25cf25d46f5840cdb40da linux-3.0/firmware/emi62/loader.HEX -b3539ee4d93aa39f7ac00ce6203d78a7 linux-3.0/firmware/emi62/bitstream.HEX -bbf120c3da72574b1a036bac43c17399 linux-3.0/firmware/emi26/loader.HEX -7b1c5ae960a86f64b3235a652a083653 linux-3.0/firmware/emi26/firmware.HEX -9cbc2291845e493df78d7ac9575270d8 linux-3.0/firmware/emi26/bitstream.HEX -11ca7c31a518a16e17f7f6469154f4c8 linux-3.0/firmware/edgeport/down3.bin.ihex -9063e72b0cf55b0f3ea84db55e38d9bc linux-3.0/firmware/edgeport/down2.H16 -34e3cf7082f3f4d8fe9c8e84a532fed0 linux-3.0/firmware/edgeport/down.H16 -110ab97db09a6d8f4817bc0f1149727a linux-3.0/firmware/edgeport/boot2.H16 -618d96184d7075d99c0aa0d0e18b755b linux-3.0/firmware/edgeport/boot.H16 -0bd43aeab2aa8029a4d58ddef9fb97b3 linux-3.0/firmware/e100/d102e_ucode.bin.ihex -60a322ddac4580bf84cd194e45b1bfdc linux-3.0/firmware/e100/d101s_ucode.bin.ihex -546937e8b830d2aed605590005a0ee1c linux-3.0/firmware/e100/d101m_ucode.bin.ihex -addd9ebc5ea424bde905bfe23ed35878 linux-3.0/firmware/dsp56k/bootstrap.bin.ihex -63ec1226f89e8085dcc83b692268d4be linux-3.0/firmware/dsp56k/bootstrap.asm -3a6998f67acb16eb6810b27e36a992cf linux-3.0/firmware/dabusb/firmware.HEX -a98893d8f6864b6d24ed0133bb49539f linux-3.0/firmware/dabusb/bitstream.bin.ihex -ee06bb8f02f99bb2f5f6c672b53d445b linux-3.0/firmware/cxgb3/t3fw-7.10.0.bin.ihex -d4753c4e4be8558cd86a900baa3cc354 linux-3.0/firmware/cxgb3/t3c_psram-1.1.0.bin.ihex -2941321252804f33be24eb123597ea1b linux-3.0/firmware/cxgb3/t3b_psram-1.1.0.bin.ihex -5da29215bbc5dcd28a812aed92ac160f linux-3.0/firmware/cxgb3/ael2020_twx_edc.bin.ihex -c5c4156db5e795724a6b6d1885e5bbac linux-3.0/firmware/cxgb3/ael2005_twx_edc.bin.ihex -8424c6a8cb10bfef6c9096d7956ffed3 linux-3.0/firmware/cxgb3/ael2005_opt_edc.bin.ihex -999bf4549c1998e18a3fe0ab94ff54a4 linux-3.0/firmware/cpia2/stv0672_vp4.bin.ihex -f7fc692e429890274aa5ab339cb5cd4a linux-3.0/firmware/cis/tamarack.cis.ihex -f7329e1f501779d59442f9bbedc7693b linux-3.0/firmware/cis/SW_8xx_SER.cis.ihex -dcb55701393d6e3f7382047b2628a516 linux-3.0/firmware/cis/SW_7xx_SER.cis.ihex -bd2c7945474a776030765647d03dd9f7 linux-3.0/firmware/cis/SW_555_SER.cis.ihex -3121603a41d2cbd0855c746987ac1259 linux-3.0/firmware/cis/RS-COM-2P.cis.ihex -3e8b9bdf51bd8697e908fb0c75ae7630 linux-3.0/firmware/cis/PE520.cis.ihex -dcb99ad256615dd99e989672966547db linux-3.0/firmware/cis/PE-200.cis.ihex -bccef8bac09eebe32b98fd87ef8cfa97 linux-3.0/firmware/cis/PCMLM28.cis.ihex -f5390161b11ac07632640eb9b4850673 linux-3.0/firmware/cis/NE2K.cis.ihex -a662301874af83ee2402e55ba6cdf931 linux-3.0/firmware/cis/MT5634ZLX.cis.ihex -96a58fef3f66870f073c5b73baf9a035 linux-3.0/firmware/cis/LA-PCM.cis.ihex -8ec97fe41214a2c69bb89f66fefd8a21 linux-3.0/firmware/cis/DP83903.cis.ihex -fd0e1b41c918a63192970fceac306ce0 linux-3.0/firmware/cis/COMpad4.cis.ihex -34c570359cb027b6da2e7fcc5991bfc3 linux-3.0/firmware/cis/COMpad2.cis.ihex -90b1bdb112df86f5a4857b5d360a1f02 linux-3.0/firmware/cis/3CXEM556.cis.ihex -526c50e738007c3eac9b271c4d4c8db7 linux-3.0/firmware/cis/3CCFEM556.cis.ihex -5b54ffde4ae7e1bac03fc365ed129d04 linux-3.0/firmware/cis/.gitignore -fb033b82ac14dc9ed095c04cf2b6ae2e linux-3.0/firmware/bnx2x/bnx2x-e2-6.2.9.0.fw.ihex -79d01c0722f894b76b64570534327557 linux-3.0/firmware/bnx2x/bnx2x-e1h-6.2.9.0.fw.ihex -05c58a998b1f5cb9596d64f6ea57a502 linux-3.0/firmware/bnx2x/bnx2x-e1-6.2.9.0.fw.ihex -01849788ca140e65404bd5b245e24588 linux-3.0/firmware/bnx2/bnx2-rv2p-09ax-6.0.17.fw.ihex -bba5c6beed752835cd611e449b0ed158 linux-3.0/firmware/bnx2/bnx2-rv2p-09-6.0.17.fw.ihex -e28ea0b834801a6f28c5c3a0b76a4f86 linux-3.0/firmware/bnx2/bnx2-rv2p-06-6.0.15.fw.ihex -4dac2b761530c6d7f5666f73f4e54987 linux-3.0/firmware/bnx2/bnx2-mips-09-6.2.1a.fw.ihex -c053281701576041ee29188dda61554e linux-3.0/firmware/bnx2/bnx2-mips-06-6.2.1.fw.ihex -759d978893391cd479224132af348182 linux-3.0/firmware/av7110/bootcode.bin.ihex -77a1af4f3fa09c89cb7b6397f968791e linux-3.0/firmware/av7110/Boot.S -2b29592fe3d2142a13f096b57fae6c52 linux-3.0/firmware/atmsar11.HEX -d2b4455adb8c8f03b0f0a9bc19a84155 linux-3.0/firmware/advansys/mcode.bin.ihex -7d7bfedce6cc27b3cb8af899bd3b4d39 linux-3.0/firmware/advansys/38C1600.bin.ihex -4dc13f82f1250629b216112c1630b7ce linux-3.0/firmware/advansys/38C0800.bin.ihex -d479ee5c36fc54624e9e867f89b81ff3 linux-3.0/firmware/advansys/3550.bin.ihex -1b878cf151da97582db42369d165539f linux-3.0/firmware/adaptec/starfire_tx.bin.ihex -1b878cf151da97582db42369d165539f linux-3.0/firmware/adaptec/starfire_rx.bin.ihex -350c98302771423eab4aece422209336 linux-3.0/firmware/acenic/tg2.bin.ihex -0610ab5893b935b0085096f4cffaa5bd linux-3.0/firmware/acenic/tg1.bin.ihex -4bee1782be299f40d5fdb559241c4fe2 linux-3.0/firmware/WHENCE -80abf1ed0be846bb5ff753cf66f56d8a linux-3.0/firmware/README.AddingFirmware -8547808d54a796b6b10a729353eefe66 linux-3.0/firmware/Makefile -1830e753302bc5e77945f4cb68e80756 linux-3.0/firmware/3com/typhoon.bin.ihex -0fd033b291a847099566336f7269df18 linux-3.0/firmware/3com/3C359.bin.ihex -9c521f55bdce2aac05af80207fffeeea linux-3.0/firmware/.gitignore -4e897c3839ad791b16107bd22cebf5ce linux-3.0/drivers/zorro/zorro.ids -ea0d4ebe69ef941a6d1146ef8c2afd26 linux-3.0/drivers/zorro/zorro.h -d529e791ffd183af3917563e190ea30a linux-3.0/drivers/zorro/zorro.c -a7a16da3c3589e40c2e91f621c730124 linux-3.0/drivers/zorro/zorro-sysfs.c -7206f4617498c18d36dc6b3f8f9b613d linux-3.0/drivers/zorro/zorro-driver.c -503aade26ed30efdc0aa5704ad83ca6f linux-3.0/drivers/zorro/proc.c -0035935125ea91cf6002a8c93786bf0f linux-3.0/drivers/zorro/names.c -650c429819f9f193cabc00af23b640af linux-3.0/drivers/zorro/gen-devlist.c -93b0e1c33259c6f7b6f1a04778d81c7f linux-3.0/drivers/zorro/Makefile -09f9a46ded4fa8793300fdb25580a901 linux-3.0/drivers/zorro/Kconfig -97700b6d257a3beb56ab419d97f132f1 linux-3.0/drivers/zorro/.gitignore -903841965c9127597bb40c1b18d7f559 linux-3.0/drivers/xen/xenfs/xenstored.c -124cf84fd285d2d14f1154cb63918393 linux-3.0/drivers/xen/xenfs/xenfs.h -9df13192f3c05bea21e3fa2e4b960745 linux-3.0/drivers/xen/xenfs/xenbus.c -0652b25ee1266f63aef7ffadf8be6fd5 linux-3.0/drivers/xen/xenfs/super.c -c91617e617b20233cbcc7984f30ae48a linux-3.0/drivers/xen/xenfs/privcmd.c -60e2f98a2e25344c1e1594de55156eb8 linux-3.0/drivers/xen/xenfs/Makefile -5811b93375d266888dcf16998a5adcd0 linux-3.0/drivers/xen/xencomm.c -16c5c119d468c378eb00c099055eb828 linux-3.0/drivers/xen/xenbus/xenbus_xs.c -36888f681a8d3410fec1d28e4699ced4 linux-3.0/drivers/xen/xenbus/xenbus_probe_frontend.c -19712a7dfb26402f745760ab199ffa4b linux-3.0/drivers/xen/xenbus/xenbus_probe_backend.c -ec2df540fa4c62b91982f3603af06af3 linux-3.0/drivers/xen/xenbus/xenbus_probe.h -d1dc774d9cd734177c619c8672589076 linux-3.0/drivers/xen/xenbus/xenbus_probe.c -7440aaada0e0a66dee031a257caf77f0 linux-3.0/drivers/xen/xenbus/xenbus_comms.h -e0d88fb0d71a5b568c725fe2cc960956 linux-3.0/drivers/xen/xenbus/xenbus_comms.c -86258d75dfeedada2287eb1e43250da5 linux-3.0/drivers/xen/xenbus/xenbus_client.c -209e3986a26d878874b595612209b255 linux-3.0/drivers/xen/xenbus/Makefile -0877870a256da77fc872848c95e36dea linux-3.0/drivers/xen/xen-balloon.c -350a21073fd8b12cbf8ff361af33542d linux-3.0/drivers/xen/tmem.c -87881e846adfb9977823cfb919f0a3f1 linux-3.0/drivers/xen/sys-hypervisor.c -57f37274b7f0f3ed4cc9fc65e96543c1 linux-3.0/drivers/xen/swiotlb-xen.c -44717fa6b54976629706ce76ce147f36 linux-3.0/drivers/xen/platform-pci.c -dd39be3d841b81cc08f642df82207d2c linux-3.0/drivers/xen/pci.c -a6993acbe112f5fd9ec8baed227223df linux-3.0/drivers/xen/manage.c -4ea8020a5891b7c1e975907ba7ff9dfb linux-3.0/drivers/xen/grant-table.c -738b93ce3f395bb890c2103609588581 linux-3.0/drivers/xen/gntdev.c -b195d85a8302aa354792f726d9a0d6e1 linux-3.0/drivers/xen/gntalloc.c -dbb108e543e6dabc70077fbe4be6cef1 linux-3.0/drivers/xen/features.c -e4d0c545a902dc4c74a69eeaedef3715 linux-3.0/drivers/xen/evtchn.c -fa94c360fd066f0904e54dd3a81d1841 linux-3.0/drivers/xen/events.c -b076af1b2ba05bc4d81e8d5163ef91ec linux-3.0/drivers/xen/cpu_hotplug.c -ead1cc36d68de979443a11e56f90e42c linux-3.0/drivers/xen/biomerge.c -00eca684cd740e27c3bdbbb40fb85175 linux-3.0/drivers/xen/balloon.c -36d095298306c90e77c3e60605b031e0 linux-3.0/drivers/xen/Makefile -6463234c14ef25504c9da2d9f01eb9e0 linux-3.0/drivers/xen/Kconfig -d1f347dd884df3f573cd18a1ba3de147 linux-3.0/drivers/watchdog/xen_wdt.c -3d68a0f027c003135df2a18750c150ed linux-3.0/drivers/watchdog/wm8350_wdt.c -d7aaa125d1b49ab11f6cc56bad5df3e3 linux-3.0/drivers/watchdog/wm831x_wdt.c -03faa34d00509eac51af8045535b180e linux-3.0/drivers/watchdog/wdt_pci.c -8efe502342348d738ec6ae1daeae3bc2 linux-3.0/drivers/watchdog/wdt977.c -ba83ef6181b5786176bc8c85fcb13929 linux-3.0/drivers/watchdog/wdt285.c -e36a28f4fcd4cbf0556265b86143bd3c linux-3.0/drivers/watchdog/wdt.c -1f236c0d8b77978768c7b36726ee09e4 linux-3.0/drivers/watchdog/wdrtas.c -cebf92dd5d124ed82fe4a40ed2ac8a28 linux-3.0/drivers/watchdog/wd501p.h -6e4bb4d96fdcccaf01a073cf01b3a7bf linux-3.0/drivers/watchdog/wafer5823wdt.c -84381482b10288348b3343a40c1fc04e linux-3.0/drivers/watchdog/w83977f_wdt.c -14b751ae1f36b89247de0705c73da026 linux-3.0/drivers/watchdog/w83877f_wdt.c -a9758e7b483f0dc83553d24cde892c99 linux-3.0/drivers/watchdog/w83697ug_wdt.c -a2197b8cb3cd428e24bef302e1e3409b linux-3.0/drivers/watchdog/w83697hf_wdt.c -274d5243b22199f7f9a0a5f21d2d0c98 linux-3.0/drivers/watchdog/w83627hf_wdt.c -bd9d457e273c377603bba05c8970fad9 linux-3.0/drivers/watchdog/txx9wdt.c -2a92bf7f7a41ed19475fbbfc890a5ee6 linux-3.0/drivers/watchdog/twl4030_wdt.c -0633c57fe88492a585e3a0c005a00733 linux-3.0/drivers/watchdog/ts72xx_wdt.c -b84d12e7fbc2556a5c6c41775bac2ab2 linux-3.0/drivers/watchdog/stmp3xxx_wdt.c -4173b5d9e37e836d1d4f9ee039814c56 linux-3.0/drivers/watchdog/sp805_wdt.c -9f9c7ad735bdc9530e813ffab9a5348d linux-3.0/drivers/watchdog/sp5100_tco.h -cc828b2cd81f92d5046aed1eff91a42d linux-3.0/drivers/watchdog/sp5100_tco.c -fe88cbf8a96cdc3ab5a8c44eeba5e747 linux-3.0/drivers/watchdog/softdog.c -928143f375341f8cadd625305fb0c68d linux-3.0/drivers/watchdog/smsc37b787_wdt.c -baf50e51d6222e238f844c964c67e47d linux-3.0/drivers/watchdog/shwdt.c -dfecfba176f0aca07733e8f05faf50ba linux-3.0/drivers/watchdog/scx200_wdt.c -90a30e32557321bd949d6b73b05c157a linux-3.0/drivers/watchdog/sch311x_wdt.c -511e37a58eceb19177b0075520c48f83 linux-3.0/drivers/watchdog/sc520_wdt.c -b4b4c01c0599191ea13fe485c889ed09 linux-3.0/drivers/watchdog/sc1200wdt.c -f58dbbb436e5bd388d248651ede057aa linux-3.0/drivers/watchdog/sbc_fitpc2_wdt.c -bd3e9fcd6378057a80fce5fadb9f50be linux-3.0/drivers/watchdog/sbc_epx_c3.c -429dc453b5d4b72dff725e9db36cc57a linux-3.0/drivers/watchdog/sbc8360.c -10b3075fb8fab0b3574d5b6a93474191 linux-3.0/drivers/watchdog/sbc7240_wdt.c -352075dd2bf82e5404d5a88008fa1f70 linux-3.0/drivers/watchdog/sbc60xxwdt.c -0a8fbff5c8b78907d97feee9d7d21392 linux-3.0/drivers/watchdog/sb_wdog.c -a8befe9373cfdf771c592f0925763e51 linux-3.0/drivers/watchdog/sa1100_wdt.c -76982b9ece1904b9ee7b5ea4a7729f59 linux-3.0/drivers/watchdog/s3c2410_wdt.c -e7acdf29ef3aae70cee0ede3b0abd1e1 linux-3.0/drivers/watchdog/riowd.c -32a316bf543766d45838d1f2714893a9 linux-3.0/drivers/watchdog/rdc321x_wdt.c -65aa409c3ae6c4111796d73c20bea10c linux-3.0/drivers/watchdog/rc32434_wdt.c -581073ac886515496554aa9c4f208b44 linux-3.0/drivers/watchdog/pnx833x_wdt.c -a48a7836489001b3c2caae281cfd77e6 linux-3.0/drivers/watchdog/pnx4008_wdt.c -a2178b7b59e63605fa0b7936c1bfb33f linux-3.0/drivers/watchdog/pika_wdt.c -099ebcc2cd820a80ba084f2c6e607530 linux-3.0/drivers/watchdog/pcwd_usb.c -e51f28416bed7b0550bfac6c9a4d6c7c linux-3.0/drivers/watchdog/pcwd_pci.c -2d08aaa61f4e8a196e65d21efa4e22ef linux-3.0/drivers/watchdog/pcwd.c -8a61f9bd7c76a3f4a30cb2ddad7345ab linux-3.0/drivers/watchdog/pc87413_wdt.c -c5847c8229d4e42db87e272994abe3ac linux-3.0/drivers/watchdog/orion_wdt.c -b6d0498afee8817fb48c81e6e6913295 linux-3.0/drivers/watchdog/omap_wdt.h -3505d2e9dafe5f4dda9907dd449a8d50 linux-3.0/drivers/watchdog/omap_wdt.c -96d1834ce3fa6c0dc76cd2af40f942fa linux-3.0/drivers/watchdog/octeon-wdt-nmi.S -79bab92dbf48cf4769c77482793eb49e linux-3.0/drivers/watchdog/octeon-wdt-main.c -8104345346495222c6ab39b0d07e3023 linux-3.0/drivers/watchdog/nv_tco.h -b95c9afbf45b376ca1f4e66b0aa90407 linux-3.0/drivers/watchdog/nv_tco.c -f37fbb9cfcb21b92babf0bf551b1d4ce linux-3.0/drivers/watchdog/nuc900_wdt.c -866ee5a32e202a971ab4e6f0872e7240 linux-3.0/drivers/watchdog/mv64x60_wdt.c -50f4da63beb89d1d4438ab7667457de3 linux-3.0/drivers/watchdog/mtx-1_wdt.c -b142632b228d8e1fb663218f871284b3 linux-3.0/drivers/watchdog/mpcore_wdt.c -e76be7ba781a134a1a7f192ae869406b linux-3.0/drivers/watchdog/mpc8xxx_wdt.c -30f195a61d6570ed0fea077202750537 linux-3.0/drivers/watchdog/mixcomwd.c -c5ff7ead04e759139f46eaebd2e827c2 linux-3.0/drivers/watchdog/max63xx_wdt.c -0f41c67fb9c77f70422e0bf274637660 linux-3.0/drivers/watchdog/machzwd.c -16304526f6d5a1b51580abc5eaa785e6 linux-3.0/drivers/watchdog/m54xx_wdt.c -c134319a3df87a5436f7ae92153dd1a7 linux-3.0/drivers/watchdog/lantiq_wdt.c -9bf49847f2db4321d8703ee7b5f00d34 linux-3.0/drivers/watchdog/ks8695_wdt.c -d33d3e57da162b2efa3439b2edb88c4f linux-3.0/drivers/watchdog/jz4740_wdt.c -9cdd699aaed7778e1a075fbd9e933ff7 linux-3.0/drivers/watchdog/ixp4xx_wdt.c -69b83509ab77a844772df967f9f94252 linux-3.0/drivers/watchdog/ixp2000_wdt.c -76d81c705ab1bde4cc19e65550b3ce19 linux-3.0/drivers/watchdog/it87_wdt.c -a0827d68349c3f2cf2f69dcf40f73b0f linux-3.0/drivers/watchdog/it8712f_wdt.c -4c66d13782512364a04e5a7c0156b89d linux-3.0/drivers/watchdog/iop_wdt.c -50166e5da10b017aa865cf8c2577f4e7 linux-3.0/drivers/watchdog/intel_scu_watchdog.h -e35a236000071333713a66021e25ea4b linux-3.0/drivers/watchdog/intel_scu_watchdog.c -1e3896e2b7307af1192e1635353ecde6 linux-3.0/drivers/watchdog/indydog.c -49f4bd8431107a0c49f1af8afca2ce55 linux-3.0/drivers/watchdog/imx2_wdt.c -a80d4ed5e80ac15987ac0fd396d90ecd linux-3.0/drivers/watchdog/ibmasr.c -002fb148f1668059837b6810cb2f6ed3 linux-3.0/drivers/watchdog/ib700wdt.c -2d33981e6e9759bfa4b7d1139d88d44f linux-3.0/drivers/watchdog/iTCO_wdt.c -c741091304cf142aacfad4b3fa683167 linux-3.0/drivers/watchdog/iTCO_vendor_support.c -37b6a79f436737cf14ff67e871575a9b linux-3.0/drivers/watchdog/iTCO_vendor.h -139fea168c2d19b2e585d58b3fbf48f7 linux-3.0/drivers/watchdog/i6300esb.c -f87eb2887961eb830b0127f9db6ec114 linux-3.0/drivers/watchdog/hpwdt.c -7b24570e071ebab3f5986f8a9878e8b7 linux-3.0/drivers/watchdog/geodewdt.c -467bca29d4d3b52b196f9e27e64ba1f7 linux-3.0/drivers/watchdog/gef_wdt.c -ca15264387afa6ebafbe6269db62fb4d linux-3.0/drivers/watchdog/f71808e_wdt.c -004139e27ea18766c7f8cd940da7364c linux-3.0/drivers/watchdog/eurotechwdt.c -e54b5a8dec1d7b1e1ca4e425fd73ac16 linux-3.0/drivers/watchdog/ep93xx_wdt.c -ae9f0591950c14cec1d1ad789fbb329c linux-3.0/drivers/watchdog/davinci_wdt.c -c3d279ba5b1b5c039fa01d3bced44b87 linux-3.0/drivers/watchdog/cpwd.c -5144ca7f858e198b76cfba1639e38ddf linux-3.0/drivers/watchdog/cpu5wdt.c -a5c811035bc743e46a8dcd52c6599405 linux-3.0/drivers/watchdog/coh901327_wdt.c -d21468364b43d198f3a7280566bcd33e linux-3.0/drivers/watchdog/booke_wdt.c -742346b280542cac88e4d38d937e7a74 linux-3.0/drivers/watchdog/bfin_wdt.c -93fbd36480ebbae02c166e404d4c7f78 linux-3.0/drivers/watchdog/bcm63xx_wdt.c -e99efc17358d6f78688cfca0cb4eadb0 linux-3.0/drivers/watchdog/bcm47xx_wdt.c -cc7313065a0fb8c51273e25b48f0c33b linux-3.0/drivers/watchdog/ath79_wdt.c -3794fe636b687146fefae65613bc446f linux-3.0/drivers/watchdog/at91sam9_wdt.c -d00efc2698eaed6c37c263a93f8bcb36 linux-3.0/drivers/watchdog/at91rm9200_wdt.c -5cd80c49baa8e564e63424e8f19b863d linux-3.0/drivers/watchdog/at32ap700x_wdt.c -e9680e22ed50a2acb2d5fdfcbffd6b18 linux-3.0/drivers/watchdog/ar7_wdt.c -629e0a8aa23c4987ed604988307e1bde linux-3.0/drivers/watchdog/alim7101_wdt.c -bae687b511dd9aa8599af8cb0e34a9f7 linux-3.0/drivers/watchdog/alim1535_wdt.c -7806eef2044ab08002661facecec7585 linux-3.0/drivers/watchdog/adx_wdt.c -c345e676b692c7fb8834362772d86dea linux-3.0/drivers/watchdog/advantechwdt.c -953721331ca7214fac725fc37e019d0d linux-3.0/drivers/watchdog/acquirewdt.c -24183c4b7adc70a7e24543ead1636965 linux-3.0/drivers/watchdog/Makefile -47e5ab5068f20daf688d31502d644c01 linux-3.0/drivers/watchdog/Kconfig -281cee259869058c58a0817ae5a44b01 linux-3.0/drivers/w1/w1_netlink.h -77bac2e8fb230521bb1c74750718fd8c linux-3.0/drivers/w1/w1_netlink.c -f065c6ae236f68e732188211ba6c9eba linux-3.0/drivers/w1/w1_log.h -7f319ab51bbbb5b4f32c325d942a309d linux-3.0/drivers/w1/w1_io.c -f583c9355985d0ecb35970f9b29d665e linux-3.0/drivers/w1/w1_int.h -cf4ed7cf8b5eae816a63e402545071fe linux-3.0/drivers/w1/w1_int.c -0a318e5a9621ec2c8124513bfd2038a7 linux-3.0/drivers/w1/w1_family.h -9998ca0a86803c5f7acdbdb1c8bedac4 linux-3.0/drivers/w1/w1_family.c -7faa09a5b3e3e9647256a14fa5a8b8cd linux-3.0/drivers/w1/w1.h -5628a158a079e4d8e38755936dfdd96d linux-3.0/drivers/w1/w1.c -6269c1e9e1bfe97342ce1d2797f5d7f6 linux-3.0/drivers/w1/slaves/w1_therm.c -82cd2553c0fcb5197a9dd52246dc11cb linux-3.0/drivers/w1/slaves/w1_smem.c -e4be658beff03d22027f24a400355a4e linux-3.0/drivers/w1/slaves/w1_ds2780.h -0362d38899e273dedfd00ad0c65a956f linux-3.0/drivers/w1/slaves/w1_ds2780.c -0a4f975a99d6104a5e07fa2c61cdb9ed linux-3.0/drivers/w1/slaves/w1_ds2760.h -17a19f2b7bf1c3c4895951876fc9198f linux-3.0/drivers/w1/slaves/w1_ds2760.c -d8d05b29e8d0e02c07abfbb678228eb6 linux-3.0/drivers/w1/slaves/w1_ds2433.c -e864a6b64daac92bac785092311e1109 linux-3.0/drivers/w1/slaves/w1_ds2431.c -6da13455a3614e1230c90bfdd0487afc linux-3.0/drivers/w1/slaves/w1_ds2423.c -33f894763a5a66c02417508f3c86ad7a linux-3.0/drivers/w1/slaves/w1_ds2408.c -49d75cae1dde4c8352508e49fe1904c6 linux-3.0/drivers/w1/slaves/w1_bq27000.c -3b0f4d5dfcee35d53b4f72670dd81db7 linux-3.0/drivers/w1/slaves/Makefile -87c13c6e14db2fb2988b216eb7884132 linux-3.0/drivers/w1/slaves/Kconfig -74cc7c981672616462836915fe137d9b linux-3.0/drivers/w1/masters/w1-gpio.c -d03b05ccd66f2a8663c3cccf2ccc349e linux-3.0/drivers/w1/masters/omap_hdq.c -011dcfa0f6dfce4d0f793136defd7c1a linux-3.0/drivers/w1/masters/mxc_w1.c -ce3295b9c968f8222bbee596bcacad5c linux-3.0/drivers/w1/masters/matrox_w1.c -b75956dc1c6d19886378ca3d13a888ae linux-3.0/drivers/w1/masters/ds2490.c -1307e8ff6f87769510fcbcfc6324bfdc linux-3.0/drivers/w1/masters/ds2482.c -e244ac3afdd6133cd4bad669e5caf317 linux-3.0/drivers/w1/masters/ds1wm.c -7a92f360b4ae49108f36f0e6aafea195 linux-3.0/drivers/w1/masters/Makefile -ed17d848abbe4ebdb4cc73addf527fa5 linux-3.0/drivers/w1/masters/Kconfig -f2150c14def54323eb410255091defe3 linux-3.0/drivers/w1/Makefile -f5a776e9f3aca5be135905545e27b0b6 linux-3.0/drivers/w1/Kconfig -94c5768df11e87217ee8bf5cddea7f3a linux-3.0/drivers/vlynq/vlynq.c -22b6786ae4b6bc58f2d073f5324c3407 linux-3.0/drivers/vlynq/Makefile -1fbaa06130ffff0285faeda964972150 linux-3.0/drivers/vlynq/Kconfig -fe50a76cfacef60972f6df574a5ef03b linux-3.0/drivers/virtio/virtio_ring.c -485b85c2010629fa81aad6ddc6eb84bf linux-3.0/drivers/virtio/virtio_pci.c -2d072b450cdaf229079a04e67e547c8b linux-3.0/drivers/virtio/virtio_balloon.c -0e3d7f11e068e7b52d0428803a303e09 linux-3.0/drivers/virtio/virtio.c -1da31cf5473923b4ae49ad08faa3ca15 linux-3.0/drivers/virtio/config.c -dc263302b4e2053f112e768ecabfb751 linux-3.0/drivers/virtio/Makefile -963aaace4627e5e28f7d793aa3fc9795 linux-3.0/drivers/virtio/Kconfig -caae6b11b7cd5c7bad5ecd3ef04690e0 linux-3.0/drivers/video/xilinxfb.c -3f7292090f4bd2d6a32b143bd9a9a42f linux-3.0/drivers/video/xen-fbfront.c -ac63972d66e5c1a368aa83103cd55434 linux-3.0/drivers/video/wmt_ge_rops.h -60eda0790c1bc047365c44bc80e181ce linux-3.0/drivers/video/wmt_ge_rops.c -03e82cf7a689e41c76dbdeca86435ba2 linux-3.0/drivers/video/wm8505fb_regs.h -22587ea01075a34255eaece9b10c189d linux-3.0/drivers/video/wm8505fb.c -ffaad4f5c5c8096f77ce50c0b058420c linux-3.0/drivers/video/w100fb.h -4ec282b81b2131985440c631c779b565 linux-3.0/drivers/video/w100fb.c -5f88dcf2f730a52e0e4dcc6d593044ee linux-3.0/drivers/video/vt8623fb.c -42251f061a9e75d4d3ef0d053cafe655 linux-3.0/drivers/video/vt8500lcdfb.h -e4ed7cc99e8f460ca9ad9df67af53016 linux-3.0/drivers/video/vt8500lcdfb.c -78a788107079dfc4c812fbb7a2403a0c linux-3.0/drivers/video/via/vt1636.h -86adffab7b4a179d368c4cce8b1949f7 linux-3.0/drivers/video/via/vt1636.c -cdfbd25cd2f7312e6c03f85a96ef57e3 linux-3.0/drivers/video/via/viamode.h -79efec500921ed17a6a8f4e0a8722cdb linux-3.0/drivers/video/via/viamode.c -f341e105e96163d08c67655e20e495b9 linux-3.0/drivers/video/via/viafbdev.h -fc66b0270d649b4380718aed87a5101c linux-3.0/drivers/video/via/viafbdev.c -2df2e072f2a9a86c5d9cc4cc07fd7a23 linux-3.0/drivers/video/via/via_utility.h -c06494a8c21c21d088b4735487533a17 linux-3.0/drivers/video/via/via_utility.c -12ba36367f6c54e84e8fbb9074976571 linux-3.0/drivers/video/via/via_modesetting.h -76f12fde0804fdef2885e9aa1c6abffd linux-3.0/drivers/video/via/via_modesetting.c -1350e1dd6499f80f2e7900f362d28815 linux-3.0/drivers/video/via/via_i2c.c -afa1834c7463a033961ce492fba621ba linux-3.0/drivers/video/via/via_clock.h -9f1e43573cae6b22d23c138d4378d230 linux-3.0/drivers/video/via/via_clock.c -f99ba151a5f336597fa0e1d4f4f24404 linux-3.0/drivers/video/via/via-gpio.c -b50738828b467fc5fe86321b68276cc1 linux-3.0/drivers/video/via/via-core.c -a50b63cc0425c81c98cc71a15d05c974 linux-3.0/drivers/video/via/tblDPASetting.h -d393d82c02358c897c933942bcb19c6e linux-3.0/drivers/video/via/tblDPASetting.c -f3278ff3c2409cfb6f0ea4e2f048a4fc linux-3.0/drivers/video/via/share.h -19d9d8fb319591d7679da2b8c4a77516 linux-3.0/drivers/video/via/lcd.h -eb157fa36e047e8ea0638e437b51c454 linux-3.0/drivers/video/via/lcd.c -55c6d429a9cd44089b60be4ff5b850d5 linux-3.0/drivers/video/via/ioctl.h -3d1ae6a1bd7d7f5e650cd94a29617efa linux-3.0/drivers/video/via/ioctl.c -4355693b0671597259db5e7b6e6d8338 linux-3.0/drivers/video/via/hw.h -fa36d084a264cdf51ba8061c0cbde951 linux-3.0/drivers/video/via/hw.c -fa8ebe3c2fa17cf3c3017dcf0fc2386f linux-3.0/drivers/video/via/global.h -92f8cc8fc1c8b19ba29f82d485949834 linux-3.0/drivers/video/via/global.c -c8fab041ad77a4e133b6bb6552ae6a21 linux-3.0/drivers/video/via/dvi.h -10821e694a02bdf77e378f3d7fccaf4a linux-3.0/drivers/video/via/dvi.c -68f1e77944b3368ec04f6efb3a7ebc28 linux-3.0/drivers/video/via/debug.h -7c48c44275a64c37d4ce208ecf9327c9 linux-3.0/drivers/video/via/chip.h -3d6b0cdaf4ddcbc632a9ecc8a7362d06 linux-3.0/drivers/video/via/accel.h -13fe42a675a848693f36211d500b136d linux-3.0/drivers/video/via/accel.c -dffbc80190a5860f57dca1bf78ddd7da linux-3.0/drivers/video/via/Makefile -943969f2ba187aba9fc05f7764ca4e5e linux-3.0/drivers/video/vgastate.c -d8426aa55899296143f476abcbff9d33 linux-3.0/drivers/video/vga16fb.c -70df7578905e01d3badd50dce23030a5 linux-3.0/drivers/video/vfb.c -8bd6b13241162d891f2d0f090dabae98 linux-3.0/drivers/video/vesafb.c -512dad8e5d24e56701c7ebb35a04c7c3 linux-3.0/drivers/video/vermilion/vermilion.h -045fc8270bb96a742682ee1e0c180f5b linux-3.0/drivers/video/vermilion/vermilion.c -d00bbf154fbf41b8b55a83a9b448c4d8 linux-3.0/drivers/video/vermilion/cr_pll.c -c5ca35dfcf6feeac8c5c4c172b96a7b6 linux-3.0/drivers/video/vermilion/Makefile -efa47c3959efa31edeb8a20151878f78 linux-3.0/drivers/video/valkyriefb.h -64d57d0536daf7b6c1f20834162c37bb linux-3.0/drivers/video/valkyriefb.c -97afb47f6b572985d5aa711329191fe2 linux-3.0/drivers/video/uvesafb.c -5a5b75b7fd2369401c2c0bfb3e3b5f45 linux-3.0/drivers/video/udlfb.c -41597b187e904fc66942cf2824624706 linux-3.0/drivers/video/tridentfb.c -892419e68f9472c4e0612227af1791d3 linux-3.0/drivers/video/tmiofb.c -720e76cdea9abe01ed1409d7e852e9f4 linux-3.0/drivers/video/tgafb.c -9e74a12e5acf11967165bf31446a17f7 linux-3.0/drivers/video/tdfxfb.c -c9f587e5743156e22eb9895a12a8874f linux-3.0/drivers/video/tcx.c -aad5dba2ee72e0fde094bff0cfe1e575 linux-3.0/drivers/video/sysimgblt.c -6f9b565bf5a7dbb7db07ee4b3b022af1 linux-3.0/drivers/video/sysfillrect.c -e35a348bafca6765e593eb83805129d7 linux-3.0/drivers/video/syscopyarea.c -64b9a047a2d3afdd83b383fff144f1d7 linux-3.0/drivers/video/svgalib.c -8997925fe0b19189cea0f6d14648ad47 linux-3.0/drivers/video/sunxvr500.c -7ee50fbc7bd0085d701c24334c8f2b0c linux-3.0/drivers/video/sunxvr2500.c -be04148798ad81ac9b1e78b8db021e80 linux-3.0/drivers/video/sunxvr1000.c -0ff4d79ae1c52b127736540a6d87a670 linux-3.0/drivers/video/stifb.c -74f2d9cfee38a1151ff619ba75ab989b linux-3.0/drivers/video/sticore.h -f2b2188a832966a227e42d4c70526aa8 linux-3.0/drivers/video/sstfb.c -faa813c8ca8947509b56d524dea46979 linux-3.0/drivers/video/sm501fb.c -4dcfad81f062776aed8a40a56f75419d linux-3.0/drivers/video/skeletonfb.c -7b82e6891e54b9d721448a128f71fa65 linux-3.0/drivers/video/sis/vstruct.h -223caf5eff1a5fa97b256d124487d73c linux-3.0/drivers/video/sis/vgatypes.h -4f1f7288f5b1db9350122a790632979b linux-3.0/drivers/video/sis/sis_main.h -b7a04ec041fc4b313d8bc981fab44fb9 linux-3.0/drivers/video/sis/sis_main.c -f8a844601f732f634466d4521341e5d7 linux-3.0/drivers/video/sis/sis_accel.h -705d5b0e3d25c0e4fd18a898104d33dd linux-3.0/drivers/video/sis/sis_accel.c -e215fef360de2b401a7f24c8cd90b2f3 linux-3.0/drivers/video/sis/sis.h -318d990ab1e9b5725718b5f0814afcf2 linux-3.0/drivers/video/sis/oem310.h -748768680d3ee1b38e9649b740591046 linux-3.0/drivers/video/sis/oem300.h -08b05651ebd507b3626188d3438814f7 linux-3.0/drivers/video/sis/initextlfb.c -f95ecfb9b50d98aea3b44a05ad7054c7 linux-3.0/drivers/video/sis/initdef.h -3db8ecefb26974742e6dbdd1157412e6 linux-3.0/drivers/video/sis/init301.h -a7bdee9d333794813ad711acf66687a2 linux-3.0/drivers/video/sis/init301.c -866e3396d1dac7df814c679d308f6f3e linux-3.0/drivers/video/sis/init.h -0446235e90d6fea09f8a38cd3ec6a989 linux-3.0/drivers/video/sis/init.c -f1e0a3de6c0822d4c9e455db8e629274 linux-3.0/drivers/video/sis/Makefile -3b4fceb9193f6dd7624194537de0c1ff linux-3.0/drivers/video/sis/310vtbl.h -57eca6e6ccbb2d7b1fb87e15b8449d1a linux-3.0/drivers/video/sis/300vtbl.h -27789247e85d0c35b7573e7a85cf0337 linux-3.0/drivers/video/sh_mobile_meram.h -3f9918cecb6001e38522903085375697 linux-3.0/drivers/video/sh_mobile_meram.c -3e16009c5f8c3d7b90de896c26673135 linux-3.0/drivers/video/sh_mobile_lcdcfb.h -f77c9a544322f22fcb14d54e7a699463 linux-3.0/drivers/video/sh_mobile_lcdcfb.c -05be820c17865f2245e6a76a5f33e3b0 linux-3.0/drivers/video/sh_mobile_hdmi.c -bb0caaff6faf6685179d5e21d96ecff5 linux-3.0/drivers/video/sh_mipi_dsi.c -4997b9fe674bd7ad4e060ab3574aba45 linux-3.0/drivers/video/sh7760fb.c -37414a8e9b30e486cb980cd9d3052193 linux-3.0/drivers/video/sgivwfb.c -37d47818bfe1bd4f8006240b063ac44b linux-3.0/drivers/video/sbuslib.h -38c6ec61ccf619e89b9116a5bd21559c linux-3.0/drivers/video/sbuslib.c -0d783bb87d9395cceab91b4ce4981c32 linux-3.0/drivers/video/savage/savagefb_driver.c -cd4c2b55878231f26ca2e1e9399bb7e6 linux-3.0/drivers/video/savage/savagefb_accel.c -d67dcdfb76befb66f32e152479eab515 linux-3.0/drivers/video/savage/savagefb.h -9439ddb1f375e38c90c303d10794f7cd linux-3.0/drivers/video/savage/savagefb-i2c.c -e4a58e6a74c5383962e9df04f7933e39 linux-3.0/drivers/video/savage/Makefile -f3f789176f1412d6b8af171fb90d6a11 linux-3.0/drivers/video/sa1100fb.h -dbe47d93f29c717626788772a99f9c4e linux-3.0/drivers/video/sa1100fb.c -80a28a6b2d950982b734a2bc9c5d2669 linux-3.0/drivers/video/s3fb.c -6c4a4de1e35e236cf6ed3aca7665846e linux-3.0/drivers/video/s3c2410fb.h -9ceb5ed7de9ad6fd6ac717fbd700db53 linux-3.0/drivers/video/s3c2410fb.c -f835b05e8f19c5bcd630fadb8c2efb39 linux-3.0/drivers/video/s3c-fb.c -42aa3ed6d49746db62601b1a3c918764 linux-3.0/drivers/video/s1d13xxxfb.c -fc2069e762456e4502c5847c6c96584a linux-3.0/drivers/video/riva/rivafb.h -a35ff0e8786bebb3e974ab506d527531 linux-3.0/drivers/video/riva/rivafb-i2c.c -1eb038c01463fc463b43b9cc3b8ccf41 linux-3.0/drivers/video/riva/riva_tbl.h -46d364ffb53445da0ef1eac3f7840fa4 linux-3.0/drivers/video/riva/riva_hw.h -eedc639d66de0e70c514a3c1a753ef36 linux-3.0/drivers/video/riva/riva_hw.c -f75cb44114ed576625b0f83dd38996b6 linux-3.0/drivers/video/riva/nvreg.h -d903603aac4e37e50e51c89a0a55598f linux-3.0/drivers/video/riva/nv_type.h -7b5309711a3f044cf8b0dbf0cb3520c9 linux-3.0/drivers/video/riva/nv_driver.c -7d462b29022531e82b62f9de9eacbaee linux-3.0/drivers/video/riva/fbdev.c -6f9a38036d60db8aced4a024d1eee782 linux-3.0/drivers/video/riva/Makefile -c99ea935e287fa4acf89abff1daa98e4 linux-3.0/drivers/video/q40fb.c -1271b8c707a3f107c706ca47f1a27320 linux-3.0/drivers/video/pxafb.h -a0b8eec9e13865a12ea4774cc9e7ff39 linux-3.0/drivers/video/pxafb.c -882fdcba8c73ed7c6bcd4eecb453ff35 linux-3.0/drivers/video/pxa3xx-gcu.h -74444462e937d2763fd53cebee2536c0 linux-3.0/drivers/video/pxa3xx-gcu.c -7031bef29587a74dc649e1f310ca1f99 linux-3.0/drivers/video/pxa168fb.h -0593f7a81b573576a550ac5f46888189 linux-3.0/drivers/video/pxa168fb.c -8cd67fdce8a94a9cc99a1d7d16c3af87 linux-3.0/drivers/video/pvr2fb.c -95592b3311cc5bc318c9c080b0c8883b linux-3.0/drivers/video/ps3fb.c -a7a77621a2fa7e822e1c2f5c46eae89a linux-3.0/drivers/video/pnx4008/sdum.h -3b961d86fa481c7ed93ade02f3f15503 linux-3.0/drivers/video/pnx4008/sdum.c -7586c3a0cc884b4216667e4d32460c84 linux-3.0/drivers/video/pnx4008/pnxrgbfb.c -a78bf3291180a670321b8270db1e2bb2 linux-3.0/drivers/video/pnx4008/fbcommon.h -9cf6ef248764697905e7c3ad836ab0fb linux-3.0/drivers/video/pnx4008/dum.h -7c6ddfe8d4d9ae83c8a21b02e945b944 linux-3.0/drivers/video/pnx4008/Makefile -9dc8a3afe5941a364a0c14e742ace3e9 linux-3.0/drivers/video/pmagb-b-fb.c -5d4eecfc06736a20ae366943d6302a09 linux-3.0/drivers/video/pmag-ba-fb.c -f353b9b6b8f50489f8655bf163b98ee2 linux-3.0/drivers/video/pmag-aa-fb.c -1b40cf2d6bbd5cfceb473a8c8fc42b7a linux-3.0/drivers/video/pm3fb.c -6c3a8dd1c9c82b7946437c3825fcfaeb linux-3.0/drivers/video/pm2fb.c -71f747097ea0164f58e6e0b3a48c5cda linux-3.0/drivers/video/platinumfb.h -b7a5c2267b3d93a7597b3d7aba1acf72 linux-3.0/drivers/video/platinumfb.c -cffa2a5de8ce8fa3dc11110918608b3d linux-3.0/drivers/video/p9100.c -6511e2220a5c49086130d87f905aad40 linux-3.0/drivers/video/output.c -994a8d1af081edfdb25164ee8ab89ecf linux-3.0/drivers/video/omap2/vrfb.c -e54c44223581c0a0ca23dfc8e6143c97 linux-3.0/drivers/video/omap2/vram.c -8aa213f5fb9a91dd7a8f5fbd0280ab51 linux-3.0/drivers/video/omap2/omapfb/omapfb.h -356cf7a2575c38325c024491447c2f4b linux-3.0/drivers/video/omap2/omapfb/omapfb-sysfs.c -897fa564b9663e3ca9a321f7c8ba6a2a linux-3.0/drivers/video/omap2/omapfb/omapfb-main.c -397a5c0d17e807092b3c73eca1c9b668 linux-3.0/drivers/video/omap2/omapfb/omapfb-ioctl.c -b11918b5d3a8635dd97558e8627be11e linux-3.0/drivers/video/omap2/omapfb/Makefile -027b96d393ac8f4a52fd52d10be425ac linux-3.0/drivers/video/omap2/omapfb/Kconfig -d2b63fa197a324f89322587c05207db7 linux-3.0/drivers/video/omap2/dss/venc.c -a498c39be130a85dc0e9fb86912e5518 linux-3.0/drivers/video/omap2/dss/sdi.c -37dc798bd0a1174f02ffdc37bc21e565 linux-3.0/drivers/video/omap2/dss/rfbi.c -f3fe9d7ff90b8b33878258913cc14f54 linux-3.0/drivers/video/omap2/dss/overlay.c -c2d2c680c99eddfb6a0350263544ddb5 linux-3.0/drivers/video/omap2/dss/manager.c -5a6adee9d5b72e7a594d492960ed8949 linux-3.0/drivers/video/omap2/dss/hdmi_omap4_panel.c -e608cb4218cce13990a766af48292287 linux-3.0/drivers/video/omap2/dss/hdmi.h -c7924b112fc4ac1039133073efec7528 linux-3.0/drivers/video/omap2/dss/hdmi.c -b9be339456c4ce180905d4386a94a47b linux-3.0/drivers/video/omap2/dss/dss_features.h -96d77d294e8af5abc0e531851313d275 linux-3.0/drivers/video/omap2/dss/dss_features.c -4710823cad464980fc0ef99e35fc13a0 linux-3.0/drivers/video/omap2/dss/dss.h -f2135fa91af16dd5e354d31daed3fdec linux-3.0/drivers/video/omap2/dss/dss.c -ebe2b959f911b293593a88cacf46a02b linux-3.0/drivers/video/omap2/dss/dsi.c -2e6b021a3705ef975f779f844eadd1b8 linux-3.0/drivers/video/omap2/dss/dpi.c -f8ca607d400dfe974b93e082ced0b8bd linux-3.0/drivers/video/omap2/dss/display.c -f8a9d4869ec7ae35389e8fea7fdccab0 linux-3.0/drivers/video/omap2/dss/dispc.h -3cb7646b47cdad81f89201c3be279d19 linux-3.0/drivers/video/omap2/dss/dispc.c -50347ac4d8c0708d555ddbc9fe543bf5 linux-3.0/drivers/video/omap2/dss/core.c -422cec942842ae07498e262cefd22ff9 linux-3.0/drivers/video/omap2/dss/Makefile -e999511a6ba07f56baecd4ad785bd962 linux-3.0/drivers/video/omap2/dss/Kconfig -1577df6bf859d448acf686b8d7c086a6 linux-3.0/drivers/video/omap2/displays/panel-tpo-td043mtea1.c -8df30c70dfeb27dc9425634a100ad4f7 linux-3.0/drivers/video/omap2/displays/panel-taal.c -fc1bd9e928f343b35014c7248207ff86 linux-3.0/drivers/video/omap2/displays/panel-sharp-ls037v7dw01.c -8ca7c4e463b806a1dc5fef138cd5f8f8 linux-3.0/drivers/video/omap2/displays/panel-nec-nl8048hl11-01b.c -2baa7b6972da0acb1aba1dad35ef45e1 linux-3.0/drivers/video/omap2/displays/panel-lgphilips-lb035q02.c -921d1798eabe2b53aba17e311b3df28c linux-3.0/drivers/video/omap2/displays/panel-generic-dpi.c -2946c1ccb72aa96a9f480474bf46c5a9 linux-3.0/drivers/video/omap2/displays/panel-acx565akm.c -6f81dd6085e6171e2497403e90ff40d3 linux-3.0/drivers/video/omap2/displays/Makefile -fd0f85e37960034de516b5536f64aeed linux-3.0/drivers/video/omap2/displays/Kconfig -c7b6471c517cb7bf0dc8b5698732844c linux-3.0/drivers/video/omap2/Makefile -c27ed44c2d2e6b9fcdfdaa1fd00875e3 linux-3.0/drivers/video/omap2/Kconfig -9f644639253bbffd3e5206e187f9cbfd linux-3.0/drivers/video/omap/sossi.c -8378f6bef912cb53889b30e8ac21462c linux-3.0/drivers/video/omap/rfbi.c -7294221fb2f4d9be6b087f2ed86099cb linux-3.0/drivers/video/omap/omapfb_main.c -c13cfe5e28a4c9c2528ade9eb1a1198e linux-3.0/drivers/video/omap/omapfb.h -c584cb4cf71ab035669de97235a3eac6 linux-3.0/drivers/video/omap/lcdc.h -aee6c482b4abfb3d8e8d86b15a1782e3 linux-3.0/drivers/video/omap/lcdc.c -2c169781cb91ae68e87106d3b6ae424b linux-3.0/drivers/video/omap/lcd_palmz71.c -8b548602435755603730b6b8cdbc66a3 linux-3.0/drivers/video/omap/lcd_palmtt.c -9199b42bd6ac059a624e704919e430ca linux-3.0/drivers/video/omap/lcd_palmte.c -62dd75f042ac4bcaf8ee8c81cfd0950c linux-3.0/drivers/video/omap/lcd_overo.c -0b51fe536addf9ceef3c830275d2228e linux-3.0/drivers/video/omap/lcd_osk.c -c842fbae6be3d97f9489cbb912a81e0b linux-3.0/drivers/video/omap/lcd_omap3evm.c -690ca3c821ed210edcca6f131f162cb0 linux-3.0/drivers/video/omap/lcd_omap3beagle.c -6505c0746a405875c4908f5a66433206 linux-3.0/drivers/video/omap/lcd_mipid.c -2f246027aafc3d0cca7d5a76d402ce04 linux-3.0/drivers/video/omap/lcd_ldp.c -0ecc951c3198ff0796dc9c96f6ab798d linux-3.0/drivers/video/omap/lcd_inn1610.c -5ee1c6a6a2cf7bca770c633c8dd19f44 linux-3.0/drivers/video/omap/lcd_inn1510.c -dd286759ac0ad2fcc9c04b6e9669b9bc linux-3.0/drivers/video/omap/lcd_htcherald.c -21037dfefdeeb2aa9c815290d77e7a9d linux-3.0/drivers/video/omap/lcd_h4.c -4b9f0ee006a992736f4b1ec78429c2b7 linux-3.0/drivers/video/omap/lcd_h3.c -8d6d2c45889ff3205d582d5d2e5c7e74 linux-3.0/drivers/video/omap/lcd_apollon.c -235ea3ad48042cdad6f461236b88a681 linux-3.0/drivers/video/omap/lcd_ams_delta.c -a0d31970574904cb2b6935a2e7d641fe linux-3.0/drivers/video/omap/lcd_2430sdp.c -f0f79be5b5e930c389df3e766e5fab4a linux-3.0/drivers/video/omap/hwa742.c -432fc4a491486f8c199528cba126ea9b linux-3.0/drivers/video/omap/dispc.h -2e56a55a6fe080e4a3369ed0d97a9d0d linux-3.0/drivers/video/omap/dispc.c -b50f00ab37073bb129b6622ca8b2ffd7 linux-3.0/drivers/video/omap/blizzard.c -6308d888104b9a1e878f0daf6aad3246 linux-3.0/drivers/video/omap/Makefile -409aea692daa29c8e1ff3771e24add0f linux-3.0/drivers/video/omap/Kconfig -bfb0245d34324da7fb55d25e3f578a39 linux-3.0/drivers/video/offb.c -279e6c95a59e18519fb70024647022cc linux-3.0/drivers/video/nvidia/nvidia.c -c71b73fa4339a2a14919e766659a4a7f linux-3.0/drivers/video/nvidia/nv_type.h -072e9d914908a5636b1dd8e91ee95fa0 linux-3.0/drivers/video/nvidia/nv_setup.c -3b098017741a512b1357f3ff195a12a1 linux-3.0/drivers/video/nvidia/nv_proto.h -619995eddc32c4ab83f2e611d094e78d linux-3.0/drivers/video/nvidia/nv_of.c -2a633056eea3845d89623daabcbab67f linux-3.0/drivers/video/nvidia/nv_local.h -1380b27d932310c33c9b569f3e511192 linux-3.0/drivers/video/nvidia/nv_i2c.c -0b9fe1f5ca32710b13c68a5967004200 linux-3.0/drivers/video/nvidia/nv_hw.c -1faeb4e861678afe65cded19bc39e9a0 linux-3.0/drivers/video/nvidia/nv_dma.h -b796a676a43b512171dc66ded7c7636b linux-3.0/drivers/video/nvidia/nv_backlight.c -2b5715fd9740081079b8556f06bb9f73 linux-3.0/drivers/video/nvidia/nv_accel.c -358c6df2f53f72e4bc08314552bb5898 linux-3.0/drivers/video/nvidia/Makefile -4ee1d1f29abca3fd36d698c3844d7c53 linux-3.0/drivers/video/nuc900fb.h -5679fcbb5b7c3ebe0b3ccde7e1728698 linux-3.0/drivers/video/nuc900fb.c -8bee2dff7431aa7aa3501affdc416d3e linux-3.0/drivers/video/neofb.c -8d9c4eba50a1c712a87f12a51fc0c08b linux-3.0/drivers/video/n411.c -dda6482573e879c68476bd19222794f5 linux-3.0/drivers/video/mxsfb.c -cb84b9c20a94c55f35f8ef1763ceb1bc linux-3.0/drivers/video/mx3fb.c -3e9e714c857ce97fbf9cf21cba371dc0 linux-3.0/drivers/video/msm/msm_fb.c -196161261bfaa02e49fb6e3fdddaf2d8 linux-3.0/drivers/video/msm/mdp_scale_tables.h -2be4605f24df980cbb52b994f35eac79 linux-3.0/drivers/video/msm/mdp_scale_tables.c -6106f45d959790a2c4b0179270737f69 linux-3.0/drivers/video/msm/mdp_ppp.c -fb3571a0548ad94fe89fd5ca4aef8890 linux-3.0/drivers/video/msm/mdp_hw.h -e35ccefe81d15203ab5ff94865a94d4e linux-3.0/drivers/video/msm/mdp_csc_table.h -686d36e7740e445ccc102c2dc69bc314 linux-3.0/drivers/video/msm/mdp.c -1ef5a1817eae465a67bb7239428756fd linux-3.0/drivers/video/msm/mddi_hw.h -f6656434854e1bdae3a358a6c1b6b957 linux-3.0/drivers/video/msm/mddi_client_toshiba.c -1f38ac91249863f22e9cc3b68ac07c72 linux-3.0/drivers/video/msm/mddi_client_nt35399.c -cc7d17faaea3fbe9a4ed6103317246c0 linux-3.0/drivers/video/msm/mddi_client_dummy.c -c95950c808510a5171e9ca3a1c3ad7b1 linux-3.0/drivers/video/msm/mddi.c -b0b38c0f63e9cad8f94f1af5f82b3509 linux-3.0/drivers/video/msm/Makefile -8f338edcb80a67f6ebf13d2e35a80c8c linux-3.0/drivers/video/modedb.c -9d2bb20aed5ac6f9131d1b996d71cfd0 linux-3.0/drivers/video/metronomefb.c -cc183ca33399a29280bf24d196428020 linux-3.0/drivers/video/mbx/regs.h -ffb9dc193dd15fdf5da81497893a98d8 linux-3.0/drivers/video/mbx/reg_bits.h -70f1f1784b2a801022f30e81debc0315 linux-3.0/drivers/video/mbx/mbxfb.c -8f6fee9d8c193d79d65a62153aa5259c linux-3.0/drivers/video/mbx/mbxdebugfs.c -f58c63240ee83092279bfe1e46c7b76e linux-3.0/drivers/video/mbx/Makefile -f43afc57c890ccaaa13779ccbe151a4f linux-3.0/drivers/video/mb862xx/mb862xxfbdrv.c -98165f653004bbbcac4da86da536d3fe linux-3.0/drivers/video/mb862xx/mb862xxfb_accel.h -ac34641332cae69ed489295ab0e98b95 linux-3.0/drivers/video/mb862xx/mb862xxfb_accel.c -9d16f76d1c9d0b02b117e8c33ae28658 linux-3.0/drivers/video/mb862xx/mb862xxfb.h -7a4e520d34b0607f9417a4fdb780e700 linux-3.0/drivers/video/mb862xx/mb862xx_reg.h -e849e71ef4a6a451ee372667376e809b linux-3.0/drivers/video/mb862xx/mb862xx-i2c.c -4e5ce008a4bc456d790abd60405272c2 linux-3.0/drivers/video/mb862xx/Makefile -791520e7544ef6f4d52dc2e2a4e88973 linux-3.0/drivers/video/maxinefb.c -54e42266046d7562483f72beb20a3021 linux-3.0/drivers/video/matrox/matroxfb_misc.h -f2bde08bc174cf9a4b338545777c79f2 linux-3.0/drivers/video/matrox/matroxfb_misc.c -16760ca0cad3b02a5d93455a82b2b74a linux-3.0/drivers/video/matrox/matroxfb_maven.h -ebda2bb27a1ea655334b53167bd0fce8 linux-3.0/drivers/video/matrox/matroxfb_maven.c -b754e09f649aa8090e38d8a7b46bd6ca linux-3.0/drivers/video/matrox/matroxfb_g450.h -669d300821f6c3e769154ace16db857c linux-3.0/drivers/video/matrox/matroxfb_g450.c -bfeb35e8119ec5b7c46ae339f77467df linux-3.0/drivers/video/matrox/matroxfb_crtc2.h -d570342b1c349fdd00db7bf69580ef28 linux-3.0/drivers/video/matrox/matroxfb_crtc2.c -9dabba3c4f3b24f6b2ced4b7c40d96f9 linux-3.0/drivers/video/matrox/matroxfb_base.h -6d4305f73dac5dcd23b364db45f015a7 linux-3.0/drivers/video/matrox/matroxfb_base.c -5b66a167e45de5d696c642be410f4242 linux-3.0/drivers/video/matrox/matroxfb_accel.h -a81d8bf5a18c186b6cb57c09218dc564 linux-3.0/drivers/video/matrox/matroxfb_accel.c -f275baa790c57fff5fd380843c09948e linux-3.0/drivers/video/matrox/matroxfb_Ti3026.h -c31f6fffe5abfe01b69172a258eb1284 linux-3.0/drivers/video/matrox/matroxfb_Ti3026.c -6c2937c4f8514964fb5ac4b0d5442fc7 linux-3.0/drivers/video/matrox/matroxfb_DAC1064.h -c68771471cc8de6f1f3404297f84a864 linux-3.0/drivers/video/matrox/matroxfb_DAC1064.c -fc9ebad924e1c7bea552133b09763c0b linux-3.0/drivers/video/matrox/i2c-matroxfb.c -09f5d8e2b2afe1492d9db9179d71ff2e linux-3.0/drivers/video/matrox/g450_pll.h -4866bf4cc79b1aaddd6b550f3ca9a226 linux-3.0/drivers/video/matrox/g450_pll.c -05c137dc7711b90d5557bea99b9790b0 linux-3.0/drivers/video/matrox/Makefile -9d8fea954f6a9da6b8d50062932950d4 linux-3.0/drivers/video/macmodes.h -baa11cccd02504d8698cb11bbcd75c56 linux-3.0/drivers/video/macmodes.c -f38415924917471df320ef950221d542 linux-3.0/drivers/video/macfb.c -a3b006bfdaab1d3b1929918150fce2e5 linux-3.0/drivers/video/logo/logo_superh_vga16.ppm -6eb3c06d5004bd6835943bd7af3a31e2 linux-3.0/drivers/video/logo/logo_superh_mono.pbm -5101da05bbfc378716f323858a2a6fcc linux-3.0/drivers/video/logo/logo_superh_clut224.ppm -821d03f8e67237dcde3687724ea79db0 linux-3.0/drivers/video/logo/logo_sun_clut224.ppm -ba2cd81d42c37cd93d8c61dd90fc696d linux-3.0/drivers/video/logo/logo_spe_clut224.ppm -3433b1a75b9690b9d8293844457502ba linux-3.0/drivers/video/logo/logo_sgi_clut224.ppm -916c197d5dd81f602bc25856fd5d9f70 linux-3.0/drivers/video/logo/logo_parisc_clut224.ppm -22a3a7e841b36043f82259b778954925 linux-3.0/drivers/video/logo/logo_mac_clut224.ppm -2b539dab4141c948777970331121efac linux-3.0/drivers/video/logo/logo_m32r_clut224.ppm -7c0cc64be652de8cf1ab1fb610ecd701 linux-3.0/drivers/video/logo/logo_linux_vga16.ppm -c44e80f6c8801d34df7fefda83c1970c linux-3.0/drivers/video/logo/logo_linux_mono.pbm -bc963a5297f6ee3d585d3d285dfb06b7 linux-3.0/drivers/video/logo/logo_linux_clut224.ppm -efd5677d063f6afda1733d4f05ca23f3 linux-3.0/drivers/video/logo/logo_dec_clut224.ppm -1ab6b5136ba18e30e871f3fd5eb4c52c linux-3.0/drivers/video/logo/logo_blackfin_vga16.ppm -7f8090f1ceb19c0428116765641f7138 linux-3.0/drivers/video/logo/logo_blackfin_clut224.ppm -b11bfdac383afe50360670e52ae67dd1 linux-3.0/drivers/video/logo/logo.c -99bdacc5270b9bb7c2438cdb700c055d linux-3.0/drivers/video/logo/clut_vga16.ppm -67345dc641e891c2a05bbc97d60c7904 linux-3.0/drivers/video/logo/Makefile -3ed0b3f3ec3e3737bf5f91922ef4a3a5 linux-3.0/drivers/video/logo/Kconfig -ea2968bf3560adec26714f6e48d97a8e linux-3.0/drivers/video/logo/.gitignore -5fb7f0cecfbedf0e4bcd303052faf705 linux-3.0/drivers/video/leo.c -e0dd1a1b603d586fe71d65f5eda51169 linux-3.0/drivers/video/kyro/fbdev.c -5f96db8b234b2baa8111782267835fd3 linux-3.0/drivers/video/kyro/STG4000VTG.c -32dac615e09f721191e53c32c64b995c linux-3.0/drivers/video/kyro/STG4000Reg.h -09cc65a2c498adad628589f1ae6936f0 linux-3.0/drivers/video/kyro/STG4000Ramdac.c -b111545cffb3c91e5c39e18f6411e657 linux-3.0/drivers/video/kyro/STG4000OverlayDevice.c -ce9d3b05a8770234890bf05ffad84061 linux-3.0/drivers/video/kyro/STG4000Interface.h -2cef193413204636979b5fed80452136 linux-3.0/drivers/video/kyro/STG4000InitDevice.c -391abd3e1a219d18158a80063c567ef1 linux-3.0/drivers/video/kyro/Makefile -de2ba8b19aa4d45b86884e6f7c71ac16 linux-3.0/drivers/video/jz4740_fb.c -db3cd0a390b21cf184e793146e3d3c6a linux-3.0/drivers/video/intelfb/intelfbhw.h -1e686be6bc8f075f69c5773bf03e3d11 linux-3.0/drivers/video/intelfb/intelfbhw.c -1a8c38e8fac94ba6c2d1c4d3b839b06a linux-3.0/drivers/video/intelfb/intelfbdrv.c -72111bf118ac51d74731017f863d5653 linux-3.0/drivers/video/intelfb/intelfb_i2c.c -8f20067d6f38e1bb4420beab14a1777d linux-3.0/drivers/video/intelfb/intelfb.h -0055c49b7995333cf200d0965ad28336 linux-3.0/drivers/video/intelfb/Makefile -bf0a9ad80efc69d744e0018ac42d2b8e linux-3.0/drivers/video/imxfb.c -2f333d14b6911bb0df3117ff174bbab9 linux-3.0/drivers/video/imsttfb.c -7d1d31daed1d2bb3fe87fa02302879d5 linux-3.0/drivers/video/igafb.c -9c30a31bf02dd89c070fac5d0fbbec55 linux-3.0/drivers/video/i810/i810_regs.h -6a9216f3d9d4319d8f6e79ee58233859 linux-3.0/drivers/video/i810/i810_main.h -bdc3d0012574dba6bbaaa0d699776c8b linux-3.0/drivers/video/i810/i810_main.c -cf9a9b3d68a4d6d89171246efd41b784 linux-3.0/drivers/video/i810/i810_gtf.c -29c5ffc404ed6e797dcf67c1980d6f8b linux-3.0/drivers/video/i810/i810_dvt.c -1dfc3d69982b6bf83dcc12d3c4e54798 linux-3.0/drivers/video/i810/i810_accel.c -bb4550151d4dec60da467903e05c0bd6 linux-3.0/drivers/video/i810/i810.h -5259967f716507ce69ace3c7f998acc8 linux-3.0/drivers/video/i810/i810-i2c.c -a21196db88b2722b6962c8644ca0b42d linux-3.0/drivers/video/i810/Makefile -b39fb3b040ba0691cd54edc864458f69 linux-3.0/drivers/video/hpfb.c -f194859bfa0ff809c2033d661f7733f4 linux-3.0/drivers/video/hitfb.c -38f908f11e2c30c46c4c5e5755384c32 linux-3.0/drivers/video/hgafb.c -f1b6e64edf380892da2ef724d3df59b6 linux-3.0/drivers/video/hecubafb.c -b4bf2029a6161eb01776bb7e23086a3c linux-3.0/drivers/video/gxt4500.c -b0a0865fd2810cfb017971c501c14ec4 linux-3.0/drivers/video/geode/video_gx.c -07d627869c84146bfb917c24aeb3534e linux-3.0/drivers/video/geode/video_cs5530.h -790436fe9addb0164619dae03945bd5e linux-3.0/drivers/video/geode/video_cs5530.c -0fb7f74e57097cf0c9b7b81a212065d1 linux-3.0/drivers/video/geode/suspend_gx.c -47088155e212c0c263460b072377f156 linux-3.0/drivers/video/geode/lxfb_ops.c -f58da37fef68f17e16128f26361aa27b linux-3.0/drivers/video/geode/lxfb_core.c -78568bbc6387f8a04074e7ca4dd50a9f linux-3.0/drivers/video/geode/lxfb.h -2ab5076f617bc0da712af3ded27c5804 linux-3.0/drivers/video/geode/gxfb_core.c -aa308e8d4ce413c728691973c7d4bbb4 linux-3.0/drivers/video/geode/gxfb.h -b05c3888eddff802858d8413fa65cf6b linux-3.0/drivers/video/geode/gx1fb_core.c -36cf40370eafc34e1fecc8e56eec39b6 linux-3.0/drivers/video/geode/geodefb.h -fae56b2ecd1e08b324cd67ea1af47c88 linux-3.0/drivers/video/geode/display_gx1.h -544d1cb48a4c1c77bbb7020209c27a4e linux-3.0/drivers/video/geode/display_gx1.c -4f3583a0ab2a04d1bad347ed84d58ef0 linux-3.0/drivers/video/geode/display_gx.c -0fe49661236a41309af60e7a0727d556 linux-3.0/drivers/video/geode/Makefile -66cc0113fb5998eb253fa3a318438ecf linux-3.0/drivers/video/geode/Kconfig -dd84c9abbbcb6c5c594fa566d362ebee linux-3.0/drivers/video/gbefb.c -b1339268c0ac515bc4a4d4bbfa3648f2 linux-3.0/drivers/video/g364fb.c -bb4013701ea82c874f8d383d5825da79 linux-3.0/drivers/video/fsl-diu-fb.c -5bd64c7e1558b79341d903a3e26f61be linux-3.0/drivers/video/fm2fb.c -8129a2c27c08ed5991bf1c3c83b2fa09 linux-3.0/drivers/video/ffb.c -34b2dbfb70722d547c3c696f9f827e7d linux-3.0/drivers/video/fbsysfs.c -a6c62a757af7b826642ee1cc74354f68 linux-3.0/drivers/video/fbmon.c -adb2f3433ec6732c3cfef4eba353b020 linux-3.0/drivers/video/fbmem.c -0dbdb739ff61f560c2d200198214877c linux-3.0/drivers/video/fbcvt.c -486d8be6767bdfba2f2300ca6cdb81fe linux-3.0/drivers/video/fbcmap.c -9b027753c7928fdc38607da9cc1ab728 linux-3.0/drivers/video/fb_sys_fops.c -0f49e0575f04d2be380f94eccd6aa8be linux-3.0/drivers/video/fb_notify.c -b803562cb54433679c95bf76bc42f02a linux-3.0/drivers/video/fb_draw.h -82bee9a9b8be1c97cbcfc14474c50d31 linux-3.0/drivers/video/fb_defio.c -1c84c857feef37adc41ba0fe8a7b69ed linux-3.0/drivers/video/fb_ddc.c -1e18dd1afe8a6987d0e9652ed618de79 linux-3.0/drivers/video/fb-puv3.c -b66610a7f0768209e0e489b975ca19f8 linux-3.0/drivers/video/epson1355fb.c -c700d061befff4d9772e41743785f241 linux-3.0/drivers/video/ep93xx-fb.c -432b8dacdb7d36304b30da2ec0995957 linux-3.0/drivers/video/efifb.c -f11d9c3a153732b3f3c4990857728065 linux-3.0/drivers/video/edid.h -d154eb903a49d2e251b0c5c7cc83dea4 linux-3.0/drivers/video/dnfb.c -d15b5f3d88d953fb24db96401683e22b linux-3.0/drivers/video/display/display-sysfs.c -8af2419946664d2d4f9a0148db6d036b linux-3.0/drivers/video/display/Makefile -87c678a95cad60ff8ebf6d01f110edcc linux-3.0/drivers/video/display/Kconfig -1fd1bc4b952cd6da2adc324339b54ad0 linux-3.0/drivers/video/da8xx-fb.c -9c14de657028130ae84c69440a8d4289 linux-3.0/drivers/video/cyber2000fb.h -9c0dd59bacfc2759b46ba7a7f4828147 linux-3.0/drivers/video/cyber2000fb.c -987fce29df77ae7147fa1c7542a4f3fa linux-3.0/drivers/video/controlfb.h -0903d3be6fecedb69c4730aaeb0ce44d linux-3.0/drivers/video/controlfb.c -52e12822409aa577ab6bcd27fa32c9c3 linux-3.0/drivers/video/console/vgacon.c -0a7489e4538952639308b7dc35eda597 linux-3.0/drivers/video/console/tileblit.c -87dff0b4c064293de6badd22deb7f1ea linux-3.0/drivers/video/console/sticore.c -21f4c51413ceaa21f51f024fa9b3ac99 linux-3.0/drivers/video/console/sticon.c -61fdd4df45c4a7adc72fec34773a3acd linux-3.0/drivers/video/console/softcursor.c -bdffdaa496e83cacf49bbbb0c749d14f linux-3.0/drivers/video/console/newport_con.c -7a6b6206acd0a78c1643e3cfbcf518f3 linux-3.0/drivers/video/console/mdacon.c -fa896d86a2bae7ec675833677d2c98f6 linux-3.0/drivers/video/console/fonts.c -3ab668935528493ba62430e1034a93d2 linux-3.0/drivers/video/console/font_sun8x16.c -f05439b7dc6c086db7d15e8bce764943 linux-3.0/drivers/video/console/font_sun12x22.c -df27abfb5b771855dd693053ac551e07 linux-3.0/drivers/video/console/font_pearl_8x8.c -bafb0207ab7345cb2a3abf89c8c39a19 linux-3.0/drivers/video/console/font_mini_4x6.c -03e18724687c3482df6e6c1b569cb677 linux-3.0/drivers/video/console/font_acorn_8x8.c -d7f34a32b266e1b54390ccca627a6d86 linux-3.0/drivers/video/console/font_8x8.c -88f1d085db5cb5da88a36abe240be61e linux-3.0/drivers/video/console/font_8x16.c -254d4fbc19b55bd3d85a466b404710ab linux-3.0/drivers/video/console/font_7x14.c -079aa3972693b6753eefb3407f1eb729 linux-3.0/drivers/video/console/font_6x11.c -882852372fcb0fb8c566ab8de347ae57 linux-3.0/drivers/video/console/font_10x18.c -13bce92030af854462ea38cb68500caf linux-3.0/drivers/video/console/fbcon_ud.c -1b1a615b9a9e145ece0e8af85e86b019 linux-3.0/drivers/video/console/fbcon_rotate.h -9ac7950d1e0be18785f8222472bd25cc linux-3.0/drivers/video/console/fbcon_rotate.c -31e929c387fcd6a8c38b234d8de4ab7a linux-3.0/drivers/video/console/fbcon_cw.c -1069cd926b6677dd24da872700cf3927 linux-3.0/drivers/video/console/fbcon_ccw.c -5f9db444fb23813fa0abf704d5f0ff5e linux-3.0/drivers/video/console/fbcon.h -7924e96c05a60c374341e8631c27227a linux-3.0/drivers/video/console/fbcon.c -d095caded21e32c47ee4dcb06a603349 linux-3.0/drivers/video/console/dummycon.c -52bd8073f55247952bb5f713001ab575 linux-3.0/drivers/video/console/bitblit.c -d7457e6021a3504810eefba902596690 linux-3.0/drivers/video/console/Makefile -63db599d092d289da14eca1be1c27f27 linux-3.0/drivers/video/console/Kconfig -1a8a5cff8276bbabff82c9d1396bcdff linux-3.0/drivers/video/cobalt_lcdfb.c -7e928614bfe2e537a52b2ba004d11596 linux-3.0/drivers/video/clps711xfb.c -ea02d5425aced98078c73e23f6cb85ac linux-3.0/drivers/video/cirrusfb.c -7e273705547631cf448a49cb9bad292d linux-3.0/drivers/video/chipsfb.c -3f5089e9e6f85076911fa15b0bae420e linux-3.0/drivers/video/cg6.c -21e92a597978602c9a0dd3180985c702 linux-3.0/drivers/video/cg3.c -f2bedb1c8ff624d468eb10cc8be05fa4 linux-3.0/drivers/video/cg14.c -d63a541540c76b24511cf8c2d7a77dca linux-3.0/drivers/video/cfbimgblt.c -f8b2a654523877f40a01bb283167b510 linux-3.0/drivers/video/cfbfillrect.c -95eab62bc21d3cae229af39c4cc1486c linux-3.0/drivers/video/cfbcopyarea.c -784e28d80d3bb884520f8a13c8c6fe39 linux-3.0/drivers/video/carminefb_regs.h -ebec70a3656d2c4a5c893cd74e019348 linux-3.0/drivers/video/carminefb.h -35eb4a8aabbf3f28e68625f234adb669 linux-3.0/drivers/video/carminefb.c -c9d3723604d61c80ad03cb4559a69192 linux-3.0/drivers/video/c2p_planar.c -a7b28944ea6963262c3e1e3debfaf44f linux-3.0/drivers/video/c2p_iplan2.c -d48ff793dafc92b0f3ab7fff35a1f6f0 linux-3.0/drivers/video/c2p_core.h -c21fa4f40111cafffb986bdf19718a1a linux-3.0/drivers/video/c2p.h -9a7efc28e6eee2f1fd79c122bd40539d linux-3.0/drivers/video/bw2.c -7dfb9672da043ed07b9934874165de0a linux-3.0/drivers/video/bt455.h -532b371279cf5c4b7a45e06de0b2d96b linux-3.0/drivers/video/bt431.h -d40ff60c7f698e9d6966da4530cf55ac linux-3.0/drivers/video/broadsheetfb.c -a36109bd57b9b4824509c403477f5c27 linux-3.0/drivers/video/bfin_adv7393fb.h -d44d7d1ef816df3c6da1525e9553509d linux-3.0/drivers/video/bfin_adv7393fb.c -512b80917e300926df4036c973e508fa linux-3.0/drivers/video/bfin-t350mcqb-fb.c -94d72c0ec1c200c1e8cd74d91a6d8e71 linux-3.0/drivers/video/bfin-lq035q1-fb.c -10febd0770507b442c716c54eb6ba0b0 linux-3.0/drivers/video/bf54x-lq043fb.c -ab3215d881049aa8c1c0bb198c0525bc linux-3.0/drivers/video/bf537-lq035.c -aacd5bdb8191c745e9eed4666697d456 linux-3.0/drivers/video/backlight/wm831x_bl.c -e6ecd452e0bb03c641cd0c4036a7a770 linux-3.0/drivers/video/backlight/vgg2432a4.c -6355ee560dfef8980a64cb9973dc25f2 linux-3.0/drivers/video/backlight/tosa_lcd.c -711ffed6a949bc30feec82f86627f246 linux-3.0/drivers/video/backlight/tosa_bl.c -587640a6d0e93555cb8b3ae7f45a490a linux-3.0/drivers/video/backlight/tdo24m.c -f03d4a92c520ecfd54172c437cdccaf1 linux-3.0/drivers/video/backlight/s6e63m0_gamma.h -3bf1368e83f0be9fd06209b73d501ef8 linux-3.0/drivers/video/backlight/s6e63m0.c -cbe49c45399d0dc40c0b97d524556eeb linux-3.0/drivers/video/backlight/pwm_bl.c -96f290688a8da064ff3346c7158edd64 linux-3.0/drivers/video/backlight/progear_bl.c -98a2c12abec63b9404e9a43ea3c1deaf linux-3.0/drivers/video/backlight/platform_lcd.c -9360bdcc5f11328481799b28d4bb4609 linux-3.0/drivers/video/backlight/pcf50633-backlight.c -361e397d6c23cdd53c377c4371502b57 linux-3.0/drivers/video/backlight/omap1_bl.c -405c434a2e2a543ef450e6bd23badd59 linux-3.0/drivers/video/backlight/max8925_bl.c -86c3050e61daf8f273a96bdd406489fe linux-3.0/drivers/video/backlight/ltv350qv.h -4ae169d404cd1bcd1151f26667235c99 linux-3.0/drivers/video/backlight/ltv350qv.c -30a1ff02e3496afd45ffcd5f6967c0ac linux-3.0/drivers/video/backlight/locomolcd.c -359aeba69f2790edb6bb390260667fee linux-3.0/drivers/video/backlight/lms283gf05.c -86af4e221bb5fcffbffb8db122d81aa9 linux-3.0/drivers/video/backlight/ld9040_gamma.h -d8900f7437565c840a6dfca44e224dd4 linux-3.0/drivers/video/backlight/ld9040.c -d59462ddcef40b1e39e352f96d9b135b linux-3.0/drivers/video/backlight/lcd.c -654e5ec381ab158fbb220105d2394cb7 linux-3.0/drivers/video/backlight/l4f00242t03.c -cbdd6ce55c62f960f5685d561cf912f1 linux-3.0/drivers/video/backlight/kb3886_bl.c -13310e914bcacc040dcdd1cf53ac5b8c linux-3.0/drivers/video/backlight/jornada720_lcd.c -b46fff1322745dec972abc9e14d3ed85 linux-3.0/drivers/video/backlight/jornada720_bl.c -407070fccaa69d082bbbc06f5a4061a2 linux-3.0/drivers/video/backlight/ili9320.h -e2d53117e27feccf15bb2a43db183bbe linux-3.0/drivers/video/backlight/ili9320.c -4cccdc94dd57f13503a28ab10df68c7d linux-3.0/drivers/video/backlight/hp680_bl.c -971f4da050e3895c0a4b63844ebbb701 linux-3.0/drivers/video/backlight/generic_bl.c -a9550ab1f23bac6bf1fae670f7eb1095 linux-3.0/drivers/video/backlight/ep93xx_bl.c -eedcf311dffd7e62a3d9858149d644bc linux-3.0/drivers/video/backlight/da903x_bl.c -114c9c181bc5a4d9a1cdccd2e58ddcc5 linux-3.0/drivers/video/backlight/cr_bllcd.c -e3f466ccddc94e29541f52a450b22da7 linux-3.0/drivers/video/backlight/corgi_lcd.c -9a0f04a4c9b5d680968ee7f3f7d1bf22 linux-3.0/drivers/video/backlight/backlight.c -88e12435d40f6a3eaace1b432c30e22b linux-3.0/drivers/video/backlight/atmel-pwm-bl.c -ff864759dc75d0b203552b370c5b6902 linux-3.0/drivers/video/backlight/apple_bl.c -ed0f9243650fc40123babae43d0c2aa0 linux-3.0/drivers/video/backlight/adx_bl.c -5464f9030b1b9d86bba4dcf1859919a8 linux-3.0/drivers/video/backlight/adp8870_bl.c -573cd2b8b6aeffeb7af90137c9f53f5f linux-3.0/drivers/video/backlight/adp8860_bl.c -2f097c963b397186d01e8669e59ac072 linux-3.0/drivers/video/backlight/adp5520_bl.c -5de8e377966c90e299df7a8fdad2e246 linux-3.0/drivers/video/backlight/Makefile -50447c468cd81e5b6fc282ca17cc322c linux-3.0/drivers/video/backlight/Kconfig -855e23a00dd37a2c31491062400e4003 linux-3.0/drivers/video/backlight/88pm860x_bl.c -234ef575d184542d67d47c5e632fc7d5 linux-3.0/drivers/video/au1200fb.h -ce65d0bfc5341366a03f2c33d23d6023 linux-3.0/drivers/video/au1200fb.c -708255001047e876150a2bda8851aad9 linux-3.0/drivers/video/au1100fb.h -6c98cd2ff8d6ef5a6b012d97490d23a4 linux-3.0/drivers/video/au1100fb.c -68776300eb43625465a6cba506a86017 linux-3.0/drivers/video/aty/radeonfb.h -7ff786eb8195b94ec463faa80ab6b82d linux-3.0/drivers/video/aty/radeon_pm.c -6c7568f38f0689542cf6d473aca99966 linux-3.0/drivers/video/aty/radeon_monitor.c -82ab53554dacb6d0dec74ac007e46da4 linux-3.0/drivers/video/aty/radeon_i2c.c -eb167398e9830aa9992dc6bcc7f652ce linux-3.0/drivers/video/aty/radeon_base.c -32ed379b1696fc2c55befb67e2719e28 linux-3.0/drivers/video/aty/radeon_backlight.c -202e64ec598e46981b028b17331e1cd0 linux-3.0/drivers/video/aty/radeon_accel.c -12ac6039b8ec46a95c02c963b2b8820a linux-3.0/drivers/video/aty/mach64_gx.c -d7a1a269c9eb44ebcbe4ab06f4e2184a linux-3.0/drivers/video/aty/mach64_cursor.c -820f05510f8dbb42123118a7377b4cb7 linux-3.0/drivers/video/aty/mach64_ct.c -c52332d24cafad4a6509894692236144 linux-3.0/drivers/video/aty/mach64_accel.c -597cf6f3227fc659dcabd4317694451f linux-3.0/drivers/video/aty/atyfb_base.c -eaf26db222ac63706c355bf75c3e9259 linux-3.0/drivers/video/aty/atyfb.h -6bbd4576d8c18e46b678dda081a5a1d9 linux-3.0/drivers/video/aty/aty128fb.c -8637537671efb4502b3ce13eb276e61a linux-3.0/drivers/video/aty/ati_ids.h -2fada091753cea68fb54343d4b12d0bc linux-3.0/drivers/video/aty/Makefile -224a6456da573ac73017ce690c601bac linux-3.0/drivers/video/atmel_lcdfb.c -291f8939b4d74abaa276579bcfc8c98f linux-3.0/drivers/video/atafb_utils.h -8adced97acc2f05fe4eccbc8ccb07d66 linux-3.0/drivers/video/atafb_mfb.c -26159a9c281dac063270164c5c26671b linux-3.0/drivers/video/atafb_iplan2p8.c -e0453b03c31e45c02ed5aa7f6b3fcb2e linux-3.0/drivers/video/atafb_iplan2p4.c -2f8c6517f3de1069e409a7dcf3c74028 linux-3.0/drivers/video/atafb_iplan2p2.c -2bd847050203f17232892e6cfa587c89 linux-3.0/drivers/video/atafb.h -648298c3cb54a57cf64510ddfb033332 linux-3.0/drivers/video/atafb.c -c8da6b9b7e1096ce44d06d751c11ff85 linux-3.0/drivers/video/asiliantfb.c -df5dc857b0908732736134d29010e510 linux-3.0/drivers/video/arkfb.c -e0fab62e3aa15ea2a23c6d19e46a49f4 linux-3.0/drivers/video/arcfb.c -9a79b73d8cd1f4f6d49f1a5145d7f9f7 linux-3.0/drivers/video/amifb.c -7900e6186a8e5f11c492a0cd5a13e5dc linux-3.0/drivers/video/amba-clcd.c -116c3c10ee62022ac57de76fa6ad8166 linux-3.0/drivers/video/acornfb.h -e208dfb447ee4f5e7c515a5772750754 linux-3.0/drivers/video/acornfb.c -d12daa83cfc38ebab0c88ff1aba518f3 linux-3.0/drivers/video/Makefile -8717a567899a169fd510650dadda16ac linux-3.0/drivers/video/Kconfig -50e4eb740b09bdfebd39f8bdd029fd63 linux-3.0/drivers/video/68328fb.c -098afaf6861e0c986a12dad70e6a8677 linux-3.0/drivers/vhost/vhost.h -051a0937961f47b10930392331522d43 linux-3.0/drivers/vhost/vhost.c -e121c59dc5670f6020eb73fecf6bf5c5 linux-3.0/drivers/vhost/test.h -86941fca79cc03e25b42f14e95cf1054 linux-3.0/drivers/vhost/test.c -841e220883abfd41755790a7f68ccf42 linux-3.0/drivers/vhost/net.c -cc62ca7682945d20d24eaf64759a3506 linux-3.0/drivers/vhost/Makefile -e2cc146ac40345bc376e438071964fd3 linux-3.0/drivers/vhost/Kconfig -216c60daaf42c5cb7b59400f8c746100 linux-3.0/drivers/uwb/whci.c -0a53167e6a2d0c08e2780f2f0f9b5d82 linux-3.0/drivers/uwb/whc-rc.c -a31563bf891e8c249e54817d1ebaa9a2 linux-3.0/drivers/uwb/uwbd.c -c1110272093ebbead3972f070856526c linux-3.0/drivers/uwb/uwb-internal.h -f105ae665228b2004760ba301577dc94 linux-3.0/drivers/uwb/uwb-debug.c -b11d4db79577ac274e5d834e349bab48 linux-3.0/drivers/uwb/umc-drv.c -49147f05c76d35f799a7b775b72357c8 linux-3.0/drivers/uwb/umc-dev.c -d2c870bf3800105fd67b72ce729a0b09 linux-3.0/drivers/uwb/umc-bus.c -fe20d8470b89a24f52080aa9cfb29a13 linux-3.0/drivers/uwb/scan.c -de1e7f4daaaca5bd2ff383d2f46fe57f linux-3.0/drivers/uwb/rsv.c -7c41ae7bfd38e72a2a682ca5f13f4941 linux-3.0/drivers/uwb/reset.c -e4fb06a921dbbd6eae57ea7ca9b1e82a linux-3.0/drivers/uwb/radio.c -a21c43e8d2790beb44c6f27461f8004b linux-3.0/drivers/uwb/pal.c -5f79a74ed73814ec21d15ed9bbe8ff58 linux-3.0/drivers/uwb/neh.c -878abc8a03f38d531cbaa51ca1701fa2 linux-3.0/drivers/uwb/lc-rc.c -5670bab8e68dfa749636caf116d19bda linux-3.0/drivers/uwb/lc-dev.c -87562e32674210f47a01f0c5a6eb9598 linux-3.0/drivers/uwb/ie.c -9ea9c5b42dc3d8a9cb94aeb90ee604b9 linux-3.0/drivers/uwb/ie-rcv.c -89412140c2bcfaf87992881d95052164 linux-3.0/drivers/uwb/i1480/i1480-est.c -d586d785a90b7184dd7c7a969f8955cb linux-3.0/drivers/uwb/i1480/dfu/usb.c -868223e10ebfa8dfba0fe4a4df51034c linux-3.0/drivers/uwb/i1480/dfu/phy.c -eade7e3a55131ebc0067ce6f60b7670b linux-3.0/drivers/uwb/i1480/dfu/mac.c -80252fbd0c926ae3506bb092bea5d114 linux-3.0/drivers/uwb/i1480/dfu/i1480-dfu.h -0bacf3c543bca263e6d314acd99cc765 linux-3.0/drivers/uwb/i1480/dfu/dfu.c -4e851e5c5d41013211d5286138cc3cc4 linux-3.0/drivers/uwb/i1480/dfu/Makefile -e4a5c9278fd91d03e56e232153c32a44 linux-3.0/drivers/uwb/i1480/Makefile -e83ff6dc032793468cd28bd903fdb2b6 linux-3.0/drivers/uwb/hwa-rc.c -84b60c506be787c7d462ada19327c894 linux-3.0/drivers/uwb/est.c -043e0ca0c9b14f362eca0577c67a8560 linux-3.0/drivers/uwb/drp.c -73734d51fa9012ffb5cd566cf720f9fa linux-3.0/drivers/uwb/drp-ie.c -dc108003da9d4a28eb58c1737292893d linux-3.0/drivers/uwb/drp-avail.c -869eae122d543a132aa775eb8d45b6cd linux-3.0/drivers/uwb/driver.c -36c3aee357cc0a0f2a3e560cd2fa66be linux-3.0/drivers/uwb/beacon.c -eabfe8dd2a619e1eb0a6c944c72ef532 linux-3.0/drivers/uwb/allocator.c -89b055089963ebb8c5c8b431a01a3669 linux-3.0/drivers/uwb/address.c -f84464d6ee9792a432d321121e44b258 linux-3.0/drivers/uwb/Makefile -f48e165ad5b4c3a0a2df5f903238a9c3 linux-3.0/drivers/uwb/Kconfig -66afcaebe4e5c53d72776176b099ad89 linux-3.0/drivers/usb/wusbcore/wusbhc.h -05d178471c1f3a5f67acfe08ec72fa01 linux-3.0/drivers/usb/wusbcore/wusbhc.c -7944512e3bde7fb796e43a1dea19f8a6 linux-3.0/drivers/usb/wusbcore/wa-xfer.c -4322b98c0d25e7c6abda2c62ddcf1de2 linux-3.0/drivers/usb/wusbcore/wa-rpipe.c -5c0069298bb4bd9dcde9d1fb3e1a925e linux-3.0/drivers/usb/wusbcore/wa-nep.c -4cfb7ccfc24c4a561e568d1b073179a0 linux-3.0/drivers/usb/wusbcore/wa-hc.h -607df5fe984e96277eb642b84d2a8dcf linux-3.0/drivers/usb/wusbcore/wa-hc.c -4b00c5fbac39b4558ab93999673ef097 linux-3.0/drivers/usb/wusbcore/security.c -945787f9cd3ec7c0bb18ee3cbf01f153 linux-3.0/drivers/usb/wusbcore/rh.c -064cbd42047cbca1250fb9bfe4a076df linux-3.0/drivers/usb/wusbcore/reservation.c -563df6fc7bb5a062d3d5ac00bf87d6eb linux-3.0/drivers/usb/wusbcore/pal.c -b4cb1c089872b31657af7d398e22b501 linux-3.0/drivers/usb/wusbcore/mmc.c -36de31131989808f57d7a3282d50981d linux-3.0/drivers/usb/wusbcore/devconnect.c -c896044cf565a0638e65f6f365f7084e linux-3.0/drivers/usb/wusbcore/dev-sysfs.c -267c71723af646a0ad969e86cb75da85 linux-3.0/drivers/usb/wusbcore/crypto.c -073e8ddce13b05ae84a4a66e7e377d27 linux-3.0/drivers/usb/wusbcore/cbaf.c -0970a16da50ab74af534366d4e30a2c3 linux-3.0/drivers/usb/wusbcore/Makefile -88fda3b4d69e85cabbe21c9b184edeb5 linux-3.0/drivers/usb/wusbcore/Kconfig -dcd2fadc79515ccf4ba85f5a443508a0 linux-3.0/drivers/usb/usb-skeleton.c -3d218fd2a7243ec610328d4382eb17bf linux-3.0/drivers/usb/storage/usual-tables.c -40b2e5a7cd5c3046b6e279a248dc7b23 linux-3.0/drivers/usb/storage/usb.h -d1d09a03631ee0f58cda9bfda65eccfd linux-3.0/drivers/usb/storage/usb.c -e3637319369468a09b03dcf2a417977d linux-3.0/drivers/usb/storage/unusual_usbat.h -4e8ef394a63f5c8f6c7d8080c6d01875 linux-3.0/drivers/usb/storage/unusual_sddr55.h -00dbfa4985b94763ad6299df681868e7 linux-3.0/drivers/usb/storage/unusual_sddr09.h -58ffeb44dd2c9b6f0a6b2f80a9f1f0a9 linux-3.0/drivers/usb/storage/unusual_realtek.h -2c32278e89c01aabc7f204f5d8b377de linux-3.0/drivers/usb/storage/unusual_onetouch.h -e5fe60dae6aa1f01afd30852c10269d5 linux-3.0/drivers/usb/storage/unusual_karma.h -a4da85f22930880f78e0855eacfdbcf7 linux-3.0/drivers/usb/storage/unusual_jumpshot.h -306954d7695a8b044d1319861c44a388 linux-3.0/drivers/usb/storage/unusual_isd200.h -7ddcb7430caebabd09d74ddb50287d53 linux-3.0/drivers/usb/storage/unusual_freecom.h -32300b714b7c272d888310561f9e2252 linux-3.0/drivers/usb/storage/unusual_ene_ub6250.h -249fa9909c0875b58fe432bbb59a2fab linux-3.0/drivers/usb/storage/unusual_devs.h -bce105607683e354a5a047e4b7801780 linux-3.0/drivers/usb/storage/unusual_datafab.h -5554471db995d2fa85482959be591cfe linux-3.0/drivers/usb/storage/unusual_cypress.h -feff78cd444a5308d33da721a8735948 linux-3.0/drivers/usb/storage/unusual_alauda.h -8c4be522d47ebf6d6e4f7585a5f8084a linux-3.0/drivers/usb/storage/uas.c -d02de2b487cd69683a465ffeb555969c linux-3.0/drivers/usb/storage/transport.h -6d58e773e6b911f77e456e1740f482eb linux-3.0/drivers/usb/storage/transport.c -5dc84a8be4ae4d22a10e72e6b41898ee linux-3.0/drivers/usb/storage/sierra_ms.h -3c7a134c81b967d74470f068f6c8d6ba linux-3.0/drivers/usb/storage/sierra_ms.c -fd21d92f804525e82516d34a75ab2d15 linux-3.0/drivers/usb/storage/shuttle_usbat.c -55b6336ea8bc427d391491fe68216ec3 linux-3.0/drivers/usb/storage/sddr55.c -50c49ccc782dfb6e988d8e1d5245a9d1 linux-3.0/drivers/usb/storage/sddr09.c -a262a61d268007c3cba34e3a5363e101 linux-3.0/drivers/usb/storage/scsiglue.h -e6c89a76237e10a33e2a0e484629a17e linux-3.0/drivers/usb/storage/scsiglue.c -71b24287a3d88d9b7d365bae7b018a8c linux-3.0/drivers/usb/storage/realtek_cr.c -269a99b2ee5026b4e459a2f83d5103b1 linux-3.0/drivers/usb/storage/protocol.h -6e4c62bccb48e6885bacb922bd46080e linux-3.0/drivers/usb/storage/protocol.c -f1a528cb0c1c727cdb0be0992170756d linux-3.0/drivers/usb/storage/option_ms.h -926dec68a5f9ee715dc6d1d3c024902d linux-3.0/drivers/usb/storage/option_ms.c -7090ef9a04a0dfd47d5ba55465c52471 linux-3.0/drivers/usb/storage/onetouch.c -3ee13cfbe29a6169d7affbfb7b59636a linux-3.0/drivers/usb/storage/libusual.c -f503fd0fe5afb2f93ca16f460640f24e linux-3.0/drivers/usb/storage/karma.c -679af80dfc2d974115b6e31e73f50d4d linux-3.0/drivers/usb/storage/jumpshot.c -890cfb61938ada98aab53c0538d05129 linux-3.0/drivers/usb/storage/isd200.c -2d4b3bdd8dd770b33a3e096e1f8f23f2 linux-3.0/drivers/usb/storage/initializers.h -0f9993fdae9968b91d202a7ef6d69ce7 linux-3.0/drivers/usb/storage/initializers.c -56a01f099d60fbad815490f5642fe3e9 linux-3.0/drivers/usb/storage/freecom.c -eb647aa990fa0ed58cd50bfa4b972d7a linux-3.0/drivers/usb/storage/ene_ub6250.c -df22f7702d44e16d20a776d35342db53 linux-3.0/drivers/usb/storage/debug.h -192cec82e086e5d0fb19cf35837b8eac linux-3.0/drivers/usb/storage/debug.c -d713ec035c0970379fa9914b572d6c31 linux-3.0/drivers/usb/storage/datafab.c -cf5abc3b002bbe90a6d6efdade66587e linux-3.0/drivers/usb/storage/cypress_atacb.c -c913df7b82c40a0b8d14bb3ab444a5c9 linux-3.0/drivers/usb/storage/alauda.c -cdcad998b4514dddc63ead601a8d57ac linux-3.0/drivers/usb/storage/Makefile -cd6c2baa892fd10ef0b175766a2c52f2 linux-3.0/drivers/usb/storage/Kconfig -edb88947fa8bd1298a9b2fcacbbfc5dd linux-3.0/drivers/usb/serial/zio.c -2c7b63791587a82ccc087625aae48f55 linux-3.0/drivers/usb/serial/whiteheat.h -14a0d3dc298d84273e45da7dbee6bd41 linux-3.0/drivers/usb/serial/whiteheat.c -8302fc39a1fbeea1254d505530a4f8f8 linux-3.0/drivers/usb/serial/vivopay-serial.c -77b92948a36c2b9ac510620a2cef57ff linux-3.0/drivers/usb/serial/visor.h -cc4466f3a3f1c14b4c0b3b0139412bcf linux-3.0/drivers/usb/serial/visor.c -930f207cf1261ef7cb3aad0e4ad439c8 linux-3.0/drivers/usb/serial/usb_wwan.c -74849269c9caf60eeaa20cd65dfc8dc8 linux-3.0/drivers/usb/serial/usb_debug.c -6ebca8b44121a1841a7d9fbf73108618 linux-3.0/drivers/usb/serial/usb-wwan.h -8b258d63aa8886d904c8231c18660d7c linux-3.0/drivers/usb/serial/usb-serial.c -d8e2ef1cd8990c64250d1c55b0f2431f linux-3.0/drivers/usb/serial/ti_usb_3410_5052.h -258229dae21592ba47e27f8d9056febf linux-3.0/drivers/usb/serial/ti_usb_3410_5052.c -cde19574b6f141d87d854178be22f8ba linux-3.0/drivers/usb/serial/symbolserial.c -057e33bc56dde2fdc2fae5b2bb2daf7c linux-3.0/drivers/usb/serial/ssu100.c -552b3757ff68c4448bcc2ad49ef1753f linux-3.0/drivers/usb/serial/spcp8x5.c -f64b83c623e370118c5fd2460b42ee45 linux-3.0/drivers/usb/serial/sierra.c -e9edf2e2c56112945bfbc614c11fab4d linux-3.0/drivers/usb/serial/siemens_mpi.c -a897cfb62a01de5987b4b49c565fb4ac linux-3.0/drivers/usb/serial/safe_serial.c -9ba779e5bed902a75e656d233f6d2c5c linux-3.0/drivers/usb/serial/qcserial.c -713656a0f05036761ce6a4bf6a57ac50 linux-3.0/drivers/usb/serial/qcaux.c -274c49d9af853d95efc5e4c40e521cb4 linux-3.0/drivers/usb/serial/pl2303.h -e482ddc10bf91d1da17a8ea0b264f751 linux-3.0/drivers/usb/serial/pl2303.c -ee25b4c6dc9d985796009025f771e83b linux-3.0/drivers/usb/serial/oti6858.h -aa9d84acf3ce6a852b409e3c01e4f3f1 linux-3.0/drivers/usb/serial/oti6858.c -6a88d142b20bfd9484b6d7ffd3af74f2 linux-3.0/drivers/usb/serial/option.c -6b210a29499f536655a9ae0957720832 linux-3.0/drivers/usb/serial/opticon.c -c05f886663beadd59d5d80b5ce8809e4 linux-3.0/drivers/usb/serial/omninet.c -7370492516f6acfa3c2892ef032f8314 linux-3.0/drivers/usb/serial/navman.c -f19cdbc0e13dd24c2a8db292745136e8 linux-3.0/drivers/usb/serial/moto_modem.c -1aefbbc379ea3d098a6d66654206bdbf linux-3.0/drivers/usb/serial/mos7840.c -b265c64ec9f72549bd84518f2abdabc8 linux-3.0/drivers/usb/serial/mos7720.c -3aa227962ff523225310d757a926bd71 linux-3.0/drivers/usb/serial/mct_u232.h -52006d056033232c5764db9e753f7590 linux-3.0/drivers/usb/serial/mct_u232.c -fca6c87777eb0752cde5d122d6da871a linux-3.0/drivers/usb/serial/kobil_sct.h -813f6fc65db2d59fa11d6b73664f19c8 linux-3.0/drivers/usb/serial/kobil_sct.c -440f1998990816a5acf26ccb99e256d0 linux-3.0/drivers/usb/serial/kl5kusb105.h -2d6c498839215ee8100959ac4da82680 linux-3.0/drivers/usb/serial/kl5kusb105.c -5a2ff591e4af597f8e7107832899108d linux-3.0/drivers/usb/serial/keyspan_usa90msg.h -e1deedb8d85e1a4533d057bb19e8495b linux-3.0/drivers/usb/serial/keyspan_usa67msg.h -8867ad1abaffc1d592d59fcbb28f8d68 linux-3.0/drivers/usb/serial/keyspan_usa49msg.h -8d646120376dcd99fb196cfe80036ea3 linux-3.0/drivers/usb/serial/keyspan_usa28msg.h -0adc498a4404fd594604f938e1a2b785 linux-3.0/drivers/usb/serial/keyspan_usa26msg.h -d8dab293383d24c37b9ff5adea4656f6 linux-3.0/drivers/usb/serial/keyspan_pda.c -a41947242e6e38f0ea915d61089f0c54 linux-3.0/drivers/usb/serial/keyspan.h -071791e38a2299959f227bf1c57ad8c7 linux-3.0/drivers/usb/serial/keyspan.c -04ddca69b0b4cacfe8b94753ee8c02dd linux-3.0/drivers/usb/serial/iuu_phoenix.h -58e9da732db488f0e5ff73ff34520a0e linux-3.0/drivers/usb/serial/iuu_phoenix.c -4d124991c7752e02327f52217394ed4a linux-3.0/drivers/usb/serial/ir-usb.c -324236967bbcf16a4a7b89be550cb04e linux-3.0/drivers/usb/serial/ipw.c -4f076b1bcf4f585cfa5cd160b0477111 linux-3.0/drivers/usb/serial/ipaq.c -83b72da6a740b388e9407440a252ad44 linux-3.0/drivers/usb/serial/io_usbvend.h -84372a45be7ee40fb27f1e761443cac5 linux-3.0/drivers/usb/serial/io_ti.h -09ce47609a1c4c4dcdaf300083e3af67 linux-3.0/drivers/usb/serial/io_ti.c -b309e50efac32a409b4126ff09551c6a linux-3.0/drivers/usb/serial/io_tables.h -902a90d07075e6806b4f0b9177978c86 linux-3.0/drivers/usb/serial/io_ionsp.h -31cf3af1d75a0f4c80b35e83ce30df7f linux-3.0/drivers/usb/serial/io_edgeport.h -ac7fec98591339684e65f159db593fa1 linux-3.0/drivers/usb/serial/io_edgeport.c -5bb522ad1748401b86b3327adb9ee3f8 linux-3.0/drivers/usb/serial/io_16654.h -205dfde3beb9caca2df7d2333c66e7d2 linux-3.0/drivers/usb/serial/hp4x.c -ef57265fe79094965c3c8a10d522052d linux-3.0/drivers/usb/serial/generic.c -38106e83691826465e76a0cf5d738dcd linux-3.0/drivers/usb/serial/garmin_gps.c -a878db246c3f059c59f9ab11c0ef25af linux-3.0/drivers/usb/serial/funsoft.c -b2d5a24da5206c65cb02fd8a21e42d86 linux-3.0/drivers/usb/serial/ftdi_sio_ids.h -537ea041ab44bf92d2f53a3633a7acb6 linux-3.0/drivers/usb/serial/ftdi_sio.h -9e665cb9ebffaca33d47457700539405 linux-3.0/drivers/usb/serial/ftdi_sio.c -13db564b17e1ec32f15a01cc74cd6a17 linux-3.0/drivers/usb/serial/ezusb_convert.pl -c298ccc30bba34f7d1b3676563c34fc4 linux-3.0/drivers/usb/serial/ezusb.c -7ad74122eb755879e56b861fb8f59699 linux-3.0/drivers/usb/serial/empeg.c -ec8cb616e6a6df5a9ae85de5f2b019ba linux-3.0/drivers/usb/serial/digi_acceleport.c -f2ea7dc74f60d6165bedc5294be93d7c linux-3.0/drivers/usb/serial/cypress_m8.h -1bd63912850d0e0cb5b8943dfc99870b linux-3.0/drivers/usb/serial/cypress_m8.c -fefc7eb8c8a861eebc9b321bc318617d linux-3.0/drivers/usb/serial/cyberjack.c -816533f6d2fc9399c94c3d6710a3328a linux-3.0/drivers/usb/serial/cp210x.c -7d4b62d78ea4c576e2e3b4bd3181492e linux-3.0/drivers/usb/serial/console.c -4037f047d15f51a7be2ff3765f105704 linux-3.0/drivers/usb/serial/ch341.c -13758b30b4105412d45f58931bb1c82c linux-3.0/drivers/usb/serial/bus.c -dedd0953a6a00b5b26da454c5c31b59f linux-3.0/drivers/usb/serial/belkin_sa.h -7be364432738ec8c6ce354be22236849 linux-3.0/drivers/usb/serial/belkin_sa.c -7ebcdcb16f8bc9b4a3998e10e6034f3a linux-3.0/drivers/usb/serial/ark3116.c -77cdb41518371e503bc3f34bbf7c5eea linux-3.0/drivers/usb/serial/aircable.c -eb341c557c037d4a4cd321aa56aa8cd3 linux-3.0/drivers/usb/serial/Makefile-keyspan_pda_fw -474cb4cdbea2fc23d0295284f730a890 linux-3.0/drivers/usb/serial/Makefile -3abd1740a589a2296865b63007edd6fe linux-3.0/drivers/usb/serial/Kconfig -4b930e7e951c7314dcbd3499847572a5 linux-3.0/drivers/usb/serial/ChangeLog.history -79b23fb8527ec6ccce02d754c36e0629 linux-3.0/drivers/usb/renesas_usbhs/pipe.h -01aec3b44f4d2a1be117b196eb27d7e4 linux-3.0/drivers/usb/renesas_usbhs/pipe.c -f75862a590c0b05f0db50fb5a52bddfe linux-3.0/drivers/usb/renesas_usbhs/mod_gadget.c -3e5aad83c9521c317604f446ab730524 linux-3.0/drivers/usb/renesas_usbhs/mod.h -64355a145432835446178ec7e8b40312 linux-3.0/drivers/usb/renesas_usbhs/mod.c -d85bda716de069be9469afe7bb292dd6 linux-3.0/drivers/usb/renesas_usbhs/common.h -093220796bf3fa877bd0b7d5226737a6 linux-3.0/drivers/usb/renesas_usbhs/common.c -d4fc1b0e79ae55f35675aaca4d8ba20f linux-3.0/drivers/usb/renesas_usbhs/Makefile -e8c74911954ff629b2a6901a6848959b linux-3.0/drivers/usb/renesas_usbhs/Kconfig -2e7f80d5602ab1fc74ba3788101f4b06 linux-3.0/drivers/usb/otg/ulpi_viewport.c -728b38132f32b640d72683c36495d54f linux-3.0/drivers/usb/otg/ulpi.c -7406af27985c0e593bb07780dadcab7b linux-3.0/drivers/usb/otg/twl6030-usb.c -480192741c46b3837dc8fcdda111f3e4 linux-3.0/drivers/usb/otg/twl4030-usb.c -420c45f1adebaf3fe50fd43f7a77bec5 linux-3.0/drivers/usb/otg/otg_fsm.h -0d219ca128d9f7ea4ebb3e636c214d07 linux-3.0/drivers/usb/otg/otg_fsm.c -e8176bf238c68972f068bc86d857ec34 linux-3.0/drivers/usb/otg/otg.c -1cf679d0c9367bec85be14576b605670 linux-3.0/drivers/usb/otg/nop-usb-xceiv.c -3e21f151deb302ca836b4e069c31f86d linux-3.0/drivers/usb/otg/msm_otg.c -3a0c0a231b85459ac7d9cd5d7c321591 linux-3.0/drivers/usb/otg/langwell_otg.c -5a07ee6f8d67e4011941c9a272e2e451 linux-3.0/drivers/usb/otg/isp1301_omap.c -b5b1f8bee6daf93d58aff0e4151aac4f linux-3.0/drivers/usb/otg/gpio_vbus.c -7c98fa152e35b28ed8ff7f0be91b7c93 linux-3.0/drivers/usb/otg/fsl_otg.h -a4395ff1ae0a6c4d232ea4d5855eed9d linux-3.0/drivers/usb/otg/fsl_otg.c -431f9f7f92cef12386ccc0c4536f5aaf linux-3.0/drivers/usb/otg/ab8500-usb.c -a560760e11c16acc73493ae09013217c linux-3.0/drivers/usb/otg/Makefile -38bd6ef6718fda3dcc2c56842eb59fdb linux-3.0/drivers/usb/otg/Kconfig -97162e0ed5150c3bf34e9ca897488411 linux-3.0/drivers/usb/musb/ux500_dma.c -84ff7918c5bb8eeb0f668ecf7b836b33 linux-3.0/drivers/usb/musb/ux500.c -1d9d00fd1f7276cbb80c57f5fc0e7e42 linux-3.0/drivers/usb/musb/tusb6010_omap.c -a7f4cbd5e7e55b7e520714ffe1b9e6bf linux-3.0/drivers/usb/musb/tusb6010.h -c47f426a125b86b7e6dc16162079912b linux-3.0/drivers/usb/musb/tusb6010.c -7249fe56d17400699efc52886ec985af linux-3.0/drivers/usb/musb/omap2430.h -c0b90bad39d25172f467a040169eedf1 linux-3.0/drivers/usb/musb/omap2430.c -3bc1e6287e12cb3f263d0ab1d2c78531 linux-3.0/drivers/usb/musb/musbhsdma.h -a7c43d45577655c403344af2d7add16a linux-3.0/drivers/usb/musb/musbhsdma.c -22f321d35019defd1559bbe245f00a85 linux-3.0/drivers/usb/musb/musb_virthub.c -fd03bb9e060925318ebe786e9d521c4a linux-3.0/drivers/usb/musb/musb_regs.h -5098dd679b6e06acb36a4c4d5dcbf1d4 linux-3.0/drivers/usb/musb/musb_io.h -3e43ff4446e8a2efbdd2391b8f761cc4 linux-3.0/drivers/usb/musb/musb_host.h -6cb99c9930301adf7d44786c235bde7b linux-3.0/drivers/usb/musb/musb_host.c -db724f8dcb97636d34893e23bb884e0e linux-3.0/drivers/usb/musb/musb_gadget_ep0.c -5987c51601d0903f8cfdfb995c9a9981 linux-3.0/drivers/usb/musb/musb_gadget.h -bd71a315b7e2ef318a4757e74b4acdb0 linux-3.0/drivers/usb/musb/musb_gadget.c -f806a8091839614d88bebc7d588bc4af linux-3.0/drivers/usb/musb/musb_dma.h -9043e7407c24133f98202db18c1ca318 linux-3.0/drivers/usb/musb/musb_debugfs.c -b72a23650bea57212b5a67e2fcd927e0 linux-3.0/drivers/usb/musb/musb_debug.h -71a49e6441285f1e2aadf0e16d8fea18 linux-3.0/drivers/usb/musb/musb_core.h -7e0353a151161369944f4be0f76b7217 linux-3.0/drivers/usb/musb/musb_core.c -330a48f54b213cced0e9f6230dea3f8e linux-3.0/drivers/usb/musb/davinci.h -a5aa1cb97ea22d55de6089c704d1133d linux-3.0/drivers/usb/musb/davinci.c -37ad7b90650746d316e703042f79ef5b linux-3.0/drivers/usb/musb/da8xx.c -3c35fcb5a0f92c99dbce0d908d004fa7 linux-3.0/drivers/usb/musb/cppi_dma.h -ecc65380ac0ab3256fffa38beb1f8d4d linux-3.0/drivers/usb/musb/cppi_dma.c -a8bd9ca328eb7fd5823658bbe2249585 linux-3.0/drivers/usb/musb/blackfin.h -9dc67e21684e97f5b845dd311b1cc4a2 linux-3.0/drivers/usb/musb/blackfin.c -75db3d1d19a7dbaded3eec199e6a4658 linux-3.0/drivers/usb/musb/am35x.c -b59af4b4c5dfdc40b290f89f60eaaa86 linux-3.0/drivers/usb/musb/Makefile -a73a1947a36c83ddce702079143f691a linux-3.0/drivers/usb/musb/Kconfig -247acc80bc389a3c19c9da4e9f622176 linux-3.0/drivers/usb/mon/usb_mon.h -e0054eb0a463489923901b030e27fb35 linux-3.0/drivers/usb/mon/mon_text.c -c5b06b1af63547d3d2088f888683371c linux-3.0/drivers/usb/mon/mon_stat.c -f38218b0095c7ece96fcd9961b432338 linux-3.0/drivers/usb/mon/mon_main.c -fc51badaaccd313046cb6bce1e4c8e3e linux-3.0/drivers/usb/mon/mon_bin.c -1b07b394a13c26c5319c3df216980386 linux-3.0/drivers/usb/mon/Makefile -f8730f2530cece03245deb189128655b linux-3.0/drivers/usb/mon/Kconfig -04a91c4e1568fd8527524096b8d2306d linux-3.0/drivers/usb/misc/yurex.c -28f3375900abec02020ccd40a23e03d9 linux-3.0/drivers/usb/misc/uss720.c -2a02c755d78f2fac80a6d3b95cfb232d linux-3.0/drivers/usb/misc/usbtest.c -102558ce37351b9897fa645c7a78d3cd linux-3.0/drivers/usb/misc/usbsevseg.c -f607e139e9ae0b57130d821da5668257 linux-3.0/drivers/usb/misc/usbled.c -95c2fccb997b78f71c9a97cf24f22848 linux-3.0/drivers/usb/misc/usblcd.c -cb3f365790997ef56a58a0ded959ff23 linux-3.0/drivers/usb/misc/usb_u132.h -3174252cb714c7ba8ef5fbfa0a6a7992 linux-3.0/drivers/usb/misc/trancevibrator.c -dc644f16302e1e507c7f3d0445377939 linux-3.0/drivers/usb/misc/sisusbvga/sisusb_struct.h -33ed8624ccf8a7df5ccc5bba247f242a linux-3.0/drivers/usb/misc/sisusbvga/sisusb_init.h -e621ab82467a221f4b475eba65eb104c linux-3.0/drivers/usb/misc/sisusbvga/sisusb_init.c -d6daaa9296c7395227c42dc5fa521a1d linux-3.0/drivers/usb/misc/sisusbvga/sisusb_con.c -6df2ff0dbd551f5eeaa1453c345ee4c2 linux-3.0/drivers/usb/misc/sisusbvga/sisusb.h -72770e69508dc2655ad8202039cb431d linux-3.0/drivers/usb/misc/sisusbvga/sisusb.c -c771ffc4e3dc8c426395606f01fff040 linux-3.0/drivers/usb/misc/sisusbvga/Makefile -2b0c67975a3bf122160c49af3d9901b4 linux-3.0/drivers/usb/misc/sisusbvga/Kconfig -dda88ac77a0063088a7610f16ca24525 linux-3.0/drivers/usb/misc/rio500_usb.h -52774fbd29b4a8898235cb262acee06e linux-3.0/drivers/usb/misc/rio500.c -919ccfb235b0e9c0016ed8297409cf7d linux-3.0/drivers/usb/misc/legousbtower.c -aef955418d07c95e2cc41d8e03796a81 linux-3.0/drivers/usb/misc/ldusb.c -577cee5c672452307e70ff5216ca99b0 linux-3.0/drivers/usb/misc/isight_firmware.c -aa3fd83a8d01330b3adff9762faad3a8 linux-3.0/drivers/usb/misc/iowarrior.c -0e45c03b31a2b484763cf0a9b63fd034 linux-3.0/drivers/usb/misc/idmouse.c -99906f91aa2b1bd32ad1c6a7cfdbad15 linux-3.0/drivers/usb/misc/ftdi-elan.c -027abdd9133c3f5c2c4fb588c177eb76 linux-3.0/drivers/usb/misc/emi62.c -265cdaeaca57159e62948fa19a8aab4f linux-3.0/drivers/usb/misc/emi26.c -34c88f92043f72aec29879fb4bf7cad5 linux-3.0/drivers/usb/misc/cytherm.c -e91829a3d5b714018d73305b7124519c linux-3.0/drivers/usb/misc/cypress_cy7c63.c -f6c494e46fefeb343bc355abc2aacfad linux-3.0/drivers/usb/misc/appledisplay.c -2a714ce9e8bd1b4ca1582651fdb26b7a linux-3.0/drivers/usb/misc/adutux.c -a492934ecb24403da49a9a817b7e6dc3 linux-3.0/drivers/usb/misc/Makefile -2c03a46c6bcbff8f769246936254bb2f linux-3.0/drivers/usb/misc/Kconfig -f2b04694d1d1622c745de657405da6db linux-3.0/drivers/usb/image/microtek.h -7daca16a8ca4613b909723677c622aec linux-3.0/drivers/usb/image/microtek.c -1f035b942fb2184a96401da4cf8c1479 linux-3.0/drivers/usb/image/mdc800.c -db9624741b72403cb96771796ee34d35 linux-3.0/drivers/usb/image/Makefile -7319f2b4d79ac93dba37d633a0c6f443 linux-3.0/drivers/usb/image/Kconfig -ff1dcfd2009bce61021dfb59a011a48f linux-3.0/drivers/usb/host/xhci.h -d2982f97ae3a4e309b6af49b40a39501 linux-3.0/drivers/usb/host/xhci.c -18dbeafb56b92db6550057799c7aa1ab linux-3.0/drivers/usb/host/xhci-ring.c -86b394983bee26cd6e3ecedaf2ad0dd8 linux-3.0/drivers/usb/host/xhci-pci.c -2673da69020eaac93a1030a0d91cf1b1 linux-3.0/drivers/usb/host/xhci-mem.c -40e116671c4000c545ed3bedc38505b0 linux-3.0/drivers/usb/host/xhci-hub.c -d942fb9acf5124a3b115a9c9fc9b596a linux-3.0/drivers/usb/host/xhci-ext-caps.h -32d9acf9c80c5cad75cf74204e9a0b62 linux-3.0/drivers/usb/host/xhci-dbg.c -f78c81ca70a2b5a59e16629db6e20679 linux-3.0/drivers/usb/host/whci/wusb.c -522df1be5e236f40c807f6bf0765a33a linux-3.0/drivers/usb/host/whci/whci-hc.h -ae87bce4965982f804b1a7bdaf5a3f70 linux-3.0/drivers/usb/host/whci/whcd.h -6983edfbfbdf9e77536b4f68c581da49 linux-3.0/drivers/usb/host/whci/qset.c -96c665450b9a2ccd7588c6ddf2508223 linux-3.0/drivers/usb/host/whci/pzl.c -37b0223162fccbdf9ff0b2f61bffe1da linux-3.0/drivers/usb/host/whci/int.c -d85d794b7e90ba898a936c0aef356912 linux-3.0/drivers/usb/host/whci/init.c -eb3cb4c89f857975a5476725c4464194 linux-3.0/drivers/usb/host/whci/hw.c -e98082f997371bce12575fc1c2251c2b linux-3.0/drivers/usb/host/whci/hcd.c -9570b6eed988847bf66bad418efb730e linux-3.0/drivers/usb/host/whci/debug.c -b35c0fabb6698c2da35054d4aec4a203 linux-3.0/drivers/usb/host/whci/asl.c -dd5e525ee7132f62289067ad1333083c linux-3.0/drivers/usb/host/whci/Kbuild -09668ec4ccecede6575ee7bbaf075ff2 linux-3.0/drivers/usb/host/uhci-q.c -92f4f868ef82faaa5a48d89e92800829 linux-3.0/drivers/usb/host/uhci-pci.c -7d34117f03f48ccf4ecedf159821bcdf linux-3.0/drivers/usb/host/uhci-hub.c -f27a9b5f05ee688867fb28086cc8973b linux-3.0/drivers/usb/host/uhci-hcd.h -fbdcd63ff31474c5b3c56eb12606e9b1 linux-3.0/drivers/usb/host/uhci-hcd.c -00d18d2f21d13d70d6ab3f49da06c3cb linux-3.0/drivers/usb/host/uhci-grlib.c -9a7de58ef56d2c79d8a42a62df831ee1 linux-3.0/drivers/usb/host/uhci-debug.c -7b361e55671daf99d44e5391aee65395 linux-3.0/drivers/usb/host/u132-hcd.c -a4d29440ce7253732445323897776bcc linux-3.0/drivers/usb/host/sl811_cs.c -8415e633b7633c4e559967dfb223911d linux-3.0/drivers/usb/host/sl811.h -204db141913ffd90880069af1a0a6761 linux-3.0/drivers/usb/host/sl811-hcd.c -091f0065bce2d048afe448b326721f90 linux-3.0/drivers/usb/host/r8a66597.h -cd749808745b0f9858cc2e0f645df762 linux-3.0/drivers/usb/host/r8a66597-hcd.c -eae5375df74922d5002247a2c8c8d4fa linux-3.0/drivers/usb/host/pci-quirks.h -b2c9291fbea23c786a2846469f709573 linux-3.0/drivers/usb/host/pci-quirks.c -0e6566ca171a9b3b55b7fd9410c08538 linux-3.0/drivers/usb/host/oxu210hp.h -85c35d5cc8b3091054e4ec76ce47adfa linux-3.0/drivers/usb/host/oxu210hp-hcd.c -56fe20f09ccf7bdfd4b78c186005b47b linux-3.0/drivers/usb/host/ohci.h -115ca253ddb7a10425995c8dfbb7da2f linux-3.0/drivers/usb/host/ohci-tmio.c -2f2c66d54d54009e6a986bb3f54349bd linux-3.0/drivers/usb/host/ohci-ssb.c -d2553e70a61a7aed3d0cacecdf11c8c8 linux-3.0/drivers/usb/host/ohci-spear.c -99f32d50759f09fb7d43c4905ddd3b02 linux-3.0/drivers/usb/host/ohci-sm501.c -c9476eacb8ff93e9ed9a5af23bac2811 linux-3.0/drivers/usb/host/ohci-sh.c -0e6ccf09728c3ab483095f2a0e6a0ac3 linux-3.0/drivers/usb/host/ohci-sa1111.c -9125006b816c14983dd68ce40f7d1f87 linux-3.0/drivers/usb/host/ohci-s3c2410.c -f18695977e5469f38f8c6cd04e1b61d4 linux-3.0/drivers/usb/host/ohci-q.c -300e06b59647dd822e4f8a7da8aa5cce linux-3.0/drivers/usb/host/ohci-pxa27x.c -e3e463544ec53d164e065511ae1dfc75 linux-3.0/drivers/usb/host/ohci-ps3.c -4bc33630cd2b005d3d4e03711116c845 linux-3.0/drivers/usb/host/ohci-ppc-soc.c -512bb787fc985bc429364070b62608e8 linux-3.0/drivers/usb/host/ohci-ppc-of.c -64ecc6dc38dd2fe1f82c59bc3beafa98 linux-3.0/drivers/usb/host/ohci-pnx8550.c -12c4fe35640ea303a5d2af550c105be8 linux-3.0/drivers/usb/host/ohci-pnx4008.c -3495ec36360936488fb5defc54d5ebe5 linux-3.0/drivers/usb/host/ohci-pci.c -3de5108dde2cadafed584fbeb5867818 linux-3.0/drivers/usb/host/ohci-omap3.c -64d0406190401879a86898e4b8b87660 linux-3.0/drivers/usb/host/ohci-omap.c -b7fccdee16a8bb29715287e38c1fe817 linux-3.0/drivers/usb/host/ohci-octeon.c -728c1d52945bacf57c264ee9e46ac4db linux-3.0/drivers/usb/host/ohci-mem.c -b7b65881df780a7e188da9256538b787 linux-3.0/drivers/usb/host/ohci-jz4740.c -66eac37b1dbff73b54d5d34bc700405e linux-3.0/drivers/usb/host/ohci-hub.c -6a4c4729678bf54d69d9fee6febe4725 linux-3.0/drivers/usb/host/ohci-hcd.c -175b26a3d1d5164905473c707009842a linux-3.0/drivers/usb/host/ohci-ep93xx.c -84d1b585d48345672be09ff5ecf47b8b linux-3.0/drivers/usb/host/ohci-dbg.c -16244911200d3bd774b8e5757830e75f linux-3.0/drivers/usb/host/ohci-da8xx.c -4fe638e66e4525cfc23932eec60d65f2 linux-3.0/drivers/usb/host/ohci-cns3xxx.c -e29bf139faa0115ca028286bb9415452 linux-3.0/drivers/usb/host/ohci-au1xxx.c -3e34b82022d4e1e6ed8107a659a260d8 linux-3.0/drivers/usb/host/ohci-ath79.c -3823a25beff83ddb51f4dc82875b7399 linux-3.0/drivers/usb/host/ohci-at91.c -8df45f7cdfffb490bc1a24a17880baf4 linux-3.0/drivers/usb/host/octeon2-common.c -a04ec6b130d5108c320c90591971a993 linux-3.0/drivers/usb/host/isp1760-if.c -f45be1ccbf8eddc1261d7860800f15a2 linux-3.0/drivers/usb/host/isp1760-hcd.h -cc556ce5d2dd22777c9081487fe4aebc linux-3.0/drivers/usb/host/isp1760-hcd.c -25d72076b0e6179a375f2bfd14618d59 linux-3.0/drivers/usb/host/isp1362.h -afb369b6fae9ddf982385b2ef233a27f linux-3.0/drivers/usb/host/isp1362-hcd.c -a4e9150af44d0d53ca51513627d7f177 linux-3.0/drivers/usb/host/isp116x.h -04383d39e6eabfb4f571b107cc7b2720 linux-3.0/drivers/usb/host/isp116x-hcd.c -cca04e0f715fcb787d2db86b0d31677a linux-3.0/drivers/usb/host/imx21-hcd.h -4a5ca536b472f0f269b0f13c93fc0e81 linux-3.0/drivers/usb/host/imx21-hcd.c -beb06c3a3ab549d500076380bb720e2f linux-3.0/drivers/usb/host/imx21-dbg.c -4b399c0d08c42a55aef7a122cec0eccc linux-3.0/drivers/usb/host/hwa-hc.c -53b840acbd424661ba2b297dc9dce02d linux-3.0/drivers/usb/host/fsl-mph-dr-of.c -750076db1241612e466b79e660e82304 linux-3.0/drivers/usb/host/fhci.h -faeb93b190aef51360a494cbe5180801 linux-3.0/drivers/usb/host/fhci-tds.c -7cb2bd4a2051829d41d5cf04fa00383c linux-3.0/drivers/usb/host/fhci-sched.c -797afe6b45620db9d5754be438313114 linux-3.0/drivers/usb/host/fhci-q.c -32627fa25b0a58c72c6f14ed354f544e linux-3.0/drivers/usb/host/fhci-mem.c -c7a5c95e2ea0a1df55f6d19bc0879dbf linux-3.0/drivers/usb/host/fhci-hub.c -3f6d50d513647d01275f38ce40759b5e linux-3.0/drivers/usb/host/fhci-hcd.c -f9656d4ada4213a057e46915c0842133 linux-3.0/drivers/usb/host/fhci-dbg.c -42ecc04cf12e6e1f37de6308bd7a23ee linux-3.0/drivers/usb/host/ehci.h -3e60840590db5784f8446416b902cb65 linux-3.0/drivers/usb/host/ehci-xilinx-of.c -63a71e9329fc1d5b6d2ff25628c4176a linux-3.0/drivers/usb/host/ehci-w90x900.c -a06ed17d9121dfd9c8df8da75d7e4b4f linux-3.0/drivers/usb/host/ehci-vt8500.c -3ca3d3351ea76a6c1228a85124014851 linux-3.0/drivers/usb/host/ehci-tegra.c -f35a1dcf0aad03fe4dcbbaea4e177858 linux-3.0/drivers/usb/host/ehci-spear.c -3c11da0ebd0e636ed8d946f04f9eaaf9 linux-3.0/drivers/usb/host/ehci-sh.c -286fa3e6df22bf8d77981c25dc648bd0 linux-3.0/drivers/usb/host/ehci-sched.c -fa1347826952633ff6e9fea80b1f3f02 linux-3.0/drivers/usb/host/ehci-s5p.c -d19b2aa69be1fc9f3235cf4cc776e0b5 linux-3.0/drivers/usb/host/ehci-q.c -145a585cf96c3fa6dc81d9ae1e4b091e linux-3.0/drivers/usb/host/ehci-ps3.c -f1d94d18f5555aa193f0ad5e364473ad linux-3.0/drivers/usb/host/ehci-ppc-of.c -50f652ad6cee6ee63b0ca8822e037a72 linux-3.0/drivers/usb/host/ehci-pmcmsp.c -ac8356e011a2f0a8c74f7378853fe48a linux-3.0/drivers/usb/host/ehci-pci.c -885dfac4f9fbefc9c08227fbd136e53e linux-3.0/drivers/usb/host/ehci-orion.c -9372d7d4c946971d4e31d708eb1cc742 linux-3.0/drivers/usb/host/ehci-omap.c -0a2fe36caa0bd4555731292a5d322cea linux-3.0/drivers/usb/host/ehci-octeon.c -a99576c42f86c114e3277d2489908491 linux-3.0/drivers/usb/host/ehci-mxc.c -13df2eeb4d07183a4dd895d5fe973cff linux-3.0/drivers/usb/host/ehci-msm.c -966472182d929985b525c448d2d6bcb6 linux-3.0/drivers/usb/host/ehci-mem.c -34caef105e31083cacf4dc686d3abf69 linux-3.0/drivers/usb/host/ehci-lpm.c -c204b01a3916beab00184faee0644ada linux-3.0/drivers/usb/host/ehci-ixp4xx.c -9eec7f48487e77024766aa98269e9fa0 linux-3.0/drivers/usb/host/ehci-hub.c -bc41a39a0a8ff896b3f290f7c789d434 linux-3.0/drivers/usb/host/ehci-hcd.c -6c0b08aa3e3aee6fe6e8da787e3ad0cc linux-3.0/drivers/usb/host/ehci-grlib.c -9230ef44c1f1d264af95604e80497cab linux-3.0/drivers/usb/host/ehci-fsl.h -07859f7ffd9b0d4e17e28a6c4405af35 linux-3.0/drivers/usb/host/ehci-fsl.c -014d0f7397280471b793e842125c9f32 linux-3.0/drivers/usb/host/ehci-dbg.c -94bfd33a6f1204207631fa138b625611 linux-3.0/drivers/usb/host/ehci-cns3xxx.c -4ab1e36de11e769a8aafad51133861a9 linux-3.0/drivers/usb/host/ehci-au1xxx.c -190d2ca40f2391f66c55e5d91a1a0488 linux-3.0/drivers/usb/host/ehci-atmel.c -b85cfdb38adb1c0e82eea69c24a56e03 linux-3.0/drivers/usb/host/ehci-ath79.c -bf83ad3b61347be007d2b1848f62048e linux-3.0/drivers/usb/host/Makefile -bee6d81df81c026d881ed895806689ce linux-3.0/drivers/usb/host/Kconfig -cf8b533957fe1d6c941db28e176eb52c linux-3.0/drivers/usb/gadget/zero.c -07f97bf0b4fbdba1d2b73e84e3da3611 linux-3.0/drivers/usb/gadget/webcam.c -0565d22fc36c7fd4d52413e30ee724c2 linux-3.0/drivers/usb/gadget/uvc_video.c -40e1a452ffa1b73bfe0e4249f12c0467 linux-3.0/drivers/usb/gadget/uvc_v4l2.c -07ed4e5a69188d79b7c9858bd2d4a147 linux-3.0/drivers/usb/gadget/uvc_queue.h -e0f4357bc1e77c10fe97e078cab1420e linux-3.0/drivers/usb/gadget/uvc_queue.c -b1a19b4b5431a479c73d4a45b0ab56de linux-3.0/drivers/usb/gadget/uvc.h -103eea9c5d92958865ebcf72d2c02b2c linux-3.0/drivers/usb/gadget/usbstring.c -f3648557ad3745e9b58f7bce45e5b30a linux-3.0/drivers/usb/gadget/u_serial.h -71c08a92074f8e3535b93fe9f7ce2b9f linux-3.0/drivers/usb/gadget/u_serial.c -8537dc94d027af844bc377d91acbff23 linux-3.0/drivers/usb/gadget/u_phonet.h -d7d01c8a6aae3a8e9d08567b0b8f9650 linux-3.0/drivers/usb/gadget/u_ether.h -74ba5ac7affcd3ab5a9aed8228fef8be linux-3.0/drivers/usb/gadget/u_ether.c -41e17262fc6be54a6a19258586c995ad linux-3.0/drivers/usb/gadget/u_audio.h -186e3aa689cf6ab3c14fd89ebccaf16d linux-3.0/drivers/usb/gadget/u_audio.c -49900ffa87a63c44cdbc0a11a17361d6 linux-3.0/drivers/usb/gadget/storage_common.c -20d9bacccf0b23d9d8d88276bddd523c linux-3.0/drivers/usb/gadget/serial.c -1965e0087bbc83c828beaca93ced51ce linux-3.0/drivers/usb/gadget/s3c2410_udc.h -248def7107317e0fd310e309b6322b4b linux-3.0/drivers/usb/gadget/s3c2410_udc.c -c1c8da2b2c5d3bd184ff049a2825c10e linux-3.0/drivers/usb/gadget/s3c-hsudc.c -dd191565083f36abb985814e370d9ada linux-3.0/drivers/usb/gadget/s3c-hsotg.c -7e72096edb9d8074dc79f0266d8b19d5 linux-3.0/drivers/usb/gadget/rndis.h -6e340eed01cb650747e67443c8eacdb7 linux-3.0/drivers/usb/gadget/rndis.c -2c577aaeddcdd400aeeeaf2cccad3c7e linux-3.0/drivers/usb/gadget/r8a66597-udc.h -6e058a23afd12248094777b0b9de603f linux-3.0/drivers/usb/gadget/r8a66597-udc.c -8e28a0048ba062bdd9b7b2a2ebb4ebf8 linux-3.0/drivers/usb/gadget/pxa27x_udc.h -842655a48115c7dbeb21adf695c0b916 linux-3.0/drivers/usb/gadget/pxa27x_udc.c -62ccb9c0614224bb19023fce57eb7492 linux-3.0/drivers/usb/gadget/pxa25x_udc.h -1d503ce3ab48606117880eb170b42aaa linux-3.0/drivers/usb/gadget/pxa25x_udc.c -f16394f62a7f6281ab4764d8e652ec81 linux-3.0/drivers/usb/gadget/printer.c -2eb9a0f863469619892c6eb1902aa894 linux-3.0/drivers/usb/gadget/pch_udc.c -be9c9ccbe275e760f6cf5f6b20cf6ed4 linux-3.0/drivers/usb/gadget/omap_udc.h -7c4011275a9aee6634afa14c3c9454d4 linux-3.0/drivers/usb/gadget/omap_udc.c -bdef0262e88cd018acb8a17282e0fab5 linux-3.0/drivers/usb/gadget/nokia.c -d936e57b95c0628a806c62493360ef23 linux-3.0/drivers/usb/gadget/net2280.h -686b0c44d28a6dbd64e68ff8b324f4d1 linux-3.0/drivers/usb/gadget/net2280.c -9db4c4f3e2a55c5a26f10caa6a16bb70 linux-3.0/drivers/usb/gadget/ndis.h -6a288370f4315f314348f9da4bc7f7aa linux-3.0/drivers/usb/gadget/ncm.c -adafcce994e1eb18fa33e34b3eed9c17 linux-3.0/drivers/usb/gadget/mv_udc_phy.c -33cabc2fcddf51144d883b5cf8abb795 linux-3.0/drivers/usb/gadget/mv_udc_core.c -c871e6755af7a95fa97f41d8db70f33a linux-3.0/drivers/usb/gadget/mv_udc.h -3ddece8d5fc19663e80dece36559358d linux-3.0/drivers/usb/gadget/multi.c -541cd692da251d16db7eaeec7fdcb9d7 linux-3.0/drivers/usb/gadget/mass_storage.c -2e93e47cbe3fe1a267ba56e0157886fa linux-3.0/drivers/usb/gadget/m66592-udc.h -611c9eadd0d53a585a25982989fd40b8 linux-3.0/drivers/usb/gadget/m66592-udc.c -8584ad5873b5d9835033b4ee003cf687 linux-3.0/drivers/usb/gadget/langwell_udc.h -39c42f0ab297bfdc0a17a62e99c53185 linux-3.0/drivers/usb/gadget/langwell_udc.c -1a7c3c1b07be95380c2070e536cd9b10 linux-3.0/drivers/usb/gadget/inode.c -10f7fbca581f7ff7dbf6c1aa1f7bdcb5 linux-3.0/drivers/usb/gadget/imx_udc.h -6dd10237a3d852914906f05f79cefe29 linux-3.0/drivers/usb/gadget/imx_udc.c -930a7c8664af8a5ec4033f64d9140810 linux-3.0/drivers/usb/gadget/hid.c -df62b6ac280e52756c56c500654afc7d linux-3.0/drivers/usb/gadget/goku_udc.h -bd1a7f8206e95fd252409e31a943aedf linux-3.0/drivers/usb/gadget/goku_udc.c -e3647e05faa483564c1a16132a8c979c linux-3.0/drivers/usb/gadget/gmidi.c -7b5e8f2cff0bb5a7b9d17c9eb4e29911 linux-3.0/drivers/usb/gadget/gadget_chips.h -ac85c28e42bcb9c9c067cda5dbf4f7bc linux-3.0/drivers/usb/gadget/g_zero.h -f68dafa8d0883aad4aa45989ff6d11c8 linux-3.0/drivers/usb/gadget/g_ffs.c -426495e95340bf379c1469a763dd50b3 linux-3.0/drivers/usb/gadget/fusb300_udc.h -307ea24bfa1dcdc56cb8c3086054e75e linux-3.0/drivers/usb/gadget/fusb300_udc.c -346380699d57f5fbeac81632d03fd632 linux-3.0/drivers/usb/gadget/fsl_usb2_udc.h -57fd0a3f41bc71b8d95098dbadeef518 linux-3.0/drivers/usb/gadget/fsl_udc_core.c -d0b1ad0f67189bf7d84012186ad9ca53 linux-3.0/drivers/usb/gadget/fsl_qe_udc.h -2fec869d3816b395c4053d2cf20dde07 linux-3.0/drivers/usb/gadget/fsl_qe_udc.c -1ad2becb3e7b2a5180a8bda2f10b148e linux-3.0/drivers/usb/gadget/fsl_mxc_udc.c -3a09ca336819afd667fdd0f9276781f9 linux-3.0/drivers/usb/gadget/file_storage.c -f1a5a8406c3eb4f13f1da1ef4b7fa615 linux-3.0/drivers/usb/gadget/f_uvc.h -6faca154b2097e8c241d4dd9fe88432e linux-3.0/drivers/usb/gadget/f_uvc.c -08ea29ccd81d02fb2683809c0dcbeeaf linux-3.0/drivers/usb/gadget/f_subset.c -0d401323ac228e7f089224a8e621fc1b linux-3.0/drivers/usb/gadget/f_sourcesink.c -52c7c7b58c5be4433bc768bc052be871 linux-3.0/drivers/usb/gadget/f_serial.c -1736501ab5a9c8d1c55e148037d975d1 linux-3.0/drivers/usb/gadget/f_rndis.c -6995ef3bb7e1b2c08ce5342fb571823c linux-3.0/drivers/usb/gadget/f_phonet.c -1829ae1b33f394043968b5ccfe650e96 linux-3.0/drivers/usb/gadget/f_obex.c -c8e7500d3934a6f690e6f4dc87feec9a linux-3.0/drivers/usb/gadget/f_ncm.c -851670a1fbe1d3555a2b194ab2c70ad5 linux-3.0/drivers/usb/gadget/f_mass_storage.c -9ace0034fe902ee4f4a747c3007bb10d linux-3.0/drivers/usb/gadget/f_loopback.c -f7a34e5e22b42240b4c58693acae7da1 linux-3.0/drivers/usb/gadget/f_hid.c -41a808535afb847fdf75df1f6f0eecca linux-3.0/drivers/usb/gadget/f_fs.c -07493a99b297b1f883da6dbdac1e424d linux-3.0/drivers/usb/gadget/f_eem.c -1e2e31c140a4977e201f550b929f6f3e linux-3.0/drivers/usb/gadget/f_ecm.c -2f0c30b94158884d965046c255e32e8c linux-3.0/drivers/usb/gadget/f_audio.c -fce60d65e7039da1cfe6d85488273f81 linux-3.0/drivers/usb/gadget/f_acm.c -b53d1ede4b30aa51773639b4c9442682 linux-3.0/drivers/usb/gadget/ether.c -430fbf418f7bb21fcb7c24629b85967a linux-3.0/drivers/usb/gadget/epautoconf.c -54bddfcb10263468f51009ab98b635fc linux-3.0/drivers/usb/gadget/dummy_hcd.c -baebfd3d3ae438eea2e990c994dbd25d linux-3.0/drivers/usb/gadget/dbgp.c -6a437c5efe809b0affa5568e2e56b4b2 linux-3.0/drivers/usb/gadget/config.c -462411e925ef1ecb1becf7255c0921e9 linux-3.0/drivers/usb/gadget/composite.c -88af6691aed481d047c64d32b0822718 linux-3.0/drivers/usb/gadget/ci13xxx_udc.h -eea4d4174a8cc9e29e3c2fc8c2da0ca1 linux-3.0/drivers/usb/gadget/ci13xxx_udc.c -89fea92ac98abea511c90c7290917c15 linux-3.0/drivers/usb/gadget/ci13xxx_pci.c -e048d4d75749c640169bab377ba32356 linux-3.0/drivers/usb/gadget/ci13xxx_msm.c -fade79838ca58a7e16cbaba327dd5745 linux-3.0/drivers/usb/gadget/cdc2.c -17b49cee6f0029061b18eddafcdec57a linux-3.0/drivers/usb/gadget/audio.c -c77e1b67b06485c62875188d104d8337 linux-3.0/drivers/usb/gadget/atmel_usba_udc.h -6735e303004c0e543a54cb40f283635a linux-3.0/drivers/usb/gadget/atmel_usba_udc.c -54728afb06ad5b22cc42d92c14bd0eac linux-3.0/drivers/usb/gadget/at91_udc.h -1d153ce5cf415847f082291b383643cc linux-3.0/drivers/usb/gadget/at91_udc.c -be0f026cafad99a98c58ebefd8b7c642 linux-3.0/drivers/usb/gadget/amd5536udc.h -1c21d0cbdf7ebdbb1e03e947d497da08 linux-3.0/drivers/usb/gadget/amd5536udc.c -4e95e9b5a0457f3c5b86dc9efacc0447 linux-3.0/drivers/usb/gadget/Makefile -1d298553e0b37da013a73988d77c7149 linux-3.0/drivers/usb/gadget/Kconfig -d5fd840a90e1f17acfb6f9057ffcda1b linux-3.0/drivers/usb/early/ehci-dbgp.c -d5c24326364565f615a3bc6ee57a9c15 linux-3.0/drivers/usb/early/Makefile -dc8bd506d2b957c8b30f5db0e188ceee linux-3.0/drivers/usb/core/usb.h -ea11e3766aa407e6c0a445f554daf4d4 linux-3.0/drivers/usb/core/usb.c -5cf4e96dcac2ecf56a544fc13b81038b linux-3.0/drivers/usb/core/urb.c -e2080b0fe7a81c414ee6f1d9692beef1 linux-3.0/drivers/usb/core/sysfs.c -0f387686cba7ac2479583181d6134ccd linux-3.0/drivers/usb/core/quirks.c -d58a0da45e6f751fbb9016feca032971 linux-3.0/drivers/usb/core/otg_whitelist.h -4d2bdcf623bf9904a267343bbeda78e6 linux-3.0/drivers/usb/core/notify.c -cffa602a090f7b8835a310982c7ab39d linux-3.0/drivers/usb/core/message.c -11de1355e3667f885de9dd55dcd7c382 linux-3.0/drivers/usb/core/inode.c -19070f2dd492c848d61f35a9abdc542c linux-3.0/drivers/usb/core/hub.c -fddfc6c339921a4416e246f35b1b1d27 linux-3.0/drivers/usb/core/hcd.c -deefb8bf28462790ddaa9533f2128a37 linux-3.0/drivers/usb/core/hcd-pci.c -a019bbe8abd45b8aa9ce05026d682864 linux-3.0/drivers/usb/core/generic.c -f9741491643287e011abd21cd4f06476 linux-3.0/drivers/usb/core/file.c -7fcb56e2b3da8ae719eba7cf0a8b495c linux-3.0/drivers/usb/core/endpoint.c -d12d71b3927a967d765cd8b527771ad6 linux-3.0/drivers/usb/core/driver.c -68268d77fa78756402a9b7f0bb9ea68a linux-3.0/drivers/usb/core/devio.c -75dedc4cfcd873c78393b62d0b7f2a0d linux-3.0/drivers/usb/core/devices.c -4ee6774fbce9f7d9e805e290eb04f79c linux-3.0/drivers/usb/core/config.c -9acd13e2a9f42ba874068713308af43c linux-3.0/drivers/usb/core/buffer.c -785306c6d419b83ef86fa5005f116c82 linux-3.0/drivers/usb/core/Makefile -ea5fe1a4aef81a0b61a4d9f64129beb9 linux-3.0/drivers/usb/core/Kconfig -b151e17843bd6ce58964273851dc31bb linux-3.0/drivers/usb/class/usbtmc.c -6d692caa1bdd29e3369cc1f8269dbe17 linux-3.0/drivers/usb/class/usblp.c -d235858c4759be41594fe7177d584d20 linux-3.0/drivers/usb/class/cdc-wdm.c -b777eb7c5d79138590cd5ab88748494e linux-3.0/drivers/usb/class/cdc-acm.h -1ec1391efeeef9607d1666e8f36cddf2 linux-3.0/drivers/usb/class/cdc-acm.c -6cf306892ca8cce4f7285176afc6a276 linux-3.0/drivers/usb/class/Makefile -c0f50ab854baebaaac9c86eedbc3e287 linux-3.0/drivers/usb/class/Kconfig -f5df87971a636d0d94255f57d57a4e45 linux-3.0/drivers/usb/c67x00/c67x00.h -d0fe0316a0096ecd752875dc6633c7c3 linux-3.0/drivers/usb/c67x00/c67x00-sched.c -a7d5714e509fe5a7248ff9ad63cda4fd linux-3.0/drivers/usb/c67x00/c67x00-ll-hpi.c -fc8ff132716b0dabcf7da5c5bcd7abd3 linux-3.0/drivers/usb/c67x00/c67x00-hcd.h -ca2d44b94c144f652304ceb5d8cd0c2b linux-3.0/drivers/usb/c67x00/c67x00-hcd.c -d1416cce1d751c943ade317acd65b00d linux-3.0/drivers/usb/c67x00/c67x00-drv.c -8ceabd2f68e9f8fddf100071b548a52b linux-3.0/drivers/usb/c67x00/Makefile -91f3f43ecf602a55e2b7291446c982f0 linux-3.0/drivers/usb/atm/xusbatm.c -612d4e76f29a7194991da13ab144e01d linux-3.0/drivers/usb/atm/usbatm.h -fb8d1cf5c86b10625855e302ae355af0 linux-3.0/drivers/usb/atm/usbatm.c -bc84c9ed30e65ad5a768c230e070f80e linux-3.0/drivers/usb/atm/ueagle-atm.c -c2e10acb692e287667979fa5f83d9db1 linux-3.0/drivers/usb/atm/speedtch.c -a817e50399b1a8a4a74e541abfdcc548 linux-3.0/drivers/usb/atm/cxacru.c -b87028aca5ff619f94b18f01270c431f linux-3.0/drivers/usb/atm/Makefile -940fca0d7d949b6f116f5395c190c67e linux-3.0/drivers/usb/atm/Kconfig -5b299352ca953bceccae8220e6173c2e linux-3.0/drivers/usb/README -df82ddc38008c7e4fe820d92b3b5313e linux-3.0/drivers/usb/Makefile -9267f32e2b6974b33caba8431691f2ea linux-3.0/drivers/usb/Kconfig -a4d3bbd443e4307db3f35ebf2910e67f linux-3.0/drivers/uio/uio_sercos3.c -4fc541aa6f617dbdfa79555a12e4bfca linux-3.0/drivers/uio/uio_pruss.c -99920a94dd6c6525fae690536aa6d5ee linux-3.0/drivers/uio/uio_pdrv_genirq.c -fa029084a1d66b54a27fb5bdf625c600 linux-3.0/drivers/uio/uio_pdrv.c -7c0f3cb6fd2001dc4652d759b21cb11c linux-3.0/drivers/uio/uio_pci_generic.c -47968f74f5675a90187c6368d1dc1402 linux-3.0/drivers/uio/uio_netx.c -8b3a8dcf64b3a9949c5fed902d73266a linux-3.0/drivers/uio/uio_cif.c -925e56252865c4db5d3db0f0c4cc6ebd linux-3.0/drivers/uio/uio_aec.c -bf73087430273f1deed1b088c75880d6 linux-3.0/drivers/uio/uio.c -b7ee586197a8ab477e423bd1bd2ca065 linux-3.0/drivers/uio/Makefile -e9de6a18ffdded18376639f799a74c1e linux-3.0/drivers/uio/Kconfig -e5a707f9d4d698c1f8ec27bfa461d2f1 linux-3.0/drivers/tty/vt/vt_ioctl.c -fd9f79355c724b16bec239f8b7e50299 linux-3.0/drivers/tty/vt/vt.c -c3936da5c8aebeb695adee9bac39fd84 linux-3.0/drivers/tty/vt/vc_screen.c -81e55cdd71e058b7751d701040fc22de linux-3.0/drivers/tty/vt/selection.c -a5c208804a1944363f1f346b9fbfebdd linux-3.0/drivers/tty/vt/keyboard.c -f455aef2cd9b50f3931f2e9132a9e473 linux-3.0/drivers/tty/vt/defkeymap.map -c0c733cf66449cce147d99b401330b6f linux-3.0/drivers/tty/vt/defkeymap.c_shipped -10b4a73521bfdf14be2c62151e66a3dd linux-3.0/drivers/tty/vt/cp437.uni -5e4e9415ea2f7f3f14f3629c3fb78bd2 linux-3.0/drivers/tty/vt/consolemap.c -70c560590f1270f02ca592acd8b9c38c linux-3.0/drivers/tty/vt/Makefile -2fc0634bf3f8f9c2e7c8c253ed5250d6 linux-3.0/drivers/tty/vt/.gitignore -bc0160db28eb9c8811cb79d35c6d4a29 linux-3.0/drivers/tty/tty_port.c -1c51f83d4558840d0f5a60103ce14539 linux-3.0/drivers/tty/tty_mutex.c -3d935599757e17075c0ac84db21b455b linux-3.0/drivers/tty/tty_ldisc.c -c13cc98cdb8f03d798a626d0629962a9 linux-3.0/drivers/tty/tty_ioctl.c -0af42f79d4f8b1be9f92f027672ac962 linux-3.0/drivers/tty/tty_io.c -2bfe571ad058bc248b479a2025ebde0d linux-3.0/drivers/tty/tty_buffer.c -eaa4a6745acaacc0d368299056aadfdc linux-3.0/drivers/tty/tty_audit.c -df49b69ff5039efb6555dc143ce74ede linux-3.0/drivers/tty/sysrq.c -79495a10c494e2cc33646305be4061a8 linux-3.0/drivers/tty/synclinkmp.c -dc8da9d878aeebe5c88a4c5ace4e8259 linux-3.0/drivers/tty/synclink_gt.c -578f1dba4d6d61487eeb30becb5051ba linux-3.0/drivers/tty/synclink.c -5bbb35b5b56bfb29ea5f0d5914037fa3 linux-3.0/drivers/tty/serial/zs.h -e863760e072adabd8dbb0e6b4c0902ac linux-3.0/drivers/tty/serial/zs.c -757048c28646d6a37efbac6d288365e0 linux-3.0/drivers/tty/serial/xilinx_uartps.c -9857554255513212f787535e813c3615 linux-3.0/drivers/tty/serial/vt8500_serial.c -2c1d4e8687b2ceac3573b112deed1a8e linux-3.0/drivers/tty/serial/vr41xx_siu.c -8146b101502de0048fa48a0b2384ea81 linux-3.0/drivers/tty/serial/ucc_uart.c -902d1c6462652d2e96fc7d4905781a80 linux-3.0/drivers/tty/serial/uartlite.c -34d384e1aceed8499686b1584c0ba72d linux-3.0/drivers/tty/serial/timbuart.h -5a0df446ff98024341520cdf10f9271e linux-3.0/drivers/tty/serial/timbuart.c -9dccc043dee3df3b688b60f9c88c1b09 linux-3.0/drivers/tty/serial/sunzilog.h -9ebadc2438f946a8a3991ee006a707f1 linux-3.0/drivers/tty/serial/sunzilog.c -24891291ce8d7756361dc6fa165dc08d linux-3.0/drivers/tty/serial/sunsu.c -18c523fc0fa0178d29328a74206bf9e1 linux-3.0/drivers/tty/serial/sunsab.h -c6d44fa97e254f40b8f751cd18f0b4c4 linux-3.0/drivers/tty/serial/sunsab.c -6239630733c6b7ca78d90da13a8fd333 linux-3.0/drivers/tty/serial/sunhv.c -42fdba8ca4aacda32ddb72eefd0eeda5 linux-3.0/drivers/tty/serial/suncore.h -fb2e3bbb645fd061d3757ab4a51c2c6d linux-3.0/drivers/tty/serial/suncore.c -3e88982dc53c8d69a9aa50fcae80d579 linux-3.0/drivers/tty/serial/sn_console.c -baecfaf5a44b07ab4ac39a68ef8d83fc linux-3.0/drivers/tty/serial/sh-sci.h -92c8952a012d22259ebc06d91a934e50 linux-3.0/drivers/tty/serial/sh-sci.c -5ac271e91dc47d5eb151dc372c7c2343 linux-3.0/drivers/tty/serial/serial_txx9.c -0c428286d4d249960d26d8ba1204c450 linux-3.0/drivers/tty/serial/serial_ks8695.c -11d517321d9d6a83648c106f88685c3e linux-3.0/drivers/tty/serial/serial_cs.c -b31aa6dcea1c1d7bc32df02b55594ff6 linux-3.0/drivers/tty/serial/serial_core.c -788e75ae045ed28ff5a1859b4c01fc6e linux-3.0/drivers/tty/serial/sc26xx.c -2f5bc7de708c4923aef1ced9603ee8ca linux-3.0/drivers/tty/serial/sb1250-duart.c -407b9d5c01d79afb124d8114a10d858f linux-3.0/drivers/tty/serial/samsung.h -d5d5a59d8e4cc67d54dfc6763768e22a linux-3.0/drivers/tty/serial/samsung.c -30489096067b99fdcbe1fd859521a79d linux-3.0/drivers/tty/serial/sa1100.c -46f4f21918d0c4f063dc32c260991430 linux-3.0/drivers/tty/serial/s5pv210.c -1f0abbbd945146d37f62cc4df1c94dbc linux-3.0/drivers/tty/serial/s3c6400.c -35b2db029fff09e7dff7a755bb9add23 linux-3.0/drivers/tty/serial/s3c24a0.c -8911f4ca7efdee03cdee269e79c5e239 linux-3.0/drivers/tty/serial/s3c2440.c -7b6b0e37cd8c3e33855749cc5a589df4 linux-3.0/drivers/tty/serial/s3c2412.c -7e9c1b775c1e84f9ecb29cade8dae620 linux-3.0/drivers/tty/serial/s3c2410.c -46eb9a0322d1b16a069d67391ee1451c linux-3.0/drivers/tty/serial/s3c2400.c -dcebc26effc56e308032497141c7fe64 linux-3.0/drivers/tty/serial/pxa.c -484b0a8548f1a93f8dd823eef6282179 linux-3.0/drivers/tty/serial/pnx8xxx_uart.c -e73650d3d3f8e168ffb0b8015f53415b linux-3.0/drivers/tty/serial/pmac_zilog.h -1f1725625c5ed44c9818af04bf0ba409 linux-3.0/drivers/tty/serial/pmac_zilog.c -13858b391d145c73fa07a337c886b361 linux-3.0/drivers/tty/serial/pch_uart.c -f121b744c6423e1244a3f1096b3293f7 linux-3.0/drivers/tty/serial/omap-serial.c -1c323805834698463fe6f2155edb3bc6 linux-3.0/drivers/tty/serial/of_serial.c -c3d6f45c661123de1de14dd33b36acae linux-3.0/drivers/tty/serial/nwpserial.c -d802216c3d28f7c5a338657cf66c8e88 linux-3.0/drivers/tty/serial/netx-serial.c -3cff65327a0e3df956025a9bddba9f63 linux-3.0/drivers/tty/serial/mxs-auart.c -2873a4516587bfda11f839b1c9f633dd linux-3.0/drivers/tty/serial/mux.c -44d72c656b0043c150cce50be71d4126 linux-3.0/drivers/tty/serial/msm_smd_tty.c -29620d80c258dc6c02362b354d3dd38c linux-3.0/drivers/tty/serial/msm_serial_hs.c -357bb5799ccea65a603cc27fe54f7b2f linux-3.0/drivers/tty/serial/msm_serial.h -79afb9bf6e8b0ee795a2e66814ac52ff linux-3.0/drivers/tty/serial/msm_serial.c -cd0e6b670ad3f53f21e7e8d966cb76ee linux-3.0/drivers/tty/serial/mrst_max3110.h -827ac6639a2fb5bbd85bfcf478178c64 linux-3.0/drivers/tty/serial/mrst_max3110.c -96f9c6eb8f2017de5840fc9969f44dc1 linux-3.0/drivers/tty/serial/mpsc.c -c86a0c5567f8157609995baf3614537c linux-3.0/drivers/tty/serial/mpc52xx_uart.c -db370bb3266eeb70e0643b1727a494bf linux-3.0/drivers/tty/serial/mfd.c -7c2db579ab8c243f048aa3f4c8af4c19 linux-3.0/drivers/tty/serial/mcf.c -cf311d9ec8f6f13779e749f500f181d5 linux-3.0/drivers/tty/serial/max3107.h -afe5c3271fb86af5c61006fecf848b91 linux-3.0/drivers/tty/serial/max3107.c -586dc37f21d2876c42642c8ed6773d9d linux-3.0/drivers/tty/serial/max3107-aava.c -32a133f57f0d0482436b6611e0226fa3 linux-3.0/drivers/tty/serial/max3100.c -761de641225ba04ee0db7b47f47531a7 linux-3.0/drivers/tty/serial/m32r_sio_reg.h -4cbe42f2c578a522e98481b4f3a9adef linux-3.0/drivers/tty/serial/m32r_sio.h -86a964246e33f98be3be2736c3ab1c31 linux-3.0/drivers/tty/serial/m32r_sio.c -3b35f24a750c69f29f7fd34e5048162a linux-3.0/drivers/tty/serial/lantiq.c -7fec826a31e9dceae329fe6f6890969d linux-3.0/drivers/tty/serial/kgdboc.c -8bdc2a1f2966a93e2d01bebeb8fdf7f3 linux-3.0/drivers/tty/serial/jsm/jsm_tty.c -b857ca8def8d3bb095993fc4378e48b3 linux-3.0/drivers/tty/serial/jsm/jsm_neo.c -8cea05f60c88e43851ed4b74d606a562 linux-3.0/drivers/tty/serial/jsm/jsm_driver.c -3573bfffd09d4ca640f374b8b8d5566c linux-3.0/drivers/tty/serial/jsm/jsm.h -77fbbc9de73088739fef52050a59552c linux-3.0/drivers/tty/serial/jsm/Makefile -976b37fe195e195cb10c12e85007d230 linux-3.0/drivers/tty/serial/ip22zilog.h -8cc5044d15fe771c7d927dc901c7107a linux-3.0/drivers/tty/serial/ip22zilog.c -991668d4362dc46a8d2c42548f4e3909 linux-3.0/drivers/tty/serial/ioc4_serial.c -c7b1670b5b60bd21e3c16b8854554b1a linux-3.0/drivers/tty/serial/ioc3_serial.c -ee738606669d92521f03050d598f6f99 linux-3.0/drivers/tty/serial/imx.c -024dd09b7a02f106cb1eb323c619f55c linux-3.0/drivers/tty/serial/ifx6x60.h -bcc1675c631346ce370f913a81357242 linux-3.0/drivers/tty/serial/ifx6x60.c -a5898481a7aa5d26276522f60e08324d linux-3.0/drivers/tty/serial/icom.h -cc2d4bba78fe0edc94a1eb759ae0d8ff linux-3.0/drivers/tty/serial/icom.c -0abe10d2967be9fa8db4dd3251aa32a7 linux-3.0/drivers/tty/serial/dz.h -98823475c41f548ddc2743d93c7c0c85 linux-3.0/drivers/tty/serial/dz.c -c96796409077aaa52d9a14948ab04334 linux-3.0/drivers/tty/serial/crisv10.h -e0b9713447434562a0563b3a2c132faf linux-3.0/drivers/tty/serial/crisv10.c -f3e12f7e6819fa651d3f7d5a35ad2368 linux-3.0/drivers/tty/serial/cpm_uart/cpm_uart_cpm2.h -bf88fff562a9670c219fb3853572b28f linux-3.0/drivers/tty/serial/cpm_uart/cpm_uart_cpm2.c -fb2b93f3d4d15867ee66614693568ff9 linux-3.0/drivers/tty/serial/cpm_uart/cpm_uart_cpm1.h -afbc8e4df69d38554f6bff7aed6d3df1 linux-3.0/drivers/tty/serial/cpm_uart/cpm_uart_cpm1.c -dbaf6686432001dd494e2ceff5d1fdb4 linux-3.0/drivers/tty/serial/cpm_uart/cpm_uart_core.c -f57dad18dd29884f84661f2ff1ff654d linux-3.0/drivers/tty/serial/cpm_uart/cpm_uart.h -0ddfb19b7eff45e89518cbc9a9df44de linux-3.0/drivers/tty/serial/cpm_uart/Makefile -4d7010ab46b1555ca18430362a85c1a1 linux-3.0/drivers/tty/serial/clps711x.c -76dedc8a1d40670182d384b141b653cf linux-3.0/drivers/tty/serial/bfin_sport_uart.h -8b1cafed1738a0832256b81b8c124357 linux-3.0/drivers/tty/serial/bfin_sport_uart.c -02259898196fac3c0f2009b86f0c1405 linux-3.0/drivers/tty/serial/bfin_5xx.c -9b54a3acc0319ba8f516f170606d51a2 linux-3.0/drivers/tty/serial/bcm63xx_uart.c -2432a9358077705bcb305734e376dc6a linux-3.0/drivers/tty/serial/atmel_serial.c -d1c6f7566147a82460dd7f9a4091c237 linux-3.0/drivers/tty/serial/apbuart.h -871e80613ec1e1b5c9d038f42deaa0a0 linux-3.0/drivers/tty/serial/apbuart.c -c0eff5c0fc6eed459f304596c19b057e linux-3.0/drivers/tty/serial/amba-pl011.c -d1bf4597d6768b54e927f3e5bb756614 linux-3.0/drivers/tty/serial/amba-pl010.c -216b30cc9400b09259d182223f8f7ddf linux-3.0/drivers/tty/serial/altera_uart.c -f50cffd4685e13c4bfd93b0fa086828c linux-3.0/drivers/tty/serial/altera_jtaguart.c -cdace2c5c45cc64d7554a48c61ebc7d8 linux-3.0/drivers/tty/serial/Makefile -0714756a0500e66bc0d95c959c89ddae linux-3.0/drivers/tty/serial/Kconfig -476ce8632cb612730e48383b69887ae2 linux-3.0/drivers/tty/serial/8250_pnp.c -76eea5822810ef0a9c178ad2f21b1a61 linux-3.0/drivers/tty/serial/8250_pci.c -ba051f3710bc415c566574c3e7ebf8c1 linux-3.0/drivers/tty/serial/8250_mca.c -7c9010a43014f3ba4631c53a85b2aecd linux-3.0/drivers/tty/serial/8250_hub6.c -2120f35302fdbbe176b99ce3052830fd linux-3.0/drivers/tty/serial/8250_hp300.c -49b4efc0b4b767d5ce1f9110a4392d18 linux-3.0/drivers/tty/serial/8250_gsc.c -e86cdadced430f26768327aafbab701a linux-3.0/drivers/tty/serial/8250_fourport.c -1cea0e20961cd6e3f4be177a7296c59e linux-3.0/drivers/tty/serial/8250_exar_st16c554.c -0ba538f6195a8272076d1466b7b61bf7 linux-3.0/drivers/tty/serial/8250_early.c -7c1764ba6bd8b9be76c821fbd8436300 linux-3.0/drivers/tty/serial/8250_boca.c -9ac81072d46279736c42d9ce64f497e5 linux-3.0/drivers/tty/serial/8250_acorn.c -bbcd37f110b77778749f6951a3a43337 linux-3.0/drivers/tty/serial/8250_accent.c -a5656dc1417e75d723b1b91b60f36b9c linux-3.0/drivers/tty/serial/8250.h -9c75b8edbc9b38bbf1c5254c7e183f6d linux-3.0/drivers/tty/serial/8250.c -e54e354a2a5c3fa288131f394710e7f7 linux-3.0/drivers/tty/serial/68360serial.c -7be43f1955d7c5e940453da9c2d06e62 linux-3.0/drivers/tty/serial/68328serial.h -53dd157c511b979e6408f1f30ac236b0 linux-3.0/drivers/tty/serial/68328serial.c -dc257ae595d0535d2065fce8c4e822e6 linux-3.0/drivers/tty/serial/21285.c -4d348d6bd4521de543d0c1bbcdc9d256 linux-3.0/drivers/tty/rocket_int.h -84afccca75af9fd196342e43f72d5793 linux-3.0/drivers/tty/rocket.h -68795bd38c761c790ee1afcb0cbd1a70 linux-3.0/drivers/tty/rocket.c -446d038544919c7de5ad284ffaa90172 linux-3.0/drivers/tty/pty.c -667ca4957b5afe68b2db7b5b98a56519 linux-3.0/drivers/tty/nozomi.c -8464a117eaa151a0f9c40df821374805 linux-3.0/drivers/tty/n_tty.c -eb2edbee69e6e34bfb6e2aee369ec3d2 linux-3.0/drivers/tty/n_tracesink.h -b4eee1ddfa0785eed9e4164a968ad79b linux-3.0/drivers/tty/n_tracesink.c -c3cb478f23fa92402a6bdd050a266b94 linux-3.0/drivers/tty/n_tracerouter.c -e0095564a8f40ff602e7616bc159deb9 linux-3.0/drivers/tty/n_r3964.c -b2d9e67c0259a76856dd71083ab07699 linux-3.0/drivers/tty/n_hdlc.c -b2c221cbf5cab3dffa378a3bfe63c27c linux-3.0/drivers/tty/n_gsm.c -610d07d0a932d13682862041ae359f25 linux-3.0/drivers/tty/mxser.h -c1991f4c3e9aed275ebd21e01dd12f89 linux-3.0/drivers/tty/mxser.c -bc31faf591917a548ed8473ea81a8382 linux-3.0/drivers/tty/moxa.h -c029ac61dab5d26c0211565369255300 linux-3.0/drivers/tty/moxa.c -99b105ba47a715280ffa46928dcaeb14 linux-3.0/drivers/tty/isicom.c -d147a35184e622fcbb5c43c96d67e7f1 linux-3.0/drivers/tty/ipwireless/tty.h -3eca51142f06ab00e2db617ae07aa0c8 linux-3.0/drivers/tty/ipwireless/tty.c -73f110a0da3d979e5f9d0035f62b8f76 linux-3.0/drivers/tty/ipwireless/setup_protocol.h -ebb04609687a82ed9a12b4a821bc318a linux-3.0/drivers/tty/ipwireless/network.h -a3add1a9064f6cacdb814716712b035d linux-3.0/drivers/tty/ipwireless/network.c -90201a76d7d6d78412a3040e4d247793 linux-3.0/drivers/tty/ipwireless/main.h -97db07d7f08cc1f6eba7d75935ab45be linux-3.0/drivers/tty/ipwireless/main.c -10c5d51f8e516db8c497b100a273f8a2 linux-3.0/drivers/tty/ipwireless/hardware.h -63d86806b928b401db9d1aa2715844cf linux-3.0/drivers/tty/ipwireless/hardware.c -6c636cfd51663daa27ebfc7c4af7515e linux-3.0/drivers/tty/ipwireless/Makefile -49403306b1e0ac8ca88579c559b60a51 linux-3.0/drivers/tty/hvc/hvsi.c -7a29372a3c070c6776a486e78833498f linux-3.0/drivers/tty/hvc/hvcs.c -703434e57eb51f7c996f00116ae6978a linux-3.0/drivers/tty/hvc/hvc_xen.c -863e6ec913d75626859b83d2e8aa13ba linux-3.0/drivers/tty/hvc/hvc_vio.c -2599279ca8e34d916c5d579600093bfd linux-3.0/drivers/tty/hvc/hvc_udbg.c -cba959cdf82c4e234e058493ac2b46b6 linux-3.0/drivers/tty/hvc/hvc_tile.c -b4fe17822b397291547a005208d209f9 linux-3.0/drivers/tty/hvc/hvc_rtas.c -36d2c3959716f217212188adecc83881 linux-3.0/drivers/tty/hvc/hvc_iucv.c -61edf3eaa26a3b549ffb9a2543b1bfce linux-3.0/drivers/tty/hvc/hvc_iseries.c -984244d7588a3669ad447641e14408e7 linux-3.0/drivers/tty/hvc/hvc_irq.c -79b53fa52105230b6eb4ea8f4e81b988 linux-3.0/drivers/tty/hvc/hvc_dcc.c -2b5894059dab929f45a6d69c0f863c40 linux-3.0/drivers/tty/hvc/hvc_console.h -6db6b38b8911386efd8c5d4d514706a6 linux-3.0/drivers/tty/hvc/hvc_console.c -f7ad1100a1c75613673622bc5149ba8e linux-3.0/drivers/tty/hvc/hvc_bfin_jtag.c -8685d644a09c52cba3c25f480998689a linux-3.0/drivers/tty/hvc/hvc_beat.c -fa5b031c79e66bcf17749fb23b65e187 linux-3.0/drivers/tty/hvc/Makefile -3979911ddb8ace1b44f0b2664d44bb62 linux-3.0/drivers/tty/hvc/Kconfig -2988660db1b850557a7ba3c70687502a linux-3.0/drivers/tty/cyclades.c -eeeb7b34cead702672caffd79f9a706c linux-3.0/drivers/tty/bfin_jtag_comm.c -01b6291100683568ca1723f1d0b4c418 linux-3.0/drivers/tty/amiserial.c -d2734941d47dbaf63dd2e5c48665673b linux-3.0/drivers/tty/Makefile -8d2664b18a90d21229e17107f983c27c linux-3.0/drivers/tty/Kconfig -05ae8da89d143046e7c7184d60b550f0 linux-3.0/drivers/thermal/thermal_sys.c -4fd0e2d920f244a483d684e72ce8fea4 linux-3.0/drivers/thermal/Makefile -90b82f54505db60edce8c0aa9f7c3c7e linux-3.0/drivers/thermal/Kconfig -e84d466277686bf08dbc096b6a93600c linux-3.0/drivers/telephony/phonedev.c -76ec7c7dbef18136dca1df5cc4d81a7b linux-3.0/drivers/telephony/ixj_pcmcia.c -afc5e4d7be88a910cee9c9e54d43010c linux-3.0/drivers/telephony/ixj.h -0d3d1af6fd897d92fb1c78b0df2e513f linux-3.0/drivers/telephony/ixj.c -dafe2a96052d278997d1da3edfc99966 linux-3.0/drivers/telephony/ixj-ver.h -2c56c9a34e3d95c785d6f2166c50db78 linux-3.0/drivers/telephony/Makefile -e718e4f97f6e671d57025f60212058e1 linux-3.0/drivers/telephony/Kconfig -534b40fc7fc681db3d9c8b2569772688 linux-3.0/drivers/tc/tc.c -38e1db91b8315f2cb6f2d2e8d4b8ec24 linux-3.0/drivers/tc/tc-driver.c -5f8bcf48bc935ea29d292e675703d785 linux-3.0/drivers/tc/Makefile -04c5a63b186da25b7aecf5adf2d89a46 linux-3.0/drivers/target/tcm_fc/tfc_sess.c -e7f5c6918a09f38ac35f4aaf5f1a6566 linux-3.0/drivers/target/tcm_fc/tfc_io.c -ec95c7415c15143957aff31e21078d54 linux-3.0/drivers/target/tcm_fc/tfc_conf.c -a4509bcd2f3a60d5c6fdf9d2179bc6bb linux-3.0/drivers/target/tcm_fc/tfc_cmd.c -12ff3c2ca74ff2c09e6f229aa7fb90b5 linux-3.0/drivers/target/tcm_fc/tcm_fc.h -e1a5da63b7a1deff9f5190e0e64a2b1f linux-3.0/drivers/target/tcm_fc/Makefile -5f4ff83f8a763b5f35fb8dc9ad440b1d linux-3.0/drivers/target/tcm_fc/Kconfig -5e06cb4f680b597a397e5c46e500a244 linux-3.0/drivers/target/target_core_ua.h -864a256850ba72bf1e4107ba4565fe8c linux-3.0/drivers/target/target_core_ua.c -ef92e5be5c3fe21136ccdf20664c1129 linux-3.0/drivers/target/target_core_transport.c -20f538350918800ee25255c278148225 linux-3.0/drivers/target/target_core_tpg.c -25cf10ed5b0522be2abe3771847596d4 linux-3.0/drivers/target/target_core_tmr.c -5d3475f91820c562f1bdec7a82fabddb linux-3.0/drivers/target/target_core_stat.h -1bb330274f7779cfa6bf0125e7f7100f linux-3.0/drivers/target/target_core_stat.c -594051a974632ed0fc83df4a61eeac61 linux-3.0/drivers/target/target_core_scdb.h -168f924dd1d1dd87ef4f46d9e0353e5f linux-3.0/drivers/target/target_core_scdb.c -c3014117a832256a1c8dfd1804ec744b linux-3.0/drivers/target/target_core_rd.h -78c4c8d115afa03f9f2c7311777ea0f2 linux-3.0/drivers/target/target_core_rd.c -e532ed5656293d9f31570caf541c327e linux-3.0/drivers/target/target_core_pscsi.h -42c87c8ac743be62415c9985daab7aa4 linux-3.0/drivers/target/target_core_pscsi.c -a633c7829a67109dd3252a5fc978c630 linux-3.0/drivers/target/target_core_pr.h -524841077390c2d51fb106b8415ec525 linux-3.0/drivers/target/target_core_pr.c -1ee664065533b1053a37a2ac5aefde86 linux-3.0/drivers/target/target_core_iblock.h -c8379c634ea679559c6e543b1b62c582 linux-3.0/drivers/target/target_core_iblock.c -2b19de5ccc275ed689adc5ba8fe48400 linux-3.0/drivers/target/target_core_hba.h -00fbd72891f127286631542164d78166 linux-3.0/drivers/target/target_core_hba.c -974ded6679d5e38bc39a00b7fe7f7170 linux-3.0/drivers/target/target_core_file.h -a2f5f2101154eef9bc892a186c71f6b9 linux-3.0/drivers/target/target_core_file.c -fd1b653b93db745d41dab4eb4a698b23 linux-3.0/drivers/target/target_core_fabric_lib.c -f39dc14c7949992c35f2ad3db02a353f linux-3.0/drivers/target/target_core_fabric_configfs.c -7ae5c54d07065c2861ff37725a2bf727 linux-3.0/drivers/target/target_core_device.c -7016fabe36834fe703c32bd076cb4b5f linux-3.0/drivers/target/target_core_configfs.c -f006220d9697fea78a9e016986889adc linux-3.0/drivers/target/target_core_cdb.c -c534a7c8d2adcf72c06070a7418b84dc linux-3.0/drivers/target/target_core_alua.h -bfe5dd85cc5ee1146f46614a5b9e8791 linux-3.0/drivers/target/target_core_alua.c -0cea0812b5e1a7d28c2da68504460044 linux-3.0/drivers/target/loopback/tcm_loop.h -82d12665d34a4da8bbf0c8d2721be7e2 linux-3.0/drivers/target/loopback/tcm_loop.c -dac20bc002ef1fbf39aa77830cb17601 linux-3.0/drivers/target/loopback/Makefile -03592156263687ce768ba8fb21c7fa63 linux-3.0/drivers/target/loopback/Kconfig -9fb9200d5e102bf0b6c3dc40fe4abb0f linux-3.0/drivers/target/Makefile -ac52e5239047130009883afb34a0a5ce linux-3.0/drivers/target/Kconfig -053e465a68d06ae1ab926b9e01a06f19 linux-3.0/drivers/staging/zram/zram_sysfs.c -ef22edec8cd166027362c916d330f701 linux-3.0/drivers/staging/zram/zram_drv.h -b061b07ce824f04f240ed520d2f72225 linux-3.0/drivers/staging/zram/zram_drv.c -043d90125696aa6c4fd4b4d5466df805 linux-3.0/drivers/staging/zram/zram.txt -c5b7be4580b7d8a89275d67e46e286d6 linux-3.0/drivers/staging/zram/xvmalloc_int.h -284766ac0473fc405f25cdd761ab8466 linux-3.0/drivers/staging/zram/xvmalloc.h -787077ae70cbd740c41fd151ec66f6b1 linux-3.0/drivers/staging/zram/xvmalloc.c -a8b12072cf8843360404f07f8d55d259 linux-3.0/drivers/staging/zram/Makefile -b03a2502ac37cd0b2cfe05688ea35a29 linux-3.0/drivers/staging/zram/Kconfig -a2f59e6555051793e4fe1b7e2d217075 linux-3.0/drivers/staging/zcache/zcache.c -8f73a74458f839dcc70f2f14b3535bc6 linux-3.0/drivers/staging/zcache/tmem.h -1c85c508f6f03ca8063caf12ae6846a1 linux-3.0/drivers/staging/zcache/tmem.c -342029d8d36719164d7709316443b1e8 linux-3.0/drivers/staging/zcache/Makefile -b4328a817e5fe1eef743a8c2685698b9 linux-3.0/drivers/staging/zcache/Kconfig -65d899e1feb90aa576910d8266b97567 linux-3.0/drivers/staging/xgifb/vgatypes.h -bd14161ad1ed81ac8e45e3842c07650d linux-3.0/drivers/staging/xgifb/vb_util.h -41a3fcd995f573786e71c69a6fb7c025 linux-3.0/drivers/staging/xgifb/vb_util.c -761dad54e13fc746dd9af9daf77e5022 linux-3.0/drivers/staging/xgifb/vb_table.h -0d0a9b91b9161f9142ecab28bdc12c10 linux-3.0/drivers/staging/xgifb/vb_struct.h -12a5a08de6e8c45bfdb250c2fd32e5e5 linux-3.0/drivers/staging/xgifb/vb_setmode.h -7d11c87e40582583fc58d57fcae6f444 linux-3.0/drivers/staging/xgifb/vb_setmode.c -f2e06dddd30d608aeafcc05917f194a2 linux-3.0/drivers/staging/xgifb/vb_init.h -948776c84320871f4a67a4ce40e46c38 linux-3.0/drivers/staging/xgifb/vb_init.c -6dfc8a5878725059fea6acd21c03b616 linux-3.0/drivers/staging/xgifb/vb_ext.h -41744175d7156e337195ee53f17f6dd9 linux-3.0/drivers/staging/xgifb/vb_ext.c -2a5ac7f3dc29e00358e0209c94196106 linux-3.0/drivers/staging/xgifb/vb_def.h -ee66cb5c6f8580d5fd118c22815ef5dd linux-3.0/drivers/staging/xgifb/XGIfb.h -adcbb5fab7d71867d6669947919f631f linux-3.0/drivers/staging/xgifb/XGI_main_26.c -15b4dadd30869e6776a641838c82136c linux-3.0/drivers/staging/xgifb/XGI_main.h -a54bb4d35e20a4faa6e0424110b44486 linux-3.0/drivers/staging/xgifb/TODO -e165b19b7c32fae4cf11e1c5191c3e28 linux-3.0/drivers/staging/xgifb/Makefile -39898e1fa036bcb580f68f30570722b3 linux-3.0/drivers/staging/xgifb/Kconfig -a2e87533f139470af1b51ea98c3d1d00 linux-3.0/drivers/staging/wlan-ng/prism2usb.c -396bdaaf8d2fbc982dbfc1d850882873 linux-3.0/drivers/staging/wlan-ng/prism2sta.c -612b2b3aadce450f80831d12a447263c linux-3.0/drivers/staging/wlan-ng/prism2mib.c -b6c313a386d7c9afe38ae36e733f9ab0 linux-3.0/drivers/staging/wlan-ng/prism2mgmt.h -45d9d6d4f9dad040a0bdd765211b55b6 linux-3.0/drivers/staging/wlan-ng/prism2mgmt.c -0e3e572d7974e41bf3bb7353c8843272 linux-3.0/drivers/staging/wlan-ng/prism2fw.c -a61488b8dc77d07e0dcca9e2c57321bc linux-3.0/drivers/staging/wlan-ng/p80211wep.c -c2f6cc103215ba9fff43a98affa0b61d linux-3.0/drivers/staging/wlan-ng/p80211types.h -2875054bb8041986912e1631813a1e0e linux-3.0/drivers/staging/wlan-ng/p80211req.h -9f9ae4f853e56ebf6e411e64bec5e8bc linux-3.0/drivers/staging/wlan-ng/p80211req.c -6c27bc445bdb1d48293f5012293efaa5 linux-3.0/drivers/staging/wlan-ng/p80211netdev.h -e74c6270cbba947ec6cc5ed9ea17406e linux-3.0/drivers/staging/wlan-ng/p80211netdev.c -55584ec0afd298182aa4c7ac0f218e89 linux-3.0/drivers/staging/wlan-ng/p80211msg.h -f7f6e1bfd07097d68ada96891b5f50c9 linux-3.0/drivers/staging/wlan-ng/p80211mgmt.h -bce3d13e9e3ad408754ac4b52836c87a linux-3.0/drivers/staging/wlan-ng/p80211metastruct.h -1a83eab8e88f01460bfab1624468021e linux-3.0/drivers/staging/wlan-ng/p80211metadef.h -09a5f0613abbfd9b2295a06f45c5f801 linux-3.0/drivers/staging/wlan-ng/p80211meta.h -4f29bb248502db5e8687e975a803891f linux-3.0/drivers/staging/wlan-ng/p80211ioctl.h -57675dcfda188fc8754fee9b1cc299d3 linux-3.0/drivers/staging/wlan-ng/p80211hdr.h -9607c777463ea5c445bbdd84ddb867b3 linux-3.0/drivers/staging/wlan-ng/p80211conv.h -408cb4a3271fc86d2d7823836d6443c4 linux-3.0/drivers/staging/wlan-ng/p80211conv.c -56ef37d53044cfee47439dbaf2498380 linux-3.0/drivers/staging/wlan-ng/hfa384x_usb.c -78762d4525fe5a7b3613bfd511e50c17 linux-3.0/drivers/staging/wlan-ng/hfa384x.h -11f51dd7f50afc72553b528bee8fa267 linux-3.0/drivers/staging/wlan-ng/cfg80211.c -a7f95364d633aba3df9de076a85f462b linux-3.0/drivers/staging/wlan-ng/README -b511a89c5c0ab57b67efbbc5fefa53f1 linux-3.0/drivers/staging/wlan-ng/Makefile -7f525d4978dcf5b95ab45c7c8001a787 linux-3.0/drivers/staging/wlan-ng/Kconfig -66e8434fd1876dd0583ec2d015091852 linux-3.0/drivers/staging/wlags49_h25/wl_wext.h -1d01da2cb9a027ab764c7314c2bee5a2 linux-3.0/drivers/staging/wlags49_h25/wl_wext.c -283faf3532aca371dbca09e45ec25db0 linux-3.0/drivers/staging/wlags49_h25/wl_version.h -1865d0a0562b8a84d243d4b738ae095a linux-3.0/drivers/staging/wlags49_h25/wl_util.h -4ff8f620b01e207f5150fda35fcf63c0 linux-3.0/drivers/staging/wlags49_h25/wl_util.c -1b747ddfe8659dee12fcd22770d49e94 linux-3.0/drivers/staging/wlags49_h25/wl_sysfs.h -1d22cea17d23c2c9de9e50d7fd7b50a1 linux-3.0/drivers/staging/wlags49_h25/wl_sysfs.c -4a275a3724a0df527742c9f0b4f5e059 linux-3.0/drivers/staging/wlags49_h25/wl_profile.h -f3b0c68cad9345f13bd522e847d2523d linux-3.0/drivers/staging/wlags49_h25/wl_profile.c -e85ab8137a4978e9a520bfb0bf281f2b linux-3.0/drivers/staging/wlags49_h25/wl_priv.h -e2a31335fa98f3f8d3aeab4a01a86c17 linux-3.0/drivers/staging/wlags49_h25/wl_priv.c -d2367909e7c738613186cac7fa805b05 linux-3.0/drivers/staging/wlags49_h25/wl_netdev.h -2e857e49e2d3883f965d1b27c82bc8a5 linux-3.0/drivers/staging/wlags49_h25/wl_netdev.c -f29ff6b4b8e97d8191057ca3799cc853 linux-3.0/drivers/staging/wlags49_h25/wl_main.h -62fd00b02e6277939421299b93eb0f24 linux-3.0/drivers/staging/wlags49_h25/wl_main.c -a2da09d371fc8396b1540b7fbab74cfd linux-3.0/drivers/staging/wlags49_h25/wl_internal.h -4643bb3edb708d7c554def451f2107e5 linux-3.0/drivers/staging/wlags49_h25/wl_if.h -8698dab37f6b84f3f66b1541a35b2a12 linux-3.0/drivers/staging/wlags49_h25/wl_enc.h -cff78101fac985e3d95ecc6244ce13e1 linux-3.0/drivers/staging/wlags49_h25/wl_enc.c -d32c5f52604ce9d3a77034fad8bacfc3 linux-3.0/drivers/staging/wlags49_h25/wl_cs.h -d762716f489588c7cbd06e433c13ffab linux-3.0/drivers/staging/wlags49_h25/wl_cs.c -0439fc38b6f4efea4a7c36901d296d26 linux-3.0/drivers/staging/wlags49_h25/sta_h25.c -a151561d6766b8dd4882e593b7b4d595 linux-3.0/drivers/staging/wlags49_h25/mmd.h -626365f9f19b7c3b00a337a51f4637c9 linux-3.0/drivers/staging/wlags49_h25/mmd.c -be8fc5faadb1069aa58c158e41b6262b linux-3.0/drivers/staging/wlags49_h25/mdd.h -741c20c3fca7a1961fa2a3676a7fe9c5 linux-3.0/drivers/staging/wlags49_h25/hcfdef.h -c54e71cf0f2e78e6fc3ebe11759028da linux-3.0/drivers/staging/wlags49_h25/hcfcfg.h -f63d4e7bc219178bae6f718b58385c73 linux-3.0/drivers/staging/wlags49_h25/hcf.h -5d537eb806b80686d83ac937242c3f7c linux-3.0/drivers/staging/wlags49_h25/hcf.c -7cfc20c3b7559aaed74f16e23daafa92 linux-3.0/drivers/staging/wlags49_h25/dhfcfg.h -cfdf439cbc726cd6ce3715e1fcb943eb linux-3.0/drivers/staging/wlags49_h25/dhf.h -1f8d69b92ddc99cc73e970b6ff6bbda2 linux-3.0/drivers/staging/wlags49_h25/dhf.c -46d348c04add40c11643222abcb7c129 linux-3.0/drivers/staging/wlags49_h25/debug.h -8310df00267715b8a050a564a9a22554 linux-3.0/drivers/staging/wlags49_h25/ap_h25.c -bece01c442d301212fc206c3b5e9354d linux-3.0/drivers/staging/wlags49_h25/TODO -b9627068704aed7e78b48aa30a247120 linux-3.0/drivers/staging/wlags49_h25/README.txt -cf54056c06680c3bcbc59dcae5bc6053 linux-3.0/drivers/staging/wlags49_h25/Makefile -255c827ce35fd7c51a0f597d33b12d62 linux-3.0/drivers/staging/wlags49_h25/Kconfig -8cdb7bf9d4b11d4c6cd550c4e1269421 linux-3.0/drivers/staging/wlags49_h2/wl_wext.h -ac991958b11a5ac33aecb1dd53fe63bf linux-3.0/drivers/staging/wlags49_h2/wl_wext.c -71f07becae3120cf70fd08e11a46750c linux-3.0/drivers/staging/wlags49_h2/wl_version.h -c95f6167387d199009c4ac7599068cf6 linux-3.0/drivers/staging/wlags49_h2/wl_util.h -957cf998d279b7989a3f9105ea8f8553 linux-3.0/drivers/staging/wlags49_h2/wl_util.c -bbc27d91b6de80a88766f8dd93c9b76a linux-3.0/drivers/staging/wlags49_h2/wl_sysfs.h -df3d9047576d0a102411ba1b86286f78 linux-3.0/drivers/staging/wlags49_h2/wl_sysfs.c -5fe1f63def106b89b3d558b3058843a0 linux-3.0/drivers/staging/wlags49_h2/wl_profile.h -b33d87e895aab11736195652885502ed linux-3.0/drivers/staging/wlags49_h2/wl_profile.c -30dc75e16c29b990f256a98d319847ac linux-3.0/drivers/staging/wlags49_h2/wl_priv.h -736c4503e1e0d17691cd71542ab07eed linux-3.0/drivers/staging/wlags49_h2/wl_priv.c -de65e83d3cb3d52c9d7867686446d8f8 linux-3.0/drivers/staging/wlags49_h2/wl_pci.h -d81f4aab6240bbea7943ac62f744d3df linux-3.0/drivers/staging/wlags49_h2/wl_pci.c -bba35469b08b004accc017d2e752a14a linux-3.0/drivers/staging/wlags49_h2/wl_netdev.h -fc6867309f307f87b2d59e0b09bee68e linux-3.0/drivers/staging/wlags49_h2/wl_netdev.c -244e5fb3299b757e685063f9de2171db linux-3.0/drivers/staging/wlags49_h2/wl_main.h -c3bd0e383eb30eee9671e4ec54fcf7cc linux-3.0/drivers/staging/wlags49_h2/wl_main.c -6de5b5d45ead7e05791ecffbade54a3a linux-3.0/drivers/staging/wlags49_h2/wl_internal.h -79523fbd68e32c056eecacd06c44736e linux-3.0/drivers/staging/wlags49_h2/wl_if.h -dc949034ee1b657d5b3582d2e0b72912 linux-3.0/drivers/staging/wlags49_h2/wl_enc.h -3c6a7889b6fc22277b7af9d241e40e5d linux-3.0/drivers/staging/wlags49_h2/wl_enc.c -5b30c17cc3fb0af8f78b84a6e2a549b6 linux-3.0/drivers/staging/wlags49_h2/wl_cs.h -6ec6846422a641af2a4b543706d03dda linux-3.0/drivers/staging/wlags49_h2/wl_cs.c -3fe67898753e3c3bc7e25542fcb9cf0a linux-3.0/drivers/staging/wlags49_h2/sta_h25.c -1a7dd31cc83d972d2abfa593d4a51ee0 linux-3.0/drivers/staging/wlags49_h2/sta_h2.c -a2097e105e961b7029e5482d2df38e3c linux-3.0/drivers/staging/wlags49_h2/mmd.h -7d07c69c46d7d97859558ae91d0335de linux-3.0/drivers/staging/wlags49_h2/mmd.c -c8c95dbbb74b5ea936afb31d3906af12 linux-3.0/drivers/staging/wlags49_h2/mdd.h -3326b1af53ea5150b3a1de44b6219108 linux-3.0/drivers/staging/wlags49_h2/man/wlags49.4 -26db5b5ac12547675c7409e05c90e7cd linux-3.0/drivers/staging/wlags49_h2/hcfdef.h -a7297628c854171096a479aff05cf076 linux-3.0/drivers/staging/wlags49_h2/hcfcfg.h -37200432e6a7add5bbe5a7861f641757 linux-3.0/drivers/staging/wlags49_h2/hcf.h -b2efdea988e392a442ad801a8bcd0b5a linux-3.0/drivers/staging/wlags49_h2/hcf.c -8d7b9ad15c7556720e78c0b3e6b98887 linux-3.0/drivers/staging/wlags49_h2/dhfcfg.h -ef9c58377efa53b9bc456ec014465d6e linux-3.0/drivers/staging/wlags49_h2/dhf.h -6cfd768c705bd33beedf5f43758218a3 linux-3.0/drivers/staging/wlags49_h2/dhf.c -66ba7ad44fc0e5bab2d02495434b1d27 linux-3.0/drivers/staging/wlags49_h2/debug.h -c4b39771f522f070edc84c4b16be4fab linux-3.0/drivers/staging/wlags49_h2/ap_h25.c -f0b5ad96e3e16e44b4dd50ab38164249 linux-3.0/drivers/staging/wlags49_h2/ap_h2.c -e92555c74998e8cdbec86e6f50824094 linux-3.0/drivers/staging/wlags49_h2/WARNING.txt -bece01c442d301212fc206c3b5e9354d linux-3.0/drivers/staging/wlags49_h2/TODO -c68cba228493e52104d20f38efc8d716 linux-3.0/drivers/staging/wlags49_h2/README.wlags49 -639fac1b484f9226c620b69be61be408 linux-3.0/drivers/staging/wlags49_h2/README.ubuntu -d02030f9244c332c3fc76d35e5ba68b8 linux-3.0/drivers/staging/wlags49_h2/Makefile -eefc03caa6f7c60b6da28e1901b36040 linux-3.0/drivers/staging/wlags49_h2/Kconfig -f8772d43b0ad68150a1d12dea171629a linux-3.0/drivers/staging/winbond/wbusb.c -ac32eea9a802de9be9404e00ef55d5f9 linux-3.0/drivers/staging/winbond/wbhal.h -0969f9246954a353dcb95432ebc66fce linux-3.0/drivers/staging/winbond/wb35tx_s.h -be7a4435c024c03c4ec612b9755a7d51 linux-3.0/drivers/staging/winbond/wb35tx_f.h -e6d0dec65b04fb70294ae2c3c74347c7 linux-3.0/drivers/staging/winbond/wb35tx.c -8e2e51b4e840980ac88e669bf49070c5 linux-3.0/drivers/staging/winbond/wb35rx_s.h -8eb2a7bd5df140f161c3cf33ead7a87a linux-3.0/drivers/staging/winbond/wb35rx_f.h -27d68d1c474ae0f41875015f761e4592 linux-3.0/drivers/staging/winbond/wb35rx.c -9e8905969beed035457d5f3567ea43f0 linux-3.0/drivers/staging/winbond/wb35reg_s.h -de9d28ccec7ff82220c2b330f360c9f4 linux-3.0/drivers/staging/winbond/wb35reg_f.h -0c238b2621bb8da0718ffdc39eaedf8d linux-3.0/drivers/staging/winbond/wb35reg.c -6ee6d148024c30576b803795c247af0e linux-3.0/drivers/staging/winbond/sme_api.h -5aae403a157169e4072647852b14c312 linux-3.0/drivers/staging/winbond/reg.c -a461092984269d54c433c22d62147ed7 linux-3.0/drivers/staging/winbond/phy_calibration.h -dabb1a616d35e1e4bf22abf71510eed1 linux-3.0/drivers/staging/winbond/phy_calibration.c -06c62a14741d5681b22e66805d4f5c75 linux-3.0/drivers/staging/winbond/mto.h -005a0092e01d56f684086aab2b08f04f linux-3.0/drivers/staging/winbond/mto.c -396527487563690574e9e788b0d427ea linux-3.0/drivers/staging/winbond/mds_s.h -05537e84e32c081c121c786c1d02e632 linux-3.0/drivers/staging/winbond/mds_f.h -76730d166ace8b106fd8cac61b23f6ed linux-3.0/drivers/staging/winbond/mds.c -3f3360d1dd6ce5dfbf53fa8c81343ffc linux-3.0/drivers/staging/winbond/mac_structures.h -daa2e81e1804f538aa442fccca90fe8c linux-3.0/drivers/staging/winbond/localpara.h -d32866e35784e4430acad5db63e5f68f linux-3.0/drivers/staging/winbond/core.h -1b2fc409727e4c204a45f7b53878db7f linux-3.0/drivers/staging/winbond/TODO -a17533d474495e1d30337598703be7ec linux-3.0/drivers/staging/winbond/Makefile -0923c72c58e4fc4d70be8353e8130b10 linux-3.0/drivers/staging/winbond/Kconfig -0b35d4fc0ea4a414a4095b89467eb3d3 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasusb_dep.h -228945ef9b36130e37cc50a8e4768aaf linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasusb.h -bfdf8d318031bd456d536db23e061353 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyastypes.h -91ccfa98d7f260f0e6b3ac445bf505fc linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyastsdkversion.h -9ef8832112d402c452322d8e70ff1b07 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyastoria.h -ccbcae032deeed8940eab15423e99cbd linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasstorage_dep.h -b9b6729fee3b5841e3a1f3580a73cce6 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasstorage.h -96844602bbd1325a4b6aa0523d8e2080 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasregs.h -650eaf0b366bbf405285c720181a80a6 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasprotocol.h -1a623fe0c3b75f5c26cb89c8bcc7ab64 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasmtp.h -28cbfb2dfa524c8e4977771af02355b7 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasmisc_dep.h -a170791c2ec97ed33569fbdc4d65a5d4 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasmisc.h -40ddf4a3c6d1a0d81486b9dbf992a3b7 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasmedia.h -644c46c8b957d4f3a2a7bb533e134e42 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyaslowlevel.h -5cc5c66c4d1dbb129aa240dbf81110ec linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyaslep2pep.h -b96ff8dea16584c0f186b8d770224c34 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasintr.h -cffc09fb43ca0c565bb7890060096f69 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyashaldoc.h -76a22f81257b54a5906a683b4fca7c66 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyashalcb.h -ae3b87e514dd5f49ee72897400f6d556 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyashal.h -f3cfda1f6c6907719626ecb92edb862e linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyaserr.h -08b5c42e58c3c1d7aaf4063306fe4f37 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasdma.h -a3bbd430daf6359784264c37471105a1 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyasdevice.h -d1a042ee47680eb8b175a153e978ad99 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyascast.h -04546835bfb67018e28cd583fbfa9e6e linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyas_cplus_start.h -b81e7e971ba0f05491da77bd4627ebc8 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyas_cplus_end.h -253f39d88087ece8ffca680f1babd80a linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyanusb.h -8f524119e04758235e7ac3b285d21f44 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyantypes.h -11054e3434443ffe235a20e81d6dc371 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyantioch.h -418d870519f32cefb9804cfc833addff linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyanstorage.h -6c190dd55be822bff50057c65cce1350 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyansdkversion.h -f114d6da4e627b1cab8b256165210c4a linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyanregs.h -49b767827671e7dbcec303670e5430e5 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyanmisc.h -2d9f8dfe5616d413ef5b5daeaadb0018 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyanmedia.h -c5378dc74ac7c877bf365749004f4a73 linux-3.0/drivers/staging/westbridge/astoria/include/linux/westbridge/cyanerr.h -1984719e8ad132e248e5ee8f2e1c2edf linux-3.0/drivers/staging/westbridge/astoria/gadget/cyasgadget_ioctl.h -74e799b8e3bbc1c549cc51b255a255bb linux-3.0/drivers/staging/westbridge/astoria/gadget/cyasgadget.h -a504d474d10e67b2a4b7594cd7315c30 linux-3.0/drivers/staging/westbridge/astoria/gadget/cyasgadget.c -8a2cf5fbd9e54eb988bc7bc952c2ce76 linux-3.0/drivers/staging/westbridge/astoria/gadget/Makefile -03aa813f80a0f4e47fa934abc8136366 linux-3.0/drivers/staging/westbridge/astoria/gadget/Kconfig -24edf7fe07e2f61b8bc832bf651a4ca4 linux-3.0/drivers/staging/westbridge/astoria/device/cyasdevice.c -b4cff5e682605e3f65ec1df14a541dca linux-3.0/drivers/staging/westbridge/astoria/device/Makefile -3f88ea085a80c18a07892b85ccb7010c linux-3.0/drivers/staging/westbridge/astoria/device/Kconfig -9b0b895e118762f15bd04609e71dd721 linux-3.0/drivers/staging/westbridge/astoria/block/cyasblkdev_queue.h -4595f6b1f0bf7d5e2988204c4c680c86 linux-3.0/drivers/staging/westbridge/astoria/block/cyasblkdev_queue.c -e3da2d9a2f1bda08c8c125030e9deb51 linux-3.0/drivers/staging/westbridge/astoria/block/cyasblkdev_block.c -add15dd1144c246fcff9fde1da0aeddc linux-3.0/drivers/staging/westbridge/astoria/block/Makefile -2cbe3597c3777a615c921a123390b8bd linux-3.0/drivers/staging/westbridge/astoria/block/Kconfig -14eb2445701c1e40ac54e00420927c1e linux-3.0/drivers/staging/westbridge/astoria/arch/arm/plat-omap/include/mach/westbridge/westbridge-omap3-pnand-hal/cyasomapdev_kernel.h -02471c3e10e9d58cdf1c93e7f55b3a53 linux-3.0/drivers/staging/westbridge/astoria/arch/arm/plat-omap/include/mach/westbridge/westbridge-omap3-pnand-hal/cyasmemmap.h -c0473c178fba7a9db9b212b351843c9b linux-3.0/drivers/staging/westbridge/astoria/arch/arm/plat-omap/include/mach/westbridge/westbridge-omap3-pnand-hal/cyashalomap_kernel.h -948f09e89532d08f0fbc9c02dc0dc346 linux-3.0/drivers/staging/westbridge/astoria/arch/arm/plat-omap/include/mach/westbridge/cyashaldef.h -1aa2548babc943adc90877595035ea08 linux-3.0/drivers/staging/westbridge/astoria/arch/arm/mach-omap2/cyashalomap_kernel.c -9be2429615172f075b5378df01207850 linux-3.0/drivers/staging/westbridge/astoria/api/src/cyasusb.c -33697f6758702dc2392da6df54464d44 linux-3.0/drivers/staging/westbridge/astoria/api/src/cyasstorage.c -2239f99db304601c36a63e01339fbd98 linux-3.0/drivers/staging/westbridge/astoria/api/src/cyasmtp.c -7b7c5e8fb66f130e374ec02c57c28bc1 linux-3.0/drivers/staging/westbridge/astoria/api/src/cyasmisc.c -afb5bc5fd1214da0d004c907442bd95b linux-3.0/drivers/staging/westbridge/astoria/api/src/cyaslowlevel.c -95e0ee2087e5e8f306cedc7109de78e3 linux-3.0/drivers/staging/westbridge/astoria/api/src/cyaslep2pep.c -a42b3ec087b7fae7871c4c38e027f651 linux-3.0/drivers/staging/westbridge/astoria/api/src/cyasintr.c -8024ce3eea88ee0534f23f8c781fe4e3 linux-3.0/drivers/staging/westbridge/astoria/api/src/cyasdma.c -b61618161141c011e8d7b5637b2dcde8 linux-3.0/drivers/staging/westbridge/astoria/api/Makefile -f5300ba5706c82f9e25cd0f3cab707b4 linux-3.0/drivers/staging/westbridge/astoria/Makefile -7f823b5ac304e10bcdb2b4c21ce09c75 linux-3.0/drivers/staging/westbridge/astoria/Kconfig -2118361c3dc2da745ec0170103d3f1ee linux-3.0/drivers/staging/westbridge/TODO -71f5a725e26d6b7c5f347fd4c57869a1 linux-3.0/drivers/staging/westbridge/Kconfig -da1a46db224469e3d3c287b13c8c01c2 linux-3.0/drivers/staging/vt6656/wpactl.h -816f5d8cf2e5d69b2781d8aea07a72a9 linux-3.0/drivers/staging/vt6656/wpactl.c -b957115e6bcab0419212000d05b6ae6c linux-3.0/drivers/staging/vt6656/wpa2.h -92c2aa1af0551c0fb957ec4684802238 linux-3.0/drivers/staging/vt6656/wpa2.c -d76114c3f627c8323f0569f9648ca698 linux-3.0/drivers/staging/vt6656/wpa.h -6aa1e38f167d497ecebb79f4971cf585 linux-3.0/drivers/staging/vt6656/wpa.c -e1dbc0e149cf78e2e4bb68a62aac1980 linux-3.0/drivers/staging/vt6656/wmgr.h -62d115cf82bfe43686bc621b5cf510e5 linux-3.0/drivers/staging/vt6656/wmgr.c -2f3e9fc05ee615f56748665ad35b379b linux-3.0/drivers/staging/vt6656/wctl.h -42c852136ace7950a9fcd695294d63ce linux-3.0/drivers/staging/vt6656/wctl.c -1c479abae1e7756f4106dbb5feb8dfa2 linux-3.0/drivers/staging/vt6656/wcmd.h -b3d6d94f8d3b79b8f7924d2ee4011114 linux-3.0/drivers/staging/vt6656/wcmd.c -e6e62f260863fe9811564e3096a7d8b1 linux-3.0/drivers/staging/vt6656/vntconfiguration.dat -5ef2720d9f880a8158075fb2edf67697 linux-3.0/drivers/staging/vt6656/usbpipe.h -96583671c8a9f68875fb52c9c164c4fe linux-3.0/drivers/staging/vt6656/usbpipe.c -08d710ae10d5f6d2bf1ad135a39acb84 linux-3.0/drivers/staging/vt6656/upc.h -3e85cd35a064edf11e1617da60d7c1e5 linux-3.0/drivers/staging/vt6656/ttype.h -fded12ff9f0291a8b674be32fc4f91d5 linux-3.0/drivers/staging/vt6656/tmacro.h -c5d233964be16a43153fc4b7543e0442 linux-3.0/drivers/staging/vt6656/tkip.h -f6d1e8d05d91a15ce6066859bf5a3a97 linux-3.0/drivers/staging/vt6656/tkip.c -87403f3cbaccac2b4f0452d7ffe40873 linux-3.0/drivers/staging/vt6656/tether.h -06c5c4b49545e9f2c86e9492185e586d linux-3.0/drivers/staging/vt6656/tether.c -ccb29163feb96668d73201febeac934d linux-3.0/drivers/staging/vt6656/tcrc.h -0211be49b8d380620642651715f42c73 linux-3.0/drivers/staging/vt6656/tcrc.c -2e4b660f93e4949f3176cd07f6881dfc linux-3.0/drivers/staging/vt6656/srom.h -cb2e4ad6de9fc56748a8b4f5aadbf74e linux-3.0/drivers/staging/vt6656/rxtx.h -0ebf49864717ecc3ddf74bcd26743407 linux-3.0/drivers/staging/vt6656/rxtx.c -d9ec111e5cc4e4b6f0bd3a947cd5f50c linux-3.0/drivers/staging/vt6656/rndis.h -78c148b862d5c761a8db180bb8fe68a7 linux-3.0/drivers/staging/vt6656/rf.h -0192106507b8597ed62d63090e4cca81 linux-3.0/drivers/staging/vt6656/rf.c -b341ddca6fdb121865434bfcccee4216 linux-3.0/drivers/staging/vt6656/rc4.h -1bf51d27c54cb203067b7e3d498b5bc0 linux-3.0/drivers/staging/vt6656/rc4.c -11ef1662c2fd2d0307a309fcc77c5a32 linux-3.0/drivers/staging/vt6656/power.h -514bb36dfae5ded4c017d9c6dcb59fe5 linux-3.0/drivers/staging/vt6656/power.c -fcb05d435c8e5d8d501db07764f6da7b linux-3.0/drivers/staging/vt6656/michael.h -6a5bc3b2e1b52ba2b6b478a4cb2fd992 linux-3.0/drivers/staging/vt6656/michael.c -e056e411cadfe509e986c178f0f909e9 linux-3.0/drivers/staging/vt6656/mib.h -17f69a34af735a5ae60ec5e3a0109209 linux-3.0/drivers/staging/vt6656/mib.c -071328bdeb534c07b87c23d55aeaa046 linux-3.0/drivers/staging/vt6656/main_usb.c -f8150a78bd8f57ac993f17b1a7824a2b linux-3.0/drivers/staging/vt6656/mac.h -e0a4d09acc1d8da13c9326079c4eac14 linux-3.0/drivers/staging/vt6656/mac.c -02f6f4ff229d677d3a3a6f0432279d32 linux-3.0/drivers/staging/vt6656/key.h -4b76709d2e6f51cd791a659dad00aa18 linux-3.0/drivers/staging/vt6656/key.c -4eb53029bc9e3107847b9ccf6acc0ed2 linux-3.0/drivers/staging/vt6656/iwctl.h -3f2070c41f58ea24375a8611f9b57bb2 linux-3.0/drivers/staging/vt6656/iwctl.c -e14ac09d075f618679e8c559bb9c6c48 linux-3.0/drivers/staging/vt6656/iowpa.h -fbadebae089fa87f5b8572cb5178dd06 linux-3.0/drivers/staging/vt6656/ioctl.h -fab17a0f144c0005fd76c4bfd0948733 linux-3.0/drivers/staging/vt6656/ioctl.c -a61b2c9db460baaf32cc95dd682b76a5 linux-3.0/drivers/staging/vt6656/iocmd.h -61821aeb66392b0cc15ed7d796a1b360 linux-3.0/drivers/staging/vt6656/int.h -69902ee5f572dca7fb2205ed104357b4 linux-3.0/drivers/staging/vt6656/int.c -2838018743ba8fe60c42b1cc9c629f60 linux-3.0/drivers/staging/vt6656/hostap.h -7928574696295965a5b43056211817da linux-3.0/drivers/staging/vt6656/hostap.c -dfa002c5d9a23d10c86befc3cf70f8af linux-3.0/drivers/staging/vt6656/firmware.h -48d817b1c4eec5db1d66529486b8cc42 linux-3.0/drivers/staging/vt6656/firmware.c -bfc25b3667394aee61d9b0a280cd1401 linux-3.0/drivers/staging/vt6656/dpc.h -4e123381aaf092dc5ae38ce599149f2b linux-3.0/drivers/staging/vt6656/dpc.c -6501cf6e7f059d293f4f869f11f4e834 linux-3.0/drivers/staging/vt6656/device_cfg.h -caaae1be6e41d80b6821d6186c5eb667 linux-3.0/drivers/staging/vt6656/device.h -69cf9710f8c5c586373cab0e10998913 linux-3.0/drivers/staging/vt6656/desc.h -b5a9f37e3c8cdba71cdca4aa3124093b linux-3.0/drivers/staging/vt6656/datarate.h -91c3de5bba3afba378c84e7377ed6cfb linux-3.0/drivers/staging/vt6656/datarate.c -57efc385895a47a31be155a33a41a72b linux-3.0/drivers/staging/vt6656/country.h -eef85676108a5cfea5456e9a687a5056 linux-3.0/drivers/staging/vt6656/control.h -216c398370c05fff3642878d7cc1d6fd linux-3.0/drivers/staging/vt6656/control.c -2868dfd54e2346ada8974dac18f23213 linux-3.0/drivers/staging/vt6656/channel.h -0f5603b60bee3a20990cb45b8b5238ed linux-3.0/drivers/staging/vt6656/channel.c -830c0b275cdc96e640733b7d57caa4dd linux-3.0/drivers/staging/vt6656/card.h -9cf2d1207935b9ca66251c0572738663 linux-3.0/drivers/staging/vt6656/card.c -ea3cd388afafbbbdefd2882c45545ede linux-3.0/drivers/staging/vt6656/bssdb.h -e75fd8b256507b4503e19569bbacfc82 linux-3.0/drivers/staging/vt6656/bssdb.c -9c3fdf93ad5de2ce8cb5238cf8b4763d linux-3.0/drivers/staging/vt6656/baseband.h -c334a9bd3c28ffd6b3bdd15ff9ec3bcf linux-3.0/drivers/staging/vt6656/baseband.c -a061edfc8a56876e3bc417f5f1715a48 linux-3.0/drivers/staging/vt6656/aes_ccmp.h -8e00c4e46884850368c2e8d334999c62 linux-3.0/drivers/staging/vt6656/aes_ccmp.c -edafb114bac1896feb3a95c8c6bf9c2a linux-3.0/drivers/staging/vt6656/TODO -dde439e0c266ce823ce65fa270237e1f linux-3.0/drivers/staging/vt6656/Makefile -9aafd43d4c5da890aaafe29a16065a64 linux-3.0/drivers/staging/vt6656/Kconfig -62ea3ba152aa412205a5408f806a08e3 linux-3.0/drivers/staging/vt6656/80211mgr.h -a1502fde66a1f9a3c3df1a10a6ac161c linux-3.0/drivers/staging/vt6656/80211mgr.c -21eb1fe63581b715d1a4c480cd3babbc linux-3.0/drivers/staging/vt6656/80211hdr.h -0d9f13f3538bfbebf605a55f26f38fe2 linux-3.0/drivers/staging/vt6655/wroute.h -9dad84bef0e3f6d3084e7e207e9aaee5 linux-3.0/drivers/staging/vt6655/wroute.c -4be804bf8880e6c5dd106b085653baa4 linux-3.0/drivers/staging/vt6655/wpactl.h -c09a6c6e9104360a3d7ff73b048ffb02 linux-3.0/drivers/staging/vt6655/wpactl.c -b676c27d39f288ee58e59a9df05b5903 linux-3.0/drivers/staging/vt6655/wpa2.h -9f654a9f264feb6a179ceb711405622f linux-3.0/drivers/staging/vt6655/wpa2.c -c431d51c08f5811c85822c70f032f396 linux-3.0/drivers/staging/vt6655/wpa.h -9b7818003eb49a35e58f80b6534616da linux-3.0/drivers/staging/vt6655/wpa.c -dfbdadf78bb04bead64c9d60a9b76626 linux-3.0/drivers/staging/vt6655/wmgr.h -140590dc981d498f48aca3e54f382b3a linux-3.0/drivers/staging/vt6655/wmgr.c -99822ac5c92c41eb07a8aad4f91c3f29 linux-3.0/drivers/staging/vt6655/wctl.h -c3e702980d3ef36223cdbc8faec524c8 linux-3.0/drivers/staging/vt6655/wctl.c -8aba09799c6b75890c729dc5993b0dd3 linux-3.0/drivers/staging/vt6655/wcmd.h -8100f8ce1a88af2e8c4b5ee6fbde2a0c linux-3.0/drivers/staging/vt6655/wcmd.c -a3b4c2eabc430c2bbb0f176f212562e1 linux-3.0/drivers/staging/vt6655/vntwifi.h -811ecf5f0bd73b9de924f577af8f1600 linux-3.0/drivers/staging/vt6655/vntwifi.c -b3cfb2e37bd33304946a00a1fab72b4e linux-3.0/drivers/staging/vt6655/vntconfiguration.dat -c189bdd463dc4c9a730ef212ae435133 linux-3.0/drivers/staging/vt6655/upc.h -f9fce8bf93f0134dae09e86a42bd01b1 linux-3.0/drivers/staging/vt6655/ttype.h -8ea849e87db90237fe1519aa9d22a5af linux-3.0/drivers/staging/vt6655/tmacro.h -9ddf685ebad32a5a03f4e821e317e88a linux-3.0/drivers/staging/vt6655/tkip.h -f881872018b85664bf8d6288f4a0f1ec linux-3.0/drivers/staging/vt6655/tkip.c -850fa2f9fa7387af353cced54c3eeb38 linux-3.0/drivers/staging/vt6655/tether.h -f196987f5c5b3f4258b80babc7b76996 linux-3.0/drivers/staging/vt6655/tether.c -6b01775b48cad165cdb10c4f70aec4c1 linux-3.0/drivers/staging/vt6655/test -763d46077be96d5af25008dddc07069e linux-3.0/drivers/staging/vt6655/tcrc.h -c7b7e3528a27382050158e9ff6862943 linux-3.0/drivers/staging/vt6655/tcrc.c -303ba932fd0d388bd314d6f86cd7755a linux-3.0/drivers/staging/vt6655/srom.h -172fc70f313233806dd2bd3a171f16f3 linux-3.0/drivers/staging/vt6655/srom.c -2b3c496defdb30b0ef6b4a88a670fdf2 linux-3.0/drivers/staging/vt6655/rxtx.h -0cf877ecf9b100c7e5458c311b6720f3 linux-3.0/drivers/staging/vt6655/rxtx.c -66f497d84df060f9129d72e9225c259f linux-3.0/drivers/staging/vt6655/rf.h -55f5fa24d30ad5cb6efec1a7a27a5c27 linux-3.0/drivers/staging/vt6655/rf.c -f2b18128e79855162858ca6407483588 linux-3.0/drivers/staging/vt6655/rc4.h -4c8bf786c8bffda9a31957348313c015 linux-3.0/drivers/staging/vt6655/rc4.c -e0b071f80d3171f0dcdd7bc81fa200d7 linux-3.0/drivers/staging/vt6655/power.h -2d0416c6dee7f981f5808334afae3eda linux-3.0/drivers/staging/vt6655/power.c -50978ca3192d617560eb8c3da90a9784 linux-3.0/drivers/staging/vt6655/michael.h -682a81af482b078394ac4126198bc95b linux-3.0/drivers/staging/vt6655/michael.c -0aecb5b4e66d6d7813557ccb39124acd linux-3.0/drivers/staging/vt6655/mib.h -660851133825be6c022db7927bd86975 linux-3.0/drivers/staging/vt6655/mib.c -c739ddf7a7a87b3d4b0f4ce8e00342b0 linux-3.0/drivers/staging/vt6655/mac.h -23b71bbbd0798e6aff8640050df977bf linux-3.0/drivers/staging/vt6655/mac.c -bad6413b3026ff920b923f931133fbf9 linux-3.0/drivers/staging/vt6655/key.h -c13e2a05805fc651bab909c0c0766f5b linux-3.0/drivers/staging/vt6655/key.c -112d83cf2f120083966c09812d23461b linux-3.0/drivers/staging/vt6655/iwctl.h -8daeef946c5f8ee84ea7a8f9bef11842 linux-3.0/drivers/staging/vt6655/iwctl.c -1031a16c635fda5b52100de9cb59c834 linux-3.0/drivers/staging/vt6655/iowpa.h -13ad9ab9a635332bc98cbb99fa5a2205 linux-3.0/drivers/staging/vt6655/ioctl.h -1e21abbbbf6179a994a91446e0e14882 linux-3.0/drivers/staging/vt6655/ioctl.c -229dd7d1d67eb4e864a2a7d6aaffa259 linux-3.0/drivers/staging/vt6655/iocmd.h -6d9966d29547cf9fb7a7086b21ec57b1 linux-3.0/drivers/staging/vt6655/hostap.h -c1f578e6419648dd146a0277954c1ce5 linux-3.0/drivers/staging/vt6655/hostap.c -1e11253867b199403ba0c24cddb6b8f1 linux-3.0/drivers/staging/vt6655/dpc.h -301e4a630592b23f73ddafadd17cffeb linux-3.0/drivers/staging/vt6655/dpc.c -0c784bdcd8f1233028707da7f3ab028d linux-3.0/drivers/staging/vt6655/device_main.c -b6ec3fffb7cb77a500177c9269e8c274 linux-3.0/drivers/staging/vt6655/device_cfg.h -bef24ba70a059f9c5187b100301d61da linux-3.0/drivers/staging/vt6655/device.h -da5017d909ef37293a83e0736b6dcc4f linux-3.0/drivers/staging/vt6655/desc.h -d0a0244459aa9650acdff8d115eaa65d linux-3.0/drivers/staging/vt6655/datarate.h -b261993ff9dc18f3a82c30e6c3f3663e linux-3.0/drivers/staging/vt6655/datarate.c -201e0e8aab3baa6c67b58869cc5352bf linux-3.0/drivers/staging/vt6655/country.h -8167dd46ac1239915acc42bdd70e5aa8 linux-3.0/drivers/staging/vt6655/channel.h -3297d7f946f54d0614a00c0386223c6a linux-3.0/drivers/staging/vt6655/channel.c -286a477979f5335c1681e34f29d6c445 linux-3.0/drivers/staging/vt6655/card.h -5f330e1742f10f046e22dec6e0a7425c linux-3.0/drivers/staging/vt6655/card.c -29a22284b12759f92e2cd1e2d6e5a486 linux-3.0/drivers/staging/vt6655/bssdb.h -53716a5ed65fdf6cf1f5be6c2dbcdcf5 linux-3.0/drivers/staging/vt6655/bssdb.c -61e12d7eecf22ffce6bcd07f942d1cb5 linux-3.0/drivers/staging/vt6655/baseband.h -9d383bad7e124f6bbf02549a5483f605 linux-3.0/drivers/staging/vt6655/baseband.c -1fda1dbf4efda4245bbee273d59f13ea linux-3.0/drivers/staging/vt6655/aes_ccmp.h -2ae97c1dbe4768f139e2431a40e4d244 linux-3.0/drivers/staging/vt6655/aes_ccmp.c -07a207857181a2cb7a7325b99ea74c5c linux-3.0/drivers/staging/vt6655/TODO -af11912690156c3f3fdf39edbe2f177d linux-3.0/drivers/staging/vt6655/Makefile -209c9a3c7c7cb2b575c7a6c355c534d4 linux-3.0/drivers/staging/vt6655/Kconfig -694c87f3d350822f61630caaf779e2fa linux-3.0/drivers/staging/vt6655/IEEE11h.h -47fd77ac7a51f26ca0948b207043f9d2 linux-3.0/drivers/staging/vt6655/IEEE11h.c -5bf3c53f7090b9a2f27d8952f1ae55cf linux-3.0/drivers/staging/vt6655/80211mgr.h -589b6dbbaaad01552c8692d1acfbde6e linux-3.0/drivers/staging/vt6655/80211mgr.c -fe54ee0f29edd1d16350a2ceeaf65418 linux-3.0/drivers/staging/vt6655/80211hdr.h -780144b197330b6b752cfaf67cd08aa1 linux-3.0/drivers/staging/vme/vme_bridge.h -f64d8cebdeb8b019a57ac9abb813582f linux-3.0/drivers/staging/vme/vme_api.txt -1b1fd2cb41b53b8f158f4ea3f47f156e linux-3.0/drivers/staging/vme/vme.h -d9248fe1887a3ffc9cd8c135455ffc34 linux-3.0/drivers/staging/vme/vme.c -b9616151ce3f71adee9faf1ab10164fe linux-3.0/drivers/staging/vme/devices/vme_user.h -c524f6f94c5ac303ccb09279e18d0994 linux-3.0/drivers/staging/vme/devices/vme_user.c -27c27c0a0e7ead0dd77850606df7db26 linux-3.0/drivers/staging/vme/devices/Makefile -2146cddbb75345959eec7de2ac51bbd3 linux-3.0/drivers/staging/vme/devices/Kconfig -626c431b2eedbb2bb59e2f008c9233f8 linux-3.0/drivers/staging/vme/bridges/vme_tsi148.h -f2771802109565078f29c72070a82e0f linux-3.0/drivers/staging/vme/bridges/vme_tsi148.c -aced0c529625e2e77da057ac564d1e0a linux-3.0/drivers/staging/vme/bridges/vme_ca91cx42.h -13b9be72cf2f4c6d2347777b7eff3647 linux-3.0/drivers/staging/vme/bridges/vme_ca91cx42.c -1246a1ee385ea0254d45adc0469200da linux-3.0/drivers/staging/vme/bridges/Makefile -080d3b5a1cce429fc708b38448e54057 linux-3.0/drivers/staging/vme/bridges/Kconfig -e7a3513e40f8c7715ec8f8e856183e85 linux-3.0/drivers/staging/vme/boards/vme_vmivme7805.h -59bb2fba450c5233adca3f1866b1a8a8 linux-3.0/drivers/staging/vme/boards/vme_vmivme7805.c -c6c5aa021b7c0d8079ed0f6330c7a90b linux-3.0/drivers/staging/vme/boards/Makefile -4ed819da012158bab8dd8eb92981e5dd linux-3.0/drivers/staging/vme/boards/Kconfig -d85bf18133acec0a710bcceaa877f53f linux-3.0/drivers/staging/vme/TODO -e5903ebb3c2715b2f2209c47e798a4e7 linux-3.0/drivers/staging/vme/Makefile -ba965f105f5f103b1fe5ccc55aa1ffe3 linux-3.0/drivers/staging/vme/Kconfig -505a0f838edeb6eaf1be883be9aad2f0 linux-3.0/drivers/staging/usbip/vhci_tx.c -8febdac103a709d6299f8dfcca246fe3 linux-3.0/drivers/staging/usbip/vhci_sysfs.c -249c8325acbbb2366ec93902b2d7b79e linux-3.0/drivers/staging/usbip/vhci_rx.c -24be7c3b48505ff8d94ca3f38bedf02b linux-3.0/drivers/staging/usbip/vhci_hcd.c -47701b712b8944526b2dc044562721ea linux-3.0/drivers/staging/usbip/vhci.h -19e1a1215b6311c30821077174582c5a linux-3.0/drivers/staging/usbip/userspace/usb.ids -d31af7048982af9c686a68f10e0826f8 linux-3.0/drivers/staging/usbip/userspace/src/utils.h -d0781e7accd55909275f9a441c38bed5 linux-3.0/drivers/staging/usbip/userspace/src/utils.c -6e8b82082bba7fa703a9aca7f709d693 linux-3.0/drivers/staging/usbip/userspace/src/usbipd.c -3090a92095aa03b0b58bdec9641f5b8b linux-3.0/drivers/staging/usbip/userspace/src/usbip_network.h -74e3a70f3f3e3fb2d20db8369b42429d linux-3.0/drivers/staging/usbip/userspace/src/usbip_network.c -f8b7b39c87c64052192343d988bd4873 linux-3.0/drivers/staging/usbip/userspace/src/usbip.c -f675406a7299b399a62948cd69d83913 linux-3.0/drivers/staging/usbip/userspace/src/bind-driver.c -5001949306b9e523bf3d13df8a30cb4a linux-3.0/drivers/staging/usbip/userspace/src/Makefile.am -29bb81a6a529b09c976e3f90498cece9 linux-3.0/drivers/staging/usbip/userspace/libsrc/vhci_driver.h -5c14b1a7ccd37add2de88eefc5ed117e linux-3.0/drivers/staging/usbip/userspace/libsrc/vhci_driver.c -d3af5b7a7996bd9c6aaa3b77418a28f6 linux-3.0/drivers/staging/usbip/userspace/libsrc/usbip_common.h -e574e823d1308a82d802905c6ee5ace0 linux-3.0/drivers/staging/usbip/userspace/libsrc/usbip_common.c -f6445440df386b390ab9da11829d199e linux-3.0/drivers/staging/usbip/userspace/libsrc/usbip.h -85c14491171f2c17fba2bd3ad3cd8c89 linux-3.0/drivers/staging/usbip/userspace/libsrc/stub_driver.h -c78e095aca3d5efe1a668d72e4715578 linux-3.0/drivers/staging/usbip/userspace/libsrc/stub_driver.c -0890f9e9c44a67f295454d5e9869f989 linux-3.0/drivers/staging/usbip/userspace/libsrc/names.h -e00ed5809201d49eee728ac4f205b29b linux-3.0/drivers/staging/usbip/userspace/libsrc/names.c -f9b68e1021278c63408e572033206e5e linux-3.0/drivers/staging/usbip/userspace/libsrc/Makefile.am -cb213b6c6e60349c6787f64beaed7f97 linux-3.0/drivers/staging/usbip/userspace/doc/usbipd.8 -6c92e3530d1e8151dbfe61d6b0af9ba9 linux-3.0/drivers/staging/usbip/userspace/doc/usbip_bind_driver.8 -f7dc0e9803f68fedff5efbe33d29cd2c linux-3.0/drivers/staging/usbip/userspace/doc/usbip.8 -d1400aa71a52dff99ea3f8620a202027 linux-3.0/drivers/staging/usbip/userspace/configure.ac -8cded669d07c2b73fa8583d422d230e3 linux-3.0/drivers/staging/usbip/userspace/cleanup.sh -2e30f48d7df11b90e7a57d6e47dbc6d3 linux-3.0/drivers/staging/usbip/userspace/autogen.sh -94df8a47ae23ae481b77c8be92a0fd9d linux-3.0/drivers/staging/usbip/userspace/README -017530df0114741655e75cba26f5e2fb linux-3.0/drivers/staging/usbip/userspace/Makefile.am -d28cc43884394d79172e89e8feaa39cb linux-3.0/drivers/staging/usbip/userspace/INSTALL -1f6f1c0be32491a0c8d2915607a28f36 linux-3.0/drivers/staging/usbip/userspace/COPYING -e6d66e061a712ec76598fa6efb587db8 linux-3.0/drivers/staging/usbip/userspace/AUTHORS -7c049286366a40ef0167872ea820807a linux-3.0/drivers/staging/usbip/usbip_event.c -d358198db5d1fc189ecf742e89407159 linux-3.0/drivers/staging/usbip/usbip_common.h -78a9a89dc6b2ecebef1e11d014bdce6d linux-3.0/drivers/staging/usbip/usbip_common.c -f307b2d4032eda8fea1f79352da1c299 linux-3.0/drivers/staging/usbip/stub_tx.c -4ec725b2b3fc10e2c9c2870ac9ee7605 linux-3.0/drivers/staging/usbip/stub_rx.c -1bdf317a68b6c188e006b2570a13c5e5 linux-3.0/drivers/staging/usbip/stub_main.c -7c4d73844a834da1574b14b6f96f062b linux-3.0/drivers/staging/usbip/stub_dev.c -760ef12c15ef0c4dc0837ffb7efb8a5a linux-3.0/drivers/staging/usbip/stub.h -e7b65740dc4ae534ec142f40a8811142 linux-3.0/drivers/staging/usbip/README -981df0415aef920592fd14e7c370e533 linux-3.0/drivers/staging/usbip/Makefile -76cffe30a9511191ca494a0894547075 linux-3.0/drivers/staging/usbip/Kconfig -7211277ad33692ffce27c27b3d393ba9 linux-3.0/drivers/staging/tty/stallion.c -f6264b6669db19a7924a6585580d59ef linux-3.0/drivers/staging/tty/specialix_io8.h -f5c371bb19c2d7fa802893877ec1a629 linux-3.0/drivers/staging/tty/specialix.c -7c7603d25598577481a09104f77c7255 linux-3.0/drivers/staging/tty/serial167.c -5fc4a6c2be4869c7c67bf1c24be08415 linux-3.0/drivers/staging/tty/riscom8_reg.h -c9e2d15202cd7b5178c1885ddcb1b9ba linux-3.0/drivers/staging/tty/riscom8.h -40e1da8845b3a0eeb4600341d5508e0b linux-3.0/drivers/staging/tty/riscom8.c -d7f3cb93f4bb9021a789749a7f926e7b linux-3.0/drivers/staging/tty/istallion.c -0450f78bb73ba02ce411bb5af58af3a3 linux-3.0/drivers/staging/tty/ip2/ip2types.h -5819893bd96104211ff763233ea432db linux-3.0/drivers/staging/tty/ip2/ip2trace.h -f6165edc2ae94fc9cc59995e1ad6bdaa linux-3.0/drivers/staging/tty/ip2/ip2main.c -dff137a78e8a5ef25f4ed195354c44cf linux-3.0/drivers/staging/tty/ip2/ip2ioctl.h -24202551fe7cb735dfebf489874d0bea linux-3.0/drivers/staging/tty/ip2/ip2.h -ef34c7c7714ae4f440999538c341aaf7 linux-3.0/drivers/staging/tty/ip2/i2pack.h -ef75cf247c4bad9b2f4bc71b27ea33ce linux-3.0/drivers/staging/tty/ip2/i2lib.h -86f081b0e3c0c3a848ba44fb01c22791 linux-3.0/drivers/staging/tty/ip2/i2lib.c -656ba30c264a927dad0a24c62c3ed154 linux-3.0/drivers/staging/tty/ip2/i2hw.h -13284c1b8b384ccfd02505a9c8edcae7 linux-3.0/drivers/staging/tty/ip2/i2ellis.h -af058df7e6f6fe1dca28122e35e56f9f linux-3.0/drivers/staging/tty/ip2/i2ellis.c -7fc9cb3e974f2063512446f3f3e828a6 linux-3.0/drivers/staging/tty/ip2/i2cmd.h -4d3c055f5c7ad70e3bfb136121aaff48 linux-3.0/drivers/staging/tty/ip2/i2cmd.c -95be1f4265a6b5e198e28492dc9035a1 linux-3.0/drivers/staging/tty/ip2/Makefile -ce000f9e982875154e06d7b37063c39c linux-3.0/drivers/staging/tty/epcaconfig.h -ad7f744610abed781f339dff90d94011 linux-3.0/drivers/staging/tty/epca.h -1f49be02a42ae06603081f5d24711195 linux-3.0/drivers/staging/tty/epca.c -4c03a6c063b694914fb8d2e47c78204a linux-3.0/drivers/staging/tty/digiPCI.h -0436d0fefcd9a742d1fba3c9a3c8ada9 linux-3.0/drivers/staging/tty/digiFep1.h -bd648f4a63e6419e69fcc3eff4b494f7 linux-3.0/drivers/staging/tty/digi1.h -135e6d99a459a3876488f1fd8ff7c539 linux-3.0/drivers/staging/tty/cd1865.h -231e28c6afb94c06afeb1026ab92efb0 linux-3.0/drivers/staging/tty/TODO -29c3ff68c02840ec986c94b4de583a0f linux-3.0/drivers/staging/tty/Makefile -dab7477acc4773223ace48069c3944a5 linux-3.0/drivers/staging/tty/Kconfig -32a0c2096377686703212e7b1b19ea89 linux-3.0/drivers/staging/tm6000/tm6000.h -2eae5d81cc277187f5c3267cd9aafc78 linux-3.0/drivers/staging/tm6000/tm6000-video.c -be0cf16e1960f79125ab83fd5a42fd99 linux-3.0/drivers/staging/tm6000/tm6000-usb-isoc.h -a93515afeaa97a54525ae302a49fc11d linux-3.0/drivers/staging/tm6000/tm6000-stds.c -b47891acd707745d9d6ba8e04a57a449 linux-3.0/drivers/staging/tm6000/tm6000-regs.h -8e2b91b79a07314d962df54769ff9a7b linux-3.0/drivers/staging/tm6000/tm6000-input.c -5061b4e4629458b61e6edbd0b7884efc linux-3.0/drivers/staging/tm6000/tm6000-i2c.c -f200f74fc5be99a0a16a5ee6c80bd621 linux-3.0/drivers/staging/tm6000/tm6000-dvb.c -1c319d6c4efc69dcb1647cf394e1058a linux-3.0/drivers/staging/tm6000/tm6000-core.c -430cc2488066262a10662921f590d79b linux-3.0/drivers/staging/tm6000/tm6000-cards.c -0dad46a9a5cbd5c44e517b3862d20545 linux-3.0/drivers/staging/tm6000/tm6000-alsa.c -ca925357eac7201ad20d18752218057c linux-3.0/drivers/staging/tm6000/TODO -6261ea05f64f44836abb0ceda08a64bb linux-3.0/drivers/staging/tm6000/README -62bc6a208ecf4b28e2561ce1c040dc61 linux-3.0/drivers/staging/tm6000/Makefile -d75913cf9855ebd1189b34e0d1c99c58 linux-3.0/drivers/staging/tm6000/Kconfig -3d24455917ba222155eba270547394b9 linux-3.0/drivers/staging/tm6000/CARDLIST -4139d67df7480daa647e6dac8563929d linux-3.0/drivers/staging/tidspbridge/rmgr/strm.c -ed0e1ddcd8cbdc8d906b468e2eba87c5 linux-3.0/drivers/staging/tidspbridge/rmgr/rmm.c -a6f9d37ef83e67bba08268610eb8d827 linux-3.0/drivers/staging/tidspbridge/rmgr/pwr.c -11a7cd6bf838c1d2b2b193d9eade59e0 linux-3.0/drivers/staging/tidspbridge/rmgr/proc.c -1cce16d1b94ed2519ec8724107e2440a linux-3.0/drivers/staging/tidspbridge/rmgr/node.c -c2ed086f8271341dcdfea20dad019fbd linux-3.0/drivers/staging/tidspbridge/rmgr/nldr.c -3e8306b56fba75af8165707fa20ae80f linux-3.0/drivers/staging/tidspbridge/rmgr/mgr.c -f209326b142ceb1e85d454a3810fa06b linux-3.0/drivers/staging/tidspbridge/rmgr/dspdrv.c -59d2f14519a60d26310fb681e2d0a395 linux-3.0/drivers/staging/tidspbridge/rmgr/drv_interface.h -6286ca29c707745dd1edc4cb259f61c5 linux-3.0/drivers/staging/tidspbridge/rmgr/drv_interface.c -9f46c2e87a71f59df9b2310985e265b1 linux-3.0/drivers/staging/tidspbridge/rmgr/drv.c -d5214a431382c092e1e00f775f304743 linux-3.0/drivers/staging/tidspbridge/rmgr/disp.c -26317417b80a9dab26b414600534c0a4 linux-3.0/drivers/staging/tidspbridge/rmgr/dbdcd.c -ebb9105eb5a4ed3aca84891f3270952e linux-3.0/drivers/staging/tidspbridge/pmgr/msgobj.h -843eaa57b00d5632c080333cd2ede503 linux-3.0/drivers/staging/tidspbridge/pmgr/msg.c -a4515f6259ea2f716e177cce42be54ab linux-3.0/drivers/staging/tidspbridge/pmgr/ioobj.h -6bb8910a357844c1112ede9d2bb93622 linux-3.0/drivers/staging/tidspbridge/pmgr/io.c -e27fc1d692068da2e3585ee15904ac7b linux-3.0/drivers/staging/tidspbridge/pmgr/dspapi.c -70255c569686f2e0ca7c6df972fb081c linux-3.0/drivers/staging/tidspbridge/pmgr/dmm.c -15551d7c26eb5a33449091ff77f8e594 linux-3.0/drivers/staging/tidspbridge/pmgr/dev.c -6c97955b6fa6fe0daf87d82afcbca528 linux-3.0/drivers/staging/tidspbridge/pmgr/dbll.c -38596ac8374c6bb4619272418151fe35 linux-3.0/drivers/staging/tidspbridge/pmgr/cod.c -48ffab649f1ccf8db818132b57ef47bc linux-3.0/drivers/staging/tidspbridge/pmgr/cmm.c -ac7ef447a779bbffe41e52c9f7c41d05 linux-3.0/drivers/staging/tidspbridge/pmgr/chnlobj.h -fd6ca1a19a7ab2a1a790d0d052e14eea linux-3.0/drivers/staging/tidspbridge/pmgr/chnl.c -225824c2dfe5383b231164427971e706 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/wdt.h -1142ffa3cb840fa92392d9470f0ee52c linux-3.0/drivers/staging/tidspbridge/include/dspbridge/uuidutil.h -af790eb95286bbe008aada7233792a77 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/sync.h -1bbcaf5dd638d18f9485f22b9adcc69b linux-3.0/drivers/staging/tidspbridge/include/dspbridge/strmdefs.h -6b8df5a9e11ebb09e452ac026474210c linux-3.0/drivers/staging/tidspbridge/include/dspbridge/strm.h -d17c209b065af48cb27df9208e276ac2 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/rmstypes.h -4697e50f406bce25e9b08a8533a78b4f linux-3.0/drivers/staging/tidspbridge/include/dspbridge/rms_sh.h -e63c843f3131b0fe9ce921200255c188 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/rmm.h -f810230d88eee7cd65c6fd6784a462f7 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/resourcecleanup.h -c1ab099e772dde3902bf3e73efb44723 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/pwr.h -9d81425dad2f6a219da39e13ca730edb linux-3.0/drivers/staging/tidspbridge/include/dspbridge/procpriv.h -577f7c4812280554335bbcf44d2ba755 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/proc.h -cb1d35a3899fba07d1d0c9ebb939f468 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/ntfy.h -4c69157299c11fbf2b1f0a5993be4b7b linux-3.0/drivers/staging/tidspbridge/include/dspbridge/nodepriv.h -34232a541562b7eada247a2b896a089b linux-3.0/drivers/staging/tidspbridge/include/dspbridge/nodedefs.h -d4b953180de0fca3d2fb444bd538ff05 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/node.h -d418c2ff75d461e6d4aff80937c3a03d linux-3.0/drivers/staging/tidspbridge/include/dspbridge/nldrdefs.h -95c1b56e99778b48a7f31fbb78e6f8fb linux-3.0/drivers/staging/tidspbridge/include/dspbridge/nldr.h -bbff7a1db1caa27668b7936746ada265 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/msgdefs.h -3a203f5e8eb47bc2b4a9752bbfe23843 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/msg.h -fa27b8b1f30dfa63307a5b143dc61734 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/mgrpriv.h -155bc01973322e8b7e8c8bf33d6d800c linux-3.0/drivers/staging/tidspbridge/include/dspbridge/mgr.h -00e55bad8015ef1b42c1e7db28240cb4 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/memdefs.h -753b8914773b4b28ab98cf85c239881e linux-3.0/drivers/staging/tidspbridge/include/dspbridge/mbx_sh.h -75e4ef6f13a6a2c0b5b2a56ff5cd9e61 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/io_sm.h -271a27cc772d2f9e0a805fe6cb33c907 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/io.h -7f327779bc2bc1613c3438954d6b6439 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/host_os.h -3c75613fb569b6d9ed7accb34ada3a50 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/gh.h -73679d6f7f7ca1567babff86ca5f157b linux-3.0/drivers/staging/tidspbridge/include/dspbridge/getsection.h -446f8f3ee612a34449148d8d28fa5e02 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dynamic_loader.h -944fc811c2c4bfbe6d7d242332d18690 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dspmsg.h -d38e03f18e2de6f0fdc0159780a58d57 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dspioctl.h -3239e6bff783495d06e9c243d3d32eb9 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dspio.h -32ae08cdc9d1d95eb9955a9d4e98401d linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dspdrv.h -e2a847c892b4aa53e5dc6f75e7299d1e linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dspdeh.h -55eddfc4016c4b2e02f47d8cb65088ad linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h -ddbf162aae3f02156d90a8eef001e4da linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dspchnl.h -ed37f41690dc99e46da5f50219eef554 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dspapi.h -ce2bbc228852e5066a81af6412f05e8e linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dspapi-ioctl.h -7df5307a22b3f320d72dadfb324ad433 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/drv.h -86b036c565c4b9ceef65bfac0eff1c72 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dmm.h -bde3fd2ec651af32207d1517a159d19c linux-3.0/drivers/staging/tidspbridge/include/dspbridge/disp.h -8fe3d310c0dd188228618d444330f764 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/devdefs.h -7f5de18b355d69db2625ff2be15f2c64 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dev.h -782497ce3398bee5624ca71760e6c4f7 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dblldefs.h -ce68985e1a3ebe3b325bcee64cf9326c linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dbll.h -63bc18c6f8e46b8a15779cb80f6c63ff linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dbdefs.h -d900394151d89b4273cefe5cab5d03d1 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dbdcddef.h -243f9f68b259bbc812677d2b46e26cd6 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dbdcd.h -1a42c2b1caf819f85a354d0076ab2bad linux-3.0/drivers/staging/tidspbridge/include/dspbridge/dbc.h -3ddc6e7de06c831291537a7ac13b8ac2 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/cod.h -fb83602ce55e9ef287ae68d45335b1de linux-3.0/drivers/staging/tidspbridge/include/dspbridge/cmmdefs.h -d9364c56c9bc54183f750d8847bf1cc2 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/cmm.h -0c819f3b294129343b1a32acadd81338 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/clk.h -032c660351afea54a011a991ede8fa38 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/chnlpriv.h -a0ff2cb533c32c2db83d453e093677a9 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/chnldefs.h -7b4517c93303a598df07eba1062e34ac linux-3.0/drivers/staging/tidspbridge/include/dspbridge/chnl.h -376afbdadcd6a18872079a0305cabb16 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/cfgdefs.h -bb92cd71974509e30ecf8085441d7ff4 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/brddefs.h -95a3543fe3be67f0a5ab216c470d1a32 linux-3.0/drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h -0ad1e0650a3060b6b9d61df87c745e64 linux-3.0/drivers/staging/tidspbridge/hw/hw_mmu.h -5a4cdada4fff7fe70768136ae81a4525 linux-3.0/drivers/staging/tidspbridge/hw/hw_mmu.c -d985ee8b82fa5e0dd308731fbb623a14 linux-3.0/drivers/staging/tidspbridge/hw/hw_defs.h -0d845fafd366ccdfdbe702ab185a73d1 linux-3.0/drivers/staging/tidspbridge/hw/MMURegAcM.h -d50d8aeb67489c0902aa4cbc5548f740 linux-3.0/drivers/staging/tidspbridge/hw/MMUAccInt.h -b75cb28b8a01e06d0b4a44bf946f1285 linux-3.0/drivers/staging/tidspbridge/hw/EasiGlobal.h -5574f3ac172af2447347090fb5f5f21b linux-3.0/drivers/staging/tidspbridge/gen/uuidutil.c -df51ceec9911d16f4c2b4176b02ba22f linux-3.0/drivers/staging/tidspbridge/gen/gh.c -5b4d3404156aaa88ec0f031a630a2f49 linux-3.0/drivers/staging/tidspbridge/dynload/tramp_table_c6000.c -583b96d170e10044ebe37c49cabb4ead linux-3.0/drivers/staging/tidspbridge/dynload/tramp.c -0abcff771b85b9db42c6450c9e1dee0c linux-3.0/drivers/staging/tidspbridge/dynload/reloc_table_c6000.c -f315090a1da53207d26a9e3c5a158c14 linux-3.0/drivers/staging/tidspbridge/dynload/reloc_table.h -3db6c31759d2c741927a4b9385bf9109 linux-3.0/drivers/staging/tidspbridge/dynload/reloc.c -ee1aa670be5e084bd3bcaad3d02d9dcb linux-3.0/drivers/staging/tidspbridge/dynload/params.h -e5d6297a00646386b85cfaad3affc7a6 linux-3.0/drivers/staging/tidspbridge/dynload/module_list.h -8f69cb10c2c2cdd1b8b9662ef7d88e64 linux-3.0/drivers/staging/tidspbridge/dynload/header.h -32a116cc520201bce3ee1eeabadda611 linux-3.0/drivers/staging/tidspbridge/dynload/getsection.c -032e396a3162dd7b1e32b15563bb45fa linux-3.0/drivers/staging/tidspbridge/dynload/doff.h -435c380a0c0bbd8592932ba359f1aa14 linux-3.0/drivers/staging/tidspbridge/dynload/dload_internal.h -e1d42bcce7b58d4483ed11f9100430c6 linux-3.0/drivers/staging/tidspbridge/dynload/cload.c -79b4326a83238efdecbcfb83b88300b6 linux-3.0/drivers/staging/tidspbridge/core/wdt.c -a2f283210eede838631e5dbbc31c551a linux-3.0/drivers/staging/tidspbridge/core/ue_deh.c -d947ae755cc8e3c17d8013b68440f31c linux-3.0/drivers/staging/tidspbridge/core/tiomap_io.h -c94e10abe164309504409cbd3e7f0d2b linux-3.0/drivers/staging/tidspbridge/core/tiomap_io.c -23c7cfaba72e898ead50baabaa468865 linux-3.0/drivers/staging/tidspbridge/core/tiomap3430_pwr.c -c6f456867edcd0a2b0feeaaa2c9a972e linux-3.0/drivers/staging/tidspbridge/core/tiomap3430.c -dc0e3d0adc6c2f072948fa911ee86a86 linux-3.0/drivers/staging/tidspbridge/core/sync.c -86255a2e3e5dbacdd4178ab973167abc linux-3.0/drivers/staging/tidspbridge/core/msg_sm.c -12ea0b0917fc4ecebea2d6d0c0be23b8 linux-3.0/drivers/staging/tidspbridge/core/io_sm.c -8dcda5d6e34c222ba2619b548845b2dd linux-3.0/drivers/staging/tidspbridge/core/dsp-clock.c -5f880ec2bcb89c41179b0c939b430d8b linux-3.0/drivers/staging/tidspbridge/core/chnl_sm.c -9aa0e080bc68418c9359f3059ed7b249 linux-3.0/drivers/staging/tidspbridge/core/_tiomap_pwr.h -c3d25efa0d2edffd9220d46f571fa3aa linux-3.0/drivers/staging/tidspbridge/core/_tiomap.h -e82a232210b4e36ddbf101819dd4c9d5 linux-3.0/drivers/staging/tidspbridge/core/_msg_sm.h -28ebafba9c383b04755f7289b787c464 linux-3.0/drivers/staging/tidspbridge/core/_deh.h -5d7da15cb17e00f5ea50cfe4073c99bc linux-3.0/drivers/staging/tidspbridge/core/_cmm.h -ee1067d4aa9360dbdd86f30c3b28d94d linux-3.0/drivers/staging/tidspbridge/TODO -82ecd9d75f0a9145cc0d3b89c8099de2 linux-3.0/drivers/staging/tidspbridge/Makefile -017687db69fa4d3fef4e4b9470c8dba3 linux-3.0/drivers/staging/tidspbridge/Kconfig -2f0f749c791b8f723c2d9b6aeaca379f linux-3.0/drivers/staging/tidspbridge/Documentation/error-codes -1795fa9a139c80b66716bcf60687f375 linux-3.0/drivers/staging/tidspbridge/Documentation/README -d7885000b543258c8aaad21ab5cd4f19 linux-3.0/drivers/staging/tidspbridge/Documentation/CONTRIBUTORS -deebd469782a3892034598693959c0e4 linux-3.0/drivers/staging/ste_rmi4/synaptics_i2c_rmi4.h -f7dee2f4b3a18a49a3d85125b596633b linux-3.0/drivers/staging/ste_rmi4/synaptics_i2c_rmi4.c -a5b64a31132ae5a5300532398287bf95 linux-3.0/drivers/staging/ste_rmi4/TODO -9f0299af4892e4877588600e4db28397 linux-3.0/drivers/staging/ste_rmi4/Makefile -f35e07442deb1f93465547d25c0246c5 linux-3.0/drivers/staging/ste_rmi4/Kconfig -1af949d99ae416c569ef858a6361f20a linux-3.0/drivers/staging/staging.c -dcea86d09db7314b4f55a5f0cf54a29b linux-3.0/drivers/staging/spectra/spectraswconfig.h -dba277dba4978e7d71450795bd884392 linux-3.0/drivers/staging/spectra/nand_regs.h -69aa22bde997fe3dac92cd1f0b3df360 linux-3.0/drivers/staging/spectra/lld_nand.h -16a7e8bd2a41a41b2b9104e33765b70d linux-3.0/drivers/staging/spectra/lld_nand.c -e52edd7be72136970c38dc2b5500b968 linux-3.0/drivers/staging/spectra/lld_mtd.h -909d62f6a5357191a8695d111c722e55 linux-3.0/drivers/staging/spectra/lld_mtd.c -4f88b16a6556b78ae9290d961ed49f87 linux-3.0/drivers/staging/spectra/lld_emu.h -3beeaa004e1418790cfbf5c5d610f6b5 linux-3.0/drivers/staging/spectra/lld_emu.c -8dc67ea0fe9bb04384c5d361ce68bfd1 linux-3.0/drivers/staging/spectra/lld_cdma.h -8f8bd8d4527d3a985aed5fdf2e0a2637 linux-3.0/drivers/staging/spectra/lld_cdma.c -da72b138a6813c099e11d61a329a7dbf linux-3.0/drivers/staging/spectra/lld.h -78163a272e3ed36351618567ab2b91a0 linux-3.0/drivers/staging/spectra/lld.c -82b526204214ab9704ffabe1ed8f57f7 linux-3.0/drivers/staging/spectra/flash.h -bd8ee033108447ae06b5c0a88f215595 linux-3.0/drivers/staging/spectra/flash.c -c4f728daa29175d185476d2223e96cac linux-3.0/drivers/staging/spectra/ffsport.h -3307cc7fcd2adb86168d20b2724f35dc linux-3.0/drivers/staging/spectra/ffsport.c -447353a31a191ccf392241bb85f1453b linux-3.0/drivers/staging/spectra/ffsdefs.h -8a27a2709c36c129b6d929d4593d1ddb linux-3.0/drivers/staging/spectra/README -d0331bf719a57595d5ae160d37f00baf linux-3.0/drivers/staging/spectra/Makefile -63737321966b834c668245ddda6ed3cd linux-3.0/drivers/staging/spectra/Kconfig -2521827b48ec98ee1c3135a693541903 linux-3.0/drivers/staging/speakup/varhandlers.c -a39f60fb5c67131b506d2899959c0afc linux-3.0/drivers/staging/speakup/thread.c -47f161e302af9ef490d336ca4e4c4a5b linux-3.0/drivers/staging/speakup/synth.c -5a807a6ab60e87ca8cc76a093805126d linux-3.0/drivers/staging/speakup/spkguide.txt -dc5c89cc0741db6295e949ff5e79ca4c linux-3.0/drivers/staging/speakup/spk_types.h -9f988ba2f697f81cba2e5cbe57151555 linux-3.0/drivers/staging/speakup/spk_priv_keyinfo.h -5afc56c071ad43669741619da214b014 linux-3.0/drivers/staging/speakup/spk_priv.h -bcb0fdb7435b1f19fc687a6dea3a040a linux-3.0/drivers/staging/speakup/speakupmap.map -55812f9755b5fee75000a0a41906c686 linux-3.0/drivers/staging/speakup/speakupmap.h -d2f0b0c8ebcab4f7e5e5806fb10d7044 linux-3.0/drivers/staging/speakup/speakup_txprt.c -b0afee090607f5c6e55928b623042762 linux-3.0/drivers/staging/speakup/speakup_spkout.c -82c91b8e115b1a4e10d9c5558dc4c5fc linux-3.0/drivers/staging/speakup/speakup_soft.c -89bfff298684d9cf5413805ca4e8a0b3 linux-3.0/drivers/staging/speakup/speakup_ltlk.c -169ecaed547b4d45d5dfaa6c0f803c2c linux-3.0/drivers/staging/speakup/speakup_keypc.c -2a553420d13ef8026cee183beff29e41 linux-3.0/drivers/staging/speakup/speakup_dummy.c -3072c87b9b44efddac78b6c2b383d8ac linux-3.0/drivers/staging/speakup/speakup_dtlk.h -1483aa92a804c2ef3d8bdcc88b8a6229 linux-3.0/drivers/staging/speakup/speakup_dtlk.c -614d4f21d7f5c30652deb7c57969f2da linux-3.0/drivers/staging/speakup/speakup_dectlk.c -ed7c7aadb1ec186f2ccddadf56210b14 linux-3.0/drivers/staging/speakup/speakup_decpc.c -28f8065ef0ddef607b257784c9ae606e linux-3.0/drivers/staging/speakup/speakup_decext.c -d8f034f321f1d7c3fd598f8213c6ff5a linux-3.0/drivers/staging/speakup/speakup_bns.c -f8061ca1d217471067c7a4856b52a1b5 linux-3.0/drivers/staging/speakup/speakup_audptr.c -d500b1a6aae6f96a2d7773de99eccbcf linux-3.0/drivers/staging/speakup/speakup_apollo.c -308aeaa42bce01a6d0551902f904d6b5 linux-3.0/drivers/staging/speakup/speakup_acntsa.c -e4b682c87ed4d1a70d0a7685722c96ae linux-3.0/drivers/staging/speakup/speakup_acntpc.c -e7078b4811c840c9eb9227aa5b42d487 linux-3.0/drivers/staging/speakup/speakup_acnt.h -f2b7433aa955aff1d05aeabec8c30796 linux-3.0/drivers/staging/speakup/speakup.h -17b047b33605cd7e2969de0e2ddb0903 linux-3.0/drivers/staging/speakup/serialio.h -769063c9d28b4b02493fa268e2cc4fff linux-3.0/drivers/staging/speakup/serialio.c -38632394e8f29af4f24179f0e40d1223 linux-3.0/drivers/staging/speakup/selection.c -152e23a0ac2e5fc0ac39b0ef402f6add linux-3.0/drivers/staging/speakup/main.c -0a0e6af27ebea0f95c002cb9ee761020 linux-3.0/drivers/staging/speakup/kobjects.c -010881ba0918c53cd7a943c1858ef476 linux-3.0/drivers/staging/speakup/keyhelp.c -8e9a09ca2d0541cf0d2a8e0460a50968 linux-3.0/drivers/staging/speakup/i18n.h -f159400f9cbae4f92994a9cea0054f66 linux-3.0/drivers/staging/speakup/i18n.c -1d2b99c6a399218f082066475388bccc linux-3.0/drivers/staging/speakup/fakekey.c -ef6aa04e79bd0cfdb23cdf7faaabcbc2 linux-3.0/drivers/staging/speakup/devsynth.c -c11fb5b9b2d626c2fa832c1144438618 linux-3.0/drivers/staging/speakup/buffers.c -9d2f2adf6f28a4b232ddf895239358e8 linux-3.0/drivers/staging/speakup/TODO -2001a92f7d41333ec6fcdf8db71769e8 linux-3.0/drivers/staging/speakup/Makefile -29d409c0f3249281b06f9e2780b4dfe1 linux-3.0/drivers/staging/speakup/Kconfig -1467315314da8ee98cd51c21e0fcf75d linux-3.0/drivers/staging/speakup/DefaultKeyAssignments -886c6ad03c36866465529a81e39c5887 linux-3.0/drivers/staging/solo6x10/v4l2.c -fcb6cc998f380d8bb9e99e222a682e98 linux-3.0/drivers/staging/solo6x10/v4l2-enc.c -d71b91beff570e55a31823a84c08ad5a linux-3.0/drivers/staging/solo6x10/tw28.h -ac3b4539c8ea55971c8aa09614bf10a7 linux-3.0/drivers/staging/solo6x10/tw28.c -ef1604f73039256b57ee7289245253bb linux-3.0/drivers/staging/solo6x10/solo6x10.h -df0c8c062d9ae00029f0c85ef29f258a linux-3.0/drivers/staging/solo6x10/registers.h -440536af4b08b933c8773a182b9291e2 linux-3.0/drivers/staging/solo6x10/p2m.c -6fa7c3cb03e4a14c8402dfbc2535ec08 linux-3.0/drivers/staging/solo6x10/osd-font.h -868b3b7ef3da1dcfd0018555163ee1f8 linux-3.0/drivers/staging/solo6x10/offsets.h -fbe11f275c7aad74170e8c8bf2a6cbec linux-3.0/drivers/staging/solo6x10/jpeg.h -17a900aafe9ef1fafac05aaac216bcf2 linux-3.0/drivers/staging/solo6x10/i2c.c -72f7c0e6fb7d055cdfdd0e21edb71a57 linux-3.0/drivers/staging/solo6x10/gpio.c -352750338a534f94ca628ab8a8abcda7 linux-3.0/drivers/staging/solo6x10/g723.c -3f990c634cd32b3346200fac349bad27 linux-3.0/drivers/staging/solo6x10/enc.c -b5e84b0657f513924a3e5eab2a3dd1a2 linux-3.0/drivers/staging/solo6x10/disp.c -e6ec97e3bf64355b5229b73a03c2e519 linux-3.0/drivers/staging/solo6x10/core.c -c0feb8c3584fc6cad44138e30e503834 linux-3.0/drivers/staging/solo6x10/TODO -3917e823de488bb1674a74243d9d21e2 linux-3.0/drivers/staging/solo6x10/Makefile -b83f342e2cb5e82c27ea0ede8d5ec510 linux-3.0/drivers/staging/solo6x10/Kconfig -ca91dd3e088d1edb41a6a5e834cecf76 linux-3.0/drivers/staging/sm7xx/smtcfb.h -872f0490b14fb51201c522e5bb083a2d linux-3.0/drivers/staging/sm7xx/smtcfb.c -58cb7b109f573c5623e6b8d58a823532 linux-3.0/drivers/staging/sm7xx/TODO -d4e99f73150647d2cb3cad10be5954b9 linux-3.0/drivers/staging/sm7xx/Makefile -20258c295c2f2177d793bfff37d1d488 linux-3.0/drivers/staging/sm7xx/Kconfig -9034ab53207207b47fdcebc3ae7758e2 linux-3.0/drivers/staging/slicoss/slicoss.c -93b40715d63ee302192d817b9d6bff1b linux-3.0/drivers/staging/slicoss/slichw.h -9487a843e6cf24e1a4b1d310103b7833 linux-3.0/drivers/staging/slicoss/slic.h -0a06b8c976df23cf5b68511a7da489df linux-3.0/drivers/staging/slicoss/README -b6fa12f49672265c7906dd732b01e6af linux-3.0/drivers/staging/slicoss/Makefile -613a43de1be4c17371cf33bc22b631db linux-3.0/drivers/staging/slicoss/Kconfig -832ba7785596d9041435ebf59bb84d31 linux-3.0/drivers/staging/serqt_usb2/serqt_usb2.c -50595c66380be8459a02874675a3c862 linux-3.0/drivers/staging/serqt_usb2/Makefile -7185db2f49be88b98ba58d0f335e65b5 linux-3.0/drivers/staging/serqt_usb2/Kconfig -262fc22acb19bf0162333421191a2c7c linux-3.0/drivers/staging/sep/sep_driver_hw_defs.h -e32118785918fa5f0437f9dde47bc9f4 linux-3.0/drivers/staging/sep/sep_driver_config.h -6cb92ff5510bf9182d64af334a0dc039 linux-3.0/drivers/staging/sep/sep_driver_api.h -9724a78997d2fe51c447634c14b7dffa linux-3.0/drivers/staging/sep/sep_driver.c -dc9dcaeda2d2f2d9629813d22e4054bc linux-3.0/drivers/staging/sep/sep_dev.h -31f23d4d52f0c9a1fd551ca663b6d5a8 linux-3.0/drivers/staging/sep/TODO -21bbf1910bc6a53dcef2f4519224e80a linux-3.0/drivers/staging/sep/Makefile -1698b781081a2cae8702842f656e9d33 linux-3.0/drivers/staging/sep/Kconfig -30ecbdc68c5b1f644e0d1d8b15323f4d linux-3.0/drivers/staging/sbe-2t3e3/netdev.c -650b08617375533acd88fc28f7a7a108 linux-3.0/drivers/staging/sbe-2t3e3/module.c -3c0d1304e0692333b8ba43e68d282fc2 linux-3.0/drivers/staging/sbe-2t3e3/maps.c -56771bf787a9edd08cb26007b7b4d6d4 linux-3.0/drivers/staging/sbe-2t3e3/main.c -475316bc1e81debb48da5f184cc8427d linux-3.0/drivers/staging/sbe-2t3e3/io.c -b2c17abce6204564515d650bd7ec4fd0 linux-3.0/drivers/staging/sbe-2t3e3/intr.c -8c89b6768c3254683a28e6effbc8cb42 linux-3.0/drivers/staging/sbe-2t3e3/exar7300.c -18a7324bf0e4964e0f99dffc6f411b08 linux-3.0/drivers/staging/sbe-2t3e3/exar7250.c -e77d0f7e00c3eb2a991bdbb5a9ab2c5f linux-3.0/drivers/staging/sbe-2t3e3/dc.c -63a3e4c6d1ffdc1f9a9ee522b395d64a linux-3.0/drivers/staging/sbe-2t3e3/ctrl.h -f61b651da3277ad387f72a343dece5a0 linux-3.0/drivers/staging/sbe-2t3e3/ctrl.c -23c48de7cbb74743e30bdc125eec6b88 linux-3.0/drivers/staging/sbe-2t3e3/cpld.c -d88fbbcf3496352e7191df0b881e32bb linux-3.0/drivers/staging/sbe-2t3e3/TODO -5da4638d01756f237fe77beff734d927 linux-3.0/drivers/staging/sbe-2t3e3/Makefile -d1be3b8a7ed4a5bee4a6fafdac4386b5 linux-3.0/drivers/staging/sbe-2t3e3/Kconfig -079b19fb9cf379ef6eb3b23d396b07d9 linux-3.0/drivers/staging/sbe-2t3e3/2t3e3.h -b4f1c6dbc489cbef34da58b8a598f83a linux-3.0/drivers/staging/rts_pstor/xd.h -605ee28bde7c428b4ac13a397609c82c linux-3.0/drivers/staging/rts_pstor/xd.c -b73531cc22b794d32965b86a4a62fa25 linux-3.0/drivers/staging/rts_pstor/trace.h -bd78aeda49bac7e90104245931e79aa8 linux-3.0/drivers/staging/rts_pstor/spi.h -be5dfc3bc502b3aeda28eae3592ceec6 linux-3.0/drivers/staging/rts_pstor/spi.c -94ac61a0f48698db560c2b0028153897 linux-3.0/drivers/staging/rts_pstor/sd.h -39d6cdb00438afff3578b66923f4a84f linux-3.0/drivers/staging/rts_pstor/sd.c -1023631577fdbbb309c6852cae925fb3 linux-3.0/drivers/staging/rts_pstor/rtsx_transport.h -ce1c595aa13824679ada73069942ab14 linux-3.0/drivers/staging/rts_pstor/rtsx_transport.c -98425d7a523276fa641397afd5ffe42d linux-3.0/drivers/staging/rts_pstor/rtsx_sys.h -b2214c65b7b60bfb21562a7b0220c64f linux-3.0/drivers/staging/rts_pstor/rtsx_scsi.h -5a1900e9f7dc903f04830df02128b6a3 linux-3.0/drivers/staging/rts_pstor/rtsx_scsi.c -45d48d5b3a95121aca7ccdd3b6bc30cf linux-3.0/drivers/staging/rts_pstor/rtsx_chip.h -edf18bb725593fa8866329dadf91ea36 linux-3.0/drivers/staging/rts_pstor/rtsx_chip.c -58f9dbbdd1c572d2a41abdc348ec0196 linux-3.0/drivers/staging/rts_pstor/rtsx_card.h -084aec3fe0e7505c319bddaed7e72eb2 linux-3.0/drivers/staging/rts_pstor/rtsx_card.c -7bff07d82d7facdfe158dc0d2bb23137 linux-3.0/drivers/staging/rts_pstor/rtsx.h -d3ec17abf160ab4708142845957b2ee3 linux-3.0/drivers/staging/rts_pstor/rtsx.c -f16ed5741192d845e62c8d0c1066cb8a linux-3.0/drivers/staging/rts_pstor/ms.h -ff6242c5d8f8c2c218e70ca343940367 linux-3.0/drivers/staging/rts_pstor/ms.c -29e3b7618d5d3b5f88517e45f7d3b900 linux-3.0/drivers/staging/rts_pstor/general.h -f7c3b5841704236f154494013207616b linux-3.0/drivers/staging/rts_pstor/general.c -3ba09a9ddc20b3390315c6bc8a08e8a3 linux-3.0/drivers/staging/rts_pstor/debug.h -b01301178dbc94fe258a569c914653be linux-3.0/drivers/staging/rts_pstor/TODO -b817187978af4976490128ae5ecdae26 linux-3.0/drivers/staging/rts_pstor/Makefile -887cc754ab13d1d6243756e1909a750c linux-3.0/drivers/staging/rts_pstor/Kconfig -69c98c6bd40c601fcc981f7ed8ce9adb linux-3.0/drivers/staging/rtl8712/xmit_osdep.h -04425789a7849a2a533697d8733b677e linux-3.0/drivers/staging/rtl8712/xmit_linux.c -0524999baecc3dbef61772cfbe3ef6bf linux-3.0/drivers/staging/rtl8712/wlan_bssdef.h -e50a8bb0ed3e8b7fe38d1f36c49f778b linux-3.0/drivers/staging/rtl8712/wifi.h -69507d3c048b84196863beae35ab2260 linux-3.0/drivers/staging/rtl8712/usb_vendor_req.h -e3093f94019c794a0bddc388bea633df linux-3.0/drivers/staging/rtl8712/usb_osintf.h -7d3145a3ff82a7c55fafac7b2aea7b18 linux-3.0/drivers/staging/rtl8712/usb_ops_linux.c -7ae28a6b57a7f70fd9dce8b72e547926 linux-3.0/drivers/staging/rtl8712/usb_ops.h -490742f6e797ca40726cd3138388005e linux-3.0/drivers/staging/rtl8712/usb_ops.c -3d9be409bbac5aeb6588925e83e34da4 linux-3.0/drivers/staging/rtl8712/usb_intf.c -1cf38f5d9acabc657013521c7732383f linux-3.0/drivers/staging/rtl8712/usb_halinit.c -40deed340dd56a1dfbd90ab9f96bd916 linux-3.0/drivers/staging/rtl8712/swab.h -6953f58441b3e02563e6000f4d64d520 linux-3.0/drivers/staging/rtl8712/sta_info.h -1c76d093b34aa5ef6b706f3bf58bcf6c linux-3.0/drivers/staging/rtl8712/rtl871x_xmit.h -8923f7aa2a43b2e4df037fa538649e15 linux-3.0/drivers/staging/rtl8712/rtl871x_xmit.c -8ff9d8e67747bd7452387cce2aa63767 linux-3.0/drivers/staging/rtl8712/rtl871x_wlan_sme.h -1be606af3e6da06c9a5c19e283574786 linux-3.0/drivers/staging/rtl8712/rtl871x_sta_mgt.c -9b9d5857bf2cb3d783f50a8664579649 linux-3.0/drivers/staging/rtl8712/rtl871x_security.h -b3b9d024f91078f888c2f23d077b1c3a linux-3.0/drivers/staging/rtl8712/rtl871x_security.c -6e33858fa8d4194cede813ffbb635d2a linux-3.0/drivers/staging/rtl8712/rtl871x_rf.h -57c46f0982a0b67fadf6642df736010b linux-3.0/drivers/staging/rtl8712/rtl871x_recv.h -f51ac214806abdcf5ecb53f87b88f7a2 linux-3.0/drivers/staging/rtl8712/rtl871x_recv.c -07d32a207c183798c9a685d515ae31c7 linux-3.0/drivers/staging/rtl8712/rtl871x_pwrctrl.h -3f26d1ab5d8ea324989500469eb27d85 linux-3.0/drivers/staging/rtl8712/rtl871x_pwrctrl.c -6b663179385ae9c6a6c266a8dd8a04ab linux-3.0/drivers/staging/rtl8712/rtl871x_mp_phy_regdef.h -3ad5296fe117ac155403e39a14af6f17 linux-3.0/drivers/staging/rtl8712/rtl871x_mp_ioctl.h -721abbf352e9f8cd57ff9e11b47c8683 linux-3.0/drivers/staging/rtl8712/rtl871x_mp_ioctl.c -e89745e0d4c01827ba551327da234d5e linux-3.0/drivers/staging/rtl8712/rtl871x_mp.h -b6226ff8cca1fd8f60447ac040b192eb linux-3.0/drivers/staging/rtl8712/rtl871x_mp.c -cd1cda2e8254e2f344441268201e6a08 linux-3.0/drivers/staging/rtl8712/rtl871x_mlme.h -c3d33ea1e46b6431201e389861146c5c linux-3.0/drivers/staging/rtl8712/rtl871x_mlme.c -d98d0bd117346ed10d9e3e7f4731935a linux-3.0/drivers/staging/rtl8712/rtl871x_led.h -430817969de9da52a9343da206bd0a16 linux-3.0/drivers/staging/rtl8712/rtl871x_ioctl_set.h -a93646951f30fe0f600920c1041b31a1 linux-3.0/drivers/staging/rtl8712/rtl871x_ioctl_set.c -44953ac53636500f89da50dc4df2763f linux-3.0/drivers/staging/rtl8712/rtl871x_ioctl_rtl.h -881b3eca830ce83f56211a4141b4f406 linux-3.0/drivers/staging/rtl8712/rtl871x_ioctl_rtl.c -93e715edcb86b7a79ec7c5a9857a953b linux-3.0/drivers/staging/rtl8712/rtl871x_ioctl_linux.c -cdbd35e53279bb3ade189c1d0015d29b linux-3.0/drivers/staging/rtl8712/rtl871x_ioctl.h -e0612fc3a288c239d1953dfd166d96e7 linux-3.0/drivers/staging/rtl8712/rtl871x_io.h -e9bb060d9b677f1ac102bd269a4f256c linux-3.0/drivers/staging/rtl8712/rtl871x_io.c -5f72527289c5c614fba8f2480085eb02 linux-3.0/drivers/staging/rtl8712/rtl871x_ht.h -e30bb8959bcf22dc670de2b56a2007d6 linux-3.0/drivers/staging/rtl8712/rtl871x_event.h -f0797aef7120fda550bfdc012da537ca linux-3.0/drivers/staging/rtl8712/rtl871x_eeprom.h -aa9f30d7a05b321c1e092a4917eeb7ff linux-3.0/drivers/staging/rtl8712/rtl871x_eeprom.c -f4c0b3d81a646b8cccc8f33b84edfeb7 linux-3.0/drivers/staging/rtl8712/rtl871x_debug.h -bf6a68621ecd1ff0a10c427392f11b8d linux-3.0/drivers/staging/rtl8712/rtl871x_cmd.h -43d67228d79ee7da931c1f3842e334eb linux-3.0/drivers/staging/rtl8712/rtl871x_cmd.c -8bbc03f67284c16d5532c20674df9445 linux-3.0/drivers/staging/rtl8712/rtl871x_byteorder.h -ada73edafe4bd5c8d37c39372bed7342 linux-3.0/drivers/staging/rtl8712/rtl8712_xmit.h -5b80cc2ea5669ec1ede8528fb2964608 linux-3.0/drivers/staging/rtl8712/rtl8712_xmit.c -1d788345c4da66dc08fff134bf7e7f2a linux-3.0/drivers/staging/rtl8712/rtl8712_wmac_regdef.h -0d7022645125caccb7edd70d5b834721 linux-3.0/drivers/staging/rtl8712/rtl8712_wmac_bitdef.h -2ab8f3e2b6709202d6534e1ba4da1729 linux-3.0/drivers/staging/rtl8712/rtl8712_timectrl_regdef.h -a31564242ec2bba8770000177ba82284 linux-3.0/drivers/staging/rtl8712/rtl8712_timectrl_bitdef.h -28291f272b73b2d56bd2fd87ceb22eae linux-3.0/drivers/staging/rtl8712/rtl8712_syscfg_regdef.h -c5903216ae53fb65a17f2483f84ce992 linux-3.0/drivers/staging/rtl8712/rtl8712_syscfg_bitdef.h -d6e398923f0dc32b9204ca70d6eafbd3 linux-3.0/drivers/staging/rtl8712/rtl8712_spec.h -056ba1889170214e6f357143416d0e5f linux-3.0/drivers/staging/rtl8712/rtl8712_security_bitdef.h -0a2a4685461f4530d6a727d3338d3205 linux-3.0/drivers/staging/rtl8712/rtl8712_regdef.h -ff4189dfdcfa292d6bdb7da8e9025ce9 linux-3.0/drivers/staging/rtl8712/rtl8712_recv.h -58eaf99e8d5750688e2c8fa094f7d909 linux-3.0/drivers/staging/rtl8712/rtl8712_recv.c -471bc3eefb1afd4a51eea5b2fd125699 linux-3.0/drivers/staging/rtl8712/rtl8712_ratectrl_regdef.h -b747b8b2d2c9e4b95f17adf692552a4e linux-3.0/drivers/staging/rtl8712/rtl8712_ratectrl_bitdef.h -aa4345902956b8e9abea638869718873 linux-3.0/drivers/staging/rtl8712/rtl8712_powersave_regdef.h -00f94764a9f59e8a1dc65f1bca011144 linux-3.0/drivers/staging/rtl8712/rtl8712_powersave_bitdef.h -e287092eae8738f2641ea6e46b83e082 linux-3.0/drivers/staging/rtl8712/rtl8712_macsetting_regdef.h -6239101960ddca1c9666c2aafd347416 linux-3.0/drivers/staging/rtl8712/rtl8712_macsetting_bitdef.h -321e3fa04032aea1b7cb1dc43d96e65d linux-3.0/drivers/staging/rtl8712/rtl8712_led.c -d1da907650cf01108ba64c1f93185840 linux-3.0/drivers/staging/rtl8712/rtl8712_io.c -0414b92db01f58052246a4e40b62ad0f linux-3.0/drivers/staging/rtl8712/rtl8712_interrupt_bitdef.h -30cbc65e8d5e759ca1ef60c5e89daee3 linux-3.0/drivers/staging/rtl8712/rtl8712_hal.h -9d840fcf407d439596edbdb0c4c0feba linux-3.0/drivers/staging/rtl8712/rtl8712_gp_regdef.h -5fa45911c46e153f6c9e196816993a19 linux-3.0/drivers/staging/rtl8712/rtl8712_gp_bitdef.h -4677d4f379ee36cd0b65ba65c420b19d linux-3.0/drivers/staging/rtl8712/rtl8712_fifoctrl_regdef.h -4b841b3a5f229e8cb7afee8c879bf837 linux-3.0/drivers/staging/rtl8712/rtl8712_fifoctrl_bitdef.h -438317bfe9a9b1735dd98c987974b662 linux-3.0/drivers/staging/rtl8712/rtl8712_event.h -5d4ba154c147ea7ceb64006df4fd2661 linux-3.0/drivers/staging/rtl8712/rtl8712_efuse.h -0c1afe15159dfb25ad94ea5eeb8a7022 linux-3.0/drivers/staging/rtl8712/rtl8712_efuse.c -daba36ed66dc252d57d1106511622ada linux-3.0/drivers/staging/rtl8712/rtl8712_edcasetting_regdef.h -148033be78a56e4b34075dff2c6e8a4f linux-3.0/drivers/staging/rtl8712/rtl8712_edcasetting_bitdef.h -3165a231587ca57a18ba3bb57be113c7 linux-3.0/drivers/staging/rtl8712/rtl8712_debugctrl_regdef.h -3dfafec8f1027b7cfd35750aab0b793f linux-3.0/drivers/staging/rtl8712/rtl8712_debugctrl_bitdef.h -d95fb70cb87d8174d701f6ed28da3b57 linux-3.0/drivers/staging/rtl8712/rtl8712_cmdctrl_regdef.h -2db24e39b331ea8d2e22ad91fde7cb24 linux-3.0/drivers/staging/rtl8712/rtl8712_cmdctrl_bitdef.h -1688580a3bbcb11f9b89cb571430caf9 linux-3.0/drivers/staging/rtl8712/rtl8712_cmd.h -9064588feb7df310c0f913f5916ff6ac linux-3.0/drivers/staging/rtl8712/rtl8712_cmd.c -408120e9137073f049f06824e2b8256d linux-3.0/drivers/staging/rtl8712/rtl8712_bitdef.h -fad862e91a266fc4c52986c7408a1499 linux-3.0/drivers/staging/rtl8712/recv_osdep.h -54dbe2bf0463460422c72a921eb3f9db linux-3.0/drivers/staging/rtl8712/recv_linux.c -87b300da70312255375cad0189910222 linux-3.0/drivers/staging/rtl8712/osdep_service.h -d642de3c9c58c41a9f65c3d40313b6a5 linux-3.0/drivers/staging/rtl8712/osdep_intf.h -a17302cd6494522751a9b5b25bf52c4c linux-3.0/drivers/staging/rtl8712/os_intfs.c -c265f6b1a1667b84c43f57a14703b1ac linux-3.0/drivers/staging/rtl8712/mp_custom_oid.h -f1be6cbad8c8af9df1fb107629ddf9f5 linux-3.0/drivers/staging/rtl8712/mlme_osdep.h -6202ab0510f06c1cbcec97dcc1fd8c35 linux-3.0/drivers/staging/rtl8712/mlme_linux.c -604c07dea56e3127c043669334cb00b8 linux-3.0/drivers/staging/rtl8712/little_endian.h -a8018f2e393e431c4488050af5f09eb3 linux-3.0/drivers/staging/rtl8712/ip.h -8a160cd4fc8eab9090910c7acf16b4ae linux-3.0/drivers/staging/rtl8712/if_ether.h -fd405a6ddbda837a0c0f6e81b90c1851 linux-3.0/drivers/staging/rtl8712/ieee80211.h -1f418193b8232a07f37ab884e7942cb7 linux-3.0/drivers/staging/rtl8712/ieee80211.c -8576ff71f96bda66bec67a14615d278b linux-3.0/drivers/staging/rtl8712/hal_init.c -3a38e39eb0e63c65f2f59e0d35eacb7a linux-3.0/drivers/staging/rtl8712/generic.h -dbf83aaa45f7e652f0f63be61546d74e linux-3.0/drivers/staging/rtl8712/ethernet.h -8d46816f6d1704b4bd43ffb1445ae8c1 linux-3.0/drivers/staging/rtl8712/drv_types.h -6bfb0097d85316191e0be128222eef68 linux-3.0/drivers/staging/rtl8712/big_endian.h -7103c659e5cf49e2cbdd3f95d9563035 linux-3.0/drivers/staging/rtl8712/basic_types.h -4a38fa8b10d6c934d4b0147abb7909dd linux-3.0/drivers/staging/rtl8712/TODO -2637e442dfd7c0bbe92e3d1d34349039 linux-3.0/drivers/staging/rtl8712/Makefile -0c434ecc133cdefe46dbb9dc61e181c9 linux-3.0/drivers/staging/rtl8712/Kconfig -afdbb06fa3d36372a30f92fe090775b6 linux-3.0/drivers/staging/rtl8192u/r819xU_phyreg.h -c53c9c1b70c962457e4a509437b613a9 linux-3.0/drivers/staging/rtl8192u/r819xU_phy.h -b933c17582a0175e435e2dead88fd0ad linux-3.0/drivers/staging/rtl8192u/r819xU_phy.c -9b9cc6cc45960c6c9884cce7762a240a linux-3.0/drivers/staging/rtl8192u/r819xU_firmware_img.h -36194c212f658b6c2b37a5ae075fcc95 linux-3.0/drivers/staging/rtl8192u/r819xU_firmware_img.c -d047ae33e0c3452fcd630021411ba74c linux-3.0/drivers/staging/rtl8192u/r819xU_firmware.h -8a466a4e693623374a94817c70689ebd linux-3.0/drivers/staging/rtl8192u/r819xU_firmware.c -19b4554e9fba5d1cd6bb3d5abad54f9e linux-3.0/drivers/staging/rtl8192u/r819xU_cmdpkt.h -f758aca1dd6b51042454830fc56c7189 linux-3.0/drivers/staging/rtl8192u/r819xU_cmdpkt.c -46885f49c3e32cfc01ab82b657bb5689 linux-3.0/drivers/staging/rtl8192u/r819xU_HTType.h -96684d600a13f1c02cfb5bd7d6fd5315 linux-3.0/drivers/staging/rtl8192u/r819xU_HTGen.h -1a43dcdd2fb2a1b6f32abf1a41771282 linux-3.0/drivers/staging/rtl8192u/r8192U_wx.h -4b283b997db7a7ce2f2c94a9d89e2d16 linux-3.0/drivers/staging/rtl8192u/r8192U_wx.c -3e519705f4cf30ed69172a10a0756928 linux-3.0/drivers/staging/rtl8192u/r8192U_hw.h -b5cb8b3c8d590926a585d81d8a60bf69 linux-3.0/drivers/staging/rtl8192u/r8192U_dm.h -f2a6642b8fe63414f423cb6475462f45 linux-3.0/drivers/staging/rtl8192u/r8192U_dm.c -adc3cdabce8e56ee2e2e3fc3e21b3002 linux-3.0/drivers/staging/rtl8192u/r8192U_core.c -3adfcc62a655748a2757869993b4094a linux-3.0/drivers/staging/rtl8192u/r8192U.h -2b443d3ac0b7bb6931b80f160fd6eee7 linux-3.0/drivers/staging/rtl8192u/r8190_rtl8256.h -871b91218a2693a4ef575b4e04ad1f21 linux-3.0/drivers/staging/rtl8192u/r8190_rtl8256.c -64d79074781bd60f5af314bb153d76b2 linux-3.0/drivers/staging/rtl8192u/r8180_pm.h -064012f934f66c97d914aef7a2f4df0d linux-3.0/drivers/staging/rtl8192u/r8180_pm.c -e8f33ef7e14e706a770113e5233a337f linux-3.0/drivers/staging/rtl8192u/r8180_93cx6.h -2c0afb1f3918c1d7a3eb44ff154e65bd linux-3.0/drivers/staging/rtl8192u/r8180_93cx6.c -973d086b594d3ca730c5db0b8d0658f4 linux-3.0/drivers/staging/rtl8192u/ieee80211_crypt.h -1d5f03e0b14616f8f42c5ed0e5953efe linux-3.0/drivers/staging/rtl8192u/ieee80211/scatterwalk.h -5d72bc76298cc3eda150226bc57499c9 linux-3.0/drivers/staging/rtl8192u/ieee80211/scatterwalk.c -40235d4585425acc463f86ca331c312a linux-3.0/drivers/staging/rtl8192u/ieee80211/rtl_crypto.h -b5c57f98528796ae45bd9186fa27be74 linux-3.0/drivers/staging/rtl8192u/ieee80211/rtl819x_TSProc.c -3c8998339557767c7f3ae00a8cbd18d5 linux-3.0/drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h -da2913db1e868465238029767f0a1955 linux-3.0/drivers/staging/rtl8192u/ieee80211/rtl819x_Qos.h -aa3871985d05f10c2cd086d8347b8ce5 linux-3.0/drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c -638d0f06cd47311e168f24efed192f32 linux-3.0/drivers/staging/rtl8192u/ieee80211/rtl819x_HT.h -37903cd2e3dfcd4cc7d79768ec7465e4 linux-3.0/drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.c -d1836990ce8acbd6eb5f250ca7a879ca linux-3.0/drivers/staging/rtl8192u/ieee80211/rtl819x_BA.h -ef0e4034aab9b8d451ff67298ef6d1ab linux-3.0/drivers/staging/rtl8192u/ieee80211/proc.c -ea5734453ca0d1c235ee4d43ba7a56c0 linux-3.0/drivers/staging/rtl8192u/ieee80211/michael_mic.c -2f1f7d9f74ebb6fda21c94e46f50c7ec linux-3.0/drivers/staging/rtl8192u/ieee80211/kmap_types.h -ab79923320f362eedbc1821d2bd8cb47 linux-3.0/drivers/staging/rtl8192u/ieee80211/internal.h -7b70c3316584e1c7663a8b6884275b6d linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c -8c3095a3a2bfd26ecda9bcd83b0622b9 linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c -6c77a44a6c3a48a3a9f9c0d7a5f5e5ea linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac_wx.c -7b8a010740b25d571d8f808841cb4c84 linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c -e60e47ac8cb7142c2cfdd99a66d763cf linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c -b1dfff8931a9ceb8079eb3b778950cac linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c -3d451309b51e1d0959e37ffb7bb8a071 linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_wep.c -6dda0ea0279fe0ae4e818cb34612ab98 linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_tkip.c -b8ac0a7007588d48b759beeab9e87450 linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_ccmp.c -05358d1765e0c8b0a382562f5295a010 linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_crypt.h -5cf84c26291f5fd9a40df6b23341dc9a linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211_crypt.c -006213e659d9390599261c51f9f50a47 linux-3.0/drivers/staging/rtl8192u/ieee80211/ieee80211.h -248d2c3b0c73117ccb22bea8d782a50d linux-3.0/drivers/staging/rtl8192u/ieee80211/dot11d.h -218c11fd272ddffacc81194ce85816a1 linux-3.0/drivers/staging/rtl8192u/ieee80211/dot11d.c -4e00fac3ad655560934929256184352f linux-3.0/drivers/staging/rtl8192u/ieee80211/digest.c -dbc86f226320a6d4d51621c5b0d23dbf linux-3.0/drivers/staging/rtl8192u/ieee80211/crypto_compat.h -aadd0fd6dd63687168094d053a51f54b linux-3.0/drivers/staging/rtl8192u/ieee80211/compress.c -9c913de656129a88565fa1051a109741 linux-3.0/drivers/staging/rtl8192u/ieee80211/cipher.c -0c49cd25abafe71fa7c89fabe3b7608e linux-3.0/drivers/staging/rtl8192u/ieee80211/autoload.c -14b60b52e7cf1b7b70fda1f8a1d5da1c linux-3.0/drivers/staging/rtl8192u/ieee80211/arc4.c -ca13eb28579fee89ac6a935b179f04a2 linux-3.0/drivers/staging/rtl8192u/ieee80211/api.c -7dae7dafccc37d2239e815d8de6673d8 linux-3.0/drivers/staging/rtl8192u/ieee80211/aes.c -81ebaeda3d3f3e5cf642d322799532af linux-3.0/drivers/staging/rtl8192u/ieee80211/Makefile -2028bf33d0356ae533138d8b09fabb1f linux-3.0/drivers/staging/rtl8192u/ieee80211/EndianFree.h -33f5c16f3cdc71df27f03f8fa8d0becd linux-3.0/drivers/staging/rtl8192u/dot11d.h -94d55d512a9ba36caa9b7df079bae19f linux-3.0/drivers/staging/rtl8192u/copying -68b4fe591145281a72e9b36078b0daa9 linux-3.0/drivers/staging/rtl8192u/changes -13cee4cbe4ab4bf493ee2118a3f3bfee linux-3.0/drivers/staging/rtl8192u/authors -a80a5ef2c54f8b299c1b7574070eb948 linux-3.0/drivers/staging/rtl8192u/Makefile -a9267a1d77b140199aca85d66bf07eb2 linux-3.0/drivers/staging/rtl8192u/Kconfig -a909733680a0ebf769ecf216aa8bdb45 linux-3.0/drivers/staging/rtl8192e/r819xE_phyreg.h -cbdba1c4f87c818efef894ae10aa9518 linux-3.0/drivers/staging/rtl8192e/r819xE_phy.h -6349affbdfdef92ea019d6430ec130dc linux-3.0/drivers/staging/rtl8192e/r819xE_phy.c -f635815cb0ea26a1c1ec7ab0a3741782 linux-3.0/drivers/staging/rtl8192e/r819xE_firmware.c -640b73d754690c5b68bba23fa82aa399 linux-3.0/drivers/staging/rtl8192e/r819xE_cmdpkt.h -9c95ad5d190f91b52c832d3da8bb29c0 linux-3.0/drivers/staging/rtl8192e/r819xE_cmdpkt.c -69eeeef0a0db9319e5b3b17c448a0ca5 linux-3.0/drivers/staging/rtl8192e/r8192_pm.h -a0faea9402738d41abcda8eb4f2b8ea8 linux-3.0/drivers/staging/rtl8192e/r8192_pm.c -fc050c8107190f5676f4fa629c661aab linux-3.0/drivers/staging/rtl8192e/r8192E_wx.h -50d2dd29d50d4f9f5ff4a81acd5feb50 linux-3.0/drivers/staging/rtl8192e/r8192E_wx.c -a5b132bfa27b03400103297af22f8612 linux-3.0/drivers/staging/rtl8192e/r8192E_hw.h -57880e7d2a4aa24f2d422504b484e4b9 linux-3.0/drivers/staging/rtl8192e/r8192E_dm.h -8fd1c8b470262cdf6e134a4460bcfeed linux-3.0/drivers/staging/rtl8192e/r8192E_dm.c -b6cb656575da6e1b5afb62d63deba815 linux-3.0/drivers/staging/rtl8192e/r8192E_core.c -1e85df0f8278783c13e844a2f40b6c5a linux-3.0/drivers/staging/rtl8192e/r8192E.h -b4267675daafd56d4e51b877fd7656e0 linux-3.0/drivers/staging/rtl8192e/r8190_rtl8256.h -db4cdb97833e01758725545d82bc5c2d linux-3.0/drivers/staging/rtl8192e/r8190_rtl8256.c -ca9a57342721f22eca70507210c62be3 linux-3.0/drivers/staging/rtl8192e/r8180_93cx6.h -440c81aa1578011e09cd78351fb84d0f linux-3.0/drivers/staging/rtl8192e/r8180_93cx6.c -40235d4585425acc463f86ca331c312a linux-3.0/drivers/staging/rtl8192e/ieee80211/rtl_crypto.h -39cb7189ae2a2a32478c545780092dc7 linux-3.0/drivers/staging/rtl8192e/ieee80211/rtl819x_TSProc.c -3c8998339557767c7f3ae00a8cbd18d5 linux-3.0/drivers/staging/rtl8192e/ieee80211/rtl819x_TS.h -1f340b7af1e928b631518a54e4511845 linux-3.0/drivers/staging/rtl8192e/ieee80211/rtl819x_Qos.h -4bf8334c2aa1d0e5d59919d08d8fa79d linux-3.0/drivers/staging/rtl8192e/ieee80211/rtl819x_HTProc.c -baf4882ffe985d01833a4ec6b3ce9857 linux-3.0/drivers/staging/rtl8192e/ieee80211/rtl819x_HT.h -7b2713b4ae1e031c177843bf0d4259ef linux-3.0/drivers/staging/rtl8192e/ieee80211/rtl819x_BAProc.c -d1836990ce8acbd6eb5f250ca7a879ca linux-3.0/drivers/staging/rtl8192e/ieee80211/rtl819x_BA.h -598bf09d69089ca4804fd30db092e69c linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_wx.c -ce1df680ab331e3765c821218080726e linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_tx.c -7fa01f4abe4ba67ee7ea0c9b10744032 linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac_wx.c -86e566c52d41c2ad8dd989f5523af088 linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c -d2dc8bc805fc71a849920c75e64a63d4 linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_rx.c -60c7692137682989cbf2e20e3ea2d187 linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_module.c -de75403f69239463cab2b205ceb81374 linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_crypt_wep.c -3bf262f0abbd513d464e2489b872de06 linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_crypt_tkip.c -8eff112ea3257e8f183721096fb748f8 linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_crypt_ccmp.c -978db8a3b13ee89514e67f5ef2ede307 linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_crypt.h -f76028132ab5cb8d279fdee180a6bfec linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211_crypt.c -1f4ca54837d4669e8a60270bd9c0d435 linux-3.0/drivers/staging/rtl8192e/ieee80211/ieee80211.h -5d1e68db06cf9ff479e245d09f9187a5 linux-3.0/drivers/staging/rtl8192e/ieee80211/dot11d.h -32e2a234d77fc4f02190396489e9bdae linux-3.0/drivers/staging/rtl8192e/ieee80211/dot11d.c -6188237f537dc49bfaf4bcb5b09cc579 linux-3.0/drivers/staging/rtl8192e/dot11d.h -04862a70f45e5cec3322ebff7f3ea068 linux-3.0/drivers/staging/rtl8192e/Makefile -ec3da75878d8277cae5b217e8e364d84 linux-3.0/drivers/staging/rtl8192e/Kconfig -aa955d717d8049fbd1854159a5d2dac7 linux-3.0/drivers/staging/rtl8187se/r8185b_init.c -1ccddddc84a5576caaea6c72d9b68090 linux-3.0/drivers/staging/rtl8187se/r8180_wx.h -a9dd215bf2f319066daab698cd45ff31 linux-3.0/drivers/staging/rtl8187se/r8180_wx.c -e34b3ee46ba9aa7df8e6e48df8e6de95 linux-3.0/drivers/staging/rtl8187se/r8180_rtl8225z2.c -fa16e62f8335f14c453fd0722a5dbc39 linux-3.0/drivers/staging/rtl8187se/r8180_rtl8225.h -9bb455a47474aadfe775e90bef1afdeb linux-3.0/drivers/staging/rtl8187se/r8180_hw.h -02f0160f3dac6f58a423a6f838f227ab linux-3.0/drivers/staging/rtl8187se/r8180_dm.h -c25b4e74d4d7946db5bdae80e51d0f9d linux-3.0/drivers/staging/rtl8187se/r8180_dm.c -2c88924d860389c77481830b6ce531d4 linux-3.0/drivers/staging/rtl8187se/r8180_core.c -114e075fa25c1a19897d565f2f8fca3a linux-3.0/drivers/staging/rtl8187se/r8180_93cx6.h -acc67fb772e995828e4fd6d33fd32fad linux-3.0/drivers/staging/rtl8187se/r8180.h -c600df4ca08009e74c0dcb6909a4d8f1 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c -c85c62e5f355fe40674f7b12cad8eb34 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c -1bb2af4fdf5bb0fe105e48175bec5903 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac_wx.c -c30d5aace09055f9b59b3c0983c15bec linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c -4bc1cf794fcf1f615d5489aef1c86fe6 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c -97a4883128fc9a61a8d479ca7683963e linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_module.c -713e6c58f43958a2b530eacf6e2c6a25 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt_wep.c -3d6fa4598212d78db1c0888093fcb329 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt_tkip.c -e79f87ad24263885cde439b7f6baa967 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt_ccmp.c -05358d1765e0c8b0a382562f5295a010 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt.h -f16c94c6d6ed2b29d4b308d2190a8106 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt.c -a03515fd846713afa519faca119cb8a2 linux-3.0/drivers/staging/rtl8187se/ieee80211/ieee80211.h -4d00792b6c9380ec1f6ba666265c8230 linux-3.0/drivers/staging/rtl8187se/ieee80211/dot11d.h -352509f625396b06d3fdda128f3f1bcd linux-3.0/drivers/staging/rtl8187se/ieee80211/dot11d.c -6f1f663eb066df727d65646fe42c4bd9 linux-3.0/drivers/staging/rtl8187se/TODO -dacb1b8f833033b879e3bd2757295aea linux-3.0/drivers/staging/rtl8187se/Makefile -0f71d7d2ac67f6cff857c90a297bb589 linux-3.0/drivers/staging/rtl8187se/Kconfig -068684be7a7ba6bf0d1d7556b42b0d77 linux-3.0/drivers/staging/quickstart/quickstart.c -2b9016d77f92fef6fe9f2e676b77878f linux-3.0/drivers/staging/quickstart/Makefile -ffcb1f38a0d14c6003f0870a8ed9af05 linux-3.0/drivers/staging/quickstart/Kconfig -1c73175773292683631f7aafadad11e1 linux-3.0/drivers/staging/quatech_usb2/quatech_usb2.c -76307208b28e7ae30eda3769d6f51c74 linux-3.0/drivers/staging/quatech_usb2/TODO -ae2155f2a371361500b329b725577171 linux-3.0/drivers/staging/quatech_usb2/Makefile -ff6a202e3efb301b560721ae3d585313 linux-3.0/drivers/staging/quatech_usb2/Kconfig -33c04ce9a3be12c575f11afca192a750 linux-3.0/drivers/staging/pohmelfs/trans.c -d24914f0c3e7dafaa9486f8600907cb1 linux-3.0/drivers/staging/pohmelfs/path_entry.c -3234f49614e15eab6c76cbc0fca2fc64 linux-3.0/drivers/staging/pohmelfs/netfs.h -b33666c8b6795ee71b4fad88619749ad linux-3.0/drivers/staging/pohmelfs/net.c -c38bd28f57d5ac86e42fff25ed888500 linux-3.0/drivers/staging/pohmelfs/mcache.c -f86c51705d680f3dc46d906f6f0fc08c linux-3.0/drivers/staging/pohmelfs/lock.c -06a60fc45c8cc0f7f9528fc99372dfe8 linux-3.0/drivers/staging/pohmelfs/inode.c -048927c8a85fb7c77b16d9e553a6646f linux-3.0/drivers/staging/pohmelfs/dir.c -39d1c92329dc83c20f9d662525347310 linux-3.0/drivers/staging/pohmelfs/crypto.c -7377f4df6e84ca353c2f63333a15207d linux-3.0/drivers/staging/pohmelfs/config.c -d7b9cf283a5305440894d47154d8e012 linux-3.0/drivers/staging/pohmelfs/Makefile -ad33ef17f50a9a3cf46f62cb32fc8028 linux-3.0/drivers/staging/pohmelfs/Kconfig -21c2dc5eb9a29cbeb6517ff5ef0cdcb3 linux-3.0/drivers/staging/phison/phison.c -a00523910ed475cf2f388524a566381d linux-3.0/drivers/staging/phison/Makefile -46a6666100de1066cbfa15eed1d775d7 linux-3.0/drivers/staging/phison/Kconfig -ad2ce265ca1c4d1adf5e69c524143f59 linux-3.0/drivers/staging/panel/panel.c -bca041e678ceb744717a2574818c6bfb linux-3.0/drivers/staging/panel/lcd-panel-cgram.txt -3e8f2b42248fb918a0dff9a7990d5a6b linux-3.0/drivers/staging/panel/TODO -ca783778cca9840045da299f2a85faa0 linux-3.0/drivers/staging/panel/Makefile -1dd441853881fb9676b1910378cfc7f6 linux-3.0/drivers/staging/panel/Kconfig -f5ce6e4ed952b1810c730dd629ae6380 linux-3.0/drivers/staging/olpc_dcon/olpc_dcon_xo_1_5.c -765b26806b1f978c76874373bed820da linux-3.0/drivers/staging/olpc_dcon/olpc_dcon_xo_1.c -95e53f11a623d149400f02524b294a5d linux-3.0/drivers/staging/olpc_dcon/olpc_dcon.h -11a4f30611981b2fb662e40c18c510ea linux-3.0/drivers/staging/olpc_dcon/olpc_dcon.c -d99cdc4038071f5606c116194279a5ee linux-3.0/drivers/staging/olpc_dcon/TODO -a040482fa76e78d3f35c44775ec41cfd linux-3.0/drivers/staging/olpc_dcon/Makefile -a4c1fe03d225d07d0cd2929a7935848a linux-3.0/drivers/staging/olpc_dcon/Kconfig -315dd600b40a9d29d43fc5d3abda6715 linux-3.0/drivers/staging/octeon/octeon-ethernet.h -a744c8f7703f89a8778c6845df6fc6e2 linux-3.0/drivers/staging/octeon/ethernet.c -ac8d56f7fe38d296d49290c7711bb532 linux-3.0/drivers/staging/octeon/ethernet-xaui.c -8a0af2e896bce9b4f3c5fc040bed2a18 linux-3.0/drivers/staging/octeon/ethernet-util.h -45ceab1aeefdd8bba6e1585ac6cd6efb linux-3.0/drivers/staging/octeon/ethernet-tx.h -37bcad9ea1629c448f8b94107627e64e linux-3.0/drivers/staging/octeon/ethernet-tx.c -ba0c1e034d3116e943e1f3ec24580574 linux-3.0/drivers/staging/octeon/ethernet-spi.c -3c3d309efceba5628385e62bce3e4cc7 linux-3.0/drivers/staging/octeon/ethernet-sgmii.c -7307993ec48b171c48ac947970e888ae linux-3.0/drivers/staging/octeon/ethernet-rx.h -274f37ca60e0d82325b52c712fabb158 linux-3.0/drivers/staging/octeon/ethernet-rx.c -4b665c991cc86111083b3eddc47f174c linux-3.0/drivers/staging/octeon/ethernet-rgmii.c -d8a7f62f0cbe867ac48dbf484f6f87f5 linux-3.0/drivers/staging/octeon/ethernet-mem.h -386b381948ad5fc1282494d77a9a724d linux-3.0/drivers/staging/octeon/ethernet-mem.c -7719e69f459bdce2c280568b0ea88d0c linux-3.0/drivers/staging/octeon/ethernet-mdio.h -6dbd72f305e8b6f90303cfe7c225668c linux-3.0/drivers/staging/octeon/ethernet-mdio.c -25b91c04d41d5c989e5e10fa50096a00 linux-3.0/drivers/staging/octeon/ethernet-defines.h -7a2be3743f5fe3eafec7362213f42028 linux-3.0/drivers/staging/octeon/cvmx-wqe.h -3b0fcc88e9e163b021d3f272e851903f linux-3.0/drivers/staging/octeon/cvmx-stxx-defs.h -3301b095ec1da03d3426d492772ac9db linux-3.0/drivers/staging/octeon/cvmx-srxx-defs.h -ba21f950be036e858b1ae5c878ccef9c linux-3.0/drivers/staging/octeon/cvmx-spxx-defs.h -f552fb7dc5f036ba06ca36f9fc88fb1c linux-3.0/drivers/staging/octeon/cvmx-spi.h -c1be2ff07ecc12ee47f64ccf33abdf64 linux-3.0/drivers/staging/octeon/cvmx-spi.c -b9c4e2504f2e9f6c530a9a8b3b708535 linux-3.0/drivers/staging/octeon/cvmx-smix-defs.h -f239dfd1a588cd3293c7ba53a78a288f linux-3.0/drivers/staging/octeon/cvmx-scratch.h -660286f043cc44525022586ae0227515 linux-3.0/drivers/staging/octeon/cvmx-pow.h -f00f700225c82261a80b523d4c5cb29c linux-3.0/drivers/staging/octeon/cvmx-pko.h -6543085f216a40b1fc142c8751df96f1 linux-3.0/drivers/staging/octeon/cvmx-pko.c -aa2d51bfbaa6386cd2a97f323cf47f24 linux-3.0/drivers/staging/octeon/cvmx-pko-defs.h -2e810d6f04bb0aca4fba5de15b88294a linux-3.0/drivers/staging/octeon/cvmx-pip.h -6b704ad28352efb3443ffe8be318cf99 linux-3.0/drivers/staging/octeon/cvmx-pip-defs.h -b90bac598181fc80ae077b878085c187 linux-3.0/drivers/staging/octeon/cvmx-pcsxx-defs.h -8826412d9da5f49e77fe0c0d62032dc7 linux-3.0/drivers/staging/octeon/cvmx-pcsx-defs.h -a285386eeb7e055f0406fce09326933d linux-3.0/drivers/staging/octeon/cvmx-packet.h -80a7b2f966991eb6e253fc3f0bd545dd linux-3.0/drivers/staging/octeon/cvmx-mdio.h -121b2e6f5f4e6600dad87cb74644c905 linux-3.0/drivers/staging/octeon/cvmx-ipd.h -adff31eff281378e10c2212e17960203 linux-3.0/drivers/staging/octeon/cvmx-interrupt-rsl.c -1c141322fcddaef10f05c71f9d6d5367 linux-3.0/drivers/staging/octeon/cvmx-interrupt-decodes.c -d7bb7543e20399d40ccdcc3f3a6a9abe linux-3.0/drivers/staging/octeon/cvmx-helper.h -3064e30edc3cb4b99d0ae240f1f995bf linux-3.0/drivers/staging/octeon/cvmx-helper.c -f3493e6a5e10b0ca4e7d41e60d6c5fcf linux-3.0/drivers/staging/octeon/cvmx-helper-xaui.h -0a2394f379c6802b13b24082a760a1b4 linux-3.0/drivers/staging/octeon/cvmx-helper-xaui.c -0d315492135e1e76d5e2a1de1733492d linux-3.0/drivers/staging/octeon/cvmx-helper-util.h -4d8ca568df8cc9f73572f240107f9ecc linux-3.0/drivers/staging/octeon/cvmx-helper-util.c -3af29aadeb7e2757e0f1f521c1d189fa linux-3.0/drivers/staging/octeon/cvmx-helper-spi.h -94948a9ac8fddea110c8ba4096b05677 linux-3.0/drivers/staging/octeon/cvmx-helper-spi.c -8df4b6db9d737cc4d6d4c04ae11a9de3 linux-3.0/drivers/staging/octeon/cvmx-helper-sgmii.h -4ff5a0bb3aab9a092ec68cf06e4bbb0c linux-3.0/drivers/staging/octeon/cvmx-helper-sgmii.c -1b490dde5d90c5de888b0ed88a783096 linux-3.0/drivers/staging/octeon/cvmx-helper-rgmii.h -e42639101b3647d6e39b8a843859212a linux-3.0/drivers/staging/octeon/cvmx-helper-rgmii.c -8b9ae0e67a6e5a5ff8b3b3528c5d0e27 linux-3.0/drivers/staging/octeon/cvmx-helper-npi.h -510e104e064f49d34d85517df39e3a2e linux-3.0/drivers/staging/octeon/cvmx-helper-npi.c -2692ba0f0bd59f30b071f7b8848369b2 linux-3.0/drivers/staging/octeon/cvmx-helper-loop.h -e393ab3939595e27201b759f364b5480 linux-3.0/drivers/staging/octeon/cvmx-helper-loop.c -1913f2b3375ec38bee705243839ed3e4 linux-3.0/drivers/staging/octeon/cvmx-helper-fpa.h -e568c9cbe8ecfe77ce394029fd7cdbb7 linux-3.0/drivers/staging/octeon/cvmx-helper-fpa.c -38b5e22ae288d8df0017e397cc077af9 linux-3.0/drivers/staging/octeon/cvmx-helper-board.h -7dc7dbf4307420e174806cd6c98248d0 linux-3.0/drivers/staging/octeon/cvmx-helper-board.c -d86316c7fb13f8b2c56c10c4da9e7cfa linux-3.0/drivers/staging/octeon/cvmx-gmxx-defs.h -7e41b825286eeca9eb154437c1f1e21c linux-3.0/drivers/staging/octeon/cvmx-fpa.h -67616feff3520f7b40c3a0327a184b52 linux-3.0/drivers/staging/octeon/cvmx-fpa.c -bb4b6d0a8ee53202b007c52a9036dbca linux-3.0/drivers/staging/octeon/cvmx-fpa-defs.h -c76885b98669a1d15214b72877325fcf linux-3.0/drivers/staging/octeon/cvmx-fau.h -4f7ba69d9dd933323aa55287328feccc linux-3.0/drivers/staging/octeon/cvmx-dbg-defs.h -dcf54f8e2ffdee02efe8887bba99d648 linux-3.0/drivers/staging/octeon/cvmx-config.h -e7cbc7d57c44fff221e9f0fbedeff68b linux-3.0/drivers/staging/octeon/cvmx-cmd-queue.h -3f48682c9d26e3ddd8768bfc18e4cd82 linux-3.0/drivers/staging/octeon/cvmx-cmd-queue.c -78822ccbfddb09c30eca9f20d5da692e linux-3.0/drivers/staging/octeon/cvmx-asxx-defs.h -3574c7e5a73a19cefa8fe201341efa50 linux-3.0/drivers/staging/octeon/cvmx-address.h -ca3b1287785d95da9ea2fd9796ad02ff linux-3.0/drivers/staging/octeon/Makefile -ee9730e41b9c0f66ab6711f46bb7236e linux-3.0/drivers/staging/octeon/Kconfig -34a3ccd9550075b5b9725e840098e0ce linux-3.0/drivers/staging/nvec/nvec_ps2.c -d2bcede375c83144e38144868a9b3362 linux-3.0/drivers/staging/nvec/nvec_power.c -f7dedf5eecdc869be24edca53f23a6c1 linux-3.0/drivers/staging/nvec/nvec_kbd.c -e58cba0e9aad1e515ee49671109d522f linux-3.0/drivers/staging/nvec/nvec.h -88ff25c05e8b50e769bda176a5303095 linux-3.0/drivers/staging/nvec/nvec.c -633ec76650a66005fd1914710bae84af linux-3.0/drivers/staging/nvec/nvec-keytable.h -4a2bc15b6aeac06bd5173cb971368a4c linux-3.0/drivers/staging/nvec/TODO -e8b98c2c21f2a814594ce1f7c8cada14 linux-3.0/drivers/staging/nvec/README -280e54cdc8a0b3b5e8c6200d96971f4c linux-3.0/drivers/staging/nvec/Makefile -14d668dd03495017092b835c9c62c58f linux-3.0/drivers/staging/nvec/Kconfig -eb90852a100a26a3f6cba46d651e2c83 linux-3.0/drivers/staging/msm/tvenc.h -6a7f74d4fc2265e427bc7473384705cd linux-3.0/drivers/staging/msm/tvenc.c -65662df7062905c058cc60af9ae27051 linux-3.0/drivers/staging/msm/tv_pal.c -3e28fd48d2ecab6684b5c1cf1648a6d0 linux-3.0/drivers/staging/msm/tv_ntsc.c -6604f416edd8d42967b0b4666349d2cd linux-3.0/drivers/staging/msm/staging-devices.c -0bf0f00ce2fda837fb95dfa4289456b7 linux-3.0/drivers/staging/msm/msm_mdp.h -02e088df63b49ce5485791958e26cd75 linux-3.0/drivers/staging/msm/msm_fb_panel.h -ca360f8c174f715a75ffd6895a0a256a linux-3.0/drivers/staging/msm/msm_fb_panel.c -dade005f34e658f8df61f4c873a4aacc linux-3.0/drivers/staging/msm/msm_fb_def.h -aae00027586b1b9bca70f69267537d47 linux-3.0/drivers/staging/msm/msm_fb_bl.c -c5702d2f693269669ab88a0d2a795d0d linux-3.0/drivers/staging/msm/msm_fb.h -0ee3c3be711d006a17a99af81eeb0541 linux-3.0/drivers/staging/msm/msm_fb.c -bf13da05f7a7338d7d40384032f6b7c3 linux-3.0/drivers/staging/msm/memory_ll.h -447385847e157a4eba855ddc7792f841 linux-3.0/drivers/staging/msm/memory.c -2b564f7ffc95c7599bc2fa2611dbab34 linux-3.0/drivers/staging/msm/mdp_vsync.c -2438ed766f3b7664849f592053eae66c linux-3.0/drivers/staging/msm/mdp_ppp_v31.c -d0bcf9d2bf02b3d56d3e2d2be0c82815 linux-3.0/drivers/staging/msm/mdp_ppp_v20.c -4d76cbcb0b461532bd3b4de188773756 linux-3.0/drivers/staging/msm/mdp_ppp_dq.h -2f63c7743713f2975694f585c15675dd linux-3.0/drivers/staging/msm/mdp_ppp_dq.c -bb74cc307f2aab421ffcbb87c26faa79 linux-3.0/drivers/staging/msm/mdp_ppp.c -1aecb61359b8e4d7decd59b96df54da8 linux-3.0/drivers/staging/msm/mdp_hw_init.c -2085351a03e3bdb975bd3f9e7f3d37d1 linux-3.0/drivers/staging/msm/mdp_dma_tv.c -5fa40726d573ddb6356a78e7ee83f70c linux-3.0/drivers/staging/msm/mdp_dma_s.c -ed9b73e81b1104f93d4442b10fad0517 linux-3.0/drivers/staging/msm/mdp_dma_lcdc.c -79d65bdd08f35195d351c891ca313c99 linux-3.0/drivers/staging/msm/mdp_dma.c -f675bba4683a124c7aff6b854543a5c5 linux-3.0/drivers/staging/msm/mdp_cursor.c -57728a9aecffb1ddc546f6f94c687891 linux-3.0/drivers/staging/msm/mdp4_util.c -f7ddd752ee324b4dc6f37f4c94f417dd linux-3.0/drivers/staging/msm/mdp4_overlay_mddi.c -3017abf88dd66a9d6c94c162215caa0d linux-3.0/drivers/staging/msm/mdp4_overlay_lcdc.c -6262d4f49cc3773d965efcbeab87eba8 linux-3.0/drivers/staging/msm/mdp4_overlay.c -44ce3c654ef65fe558edcaebf17dfe08 linux-3.0/drivers/staging/msm/mdp4_debugfs.c -80e31059d877d2a7431575bc29696de9 linux-3.0/drivers/staging/msm/mdp4.h -339e6aa42bd8127dcc490e697118849b linux-3.0/drivers/staging/msm/mdp.h -d91381d1291238f3d4d93c832f15de8e linux-3.0/drivers/staging/msm/mdp.c -42a518fbbfd138443e90081af5466886 linux-3.0/drivers/staging/msm/mddihosti.h -bbb983968dc7c3f32879c6eb4d5d9cb2 linux-3.0/drivers/staging/msm/mddihosti.c -a7ed20e2f68e42bedf8425f30385f306 linux-3.0/drivers/staging/msm/mddihost_e.c -2a81d93b47e3e664f6020eeef8d6c745 linux-3.0/drivers/staging/msm/mddihost.h -0247602bb23a58b9603689a788f597a2 linux-3.0/drivers/staging/msm/mddihost.c -842cf24d5b5b22663f04507df845dca8 linux-3.0/drivers/staging/msm/mddi_toshiba_wvga_pt.c -92d85ea0e0b0ad5dbe034167f4d8ef0b linux-3.0/drivers/staging/msm/mddi_toshiba_vga.c -5ddbf40afd0531f231ced4611f3f2a2b linux-3.0/drivers/staging/msm/mddi_toshiba.h -d19273cb9764e8d4c075da4851ba2284 linux-3.0/drivers/staging/msm/mddi_toshiba.c -225633ec406fbbbdaf98820280351b07 linux-3.0/drivers/staging/msm/mddi_sharp.c -55b8eb3cd832c2a24cbf238111fa1de0 linux-3.0/drivers/staging/msm/mddi_prism.c -d3e6777170b90303e69434967196e320 linux-3.0/drivers/staging/msm/mddi_ext_lcd.c -ef4d2831bf08d2f9cf2fa45bc91f7d52 linux-3.0/drivers/staging/msm/mddi_ext.c -4a32eab41a90d6be1856b33d7ef748d3 linux-3.0/drivers/staging/msm/mddi.c -09ce34655788d67805bfd32377cfdf28 linux-3.0/drivers/staging/msm/logo.c -a8c378a1185662f09e8d2e6777690712 linux-3.0/drivers/staging/msm/lcdc_toshiba_wvga_pt.c -e32802054e7b0870d3a23c4962b01f9b linux-3.0/drivers/staging/msm/lcdc_st15.c -aa477b43efc8b7789dcc049ed56f2bfe linux-3.0/drivers/staging/msm/lcdc_sharp_wvga_pt.c -524ed8a4b7717febbbf32bb496c8193b linux-3.0/drivers/staging/msm/lcdc_prism.c -d40a19af556bb5f5389bb11acdc60b4d linux-3.0/drivers/staging/msm/lcdc_panel.c -fc01d358d080dfc6e798dc86799ee18b linux-3.0/drivers/staging/msm/lcdc_gordon.c -8faf0877edfad2629dc3db4c323c9950 linux-3.0/drivers/staging/msm/lcdc_external.c -2f88b35cc3eb336864d9163b5bf7cd6a linux-3.0/drivers/staging/msm/lcdc.c -254e6adb91c20f8e18e0fc188e236122 linux-3.0/drivers/staging/msm/hdmi_sii9022.c -8afa356ab869b2cfb017dcc9579f3073 linux-3.0/drivers/staging/msm/ebi2_tmd20.c -a0d1d6554b2e6422c9eccc2ce54a9d15 linux-3.0/drivers/staging/msm/ebi2_lcd.c -02e2fa87269476f63e74e7a07a19a445 linux-3.0/drivers/staging/msm/ebi2_l2f.c -a01b0996294920e9a76a0a39bf2c11a3 linux-3.0/drivers/staging/msm/TODO -ec0bba5071e4920350fbd86c497ee283 linux-3.0/drivers/staging/msm/Makefile -d369757fb1a6d606546d68ef01d5b4ed linux-3.0/drivers/staging/msm/Kconfig -3f46ff20145e5b63f709d5a5b5491c37 linux-3.0/drivers/staging/mei/wd.c -53e993cc0b387b09b3dd33596a2b53ab linux-3.0/drivers/staging/mei/mei_version.h -61a491f98a262543487d2cda05e4d78b linux-3.0/drivers/staging/mei/mei_dev.h -d1b64d93649f0713ae92f66e86f2bbe5 linux-3.0/drivers/staging/mei/mei.txt -8eadd6c4e3c2de9fe7ffe6dcb43847a0 linux-3.0/drivers/staging/mei/mei.h -30f832ef887bbfe6562393cbedca8519 linux-3.0/drivers/staging/mei/main.c -e997c670011c4e6b0cf492de341dfdbe linux-3.0/drivers/staging/mei/iorw.c -7c529746e251f1f86dddf1258743a2e2 linux-3.0/drivers/staging/mei/interrupt.c -1184d620610bd9b39b38afea66fefcc1 linux-3.0/drivers/staging/mei/interface.h -6ed205d11b49e288a1510b37727ab936 linux-3.0/drivers/staging/mei/interface.c -4ad284abdf8c55cb869930f3bd0ff0ba linux-3.0/drivers/staging/mei/init.c -ae61327c09c728b68d62308d313fff3a linux-3.0/drivers/staging/mei/hw.h -b338069b4959c43f788cd07eeec8d6ce linux-3.0/drivers/staging/mei/TODO -c7322a06003b931f1ab295562ff62380 linux-3.0/drivers/staging/mei/Makefile -b18201b65b1bae040391cc66771b71be linux-3.0/drivers/staging/mei/Kconfig -0d17d22b079f2eda83661d96ac2c3fb9 linux-3.0/drivers/staging/lirc/lirc_zilog.c -8034a4c0c8e614a2ff74e6bc02445479 linux-3.0/drivers/staging/lirc/lirc_ttusbir.c -9b34b3c9cc42ffcc3791b4a0c772cc5e linux-3.0/drivers/staging/lirc/lirc_sir.c -e3b5d265a6d26e66d3a40c8775ff684b linux-3.0/drivers/staging/lirc/lirc_serial.c -e6fe6313f65820e3e0afb3fa43c0b08f linux-3.0/drivers/staging/lirc/lirc_sasem.c -527914d49e3453ac3df50efbf1d711b6 linux-3.0/drivers/staging/lirc/lirc_parallel.h -7bfed06b9b641dc8ae1343ea634e17e2 linux-3.0/drivers/staging/lirc/lirc_parallel.c -0a724421eaed67e35d3ad4cc4ae97f09 linux-3.0/drivers/staging/lirc/lirc_imon.c -219f4f5fe4dbca54d925b6a60c2f1448 linux-3.0/drivers/staging/lirc/lirc_igorplugusb.c -1a3f031a50cc6cb03d1022a8c1dafef2 linux-3.0/drivers/staging/lirc/lirc_ene0100.h -0c4a2f155c5acc6b1b8c096feaafac8a linux-3.0/drivers/staging/lirc/lirc_bt829.c -35d47302163b0a4befe5b39ccd8b9773 linux-3.0/drivers/staging/lirc/TODO.lirc_zilog -6f6f8e90dee3fc24d04aeba0d7593e2c linux-3.0/drivers/staging/lirc/TODO -9495a1a752ec6ed349c5b2be1911552a linux-3.0/drivers/staging/lirc/Makefile -cc32f95578a3d372d1acc1f7331407f1 linux-3.0/drivers/staging/lirc/Kconfig -e6fc81b7b60a3fbca0e82913d12b5811 linux-3.0/drivers/staging/line6/variax.h -77f404f6cce3b7dc7b82a800eaa21d53 linux-3.0/drivers/staging/line6/variax.c -63439e98c8b31ca08448ba4de5e80339 linux-3.0/drivers/staging/line6/usbdefs.h -3135bada58fd3d11a17678bf5dac8e43 linux-3.0/drivers/staging/line6/toneport.h -a6e41ca5e1c3fc14a47984e937bb56db linux-3.0/drivers/staging/line6/toneport.c -a1fd13256210952ccf5baaadaf39d998 linux-3.0/drivers/staging/line6/revision.h -396fafb2aa6501155e47224c026d2fc3 linux-3.0/drivers/staging/line6/pod.h -a5cce9061150b875d98a44378dbb3372 linux-3.0/drivers/staging/line6/pod.c -5b804b06a0554a751cde8ea1aa7cfea7 linux-3.0/drivers/staging/line6/playback.h -07dd8922d42500932849e8827b0227c1 linux-3.0/drivers/staging/line6/playback.c -8cbe4ed6f101462092ce6a7fc0ca9685 linux-3.0/drivers/staging/line6/pcm.h -a05c75cca623ba5cf5d962c5d13be9c2 linux-3.0/drivers/staging/line6/pcm.c -028acbe76c9c8c8b954efddff90c95da linux-3.0/drivers/staging/line6/midibuf.h -46f958ecd49f1530eaa4c79c68d9bc6a linux-3.0/drivers/staging/line6/midibuf.c -4f19e8d4a2023ccc9d95bcf21d923663 linux-3.0/drivers/staging/line6/midi.h -91e971171a76dbc297fd4cd5bc4caa99 linux-3.0/drivers/staging/line6/midi.c -e124020f0d4ee8a380779e97baf17839 linux-3.0/drivers/staging/line6/dumprequest.h -018696d05e57b75f172bd8b9f2026d6a linux-3.0/drivers/staging/line6/dumprequest.c -239bb52ab5b430d7b2498b72c20a2d29 linux-3.0/drivers/staging/line6/driver.h -85802ad2e4b6772b892c992f7c9fb90d linux-3.0/drivers/staging/line6/driver.c -93413af16a4fb12c382dab269aa19491 linux-3.0/drivers/staging/line6/control.h -4a64ce04bf13cbafbde37e7c8b85fb4d linux-3.0/drivers/staging/line6/control.c -820ce1650cc8971cfaad43c6c1e09248 linux-3.0/drivers/staging/line6/config.h -3656279b2793b976dd7b34bf7b49357a linux-3.0/drivers/staging/line6/capture.h -00ec145f7845e8db23807ca1d0b5ed3e linux-3.0/drivers/staging/line6/capture.c -a2fe658c89337ee97d7181c031bc8cab linux-3.0/drivers/staging/line6/audio.h -6daeb7110a26bb7071208298b28cdd12 linux-3.0/drivers/staging/line6/audio.c -fde0c6836110e5606632ea87026b840a linux-3.0/drivers/staging/line6/Makefile -f3248d99c4d26a4b1276bd0b87992fc5 linux-3.0/drivers/staging/line6/Kconfig -19becf390152802b094d4b8540db4934 linux-3.0/drivers/staging/keucr/usb.h -df9276c5f509758f804d47b0c32e7b7b linux-3.0/drivers/staging/keucr/usb.c -2325bb31bfeaf6156ecb9e579a7697f1 linux-3.0/drivers/staging/keucr/transport.h -62702f3c3ac16f2e7709687f204014cc linux-3.0/drivers/staging/keucr/transport.c -7f345031bdf2a2089349158130de8126 linux-3.0/drivers/staging/keucr/smscsi.c -96639eea80df077efde80a1daed15c30 linux-3.0/drivers/staging/keucr/smilsub.c -9a9ddef423307aa98c8d4dc244664d81 linux-3.0/drivers/staging/keucr/smilmain.c -3b116f332963aa4d89bb20082165fabe linux-3.0/drivers/staging/keucr/smilecc.c -bf51e980e30a522fa3f19e74c0cde2b4 linux-3.0/drivers/staging/keucr/smil.h -0e4994fb715a3caa07990a2fe125423e linux-3.0/drivers/staging/keucr/smcommon.h -c695ac1aacdb7d3930315a1e9b694ab5 linux-3.0/drivers/staging/keucr/scsiglue.h -a637d2b52cd3ac50dd4914ea60152d7e linux-3.0/drivers/staging/keucr/scsiglue.c -da066de2d8c4777c6a04252494a91444 linux-3.0/drivers/staging/keucr/msscsi.c -8213efcbceef4e50c3dfdec6a48a4438 linux-3.0/drivers/staging/keucr/ms.h -946d06234ca910e6e97effbee3ca8281 linux-3.0/drivers/staging/keucr/ms.c -c3f03f9f13fe1d95699fae0a34919a9a linux-3.0/drivers/staging/keucr/init.h -7fd564ded98da06c3c1fae37cf09b6c1 linux-3.0/drivers/staging/keucr/init.c -bb15303353909c391e9c1f13334d9fb8 linux-3.0/drivers/staging/keucr/common.h -ad0c685b1a4e3757b2639cee7c745127 linux-3.0/drivers/staging/keucr/TODO -9bd3f658a71e423c9cacf99f118e84ef linux-3.0/drivers/staging/keucr/Makefile -447af0a48d70e597b9968c75c469f15a linux-3.0/drivers/staging/keucr/Kconfig -8805be3efcd3ea3c3ca23fbc53667d85 linux-3.0/drivers/staging/intel_sst/intelmid_v2_control.c -8c6e9439e2c12a21b13d52d4957bbb9e linux-3.0/drivers/staging/intel_sst/intelmid_v1_control.c -67ccef684c694ae5dd56616b1eb59054 linux-3.0/drivers/staging/intel_sst/intelmid_v0_control.c -850eb5d0369c08bf2c379f47637b5a51 linux-3.0/drivers/staging/intel_sst/intelmid_snd_control.h -d18eb287a9e8c5f21caa2daf3ce94004 linux-3.0/drivers/staging/intel_sst/intelmid_pvt.c -b3dcba22d01565e55f6bd309378aa8e8 linux-3.0/drivers/staging/intel_sst/intelmid_msic_control.c -7662d07c49ee787908928a80c8d2a756 linux-3.0/drivers/staging/intel_sst/intelmid_ctrl.c -a3f835223367db74050893ba7b7f664e linux-3.0/drivers/staging/intel_sst/intelmid_adc_control.h -89369d235ae433e365a29d2495c39a8b linux-3.0/drivers/staging/intel_sst/intelmid.h -5676f52b6832668355c6bfafe2664bbb linux-3.0/drivers/staging/intel_sst/intelmid.c -a642a04127334aef6b7e84b10db1f2c4 linux-3.0/drivers/staging/intel_sst/intel_sst_stream_encoded.c -2f1626d9100dbef3df30ae427b2236e1 linux-3.0/drivers/staging/intel_sst/intel_sst_stream.c -9615d2e5a584fc75fd323b72f9269d4a linux-3.0/drivers/staging/intel_sst/intel_sst_pvt.c -400f2b7ac96c3a792dfd495a9998aa60 linux-3.0/drivers/staging/intel_sst/intel_sst_ipc.c -a2ff01b3628f1223a593df9c093e6420 linux-3.0/drivers/staging/intel_sst/intel_sst_ioctl.h -2259a930caefd14f10832f403aa21cea linux-3.0/drivers/staging/intel_sst/intel_sst_fw_ipc.h -62314f2d446f2838b93987b0a497a779 linux-3.0/drivers/staging/intel_sst/intel_sst_dsp.c -2e104549f965504771c78ade3ce0981e linux-3.0/drivers/staging/intel_sst/intel_sst_drv_interface.c -1bc100dac83eb5363d4711dc62317ae4 linux-3.0/drivers/staging/intel_sst/intel_sst_common.h -d1997b83498d0d8c5267bd750c8eb511 linux-3.0/drivers/staging/intel_sst/intel_sst_app_interface.c -e62efa87c96b803d84617b6d49e195c7 linux-3.0/drivers/staging/intel_sst/intel_sst.h -35c2429b03e39179e7f30acbea4b2181 linux-3.0/drivers/staging/intel_sst/intel_sst.c -bcfe5fc34a504146ba3734fb1c336661 linux-3.0/drivers/staging/intel_sst/TODO -fe198f52c7e873b23bac8df24043f524 linux-3.0/drivers/staging/intel_sst/Makefile -cf30b6e4aa70a6f3628595bdc36d2fa7 linux-3.0/drivers/staging/intel_sst/Kconfig -bbae26da3f074ee828962a4b52e839dd linux-3.0/drivers/staging/iio/trigger_consumer.h -aceccb480f9ce7b4681a463f5c7b58ef linux-3.0/drivers/staging/iio/trigger/iio-trig-sysfs.c -d388e0623da36a24fb6d21d6f2564dea linux-3.0/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c -3319f2cd7dd50843a9b8a830c5f4dbf2 linux-3.0/drivers/staging/iio/trigger/iio-trig-gpio.c -45ab8524051af3d91fc5e43f3b66397d linux-3.0/drivers/staging/iio/trigger/iio-trig-bfin-timer.c -cef4964df6f65a6d206abc03e4fe3c59 linux-3.0/drivers/staging/iio/trigger/Makefile -044f34691176b2ae2038ed6b15583d66 linux-3.0/drivers/staging/iio/trigger/Kconfig -c77f90422cba00137246b197bcd03a04 linux-3.0/drivers/staging/iio/trigger.h -12ab31f7d46e22106face9897a789bfd linux-3.0/drivers/staging/iio/sysfs.h -3ba3d73bf774b0a1119d49e4d75d9e05 linux-3.0/drivers/staging/iio/ring_sw.h -d5574a67f5075703a666ba213eff3589 linux-3.0/drivers/staging/iio/ring_sw.c -a4ad6962d0527f02754e0ff1c34a9213 linux-3.0/drivers/staging/iio/ring_hw.h -752a3947dfd947b7ee2c7f4640ab6ed7 linux-3.0/drivers/staging/iio/ring_generic.h -a4c5d420f8706db6eb5715c6569d251d linux-3.0/drivers/staging/iio/resolver/ad2s90.c -08960cf4f3c681dde42b6b59e21593c4 linux-3.0/drivers/staging/iio/resolver/ad2s1210.c -a03a88b6a23ec57cd6df129d315bd469 linux-3.0/drivers/staging/iio/resolver/ad2s120x.c -bc4113ca75e08a65f384f388ec1cfe99 linux-3.0/drivers/staging/iio/resolver/Makefile -e4e7e48d829efa2d62008ff2ed28ce54 linux-3.0/drivers/staging/iio/resolver/Kconfig -136e7662757eb71430d8166f2a8c6c68 linux-3.0/drivers/staging/iio/meter/meter.h -a30edaff139832eada4716ec0c2b43a1 linux-3.0/drivers/staging/iio/meter/ade7854.h -d9ce21e6bbb9f8941de9f3dfbf9cea90 linux-3.0/drivers/staging/iio/meter/ade7854.c -5b6dc70c193516948d937c1598b7308d linux-3.0/drivers/staging/iio/meter/ade7854-spi.c -982aa8767cc354a13753210b7eedb951 linux-3.0/drivers/staging/iio/meter/ade7854-i2c.c -2f5821f7e479f523ef9ce30b0472feea linux-3.0/drivers/staging/iio/meter/ade7759.h -69d8e7001e5aa4c9118aca68a913548c linux-3.0/drivers/staging/iio/meter/ade7759.c -773de67c9ae8ebef558944de88ef987f linux-3.0/drivers/staging/iio/meter/ade7758_trigger.c -13fadeba60a641a3f419248a7ede472c linux-3.0/drivers/staging/iio/meter/ade7758_ring.c -769f58db2e79ab0c828c63189f7b4bc5 linux-3.0/drivers/staging/iio/meter/ade7758_core.c -972f67ff9b169ffe642332f3255a5931 linux-3.0/drivers/staging/iio/meter/ade7758.h -bb12c0cc24d99d0149f3e5c14c90012b linux-3.0/drivers/staging/iio/meter/ade7754.h -800450a79aa298bb2c220f4c76a589d0 linux-3.0/drivers/staging/iio/meter/ade7754.c -587e4ec9502e5727f3de89a0e551bd51 linux-3.0/drivers/staging/iio/meter/ade7753.h -1925f362b9df04728be5b36f96859db2 linux-3.0/drivers/staging/iio/meter/ade7753.c -13200dafb7c0f539a4408d91870b30e2 linux-3.0/drivers/staging/iio/meter/Makefile -845c3887f494ce9703d6caf0d4fe0ed6 linux-3.0/drivers/staging/iio/meter/Kconfig -425fa7b8e4fe46619b3728fb9329a43c linux-3.0/drivers/staging/iio/magnetometer/magnet.h -220c00c06ad6de6142252b5799ca3888 linux-3.0/drivers/staging/iio/magnetometer/hmc5843.c -22c474ce07689e90f0ef43082e72c905 linux-3.0/drivers/staging/iio/magnetometer/ak8975.c -ecc7d887aa100fc1b052df473b7a0391 linux-3.0/drivers/staging/iio/magnetometer/Makefile -fb63df559e47a2868040227107d24080 linux-3.0/drivers/staging/iio/magnetometer/Kconfig -9c5aae6e58708e932e7e4b59ef50a64f linux-3.0/drivers/staging/iio/light/tsl2583.c -0bee9677d4562e23091b4991b75bb766 linux-3.0/drivers/staging/iio/light/tsl2563.h -9eca54cac556d7fd5d33794b7788c68d linux-3.0/drivers/staging/iio/light/tsl2563.c -22b718009f5f36381ac02729c916111a linux-3.0/drivers/staging/iio/light/isl29018.c -af0932b4a91e1175350657528428c654 linux-3.0/drivers/staging/iio/light/Makefile -df7d453ce00ef502dc7f79baa30038f2 linux-3.0/drivers/staging/iio/light/Kconfig -f588a059ac29cf16ec78b0a73c05294b linux-3.0/drivers/staging/iio/kfifo_buf.h -6475b7133b5391b393a11e42be8dd213 linux-3.0/drivers/staging/iio/kfifo_buf.c -22f4317727a5729e18d03acbd1bb9a19 linux-3.0/drivers/staging/iio/industrialio-trigger.c -2aaac9e37a30e0996c1cb493953c2f5a linux-3.0/drivers/staging/iio/industrialio-ring.c -c0b929c1b0ca74dd0fa8ea0aaddbf7aa linux-3.0/drivers/staging/iio/industrialio-core.c -f1b139ffc602708bc2e6c7ae6c19dbb4 linux-3.0/drivers/staging/iio/imu/adis16400_trigger.c -ebe83c06c760c81dad4c42331d76c4ca linux-3.0/drivers/staging/iio/imu/adis16400_ring.c -efc9f8958021ab6d8cbc2248a4e2c69e linux-3.0/drivers/staging/iio/imu/adis16400_core.c -3ce84908aa7247cefd494c45a9174784 linux-3.0/drivers/staging/iio/imu/adis16400.h -cfec72b1056f46bee73e1069d87276e1 linux-3.0/drivers/staging/iio/imu/Makefile -221225e9c9fafcc5fcaacda00d7d3a59 linux-3.0/drivers/staging/iio/imu/Kconfig -fbd7ac58b67e23072a5431672f30c5a5 linux-3.0/drivers/staging/iio/iio.h -453af51436452e753e938abb4f81fff5 linux-3.0/drivers/staging/iio/gyro/gyro.h -75e33e246bd195d1b7933c79aaa8ea03 linux-3.0/drivers/staging/iio/gyro/adxrs450_core.c -2d6013541527f6fe015f5ea706a755aa linux-3.0/drivers/staging/iio/gyro/adxrs450.h -821f1e899269f988f39e4cd35137ed96 linux-3.0/drivers/staging/iio/gyro/adis16260_trigger.c -40cf6b6250b1e5691a7b1a3b0eba02c7 linux-3.0/drivers/staging/iio/gyro/adis16260_ring.c -11a5e4abfe0c3209b5508f44884e2e69 linux-3.0/drivers/staging/iio/gyro/adis16260_platform_data.h -bc6d330012d3ba4a61a7cc0a6de5e1cf linux-3.0/drivers/staging/iio/gyro/adis16260_core.c -ef358a476343a5bea2266a67c818b810 linux-3.0/drivers/staging/iio/gyro/adis16260.h -624d44eb1674a6801c95b5f56c93e0fa linux-3.0/drivers/staging/iio/gyro/adis16130_core.c -4feaf8020670fdb5478baeee5c04c3fa linux-3.0/drivers/staging/iio/gyro/adis16080_core.c -f02301c3091491b4460ae6eb6c31179b linux-3.0/drivers/staging/iio/gyro/adis16060_core.c -d8d653b6dac97a13941ca8bd378018e0 linux-3.0/drivers/staging/iio/gyro/Makefile -3d945ce41cb42d7743a62fcef54d0df4 linux-3.0/drivers/staging/iio/gyro/Kconfig -1e362ee3a2e24683ddf31acfc812a5ac linux-3.0/drivers/staging/iio/dds/dds.h -6c55edcfac711b6f752a7087bee3873e linux-3.0/drivers/staging/iio/dds/ad9951.c -f7576e6cd9b5722ab3a750cf743d8336 linux-3.0/drivers/staging/iio/dds/ad9910.c -62216ffe17706113f7449d26287627cc linux-3.0/drivers/staging/iio/dds/ad9852.c -44c9607492501543f51fcff0f89458e8 linux-3.0/drivers/staging/iio/dds/ad9850.c -d78909f0ea9356be03b44ac8f05b9d54 linux-3.0/drivers/staging/iio/dds/ad9834.h -cec93dfe9526daa608da3c694a2814b0 linux-3.0/drivers/staging/iio/dds/ad9834.c -426f418a71b9bfa17f82c685b9b5a945 linux-3.0/drivers/staging/iio/dds/ad9832.h -b92990517e8d87be2ec0d496e8369081 linux-3.0/drivers/staging/iio/dds/ad9832.c -e917ef6b748a307a93131d24d6e7bfb1 linux-3.0/drivers/staging/iio/dds/ad5930.c -90384368c587b3c19d8e10e59db02676 linux-3.0/drivers/staging/iio/dds/Makefile -9e74cc5edf4d9a43200afc932372e448 linux-3.0/drivers/staging/iio/dds/Kconfig -3fc1396f7d712a95e5d738dd43f2e5b5 linux-3.0/drivers/staging/iio/dac/max517.h -8104d79af01653cb7293814326eb1379 linux-3.0/drivers/staging/iio/dac/max517.c -e57f5951c19bf0ef31e449d3cb802ae6 linux-3.0/drivers/staging/iio/dac/dac.h -168cb3c7fbeb1bf7c17ca581f9f5665e linux-3.0/drivers/staging/iio/dac/ad5791.h -62e6dad2016eb7b64dac504b281c8b20 linux-3.0/drivers/staging/iio/dac/ad5791.c -2507a592ff0fbfa96070853988556f92 linux-3.0/drivers/staging/iio/dac/ad5624r_spi.c -e9521a080b35f3071ee93ef3219405f0 linux-3.0/drivers/staging/iio/dac/ad5624r.h -1348f2a6ae5c8f964aea197b87963387 linux-3.0/drivers/staging/iio/dac/ad5504.h -6ea815484e9591e44a838b9d86315b9a linux-3.0/drivers/staging/iio/dac/ad5504.c -c236483164f12959e0441826bea416a0 linux-3.0/drivers/staging/iio/dac/ad5446.h -04f57593263b2ed3e1328a556ca6f810 linux-3.0/drivers/staging/iio/dac/ad5446.c -f2c15eb5045ba8d4725e3b1bc337f330 linux-3.0/drivers/staging/iio/dac/Makefile -f510b54656ba47191853e9c24a1679f3 linux-3.0/drivers/staging/iio/dac/Kconfig -4ee014e2837777b3a47585dbf6fcabe7 linux-3.0/drivers/staging/iio/chrdev.h -21e029544220f41a9221e9d46ece4349 linux-3.0/drivers/staging/iio/addac/adt7316.h -67f5fb66e236f1d316630ea599995121 linux-3.0/drivers/staging/iio/addac/adt7316.c -13484eec0955312ac08b585504574282 linux-3.0/drivers/staging/iio/addac/adt7316-spi.c -18acfcde1caffc272dbda9f868f864c1 linux-3.0/drivers/staging/iio/addac/adt7316-i2c.c -1a0ca2ab598e544291695907cc6c90db linux-3.0/drivers/staging/iio/addac/Makefile -d7e5751da3c980a7ca08f34792781e64 linux-3.0/drivers/staging/iio/addac/Kconfig -d121b13ce3867a0ab013d5fbe7b0622e linux-3.0/drivers/staging/iio/adc/max1363_ring.c -f2315a7f24908cea688bd831ccba67ba linux-3.0/drivers/staging/iio/adc/max1363_core.c -170be2bcbc0defaa2bc46f4df32ffb73 linux-3.0/drivers/staging/iio/adc/max1363.h -2f0c7c24d32acf97783140b86b65e5de linux-3.0/drivers/staging/iio/adc/adt75.c -e8bb49c3c5c7e86e84470e6776d4d236 linux-3.0/drivers/staging/iio/adc/adt7410.c -cae5ef72c1b07255b336b7c0eff74630 linux-3.0/drivers/staging/iio/adc/adt7310.c -2b810d324c490d878cf2cd707fdba18b linux-3.0/drivers/staging/iio/adc/adc.h -8338129c959f420531e3f41750dbb7c1 linux-3.0/drivers/staging/iio/adc/ad799x_ring.c -5936666a8ce2e152dba98a1e7092214d linux-3.0/drivers/staging/iio/adc/ad799x_core.c -e23c2ee9f5601d4d207882740d94946c linux-3.0/drivers/staging/iio/adc/ad799x.h -82cec690ad7d427fec10b4082d639368 linux-3.0/drivers/staging/iio/adc/ad7887_ring.c -4800fd18cfc0d5da560d046d4aca07af linux-3.0/drivers/staging/iio/adc/ad7887_core.c -8b3dedaa698d7f05d5cf9146be24aede linux-3.0/drivers/staging/iio/adc/ad7887.h -f725ad9746b1b34b43ca51d550b82ca5 linux-3.0/drivers/staging/iio/adc/ad7816.c -8837c8ae43bbe672f8cd27e73d4d0453 linux-3.0/drivers/staging/iio/adc/ad7780.h -8f2b67b6930f941ebbfabf1cbb4bd9ad linux-3.0/drivers/staging/iio/adc/ad7780.c -a1a45113c5ff2621c583f668f3896476 linux-3.0/drivers/staging/iio/adc/ad7745.c -0ad291710ca621f135a85a82137d37a5 linux-3.0/drivers/staging/iio/adc/ad7606_spi.c -bffc725ef2865f126d5f8a585794bfc2 linux-3.0/drivers/staging/iio/adc/ad7606_ring.c -2ca24371ab8b0162a261d68517409e82 linux-3.0/drivers/staging/iio/adc/ad7606_par.c -574ddeecb5ae96574f6552dee483d176 linux-3.0/drivers/staging/iio/adc/ad7606_core.c -cfb7f33c2a088eefcf4a16fce3a625f9 linux-3.0/drivers/staging/iio/adc/ad7606.h -8c7379a4de81c2d507e804a3b372107d linux-3.0/drivers/staging/iio/adc/ad7476_ring.c -c8b7a947de67005fc0e963790f00d0ad linux-3.0/drivers/staging/iio/adc/ad7476_core.c -e9c41c177016a09b8f67bb7a0538ed73 linux-3.0/drivers/staging/iio/adc/ad7476.h -f0b8ec5a701309210b5a1d4d019d83ef linux-3.0/drivers/staging/iio/adc/ad7314.c -f28babde16a53c3c61d19252ecfb2719 linux-3.0/drivers/staging/iio/adc/ad7298_ring.c -3f66139d28db277e2edd65095b6c0397 linux-3.0/drivers/staging/iio/adc/ad7298_core.c -6711074d6e5e9f3d0782321564fe533d linux-3.0/drivers/staging/iio/adc/ad7298.h -1ba0afc78ab808aa0b639e09a559038f linux-3.0/drivers/staging/iio/adc/ad7291.c -383de25f4aa174c9d3e1d9cda7f53d9b linux-3.0/drivers/staging/iio/adc/ad7152.c -0fa50b21e8826e1197c06cdaedaea3ab linux-3.0/drivers/staging/iio/adc/ad7150.c -a3bd8e2d4f73ac38887955e04f9c6cbf linux-3.0/drivers/staging/iio/adc/Makefile -e8a1a343b14b46f398fdcd6935e77efd linux-3.0/drivers/staging/iio/adc/Kconfig -c8bdc2c32641c9c7bef6f3c356978e2b linux-3.0/drivers/staging/iio/accel/sca3000_ring.c -05581f1ae65d1ff83c446e689079ab58 linux-3.0/drivers/staging/iio/accel/sca3000_core.c -96255c0619755eaf6f0b4df873bd60f6 linux-3.0/drivers/staging/iio/accel/sca3000.h -153ca0b5ffa5929ac626aec2a80b3832 linux-3.0/drivers/staging/iio/accel/lis3l02dq_ring.c -9bdeef8171e2c29f4a2ffa2cb495facc linux-3.0/drivers/staging/iio/accel/lis3l02dq_core.c -b39068ee9754febe664616e1ea48931a linux-3.0/drivers/staging/iio/accel/lis3l02dq.h -b43c807ece3376039cc626d60bf92db5 linux-3.0/drivers/staging/iio/accel/kxsd9.c -5fc313ca928e642a419934fed29f4309 linux-3.0/drivers/staging/iio/accel/inclinometer.h -79b397fa819efe9152cfdef3ea40de64 linux-3.0/drivers/staging/iio/accel/adis16240_trigger.c -8f87dddbcda45d2e3144c17f9860129f linux-3.0/drivers/staging/iio/accel/adis16240_ring.c -e6d2f492c9ea429ce0f44d046c9e026b linux-3.0/drivers/staging/iio/accel/adis16240_core.c -d9a148de4848b49a5df2cba89a16782d linux-3.0/drivers/staging/iio/accel/adis16240.h -fb4b7721151ab7455def93e361a365b1 linux-3.0/drivers/staging/iio/accel/adis16220_core.c -515def29b2abd1158eb7a2fb2e72e734 linux-3.0/drivers/staging/iio/accel/adis16220.h -a8591a3cea0d23bb34c65f447c9413be linux-3.0/drivers/staging/iio/accel/adis16209_trigger.c -7492e07e123783877486c553be28cec4 linux-3.0/drivers/staging/iio/accel/adis16209_ring.c -95170a2de7ddfa1e889554414d663a0b linux-3.0/drivers/staging/iio/accel/adis16209_core.c -94f97ba50425c1bde0543e2cc30d92d9 linux-3.0/drivers/staging/iio/accel/adis16209.h -26cd5f269ec87677d5a75858b22404b4 linux-3.0/drivers/staging/iio/accel/adis16204_trigger.c -942776890851381e16a5d7126f4419d0 linux-3.0/drivers/staging/iio/accel/adis16204_ring.c -22d0480e9d5508c61ab560c61bcc719e linux-3.0/drivers/staging/iio/accel/adis16204_core.c -c55774e1d127282c46461db09b2435a6 linux-3.0/drivers/staging/iio/accel/adis16204.h -9034b4b33eb71ae73561366732c6b0cb linux-3.0/drivers/staging/iio/accel/adis16203_trigger.c -88c19749eabe8f6d0ea1f6f59ff2518c linux-3.0/drivers/staging/iio/accel/adis16203_ring.c -25cf9bd6da6fd36f6a84e6b73f357bb8 linux-3.0/drivers/staging/iio/accel/adis16203_core.c -164ef909754a023ba313655314ade118 linux-3.0/drivers/staging/iio/accel/adis16203.h -f73c127bba5cd99b3bb20ddb6d6599ec linux-3.0/drivers/staging/iio/accel/adis16201_trigger.c -669f2277283e3e69fe40006c4d859192 linux-3.0/drivers/staging/iio/accel/adis16201_ring.c -54c286d9fba27a4e40eded4a03320c1c linux-3.0/drivers/staging/iio/accel/adis16201_core.c -01b16a0b7889a6c5b3e04d0146292d9a linux-3.0/drivers/staging/iio/accel/adis16201.h -9d8f1da0c546ead1913ca5c5f0367fa3 linux-3.0/drivers/staging/iio/accel/accel.h -50205dcd3b66db83f2d8278b04369eb9 linux-3.0/drivers/staging/iio/accel/Makefile -c9b2c96cb215ff89e243faaf3d5aa493 linux-3.0/drivers/staging/iio/accel/Kconfig -b632b806fec9bf5e780772fbd7fb2ef4 linux-3.0/drivers/staging/iio/TODO -fa58a43c83e681537f93657bebeb8346 linux-3.0/drivers/staging/iio/Makefile -80784024653c7b3d65bb8a66367d4c54 linux-3.0/drivers/staging/iio/Kconfig -152c04c57d85a9275a028bef9137e9d5 linux-3.0/drivers/staging/iio/Documentation/trigger.txt -3973afe73c73ed346187eee6f09f68eb linux-3.0/drivers/staging/iio/Documentation/sysfs-bus-iio-trigger-sysfs -821abeed72d29b44379f967a5af080f5 linux-3.0/drivers/staging/iio/Documentation/sysfs-bus-iio-light-tsl2583 -74bd5535611ee0df166f5b53e31172e0 linux-3.0/drivers/staging/iio/Documentation/sysfs-bus-iio-light -0af996e77859101d38e8ebf24e374990 linux-3.0/drivers/staging/iio/Documentation/sysfs-bus-iio-dds -0ea2ec52711a263316fb4247ffecaa97 linux-3.0/drivers/staging/iio/Documentation/sysfs-bus-iio -7a30d90d8728e20319869554520f82e9 linux-3.0/drivers/staging/iio/Documentation/ring.txt -fabcc383d2f88c2f8658d3da69c74c52 linux-3.0/drivers/staging/iio/Documentation/overview.txt -1c89164881a7c1f7cd448aa7e8460f2f linux-3.0/drivers/staging/iio/Documentation/iio_utils.h -06627d9a78d1d18e5c3f6b6d94ceadb0 linux-3.0/drivers/staging/iio/Documentation/generic_buffer.c -0c0f882f29b708efbd61b19a8dee9bf3 linux-3.0/drivers/staging/iio/Documentation/device.txt -ee12181430260c19f7fe5eda139562fa linux-3.0/drivers/staging/iio/Documentation/dac/max517 -39821657e46df23666836aa35077f547 linux-3.0/drivers/staging/hv/vmbus_drv.c -cd1d1152a3a1a52ed3c7466d9f3e4467 linux-3.0/drivers/staging/hv/tools/hv_kvp_daemon.c -0099f5ae6b9207561294fe9dbf643934 linux-3.0/drivers/staging/hv/storvsc_drv.c -23da7385b0f25d5f2609b87ef2d83abf linux-3.0/drivers/staging/hv/storvsc.c -c0b0fc4128cdfde69b5f9f70a5e6e18b linux-3.0/drivers/staging/hv/rndis_filter.c -adeb173d48151d55779fcacbf9f0de2d linux-3.0/drivers/staging/hv/ring_buffer.c -461a76540d795b25e1111178b734daef linux-3.0/drivers/staging/hv/netvsc_drv.c -bde53c252f5d5c18065f891d292725f6 linux-3.0/drivers/staging/hv/netvsc.c -d5eb216886d7d5b0a3c3ab62acc46800 linux-3.0/drivers/staging/hv/hyperv_vmbus.h -5dddd8a845353b4dac53efefeda515cf linux-3.0/drivers/staging/hv/hyperv_storage.h -427967c6c0f585ef71ccab228f50fc61 linux-3.0/drivers/staging/hv/hyperv_net.h -de3b34c7123c8e0ca8256916fbd8db9c linux-3.0/drivers/staging/hv/hyperv.h -0295fcbf8942590b29167798f6a82cda linux-3.0/drivers/staging/hv/hv_util.c -6f8a33a33e085780b04b2a58f92f6c2a linux-3.0/drivers/staging/hv/hv_timesource.c -da85d2a0184fc1e305a080cfd930ebdb linux-3.0/drivers/staging/hv/hv_mouse.c -47ca8af2f4bfa9571ce64c8aa977f790 linux-3.0/drivers/staging/hv/hv_kvp.h -2228926730f80f3a96db1cbe1c981eb8 linux-3.0/drivers/staging/hv/hv_kvp.c -12413e83ef3ca3035f40c77ec1e9f048 linux-3.0/drivers/staging/hv/hv.c -6a17b29f5279aff7ab2203afe646a562 linux-3.0/drivers/staging/hv/connection.c -05723766429d7a2a3e37d2fb58fa1be6 linux-3.0/drivers/staging/hv/channel_mgmt.c -a43c40b1ec9e9c4d54d858b41db3e015 linux-3.0/drivers/staging/hv/channel.c -a853b534805b31d6a18d9fb45a91b4ed linux-3.0/drivers/staging/hv/blkvsc_drv.c -e9d68bd1444a91a55ba41951966e4d0d linux-3.0/drivers/staging/hv/TODO -9b34cf67fe7d63fc710e23d5461bcec2 linux-3.0/drivers/staging/hv/Makefile -7923f440c00be073306a2419f686ac2c linux-3.0/drivers/staging/hv/Kconfig -f9a4ed3bdd6e456477b6c7ab060facd3 linux-3.0/drivers/staging/go7007/wis-uda1342.c -aad936632c726e6d708079e1f7fd087c linux-3.0/drivers/staging/go7007/wis-tw9903.c -cfd6dbfa95fae1252980f43a6144e616 linux-3.0/drivers/staging/go7007/wis-tw2804.c -32bb98ea8c840cfd6666276c9b47c1fe linux-3.0/drivers/staging/go7007/wis-sony-tuner.c -3432c195ca60c84d4953a6054656197f linux-3.0/drivers/staging/go7007/wis-saa7115.c -921fcc2020aef646cf9f793411dff019 linux-3.0/drivers/staging/go7007/wis-saa7113.c -fd21629a38c83e72105dbd82aa344a28 linux-3.0/drivers/staging/go7007/wis-ov7640.c -05890cae6be5ef5b5cd750bf9e292b5a linux-3.0/drivers/staging/go7007/wis-i2c.h -c944a6caca49e282044ccf3372ca5bba linux-3.0/drivers/staging/go7007/snd-go7007.c -6803978c6a1a5d5c47ea33d2e91716f4 linux-3.0/drivers/staging/go7007/saa7134-go7007.c -fd8a62617bac38d518ddee5e06622226 linux-3.0/drivers/staging/go7007/s2250-loader.h -9096df421ffcc9b642459723698b5c30 linux-3.0/drivers/staging/go7007/s2250-loader.c -5b91231a722b646e6f773b3a52bc816d linux-3.0/drivers/staging/go7007/s2250-board.c -8c8278bf0f82dc4fb0fae1ffc236a054 linux-3.0/drivers/staging/go7007/go7007.txt -49574d016d59cb8fb7a5fa325f78f5ed linux-3.0/drivers/staging/go7007/go7007.h -a642278b08e51a7ff7d3147cfc35be41 linux-3.0/drivers/staging/go7007/go7007-v4l2.c -b8f4c1463caa145354cae20f39c1c10e linux-3.0/drivers/staging/go7007/go7007-usb.c -057d608ba51b6f13a5b7665584a4eaf5 linux-3.0/drivers/staging/go7007/go7007-priv.h -103c404fe9948f1bfc28956c660a36cf linux-3.0/drivers/staging/go7007/go7007-i2c.c -e5137d541f8e64b45f678179ed8b8f9a linux-3.0/drivers/staging/go7007/go7007-fw.c -e8c5e1cb08f060b36abea21bba940664 linux-3.0/drivers/staging/go7007/go7007-driver.c -07fbdb41a07e5851eca2476689a5d0fb linux-3.0/drivers/staging/go7007/README -dbc3cd1e901c650cbfc73f3da64f73e3 linux-3.0/drivers/staging/go7007/Makefile -3cc75141c52b93fbfdea0c970e6a2135 linux-3.0/drivers/staging/go7007/Kconfig -20f941108a890d745d031ccb614e8750 linux-3.0/drivers/staging/gma500/psb_reg.h -03d9296546133beb57676a41c930c829 linux-3.0/drivers/staging/gma500/psb_powermgmt.h -8423d9e3e31c852e89189666770610e8 linux-3.0/drivers/staging/gma500/psb_powermgmt.c -6920297197810f9e4dc120d0d5fc1af9 linux-3.0/drivers/staging/gma500/psb_mmu.c -dddca25c8333f1580d24bafc1b65e90d linux-3.0/drivers/staging/gma500/psb_lid.c -346c4231d3119e28cf3d8343ddbbd478 linux-3.0/drivers/staging/gma500/psb_irq.h -800fb0ae463776039c76015f917a6b67 linux-3.0/drivers/staging/gma500/psb_irq.c -74a74cc636c42500efdf85d95c5ef64e linux-3.0/drivers/staging/gma500/psb_intel_sdvo_regs.h -01afac34b39d177ea4dae7b5570a4c64 linux-3.0/drivers/staging/gma500/psb_intel_sdvo.c -f7d7664be8f95058fd50e25833508a24 linux-3.0/drivers/staging/gma500/psb_intel_reg.h -021dd28d0d9e92a332eebd338dbc86ba linux-3.0/drivers/staging/gma500/psb_intel_opregion.c -f2dc8e42062ba71a811e87e22d890a79 linux-3.0/drivers/staging/gma500/psb_intel_modes.c -c94570ad66807180eee96b4e56eb76cb linux-3.0/drivers/staging/gma500/psb_intel_lvds.c -875d0b353e3457887f66246d5a2d87e3 linux-3.0/drivers/staging/gma500/psb_intel_i2c.c -8ce52a74c705297ec9131b626ca373f0 linux-3.0/drivers/staging/gma500/psb_intel_drv.h -51355f7da2858198ceb17ca98e8dacbf linux-3.0/drivers/staging/gma500/psb_intel_display.h -03e552107d87ef38a7fb44f3d7c453fe linux-3.0/drivers/staging/gma500/psb_intel_display.c -55a678774910c21a522dc28f8d6d6d63 linux-3.0/drivers/staging/gma500/psb_intel_bios.h -eebb09499ddde5983ddd6a11292b391b linux-3.0/drivers/staging/gma500/psb_intel_bios.c -cb89872dbf43fb23587cd53ccbdc172d linux-3.0/drivers/staging/gma500/psb_gtt.h -8fde704dc3b279cd1b0fe94d72b4e5e5 linux-3.0/drivers/staging/gma500/psb_gtt.c -058cd5308be7b9bb80bcec5c29e0a38f linux-3.0/drivers/staging/gma500/psb_gem.c -0d16a743e1c26e3e0ca2adcf9d3403d2 linux-3.0/drivers/staging/gma500/psb_fb.h -3e4d0cc1ac2fb7921a34cf851f4b6d5f linux-3.0/drivers/staging/gma500/psb_fb.c -30f9b86a74b871551362e0203cdc7bd8 linux-3.0/drivers/staging/gma500/psb_drv.h -a8c434aa0cdaebacbacc9183feda7478 linux-3.0/drivers/staging/gma500/psb_drv.c -d2822f31024e4d8ed1fa2a7d98806c6a linux-3.0/drivers/staging/gma500/psb_drm.h -b16a6f1c97aa5612c611835330b06b82 linux-3.0/drivers/staging/gma500/psb_bl.c -04312a96d03890ed9c72464f51e16aa8 linux-3.0/drivers/staging/gma500/psb_2d.c -d3ad5438b6da806041f031ca28765615 linux-3.0/drivers/staging/gma500/mrst_lvds.c -822bf9ca1824be409e351c3668c96510 linux-3.0/drivers/staging/gma500/mrst_crtc.c -7e4efc5e5f07a52788576b5e0ba9995e linux-3.0/drivers/staging/gma500/mrst.h -6be7a7ea56b55d0d1bb084084e3796da linux-3.0/drivers/staging/gma500/TODO -da8fb318b301d56b84148cdbf6f19cbd linux-3.0/drivers/staging/gma500/Makefile -c94bbcaf6afcf7f4f341432c690e020c linux-3.0/drivers/staging/gma500/Kconfig -4da51b20d6290b37cd5855f76065683b linux-3.0/drivers/staging/generic_serial/vme_scc.c -f9334b5c9a3e1a1bc88e1094fbe0a65a linux-3.0/drivers/staging/generic_serial/sxwindow.h -f0d3b3b4336ef132f6c70be88a335388 linux-3.0/drivers/staging/generic_serial/sxboards.h -7a20296a5aee9b6abc9d5520cea1ca98 linux-3.0/drivers/staging/generic_serial/sx.h -e8cd794e43aa9ee7e7556af42bc45e00 linux-3.0/drivers/staging/generic_serial/sx.c -b280dd4a7b2560b3ad2ab704032c885d linux-3.0/drivers/staging/generic_serial/ser_a2232fw.h -f71126dac3d774e972095bd159bb1e30 linux-3.0/drivers/staging/generic_serial/ser_a2232fw.ax -913781ac987cbcf5f3d4ccbc3b2f3a4e linux-3.0/drivers/staging/generic_serial/ser_a2232.h -05d3da9a07f40a06207b7f92bd956a8d linux-3.0/drivers/staging/generic_serial/ser_a2232.c -4ab323011549557e48be79355cecddf3 linux-3.0/drivers/staging/generic_serial/rio/unixrup.h -0328cd3f92283d21238718c1760c4cc1 linux-3.0/drivers/staging/generic_serial/rio/rup.h -ad28faca982fcabff29cb93f145525e3 linux-3.0/drivers/staging/generic_serial/rio/route.h -c4c7ab9e47f9a05cdb0b5e1ffe585c8e linux-3.0/drivers/staging/generic_serial/rio/riotty.c -b04d90058549670ad7c9eaa5197d7ff2 linux-3.0/drivers/staging/generic_serial/rio/riotable.c -f3b0303700221200a5cd68c1e965fa80 linux-3.0/drivers/staging/generic_serial/rio/riospace.h -82f6e56452fff4e8fcb307b34135dfbc linux-3.0/drivers/staging/generic_serial/rio/rioroute.c -3531cc0b8b0dfd6b209a3a1dedee515e linux-3.0/drivers/staging/generic_serial/rio/rioparam.c -e5404388a0aa55ab9a77f4193b5d2b4d linux-3.0/drivers/staging/generic_serial/rio/rioioctl.h -ea1042165d9cfe46dddf31ae4d8caa26 linux-3.0/drivers/staging/generic_serial/rio/riointr.c -af150abbb7b0c4c009da0bd513eeb4d3 linux-3.0/drivers/staging/generic_serial/rio/rioinit.c -87289f312e495b838d063405cbef3b44 linux-3.0/drivers/staging/generic_serial/rio/rioinfo.h -74ded7727ada8c56610fbd3e497bce84 linux-3.0/drivers/staging/generic_serial/rio/riodrvr.h -f8d2d601fe56cb594484be81381066bc linux-3.0/drivers/staging/generic_serial/rio/rioctrl.c -4bf163563eb9088a53735715798dbcbf linux-3.0/drivers/staging/generic_serial/rio/riocmd.c -91b0550881593348b77d06dd9a9f64b1 linux-3.0/drivers/staging/generic_serial/rio/rioboot.c -88785a82615afe3d34e5709decff119f linux-3.0/drivers/staging/generic_serial/rio/rioboard.h -4848801f638a9d2d711771f9f7d54a0e linux-3.0/drivers/staging/generic_serial/rio/rio_linux.h -37c41b0f91d95c902ba2ac690b6282be linux-3.0/drivers/staging/generic_serial/rio/rio_linux.c -18142e2e309b645e6cd2f964ece5c525 linux-3.0/drivers/staging/generic_serial/rio/rio.h -d801ce20c983621b95b5b40753fb42cb linux-3.0/drivers/staging/generic_serial/rio/protsts.h -1d833ab613538ed1969855fa59762aae linux-3.0/drivers/staging/generic_serial/rio/port.h -00fdc67b72d7d2eb063ca230c7408357 linux-3.0/drivers/staging/generic_serial/rio/pkt.h -114a9c82221e98e6532cb6448106ab6a linux-3.0/drivers/staging/generic_serial/rio/phb.h -cd9e22060ed5a451a9d5bd1f540a11b8 linux-3.0/drivers/staging/generic_serial/rio/pci.h -f443913a81f62f8e718eab0d87541d02 linux-3.0/drivers/staging/generic_serial/rio/parmmap.h -36e94f6212f7f245206bd2f8e0b6999d linux-3.0/drivers/staging/generic_serial/rio/param.h -0a31aa40a8816b57a33bd8dfa46ae1d2 linux-3.0/drivers/staging/generic_serial/rio/map.h -946dd95f8066c591cac5ba907116b841 linux-3.0/drivers/staging/generic_serial/rio/linux_compat.h -394dbf16bb3479697b1927afa2812c02 linux-3.0/drivers/staging/generic_serial/rio/link.h -d16586f3e5bf2e806576b5f814f67fe3 linux-3.0/drivers/staging/generic_serial/rio/host.h -b0ca4e570c5cbc2879c44150fab913ca linux-3.0/drivers/staging/generic_serial/rio/func.h -84538dc2650c5259a79ac6e9de66140e linux-3.0/drivers/staging/generic_serial/rio/errors.h -b30607629d7ef6f744492110fc473276 linux-3.0/drivers/staging/generic_serial/rio/daemon.h -061af20338e4995a27278e01ee1209b1 linux-3.0/drivers/staging/generic_serial/rio/cmdpkt.h -62d11c3e10e6cce83b3f31e8327ae2cd linux-3.0/drivers/staging/generic_serial/rio/cmdblk.h -5595755b5d923d82be1845946a4fed4d linux-3.0/drivers/staging/generic_serial/rio/cirrus.h -7bfb65cdf030203d3745693c544b1dee linux-3.0/drivers/staging/generic_serial/rio/board.h -1a711bf14a020be19a3833df161b62bb linux-3.0/drivers/staging/generic_serial/rio/Makefile -acdfcf293cebd8ededccb08fd4ea5aca linux-3.0/drivers/staging/generic_serial/generic_serial.c -231e28c6afb94c06afeb1026ab92efb0 linux-3.0/drivers/staging/generic_serial/TODO -7bac085d0cb306b4f7835905067ca42d linux-3.0/drivers/staging/generic_serial/Makefile -80662144cecb4a7bafc6737ed39a8c7f linux-3.0/drivers/staging/generic_serial/Kconfig -89bf1d1c6b52ee8117e3f3123dfc8fc6 linux-3.0/drivers/staging/ft1000/ft1000-usb/ft3000.img -a4aa3609d7549ededd4fe4e123c66d2b linux-3.0/drivers/staging/ft1000/ft1000-usb/ft1000_usb.h -5e61ec14c0cba9536702798f76427a2e linux-3.0/drivers/staging/ft1000/ft1000-usb/ft1000_usb.c -2fbf073a5a5df0ca9df57922e7399c6f linux-3.0/drivers/staging/ft1000/ft1000-usb/ft1000_proc.c -55b9a34636f11c6397282d1fe096aa0e linux-3.0/drivers/staging/ft1000/ft1000-usb/ft1000_ioctl.h -77103f650c2f2e3a94e9c99e6285d51c linux-3.0/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c -683f8fb97e3a1cb793d3cb2e0c20bc87 linux-3.0/drivers/staging/ft1000/ft1000-usb/ft1000_download.c -0a5738ecd1ef2876d1dde1ab437db009 linux-3.0/drivers/staging/ft1000/ft1000-usb/ft1000_debug.c -68a599d59e8263653ee4deb85f1d41e5 linux-3.0/drivers/staging/ft1000/ft1000-usb/Makefile -e9ac49d57875a6ddfc014a1adbd5801c linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/ft1000_proc.c -8851b19a78d12a53c7e573870176f459 linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c -d4a62fd0f3754c1ea92447d44e44b29d linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/ft1000_dnld.c -bc2c9fc7ae6bb5f33dce28b5b44a05ba linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/ft1000_dev.h -400763c34a156dda7f0b0817f14ba8ad linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/ft1000_cs.c -15027cb01c2dcbd26b90efbae3d61088 linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/ft1000.img -a6e4dc5c65fa01a7ae67013c84279346 linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/ft1000.h -a17f98113f6d16a53127a9bfaf6b5031 linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/ft1000.conf -6cda5ca238801000c7c8ebb56774f299 linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/boot.h -295194da13c7fa5d0c47dc2a44699b89 linux-3.0/drivers/staging/ft1000/ft1000-pcmcia/Makefile -5ee5c4a0f0cbfa917ce7bc50fd9708e7 linux-3.0/drivers/staging/ft1000/TODO -a7fcda226087c45a33b1919ea9d14531 linux-3.0/drivers/staging/ft1000/Makefile -c832c5f5cb501c819c25abf2c31e4a25 linux-3.0/drivers/staging/ft1000/Kconfig -9c697f30bf7e4d069eca5ac0c8bcc5be linux-3.0/drivers/staging/frontier/tranzport.c -9867c4e5ce8f20a030fb0a7c25859646 linux-3.0/drivers/staging/frontier/alphatrack.h -077bd1230eef8f0992257f5d2d2a49b3 linux-3.0/drivers/staging/frontier/alphatrack.c -692299dc5c7ed20593c69a3e11c292be linux-3.0/drivers/staging/frontier/TODO -a518aa9b38d6031b9d45d323a4a9ef21 linux-3.0/drivers/staging/frontier/README -0a96f6c4db67d3d55fcc69371bf5e5d6 linux-3.0/drivers/staging/frontier/Makefile -fad419c94809c14ec7567f653357e422 linux-3.0/drivers/staging/frontier/Kconfig -bb504667d74e1639e227538326f6b47b linux-3.0/drivers/staging/et131x/et131x_version.h -889e93a43a928d3ef8c909de33d45286 linux-3.0/drivers/staging/et131x/et131x_netdev.c -cb410a3ad82a9843e1288d2e1706a12e linux-3.0/drivers/staging/et131x/et131x_isr.c -1acc63aa93faa80c4e9d4035cec807cc linux-3.0/drivers/staging/et131x/et131x_initpci.c -446e4304db8d853828a778931d6ebb2d linux-3.0/drivers/staging/et131x/et131x_defs.h -58137aa994f453b436b64676288fdcb8 linux-3.0/drivers/staging/et131x/et131x_adapter.h -bd6e308930c52d0f45a7aa6daf782fc1 linux-3.0/drivers/staging/et131x/et131x.h -8dc15729380fb994ffc0508b34c9e3a0 linux-3.0/drivers/staging/et131x/et1310_tx.h -56b89fedd8cb4c815597c9ebadc9d362 linux-3.0/drivers/staging/et131x/et1310_tx.c -05df6e4018d6b40aa90dee55b1b0f8be linux-3.0/drivers/staging/et131x/et1310_rx.h -1a2e670867e889a2c9b73d414b26253d linux-3.0/drivers/staging/et131x/et1310_rx.c -4d353c6a0054d973eec880a2612262de linux-3.0/drivers/staging/et131x/et1310_pm.c -4739da6ac80e18888917aa87db0c3e57 linux-3.0/drivers/staging/et131x/et1310_phy.h -591c75827ed8c90c43e02a09ff0131fc linux-3.0/drivers/staging/et131x/et1310_phy.c -72d7f08192e6ce68fb53287d338feb2a linux-3.0/drivers/staging/et131x/et1310_mac.c -72987ff820b35bd607f59b6e5463acc8 linux-3.0/drivers/staging/et131x/et1310_eeprom.c -5694551e12c2e56652127cfc01295339 linux-3.0/drivers/staging/et131x/et1310_address_map.h -1b87ecff18b49281c3f7819932c62767 linux-3.0/drivers/staging/et131x/README -f7067add0bafdfde3a118b7b2f6c2527 linux-3.0/drivers/staging/et131x/Makefile -d738d705af2cb5adf975469fa3ff2a5b linux-3.0/drivers/staging/et131x/Kconfig -73edb9517569292b598437cca7c48f3e linux-3.0/drivers/staging/echo/oslec.h -2f64182a73f71efc5dd790db3078f8f5 linux-3.0/drivers/staging/echo/fir.h -4f1d2d72bbe8b9ca69f24041c25a3bce linux-3.0/drivers/staging/echo/echo.h -7b5faf5cf303616e9659ad8edb25d13c linux-3.0/drivers/staging/echo/echo.c -60d4f008b67e33a09b9c0205600696e5 linux-3.0/drivers/staging/echo/TODO -0c7e244ea35e3e8750529d87deda6d07 linux-3.0/drivers/staging/echo/Makefile -4e4deefd96d0adcde040cd612ef165e9 linux-3.0/drivers/staging/echo/Kconfig -693ddab303f0a7a059fb6a818508114b linux-3.0/drivers/staging/easycap/easycap_testcard.c -73121be98a6db40b142e8ad55bd5295c linux-3.0/drivers/staging/easycap/easycap_sound_oss.c -6ec609971ca7d38e9746a2098806c021 linux-3.0/drivers/staging/easycap/easycap_sound.c -5c5151ca1b214d93663c8a9322d32659 linux-3.0/drivers/staging/easycap/easycap_settings.c -d20dd6e7d62bc7fe098db821121d599a linux-3.0/drivers/staging/easycap/easycap_main.c -2dd891193211cd100df805ce3fe94154 linux-3.0/drivers/staging/easycap/easycap_low.c -2cb180afb4a9e06d6410f92334887be4 linux-3.0/drivers/staging/easycap/easycap_ioctl.c -7ceac24ad288e5997dd87437983e4111 linux-3.0/drivers/staging/easycap/easycap.h -86f8218af63e404e42cc0a81b500ea41 linux-3.0/drivers/staging/easycap/README -0d2783771ee2f639a3131295b8fc746e linux-3.0/drivers/staging/easycap/Makefile -afde053869c341f736a6d2f86da7cac0 linux-3.0/drivers/staging/easycap/Kconfig -54fc3e501e148cf0233dad8757c0f298 linux-3.0/drivers/staging/dt3155v4l/dt3155v4l.h -7a487851deb86579c8f74048e1517c33 linux-3.0/drivers/staging/dt3155v4l/dt3155v4l.c -ff0b113efc90c0419d0f0815c1a955bd linux-3.0/drivers/staging/dt3155v4l/Makefile -36506731298fa576a51641a4176aaa80 linux-3.0/drivers/staging/dt3155v4l/Kconfig -ff995a90a9ec61764f904e466650a6d3 linux-3.0/drivers/staging/cxt1e1/sbew_ioc.h -b45dd2a57c51471b8e1598ea137ef8da linux-3.0/drivers/staging/cxt1e1/sbeproc.h -5ede279b04d3e149715f759ee42eee6c linux-3.0/drivers/staging/cxt1e1/sbeproc.c -51fa69508e31e33194267746cdc441da linux-3.0/drivers/staging/cxt1e1/sbeid.c -d7804ea94d7c1be10ef8d4198a54b2f2 linux-3.0/drivers/staging/cxt1e1/sbecrc.c -5e35debe19c6bc957ccd8b8aea74eb63 linux-3.0/drivers/staging/cxt1e1/sbecom_inline_linux.h -bcb631e7e858b8f5d36c4c89859133c7 linux-3.0/drivers/staging/cxt1e1/sbe_promformat.h -a180275c162c68031f05018b8bffa8bb linux-3.0/drivers/staging/cxt1e1/sbe_bid.h -4037e9ec4e04e505ee7c9372540f0577 linux-3.0/drivers/staging/cxt1e1/pmcc4_sysdep.h -30a142bfab94e9cb5fb0fffd11cc6901 linux-3.0/drivers/staging/cxt1e1/pmcc4_private.h -b3148f396af87a67b545b2953a7ba29e linux-3.0/drivers/staging/cxt1e1/pmcc4_ioctls.h -c494914bacd04dea200a7b23a4e870c7 linux-3.0/drivers/staging/cxt1e1/pmcc4_drv.c -243141ab6fe2941247c906fed10b9508 linux-3.0/drivers/staging/cxt1e1/pmcc4_defs.h -6f2cce740cdfdc75a1c28160fea25f6f linux-3.0/drivers/staging/cxt1e1/pmcc4_cpld.h -f40367f7b7dcc8e5a72a38bcfd386601 linux-3.0/drivers/staging/cxt1e1/pmcc4.h -b3f1247ba113520ae7d857a85bccdf6c linux-3.0/drivers/staging/cxt1e1/pmc93x6_eeprom.h -d2949618480dfbd51e5cb69c090b9de1 linux-3.0/drivers/staging/cxt1e1/pmc93x6_eeprom.c -0f13a04fe96e98894fc96f6388289db5 linux-3.0/drivers/staging/cxt1e1/ossiRelease.c -e36cc8f52cba6857540b992273f6b60f linux-3.0/drivers/staging/cxt1e1/musycc.h -32de819c7d8dd92380e34a3c10e66ca9 linux-3.0/drivers/staging/cxt1e1/musycc.c -1060c870a1ea810c6ea3b0e3cb4b46d2 linux-3.0/drivers/staging/cxt1e1/linux.c -c6430edb2793d2d4ec2c953c35e628a2 linux-3.0/drivers/staging/cxt1e1/libsbew.h -114c1e19f61bb98feb6f2617e212cea7 linux-3.0/drivers/staging/cxt1e1/hwprobe.c -c008b399aa6a8dc4501591a6d653968d linux-3.0/drivers/staging/cxt1e1/functions.c -2af6a52e574327cf02fe27b6cc049a27 linux-3.0/drivers/staging/cxt1e1/comet_tables.h -650ae104c509a890326fca4957e4fe40 linux-3.0/drivers/staging/cxt1e1/comet_tables.c -33b2a0597d7bc06135466a371db20196 linux-3.0/drivers/staging/cxt1e1/comet.h -bdfd7762aa62e3e3ccd384c8f85ffe26 linux-3.0/drivers/staging/cxt1e1/comet.c -272c0593e95ca233d6159822f882a5f4 linux-3.0/drivers/staging/cxt1e1/Makefile -cefc4a9f3b92e487d8421a0d566b13dc linux-3.0/drivers/staging/cxt1e1/Kconfig -a8975615e2efb111e5c08e53739468a8 linux-3.0/drivers/staging/cxd2099/cxd2099.h -c39cdd9efca046cb292a2216b0c5ccef linux-3.0/drivers/staging/cxd2099/cxd2099.c -a1ee7685be0c8098c25830701bf53d7e linux-3.0/drivers/staging/cxd2099/TODO -9aed6d4eeba1819b49c56e88814cb15a linux-3.0/drivers/staging/cxd2099/Makefile -9415be7bb8f272be845c3cefede7e4ad linux-3.0/drivers/staging/cxd2099/Kconfig -91d19827383741c60c2f381e1a8159d6 linux-3.0/drivers/staging/cx25821/cx25821.h -efeda35a85c792f7b85597acc3777889 linux-3.0/drivers/staging/cx25821/cx25821-video.h -888682955d89c25107fdd77c079cf392 linux-3.0/drivers/staging/cx25821/cx25821-video.c -7dd51aaf65c2d5433bd809ffbdea3c69 linux-3.0/drivers/staging/cx25821/cx25821-video-upstream.h -193dbf42b0bfd3245ae3cbee76fd8e97 linux-3.0/drivers/staging/cx25821/cx25821-video-upstream.c -48f6f0da7a6b9da23db99f7345978bde linux-3.0/drivers/staging/cx25821/cx25821-video-upstream-ch2.h -6a65aa294c529ed8dab07bd9ec21cc3b linux-3.0/drivers/staging/cx25821/cx25821-video-upstream-ch2.c -bfce3facf0eca56a32e12de1dcac13cb linux-3.0/drivers/staging/cx25821/cx25821-sram.h -da9b9d7a6a1bcd7be452ea6403895f80 linux-3.0/drivers/staging/cx25821/cx25821-reg.h -c531e14d511bebb0b2579dc30acfa3e4 linux-3.0/drivers/staging/cx25821/cx25821-medusa-video.h -4a9ca0c706dd2697e4406c810e8afdff linux-3.0/drivers/staging/cx25821/cx25821-medusa-video.c -e5c7e12f3015374db98d974d9225ab9b linux-3.0/drivers/staging/cx25821/cx25821-medusa-reg.h -24fbb4302ec0b7b6b50bf1238fbfb2e2 linux-3.0/drivers/staging/cx25821/cx25821-medusa-defines.h -c6b0c3d91cbf2216d5fba8f36290232f linux-3.0/drivers/staging/cx25821/cx25821-i2c.c -29939c68980565346b99137bbb98190f linux-3.0/drivers/staging/cx25821/cx25821-gpio.h -107a056275fd146cc38ba0929eced07f linux-3.0/drivers/staging/cx25821/cx25821-gpio.c -96db64a70cea779ea5d11cd7c394960c linux-3.0/drivers/staging/cx25821/cx25821-core.c -c36c6e971438631eb8ad0de01654300e linux-3.0/drivers/staging/cx25821/cx25821-cards.c -370d0b233643891e1f445173d23c119b linux-3.0/drivers/staging/cx25821/cx25821-biffuncs.h -d1a9f8ffd5685cffb2586ee39a156b6a linux-3.0/drivers/staging/cx25821/cx25821-audio.h -2089b32da47a00d453e3aac85defb1b2 linux-3.0/drivers/staging/cx25821/cx25821-audio-upstream.h -267fc3f24ec1718ba983f7103fdcd513 linux-3.0/drivers/staging/cx25821/cx25821-audio-upstream.c -866d22c031af5ff62d53ea81370777b9 linux-3.0/drivers/staging/cx25821/cx25821-alsa.c -5e9fdb7e5168ac38192f7f518484bd02 linux-3.0/drivers/staging/cx25821/README -2c755df7db8b67a683df65c35a0049c3 linux-3.0/drivers/staging/cx25821/Makefile -1c9694604ae35b22ea3df591945d6c13 linux-3.0/drivers/staging/cx25821/Kconfig -52a77cefd047177bb2835263e34854f0 linux-3.0/drivers/staging/cs5535_gpio/cs5535_gpio.c -992bc4f138ce5cc6f84326288636f16a linux-3.0/drivers/staging/cs5535_gpio/TODO -4f8f05d914e46b0491d5fe825e52a6b2 linux-3.0/drivers/staging/cs5535_gpio/Makefile -c173bfe72c2e26949915d0b63cc7d21e linux-3.0/drivers/staging/cs5535_gpio/Kconfig -232a3ca3e854b72d87fa5ca35a1cda7d linux-3.0/drivers/staging/crystalhd/crystalhd_misc.h -c6a65cd2c5852e043cd34ad40e267611 linux-3.0/drivers/staging/crystalhd/crystalhd_misc.c -40fb027a911d62918627aa3ac76b1cf1 linux-3.0/drivers/staging/crystalhd/crystalhd_lnx.h -a0ca5220e92600ed9c70e121525af958 linux-3.0/drivers/staging/crystalhd/crystalhd_lnx.c -fadd9b3722bd6f302d404b09292be3e6 linux-3.0/drivers/staging/crystalhd/crystalhd_hw.h -4d4d7590cd3b9fb2268ece9abb73e813 linux-3.0/drivers/staging/crystalhd/crystalhd_hw.c -ac6439685250efc61bfcfe105d0aae4a linux-3.0/drivers/staging/crystalhd/crystalhd_fw_if.h -17d5f00be8419089ec52255aa017d9aa linux-3.0/drivers/staging/crystalhd/crystalhd_cmds.h -781d8625683f787373bc89fa549a6a48 linux-3.0/drivers/staging/crystalhd/crystalhd_cmds.c -0c303a3abf1f9ae7b3dd9d77f2d51160 linux-3.0/drivers/staging/crystalhd/bcm_70012_regs.h -ea58c501aff8c2c272e288bc6d7a79ab linux-3.0/drivers/staging/crystalhd/bc_dts_types.h -70e376310671be700c7fba70efc7e2d2 linux-3.0/drivers/staging/crystalhd/bc_dts_glob_lnx.h -647b9d3fce13c71742062f10c252ca52 linux-3.0/drivers/staging/crystalhd/bc_dts_defs.h -d9b0c74af1d7bb05783be67b6dfdd577 linux-3.0/drivers/staging/crystalhd/TODO -a3cbf5b3cda2f32a356d11a480dd6399 linux-3.0/drivers/staging/crystalhd/Makefile -1e68bdf968069c00cb056ff4da702513 linux-3.0/drivers/staging/crystalhd/Kconfig -fd247c1c5c4b8b85429db0d132398dd8 linux-3.0/drivers/staging/cptm1217/cp_tm1217.h -5e7350e4ce1801fd33fcc8827fe90991 linux-3.0/drivers/staging/cptm1217/clearpad_tm1217.c -03308c27d674e1534a33d249c8c91d8a linux-3.0/drivers/staging/cptm1217/TODO -3fd3c7d55d0b9124ddff0df5013ec11b linux-3.0/drivers/staging/cptm1217/Makefile -f4a43923e6ef84b5595310521263e971 linux-3.0/drivers/staging/cptm1217/Kconfig -c1ab9ef766ace7dc618bbd336d3d7d07 linux-3.0/drivers/staging/comedi/range.c -b09abfa0c27861bb4e6928d9474e293a linux-3.0/drivers/staging/comedi/proc.c -0218de3781fb2b1cec4586325cb54371 linux-3.0/drivers/staging/comedi/kcomedilib/kcomedilib_main.c -c9248fb9b2096b65eb1b8026709ce296 linux-3.0/drivers/staging/comedi/kcomedilib/Makefile -af4a678a46d2eff02672309ffbaff46b linux-3.0/drivers/staging/comedi/internal.h -862443611f8fb10ec63ead2b0a40d53d linux-3.0/drivers/staging/comedi/drivers/vmk80xx.c -ac0e5c7058fe2c6edeeffced80a5a04e linux-3.0/drivers/staging/comedi/drivers/usbduxfast.c -f3f2de63d23cd7aaadb982320ccde1d5 linux-3.0/drivers/staging/comedi/drivers/usbdux.c -d2770848457cb0ce1d00dbe963db30e7 linux-3.0/drivers/staging/comedi/drivers/unioxx5.c -ed1d9ac2e71f4189e48ec72b9b5468ad linux-3.0/drivers/staging/comedi/drivers/ssv_dnp.c -1d286039f7a4b0c6d57a8963b6ff5380 linux-3.0/drivers/staging/comedi/drivers/skel.c -bfb8ccb1cd68e7d3f0cdabd52d3aab83 linux-3.0/drivers/staging/comedi/drivers/serial2002.c -1f533aa0fb9ddd948b5e9232097c4249 linux-3.0/drivers/staging/comedi/drivers/s626.h -98224d4dabbda58ed49bdab52a6df433 linux-3.0/drivers/staging/comedi/drivers/s626.c -6f4f88b3e4077854364f90961fdce3f2 linux-3.0/drivers/staging/comedi/drivers/s526.c -0bd4df3c885f3d858186e4e0736b443f linux-3.0/drivers/staging/comedi/drivers/rti802.c -d59611337ec01842a59e1e733c6cb816 linux-3.0/drivers/staging/comedi/drivers/rti800.c -9217f6d3cd2bad743e5e79d73ba5154a linux-3.0/drivers/staging/comedi/drivers/rtd520.h -6bf93c7d8aaa2ba3a1dcd0449f45e5a3 linux-3.0/drivers/staging/comedi/drivers/rtd520.c -dbed903ad0790bf6affbace375bb36a2 linux-3.0/drivers/staging/comedi/drivers/quatech_daqp_cs.c -4d5288a5fd9f5f2703f805c1c2b0ea73 linux-3.0/drivers/staging/comedi/drivers/poc.c -cf51f68bbb72bbc67d2c905c832b1cbc linux-3.0/drivers/staging/comedi/drivers/plx9080.h -22fc6f210cfba63125701663a8d7d20d linux-3.0/drivers/staging/comedi/drivers/plx9052.h -72dace3134dddb59c1b5cbbe9ed39717 linux-3.0/drivers/staging/comedi/drivers/pcmuio.c -3fc6d0121bc8a5da805ba51435a275b5 linux-3.0/drivers/staging/comedi/drivers/pcmmio.c -da3c477e5b5a21d4c28dc4fc265faac5 linux-3.0/drivers/staging/comedi/drivers/pcmda12.c -36e45ff83bafab3fa208dd1d7ff21a6e linux-3.0/drivers/staging/comedi/drivers/pcmad.c -ffe76bc5fbf6ea0e1c76f80a89f5c9dc linux-3.0/drivers/staging/comedi/drivers/pcm_common.h -ed7c13d6b3dcf1aef24e6523a4d1bdbe linux-3.0/drivers/staging/comedi/drivers/pcm_common.c -cc390383326597c53b3d3a3e5e50129b linux-3.0/drivers/staging/comedi/drivers/pcm3730.c -62a670d8c9d47ebfa58df3a462cb1a68 linux-3.0/drivers/staging/comedi/drivers/pcm3724.c -28d25949d9e65939312fe0afbc981c1d linux-3.0/drivers/staging/comedi/drivers/pcl818.c -883c23330eec05bde89e493bb9f07a43 linux-3.0/drivers/staging/comedi/drivers/pcl816.c -9963e8a530941eb03274549a85da6218 linux-3.0/drivers/staging/comedi/drivers/pcl812.c -06194e98d29da2066477768c890ad9f1 linux-3.0/drivers/staging/comedi/drivers/pcl730.c -2784360500731e9959998e958c32b6fe linux-3.0/drivers/staging/comedi/drivers/pcl726.c -d83f0632dbb63bb9c35f84814385d4e4 linux-3.0/drivers/staging/comedi/drivers/pcl725.c -28fce50237c789a721cf97f866f0a075 linux-3.0/drivers/staging/comedi/drivers/pcl724.c -6a437655d2839bab6ccb24c72d4673d3 linux-3.0/drivers/staging/comedi/drivers/pcl711.c -3a2b5c0117c45df313911afedf6c0d70 linux-3.0/drivers/staging/comedi/drivers/ni_tiocmd.c -5d054f7bb920db9885745b2af45cceda linux-3.0/drivers/staging/comedi/drivers/ni_tio_internal.h -9d79b0725232afedb941d049b5bbe1cb linux-3.0/drivers/staging/comedi/drivers/ni_tio.h -34c0d75f33a9caea8072e866cc3d14d1 linux-3.0/drivers/staging/comedi/drivers/ni_tio.c -767873788885949ec974be08da8b5845 linux-3.0/drivers/staging/comedi/drivers/ni_stc.h -3796352938aaecb179c10d30586c86fa linux-3.0/drivers/staging/comedi/drivers/ni_pcimio.c -dd02965832b7aadc40837617bd2d1852 linux-3.0/drivers/staging/comedi/drivers/ni_pcidio.c -401d1fb124ce67bbb8ab3e03594246ca linux-3.0/drivers/staging/comedi/drivers/ni_mio_cs.c -c44039260f42b06fffd172846b247bbb linux-3.0/drivers/staging/comedi/drivers/ni_mio_common.c -eac34087a024dd3561925d38d55252dd linux-3.0/drivers/staging/comedi/drivers/ni_labpc_cs.c -70c5615ec91f91aca9073f9b2300a06e linux-3.0/drivers/staging/comedi/drivers/ni_labpc.h -5b3ed7ecd75c02253f4020c0b5cd467d linux-3.0/drivers/staging/comedi/drivers/ni_labpc.c -a62d9b95aaf57324d4285c17889a1813 linux-3.0/drivers/staging/comedi/drivers/ni_daq_dio24.c -50fb7779f79a09f3a148abffc83fac48 linux-3.0/drivers/staging/comedi/drivers/ni_daq_700.c -86623a78b4e960dd6a2ddf25e35566f7 linux-3.0/drivers/staging/comedi/drivers/ni_atmio16d.c -f2131cbcd1c19489d329fea6d8da184d linux-3.0/drivers/staging/comedi/drivers/ni_atmio.c -3fa651b24e921c2e60f6e8136fd4a705 linux-3.0/drivers/staging/comedi/drivers/ni_at_ao.c -0d136db12974db81040e88b241132f58 linux-3.0/drivers/staging/comedi/drivers/ni_at_a2150.c -f6a24abba8bc7a1654a32cdb3ab88374 linux-3.0/drivers/staging/comedi/drivers/ni_670x.c -cb6511a197afae118db58a756b2b2ac4 linux-3.0/drivers/staging/comedi/drivers/ni_660x.c -21dc6a007aaaad372b650d69244b4644 linux-3.0/drivers/staging/comedi/drivers/ni_65xx.c -33565b6bb311c9893f327b1155226093 linux-3.0/drivers/staging/comedi/drivers/ni_6527.c -0811fab610b33e32a2c4fa36dbbe85ec linux-3.0/drivers/staging/comedi/drivers/multiq3.c -4b1bc98102e1e06f9699a7e67c7ba3b4 linux-3.0/drivers/staging/comedi/drivers/mpc8260cpm.c -b9a625efe25a4ac5243dee0ec3e94d05 linux-3.0/drivers/staging/comedi/drivers/mpc624.c -0d78fd4c5a7da8b604e857dbad921346 linux-3.0/drivers/staging/comedi/drivers/mite.h -f4d0ea69ae7b7fe4fe061ba938165627 linux-3.0/drivers/staging/comedi/drivers/mite.c -dbe1973355dedb5fadf99002a4d3942d linux-3.0/drivers/staging/comedi/drivers/me_daq.c -b67badb07556283385d93791124b2274 linux-3.0/drivers/staging/comedi/drivers/me4000.h -51ad1fa7331d44dcab8b1598ca424352 linux-3.0/drivers/staging/comedi/drivers/me4000.c -bb2e48457a6931283611cb352a71e1f6 linux-3.0/drivers/staging/comedi/drivers/ke_counter.c -8881e65ca31596a94e73c6a586b23837 linux-3.0/drivers/staging/comedi/drivers/jr3_pci.h -ce4ceeb43a2fcc36ff0913df66f2b9fd linux-3.0/drivers/staging/comedi/drivers/jr3_pci.c -829a451397ffdece9a605ce0e6456412 linux-3.0/drivers/staging/comedi/drivers/ii_pci20kc.c -a6738980bbcde97d7a65d9333c55d1f2 linux-3.0/drivers/staging/comedi/drivers/icp_multi.h -0c641d18179726ba87a2638fc98882c7 linux-3.0/drivers/staging/comedi/drivers/icp_multi.c -d07ddf5ab50d226339aadfa6ec916750 linux-3.0/drivers/staging/comedi/drivers/gsc_hpdi.c -a517ccd6ebd3fba13c188aa62b47aa77 linux-3.0/drivers/staging/comedi/drivers/fl512.c -5fe48b3cd628ff3c82bb09ee1abcf410 linux-3.0/drivers/staging/comedi/drivers/dt9812.c -d9c7b9e3bfd5658786661e772a34e480 linux-3.0/drivers/staging/comedi/drivers/dt3000.c -0c2e9faa8b8b029197043f40645a450f linux-3.0/drivers/staging/comedi/drivers/dt282x.c -b8e4f370101ae0a80bc3db66ea024a72 linux-3.0/drivers/staging/comedi/drivers/dt2817.c -506d03bdcb2da7ef0dc26e0c9c532831 linux-3.0/drivers/staging/comedi/drivers/dt2815.c -008fd47b2c1cac740216106d696af88f linux-3.0/drivers/staging/comedi/drivers/dt2814.c -59fb49603619f11f22da3987f8c8c0b7 linux-3.0/drivers/staging/comedi/drivers/dt2811.c -6571c987dbad5978563d36ab065fdc27 linux-3.0/drivers/staging/comedi/drivers/dt2801.c -0b13c4be6207851859d9461c3a825d65 linux-3.0/drivers/staging/comedi/drivers/dmm32at.c -ac75ab91b2e6f7876420189c8cb215c2 linux-3.0/drivers/staging/comedi/drivers/das800.c -6cf0779e38ab08a18bc821e6a2fa70f3 linux-3.0/drivers/staging/comedi/drivers/das6402.c -ee784d09a372628d64cc300092716983 linux-3.0/drivers/staging/comedi/drivers/das1800.c -61cbda448d5fc43fea922543e793017f linux-3.0/drivers/staging/comedi/drivers/das16m1.c -3c3127dd5a3c8f2641ef1a928ecc1737 linux-3.0/drivers/staging/comedi/drivers/das16.c -2cb82d489e9e4763bac0334b0871ac03 linux-3.0/drivers/staging/comedi/drivers/das08_cs.c -a314e5fb3bcb2df28625abdb7368acc8 linux-3.0/drivers/staging/comedi/drivers/das08.h -7dd20e5fe85da1abb57ab7b0ebd61e20 linux-3.0/drivers/staging/comedi/drivers/das08.c -3a0178652a825f64536e87514561fc3b linux-3.0/drivers/staging/comedi/drivers/daqboard2000.c -f9868866d14dfb7c8e02f8478658923c linux-3.0/drivers/staging/comedi/drivers/contec_pci_dio.c -52775fe08d26cf21d8e82265653ecd1b linux-3.0/drivers/staging/comedi/drivers/comedi_test.c -c297746ea3abe930d33056e2c786c6a9 linux-3.0/drivers/staging/comedi/drivers/comedi_pci.h -e9ac742e662e7565098b3fa48be3dce1 linux-3.0/drivers/staging/comedi/drivers/comedi_parport.c -9b9391124ca74fcc214c248ef3277ef3 linux-3.0/drivers/staging/comedi/drivers/comedi_fc.h -a6613da8e02859fa24ebf6038ae32f16 linux-3.0/drivers/staging/comedi/drivers/comedi_fc.c -cf3633e3971acbb4b665d259fc0cde61 linux-3.0/drivers/staging/comedi/drivers/comedi_bond.c -6b6328a6b38fb5c4189b8f49bb6addb5 linux-3.0/drivers/staging/comedi/drivers/cb_pcimdda.c -423249ec0bf97f2731aacebdd6f4d647 linux-3.0/drivers/staging/comedi/drivers/cb_pcimdas.c -9e1cc8c99a077e974cc849cc1644d9ea linux-3.0/drivers/staging/comedi/drivers/cb_pcidio.c -b06b4138b8a67d8509c73ce12956d415 linux-3.0/drivers/staging/comedi/drivers/cb_pcidda.c -8e4f7c374038356e8fadfb05703ee915 linux-3.0/drivers/staging/comedi/drivers/cb_pcidas64.c -3c6e4f0582f24a1138f9735e8ca04032 linux-3.0/drivers/staging/comedi/drivers/cb_pcidas.c -3f20f98e781148dfb7dc270dd8938e5a linux-3.0/drivers/staging/comedi/drivers/cb_das16_cs.c -6ee0f764ed3fabbe5c0d453c6570565b linux-3.0/drivers/staging/comedi/drivers/c6xdigio.c -287706300acf8bb1e7f6db06382aeecf linux-3.0/drivers/staging/comedi/drivers/amplc_pci230.c -b70571779060fb4a19fa1f8d50fed0f1 linux-3.0/drivers/staging/comedi/drivers/amplc_pci224.c -e6b84b6207e3fc731f9f968a76e909ed linux-3.0/drivers/staging/comedi/drivers/amplc_pc263.c -ad8c21b997f9f2b1fb55d7c665d5d5c5 linux-3.0/drivers/staging/comedi/drivers/amplc_pc236.c -f168ab3375ca4c7d0d393c1c2009aa0a linux-3.0/drivers/staging/comedi/drivers/amplc_dio200.c -98b89ea1d0772e0e6bf9533ab09c58e3 linux-3.0/drivers/staging/comedi/drivers/amcc_s5933.h -5ca63f68aade75df387ad769cb65203a linux-3.0/drivers/staging/comedi/drivers/am9513.h -6f4a00146e3e1f282ed01f16b434c20a linux-3.0/drivers/staging/comedi/drivers/aio_iiro_16.c -fc576695f459d8f5ab056adf99ff63c7 linux-3.0/drivers/staging/comedi/drivers/aio_aio12_8.c -7c56d52b4e2fbacd670eab8b49e696c3 linux-3.0/drivers/staging/comedi/drivers/adv_pci_dio.c -5392935cfcab888c523095af8b38d3e4 linux-3.0/drivers/staging/comedi/drivers/adv_pci1723.c -89e11d93bacbf1bb80d511b219b6b1f6 linux-3.0/drivers/staging/comedi/drivers/adv_pci1710.c -0d13aef8e9c76519df3ba8d63c8f17b6 linux-3.0/drivers/staging/comedi/drivers/adq12b.c -cb909c4cb407e176e30c5d0b37496b74 linux-3.0/drivers/staging/comedi/drivers/adl_pci9118.c -1a77c62775b16fc43cd58123adbc29f8 linux-3.0/drivers/staging/comedi/drivers/adl_pci9111.c -faa1a7886114f3147ff658a75f5e9980 linux-3.0/drivers/staging/comedi/drivers/adl_pci8164.c -4d74b711f92910bdeb035cd08bf73499 linux-3.0/drivers/staging/comedi/drivers/adl_pci7432.c -e98f7995a48906f9d5180f76cb2d62b4 linux-3.0/drivers/staging/comedi/drivers/adl_pci7296.c -d306378a7eeed7e5ac34786c19799888 linux-3.0/drivers/staging/comedi/drivers/adl_pci7230.c -b473fbf4cd0c8f9556599c52087ecebe linux-3.0/drivers/staging/comedi/drivers/adl_pci6208.c -8339c3eeceb74ee7bd0723a63ce9b7cf linux-3.0/drivers/staging/comedi/drivers/addi_apci_all.c -bb7bef296b6f4954a939452f485132ac linux-3.0/drivers/staging/comedi/drivers/addi_apci_3xxx.c -c101ab05454d8e94590f0043d0a5b034 linux-3.0/drivers/staging/comedi/drivers/addi_apci_3501.c -167afa636559941cd6c4d31c25d75f44 linux-3.0/drivers/staging/comedi/drivers/addi_apci_3300.c -8abddc06ce8690f3320efdb3d016fa5a linux-3.0/drivers/staging/comedi/drivers/addi_apci_3200.c -45a79088b02033871f15d7a162ef8b58 linux-3.0/drivers/staging/comedi/drivers/addi_apci_3120.c -e7cf62fbaa45d5149d71d7c7295f33c2 linux-3.0/drivers/staging/comedi/drivers/addi_apci_3001.c -9e387c5d720587ec4adb98d129c16efe linux-3.0/drivers/staging/comedi/drivers/addi_apci_2200.c -94b991d2e3cff7d7943d9089e514c012 linux-3.0/drivers/staging/comedi/drivers/addi_apci_2032.c -f2b4cba52fdd991ca25f3062dc27c02d linux-3.0/drivers/staging/comedi/drivers/addi_apci_2016.c -0d033929b249ab34f575174d85ed0f4c linux-3.0/drivers/staging/comedi/drivers/addi_apci_1710.c -83214c0f45b36c8ba6efb6dfdac7dd71 linux-3.0/drivers/staging/comedi/drivers/addi_apci_16xx.c -813f19be9b2ffcb0adc7f95543d516d7 linux-3.0/drivers/staging/comedi/drivers/addi_apci_1564.c -e28ffeabda32a4f4c13b3c793f5032a1 linux-3.0/drivers/staging/comedi/drivers/addi_apci_1516.c -1611e07ec3412d5f7e4cff625928ec3a linux-3.0/drivers/staging/comedi/drivers/addi_apci_1500.c -de27172d0becf5538693d0e14ef793b7 linux-3.0/drivers/staging/comedi/drivers/addi_apci_1032.c -afd56a25acd997c68c15b24d09db1fdb linux-3.0/drivers/staging/comedi/drivers/addi_apci_035.c -66f7705f460b0037bf80af1ac5e0fa73 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3xxx.h -6307ca2bf761efccf7a2d37c9a0c019f linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3xxx.c -c8bf32aac307b48646ba3d4d3b6ac894 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3501.h -273ecd668c1d5a3360506fd556c80163 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3501.c -a05cee728789a5a853c4505341642509 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3200.h -58238162461a91bc57b1c0f6118e2b5f linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3200.c -2aaa5d32c9f64f1d250e4679eada456d linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3120.h -ed2bceec91950c325658430b1af0a872 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3120.c -68c88e1a55cbbcd25574c8005c07ba57 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci2200.h -16556dc0535269ccc87d9f4ce8c4a5f4 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci2200.c -48095a34165cfa6bda61267c3aa29459 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci2032.h -2c73b2b06e325379279913054165b5f7 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci2032.c -06ae4ef906231f9a84770c32241738c0 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci2016.h -0cb2275dbd76e5d88db0809162226bc3 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci2016.c -92cb9f389c0eaf9fe1d23d5759036db8 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci16xx.h -2decd1a1d6ac96d31168b281cd6b4fe8 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci16xx.c -4ca212e2e9af7fd1a3464eb26321beaa linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci1564.h -0ddcde974b4d90cd98896ee24570d71e linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci1564.c -7c0f35600a7139a55aa648f79d813d48 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci1516.h -6f0100dd6326eddf0f672fc6b60973f1 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci1516.c -c5edb70514a1182b9ae7faed30630042 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci1500.h -2c9d95a015a8bccf1ffcb29c865acf55 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci1500.c -6d594c067bf97d71c36f097a19e7cf09 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci1032.h -07068bb6e0f25b3d88ea2ba95132d6e9 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci1032.c -cc3f0bdf6766312db16a04bde57c757c linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci035.h -42750696002d3f8521abb09bb4de2e6c linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_apci035.c -bf63ba1ca7cbc14e7287afd593e3353e linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_APCI1710.h -9f30459fe8f14e22d6397eaaeb8bc057 linux-3.0/drivers/staging/comedi/drivers/addi-data/hwdrv_APCI1710.c -b8639de608f59c0feea2c11632605607 linux-3.0/drivers/staging/comedi/drivers/addi-data/amcc_s5933_58.h -a72dffdfbd3b67876fad9a92bd237b1a linux-3.0/drivers/staging/comedi/drivers/addi-data/addi_eeprom.c -779689984ce5b34372755ac0c607713e linux-3.0/drivers/staging/comedi/drivers/addi-data/addi_common.h -03a5da048c3df1069d1b8daef7a697aa linux-3.0/drivers/staging/comedi/drivers/addi-data/addi_common.c -4852ce66d7ecdf193f3e9b760311dace linux-3.0/drivers/staging/comedi/drivers/addi-data/addi_amcc_s5933.h -3a8e32967c8b717e20dbda5a6fe2f4c9 linux-3.0/drivers/staging/comedi/drivers/addi-data/addi_amcc_S5920.h -e6acc14d5a4f1ee185613122775a7a6c linux-3.0/drivers/staging/comedi/drivers/addi-data/addi_amcc_S5920.c -7087fc7cddb6c6ba84c7d799b0d941ed linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Ttl.h -5b563b21044bb610b3e985c0c223daa2 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Ttl.c -a8ff193ed8f195e148dede59f4431a34 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Tor.h -4ff7e6e7377e8ec73c9a12e32a0907b0 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Tor.c -91fc555e8b8485e761c1c23dd15a7143 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Ssi.h -1701c56b0426f5bfb1ca22a84320ace4 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Ssi.c -7e4e8c815b65a0dcad8b3b3beb98b844 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Pwm.h -d783cfd4b172be0b3abdd49e57f3228c linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Pwm.c -fa3fd63ebd7dcfd4d69471d05e100f9f linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Inp_cpt.h -c1fbe126304b4653b1b9e62649650d47 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Inp_cpt.c -5bab552ff653346b549e2d4c9c2964a3 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_INCCPT.h -49c5de3398ef011c8678716d50e62478 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_INCCPT.c -f9c79ab861c063ad36386152f32c9439 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Dig_io.h -48eb0a90b025cea4b5a92168d12f4f4d linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Dig_io.c -28fca8738d1befe61ee205189401fcad linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Chrono.h -029bf5c67a74747c4d3222de1a01148d linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_Chrono.c -00f5afa4c86aec1acfca46b33d429486 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_82x54.h -3c16cd6ee588a9b31f9e41a439482ee3 linux-3.0/drivers/staging/comedi/drivers/addi-data/APCI1710_82x54.c -4b9df33ba8c422948e1588dc058a8f3b linux-3.0/drivers/staging/comedi/drivers/acl7225b.c -19f53ac90944f21d41cb3ff17f1bb884 linux-3.0/drivers/staging/comedi/drivers/Makefile -72ed97ad7d5e839ae9225aa3d2049072 linux-3.0/drivers/staging/comedi/drivers/8255.h -d67a84ddea693d47b25db584876ccf5c linux-3.0/drivers/staging/comedi/drivers/8255.c -d123c45f5399d943421c13c5ba0aa638 linux-3.0/drivers/staging/comedi/drivers/8253.h -deeb4c60ab87510a71081a946150bda5 linux-3.0/drivers/staging/comedi/drivers.c -178fb8c668c787185acb1542fa309f5e linux-3.0/drivers/staging/comedi/comedilib.h -cf3baffb122e3bfb4cb21d31f95ab5ce linux-3.0/drivers/staging/comedi/comedidev.h -0c2dafccfcf393fc96a883705ff4e621 linux-3.0/drivers/staging/comedi/comedi_fops.h -1ade363eac79319613416ed39d9b9e95 linux-3.0/drivers/staging/comedi/comedi_fops.c -0eb6973f662e697482c7c0b0ceea3ddd linux-3.0/drivers/staging/comedi/comedi_compat32.h -8ec0abf1fe24e07306fe2fce3d9bc665 linux-3.0/drivers/staging/comedi/comedi_compat32.c -cf2d570ace88d035ee404cc8767362d5 linux-3.0/drivers/staging/comedi/comedi.h -470536a459516ddc1b1e168a45db4408 linux-3.0/drivers/staging/comedi/TODO -c17f56075de0ac540f8300599008611a linux-3.0/drivers/staging/comedi/Makefile -3e0c962450981013d2ca06ef5fb747eb linux-3.0/drivers/staging/comedi/Kconfig -4e2ba0d994b92d74a09b81999e61bf68 linux-3.0/drivers/staging/brcm80211/util/bcmwifi.c -e72e73dc594c4ea8b3a0de73c26dc687 linux-3.0/drivers/staging/brcm80211/util/bcmutils.c -6f046a71ac36d9f76f2165f77e07dc51 linux-3.0/drivers/staging/brcm80211/util/Makefile -bff424ae795d5ae88c8141ca7412d595 linux-3.0/drivers/staging/brcm80211/include/wlioctl.h -1162f8821ff24af8b318b6ae18b22fe7 linux-3.0/drivers/staging/brcm80211/include/sdio.h -460c68b7bd9005adfc211a449c9e2b44 linux-3.0/drivers/staging/brcm80211/include/sbsdpcmdev.h -8659cace5d5cf56726dfe19734a07a4d linux-3.0/drivers/staging/brcm80211/include/sbsdio.h -dbb3995019611859420684932625c668 linux-3.0/drivers/staging/brcm80211/include/sbhnddma.h -4caa5ccc21c4280669ffc7150530e669 linux-3.0/drivers/staging/brcm80211/include/sbconfig.h -c298db3585927579c17396bb4f82326a linux-3.0/drivers/staging/brcm80211/include/sbchipc.h -67177f5b01203ae53c1c22d5e397bacd linux-3.0/drivers/staging/brcm80211/include/proto/bcmevent.h -b3fd71ffca8cc6bdb43acfcb97c45fb7 linux-3.0/drivers/staging/brcm80211/include/proto/bcmeth.h -8c27b1272d6e00afbab4129abd66afcb linux-3.0/drivers/staging/brcm80211/include/proto/802.11.h -c39f7ecdea8485f85fc7bb9d57bb0225 linux-3.0/drivers/staging/brcm80211/include/pcie_core.h -132c36b99eb0b37b2038ffb9a0a7d36e linux-3.0/drivers/staging/brcm80211/include/pcicfg.h -1fcf84436b1c4df6c49dbcea0918df57 linux-3.0/drivers/staging/brcm80211/include/pci_core.h -16a51e3925216c31a6c9a54c5f296168 linux-3.0/drivers/staging/brcm80211/include/nicpci.h -d0b711d9ec8cd82e11c7148df5d101f5 linux-3.0/drivers/staging/brcm80211/include/hndsoc.h -247982288a926d6e97743e65c3be3816 linux-3.0/drivers/staging/brcm80211/include/hnddma.h -c3ee68b86196fc2bc99890b3b36d4b0a linux-3.0/drivers/staging/brcm80211/include/bcmwifi.h -3eff89d728528c8a14d7673008fc7b28 linux-3.0/drivers/staging/brcm80211/include/bcmutils.h -9c163cbe09580e38a31b15f801cb7a83 linux-3.0/drivers/staging/brcm80211/include/bcmsrom_fmt.h -d1212323e6eb3ded12df05cd7b196ebf linux-3.0/drivers/staging/brcm80211/include/bcmsrom.h -42e2225e8e2a7c6a857ffa490a615d80 linux-3.0/drivers/staging/brcm80211/include/bcmsdpcm.h -0bf5c840ec8bb256fc2cd05beefd31bc linux-3.0/drivers/staging/brcm80211/include/bcmsdh.h -94826fa2fdf1a54b62df00c10a02dc72 linux-3.0/drivers/staging/brcm80211/include/bcmotp.h -97ff9d9bda7b8144c8a7f405e2d1cabc linux-3.0/drivers/staging/brcm80211/include/bcmnvram.h -642acba2cb48c3895c2a45cc800e6e42 linux-3.0/drivers/staging/brcm80211/include/bcmdevs.h -8c7f254ef68e6786c4c8434f60c18656 linux-3.0/drivers/staging/brcm80211/include/bcmdefs.h -b2ced5b8cdae90373604af2abd694d8d linux-3.0/drivers/staging/brcm80211/include/aidmp.h -5862e7ebfeb1662c56d6f909aeb44c2f linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_types.h -4c797c8f405c15c94f07c1f7480fad7a linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_stf.h -d577a4b1d59d3829433995800e300b61 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_stf.c -b5150dd982a1113d8fd3dd6230a5a4ad linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_scb.h -ab993b521e8ec3317f15d394c60e48c2 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_rate.h -cdf8df59bc2447c8e42c2cc4d95433ee linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_rate.c -b59c0e3fde1cd8b3f5f0af9acea0686c linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_pub.h -effc0acb487ce1a0d22513adcb332215 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_pmu.h -59fa95f94ab4dd732c9e610023401f0c linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_pmu.c -c0ec5af77209cc7b6b651de6c543bf6d linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_phy_shim.h -375c49b53cb68fbd09b27af0ce23592d linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_phy_shim.c -062b17df9e4d390765cd7597ec625aea linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_main.h -89d9a92749a3a4660b52fa79f2105502 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_main.c -095bd6c729318ad3a32a42567dfc91a0 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_key.h -2583008dbe22f018e00eca78118865a0 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_channel.h -c777493bd1d9628cf8466584e8021368 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_channel.c -a0d25734cb5fb6660a0d5bd857c01efc linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_cfg.h -94c6d81bcea8f7475c15b548af429e01 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_bsscfg.h -4b563617ed852307b6a2f9b251ed3236 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_bmac.h -e22eadaf5b7ba593ec237debe223f076 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_bmac.c -b0e584d09d5f1e22a4a2e4d6a5ce556a linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_antsel.h -4764de48882bed90a4ca2965c01dc943 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_antsel.c -5e5b6cedb2809b6f105fc7784e146ddc linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_ampdu.h -eed460f21203996fd37780b98e2bb808 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_ampdu.c -c4e081a46e2a47ba65231b08b7afaedb linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_alloc.h -77fb7dc2c2d75e902dc3840f766789b7 linux-3.0/drivers/staging/brcm80211/brcmsmac/wlc_alloc.c -0900d213e129532b2f96b4feef94cbf5 linux-3.0/drivers/staging/brcm80211/brcmsmac/wl_ucode_loader.c -ca1dcb05de2639cc51e5545a5785abca linux-3.0/drivers/staging/brcm80211/brcmsmac/wl_ucode.h -7bfee605df38b08d714294d18828e8ae linux-3.0/drivers/staging/brcm80211/brcmsmac/wl_mac80211.h -90454dd7f38668564b949ec24fe2d951 linux-3.0/drivers/staging/brcm80211/brcmsmac/wl_mac80211.c -c4f81486984cee02717d1a6466b431e0 linux-3.0/drivers/staging/brcm80211/brcmsmac/wl_export.h -6414806c76565418cffdbfc988c78631 linux-3.0/drivers/staging/brcm80211/brcmsmac/wl_dbg.h -6f9bfac546bf53bf6e546d5bfe1b9ad3 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phytbl_n.h -c47991f23d17bc40d1eb8321b05e2f05 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phytbl_n.c -2f1f754fdc734904c0954f18560fed03 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phytbl_lcn.h -51c27eba53737c99be69f34a516c5683 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phytbl_lcn.c -4bd718bc298f930fe005e61b4d364a49 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phyreg_n.h -5e76459a653a6fcc5a40fc25f589068a linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phy_radio.h -025ecf166e4491f12d4d6301c1989a71 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phy_qmath.h -5556c9d250ef7b476fe3f47efefe57a1 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phy_qmath.c -723e727ea624102aa94f24360a94329b linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phy_n.c -8a68534aaeef5df3a8dfed4049ac37db linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phy_lcn.h -1195dcb8996c96a0c1702fc961be0b06 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phy_lcn.c -0bb7805db5b9cb6883e14797dafa5c14 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phy_int.h -f87b3b85708b8d642273195a51402512 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phy_hal.h -705a24920840ca477fc8fd681101be80 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/wlc_phy_cmn.c -7ae94062070ce04858ec128698030691 linux-3.0/drivers/staging/brcm80211/brcmsmac/phy/phy_version.h -11d5e983f441990bd19ba99c0c5f628c linux-3.0/drivers/staging/brcm80211/brcmsmac/nvram.c -9d34835afffd37db2b9ef613991356fd linux-3.0/drivers/staging/brcm80211/brcmsmac/nicpci.c -3d506ee2cc351c5b0b0bbf887e2f58eb linux-3.0/drivers/staging/brcm80211/brcmsmac/hnddma.c -63ff5c873480a1df0451963d9324d09a linux-3.0/drivers/staging/brcm80211/brcmsmac/d11.h -321d25bb7e975aa22c30a588c592f83a linux-3.0/drivers/staging/brcm80211/brcmsmac/bcmsrom_tbl.h -56771dd53f30c447fb909e01a2d3b918 linux-3.0/drivers/staging/brcm80211/brcmsmac/bcmsrom.c -e4c8fb6db15636fd5e18dcfd28bcd04d linux-3.0/drivers/staging/brcm80211/brcmsmac/bcmotp.c -0d7a2542f118f94bfd83722a6cd963ce linux-3.0/drivers/staging/brcm80211/brcmsmac/aiutils.h -3bcc714536a11172ec0e0be6259a69f3 linux-3.0/drivers/staging/brcm80211/brcmsmac/aiutils.c -bef6576a768fe6a3741705e6e3c09aea linux-3.0/drivers/staging/brcm80211/brcmsmac/Makefile -554ee52bb597de5c5ae0d4ccc0d8dbe2 linux-3.0/drivers/staging/brcm80211/brcmfmac/wl_iw.h -c27d796f0956befc3bed946ea1e1fb31 linux-3.0/drivers/staging/brcm80211/brcmfmac/wl_iw.c -ce329dc4ee67089249ebc1e41aed458e linux-3.0/drivers/staging/brcm80211/brcmfmac/wl_cfg80211.h -23a0a506801ea69a6be7d6577a9ffcb7 linux-3.0/drivers/staging/brcm80211/brcmfmac/wl_cfg80211.c -62fa6dd5f5aca35233829475689910e8 linux-3.0/drivers/staging/brcm80211/brcmfmac/sdiovar.h -08f145537c1e4b07da5343c1c1a25785 linux-3.0/drivers/staging/brcm80211/brcmfmac/sdioh.h -f1c2c4bcce610675a01658e8d4a1fa5b linux-3.0/drivers/staging/brcm80211/brcmfmac/msgtrace.h -9e7e66951be6cdc547a193af2a95d182 linux-3.0/drivers/staging/brcm80211/brcmfmac/hndrte_cons.h -6edbd174185ab8b0d5436b63fbfa9293 linux-3.0/drivers/staging/brcm80211/brcmfmac/hndrte_armtrap.h -2f7cdc6c66723a2b53dd75a973e1e240 linux-3.0/drivers/staging/brcm80211/brcmfmac/dngl_stats.h -c75547baad875d575c2ed6b6f0039c49 linux-3.0/drivers/staging/brcm80211/brcmfmac/dhdioctl.h -ec274c05f34f462eceea17760245ccb7 linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd_sdio.c -f0f92decc0e57558d8c1478ec134e8a0 linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd_proto.h -67b75da8aacc50891dd0f73029c3ed5f linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd_linux_sched.c -7469ef2c2d301478d2483a1837b5322b linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd_linux.c -4203800c3386b9493c18a683934fb829 linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd_dbg.h -88361e63f449aa4572106869e03e6994 linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd_custom_gpio.c -2e5ba187470813e1cd431e385673d1c4 linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd_common.c -d123ea53563f5a3ba6bb7812d129ffa8 linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd_cdc.c -3f6d47ecf603c6549645e41ea8861e5d linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd_bus.h -afafb5a77d3e966fdbb35d22a1542136 linux-3.0/drivers/staging/brcm80211/brcmfmac/dhd.h -cd32c8963f71e59f1217fb40609ae6cf linux-3.0/drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc_linux.c -aa409c88370d062546ea852d0318691f linux-3.0/drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.h -46b1d7c08dbe49429343ad6c99f17b1e linux-3.0/drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.c -d619d7c804123c7bee7c7af20b0ce0f7 linux-3.0/drivers/staging/brcm80211/brcmfmac/bcmsdh_linux.c -9bf85c0b96b573b91247c27ab7ef5931 linux-3.0/drivers/staging/brcm80211/brcmfmac/bcmsdh.c -d4c6c9ee2c0b16354f472f1ec66f716b linux-3.0/drivers/staging/brcm80211/brcmfmac/bcmsdbus.h -e663aab89c1d41bff66fa9e4691d0458 linux-3.0/drivers/staging/brcm80211/brcmfmac/bcmchip.h -8ebd4d2fbf5303c9912fc2e128d24a0a linux-3.0/drivers/staging/brcm80211/brcmfmac/bcmcdc.h -cef84b39df8a585c193415f69533fe16 linux-3.0/drivers/staging/brcm80211/brcmfmac/aiutils.c -e1c06d85ae7b8b032bef47e42e4c08f9 linux-3.0/drivers/staging/brcm80211/brcmfmac/README -97d37aeee885e454fefc93768641a339 linux-3.0/drivers/staging/brcm80211/brcmfmac/Makefile -ee2693221d600b7bd1ac004be28d7856 linux-3.0/drivers/staging/brcm80211/TODO -99b852f03112a01c1c8decd31a41b0e0 linux-3.0/drivers/staging/brcm80211/README -e07933a4853677abff00f51d5048453c linux-3.0/drivers/staging/brcm80211/Makefile -6a288037316a1e7214cdeff019efd70b linux-3.0/drivers/staging/brcm80211/Kconfig -4032423b0f91ce942377e9a58160ff29 linux-3.0/drivers/staging/bcm/vendorspecificextn.h -e5b9d6f8928bb1240112d3dd76e0bc5a linux-3.0/drivers/staging/bcm/vendorspecificextn.c -eeabdfafc1c238ffc1c08251f3f414d5 linux-3.0/drivers/staging/bcm/target_params.h -970872bc7b789b6f0d101fa33f82de7b linux-3.0/drivers/staging/bcm/sort.c -e03e752075be0065433e76f5e3e804cf linux-3.0/drivers/staging/bcm/nvm.h -6425c9309ac129ece5baa111c1d3d577 linux-3.0/drivers/staging/bcm/nvm.c -22a674517e242cec92b2b5a6b3d36377 linux-3.0/drivers/staging/bcm/led_control.h -f71457515ef6ae7f5e47bf66ab2bd15c linux-3.0/drivers/staging/bcm/led_control.c -395891c5c6916ea0084b31827d67f7e1 linux-3.0/drivers/staging/bcm/hostmibs.c -180bd44e6c2eb7bd51ec92d08169f0db linux-3.0/drivers/staging/bcm/headers.h -f4266b49c2c9099b137d2c57f65fcaba linux-3.0/drivers/staging/bcm/cntrl_SignalingInterface.h -b37d34599e33f472f5700a2c041793ef linux-3.0/drivers/staging/bcm/Version.h -c48e2870fdfe4239622a668e29fb4fa2 linux-3.0/drivers/staging/bcm/Typedefs.h -ed365bc3191ccd1b716f93d680d6704c linux-3.0/drivers/staging/bcm/Transmit.c -28300cbc6fd8b1e8c72cbac143eda242 linux-3.0/drivers/staging/bcm/TODO -58cb8c0dfaab49e87c1e01d463460d9b linux-3.0/drivers/staging/bcm/Queue.h -973eefa9ad4c44e0a96dab137ce11fe3 linux-3.0/drivers/staging/bcm/Qos.c -30074c2c99efe191100ae67ef49f6a3c linux-3.0/drivers/staging/bcm/Prototypes.h -b35599e077f090b6b9a70be4c867febc linux-3.0/drivers/staging/bcm/Protocol.h -c09ab8490ce178d0d43648dd0232af8a linux-3.0/drivers/staging/bcm/PHSModule.h -ed3d709507639e3d971f5eca04d6cce3 linux-3.0/drivers/staging/bcm/PHSModule.c -1fed67b79a8fa5509b19b35a37b63926 linux-3.0/drivers/staging/bcm/PHSDefines.h -12125b899631d55feb732c0d5b046a05 linux-3.0/drivers/staging/bcm/Misc.c -95a32a8ef4a4a09deb8bda77a70b2655 linux-3.0/drivers/staging/bcm/Makefile -bce41383d61776a718a91ee2a764d8af linux-3.0/drivers/staging/bcm/Macros.h -7d3e000146eeb0252fbc0b2d68cc2fed linux-3.0/drivers/staging/bcm/LeakyBucket.c -6700a36bfa523b4d542cab0193197cb3 linux-3.0/drivers/staging/bcm/Kconfig -5530bdfa8f971642883174dcac08798f linux-3.0/drivers/staging/bcm/Ioctl.h -c2af2f72313ad3424fb5cc6cec79f3c1 linux-3.0/drivers/staging/bcm/InterfaceTx.h -a76a9bde38d70fe512ad27bc780cbe30 linux-3.0/drivers/staging/bcm/InterfaceTx.c -421fb74b17a8a98f44458bfcc078b338 linux-3.0/drivers/staging/bcm/InterfaceRx.h -5ad64fc477544cb3e711005d6f07fe0f linux-3.0/drivers/staging/bcm/InterfaceRx.c -bd11dcfd9a4cde4726db6ae7d0a52ce2 linux-3.0/drivers/staging/bcm/InterfaceMisc.h -567886510e9263e77c58da0eaaee7f0e linux-3.0/drivers/staging/bcm/InterfaceMisc.c -c8be86945f5bc8b682149ef5044f088b linux-3.0/drivers/staging/bcm/InterfaceMacros.h -16f84b3a4c638e122bd7503ea0b7fa85 linux-3.0/drivers/staging/bcm/InterfaceIsr.h -e59db0685c7764a5c51a61fed722f901 linux-3.0/drivers/staging/bcm/InterfaceIsr.c -449eb95d8870352db6d9e864baa8ff6e linux-3.0/drivers/staging/bcm/InterfaceInit.h -1a29afdca82a77221080d4a5522a76b4 linux-3.0/drivers/staging/bcm/InterfaceInit.c -4f0b072f7836e6a4bb9acc583a596919 linux-3.0/drivers/staging/bcm/InterfaceIdleMode.h -6c88556be6bed7a8e177205a8a7f2139 linux-3.0/drivers/staging/bcm/InterfaceIdleMode.c -7b2370cff5d468841075fae62616512b linux-3.0/drivers/staging/bcm/InterfaceDld.c -f2583e0d719623bc7e55ba048ca50215 linux-3.0/drivers/staging/bcm/InterfaceAdapter.h -ddbf3ce062dbfccb2ab4083bc3bbb770 linux-3.0/drivers/staging/bcm/IPv6ProtocolHdr.h -333dda18c1ac6bd8039cbb4df67dee53 linux-3.0/drivers/staging/bcm/IPv6Protocol.c -4ee07765632eaed3c33b1c0f82a843f8 linux-3.0/drivers/staging/bcm/HostMIBSInterface.h -4b97c28ca20a9d5a299c042d698222a1 linux-3.0/drivers/staging/bcm/HandleControlPacket.c -bec5cb3c9c128b54835660127d0f170b linux-3.0/drivers/staging/bcm/Debug.h -e903be3df86e6f7a805a9c0e45d55e59 linux-3.0/drivers/staging/bcm/DDRInit.h -914f3e37e40e1d1764ea6d94f9271dea linux-3.0/drivers/staging/bcm/DDRInit.c -49e77d408d7773ae83572f94997a17db linux-3.0/drivers/staging/bcm/CmHost.h -0fb61035042144869bb3efe1731290b9 linux-3.0/drivers/staging/bcm/CmHost.c -da810e3fab86e2ed91887451e4109324 linux-3.0/drivers/staging/bcm/Bcmnet.c -da8c61db49310b350534a1924bcfbd39 linux-3.0/drivers/staging/bcm/Bcmchar.c -ee0f007714700fc26232238be0e30bc1 linux-3.0/drivers/staging/bcm/Adapter.h -8d95c385e7d7aa13e125c912a2ab6f8e linux-3.0/drivers/staging/ath6kl/wmi/wmi_host.h -5d87f6b60a1743c811eb9d8a9476b580 linux-3.0/drivers/staging/ath6kl/wmi/wmi.c -2cf9871bbe1b57afdb39a3a1c9af3db7 linux-3.0/drivers/staging/ath6kl/wlan/src/wlan_utils.c -c523957e963205959c986a5b473b8dc5 linux-3.0/drivers/staging/ath6kl/wlan/src/wlan_recv_beacon.c -543dc5f1968fb5781f5704d0a1d0b54c linux-3.0/drivers/staging/ath6kl/wlan/src/wlan_node.c -f9e1286d8aec1ad7cfbf441dccc2e82f linux-3.0/drivers/staging/ath6kl/wlan/include/ieee80211_node.h -e33702e43e7d8f6ef0e5fc30216df406 linux-3.0/drivers/staging/ath6kl/wlan/include/ieee80211.h -13529efa990b782c11a2545636d1b226 linux-3.0/drivers/staging/ath6kl/reorder/rcv_aggr.c -6983c743c0695b51bfefe3c6502c37ae linux-3.0/drivers/staging/ath6kl/reorder/aggr_rx_internal.h -4ed319c95fd9284acad4463839a37c12 linux-3.0/drivers/staging/ath6kl/os/linux/netbuf.c -d1063eaa11311469a021f3528c35ef9f linux-3.0/drivers/staging/ath6kl/os/linux/include/wmi_filter_linux.h -42a1a7599c95b2863ee25ae8a37630aa linux-3.0/drivers/staging/ath6kl/os/linux/include/wlan_config.h -ef627b7204811c7379028b12a71e64a9 linux-3.0/drivers/staging/ath6kl/os/linux/include/osapi_linux.h -a67094e026663ca1f3b7a273be36f167 linux-3.0/drivers/staging/ath6kl/os/linux/include/ieee80211_ioctl.h -7fabdc09b864d9310c03fc306797aef7 linux-3.0/drivers/staging/ath6kl/os/linux/include/export_hci_transport.h -86e10a6971715a1ba725cb914f505398 linux-3.0/drivers/staging/ath6kl/os/linux/include/debug_linux.h -8dc5d4af90531499355a2bc3c413f602 linux-3.0/drivers/staging/ath6kl/os/linux/include/config_linux.h -c4f9f3da34519063b4d0c2b9bcb90c2f linux-3.0/drivers/staging/ath6kl/os/linux/include/cfg80211.h -5ab6d95cfc77687c795fece5ce637f65 linux-3.0/drivers/staging/ath6kl/os/linux/include/athdrv_linux.h -b523ceb212e457d24c51749f933934cc linux-3.0/drivers/staging/ath6kl/os/linux/include/ar6xapi_linux.h -94272a643b458826963bc302b206377f linux-3.0/drivers/staging/ath6kl/os/linux/include/ar6k_pal.h -9b2d3b295e9b843fa5ff6e7b1f04574a linux-3.0/drivers/staging/ath6kl/os/linux/include/ar6000_drv.h -4817d55cbc71fb392b3b189eef51f952 linux-3.0/drivers/staging/ath6kl/os/linux/hci_bridge.c -c2d663155ae2eb8275f979190e9ef5be linux-3.0/drivers/staging/ath6kl/os/linux/export_hci_transport.c -35abb99a2f3fd33eb79eb8ce69bcc2af linux-3.0/drivers/staging/ath6kl/os/linux/cfg80211.c -bc4ad56dbe114f5224284daf8bce8b40 linux-3.0/drivers/staging/ath6kl/os/linux/ar6000_raw_if.c -c346f9b24a0fffd46667cf8837cc6624 linux-3.0/drivers/staging/ath6kl/os/linux/ar6000_pm.c -5e2118a0cab87628792f3ca39e4d0a73 linux-3.0/drivers/staging/ath6kl/os/linux/ar6000_drv.c -1c78cb5521cde88a414d08404e960543 linux-3.0/drivers/staging/ath6kl/miscdrv/miscdrv.h -7def95a714a82667973c84e6bd2d8acc linux-3.0/drivers/staging/ath6kl/miscdrv/credit_dist.c -c2ec5c3454adc9ed87b47494d2bf4032 linux-3.0/drivers/staging/ath6kl/miscdrv/common_drv.c -ffd556ea9de6efb649c58bc60995a755 linux-3.0/drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsparser.h -6e435a418548e4baa86053b9f43258db linux-3.0/drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsparser.c -741a8e8cad22df9bf80fdef1794a3b68 linux-3.0/drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsconfig.h -a153156d5795b555e0476d24e2728396 linux-3.0/drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsconfig.c -9b1cde71a076a95d0c7cf91c8fb60243 linux-3.0/drivers/staging/ath6kl/miscdrv/ar3kconfig.c -b7520162ad7b1f27a19dc071e6d9024f linux-3.0/drivers/staging/ath6kl/include/wmi_api.h -d4386e80ac52c0299b1b339ffb8378c0 linux-3.0/drivers/staging/ath6kl/include/wlan_api.h -498af6794c56a1fb942bd8758dc731fe linux-3.0/drivers/staging/ath6kl/include/htc_packet.h -88f7e763eaa1cd02208f93f93114ea91 linux-3.0/drivers/staging/ath6kl/include/htc_api.h -1555eabf270b784ef3a77c66015b6c37 linux-3.0/drivers/staging/ath6kl/include/host_version.h -40791c1c10a9e361b105c87a607562b7 linux-3.0/drivers/staging/ath6kl/include/hif.h -35a072cd1d359c4852c8b2b99e48db5c linux-3.0/drivers/staging/ath6kl/include/hci_transport_api.h -df16b871ea76643960e051dbdbda3412 linux-3.0/drivers/staging/ath6kl/include/dset_api.h -6a172ea7738fb9065143c61e7360cd84 linux-3.0/drivers/staging/ath6kl/include/dl_list.h -2c5905cf4c67e18c911d3d9ff0ca94ca linux-3.0/drivers/staging/ath6kl/include/dbglog_api.h -f90b5fb03970cf0d77678f03a40f036d linux-3.0/drivers/staging/ath6kl/include/common_drv.h -c186c1e6faf7ef0e041012c84bb34533 linux-3.0/drivers/staging/ath6kl/include/common/wmix.h -a40f637c09c2213ed3fecd9b89fc941a linux-3.0/drivers/staging/ath6kl/include/common/wmi.h -d4162a6628747278ff0cace338f72065 linux-3.0/drivers/staging/ath6kl/include/common/wlan_defs.h -47d76474e6b5b16180c64c4f0d920df8 linux-3.0/drivers/staging/ath6kl/include/common/tlpm.h -89b472ddc9b7eea5325b11ec190b6a95 linux-3.0/drivers/staging/ath6kl/include/common/testcmd.h -64e862c91f75b8c37225a64d098ee425 linux-3.0/drivers/staging/ath6kl/include/common/targaddrs.h -3079c790029cadcdd1ff63d99f071773 linux-3.0/drivers/staging/ath6kl/include/common/roaming.h -13297e02c642aa9c0602d004534c2b0f linux-3.0/drivers/staging/ath6kl/include/common/pkt_log.h -5678538338258e0c6ca0ba7691cd1618 linux-3.0/drivers/staging/ath6kl/include/common/htc_services.h -e018039fd5964311a638a5f657d8dcdd linux-3.0/drivers/staging/ath6kl/include/common/htc.h -0297b40ee051c7d9469a3eb742a6f400 linux-3.0/drivers/staging/ath6kl/include/common/gpio_reg.h -5721f81a17eb71d70f8a33c8c944d115 linux-3.0/drivers/staging/ath6kl/include/common/gmboxif.h -c3ee48ad0250ea9f36dd6f970153cb6b linux-3.0/drivers/staging/ath6kl/include/common/epping_test.h -3a9108881bb66402ab41f1470833671b linux-3.0/drivers/staging/ath6kl/include/common/discovery.h -1d961c8f02143ae2acd239a2c835c354 linux-3.0/drivers/staging/ath6kl/include/common/dbglog_id.h -92f9bf3b16f1961061cc4553113b4b49 linux-3.0/drivers/staging/ath6kl/include/common/dbglog.h -ef6b9f2de6cd48b87a41b173532c5b75 linux-3.0/drivers/staging/ath6kl/include/common/cnxmgmt.h -86cc90abfef5a1058f0767a4c00c0442 linux-3.0/drivers/staging/ath6kl/include/common/bmi_msg.h -238034bdb29c09d8aab7a80948dd4d96 linux-3.0/drivers/staging/ath6kl/include/common/athdefs.h -7efca193c4eabd65b0632c346a23e279 linux-3.0/drivers/staging/ath6kl/include/common/AR6002/hw4.0/hw/uart_reg.h -e293fa5c94958fe62423e286122e6d5b linux-3.0/drivers/staging/ath6kl/include/common/AR6002/hw4.0/hw/rtc_wlan_reg.h -f666a90393efdfd4231ba9e31bcaf5cb linux-3.0/drivers/staging/ath6kl/include/common/AR6002/hw4.0/hw/rtc_reg.h -198793168da3cc4514a7ba821ea7366e linux-3.0/drivers/staging/ath6kl/include/common/AR6002/hw4.0/hw/mbox_wlan_reg.h -7636ec272346f05ffe609c0b160bb399 linux-3.0/drivers/staging/ath6kl/include/common/AR6002/hw4.0/hw/mbox_wlan_host_reg.h -645fd9b16c111412e763679491848200 linux-3.0/drivers/staging/ath6kl/include/common/AR6002/hw4.0/hw/mbox_reg.h -c1a4db2ac3265fc4d31f98872e5799b8 linux-3.0/drivers/staging/ath6kl/include/common/AR6002/hw4.0/hw/mbox_host_reg.h -ffed8d7fe7d7ff7fd369c83588647069 linux-3.0/drivers/staging/ath6kl/include/common/AR6002/hw4.0/hw/apb_map.h -2f8872e3b8fe9521e40c18c134a7ae16 linux-3.0/drivers/staging/ath6kl/include/common/AR6002/hw4.0/hw/apb_athr_wlan_map.h -9df0a6d6be86cd9bdadcaf2e9713062d linux-3.0/drivers/staging/ath6kl/include/common/AR6002/addrs.h -092c5a56e4d61dae24314042581083a9 linux-3.0/drivers/staging/ath6kl/include/common/AR6002/AR6K_version.h -a7d27893c3c5bb8aecb5fcb50cb8e1e3 linux-3.0/drivers/staging/ath6kl/include/bmi.h -85b8a293e4510fcc48ce221406ed203e linux-3.0/drivers/staging/ath6kl/include/athbtfilter.h -45c44f6afe1024b82785baec58321bce linux-3.0/drivers/staging/ath6kl/include/ar6kap_common.h -d3d7529ab6ef73897e53f3a830ebc874 linux-3.0/drivers/staging/ath6kl/include/ar6000_diag.h -2d14922585d476453b58ee62eb8f482a linux-3.0/drivers/staging/ath6kl/include/ar6000_api.h -70ee396957f4dd06f3a1a1b981f762d0 linux-3.0/drivers/staging/ath6kl/include/ar3kconfig.h -c93bd57b6c4fba01bd536275e2817b33 linux-3.0/drivers/staging/ath6kl/include/aggr_recv_api.h -865f8fd4a61fd1e629a6eda22edd19ea linux-3.0/drivers/staging/ath6kl/include/a_osapi.h -b6cb362bebbd71f3c3fc114d1c3ed3d9 linux-3.0/drivers/staging/ath6kl/include/a_drv_api.h -3b9f50043a4266fb3d9a9718ba73b33d linux-3.0/drivers/staging/ath6kl/include/a_drv.h -1a1dee5b16021017c01bfe4f201f44d5 linux-3.0/drivers/staging/ath6kl/include/a_debug.h -9a0c99559f7ef2f2e6fbfbb128561988 linux-3.0/drivers/staging/ath6kl/include/a_config.h -134d9d6ba124bd5e0d0bd35b370581c0 linux-3.0/drivers/staging/ath6kl/htc2/htc_services.c -8ee579677903e7ed60bdcac71c1343a3 linux-3.0/drivers/staging/ath6kl/htc2/htc_send.c -85c52183d9e8cbbd36911b03a9d203a5 linux-3.0/drivers/staging/ath6kl/htc2/htc_recv.c -90eea7e437bbe836c7368963a85bcb37 linux-3.0/drivers/staging/ath6kl/htc2/htc_internal.h -a7066859e2a492e3a404f5a2eefd8d6e linux-3.0/drivers/staging/ath6kl/htc2/htc_debug.h -75744dbbba330360633e74d4bc6b98ff linux-3.0/drivers/staging/ath6kl/htc2/htc.c -1b29aa484ad4e135bba1ac19582363be linux-3.0/drivers/staging/ath6kl/htc2/AR6000/ar6k_gmbox_hciuart.c -130a274b44cdf00158f1d0966edb57eb linux-3.0/drivers/staging/ath6kl/htc2/AR6000/ar6k_gmbox.c -36b64b5f2a213895c7ebe4b05e274b85 linux-3.0/drivers/staging/ath6kl/htc2/AR6000/ar6k_events.c -2d9286b6b6fcc9ee361ef0cd379e41ca linux-3.0/drivers/staging/ath6kl/htc2/AR6000/ar6k.h -98d526f8c769fb87ca325d7cd2dfe363 linux-3.0/drivers/staging/ath6kl/htc2/AR6000/ar6k.c -1a0d088c7b52c1c38ac414d38732f805 linux-3.0/drivers/staging/ath6kl/hif/sdio/linux_sdio/src/hif_scatter.c -3be9a958aafb377edbfdb8e54dcde511 linux-3.0/drivers/staging/ath6kl/hif/sdio/linux_sdio/src/hif.c -a260217086fb8563530ad1992455f74f linux-3.0/drivers/staging/ath6kl/hif/sdio/linux_sdio/include/hif_internal.h -3bc60d06afe62cb5a01658f18fe73242 linux-3.0/drivers/staging/ath6kl/hif/common/hif_sdio_common.h -a99ec6d66cbbd4901f8d529a644639c6 linux-3.0/drivers/staging/ath6kl/bmi/src/bmi.c -d1a38f39cb22262add9d2620e9c99d64 linux-3.0/drivers/staging/ath6kl/bmi/include/bmi_internal.h -cfb8f3054558151c933070f585e86446 linux-3.0/drivers/staging/ath6kl/TODO -9c9c29038789710f87a5ec36db113614 linux-3.0/drivers/staging/ath6kl/Makefile -c299f53ad2c40c42922f3996108cab75 linux-3.0/drivers/staging/ath6kl/Kconfig -a98ac9c5e746f34fa26a05706688938d linux-3.0/drivers/staging/asus_oled/zig.txt -bfc29fb65e81017914a8a2dedbcf3c02 linux-3.0/drivers/staging/asus_oled/tux_r2.txt -3b8a26c8f892153b15e83ae97b2cad5f linux-3.0/drivers/staging/asus_oled/tux_r.txt -2ad73833b61428b722b86cf8501fab93 linux-3.0/drivers/staging/asus_oled/tux.txt -0c72880234eda86188331413f6c992f7 linux-3.0/drivers/staging/asus_oled/linux_fr.txt -4c510432f2d1eeadaf6abf0083550e0f linux-3.0/drivers/staging/asus_oled/linux_f.txt -75ac3128044c3b53b55aca954406fa78 linux-3.0/drivers/staging/asus_oled/linux.txt -23a08b2b4e2ce982b19329061344d086 linux-3.0/drivers/staging/asus_oled/asus_oled.c -5c918c6a177a643be0f13c2df82b43cf linux-3.0/drivers/staging/asus_oled/TODO -08ff005a3d25ebb01b460f40b05e65e3 linux-3.0/drivers/staging/asus_oled/README -835032cfedf0ca2cfc2547e9ac463463 linux-3.0/drivers/staging/asus_oled/Makefile -a6d49da35b61d58e33ed48e81a67eacc linux-3.0/drivers/staging/asus_oled/Kconfig -43efbb5e8c33e5ce5627d6a67421c76b linux-3.0/drivers/staging/altera-stapl/altera.h -07a78c9b1b4664690ac2e0d4b98177ff linux-3.0/drivers/staging/altera-stapl/altera.c -7ec9470c9bbea50fcee7fd3211bbe436 linux-3.0/drivers/staging/altera-stapl/altera-lpt.c -fd3e73b84dbeb976cdef817fb89e8447 linux-3.0/drivers/staging/altera-stapl/altera-jtag.h -0b96980448b82b0d57dbe73e900001be linux-3.0/drivers/staging/altera-stapl/altera-jtag.c -b2b1a8aff4d3b19a9dd93a0f5e26ee13 linux-3.0/drivers/staging/altera-stapl/altera-exprt.h -b610ada94a509b1cb444c54434bc9bb0 linux-3.0/drivers/staging/altera-stapl/altera-comp.c -b420a0e809090d15a4d0011a947c7369 linux-3.0/drivers/staging/altera-stapl/Makefile -1376f060ce1d7ccae5c89a62425bc525 linux-3.0/drivers/staging/altera-stapl/Kconfig -f8b399cad0b9610d4caee163d1019e0d linux-3.0/drivers/staging/Makefile -c7b75398b30849abac63ea2a12d46ffa linux-3.0/drivers/staging/Kconfig -e2cd22241d3b5005af792d56efcfd347 linux-3.0/drivers/ssb/ssb_private.h -766fd928ca55da56f9f1ec87d2500028 linux-3.0/drivers/ssb/sprom.c -9a6e4578cdc72846307c7c03589f3f3b linux-3.0/drivers/ssb/sdio.c -c23162fe9c7c7fd59501c5ca5f22bc13 linux-3.0/drivers/ssb/scan.c -6fd888dea165f9c4530cd7917a1422c0 linux-3.0/drivers/ssb/pcmcia.c -05efcd2944ac432744a585e1f01b2420 linux-3.0/drivers/ssb/pcihost_wrapper.c -9bd4fa5489e606aeb79ba46889e3fcc7 linux-3.0/drivers/ssb/pci.c -4bc5eea708d956e4f8d2f02cee114ac5 linux-3.0/drivers/ssb/main.c -1cbdf8f8671633bdd9b07b6895068aa0 linux-3.0/drivers/ssb/embedded.c -5b74c73279014340e9819959ad124ba8 linux-3.0/drivers/ssb/driver_pcicore.c -40e62fff36ff73b1783450d9f50f7922 linux-3.0/drivers/ssb/driver_mipscore.c -a34d8856be1266c5bc9d6c6a09ba3736 linux-3.0/drivers/ssb/driver_gige.c -e5e8deb6e70b9a73673d1b5c2f2c25b2 linux-3.0/drivers/ssb/driver_extif.c -919ab30a5bd49bee723983c16f599ea6 linux-3.0/drivers/ssb/driver_chipcommon_pmu.c -eb8a366642f7853ca701b17428dfb2db linux-3.0/drivers/ssb/driver_chipcommon.c -071cafde9fceafe6f226fca96b959e61 linux-3.0/drivers/ssb/b43_pci_bridge.c -c2b0f730c3c47f8042d2e7fe1d68fa3b linux-3.0/drivers/ssb/Makefile -a435183718f4d540c53c4b2b753bfa81 linux-3.0/drivers/ssb/Kconfig -61c5a7a1b91b60e46b299548a8f47dba linux-3.0/drivers/spi/xilinx_spi.c -50e38c6d92d708db4c70045c32f1ff05 linux-3.0/drivers/spi/tle62x0.c -3fafde84c9b2d1af53c723e84deb1e0d linux-3.0/drivers/spi/ti-ssp-spi.c -14ed75440b37ef08a9b6836265ac3ea3 linux-3.0/drivers/spi/spidev.c -95e35e5bf0293ff6bdfde606e3fc2db6 linux-3.0/drivers/spi/spi_txx9.c -fe1c5ef01fab00e1546307021823749f linux-3.0/drivers/spi/spi_topcliff_pch.c -29585dc6a6f51a98cf7f87e09d094997 linux-3.0/drivers/spi/spi_tegra.c -8955ce6c88746d7c11868b4d18a47e52 linux-3.0/drivers/spi/spi_stmp.c -7142d783ceaede956970ba1b18e5466a linux-3.0/drivers/spi/spi_sh_sci.c -03f1570de8c4846c31d482338c9de09d linux-3.0/drivers/spi/spi_sh_msiof.c -51a3a5676cdc4a9694efdba973f59d18 linux-3.0/drivers/spi/spi_sh.c -4c978cbc170b60fb00808773ef35afbc linux-3.0/drivers/spi/spi_s3c64xx.c -f28ba0662d0a5ca08f9986f479725aee linux-3.0/drivers/spi/spi_s3c24xx_gpio.c -3391d61182a120a533605ecf7ee6bd24 linux-3.0/drivers/spi/spi_s3c24xx_fiq.h -a97fbbb237c2a34b5ba8f23ebbceeeff linux-3.0/drivers/spi/spi_s3c24xx_fiq.S -361f73a9f9741a84181ed5c4ba93879a linux-3.0/drivers/spi/spi_s3c24xx.c -011ad2e0105c433f21b65bd355fb28b4 linux-3.0/drivers/spi/spi_ppc4xx.c -679cf65fc6e58dd0c17d24f1e846f0c0 linux-3.0/drivers/spi/spi_oc_tiny.c -9a09d28d22a2a1a0eb0751bb18aeb565 linux-3.0/drivers/spi/spi_nuc900.c -01dad48171644eedcb9fd827a085b138 linux-3.0/drivers/spi/spi_lm70llp.c -731311f6e5919b90380c0f00d7c54c5d linux-3.0/drivers/spi/spi_imx.c -a2b2ec82f0a0158df19663edeb6bd13a linux-3.0/drivers/spi/spi_gpio.c -bb4c2508f16eae4b5605be9844a20104 linux-3.0/drivers/spi/spi_fsl_spi.c -c948528af9b8d77daf072065461b6159 linux-3.0/drivers/spi/spi_fsl_lib.h -3ed81a1f981e729f99560668795d0770 linux-3.0/drivers/spi/spi_fsl_lib.c -e82e092c8ac3a6f0e2eeaf93e14e558b linux-3.0/drivers/spi/spi_fsl_espi.c -19ac0b37eb8c8f71e6777ee6fb9eaf19 linux-3.0/drivers/spi/spi_butterfly.c -110c573a73fbd2e80374f21d8ed490db linux-3.0/drivers/spi/spi_bitbang_txrx.h -b2891d07278ed27dcd9817f6d6f8ba78 linux-3.0/drivers/spi/spi_bitbang.c -a8ce43f4ee807ae91bdef1d49269ae71 linux-3.0/drivers/spi/spi_bfin_sport.c -5d8e17caa32a205302cb2b1272a95d3b linux-3.0/drivers/spi/spi_bfin5xx.c -970e52650b84d00e981e49e350bdec12 linux-3.0/drivers/spi/spi_altera.c -e3d996f8a1352c3e6881cff3a0222b9b linux-3.0/drivers/spi/spi.c -7b785764e8fcad9c85081b1b6878bfe0 linux-3.0/drivers/spi/pxa2xx_spi_pci.c -2b6fc056e9a8f73fbea8f106e995deba linux-3.0/drivers/spi/pxa2xx_spi.c -be05d500dc8bc329d470672ead4bb58d linux-3.0/drivers/spi/orion_spi.c -1e0ab5c51164398329c187c144a6b6a0 linux-3.0/drivers/spi/omap_uwire.c -e73ce0cfb56436710592dc5b281f336c linux-3.0/drivers/spi/omap_spi_100k.c -76dd8286b996f7c7223185e0f67459f0 linux-3.0/drivers/spi/omap2_mcspi.c -e87f5cacbe7ef63020e880ff64627ac9 linux-3.0/drivers/spi/mpc52xx_spi.c -28fbb5d9b6e54a58d00caabeb3a71e5d linux-3.0/drivers/spi/mpc52xx_psc_spi.c -7cb83f74c132cd5b4c664234008191d7 linux-3.0/drivers/spi/mpc512x_psc_spi.c -6b49f34327d34b855e44fccc5372cf90 linux-3.0/drivers/spi/ep93xx_spi.c -c212f00a7f452ed30db8cbbcab00988e linux-3.0/drivers/spi/dw_spi_pci.c -f394ba1de46ec7b87cd0c97db5de7dbe linux-3.0/drivers/spi/dw_spi_mmio.c -d82bb730479ef2b607f6b0ff0ce82b5a linux-3.0/drivers/spi/dw_spi_mid.c -9dcba9c02dc5674f329fc4bb9aa2c4f1 linux-3.0/drivers/spi/dw_spi.h -96ee6fb56bedb9d8c5dffae520db9b50 linux-3.0/drivers/spi/dw_spi.c -73ab7d0be2f4ba98b955fca4e28e2c55 linux-3.0/drivers/spi/davinci_spi.c -2aa9b93440cb20d4521848494fcd3484 linux-3.0/drivers/spi/coldfire_qspi.c -773de91e34ac8582cb5cd7cab6870763 linux-3.0/drivers/spi/au1550_spi.c -fe77da2373a3928e508495b7dcbbb4de linux-3.0/drivers/spi/atmel_spi.h -1b7e93674e92e4fbd0cf0650877e0123 linux-3.0/drivers/spi/atmel_spi.c -6db949030b9e50b6ed59210861046ed7 linux-3.0/drivers/spi/ath79_spi.c -d70be45ce9f936fc1d00bcc071cf34c2 linux-3.0/drivers/spi/amba-pl022.c -dd3f904fb68a799371f0cad6858842b3 linux-3.0/drivers/spi/Makefile -3482b00808d2653910616b98c5ecc838 linux-3.0/drivers/spi/Kconfig -3f3f1f40f6843d7a0ecc5a1b856fb9cc linux-3.0/drivers/sn/ioc3.c -57ee2e3b5153f603184e4081afe3da15 linux-3.0/drivers/sn/Makefile -30fd12a5d83c50d610cfccab7a5738a1 linux-3.0/drivers/sn/Kconfig -9ad1e69ea4556ff594e734569e03aa40 linux-3.0/drivers/sh/superhyway/superhyway.c -0254d522a39f8b6f128b0d6102c63210 linux-3.0/drivers/sh/superhyway/superhyway-sysfs.c -0a3ab98635c27d1909802ceff3d8827e linux-3.0/drivers/sh/superhyway/Makefile -721234bcee14aa2ca63186c82a5afd50 linux-3.0/drivers/sh/pfc.c -4ba7a3571c17bf4e518a5306ec31d4e0 linux-3.0/drivers/sh/maple/maple.c -dceb842bc66209f90f24d1751619e02a linux-3.0/drivers/sh/maple/Makefile -c1589e60d14854c613ae10bfca0e7a69 linux-3.0/drivers/sh/intc/virq.c -1181a491473f1b7718717e9a30b8eb18 linux-3.0/drivers/sh/intc/virq-debugfs.c -7a4aa09c83359f9671abbe23c45c62d8 linux-3.0/drivers/sh/intc/userimask.c -ae5e572103299e2dea15c56c6c046f89 linux-3.0/drivers/sh/intc/internals.h -bffed7452c7100d6575721b90f90904a linux-3.0/drivers/sh/intc/handle.c -835306919c5f8c15bb5dee09f4b6a7bb linux-3.0/drivers/sh/intc/dynamic.c -21fc68b608c6ac48d042d3df4bd28894 linux-3.0/drivers/sh/intc/core.c -66373e34cb7c0e8df54fd8a8af1e3217 linux-3.0/drivers/sh/intc/chip.c -1c2f2fb51edde592538a5ecf475e655b linux-3.0/drivers/sh/intc/balancing.c -a30c61ddc248b5ee179e466cdd7e01e5 linux-3.0/drivers/sh/intc/access.c -27ecee139a2cd05ef46356a4076fc47f linux-3.0/drivers/sh/intc/Makefile -390798065bd5169644bcba644d2287d5 linux-3.0/drivers/sh/intc/Kconfig -cc326c1012bcfa15e99e06ee2f35a17e linux-3.0/drivers/sh/clk/cpg.c -1895a6432c0736aab7fd29b271dd23ff linux-3.0/drivers/sh/clk/core.c -8da19207e10c7fc12e927d8dde198659 linux-3.0/drivers/sh/clk/Makefile -479633cd9773b744427e8054b94571dd linux-3.0/drivers/sh/Makefile -f66e16a32c0614f962dad7de0c6168c2 linux-3.0/drivers/sh/Kconfig -7a7b150da44e49cd4e23f586e04a3a2f linux-3.0/drivers/sfi/sfi_core.h -e57c5ea53bef1a9e3518a2df185d84c9 linux-3.0/drivers/sfi/sfi_core.c -e4da4403806145c27352c33aa16f7b14 linux-3.0/drivers/sfi/sfi_acpi.c -010b6a21fe1a2defee30ecfe878d6018 linux-3.0/drivers/sfi/Makefile -4fc94acf5dcada7ccccc944d4a516191 linux-3.0/drivers/sfi/Kconfig -703a64198e4c6186e218e66cd0a89e56 linux-3.0/drivers/scsi/zorro7xx.c -fdfb1be865c183bfa9bfc049ca25e519 linux-3.0/drivers/scsi/zalon.c -ad173c730c6f87ff1e5e60452a858d08 linux-3.0/drivers/scsi/wd7000.c -9597585f9aabfa4e56742227cec80601 linux-3.0/drivers/scsi/wd33c93.h -e961524d5935ad105e27528ef0779b13 linux-3.0/drivers/scsi/wd33c93.c -abcc9902e476fbf49357e08ff825cdcd linux-3.0/drivers/scsi/vmw_pvscsi.h -d326796e701b7ea35f1f7fc3189ec84d linux-3.0/drivers/scsi/vmw_pvscsi.c -e91771172c8e1196fc01d27c182b5612 linux-3.0/drivers/scsi/ultrastor.h -10fd5e7c8b41fa65bf9718b5edf53723 linux-3.0/drivers/scsi/ultrastor.c -ded66b9049b3ea403f73063272c5f38b linux-3.0/drivers/scsi/u14-34f.c -17723daf41ce31f5e38342ac4bbc270d linux-3.0/drivers/scsi/tmscsim.h -c2c5dd47e00331f673bb294c8029027a linux-3.0/drivers/scsi/tmscsim.c -60cc4588745553ae834cd19948c5c5c4 linux-3.0/drivers/scsi/t128.h -305bbafa9560f24f1b66acfa2d7b9980 linux-3.0/drivers/scsi/t128.c -7d47d0f271d2f768c5c9eda611cfd0b6 linux-3.0/drivers/scsi/sym53c8xx_2/sym_nvram.h -c1c1eeb8e870cde9b3f419157e1560cf linux-3.0/drivers/scsi/sym53c8xx_2/sym_nvram.c -2c773b43a1169e636dcd47ebb1d4d9e9 linux-3.0/drivers/scsi/sym53c8xx_2/sym_misc.h -39dda0fc04139834d04d06d537262662 linux-3.0/drivers/scsi/sym53c8xx_2/sym_malloc.c -906a0f325e97132919511461d29bc99a linux-3.0/drivers/scsi/sym53c8xx_2/sym_hipd.h -6f5c4a9967a5468968c97f0717f2e784 linux-3.0/drivers/scsi/sym53c8xx_2/sym_hipd.c -11a3063bd57aa6735f3eb07104c6cd47 linux-3.0/drivers/scsi/sym53c8xx_2/sym_glue.h -0c216fc95bc6fc3edd34765286bb7c60 linux-3.0/drivers/scsi/sym53c8xx_2/sym_glue.c -7e552cd62d97859ac509204c1682e30e linux-3.0/drivers/scsi/sym53c8xx_2/sym_fw2.h -809918e79e365ef19b52601e8da2f1b5 linux-3.0/drivers/scsi/sym53c8xx_2/sym_fw1.h -195b1d201f9206523cda99aa8d308cfb linux-3.0/drivers/scsi/sym53c8xx_2/sym_fw.h -2fca9e221cccd736577a6abe7d895d1d linux-3.0/drivers/scsi/sym53c8xx_2/sym_fw.c -626ce9ff496fa1846b2def118190ac03 linux-3.0/drivers/scsi/sym53c8xx_2/sym_defs.h -e2db048ba6f60d7d6f67fd2a566cd007 linux-3.0/drivers/scsi/sym53c8xx_2/sym53c8xx.h -17d7275fc9047b40910d980ae0432399 linux-3.0/drivers/scsi/sym53c8xx_2/Makefile -7d7af05319c53fd2c11df9b70226d098 linux-3.0/drivers/scsi/sym53c416.h -203708ea758c4815cbe2951765ede898 linux-3.0/drivers/scsi/sym53c416.c -84d118bd773d527d730d4e7bd400beb9 linux-3.0/drivers/scsi/sun_esp.c -1892cd82595c28fae62b322249b71b98 linux-3.0/drivers/scsi/sun3x_esp.c -37b3e5627a7b2d719775f46d2df7b5a3 linux-3.0/drivers/scsi/sun3_scsi_vme.c -fb391306a955e3f8a37e5b8fbb54ab0a linux-3.0/drivers/scsi/sun3_scsi.h -bc9238e37af2e11ccaa9da001072b393 linux-3.0/drivers/scsi/sun3_scsi.c -1ff5ca8ff859c0a6ebd7905c63b55948 linux-3.0/drivers/scsi/sun3_NCR5380.c -146cc30427514eb4768a17df5d211180 linux-3.0/drivers/scsi/stex.c -143bdc89d6b5f04a527f3a19bf4c88b0 linux-3.0/drivers/scsi/st_options.h -fc3b3b922f46e3a8897901e4602b9576 linux-3.0/drivers/scsi/st.h -4467134ad94cc4be1955290989cf1d51 linux-3.0/drivers/scsi/st.c -8e165a185eab10db6c6ba9f992ec9d0f linux-3.0/drivers/scsi/sr_vendor.c -1d3f4fdbde259f64ea07762244fde31c linux-3.0/drivers/scsi/sr_ioctl.c -997b91e7332077b46c4ba810ed8fe266 linux-3.0/drivers/scsi/sr.h -ddcb4342aa4c0e4da3c1f68d31557710 linux-3.0/drivers/scsi/sr.c -4d7a8ef5488868d7ef56606f4aa3021a linux-3.0/drivers/scsi/sni_53c710.c -cb74b17887d3a6d608b1057603f97f11 linux-3.0/drivers/scsi/sim710.c -8775d5e7355b87aed2d01854c522ae09 linux-3.0/drivers/scsi/sgiwd93.c -176502a7fce73cc53ee8df40ed50d59e linux-3.0/drivers/scsi/sg.c -c3bc53a508ce6ef697ba2c80464323fd linux-3.0/drivers/scsi/ses.c -3c4d91b3caf8a548cb7ddd994c1f1e30 linux-3.0/drivers/scsi/sd_dif.c -79e0a77077108b4ad06a3021df697980 linux-3.0/drivers/scsi/sd.h -d6adf513e52aeff5e4ad83224b13b5a8 linux-3.0/drivers/scsi/sd.c -5ec30bd5f464ae8f3a55bea883cb93ba linux-3.0/drivers/scsi/scsicam.c -b835809299e27990c032bc759a40164c linux-3.0/drivers/scsi/scsi_wait_scan.c -8c89993fa544b4cdf3ab4c70ea0c26c4 linux-3.0/drivers/scsi/scsi_typedefs.h -2059f04afb802545ef200d36a6b54e8c linux-3.0/drivers/scsi/scsi_transport_srp_internal.h -cb8d32fffc75c81d385ffb6408b3959f linux-3.0/drivers/scsi/scsi_transport_srp.c -6a4c0412d331ec4020b50b36f18fa4db linux-3.0/drivers/scsi/scsi_transport_spi.c -29fabc3d7e0376f7f13d90769b6c77d1 linux-3.0/drivers/scsi/scsi_transport_sas.c -9b9bde59f57f1b10323bb3b776c07aae linux-3.0/drivers/scsi/scsi_transport_iscsi.c -e6ddf53d20a7e9c9599e355dd6aa23ae linux-3.0/drivers/scsi/scsi_transport_fc_internal.h -8f9f40f5dd2c272c8717e93baa9a09de linux-3.0/drivers/scsi/scsi_transport_fc.c -524279bdaf6444199a52fc36de5427b9 linux-3.0/drivers/scsi/scsi_transport_api.h -658c0a86bc5831cfba52da12461f108c linux-3.0/drivers/scsi/scsi_trace.c -41023f59cc3335e3a71b39172c7cd670 linux-3.0/drivers/scsi/scsi_tgt_priv.h -e7daaa30c1db92e6d28ead438683b4e9 linux-3.0/drivers/scsi/scsi_tgt_lib.c -89644ce77001f9dfaba7e7b78b70f973 linux-3.0/drivers/scsi/scsi_tgt_if.c -36666946e487683e59c87e8238bfb662 linux-3.0/drivers/scsi/scsi_sysfs.c -6242daa34ac9a333b8166a9eacb6809d linux-3.0/drivers/scsi/scsi_sysctl.c -914d47f7d59a1fea21aed4428cda32ff linux-3.0/drivers/scsi/scsi_scan.c -5b105a1f1d62cea2e2f8a3d9d5bbd1c4 linux-3.0/drivers/scsi/scsi_sas_internal.h -0133ad3f3e7a8f7bbf1e167e33b757cc linux-3.0/drivers/scsi/scsi_proc.c -7f9b1c619f5b5798e76d2f5ad04f5259 linux-3.0/drivers/scsi/scsi_priv.h -83e5a3188fa4627e28b1f0e22736eca0 linux-3.0/drivers/scsi/scsi_pm.c -043409d01b6ffbae77f2f75d30dc6178 linux-3.0/drivers/scsi/scsi_netlink.c -1bbdcebc9265c20a5046d1164bcf6b33 linux-3.0/drivers/scsi/scsi_module.c -a434b8b42d0576bf2d62c896e1f2c49a linux-3.0/drivers/scsi/scsi_logging.h -fd442a8afc96d3828c98b4a6bd47ac54 linux-3.0/drivers/scsi/scsi_lib_dma.c -4c83ebfc7ac14da85495d7ce103e3132 linux-3.0/drivers/scsi/scsi_lib.c -7fa59f1f9fc94899fbe2653f1bb1b1d3 linux-3.0/drivers/scsi/scsi_ioctl.c -6854aacc4d5b2df2cceda64109b1324b linux-3.0/drivers/scsi/scsi_error.c -736e94d89c5f136cc7bc04829608a107 linux-3.0/drivers/scsi/scsi_devinfo.c -00865164523de2633999f20587986714 linux-3.0/drivers/scsi/scsi_debug.c -3009e5b3908ce29c87bf791d4c82a398 linux-3.0/drivers/scsi/scsi.h -967ff8b2c9ee67c0ca6ec06694aa4bdd linux-3.0/drivers/scsi/scsi.c -1b90ca54e32a8e3f0044d6f7cdcdfc5a linux-3.0/drivers/scsi/script_asm.pl -a6e6cc93c5a7bbb5bb0f31f8bf0079f9 linux-3.0/drivers/scsi/raid_class.c -c21fe947bd93ddc00206f2b1770b78f2 linux-3.0/drivers/scsi/qlogicpti.h -753b7b5cced960cad063f135dbd3e228 linux-3.0/drivers/scsi/qlogicpti.c -23639207375a71a72dfafbb541ede716 linux-3.0/drivers/scsi/qlogicfas408.h -272c49b5420df296f49f349523e26985 linux-3.0/drivers/scsi/qlogicfas408.c -f3168acf07e5ccc9ebaa17e73db536ec linux-3.0/drivers/scsi/qlogicfas.c -015de5675845d1c41c4df32c020278c0 linux-3.0/drivers/scsi/qla4xxx/ql4_version.h -c7866316bc1874f1079847c166f3dcbf linux-3.0/drivers/scsi/qla4xxx/ql4_os.c -28b8ded5ca708bda91d2299b7e71e5a6 linux-3.0/drivers/scsi/qla4xxx/ql4_nx.h -351f2339878525cc59f951e8a7753f8e linux-3.0/drivers/scsi/qla4xxx/ql4_nx.c -f5c7485089ed0cacc14f3d09c5a65912 linux-3.0/drivers/scsi/qla4xxx/ql4_nvram.h -b7d2151fb6d21672ee84abbf5c02154e linux-3.0/drivers/scsi/qla4xxx/ql4_nvram.c -12e8c9979c44da1c18b91c3806ece06e linux-3.0/drivers/scsi/qla4xxx/ql4_mbx.c -97ec78d9cd55158155a82c4025e684fc linux-3.0/drivers/scsi/qla4xxx/ql4_isr.c -37a897c2559fe69669b31db2a661be8c linux-3.0/drivers/scsi/qla4xxx/ql4_iocb.c -6bfdd3339a2c9e066362bfde8cc15147 linux-3.0/drivers/scsi/qla4xxx/ql4_inline.h -b286b8dac2f683474a7f4af08d0f9e6c linux-3.0/drivers/scsi/qla4xxx/ql4_init.c -c30c3473b73672e90e8b992a67a184fb linux-3.0/drivers/scsi/qla4xxx/ql4_glbl.h -eb27064f7a5fd3070591b22cee6022ce linux-3.0/drivers/scsi/qla4xxx/ql4_fw.h -6c42e56b703cdab2d331a05a04aba8b9 linux-3.0/drivers/scsi/qla4xxx/ql4_def.h -c37a40463c86f0b18194b6a3c748c332 linux-3.0/drivers/scsi/qla4xxx/ql4_dbg.h -07f8dc6c833ff43807343322d6c1fb24 linux-3.0/drivers/scsi/qla4xxx/ql4_dbg.c -057d240f6b3f3509f953faaea7c848c1 linux-3.0/drivers/scsi/qla4xxx/ql4_attr.c -118fbaaed7fac8907f7511c042641603 linux-3.0/drivers/scsi/qla4xxx/Makefile -94dad33ac9bcbb9aa36b300ac5b183a2 linux-3.0/drivers/scsi/qla4xxx/Kconfig -231de9592b2cf10fe1d82782176de8bc linux-3.0/drivers/scsi/qla2xxx/qla_version.h -aaf13783adbe4b47f6367d6892c039a4 linux-3.0/drivers/scsi/qla2xxx/qla_sup.c -60e89f424cd958a14981bc7045cc70f3 linux-3.0/drivers/scsi/qla2xxx/qla_settings.h -35bae1876b1765acbdef23a4dd8c1539 linux-3.0/drivers/scsi/qla2xxx/qla_os.c -fffc44ae48423b969dc631937759cc4c linux-3.0/drivers/scsi/qla2xxx/qla_nx.h -09ed9e33a243f29f5ea9d58268669bcb linux-3.0/drivers/scsi/qla2xxx/qla_nx.c -654a0ff662531e8a01e776388a03bd81 linux-3.0/drivers/scsi/qla2xxx/qla_mid.c -67e33c9b493c245e817647440a10a2c6 linux-3.0/drivers/scsi/qla2xxx/qla_mbx.c -c355d2086278a383270c0efef28cd024 linux-3.0/drivers/scsi/qla2xxx/qla_isr.c -c56783803cb0415a8528691af020f981 linux-3.0/drivers/scsi/qla2xxx/qla_iocb.c -55a07d1410f810ab6ba7f127d8e976b5 linux-3.0/drivers/scsi/qla2xxx/qla_inline.h -6e651d0062566f1394813c170a7b4b51 linux-3.0/drivers/scsi/qla2xxx/qla_init.c -3d1ced1e5f12252e9325711310b508ca linux-3.0/drivers/scsi/qla2xxx/qla_gs.c -abf73c7a7b51c5949a27dfdbc740be70 linux-3.0/drivers/scsi/qla2xxx/qla_gbl.h -d978579ff8bf7bc8ea11c6417464ba9d linux-3.0/drivers/scsi/qla2xxx/qla_fw.h -a459ffbb874f500290604133dd88c3f9 linux-3.0/drivers/scsi/qla2xxx/qla_dfs.c -b7487fef667dc384e342edb52cc9ca3f linux-3.0/drivers/scsi/qla2xxx/qla_devtbl.h -49d911b1c59373e7201f571ac1437cf6 linux-3.0/drivers/scsi/qla2xxx/qla_def.h -3d444f7392f7f25c6b6acbacb1ce9599 linux-3.0/drivers/scsi/qla2xxx/qla_dbg.h -7509b03a9fbee86a49953f915627d7a1 linux-3.0/drivers/scsi/qla2xxx/qla_dbg.c -12772808ffa9780949736dcc5200d827 linux-3.0/drivers/scsi/qla2xxx/qla_bsg.h -b9e907ef578c1a51f50b5aed0add131e linux-3.0/drivers/scsi/qla2xxx/qla_bsg.c -906b1acb295bdb107010c718258d9e33 linux-3.0/drivers/scsi/qla2xxx/qla_attr.c -9df7746dee64bccf996ce3fe3ee6e95c linux-3.0/drivers/scsi/qla2xxx/Makefile -ec15bd1232655ae21b06be9fa6dd8773 linux-3.0/drivers/scsi/qla2xxx/Kconfig -b97995dc7b16ad84f4ec47f18125cda3 linux-3.0/drivers/scsi/qla1280.h -a41408189acdc594cb7b0fb5aae791bc linux-3.0/drivers/scsi/qla1280.c -d3840a15a030834d49b0f9b8a52f1658 linux-3.0/drivers/scsi/ps3rom.c -b1740147b3ecbdd9933587d70869478c linux-3.0/drivers/scsi/ppa.h -a76447c27167ee77db270d4b98c4a38a linux-3.0/drivers/scsi/ppa.c -0d419c51297be38168af0aada0103ddd linux-3.0/drivers/scsi/pmcraid.h -73cafc169a0a1b3562fe2886ea96f3fd linux-3.0/drivers/scsi/pmcraid.c -b58295db3782d5bd228a00ed1ed9285c linux-3.0/drivers/scsi/pm8001/pm8001_sas.h -82cf4db51db89147250b1bddacdafc66 linux-3.0/drivers/scsi/pm8001/pm8001_sas.c -30b6db7bb2a3bf763402413ee1114564 linux-3.0/drivers/scsi/pm8001/pm8001_init.c -1bf0c551b332675f8eaf74b94b123c5e linux-3.0/drivers/scsi/pm8001/pm8001_hwi.h -7be38407e41c10bc60c869924facf4e0 linux-3.0/drivers/scsi/pm8001/pm8001_hwi.c -b219c49e441c00fde3a783d7ca418c1f linux-3.0/drivers/scsi/pm8001/pm8001_defs.h -2d3bcb060cd479a701f7c4c4653f38c0 linux-3.0/drivers/scsi/pm8001/pm8001_ctl.h -84e70bc5d1df66980ce7f39d5e4b2beb linux-3.0/drivers/scsi/pm8001/pm8001_ctl.c -cefe715b1a7ae01acf2d15b0d6a283e9 linux-3.0/drivers/scsi/pm8001/pm8001_chips.h -97b775e17b3413bcd51666a08dab338e linux-3.0/drivers/scsi/pm8001/Makefile -2abaef2d7009cc830281bdbad75169a0 linux-3.0/drivers/scsi/pcmcia/sym53c500_cs.c -9e0fd3a48896ea6435ff3e11cc127215 linux-3.0/drivers/scsi/pcmcia/qlogic_stub.c -5ee14d3fefc8e7384352680a4b71491d linux-3.0/drivers/scsi/pcmcia/nsp_message.c -8338cfc07d5bfacffed685c0f1721e64 linux-3.0/drivers/scsi/pcmcia/nsp_io.h -7325859e77db2a1b59907d3c87b02c69 linux-3.0/drivers/scsi/pcmcia/nsp_debug.c -c160e291b73e29211e2b68c20dd3db34 linux-3.0/drivers/scsi/pcmcia/nsp_cs.h -bffc7a8b8482153dc48d163455d9a332 linux-3.0/drivers/scsi/pcmcia/nsp_cs.c -897b7138c3b05d6d2e1d837294cb8573 linux-3.0/drivers/scsi/pcmcia/fdomain_stub.c -c3eeb8fbb7bf2a5869263e8664ca5bb8 linux-3.0/drivers/scsi/pcmcia/fdomain_core.c -4f38fd97b592026a999db9694df16421 linux-3.0/drivers/scsi/pcmcia/aha152x_stub.c -3669909aa05540d3a68f36ad443b6889 linux-3.0/drivers/scsi/pcmcia/aha152x_core.c -56070c47edf8e11b3e3b9142b5c60a53 linux-3.0/drivers/scsi/pcmcia/Makefile -ee3c46166f8fa1764bbfb964457a0a1c linux-3.0/drivers/scsi/pcmcia/Kconfig -cdb158240e4b4e64b60c364b4b92b370 linux-3.0/drivers/scsi/pas16.h -a4103796dfb9f3b87c87d887a2085ce6 linux-3.0/drivers/scsi/pas16.c -22589efee3978b21716dc1a0688a855f linux-3.0/drivers/scsi/osst_options.h -cb3fe38021ed16e0a3a184ac3688641b linux-3.0/drivers/scsi/osst_detect.h -428dda1c1a74fda0d6fe5cb577873785 linux-3.0/drivers/scsi/osst.h -e4934f27cc5325f6c7a9ca592c55e55c linux-3.0/drivers/scsi/osst.c -6e7679a8737be2f8238fe75b7930f8e1 linux-3.0/drivers/scsi/osd/osd_uld.c -70c486d0861500a9f1e85b11b7ff0d94 linux-3.0/drivers/scsi/osd/osd_initiator.c -e4da7cac5e053662bd39e3040340bc0b linux-3.0/drivers/scsi/osd/osd_debug.h -4125cb7869381a351175f6ae53cf3e12 linux-3.0/drivers/scsi/osd/Kconfig -134b5ca5fefd060f0678dcaedfd8f6de linux-3.0/drivers/scsi/osd/Kbuild -3211d5af6d8bbe6dffc6eece9a8324aa linux-3.0/drivers/scsi/nsp32_io.h -a585ab73a702bfcdcfb43bb611531f77 linux-3.0/drivers/scsi/nsp32_debug.c -d46fa866033f8e18453fd31fe0cd813e linux-3.0/drivers/scsi/nsp32.h -e09577f0291a515fce46d586ff717dc2 linux-3.0/drivers/scsi/nsp32.c -aa58d5f58527062e24d870348ca4993d linux-3.0/drivers/scsi/ncr53c8xx.h -38cab20659d9b716180fa805a3cbc61b linux-3.0/drivers/scsi/ncr53c8xx.c -46e584cfd7fcfda6521999e92434aff7 linux-3.0/drivers/scsi/mvsas/mv_sas.h -7c40a15e0c772ceb4022b2fb47bbecaf linux-3.0/drivers/scsi/mvsas/mv_sas.c -02303fa5cb5c11245c11ea1c9177c11f linux-3.0/drivers/scsi/mvsas/mv_init.c -9c43fe989477be899358b2ad67962155 linux-3.0/drivers/scsi/mvsas/mv_defs.h -dd6aee9389ba68a8ed213b9f8fab0291 linux-3.0/drivers/scsi/mvsas/mv_chips.h -7501741f32c68fa73aeb5e1c37ce88bc linux-3.0/drivers/scsi/mvsas/mv_94xx.h -d7b034ee2e9ffd1ed9b6f2a7be1b0700 linux-3.0/drivers/scsi/mvsas/mv_94xx.c -c6867f9d216ea81ef0e29669f2b52e88 linux-3.0/drivers/scsi/mvsas/mv_64xx.h -dc719e5083d3caf3dc599d7fb3e17a67 linux-3.0/drivers/scsi/mvsas/mv_64xx.c -4fe03192fbd47c417e2cffa3c85acaef linux-3.0/drivers/scsi/mvsas/Makefile -eccb40c6d2f2f7f1c4ee87ae729c8701 linux-3.0/drivers/scsi/mvsas/Kconfig -d407ad1725e7e9cfc20cac2be5397244 linux-3.0/drivers/scsi/mvme16x_scsi.c -c85bb673718c0939d85d419a4a5d488a linux-3.0/drivers/scsi/mvme147.h -521cc5b953d5dfdda2e2b8d5890fa2d1 linux-3.0/drivers/scsi/mvme147.c -b2443d5928985a536c94be506f2c3683 linux-3.0/drivers/scsi/mpt2sas/mpt2sas_transport.c -f0861fbcf2032b7e3ce8530ab8155021 linux-3.0/drivers/scsi/mpt2sas/mpt2sas_scsih.c -0ae50c59021f3e428601b66f07142cc4 linux-3.0/drivers/scsi/mpt2sas/mpt2sas_debug.h -7b34ffe5ff43f8b813d877518053f15e linux-3.0/drivers/scsi/mpt2sas/mpt2sas_ctl.h -d1cd2407dd4685cff2e4699dbdf48c8f linux-3.0/drivers/scsi/mpt2sas/mpt2sas_ctl.c -0d3aaecda6b7b04e8bef6d70e125484a linux-3.0/drivers/scsi/mpt2sas/mpt2sas_config.c -e9973f4f43645c7a4ab0be185a795527 linux-3.0/drivers/scsi/mpt2sas/mpt2sas_base.h -1e1c0d822d07c09936e80764b1951075 linux-3.0/drivers/scsi/mpt2sas/mpt2sas_base.c -7e87a1f5a9fef9a84bbd88018ad1b590 linux-3.0/drivers/scsi/mpt2sas/mpi/mpi2_type.h -94afb826368f782a3bb88597b5207346 linux-3.0/drivers/scsi/mpt2sas/mpi/mpi2_tool.h -323af584bd71c01b32cbb9cea5fcce75 linux-3.0/drivers/scsi/mpt2sas/mpi/mpi2_sas.h -f18841a97eddbc37e1de06f0af464bf7 linux-3.0/drivers/scsi/mpt2sas/mpi/mpi2_raid.h -eedee8bac1eb6f17c8b839403a3d73d7 linux-3.0/drivers/scsi/mpt2sas/mpi/mpi2_ioc.h -76d547bcec643f30ca599e81df09bced linux-3.0/drivers/scsi/mpt2sas/mpi/mpi2_init.h -c503092bcf30eec1247268cf40a1f9a3 linux-3.0/drivers/scsi/mpt2sas/mpi/mpi2_cnfg.h -c2034003c98dd533e1d782db219da38c linux-3.0/drivers/scsi/mpt2sas/mpi/mpi2.h -849e016b46f98f213af9067a267643af linux-3.0/drivers/scsi/mpt2sas/Makefile -31816be20a315d836326880a75f20525 linux-3.0/drivers/scsi/mpt2sas/Kconfig -6894f3e31ac71c1230674af04e6965ac linux-3.0/drivers/scsi/mesh.h -72e82d1b7ddf721f703079093bdc40b1 linux-3.0/drivers/scsi/mesh.c -6a677e02eec8dd6593d207c2786f1df8 linux-3.0/drivers/scsi/megaraid/megaraid_sas_fusion.h -ef3df77cabdbc0fccf4d9eaca765a59f linux-3.0/drivers/scsi/megaraid/megaraid_sas_fusion.c -8b4e79aaa41229f67f325e442dd8f2a9 linux-3.0/drivers/scsi/megaraid/megaraid_sas_fp.c -5b7ecd791ef2278f42872eb0e9e8a302 linux-3.0/drivers/scsi/megaraid/megaraid_sas_base.c -015bfbdf9bebeebacbbc15dd42acd3d7 linux-3.0/drivers/scsi/megaraid/megaraid_sas.h -8aba584c1d3d6ec073b3107fd4fd5180 linux-3.0/drivers/scsi/megaraid/megaraid_mm.h -90a84d7220bc43e7e2a6f6d28b5da330 linux-3.0/drivers/scsi/megaraid/megaraid_mm.c -00d6e4bebc4054e704cee26c085c7a82 linux-3.0/drivers/scsi/megaraid/megaraid_mbox.h -f0addc397d4e265c51530384f28c26d2 linux-3.0/drivers/scsi/megaraid/megaraid_mbox.c -52f08f47c83b7d78744455690f12a44c linux-3.0/drivers/scsi/megaraid/megaraid_ioctl.h -6504090aad0b7439fe4f21747669671b linux-3.0/drivers/scsi/megaraid/mega_common.h -779dec8461b3347bbe4a86b191bb06ca linux-3.0/drivers/scsi/megaraid/mbox_defs.h -cb930ade67f0bc8ce4e89dc45b494ad2 linux-3.0/drivers/scsi/megaraid/Makefile -5231524e0cac9ec6c047bb1da06c932b linux-3.0/drivers/scsi/megaraid/Kconfig.megaraid -ed21c25b669c0a4d2d68673649be0432 linux-3.0/drivers/scsi/megaraid.h -d50c8caca140f3da541d29c50eb83ee3 linux-3.0/drivers/scsi/megaraid.c -26e16c52974d4cc53d6c867cd0b0d075 linux-3.0/drivers/scsi/mac_scsi.h -bdaaee784b319cefb1f069ff243c64f5 linux-3.0/drivers/scsi/mac_scsi.c -27ad00bd78f3a9949ad78e7bdfa0871a linux-3.0/drivers/scsi/mac_esp.c -bce8da72f70b6ee5664bf233bf10f454 linux-3.0/drivers/scsi/mac53c94.h -bbe94504f4154c2aab8662896f7168e6 linux-3.0/drivers/scsi/mac53c94.c -60ade33687c5323769f6e2930a66104e linux-3.0/drivers/scsi/lpfc/lpfc_vport.h -bfcc7872af409d9c8bad14d43221b2c8 linux-3.0/drivers/scsi/lpfc/lpfc_vport.c -fefb3283a541443c05e3eb33dc44981c linux-3.0/drivers/scsi/lpfc/lpfc_version.h -055aea7d6eee327dce42327e9c7fac7f linux-3.0/drivers/scsi/lpfc/lpfc_sli4.h -a1c44fa23e9034792752aea27acfbe00 linux-3.0/drivers/scsi/lpfc/lpfc_sli.h -dacd615f5ce277a80fe5edb5322eff58 linux-3.0/drivers/scsi/lpfc/lpfc_sli.c -e080b37aac39184395848cbca7230dfa linux-3.0/drivers/scsi/lpfc/lpfc_scsi.h -529e5c48d458548cedc1ece54f22c80b linux-3.0/drivers/scsi/lpfc/lpfc_scsi.c -c8f3744c818285ae0d48907ac21a4b07 linux-3.0/drivers/scsi/lpfc/lpfc_nportdisc.c -b594977a51aedc5757c2abbd1819f76f linux-3.0/drivers/scsi/lpfc/lpfc_nl.h -d195fac1cbf54f2f88a11e529b7eacad linux-3.0/drivers/scsi/lpfc/lpfc_mem.c -1650cfdb33bb9bf61da82551cbbef423 linux-3.0/drivers/scsi/lpfc/lpfc_mbox.c -5e4b42ddad12b12620bcdc67425ba215 linux-3.0/drivers/scsi/lpfc/lpfc_logmsg.h -5ae50f82a717410f439b39d0982af7a7 linux-3.0/drivers/scsi/lpfc/lpfc_init.c -c401f09f547b1075af3263a936c9cde7 linux-3.0/drivers/scsi/lpfc/lpfc_hw4.h -d5f727af856b6b709a364424bc766cd7 linux-3.0/drivers/scsi/lpfc/lpfc_hw.h -6270ea26a6616d5026fcf8410e646523 linux-3.0/drivers/scsi/lpfc/lpfc_hbadisc.c -16fc8cb4965efac73dffedcf30599feb linux-3.0/drivers/scsi/lpfc/lpfc_els.c -191f3240c64c0ae0be1718328064345d linux-3.0/drivers/scsi/lpfc/lpfc_disc.h -b97f01164e1616de2ca7da4f60c4b523 linux-3.0/drivers/scsi/lpfc/lpfc_debugfs.h -cf0d45fcdeb4693d6016ac0547656832 linux-3.0/drivers/scsi/lpfc/lpfc_debugfs.c -b6bb8e352b00aafb7e01745d0ab2f7c1 linux-3.0/drivers/scsi/lpfc/lpfc_ct.c -24e759b827c0fbe6853f71c674b8e2b1 linux-3.0/drivers/scsi/lpfc/lpfc_crtn.h -e8aa4e160791246e79ae0725ed634e6f linux-3.0/drivers/scsi/lpfc/lpfc_compat.h -dd3a1ec7b13365c09a7b74409e056aa1 linux-3.0/drivers/scsi/lpfc/lpfc_bsg.h -7684d637e423a2d1eadcd24aacddc3ad linux-3.0/drivers/scsi/lpfc/lpfc_bsg.c -0568da15fb0e935794a609fd98357cfc linux-3.0/drivers/scsi/lpfc/lpfc_attr.c -4f7d76eed25813ffa0fb84719c03af0b linux-3.0/drivers/scsi/lpfc/lpfc.h -3d89f59f29b7302e66a3a3f7fb25fbbb linux-3.0/drivers/scsi/lpfc/Makefile -fe43e19df426b42c78748913425671fb linux-3.0/drivers/scsi/libsrp.c -b1a7403f3b081d38f547198425787176 linux-3.0/drivers/scsi/libsas/sas_task.c -dbcd1f9a095bcea7958495d4f5ba0142 linux-3.0/drivers/scsi/libsas/sas_scsi_host.c -afbdb99df3f7e0f12398b52cf724db4e linux-3.0/drivers/scsi/libsas/sas_port.c -0a8ce60b7d4551fb775c229716c376b1 linux-3.0/drivers/scsi/libsas/sas_phy.c -ebe68124cf521bc66fcf05ef048f8b27 linux-3.0/drivers/scsi/libsas/sas_internal.h -824d12f88d961fb8d539b8a32c139795 linux-3.0/drivers/scsi/libsas/sas_init.c -9bea1e88b66cb22229690313db3e30af linux-3.0/drivers/scsi/libsas/sas_host_smp.c -83539a42d919eeb97ea5fc7b7f7044f0 linux-3.0/drivers/scsi/libsas/sas_expander.c -af9863f8b0ff9cff2c11b3d2cf159e73 linux-3.0/drivers/scsi/libsas/sas_event.c -0a82e75afabf3f794e276fa6adbac80b linux-3.0/drivers/scsi/libsas/sas_dump.h -130736f4437fb220cfcf5add6fb22947 linux-3.0/drivers/scsi/libsas/sas_dump.c -115f5798c2702961272d3c5f14c8894a linux-3.0/drivers/scsi/libsas/sas_discover.c -b2f58962923f8490a5112104b519322d linux-3.0/drivers/scsi/libsas/sas_ata.c -40f8539925eec83d79ebc723c2c70f7a linux-3.0/drivers/scsi/libsas/Makefile -76324a6a32238746f23f10f8593f2b5e linux-3.0/drivers/scsi/libsas/Kconfig -6087b1b7581df593733645ed30ad3ab3 linux-3.0/drivers/scsi/libiscsi_tcp.c -6ff419dc9ebc808b07bc6994cc325368 linux-3.0/drivers/scsi/libiscsi.c -cc6b7b5ba35a73ab3c267d1a752eb72b linux-3.0/drivers/scsi/libfc/fc_rport.c -a002abb66d45932ec689c094f0bf7c66 linux-3.0/drivers/scsi/libfc/fc_npiv.c -e5989e86d4cdece8b1deecca20c96bde linux-3.0/drivers/scsi/libfc/fc_lport.c -a86419a91212a036e8df625dc215aacb linux-3.0/drivers/scsi/libfc/fc_libfc.h -e82cd311356b2f750db75c23683ae439 linux-3.0/drivers/scsi/libfc/fc_libfc.c -e7b602439e4a911a2d440d10f8cf06db linux-3.0/drivers/scsi/libfc/fc_frame.c -73157023d0cd9f217cf68fdc57a1a0c7 linux-3.0/drivers/scsi/libfc/fc_fcp.c -18d3d764860bd6a65ac15184a9be794f linux-3.0/drivers/scsi/libfc/fc_exch.c -2f5fff16de298cc08cd859e51b391937 linux-3.0/drivers/scsi/libfc/fc_elsct.c -e42d1638c53c2749ede9997100873d5a linux-3.0/drivers/scsi/libfc/fc_disc.c -390097451f7c0428634f7869b6b952ac linux-3.0/drivers/scsi/libfc/Makefile -6ab06571d1880e85378f7730b6c04fa6 linux-3.0/drivers/scsi/lasi700.c -ba4ae86878522e11a102f3cf7fb11d80 linux-3.0/drivers/scsi/jazz_esp.c -46022105fe4e649815600d4413ac2129 linux-3.0/drivers/scsi/iscsi_tcp.h -00a708f6320e21a7ce8de8962dce2b2a linux-3.0/drivers/scsi/iscsi_tcp.c -f146d91b4ffbc71205fb36cd1866e127 linux-3.0/drivers/scsi/iscsi_boot_sysfs.c -1d03c6ce68f4e9e8395bb6fa0c68438d linux-3.0/drivers/scsi/isci/unsolicited_frame_control.h -4086f1930beaa759fe0d6d2afd6d816d linux-3.0/drivers/scsi/isci/unsolicited_frame_control.c -260a0213ed77947bebcb474c62a2b291 linux-3.0/drivers/scsi/isci/task.h -3c9be234ae485abd84b66dc8a3f4628e linux-3.0/drivers/scsi/isci/task.c -70d13d8d2e73d00f43d54e7e4fab6f5c linux-3.0/drivers/scsi/isci/scu_task_context.h -e750c75d5cdb822bd778dafb6292eddc linux-3.0/drivers/scsi/isci/scu_remote_node_context.h -03dfa347aa1b5b7b471e251db9137807 linux-3.0/drivers/scsi/isci/scu_event_codes.h -0ce602e16ce7dfaa445f2ccc673ecf3c linux-3.0/drivers/scsi/isci/scu_completion_codes.h -859395c8f2cfd4dff1c72ca721b3a7da linux-3.0/drivers/scsi/isci/sas.h -5c5be304cc6a557a7d7462326bba03e0 linux-3.0/drivers/scsi/isci/request.h -4bc27419c08af91dd7c2a52e1684865e linux-3.0/drivers/scsi/isci/request.c -3ca6d9c9bab8c65e769811d3649d956e linux-3.0/drivers/scsi/isci/remote_node_table.h -55a3cde6b6a8c85336d12433ff3fbe43 linux-3.0/drivers/scsi/isci/remote_node_table.c -8e82ad535ce6c22a6a70572bda4eb07d linux-3.0/drivers/scsi/isci/remote_node_context.h -372250ead5556c439bb13e1e3a1a2e6b linux-3.0/drivers/scsi/isci/remote_node_context.c -d20727e16d7d876196bc82192f8bca12 linux-3.0/drivers/scsi/isci/remote_device.h -ae6af362aeaad7a366b61cf390a2e650 linux-3.0/drivers/scsi/isci/remote_device.c -bb809f8894fc459161cbd9aa9fb2b69a linux-3.0/drivers/scsi/isci/registers.h -1b6231d05feb278682103eadd939364e linux-3.0/drivers/scsi/isci/probe_roms.h -01f1b8bb5b46c5cc2c0857666e6e4eeb linux-3.0/drivers/scsi/isci/probe_roms.c -acabd4e9ea6f0555244dfd2fce291109 linux-3.0/drivers/scsi/isci/port_config.c -ea36c2d363e6a7433b659880416e1c76 linux-3.0/drivers/scsi/isci/port.h -4232b02de98ea474c7c9f38d074b0bef linux-3.0/drivers/scsi/isci/port.c -cbc1c657c2e6bf3713a3e51b6aef6fac linux-3.0/drivers/scsi/isci/phy.h -d1c03fedce5030ba9ff4c38bd6d664a9 linux-3.0/drivers/scsi/isci/phy.c -c30935a92c34948e83f2690a5004a757 linux-3.0/drivers/scsi/isci/isci.h -2be7029ab91259431fbde5b6b989bea6 linux-3.0/drivers/scsi/isci/init.c -307f5c0292d38ac59e3f6d5238ce7a34 linux-3.0/drivers/scsi/isci/host.h -c46fa6dc5774e712f57ff36b2bf9a3fe linux-3.0/drivers/scsi/isci/host.c -797dad33288f98de08f5ead5d05784e0 linux-3.0/drivers/scsi/isci/firmware/create_fw.h -53d14b479376ef1d16d6f745454a0609 linux-3.0/drivers/scsi/isci/firmware/create_fw.c -c8f3e5a723d7b92f18029af6965cfbf2 linux-3.0/drivers/scsi/isci/firmware/README -9ef81f38dd5736dedcdcbc4a7045cf60 linux-3.0/drivers/scsi/isci/firmware/Makefile -f3ad7f76431d4b909c11cf28f5d83031 linux-3.0/drivers/scsi/isci/Makefile -60a01c1b70790081ae4075b964fcad57 linux-3.0/drivers/scsi/ips.h -20a73a5240fc2687fdef755514bf48e4 linux-3.0/drivers/scsi/ips.c -846a67265dd06185f55b4c0d781736b2 linux-3.0/drivers/scsi/ipr.h -a3c9960fbfa4f2d93bbe5151818f1931 linux-3.0/drivers/scsi/ipr.c -98947f663726449b7ffc27aa61bdb5a7 linux-3.0/drivers/scsi/initio.h -ea6e915fc02ffef3e1309099d3a19ac3 linux-3.0/drivers/scsi/initio.c -31258e7dd821b26f15cac43af3e3cce2 linux-3.0/drivers/scsi/in2000.h -5f7d74d39b73bd2c3f2fd10b3c42579a linux-3.0/drivers/scsi/in2000.c -e4c54204673aa76aa57be19ebc3225fc linux-3.0/drivers/scsi/imm.h -333e32f334a62c140411f005e332b75e linux-3.0/drivers/scsi/imm.c -ced92e3afb196d3a7392e6c45ee5286f linux-3.0/drivers/scsi/ibmvscsi/viosrp.h -7a820ffebdb3d2abb6343f15ba829171 linux-3.0/drivers/scsi/ibmvscsi/rpa_vscsi.c -4175f01653b0d767cc3171e224930499 linux-3.0/drivers/scsi/ibmvscsi/iseries_vscsi.c -85d6d29b58af3ae74b78a065a0901b3b linux-3.0/drivers/scsi/ibmvscsi/ibmvstgt.c -c7d159eb0d0e28b752cbb44fb833a32b linux-3.0/drivers/scsi/ibmvscsi/ibmvscsi.h -636fbcd4492d3272939aa714f637ca57 linux-3.0/drivers/scsi/ibmvscsi/ibmvscsi.c -f5ea9401792c12280ca1e9a3ba7f248e linux-3.0/drivers/scsi/ibmvscsi/ibmvfc.h -ad5922a1a8e04238825d56a83cc050d6 linux-3.0/drivers/scsi/ibmvscsi/ibmvfc.c -a8690996cae0b60594b544b740041988 linux-3.0/drivers/scsi/ibmvscsi/Makefile -1b92bb203c1e85e8a1dd9dd55781f36b linux-3.0/drivers/scsi/ibmmca.c -05fd17d907904f708d3f5e82271a64b7 linux-3.0/drivers/scsi/hptiop.h -9af260d5bafa1fbf83ac896b40af1c0a linux-3.0/drivers/scsi/hptiop.c -03112ad3034800cfce6c99e42637e9df linux-3.0/drivers/scsi/hpsa_cmd.h -de754b1f7f741f1bfbe9aa5cd372c580 linux-3.0/drivers/scsi/hpsa.h -b0ce724688d0699c3dacbca8dfbd5788 linux-3.0/drivers/scsi/hpsa.c -df6d8dc674cd2873604c38532c81dee0 linux-3.0/drivers/scsi/hosts.c -e6e33ec5262bd9a66148430452453c81 linux-3.0/drivers/scsi/gvp11.h -3494f96db1a5f26becca9b49cf01e495 linux-3.0/drivers/scsi/gvp11.c -f1de3093847b20bb8b99dbcef3abf368 linux-3.0/drivers/scsi/gdth_proc.h -f72d8740e10db634f330adfb7f815a61 linux-3.0/drivers/scsi/gdth_proc.c -fed0779afcf4d2db83f6323e45d09b5b linux-3.0/drivers/scsi/gdth_ioctl.h -8279b5ebf7babecdbfdfcd714e86eb65 linux-3.0/drivers/scsi/gdth.h -d0431cb2b76f26424ca4468c17e59efc linux-3.0/drivers/scsi/gdth.c -b03b7d6ef43a5873ba538c01d501f5a4 linux-3.0/drivers/scsi/g_NCR5380_mmio.c -ea3d6178acf117bd93061be1ea03aec4 linux-3.0/drivers/scsi/g_NCR5380.h -3b2812b81dd4a8e4ec4285b3fac06e37 linux-3.0/drivers/scsi/g_NCR5380.c -9b79b7a3543a9dbad94dd8bf17bc9040 linux-3.0/drivers/scsi/fnic/wq_enet_desc.h -aa266d4868617d23996890fbf9d7e2f2 linux-3.0/drivers/scsi/fnic/vnic_wq_copy.h -54a02224bea0a5c7b6917f6ea6e910a0 linux-3.0/drivers/scsi/fnic/vnic_wq_copy.c -09a90c6dd4fc27789559bd4b9a38f257 linux-3.0/drivers/scsi/fnic/vnic_wq.h -665a25c08a008bc63ee085f886fc1f95 linux-3.0/drivers/scsi/fnic/vnic_wq.c -6126cba018932581ba203aef9f3492e4 linux-3.0/drivers/scsi/fnic/vnic_stats.h -d7b71f1caefbb5ec4185cc30dd66ba2e linux-3.0/drivers/scsi/fnic/vnic_scsi.h -e4b6b95ed93a553d27bb298c7f2ae5a8 linux-3.0/drivers/scsi/fnic/vnic_rq.h -a44a083f3a511dbce8bfe5bbc657498a linux-3.0/drivers/scsi/fnic/vnic_rq.c -824441c1aee404107f6d46a1bb4ca6bd linux-3.0/drivers/scsi/fnic/vnic_resource.h -4e41552b76b09167c43138f96296e381 linux-3.0/drivers/scsi/fnic/vnic_nic.h -9b250117f958fc62d7d74228904eba88 linux-3.0/drivers/scsi/fnic/vnic_intr.h -df4a5294ae41922e3f0d4af7c5c345a7 linux-3.0/drivers/scsi/fnic/vnic_intr.c -0e6cfed7ec21e9127f1c043a0bb00cc8 linux-3.0/drivers/scsi/fnic/vnic_devcmd.h -32337e83c333f43abb6a6d0c6e114e86 linux-3.0/drivers/scsi/fnic/vnic_dev.h -a5be3df397083c39372bd1f5e10ea77d linux-3.0/drivers/scsi/fnic/vnic_dev.c -0354d68396c99ae8b43554ed72f166dc linux-3.0/drivers/scsi/fnic/vnic_cq_copy.h -46e2bb7575f159ccf46b6c21a4ed831c linux-3.0/drivers/scsi/fnic/vnic_cq.h -fdbdfefe688a695710ebc1fb419a7771 linux-3.0/drivers/scsi/fnic/vnic_cq.c -289304ac37ed99982921b585ad8ad1d3 linux-3.0/drivers/scsi/fnic/rq_enet_desc.h -9606ef6863004f7d8f87020dd849b1fc linux-3.0/drivers/scsi/fnic/fnic_scsi.c -9911ee2eaae415cb47a68cb96acc3f45 linux-3.0/drivers/scsi/fnic/fnic_res.h -4349cbc1a4d45de7f4d8b7101d449bba linux-3.0/drivers/scsi/fnic/fnic_res.c -f101f40669534297156eb51895fcb4fe linux-3.0/drivers/scsi/fnic/fnic_main.c -945298782a8a8c3d5a5f3c2f988324cb linux-3.0/drivers/scsi/fnic/fnic_isr.c -449b00fc62e41f245172edb89f573101 linux-3.0/drivers/scsi/fnic/fnic_io.h -e67e5ce30a38d4af3e20c9ce53e6af1d linux-3.0/drivers/scsi/fnic/fnic_fcs.c -7e98940950d899a167e8a33a2a9f017e linux-3.0/drivers/scsi/fnic/fnic_attrs.c -23f86b53496827a419b0b8ce3d74ad39 linux-3.0/drivers/scsi/fnic/fnic.h -05fade06d1bbef74152a95109f5e68d1 linux-3.0/drivers/scsi/fnic/fcpio.h -bf277c6a8728f5c96c687466bdc007e3 linux-3.0/drivers/scsi/fnic/cq_exch_desc.h -a142d8e378beddca00680f168c2c7fda linux-3.0/drivers/scsi/fnic/cq_enet_desc.h -b39283b1efde5966c67c9711adf0b88c linux-3.0/drivers/scsi/fnic/cq_desc.h -d7bec396ac35f2d25e189b4be2199398 linux-3.0/drivers/scsi/fnic/Makefile -dc06b3a6971895038fb558869d4504f1 linux-3.0/drivers/scsi/fdomain.h -354c3ece5861cf3e21e357d5938e9dab linux-3.0/drivers/scsi/fdomain.c -7d86d3f6e6f0f942285e3273e6f22fa4 linux-3.0/drivers/scsi/fd_mcs.c -6473e883d98cb4b97ba05f9278e780dc linux-3.0/drivers/scsi/fcoe/libfcoe.h -19d1959d1effbf5cfd9ce559aaf873f0 linux-3.0/drivers/scsi/fcoe/fcoe_transport.c -1fb3cec85cb0a8263cacaa6f42edfdd5 linux-3.0/drivers/scsi/fcoe/fcoe_ctlr.c -bf404502072a0af105261a5b4509f178 linux-3.0/drivers/scsi/fcoe/fcoe.h -4269a7553c8645fe2dafec0364d2c1f5 linux-3.0/drivers/scsi/fcoe/fcoe.c -3e018a0716068741244e4f4b9dc3cb28 linux-3.0/drivers/scsi/fcoe/Makefile -f58f002ff04d3f2f3b243906f1479647 linux-3.0/drivers/scsi/esp_scsi.h -4e9e571221678b03ead50aa43b91244c linux-3.0/drivers/scsi/esp_scsi.c -577c39440c63c67d27d87d3b262f5ba2 linux-3.0/drivers/scsi/eata_pio.h -d6245c0c6137082b84d8ca6ea3bebd1c linux-3.0/drivers/scsi/eata_pio.c -9b2068c9fd7f63af52eb95a08c7a48ba linux-3.0/drivers/scsi/eata_generic.h -d0aff93b33195841308f9070967c6fb9 linux-3.0/drivers/scsi/eata.c -8066c63920ae2c373fff1fd5aff69c89 linux-3.0/drivers/scsi/dtc.h -ca6f29d3b415372720e5d8de58a635ba linux-3.0/drivers/scsi/dtc.c -b6497c7ed9c86acf6b35295596cbc598 linux-3.0/drivers/scsi/dpti.h -9f0b0c7753b142e5c16d5d43ea18fc00 linux-3.0/drivers/scsi/dpt_i2o.c -563d54fb8301bbc57175363cdbe08e10 linux-3.0/drivers/scsi/dpt/sys_info.h -391f27aa0e67062a421d4a8e58cfca81 linux-3.0/drivers/scsi/dpt/osd_util.h -3829d9db891c3ad014db1e8eccdf79a4 linux-3.0/drivers/scsi/dpt/osd_defs.h -51a8c1962395971acd8a103a4ab1d7e3 linux-3.0/drivers/scsi/dpt/dptsig.h -b5569a8ebe0dc6e851f1f4b6761404fb linux-3.0/drivers/scsi/dpt/dpti_ioctl.h -afb829c54222c808e514b5eaaf147a64 linux-3.0/drivers/scsi/dpt/dpti_i2o.h -ff2201cbd2db0f5b2b55148611fc36d7 linux-3.0/drivers/scsi/dmx3191d.c -7eff1ddb6174a51b36d24b95e0429d64 linux-3.0/drivers/scsi/device_handler/scsi_dh_rdac.c -c9473f37f247edd2f55254ec536ab846 linux-3.0/drivers/scsi/device_handler/scsi_dh_hp_sw.c -bfba98d80b90019f3ac65702a866af7a linux-3.0/drivers/scsi/device_handler/scsi_dh_emc.c -a8ca123a6393b99149201bfc5a8474cb linux-3.0/drivers/scsi/device_handler/scsi_dh_alua.c -86ef50d8d5797d503ff2f38930139e8b linux-3.0/drivers/scsi/device_handler/scsi_dh.c -f8a2c4266bdda38d7419b5d970f5748f linux-3.0/drivers/scsi/device_handler/Makefile -5710dcb81bab1c20ed6900fa8636df55 linux-3.0/drivers/scsi/device_handler/Kconfig -0e2f7c5f71a35bb5c6dc0ed5f69c7190 linux-3.0/drivers/scsi/dc395x.h -e7bac8a1571b4c9b60853db4d94e2916 linux-3.0/drivers/scsi/dc395x.c -4b72b1e49196fda4f2a6198ebb4b0283 linux-3.0/drivers/scsi/cxgbi/libcxgbi.h -ebe76d052fb4aa34ae54c2d146742274 linux-3.0/drivers/scsi/cxgbi/libcxgbi.c -4000fb07b77ff7a508a3e3168b87fa17 linux-3.0/drivers/scsi/cxgbi/cxgb4i/cxgb4i.h -36dba292004219784be111df884d8062 linux-3.0/drivers/scsi/cxgbi/cxgb4i/cxgb4i.c -482f55d364b238da23efcddc07a22ca4 linux-3.0/drivers/scsi/cxgbi/cxgb4i/Kconfig -f2a0e6d4c29a39850b72f1005f14be74 linux-3.0/drivers/scsi/cxgbi/cxgb4i/Kbuild -b9c98ff0e9d5a6c186293cc208ed981e linux-3.0/drivers/scsi/cxgbi/cxgb3i/cxgb3i.h -a68430f11e557c0ea7b067e90b313c78 linux-3.0/drivers/scsi/cxgbi/cxgb3i/cxgb3i.c -362c2be95a76f670b91a68daf6f815ed linux-3.0/drivers/scsi/cxgbi/cxgb3i/Kconfig -983ef43747f1c94f5aa08004515d8e1b linux-3.0/drivers/scsi/cxgbi/cxgb3i/Kbuild -5902a713b06b48e8fdbafcedd29d4605 linux-3.0/drivers/scsi/cxgbi/Makefile -0fd6ce1f0f981a1081e98e4a4689ec06 linux-3.0/drivers/scsi/cxgbi/Kconfig -94a2740ef5b3fe4f8814299e7b615797 linux-3.0/drivers/scsi/constants.c -a376abb152954bdd915733d5874a396a linux-3.0/drivers/scsi/ch.c -1b885925ffa3fc15b84ab6ce1c3d55e4 linux-3.0/drivers/scsi/bvme6000_scsi.c -5998283909ab78c44b1e80468ba9954d linux-3.0/drivers/scsi/bnx2i/bnx2i_sysfs.c -fbd150b18310aa86dbc7ab9360842ce3 linux-3.0/drivers/scsi/bnx2i/bnx2i_iscsi.c -25d280c372f9b696408daa7d4a7a0d56 linux-3.0/drivers/scsi/bnx2i/bnx2i_init.c -f94dd012518b5235c717f44f51c570b8 linux-3.0/drivers/scsi/bnx2i/bnx2i_hwi.c -4e250422c32e3c12f5aed74e3d075a68 linux-3.0/drivers/scsi/bnx2i/bnx2i.h -261fc52c93f7c6f52ef2c4d95cc85f1f linux-3.0/drivers/scsi/bnx2i/Makefile -19b0d443fe060ffcc3d9b89202622587 linux-3.0/drivers/scsi/bnx2i/Kconfig -7641be132e558b560e6858b4fa9a7496 linux-3.0/drivers/scsi/bnx2i/57xx_iscsi_hsi.h -062891fed31a59b21701b40ab0d2f6e3 linux-3.0/drivers/scsi/bnx2i/57xx_iscsi_constants.h -2602d9d8341141e0e51828149d1bbb96 linux-3.0/drivers/scsi/bnx2fc/bnx2fc_tgt.c -cb6da086465927cac4b55ac54e812ccc linux-3.0/drivers/scsi/bnx2fc/bnx2fc_io.c -2c2f860fe28d1a46abe2186cb9b73f34 linux-3.0/drivers/scsi/bnx2fc/bnx2fc_hwi.c -2a7e5a28dc916c361fce700755442f90 linux-3.0/drivers/scsi/bnx2fc/bnx2fc_fcoe.c -5c04a4c232411af753e5dade735fed1e linux-3.0/drivers/scsi/bnx2fc/bnx2fc_els.c -cbf115d6b246f5f67f16cf94dd2b9de4 linux-3.0/drivers/scsi/bnx2fc/bnx2fc_debug.h -069015e9c320e6e58f13d8971faf0c18 linux-3.0/drivers/scsi/bnx2fc/bnx2fc_constants.h -f8d9421014bd01972601585339258cfd linux-3.0/drivers/scsi/bnx2fc/bnx2fc.h -73d173d1a5f0bfff4658c563ea78da43 linux-3.0/drivers/scsi/bnx2fc/Makefile -193adae105fc5aec28396bb99749f070 linux-3.0/drivers/scsi/bnx2fc/Kconfig -be05c04f7f0c26a609c951764e9287c2 linux-3.0/drivers/scsi/bnx2fc/57xx_hsi_bnx2fc.h -06729087703e2951823ec9c0d62219de linux-3.0/drivers/scsi/bfa/bfi_ms.h -7fd500663ff208709a4bbc3e7afb6b80 linux-3.0/drivers/scsi/bfa/bfi_ctreg.h -b5a0bb3b96a22c98a9a72d18be7d2d3e linux-3.0/drivers/scsi/bfa/bfi_cbreg.h -cd11e2f60458a9d92fb9a2824cc49ab3 linux-3.0/drivers/scsi/bfa/bfi.h -c9c6a01e9ea3a33b49c590cdc2daf2ab linux-3.0/drivers/scsi/bfa/bfad_im.h -14d7cd47a352a7099e8ad8b7d645b075 linux-3.0/drivers/scsi/bfa/bfad_im.c -30cc1f987f49854beb6f7334db835f38 linux-3.0/drivers/scsi/bfa/bfad_drv.h -2b21b795f8b52c1bb3d8a32f149ab5c4 linux-3.0/drivers/scsi/bfa/bfad_debugfs.c -63f7bb2be0d94c7db15448ffcd564286 linux-3.0/drivers/scsi/bfa/bfad_attr.c -1448b074f79ba0beaf82b23a519cbc03 linux-3.0/drivers/scsi/bfa/bfad.c -6e4d177f56d1dd3a868c43253536a838 linux-3.0/drivers/scsi/bfa/bfa_svc.h -414f78460a148d1381a9a6f117a22504 linux-3.0/drivers/scsi/bfa/bfa_svc.c -7cbe28bf39349e3ab43099181977bbb8 linux-3.0/drivers/scsi/bfa/bfa_port.h -0e687cebb4ae5b5d6148c1ef0da35a9a linux-3.0/drivers/scsi/bfa/bfa_port.c -e8ca40db3e287bb62ae8837021c99406 linux-3.0/drivers/scsi/bfa/bfa_plog.h -00d76b24b9c586572d24c5720e7a8626 linux-3.0/drivers/scsi/bfa/bfa_modules.h -29aaa2f13322ca40f92ef934043074da linux-3.0/drivers/scsi/bfa/bfa_ioc_ct.c -c590c19d761a3e89658cef19363a87da linux-3.0/drivers/scsi/bfa/bfa_ioc_cb.c -a8245debbf1f32e838cef45abca9590d linux-3.0/drivers/scsi/bfa/bfa_ioc.h -4aed577b440bf9f50b334786fc305bbd linux-3.0/drivers/scsi/bfa/bfa_ioc.c -83e060ce384c1b3871e76378a5e858d4 linux-3.0/drivers/scsi/bfa/bfa_hw_ct.c -34f271ae9f24c54a41b5065c2b0c32d6 linux-3.0/drivers/scsi/bfa/bfa_hw_cb.c -4299b5fb99d5a1af4932c124128f5c49 linux-3.0/drivers/scsi/bfa/bfa_fcs_rport.c -40f916dbf0df9a9670414a34b085c4f1 linux-3.0/drivers/scsi/bfa/bfa_fcs_lport.c -3daa44a9ca2027c3f52ab371e6e5e74c linux-3.0/drivers/scsi/bfa/bfa_fcs_fcpim.c -8f1fe752ed97f98e83c7191765f3aef6 linux-3.0/drivers/scsi/bfa/bfa_fcs.h -296ce93417ab93f3c82c2bbe020c2587 linux-3.0/drivers/scsi/bfa/bfa_fcs.c -68ba061b15b6294e03051bedaf735248 linux-3.0/drivers/scsi/bfa/bfa_fcpim.h -0db531ac6d138fc0958c9676afadf1c6 linux-3.0/drivers/scsi/bfa/bfa_fcpim.c -34059e017464540bf38ba458c76c44ea linux-3.0/drivers/scsi/bfa/bfa_fcbuild.h -3cb48983e290d378efa5eae2b9594d4c linux-3.0/drivers/scsi/bfa/bfa_fcbuild.c -aeb3807ad43b9a50cac9454702ab3758 linux-3.0/drivers/scsi/bfa/bfa_fc.h -db1ac46d90d58fbc6e9b0c203ea7ea3d linux-3.0/drivers/scsi/bfa/bfa_defs_svc.h -f3abaf09c287fb1eb0d03bc8353a21cf linux-3.0/drivers/scsi/bfa/bfa_defs_fcs.h -fc7920fe368d87283da66564886b5fc8 linux-3.0/drivers/scsi/bfa/bfa_defs.h -818e496e6f6b350296b2e82184576b98 linux-3.0/drivers/scsi/bfa/bfa_cs.h -d6b3e0dc28bcd342027bb1b8005597ba linux-3.0/drivers/scsi/bfa/bfa_core.c -d9a8a52011cba26dad1d3686b1e6a7d1 linux-3.0/drivers/scsi/bfa/bfa.h -04f90b18b67c632537b94ced2206a9eb linux-3.0/drivers/scsi/bfa/Makefile -b0f426ee8e1c3e001cf29b57a8ec8232 linux-3.0/drivers/scsi/be2iscsi/be_mgmt.h -d6834d37c8ef1b76cd77bdfc0c4e4061 linux-3.0/drivers/scsi/be2iscsi/be_mgmt.c -a8ae73bf6b7ff1d9f7f6e8040ee5807d linux-3.0/drivers/scsi/be2iscsi/be_main.h -38a89642bc7b6e28cccf4a21c6822d5c linux-3.0/drivers/scsi/be2iscsi/be_main.c -2e3339203e79a96788517ae7cb36446c linux-3.0/drivers/scsi/be2iscsi/be_iscsi.h -3f12a2d1960061e4dc6cdd6447bbcb23 linux-3.0/drivers/scsi/be2iscsi/be_iscsi.c -63d90ad64d75c41bc25dd3d7165ba25d linux-3.0/drivers/scsi/be2iscsi/be_cmds.h -93308548ecf6bcb147818c1d15258075 linux-3.0/drivers/scsi/be2iscsi/be_cmds.c -6dbeb4108b6eaf44c28c853b1a8b8f82 linux-3.0/drivers/scsi/be2iscsi/be.h -1ed8782583eac1ff00a675b76566f8d1 linux-3.0/drivers/scsi/be2iscsi/Makefile -0dab3fe71d78757ec08e0dd23d0570bc linux-3.0/drivers/scsi/be2iscsi/Kconfig -5be0df4ab5f31b7528e33b5cdd9e6451 linux-3.0/drivers/scsi/atp870u.h -092fd8ac7d13de4e2fe377f89638109c linux-3.0/drivers/scsi/atp870u.c -abdab513054cc18105304568673dacde linux-3.0/drivers/scsi/atari_scsi.h -12eadad8ae81b92793eb42348e7088fc linux-3.0/drivers/scsi/atari_scsi.c -a8e27332bccac6dc09469bef205c99f1 linux-3.0/drivers/scsi/atari_NCR5380.c -b25aa08463c2c23307e1890ee3a3a737 linux-3.0/drivers/scsi/arm/scsi.h -34d299c7e0578cd0f731d15265ec7cc9 linux-3.0/drivers/scsi/arm/queue.h -a469d11425735b059ee858028685778e linux-3.0/drivers/scsi/arm/queue.c -51b4e0524d54ad6ee10b6f54d952c620 linux-3.0/drivers/scsi/arm/powertec.c -39948a25056b8b7c5690b090ab774550 linux-3.0/drivers/scsi/arm/oak.c -de452c6724cffd0a162d1b31619e23b8 linux-3.0/drivers/scsi/arm/msgqueue.h -f9f2554be6b39738236b8eb75834e15b linux-3.0/drivers/scsi/arm/msgqueue.c -0c6651436bfe523c60bc9e0972ea8b3a linux-3.0/drivers/scsi/arm/fas216.h -d924dbfc5981f67bd429c165493c6814 linux-3.0/drivers/scsi/arm/fas216.c -da9bfda3e7cca77ac6ce26f80fcae9f4 linux-3.0/drivers/scsi/arm/eesox.c -f423a437ff49ab72dd5e7abb8c618032 linux-3.0/drivers/scsi/arm/cumana_2.c -5ebf05bce69055d476a01ea4ec1f5127 linux-3.0/drivers/scsi/arm/cumana_1.c -63f9c5e9553dfe17f6a37aa8bbb48af1 linux-3.0/drivers/scsi/arm/arxescsi.c -0efab60fdfc81c7db682c6e21c786c4f linux-3.0/drivers/scsi/arm/acornscsi.h -7554a1be8ee5c2eef0a59b4616a125f1 linux-3.0/drivers/scsi/arm/acornscsi.c -2586a4561ca123618d6e4794c31386c7 linux-3.0/drivers/scsi/arm/acornscsi-io.S -9fdb7caf2373929e0e63b1281d281e44 linux-3.0/drivers/scsi/arm/Makefile -65ec0d063eed24780c8b47e628c37eb2 linux-3.0/drivers/scsi/arm/Kconfig -71c5bf8d4cef293754d758394b917ece linux-3.0/drivers/scsi/arcmsr/arcmsr_hba.c -fdfc4ee2a2db8081ccd44446f9b5d9e1 linux-3.0/drivers/scsi/arcmsr/arcmsr_attr.c -d1627f70275230c8dbc2a4d4ac667da6 linux-3.0/drivers/scsi/arcmsr/arcmsr.h -a57b2d58f1b7e07a6f39333bf477f598 linux-3.0/drivers/scsi/arcmsr/Makefile -082e8100f8568d1adb833fadba0651ce linux-3.0/drivers/scsi/aic94xx/aic94xx_tmf.c -c85237a24cd61589cc97d600898dca71 linux-3.0/drivers/scsi/aic94xx/aic94xx_task.c -f7a075fbaed5a4c3b57d40b763fc1476 linux-3.0/drivers/scsi/aic94xx/aic94xx_seq.h -237f6b89f1758c2fdccbc7194f10f701 linux-3.0/drivers/scsi/aic94xx/aic94xx_seq.c -1a23cf2ed913020a15ed8621d412b90f linux-3.0/drivers/scsi/aic94xx/aic94xx_sds.h -36d8bc9ebbc81cede86611fc0d5a649f linux-3.0/drivers/scsi/aic94xx/aic94xx_sds.c -b35d36c7b21d06b367c4b7581cfa40ae linux-3.0/drivers/scsi/aic94xx/aic94xx_scb.c -7431ee898404358260d12b3e1a089728 linux-3.0/drivers/scsi/aic94xx/aic94xx_sas.h -35de2ee872da540bb1286c360ae1f4e9 linux-3.0/drivers/scsi/aic94xx/aic94xx_reg_def.h -a9a3e66d1bd18fca0908b28f6c6b9d32 linux-3.0/drivers/scsi/aic94xx/aic94xx_reg.h -53ec53d5f9b2fe74e52878c48b7b516c linux-3.0/drivers/scsi/aic94xx/aic94xx_reg.c -742acb6690397b1a7dedfddc610680d1 linux-3.0/drivers/scsi/aic94xx/aic94xx_init.c -9e743572923812b036d9ebb1de0d1d71 linux-3.0/drivers/scsi/aic94xx/aic94xx_hwi.h -2ac474f42805f3e1fa298091b385b033 linux-3.0/drivers/scsi/aic94xx/aic94xx_hwi.c -660e69cae8369c498dd799381e4515ce linux-3.0/drivers/scsi/aic94xx/aic94xx_dump.h -5e90e92e53187a72181dc66b7fbc21b4 linux-3.0/drivers/scsi/aic94xx/aic94xx_dump.c -a1f52e7033768b815c4f229a83ad6aab linux-3.0/drivers/scsi/aic94xx/aic94xx_dev.c -f5da93d3445acf330444306e4424981f linux-3.0/drivers/scsi/aic94xx/aic94xx.h -1d2edb29910fd65b86cf98b72a4ab7da linux-3.0/drivers/scsi/aic94xx/Makefile -a6ddfd4b9577d2df64c58c337921f17b linux-3.0/drivers/scsi/aic94xx/Kconfig -dee8020074f7c1ea8480965f31a97c6e linux-3.0/drivers/scsi/aic7xxx_old/sequencer.h -2287a6bef62a311ecaa278c047eb8d72 linux-3.0/drivers/scsi/aic7xxx_old/scsi_message.h -9befcb8733394480acd844b48dab14d7 linux-3.0/drivers/scsi/aic7xxx_old/aic7xxx_seq.c -8865bcb5a4e9edbe3481cbf895729eab linux-3.0/drivers/scsi/aic7xxx_old/aic7xxx_reg.h -148c3f431861e5f9d6b129610fc7da21 linux-3.0/drivers/scsi/aic7xxx_old/aic7xxx_proc.c -434485eaf436601a9ea827ce8dec743e linux-3.0/drivers/scsi/aic7xxx_old/aic7xxx.seq -473e63266ca64bbe3e20b32a554b63b6 linux-3.0/drivers/scsi/aic7xxx_old/aic7xxx.reg -de6c5c79c27445212f2be2194812728b linux-3.0/drivers/scsi/aic7xxx_old/aic7xxx.h -3a96e998ec58cd649bfe1378a204a5b6 linux-3.0/drivers/scsi/aic7xxx_old.c -9f2b157a8618370b6cfbbadc5c542f4e linux-3.0/drivers/scsi/aic7xxx/scsi_message.h -0111978793d440ac37691e06bb36387e linux-3.0/drivers/scsi/aic7xxx/scsi_iu.h -bce396571527b2d636677a7ad902b0d5 linux-3.0/drivers/scsi/aic7xxx/queue.h -644fa24071381e6803810f8a996426c5 linux-3.0/drivers/scsi/aic7xxx/cam.h -61ebd627ba88b515bcb5a1a2bc1d1afe linux-3.0/drivers/scsi/aic7xxx/aiclib.h -dfbdb3db4325cac1154991451fe42cd8 linux-3.0/drivers/scsi/aic7xxx/aiclib.c -bc8f3467b7de871c107b6e3078383bc8 linux-3.0/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h -ea0a150aaa13e397eed90590cdceae5a linux-3.0/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.c -f0e2885b2e1868d41421fbaef4da2263 linux-3.0/drivers/scsi/aic7xxx/aicasm/aicasm_scan.l -4df8060f2e0599d4c36ec73e7d943ece linux-3.0/drivers/scsi/aic7xxx/aicasm/aicasm_macro_scan.l -6cdb5563a482e91a11cd53347c340c9c linux-3.0/drivers/scsi/aic7xxx/aicasm/aicasm_macro_gram.y -05960061c10bf83bf24b116f4c5e4ae0 linux-3.0/drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h -287246cbd1da14cdc5a6670cbb3c96a6 linux-3.0/drivers/scsi/aic7xxx/aicasm/aicasm_gram.y -611b12a1e05f9625c0bbbe214f907791 linux-3.0/drivers/scsi/aic7xxx/aicasm/aicasm.h -b41125191872345514148bd8d14f2a39 linux-3.0/drivers/scsi/aic7xxx/aicasm/aicasm.c -76c1ee3e85c68baacb87bc2b06ea3f88 linux-3.0/drivers/scsi/aic7xxx/aicasm/Makefile -c57aadf65a5e75b715e0953e89cf135f linux-3.0/drivers/scsi/aic7xxx/aic7xxx_seq.h_shipped -c340ff6cfe14f73b509f71b984f29599 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_reg_print.c_shipped -3f5c9da7ec9df0d9789553c014b9b0d5 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_reg.h_shipped -1bb15bf470f4e1a3c66cd27f19d7c40d linux-3.0/drivers/scsi/aic7xxx/aic7xxx_proc.c -7e01ab7d9915b5de2fe38e367e78df08 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_pci.h -b88fc9a59ec1ea98d7fa3109d4da8f37 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_pci.c -52cabc25e7740bc5f844184ee8004252 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c -dce62bd16103bb1e01acdd79663b99e9 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_osm.h -f492cf31499d3ec91a55cda32782a7b1 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_osm.c -1a64a2fca2b22d596e3bc3d972a81e1b linux-3.0/drivers/scsi/aic7xxx/aic7xxx_inline.h -ecf588b474a7bf3732aca5b2fe0f3c10 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_core.c -b5af1fecc82cce0b0ed7d3a5cad9abb8 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_93cx6.h -0959fcfd45ae43a18b168072610f1180 linux-3.0/drivers/scsi/aic7xxx/aic7xxx_93cx6.c -7b00c170f4e73aeb6c0494c1cace2628 linux-3.0/drivers/scsi/aic7xxx/aic7xxx.seq -51e7c69fff3ba147c9e691fac8f643e3 linux-3.0/drivers/scsi/aic7xxx/aic7xxx.reg -256693e8ad9549b0d9ce80394a1245ee linux-3.0/drivers/scsi/aic7xxx/aic7xxx.h -b5fa1d3770df5097810b9f7fdb08b207 linux-3.0/drivers/scsi/aic7xxx/aic79xx_seq.h_shipped -bf1b104bbb95009da12a45021938abaa linux-3.0/drivers/scsi/aic7xxx/aic79xx_reg_print.c_shipped -0983dc7088fe96368ca9c7aac82cc558 linux-3.0/drivers/scsi/aic7xxx/aic79xx_reg.h_shipped -12e2f718228a2a1a3d7b6687ce016e99 linux-3.0/drivers/scsi/aic7xxx/aic79xx_proc.c -06233698aa06ddc5ab83c17c7eaccb03 linux-3.0/drivers/scsi/aic7xxx/aic79xx_pci.h -fe9b5ae992b9d5bcff0b122a7aad57b3 linux-3.0/drivers/scsi/aic7xxx/aic79xx_pci.c -fe94fd60bedf06240caa8534201a06d1 linux-3.0/drivers/scsi/aic7xxx/aic79xx_osm_pci.c -fbc94915aa324df2d2d24539baeec63f linux-3.0/drivers/scsi/aic7xxx/aic79xx_osm.h -607994b9c9a60a13cf26c951ee879d9f linux-3.0/drivers/scsi/aic7xxx/aic79xx_osm.c -2c5a55517e75cb8bcf76e7937eb3280d linux-3.0/drivers/scsi/aic7xxx/aic79xx_inline.h -2241b0c8aafb08b818da086d1596a84d linux-3.0/drivers/scsi/aic7xxx/aic79xx_core.c -4fddf587937e584e9355b7002850f6a1 linux-3.0/drivers/scsi/aic7xxx/aic79xx.seq -939fbb67f0ef55ff17b74cebc6b5c0aa linux-3.0/drivers/scsi/aic7xxx/aic79xx.reg -b785fb9a6cf86f7682c17c854775fa32 linux-3.0/drivers/scsi/aic7xxx/aic79xx.h -1ff0c4e6c54ff7eae177bb1ac42cadc6 linux-3.0/drivers/scsi/aic7xxx/aic7770_osm.c -107fcc14e86df384bc0186120c33993d linux-3.0/drivers/scsi/aic7xxx/aic7770.c -d8bf1c2187298acdb63169838bdc2c7e linux-3.0/drivers/scsi/aic7xxx/Makefile -578656eb85263dd9c4419349a37609dc linux-3.0/drivers/scsi/aic7xxx/Kconfig.aic7xxx -95edc4aad9332401aa376d3afd41968b linux-3.0/drivers/scsi/aic7xxx/Kconfig.aic79xx -72a533285fcda8268532e1b912e80002 linux-3.0/drivers/scsi/aic7xxx/.gitignore -c2cae6fbbf297f596135e2aa0ba0e1cc linux-3.0/drivers/scsi/aha1740.h -ceea5a8a93a6199c621294d10bfd83e3 linux-3.0/drivers/scsi/aha1740.c -32666978ef51405ac85f0dff56e507c6 linux-3.0/drivers/scsi/aha1542.h -b23e5a1d478d5542353164a5b774b1a6 linux-3.0/drivers/scsi/aha1542.c -44d474cf3ffa3c5304d901cf96bcc605 linux-3.0/drivers/scsi/aha152x.h -e388418dceeef70ae012d5e77e413ebf linux-3.0/drivers/scsi/aha152x.c -d39cdbc65910bddec364e7ae5389d4b0 linux-3.0/drivers/scsi/advansys.c -71cb1d651378585f202fe6d18a9968d2 linux-3.0/drivers/scsi/aacraid/src.c -2175058b77e6b19dcbf68a88210be46e linux-3.0/drivers/scsi/aacraid/sa.c -36d583075eff6f0dcd728f1d02e100ab linux-3.0/drivers/scsi/aacraid/rx.c -98cf0500c6c9c2421d1325f9fe9d049e linux-3.0/drivers/scsi/aacraid/rkt.c -cbe7a7d62b9b6498fe411bdcd3ec61ac linux-3.0/drivers/scsi/aacraid/nark.c -f75b56af35b3c186f73398e5c2432a01 linux-3.0/drivers/scsi/aacraid/linit.c -37fb90c8605625c9c204df146061310c linux-3.0/drivers/scsi/aacraid/dpcsup.c -a9a1659535b8dfc1b79a197884901372 linux-3.0/drivers/scsi/aacraid/commsup.c -5061da5ac50435136c68d4541f624a5d linux-3.0/drivers/scsi/aacraid/comminit.c -a36144ab1cda2a8f47f263cec8c5808a linux-3.0/drivers/scsi/aacraid/commctrl.c -60629beb8ec8e28a360ee17f44bb21eb linux-3.0/drivers/scsi/aacraid/aacraid.h -04353e59cc41964884aa96480163d761 linux-3.0/drivers/scsi/aacraid/aachba.c -00a11195baf9da80124989211a6e4909 linux-3.0/drivers/scsi/aacraid/TODO -9003642af17241a7a3dd24f5df1a3bf1 linux-3.0/drivers/scsi/aacraid/Makefile -d6cce66a5ff157c6b19b25f4f2e9bfa7 linux-3.0/drivers/scsi/a4000t.c -7c94b44b9c9e3dc99366ae8bda89f498 linux-3.0/drivers/scsi/a3000.h -e30b09b8381f295e652089414b77acd6 linux-3.0/drivers/scsi/a3000.c -7cddfede5fff1abb02c66613e20063df linux-3.0/drivers/scsi/a2091.h -0fe89d2b64b94006132dcba4bfca9df7 linux-3.0/drivers/scsi/a2091.c -14952704d085f7b5a6aff98b1ea39d5c linux-3.0/drivers/scsi/a100u2w.h -4388983699eed60dd06ac6cb54725eaa linux-3.0/drivers/scsi/a100u2w.c -09149099670ad38cc73035cec19d5a72 linux-3.0/drivers/scsi/NCR_Q720.h -a25b74efae649d25b06371b556c17562 linux-3.0/drivers/scsi/NCR_Q720.c -71fa213c7949f2c1db7cccd6109b6b9e linux-3.0/drivers/scsi/NCR_D700.h -b6a7cbe96ac2479282bb590bfc767cbc linux-3.0/drivers/scsi/NCR_D700.c -27426249a2f26f582fee000b69f0cd5a linux-3.0/drivers/scsi/NCR53c406a.c -b6a13d5ec14206eef37e700c8e1a5126 linux-3.0/drivers/scsi/NCR5380.h -91f816d8c18ee43469ba9afd085ea3a6 linux-3.0/drivers/scsi/NCR5380.c -62b0e4201851e3a9820a9a4608e93dd3 linux-3.0/drivers/scsi/Makefile -ac6398232ccd04181f165baabd5411c7 linux-3.0/drivers/scsi/Kconfig -eb6c7c24f9192cc6e4d7b444169d1abc linux-3.0/drivers/scsi/FlashPoint.c -88b95bea591c7721e7bb784c901aed27 linux-3.0/drivers/scsi/BusLogic.h -c2c442c60c16ff28f04a56280cc0995b linux-3.0/drivers/scsi/BusLogic.c -05717d86f202bdae3a0137577db57df1 linux-3.0/drivers/scsi/53c700_d.h_shipped -b83d1afb0b6f8055fc41ca63061286a0 linux-3.0/drivers/scsi/53c700.scr -bc4d991730100dd67c636caaa11d0d42 linux-3.0/drivers/scsi/53c700.h -e7a7d67363ded8e2189195da87ec942a linux-3.0/drivers/scsi/53c700.c -f8bc15c42d7cec36ad07c11ea6060127 linux-3.0/drivers/scsi/3w-xxxx.h -a4ceda6f02f6938364a279f1f65adf61 linux-3.0/drivers/scsi/3w-xxxx.c -c8726f9f61417b419137496c925c3fd4 linux-3.0/drivers/scsi/3w-sas.h -5f543ca2560d0f9f56a94a5781ab4263 linux-3.0/drivers/scsi/3w-sas.c -069afeeb69bf23bbde11bfe1c2ccc653 linux-3.0/drivers/scsi/3w-9xxx.h -9f121d1e0e80f7dd26e31a3796a7fc14 linux-3.0/drivers/scsi/3w-9xxx.c -c7c5650ed938538a04d3d00f444d0d85 linux-3.0/drivers/scsi/.gitignore -569699d26ba409acd501c496f935c957 linux-3.0/drivers/sbus/char/uctrl.c -d9e8ea6dc5716ca6b9507865fa1f9980 linux-3.0/drivers/sbus/char/openprom.c -07fee9193dafcce9fe17eace96381698 linux-3.0/drivers/sbus/char/max1617.h -0ad95735f5b09c4a039e357b961afe66 linux-3.0/drivers/sbus/char/jsflash.c -b7a0f6f0a5eb80a7943a70f8bfd5f775 linux-3.0/drivers/sbus/char/flash.c -04f038924f23430500ea02f49e8a343d linux-3.0/drivers/sbus/char/envctrl.c -bf81e6c71b2b9ac13db2c9c108b541ff linux-3.0/drivers/sbus/char/display7seg.c -49f8cc1c260055f616f2e938ba157f30 linux-3.0/drivers/sbus/char/bbc_i2c.h -eda8c9e69e8fa29079ca9c4a6c114d6e linux-3.0/drivers/sbus/char/bbc_i2c.c -74290d5c5712e5132e99dc3c0906e371 linux-3.0/drivers/sbus/char/bbc_envctrl.c -77886f9cf504394504c123aaa361b8ec linux-3.0/drivers/sbus/char/Makefile -6b1eb18979c352696650af624916b817 linux-3.0/drivers/sbus/char/Kconfig -cec8644adac624b9f1e053ae4e31bf85 linux-3.0/drivers/sbus/Makefile -bbbe7e21ae9581cf1d70046f3cbb6c7d linux-3.0/drivers/s390/scsi/zfcp_unit.c -3d6357c84a9ecc5d15661b34c5e57204 linux-3.0/drivers/s390/scsi/zfcp_sysfs.c -9adaa48c01f0f5e4d07799aeefc5ab86 linux-3.0/drivers/s390/scsi/zfcp_scsi.c -42f11e3b33de43bcdc1f100205ac7925 linux-3.0/drivers/s390/scsi/zfcp_reqlist.h -4d292a9fc55d1024872bbf88a210aaed linux-3.0/drivers/s390/scsi/zfcp_qdio.h -6c611bd1b1e897ef65f47724c681c282 linux-3.0/drivers/s390/scsi/zfcp_qdio.c -e81a2496054609fc0e923c40604704a9 linux-3.0/drivers/s390/scsi/zfcp_fsf.h -27f5557c5aa7073fe43ea938a48164b7 linux-3.0/drivers/s390/scsi/zfcp_fsf.c -67080422082535f153960be7ef030e68 linux-3.0/drivers/s390/scsi/zfcp_fc.h -505367abe8281e03ba3ca325375cc145 linux-3.0/drivers/s390/scsi/zfcp_fc.c -77838491329aeb8d2c2ab388a4e3be33 linux-3.0/drivers/s390/scsi/zfcp_ext.h -715dc08937a21f790236e7c272631d0b linux-3.0/drivers/s390/scsi/zfcp_erp.c -ae50d7a6a3a8168fee91b5888626857e linux-3.0/drivers/s390/scsi/zfcp_def.h -2bfa292a3b87e681fae01acf529e1e30 linux-3.0/drivers/s390/scsi/zfcp_dbf.h -1b1c4980abf09429eff6e33bb7334d99 linux-3.0/drivers/s390/scsi/zfcp_dbf.c -61eaaac8414cb0be67b815635d156f26 linux-3.0/drivers/s390/scsi/zfcp_cfdc.c -fedbd5383e18e297927d3eb423ecbc87 linux-3.0/drivers/s390/scsi/zfcp_ccw.c -9df6982444c0b2241466edea3a35daef linux-3.0/drivers/s390/scsi/zfcp_aux.c -5b6167a72273b76dc952f449ef36dd52 linux-3.0/drivers/s390/scsi/Makefile -5a70153c09387824dc89f7d2307b272e linux-3.0/drivers/s390/net/smsgiucv_app.c -eeb4c2677e44c5412a71a715167dbe14 linux-3.0/drivers/s390/net/smsgiucv.h -5a9dc160e0d8a42ba1c37263363cc1d9 linux-3.0/drivers/s390/net/smsgiucv.c -208afb76171673ddb549ee4cfd881d12 linux-3.0/drivers/s390/net/qeth_l3_sys.c -c9e64e159d68649bd4109627e51ed3d9 linux-3.0/drivers/s390/net/qeth_l3_main.c -3b369aca1a7a64fb072b6f64e048d7c9 linux-3.0/drivers/s390/net/qeth_l3.h -67cd8e25001ca20bd7b103b638ae5ec9 linux-3.0/drivers/s390/net/qeth_l2_main.c -54004641feaeab527bf83bb6ab88215d linux-3.0/drivers/s390/net/qeth_core_sys.c -774a07116364677d0863842375dbb065 linux-3.0/drivers/s390/net/qeth_core_mpc.h -b577b17dd53a22b120ff8354bc702622 linux-3.0/drivers/s390/net/qeth_core_mpc.c -0a4b7502c5f261af5b9f4cb44c8191eb linux-3.0/drivers/s390/net/qeth_core_main.c -d6518ea2c481d003b7ed46cd53dfa679 linux-3.0/drivers/s390/net/qeth_core.h -cfacb7d6942502083e47339745a94227 linux-3.0/drivers/s390/net/netiucv.c -9b5a3279eeea34d592a024944c87f3ac linux-3.0/drivers/s390/net/lcs.h -f2e445acd0f46069ebabb346bf048c69 linux-3.0/drivers/s390/net/lcs.c -af9c8891f10a59f2aef118c3c00cf618 linux-3.0/drivers/s390/net/fsm.h -26603d4a21cd1ea31f4a27c3e1e4ae2b linux-3.0/drivers/s390/net/fsm.c -c88abedc788cd8e5a98df98ca9b8c990 linux-3.0/drivers/s390/net/ctcm_sysfs.c -533747e14de1079fd641ffe6b267d8ee linux-3.0/drivers/s390/net/ctcm_mpc.h -f1a612511c796f605ad0dfaba909da3e linux-3.0/drivers/s390/net/ctcm_mpc.c -35d3d6d32312a732e63b2f1e4209b2ff linux-3.0/drivers/s390/net/ctcm_main.h -675395e3a2572566c6862d9886bcde7a linux-3.0/drivers/s390/net/ctcm_main.c -81515c39e89dfb10bf2e6e0ec5e84282 linux-3.0/drivers/s390/net/ctcm_fsms.h -68d0446a5af5fcb97aeaf2ee7b4fbe1c linux-3.0/drivers/s390/net/ctcm_fsms.c -e24d9c1bcad287213b3afce91cf7e94d linux-3.0/drivers/s390/net/ctcm_dbug.h -a5d4bfd2913d51589c3c4b3a102d2d04 linux-3.0/drivers/s390/net/ctcm_dbug.c -b8a5d96cdc06e9562498dfc90ceca579 linux-3.0/drivers/s390/net/claw.h -91193221bb155c0212ff77935dae034e linux-3.0/drivers/s390/net/claw.c -2a614988bbb3a24f96f2e4b385140886 linux-3.0/drivers/s390/net/Makefile -136cbd8f010d51825f826f7ab2eeb90e linux-3.0/drivers/s390/net/Kconfig -2dc59d6256339910912966fc7f75977b linux-3.0/drivers/s390/kvm/kvm_virtio.c -0f85eede100650f780737586208a08fb linux-3.0/drivers/s390/kvm/Makefile -62b3125af91fae365b6b57f642e5d476 linux-3.0/drivers/s390/crypto/zcrypt_pcixcc.h -3b584e063bd99de3c46dfe41c5cd1782 linux-3.0/drivers/s390/crypto/zcrypt_pcixcc.c -c96dcab712c3e182527d09e797a489b3 linux-3.0/drivers/s390/crypto/zcrypt_pcicc.h -59a73ae33735070945bb160749f215ee linux-3.0/drivers/s390/crypto/zcrypt_pcicc.c -9e2d9092641965745b732d03a3486104 linux-3.0/drivers/s390/crypto/zcrypt_pcica.h -390e75c3ee30c064f8e36d433ea826cf linux-3.0/drivers/s390/crypto/zcrypt_pcica.c -711287b41311d4dd264eda53874b0cc7 linux-3.0/drivers/s390/crypto/zcrypt_mono.c -c2e2e4a761effb0005eeefa1779aff03 linux-3.0/drivers/s390/crypto/zcrypt_error.h -aa7ca8919194b33e2f1cedf6c7c8b526 linux-3.0/drivers/s390/crypto/zcrypt_cex2a.h -5256ab1a67a1b8496bd8c7dd2c4645c9 linux-3.0/drivers/s390/crypto/zcrypt_cex2a.c -d81a48f194f71d387ddd0686f94214b9 linux-3.0/drivers/s390/crypto/zcrypt_cca_key.h -e102dda4ebdb6adba555820b533e33d1 linux-3.0/drivers/s390/crypto/zcrypt_api.h -d8807ebcb8e60d144ab9bc688c3fca47 linux-3.0/drivers/s390/crypto/zcrypt_api.c -dc7eea5b4b144d9a3d2b58c4bafe85b1 linux-3.0/drivers/s390/crypto/ap_bus.h -c7a1f291b7f520d99528e28fd1aeac7e linux-3.0/drivers/s390/crypto/ap_bus.c -92a38eb14cc30a2a404e29ccf028bd25 linux-3.0/drivers/s390/crypto/Makefile -e0333ebb5d01599f2d1b3c5e9d59ecb7 linux-3.0/drivers/s390/cio/qdio_thinint.c -4b25b96437ffeedfd99ae49e854172fa linux-3.0/drivers/s390/cio/qdio_setup.c -af6e4f329ba71e21c3dd80fbefb326f8 linux-3.0/drivers/s390/cio/qdio_main.c -c127a561a99e6338c1a710cc533e12eb linux-3.0/drivers/s390/cio/qdio_debug.h -aab9a731d62a6a7c1e831af48ab3be15 linux-3.0/drivers/s390/cio/qdio_debug.c -73fece37eee876eeb75d0a978a3926ab linux-3.0/drivers/s390/cio/qdio.h -7e05ffce8d18e51235c70af0f962d06d linux-3.0/drivers/s390/cio/orb.h -0bd3f3b515982254baf353b9616da435 linux-3.0/drivers/s390/cio/itcw.c -b4ba8d0beb3895b33a7b443df992826a linux-3.0/drivers/s390/cio/isc.c -f7f405d46cbccecbdddb7ebcb644db7c linux-3.0/drivers/s390/cio/ioasm.h -ca409fe0af53b9e5dcf3824650bf1949 linux-3.0/drivers/s390/cio/io_sch.h -ff2e5b732f8d441dd953519610972f86 linux-3.0/drivers/s390/cio/idset.h -4eb871daef8fc2cd4cb6e08f741e45b6 linux-3.0/drivers/s390/cio/idset.c -0e2a33ab833bdf4836c8e50fc8668b7d linux-3.0/drivers/s390/cio/fcx.c -507f4161fcede8e6e1e65985b91d5593 linux-3.0/drivers/s390/cio/device_status.c -0d8c29792b852ba9d2cee264aa039919 linux-3.0/drivers/s390/cio/device_pgid.c -cf8d8aa6b0c9ffbcde84a5a7c6d21411 linux-3.0/drivers/s390/cio/device_ops.c -2f22b7aca4250dfd5f4b7484067ea9f8 linux-3.0/drivers/s390/cio/device_id.c -863fa1febb9e613d575705a1f8c4f138 linux-3.0/drivers/s390/cio/device_fsm.c -22418c774ed792f9e4eb3856135b7401 linux-3.0/drivers/s390/cio/device.h -96c4483884ef710fd061167831f78d3d linux-3.0/drivers/s390/cio/device.c -9d58ce5b7f7bce0ddb1b2fdfb03260c0 linux-3.0/drivers/s390/cio/css.h -3001137783c387e3960f10718ad4e7a1 linux-3.0/drivers/s390/cio/css.c -a266975c42b680604f7b61d69048a369 linux-3.0/drivers/s390/cio/crw.c -9781c0bdac42654ae9405671b865626c linux-3.0/drivers/s390/cio/cmf.c -fc2be7b7809bbfe2e48699739c5a7406 linux-3.0/drivers/s390/cio/cio_debug.h -c4c8f61e05518c441619da9dc3b9b616 linux-3.0/drivers/s390/cio/cio.h -d93f97409c3303e7df6405fb3b7ca098 linux-3.0/drivers/s390/cio/cio.c -8c3027265899d79d8e8e749092342403 linux-3.0/drivers/s390/cio/chsc_sch.h -7f4fc623b59be53e0f19030e705e5e42 linux-3.0/drivers/s390/cio/chsc_sch.c -8336fe0dcb79c6be7663a3f0d165e6da linux-3.0/drivers/s390/cio/chsc.h -ac19b542c091bf36a768075f0da44739 linux-3.0/drivers/s390/cio/chsc.c -0ed1c6aa368b72749eda201dd73b16f5 linux-3.0/drivers/s390/cio/chp.h -ebd18cfd03e5727a7b172f87d2f637a2 linux-3.0/drivers/s390/cio/chp.c -4d21ca0197d7a1fcffeb8d0b3ca1c933 linux-3.0/drivers/s390/cio/ccwreq.c -45b70e0d52f2626c00f70348bd5c94b7 linux-3.0/drivers/s390/cio/ccwgroup.c -fd896a09fcb31435e9dee9b78dcf6082 linux-3.0/drivers/s390/cio/blacklist.h -989e2e5d01ad6bc797acd47404676bb3 linux-3.0/drivers/s390/cio/blacklist.c -f881e79c6fc20acaca29061c548f042e linux-3.0/drivers/s390/cio/airq.c -671dda4c2e65804601c6ec8094037619 linux-3.0/drivers/s390/cio/Makefile -abec3d9c4ce26f796ec93d23159e00a5 linux-3.0/drivers/s390/char/zcore.c -4cee39681e041e5cb47d3e40a044ddbb linux-3.0/drivers/s390/char/vmwatchdog.c -e37fae9cad94c6f447e08a7994053e9c linux-3.0/drivers/s390/char/vmur.h -9d07cd3772e109a58514d1514a498c74 linux-3.0/drivers/s390/char/vmur.c -263ad6db7236a8c11c26ce9f9e71d709 linux-3.0/drivers/s390/char/vmlogrdr.c -149c208f8c7ec4fe4c78c6894ae84ce5 linux-3.0/drivers/s390/char/vmcp.h -8164b7fc4dfce87f719ecf30e436f4dc linux-3.0/drivers/s390/char/vmcp.c -e0fd2ba841922528c80acd264667c2b2 linux-3.0/drivers/s390/char/tty3270.h -c72329e0ab68563aaea686c0c38aada3 linux-3.0/drivers/s390/char/tty3270.c -bb45b307ec425ad5da228eb11d02f742 linux-3.0/drivers/s390/char/tape_std.h -65af2d5e7609048b2424d189b770b759 linux-3.0/drivers/s390/char/tape_std.c -19ddb5c058eb4253efeb0cba8025e697 linux-3.0/drivers/s390/char/tape_proc.c -c389ef41ac5a6071f83f7058fb050060 linux-3.0/drivers/s390/char/tape_core.c -349e659cac917be46f032d6299e2a1a5 linux-3.0/drivers/s390/char/tape_class.h -92e305c57db11f624d7973b04577feb3 linux-3.0/drivers/s390/char/tape_class.c -cd5f07f88636cb7ea40c9dcd933f66f8 linux-3.0/drivers/s390/char/tape_char.c -d46c1c13e442c1be6a80c8cd0037a510 linux-3.0/drivers/s390/char/tape_3590.h -47b5f7a5f4ee509e6b32b53c9daefa4e linux-3.0/drivers/s390/char/tape_3590.c -99b760ebaeabdaae7c97a7839385348e linux-3.0/drivers/s390/char/tape_34xx.c -247de62c2e2cd5874f9f0107c346089b linux-3.0/drivers/s390/char/tape.h -83885b7f5ec35a10153b6308e7e348a3 linux-3.0/drivers/s390/char/sclp_vt220.c -72724c1547140745651a3e3835155e98 linux-3.0/drivers/s390/char/sclp_tty.h -52b47cd94e7797fa0de2f67fc50d3500 linux-3.0/drivers/s390/char/sclp_tty.c -fcaa24ea3838e09fc5ece7c4cf8fae56 linux-3.0/drivers/s390/char/sclp_sdias.c -4297119df4a0e9fcfcb7153f766756f2 linux-3.0/drivers/s390/char/sclp_rw.h -85f193d2f25fa142b3ecc081b2da993f linux-3.0/drivers/s390/char/sclp_rw.c -e4e1447bc1f6c83e65fc54e37ea933ba linux-3.0/drivers/s390/char/sclp_quiesce.c -45c7d5930d3a1ceafadc5335c336a04b linux-3.0/drivers/s390/char/sclp_ocf.c -d4b0ce96a0aa384f7cb83ef96bcb7fd4 linux-3.0/drivers/s390/char/sclp_cpi_sys.h -e623b2a3b629b4bc8c288bd7235e9313 linux-3.0/drivers/s390/char/sclp_cpi_sys.c -1b39cc09d7ee792aed643cbda312fa04 linux-3.0/drivers/s390/char/sclp_cpi.c -d9e615e2a61f6b49829ba117aa470c16 linux-3.0/drivers/s390/char/sclp_config.c -66454237386b04585b2522630ea7b9cd linux-3.0/drivers/s390/char/sclp_con.c -d53434199ebb5cd5a1d997768fcc3980 linux-3.0/drivers/s390/char/sclp_cmd.c -9d8605582f5796310474d49638b4be8f linux-3.0/drivers/s390/char/sclp_async.c -c20958f0528ed646a30e74a22638e498 linux-3.0/drivers/s390/char/sclp.h -e665d737a3384b1ae327cdf6a176d917 linux-3.0/drivers/s390/char/sclp.c -5a85a87501f7f3e63c22ff3844040ab2 linux-3.0/drivers/s390/char/raw3270.h -6dab24b18eeff86d6b0c1cbe3cabb48f linux-3.0/drivers/s390/char/raw3270.c -1cc76df7d482a8fc5ceb65a6da58a379 linux-3.0/drivers/s390/char/monwriter.c -43b6414771f7cb017708cad7413c7976 linux-3.0/drivers/s390/char/monreader.c -2a82acb30f168a491914e1196bd8c602 linux-3.0/drivers/s390/char/keyboard.h -fc16aba6da7a5d6756b3b778a33b84d5 linux-3.0/drivers/s390/char/keyboard.c -6026616272b74cf3b45b933edad49224 linux-3.0/drivers/s390/char/fs3270.c -1020f77e471e00e54f6763372ff1ff04 linux-3.0/drivers/s390/char/defkeymap.map -9b0d772ed6dc213a4c3ad2bfcb9de25a linux-3.0/drivers/s390/char/defkeymap.c -1b27c7c9b230213690165ec9b1f61c0d linux-3.0/drivers/s390/char/ctrlchar.h -fd56a8c62007d3ca30b8d0e3af82b42d linux-3.0/drivers/s390/char/ctrlchar.c -f0748f14eeaa592cac91bd76ea220469 linux-3.0/drivers/s390/char/con3270.c -a3ea6e7ba013514128ad59f22fc1da0c linux-3.0/drivers/s390/char/con3215.c -430f259246a07f8e23b7f25b99003c17 linux-3.0/drivers/s390/char/Makefile -621ef3466be2f981d24918135d22d8ad linux-3.0/drivers/s390/char/Kconfig -0701b661b16cb3450aac167be40ed075 linux-3.0/drivers/s390/block/xpram.c -a0cbb087f0a527be3521f3d5d3013020 linux-3.0/drivers/s390/block/dcssblk.c -c0391039e7c55af424c85d8c07b5a02e linux-3.0/drivers/s390/block/dasd_proc.c -89181ed76d916d17d921abeae3808991 linux-3.0/drivers/s390/block/dasd_ioctl.c -615b3c2b7f66e0d6a2a022ef0fadde14 linux-3.0/drivers/s390/block/dasd_int.h -1ebaac46479e89f2d1e0c4ffbc35b031 linux-3.0/drivers/s390/block/dasd_genhd.c -80d4cb1c86bda2c486486b96d7fbca87 linux-3.0/drivers/s390/block/dasd_fba.h -db32b5547d8ceddaf620e362f2b0336e linux-3.0/drivers/s390/block/dasd_fba.c -e43dbd6e41801bc0ffb1b44a98242fb0 linux-3.0/drivers/s390/block/dasd_erp.c -46a26433c9998b8f3575cdc111d7e1a2 linux-3.0/drivers/s390/block/dasd_eer.c -9a73e592153879602ea61a565fe88f35 linux-3.0/drivers/s390/block/dasd_eckd.h -6cbe03c39681529a7a5ea8f9559f7d85 linux-3.0/drivers/s390/block/dasd_eckd.c -b5dfc6f0449dc08b76519650556f948e linux-3.0/drivers/s390/block/dasd_diag.h -4bb1660a3dc5d9e2e895d5759d6b5e0f linux-3.0/drivers/s390/block/dasd_diag.c -a96d23aa28476ada9213c5c85dab2f91 linux-3.0/drivers/s390/block/dasd_devmap.c -6e6e5f0990cf511d60b877da8b82563e linux-3.0/drivers/s390/block/dasd_alias.c -058340d22a0cca6d86df3c509094d586 linux-3.0/drivers/s390/block/dasd_3990_erp.c -7ffb805e4927b700d4664d03ecfe1a73 linux-3.0/drivers/s390/block/dasd.c -f950f808af442b6c6151eb4f9fbc5320 linux-3.0/drivers/s390/block/Makefile -c539bdd1aaac2faea4f829630096ad8a linux-3.0/drivers/s390/block/Kconfig -fc5d825469d1232a41ba5133bcdae00b linux-3.0/drivers/s390/Makefile -7d60b75594b0e1902ce986677a197f26 linux-3.0/drivers/rtc/rtc-x1205.c -86d2171829be829344884087dddb90a3 linux-3.0/drivers/rtc/rtc-wm8350.c -cf278f54346aa7e73f79f8c268016ed9 linux-3.0/drivers/rtc/rtc-wm831x.c -1cf90856f1a6e8ee3e60ae0b003dfe40 linux-3.0/drivers/rtc/rtc-vt8500.c -04331b71a7b1b48a1c119c933360d2f3 linux-3.0/drivers/rtc/rtc-vr41xx.c -7a559e54b7dc7ddd5287313389783ccc linux-3.0/drivers/rtc/rtc-v3020.c -2bc881fe408fbfd2dc4ce8ae6e71ca15 linux-3.0/drivers/rtc/rtc-tx4939.c -3b8c2acbe1559a7810ffb4915a3b1a9e linux-3.0/drivers/rtc/rtc-twl.c -e9a6d8a30cba88f518e66dbb79413160 linux-3.0/drivers/rtc/rtc-tile.c -7d75e5893285c5bb81b305e72c07358f linux-3.0/drivers/rtc/rtc-test.c -43759a9fa0e6f5b2349205c474c303aa linux-3.0/drivers/rtc/rtc-tegra.c -0b88abb3ee96ee4841bd39677f8e36cd linux-3.0/drivers/rtc/rtc-sysfs.c -14891ce4ef4ffb001dfb816f366ef87d linux-3.0/drivers/rtc/rtc-sun4v.c -cfca01db1140912392aa9dc166e1589a linux-3.0/drivers/rtc/rtc-stmp3xxx.c -3afc7003e9aebb831053434f40840f7d linux-3.0/drivers/rtc/rtc-stk17ta8.c -7a11bd5e573c8b8a4e0ac934107c91e3 linux-3.0/drivers/rtc/rtc-starfire.c -dfac3639f01b0d1f3a3c3d34ab80d05e linux-3.0/drivers/rtc/rtc-spear.c -dcd1fce298dcd9b2c21396638010ce83 linux-3.0/drivers/rtc/rtc-sh.c -12ea73fb85bd77b4dcb1b1d5ba5e0a99 linux-3.0/drivers/rtc/rtc-sa1100.c -ca8a24856da0e20bd64e70e7109ab3e9 linux-3.0/drivers/rtc/rtc-s3c.c -81722f4cc00f559d2016bebc53acf8c1 linux-3.0/drivers/rtc/rtc-s35390a.c -1fe28415f992ccc00f9ed4490582a7fa linux-3.0/drivers/rtc/rtc-rx8581.c -6f1dffda95c50bc296885436588bc5e7 linux-3.0/drivers/rtc/rtc-rx8025.c -8458e8c9ba689f7cdb4c56fa63629591 linux-3.0/drivers/rtc/rtc-rv3029c2.c -c35545c932d3d218fe5244c615dd291a linux-3.0/drivers/rtc/rtc-rs5c372.c -aee11828bf5b284851305b04bdcb3c7a linux-3.0/drivers/rtc/rtc-rs5c348.c -dcc4edaaae74e746d9320b887ef51a5f linux-3.0/drivers/rtc/rtc-rs5c313.c -0ddc88663cce585abcf1e33186c799ae linux-3.0/drivers/rtc/rtc-rp5c01.c -5a5ccd6e9335d1bc44e0116f2ebb9ece linux-3.0/drivers/rtc/rtc-r9701.c -15e67e91158bd278a7f07c2deb1d5a70 linux-3.0/drivers/rtc/rtc-pxa.c -0b3518d6199dc1e5e847675dc5928819 linux-3.0/drivers/rtc/rtc-puv3.c -6e2cb8229ea77d38f5900962fbe672b6 linux-3.0/drivers/rtc/rtc-ps3.c -4e364af0d8f55d8ba4b6f47f770d0603 linux-3.0/drivers/rtc/rtc-proc.c -c84d44988fa701d5c37bc892ce376ff2 linux-3.0/drivers/rtc/rtc-pl031.c -c0a57cebf68016ffd6c189663fa40016 linux-3.0/drivers/rtc/rtc-pl030.c -42f46bf8d561f1910226a900debdd44d linux-3.0/drivers/rtc/rtc-pcf8583.c -29dfe5b221379203f9ffe010db1c69de linux-3.0/drivers/rtc/rtc-pcf8563.c -505907b1f8a46d711fa9cb7dc72e0775 linux-3.0/drivers/rtc/rtc-pcf50633.c -bdfc32da6dfaf7bfd55031e541fa6d6c linux-3.0/drivers/rtc/rtc-pcf2123.c -1b7463b6f31afdd1a7a505d223f35777 linux-3.0/drivers/rtc/rtc-pcap.c -95a731ff9c674e4bfac68b6c84d73017 linux-3.0/drivers/rtc/rtc-omap.c -5323302c93e3b7dc71ea12ecc777017c linux-3.0/drivers/rtc/rtc-nuc900.c -d86032648238f95d247b6836b08a9591 linux-3.0/drivers/rtc/rtc-mxc.c -410f896ae5116701a9eaed52c5503eff linux-3.0/drivers/rtc/rtc-mv.c -7b5425287a475292666f93f5e029f975 linux-3.0/drivers/rtc/rtc-msm6242.c -d79029b96fcb60aaa8f29a65d28e1f70 linux-3.0/drivers/rtc/rtc-mrst.c -3be76654aaab8888671eca258084c152 linux-3.0/drivers/rtc/rtc-mpc5121.c -9073a56eb84a7e8be7e232562269e00c linux-3.0/drivers/rtc/rtc-mc13xxx.c -1be3ef123ed33db1ae6a8a13662f3c65 linux-3.0/drivers/rtc/rtc-max8998.c -6c24d75461f8ad919ab183a8f7ea7c93 linux-3.0/drivers/rtc/rtc-max8925.c -d1f185df5f1677ea2632e6d4f48945ef linux-3.0/drivers/rtc/rtc-max6902.c -7f102501f59848c03e81d17d3cdf2b1a linux-3.0/drivers/rtc/rtc-max6900.c -fd42e89a86be6c40e389ab7b6f096c7f linux-3.0/drivers/rtc/rtc-m48t86.c -05eef4aac06c62a2fc8762b060c0d92c linux-3.0/drivers/rtc/rtc-m48t59.c -d19408b643860d1096fd7e0d652c5e6d linux-3.0/drivers/rtc/rtc-m48t35.c -f730914778b9a827714f7f141150b941 linux-3.0/drivers/rtc/rtc-m41t94.c -43fa86ea361f6df56812f203ab69a148 linux-3.0/drivers/rtc/rtc-m41t93.c -d39fd31227d570cfb1693ac0b5c449ce linux-3.0/drivers/rtc/rtc-m41t80.c -46587109ed99535e804e2e9e85f6c3aa linux-3.0/drivers/rtc/rtc-lpc32xx.c -bfb3a450dcd65c3bbce3a02db62e8f2e linux-3.0/drivers/rtc/rtc-lib.c -b8bd1bbff73118f800fcbf17a761f2cb linux-3.0/drivers/rtc/rtc-jz4740.c -2fe5d0eab2b504cf65d74c6df5d59888 linux-3.0/drivers/rtc/rtc-isl1208.c -ccfe42374554b31423ff0bfc7a57e7af linux-3.0/drivers/rtc/rtc-isl12022.c -5c1df713c89f96c0882735105c1e2dbf linux-3.0/drivers/rtc/rtc-imxdi.c -f89db845adaf5dea6988e48450d3ce6d linux-3.0/drivers/rtc/rtc-generic.c -9d02873cc59e12b460237246b8dd46f5 linux-3.0/drivers/rtc/rtc-fm3130.c -fbb7c7dbc48af22f89c6a30004303539 linux-3.0/drivers/rtc/rtc-ep93xx.c -4c822072335b601a1aa6a37a3cd58ffa linux-3.0/drivers/rtc/rtc-em3027.c -a0b0432f32a62f907c701aeeb9bb8545 linux-3.0/drivers/rtc/rtc-efi.c -717a2a26670730c36095ac2f3ec5ca2e linux-3.0/drivers/rtc/rtc-ds3234.c -1f44c39d0b7b81ee90ff93aac8e15d99 linux-3.0/drivers/rtc/rtc-ds3232.c -fc4c5afc98d98d341bde134235ed7524 linux-3.0/drivers/rtc/rtc-ds1742.c -8a9209ccb23a08c136ae7a66160eb26e linux-3.0/drivers/rtc/rtc-ds1672.c -a8662eb7854a83dbea0e644f4ce451b8 linux-3.0/drivers/rtc/rtc-ds1553.c -e84a88530ff57adf53c53fcf1592ae9f linux-3.0/drivers/rtc/rtc-ds1511.c -6a8e9af2c98498b432b1d74c99ea7d7e linux-3.0/drivers/rtc/rtc-ds1390.c -be4f6e6d0a14ecb69ae902342db6f7f3 linux-3.0/drivers/rtc/rtc-ds1374.c -a9f6554bcfade6d4a60a5c99c7338155 linux-3.0/drivers/rtc/rtc-ds1307.c -560b05ee289e60a9cc90f68ba4ff9057 linux-3.0/drivers/rtc/rtc-ds1305.c -ee2371e37c102f12e17211d00d7c01b6 linux-3.0/drivers/rtc/rtc-ds1302.c -8a8e8e5e9c19d45a46fbab0dcd171315 linux-3.0/drivers/rtc/rtc-ds1286.c -1d2694ee59ed7ab9b8a66cb39a137c5b linux-3.0/drivers/rtc/rtc-ds1216.c -5506bf0e434165f69cad0ce7ca737ab0 linux-3.0/drivers/rtc/rtc-dm355evm.c -c5b90a2601d7fa047c28112a37c0ede5 linux-3.0/drivers/rtc/rtc-dev.c -02312fb9ca375ed8365fcca4c759ae9e linux-3.0/drivers/rtc/rtc-davinci.c -77112df0ee90d45054ed9483fc6c5ab2 linux-3.0/drivers/rtc/rtc-core.h -354f2e8fd837e96635ad92e868c307c2 linux-3.0/drivers/rtc/rtc-coh901331.c -70f35c6964fe07f39cb5815fb43f070a linux-3.0/drivers/rtc/rtc-cmos.c -aee9ae7ec189d993187649f9bcba3847 linux-3.0/drivers/rtc/rtc-bq4802.c -76305eb24b509faaccda72650f351e76 linux-3.0/drivers/rtc/rtc-bq32k.c -508098d1c6f0445d2e135073f3dbeeb2 linux-3.0/drivers/rtc/rtc-bfin.c -b70f3f0253847bd05032bd3bea270665 linux-3.0/drivers/rtc/rtc-au1xxx.c -320cbdf03e6035570c87a6be3c0f9bc4 linux-3.0/drivers/rtc/rtc-at91sam9.c -b5c9f89d07ed1a59d020b571ebb2ac9f linux-3.0/drivers/rtc/rtc-at91rm9200.c -6db3b4e034d2665f3587b0b3f8dd554a linux-3.0/drivers/rtc/rtc-at32ap700x.c -937bb437446839d58dbfd7020a96566e linux-3.0/drivers/rtc/rtc-ab8500.c -e9f8da97620fe6ff9570670be31f2c80 linux-3.0/drivers/rtc/rtc-ab3100.c -fb92097f3b3e83f74af58ccf4fcee0e8 linux-3.0/drivers/rtc/rtc-88pm860x.c -c491709e13f95dc746788efa4843bd7b linux-3.0/drivers/rtc/interface.c -73cdd22ffdada24d056307f03141b98e linux-3.0/drivers/rtc/hctosys.c -5bbdfe932dcca2122b8238a56d125f40 linux-3.0/drivers/rtc/class.c -d3fccdbb1868788d411ad37e4c229abe linux-3.0/drivers/rtc/Makefile -8a1db453e796a023a73a5edbfb8b005c linux-3.0/drivers/rtc/Kconfig -9f47713513e07d78be10d4751effe0e2 linux-3.0/drivers/regulator/wm8994-regulator.c -4a35017653e3a73b8bbac6da658fa10b linux-3.0/drivers/regulator/wm8400-regulator.c -cedf9661b19c456662234104f2d10b7d linux-3.0/drivers/regulator/wm8350-regulator.c -93bee46efdad3d8b09379539a2c63516 linux-3.0/drivers/regulator/wm831x-ldo.c -4d8e175dfa12fd8a7d31c9aa1530f042 linux-3.0/drivers/regulator/wm831x-isink.c -d95de78c2ded0cc49255ad6dc4efca7d linux-3.0/drivers/regulator/wm831x-dcdc.c -697d457267d5cbc07e1b83e14f0107a9 linux-3.0/drivers/regulator/virtual.c -dbea758d35a604375d80661905e3df8c linux-3.0/drivers/regulator/userspace-consumer.c -6be979055f3d793320b5b6d23bc925de linux-3.0/drivers/regulator/twl-regulator.c -175f9d51385cc83d1c3a60a7c8088835 linux-3.0/drivers/regulator/tps65910-regulator.c -835529013cba01a6d17d0170e6eff64b linux-3.0/drivers/regulator/tps6586x-regulator.c -b3e745a088f8038f47332130bcdef2cb linux-3.0/drivers/regulator/tps6524x-regulator.c -0e0db0174af71fedf39d6d973450355d linux-3.0/drivers/regulator/tps6507x-regulator.c -2f92cf82c1539d3f19b24b5ccb44c0fa linux-3.0/drivers/regulator/tps65023-regulator.c -4bc8bb4f350d57436bbc273dca7cc94d linux-3.0/drivers/regulator/tps6105x-regulator.c -40f00611d95cd9e1d54dc8d53ac22495 linux-3.0/drivers/regulator/pcf50633-regulator.c -9dff1afc8df9523f072dd3dd24b6d57b linux-3.0/drivers/regulator/pcap-regulator.c -85353ebb56b5c4c3ee6fa8fe0596dfef linux-3.0/drivers/regulator/mc13xxx.h -025f20254fe07ec407189633012b9840 linux-3.0/drivers/regulator/mc13xxx-regulator-core.c -b5dea75b8c238bfbf62a96e15507ebfe linux-3.0/drivers/regulator/mc13892-regulator.c -fdda5b242a8726d5fb260a71c419f4df linux-3.0/drivers/regulator/mc13783-regulator.c -578bc420bda2ea061f7f600c7165fb0f linux-3.0/drivers/regulator/max8998.c -db4046446664c5f975ddd1a83ebb7780 linux-3.0/drivers/regulator/max8997.c -e532f6c7da3bb4aa02aa81732ff3d484 linux-3.0/drivers/regulator/max8952.c -7dd7cae5d6a94896e082ba46a0c1b1da linux-3.0/drivers/regulator/max8925-regulator.c -20ac2649e71b51959d3f7b3a0128188f linux-3.0/drivers/regulator/max8660.c -54cd97ce369008ed3170912a063a685a linux-3.0/drivers/regulator/max8649.c -fcf7504ea73b25c4da379df16d304cd0 linux-3.0/drivers/regulator/max1586.c -c6bc76c44dc7884f72f03f2b96ab7546 linux-3.0/drivers/regulator/lp3972.c -0824006c36784847be5e4d51b9fe277d linux-3.0/drivers/regulator/lp3971.c -7cc4ef3e3d986359357d4da76b4f672a linux-3.0/drivers/regulator/isl6271a-regulator.c -d0a8aef7c9af14161a71d5fd08269fed linux-3.0/drivers/regulator/fixed.c -94e7abb9059b7b6a9e633e583286c657 linux-3.0/drivers/regulator/dummy.h -f435ed21da4ee623f1b37fe79b7e5445 linux-3.0/drivers/regulator/dummy.c -36ff0d042fcc519c9abc2e3b79014193 linux-3.0/drivers/regulator/db8500-prcmu.c -9e2af3f3c4a45623060a7fbf6039bfb2 linux-3.0/drivers/regulator/da903x.c -2b3d507c313a74f8f6669437141af36c linux-3.0/drivers/regulator/core.c -ab989f76de368660c77db774104f2c56 linux-3.0/drivers/regulator/bq24022.c -acb76afe535108af220185a0f78bc3c8 linux-3.0/drivers/regulator/ad5398.c -1ae2a9d434f4d0caf89f68e22e5c861c linux-3.0/drivers/regulator/ab8500.c -7df1592926f76ead823bea784ae89d51 linux-3.0/drivers/regulator/ab3100.c -7d5f392d5c6153366d5a774a9227ecae linux-3.0/drivers/regulator/Makefile -5edd9a226a331f1f26a21f482f1d8a8d linux-3.0/drivers/regulator/Kconfig -9aac3e82ac1f9b6b05f9aeed0cf8fb73 linux-3.0/drivers/regulator/88pm8607.c -13ba496334b99b065e20da4eea1d3fac linux-3.0/drivers/rapidio/switches/tsi57x.c -f6cd3707b33a59098a8abdedccee923b linux-3.0/drivers/rapidio/switches/tsi568.c -53cd180e2cd6338511880539aebf9002 linux-3.0/drivers/rapidio/switches/tsi500.c -aecb4c64c20144c4e35f17a10f7aa396 linux-3.0/drivers/rapidio/switches/idtcps.c -9739d9f0550f6f09215832d19d799dda linux-3.0/drivers/rapidio/switches/idt_gen2.c -bb272d2a19e77687f11ace759ca1e568 linux-3.0/drivers/rapidio/switches/Makefile -eef0288bf699dff863e732c965377acc linux-3.0/drivers/rapidio/switches/Kconfig -4726ac2d4e9d297b30022836fd441a2e linux-3.0/drivers/rapidio/rio.h -20dea832a027d9ae6abc302ec84c0c02 linux-3.0/drivers/rapidio/rio.c -522870f798b10fbe3627c2f4e6291718 linux-3.0/drivers/rapidio/rio-sysfs.c -45329bc6399fd2d3bc7760c554b2d06e linux-3.0/drivers/rapidio/rio-scan.c -7051a9859715864fb4bd1a1c74e70ba5 linux-3.0/drivers/rapidio/rio-driver.c -e5191d477faccc03bd25aaeb3ff3d7f5 linux-3.0/drivers/rapidio/rio-access.c -58c129dcf8ad92d66556c75c9a84bcb6 linux-3.0/drivers/rapidio/Makefile -a0149c9aea114c920b1da379543f3b0c linux-3.0/drivers/rapidio/Kconfig -9e520c32e604ce74ad5b4a49bdb1205d linux-3.0/drivers/ptp/ptp_sysfs.c -0959cfad9a3d69bc6b53d0c6b288a69b linux-3.0/drivers/ptp/ptp_private.h -a81207d4e8443d2b737c02ba8d7d7d93 linux-3.0/drivers/ptp/ptp_ixp46x.c -264af28abf5e81d640e592b1cd566ad2 linux-3.0/drivers/ptp/ptp_clock.c -089e5a71fac5ab39f937dbed32897dc3 linux-3.0/drivers/ptp/ptp_chardev.c -1c6dcf525c6e6bbd2634ecea9a98732d linux-3.0/drivers/ptp/Makefile -475cf3a6950ce5248eec2ee49cf9d1da linux-3.0/drivers/ptp/Kconfig -5f380e5d6781e8565c7a38548e2cc83a linux-3.0/drivers/ps3/vuart.h -98cce036cbe601ca06fd250dd3cc2c26 linux-3.0/drivers/ps3/sys-manager-core.c -e81770bec372ecead75906bf279e5ab4 linux-3.0/drivers/ps3/ps3stor_lib.c -2c3479165f1dd388a25b2951b541a9fe linux-3.0/drivers/ps3/ps3av_cmd.c -27c41f08e486f344877144ea0c044937 linux-3.0/drivers/ps3/ps3av.c -7a14a2790d9e2908227ccf4dfab2deb5 linux-3.0/drivers/ps3/ps3-vuart.c -b73866315e64dcf3e147709e889c110a linux-3.0/drivers/ps3/ps3-sys-manager.c -5f5ebba60b68810b0f75a72ea8fce4f7 linux-3.0/drivers/ps3/ps3-lpm.c -8ed15fa8d579dd025c135b2d8cfc6e58 linux-3.0/drivers/ps3/Makefile -0ca53eb8ae8fd4bcfa4e2bb890f8e177 linux-3.0/drivers/pps/sysfs.c -6f0cecce91744bd6bac3e88b8696ad56 linux-3.0/drivers/pps/pps.c -00aff10e02b38328ef2beb7c448ac8db linux-3.0/drivers/pps/kc.h -a793fca2b009bc30e7d51ccdcd0b628e linux-3.0/drivers/pps/kc.c -ce0bb3d155e7d0d74f15cdb1f1c5b7ea linux-3.0/drivers/pps/kapi.c -b31caaac1577b981eae232827c12a574 linux-3.0/drivers/pps/generators/pps_gen_parport.c -7f05c0b9219f2ef089bf851a91bda507 linux-3.0/drivers/pps/generators/Makefile -dbb3662b1b95dc5fd7071e8e227f9030 linux-3.0/drivers/pps/generators/Kconfig -e4ed92d22890c586e3299e95aa594df7 linux-3.0/drivers/pps/clients/pps_parport.c -6e1d2bb4f7a8fccacca9129709c5caaf linux-3.0/drivers/pps/clients/pps-ldisc.c -3cef5ae350da7265330fa4fd6d326b04 linux-3.0/drivers/pps/clients/pps-ktimer.c -8e3bda512b75d75fee11bbcb52ee9e64 linux-3.0/drivers/pps/clients/Makefile -bf9301e080f2cc96947a6ed5c2b286e1 linux-3.0/drivers/pps/clients/Kconfig -e317a56bd31eb19c5b5ab50fc3674488 linux-3.0/drivers/pps/Makefile -602af09cbfedb8934df950f95b5bc406 linux-3.0/drivers/pps/Kconfig -d8b1c7ba178aa08c9d777f26de538fa2 linux-3.0/drivers/power/z2_battery.c -fa85029ace14f7743e7b5fef5d7c6400 linux-3.0/drivers/power/wm97xx_battery.c -7963f7f1997a0f9fae82acca709fecbd linux-3.0/drivers/power/wm8350_power.c -9b940b3c43cf2fd8eb8ab1083bb12d1c linux-3.0/drivers/power/wm831x_power.c -9c481a51760ae5b4edef510ed92870b1 linux-3.0/drivers/power/wm831x_backup.c -eff15869fa697707d4f8aec039aa4866 linux-3.0/drivers/power/twl4030_charger.c -c9326033e8697162e540b6b7ea2c3305 linux-3.0/drivers/power/tosa_battery.c -039d463361120566a5d429891e18d590 linux-3.0/drivers/power/test_power.c -caa1862a882e5a021fc941f05fc37815 linux-3.0/drivers/power/s3c_adc_battery.c -f8f7d8d62736592e36eed2920264e636 linux-3.0/drivers/power/power_supply_sysfs.c -d9f338414c570cd18eb687816e85188f linux-3.0/drivers/power/power_supply_leds.c -9615d9e3e60b0f181882eb3f5241de2a linux-3.0/drivers/power/power_supply_core.c -cae0d22812318d2b7e8a86e7b11b8b51 linux-3.0/drivers/power/power_supply.h -dba3737cc24ac4cf5fed90669a882603 linux-3.0/drivers/power/pmu_battery.c -23b9d2cf9589679ced985f9061a0c24d linux-3.0/drivers/power/pda_power.c -237871bf617c3efb09c6756d4ae3ba63 linux-3.0/drivers/power/pcf50633-charger.c -d31392ee326cce930b28f8ec1d016e23 linux-3.0/drivers/power/olpc_battery.c -cd94cc59c0c49b5026aed7b6145deceb linux-3.0/drivers/power/max8925_power.c -1bc46c5ed7f06829a3f270a3c44f73f5 linux-3.0/drivers/power/max8903_charger.c -df1f923f9fc1f50127dfcdf6014fbc84 linux-3.0/drivers/power/max17042_battery.c -21cdbb1a35a100b064c842c885f2dd1a linux-3.0/drivers/power/max17040_battery.c -78cfddcb98f9db844346b3f6a040200d linux-3.0/drivers/power/jz4740-battery.c -2e13ac8b0e9c6e686126d00075141155 linux-3.0/drivers/power/isp1704_charger.c -afd6ea8df3f5f41f22441acdd8bb5a91 linux-3.0/drivers/power/intel_mid_battery.c -cf5b1359f1eba2775322a3c27ffb0bf8 linux-3.0/drivers/power/gpio-charger.c -32352387ae8a87068393286c9eb83e6d linux-3.0/drivers/power/ds2782_battery.c -1101871b36818502b5262ede531056e3 linux-3.0/drivers/power/ds2780_battery.c -28b47ddf6981b2abd8cc47e697cdebb5 linux-3.0/drivers/power/ds2760_battery.c -177d78238918a822b1350139be9ab1a7 linux-3.0/drivers/power/da9030_battery.c -31b84b1be3ddf767ed1c70e62d7a988b linux-3.0/drivers/power/collie_battery.c -f0f7353e793e56275e5a62695fdd4dad linux-3.0/drivers/power/bq27x00_battery.c -b4b6c7ca55e9f6ac95191191d8b85344 linux-3.0/drivers/power/bq20z75.c -46fa42e5c920243ea8a535170984011b linux-3.0/drivers/power/apm_power.c -65525e2c4d08923b3f0804f2fb45e3bd linux-3.0/drivers/power/Makefile -bae585dca79dffe6b3b8bb57f9a133ef linux-3.0/drivers/power/Kconfig -40d4b9c88cab80bb2cbd9563fcfe9f63 linux-3.0/drivers/pnp/system.c -753fcb835e0354c3c108d7aaf2412ab6 linux-3.0/drivers/pnp/support.c -512573a472c79bedf70fbe395ad41fe3 linux-3.0/drivers/pnp/resource.c -767abbb94edf8ec5a3284dce5d609211 linux-3.0/drivers/pnp/quirks.c -480b45d937733756e2743ea3abc3de6a linux-3.0/drivers/pnp/pnpbios/rsparser.c -4e160e66cd399d8f03d0d9c35e09dc36 linux-3.0/drivers/pnp/pnpbios/proc.c -b03f2b31aebdfab38d53c37cc8ebdc79 linux-3.0/drivers/pnp/pnpbios/pnpbios.h -95b1dfef518252324102469f4935f78d linux-3.0/drivers/pnp/pnpbios/core.c -307a894a9276d5d424744140896899fd linux-3.0/drivers/pnp/pnpbios/bioscalls.c -2d62905f7758dacfb0dc0228989ff332 linux-3.0/drivers/pnp/pnpbios/Makefile -7046e2a4cd12967a88d70b033336385e linux-3.0/drivers/pnp/pnpbios/Kconfig -cf79aeb21723cc2125c6c2556b4f8e3b linux-3.0/drivers/pnp/pnpacpi/rsparser.c -b0f751ed7752571eb4a1d7ad9124353e linux-3.0/drivers/pnp/pnpacpi/pnpacpi.h -072035dba6bfb9a42596861b6bcab25e linux-3.0/drivers/pnp/pnpacpi/core.c -929287b505584ec80963d0cb00dc7afe linux-3.0/drivers/pnp/pnpacpi/Makefile -50660be126a733b2fd493fc418c52621 linux-3.0/drivers/pnp/pnpacpi/Kconfig -50c65de0ae50da604cbd626d00e00dd0 linux-3.0/drivers/pnp/manager.c -baac7d64be73870a1815ec2bffaafa0a linux-3.0/drivers/pnp/isapnp/proc.c -9f34e05849b2144263b9c7a5bffd81b4 linux-3.0/drivers/pnp/isapnp/core.c -c2156b687bcbc18fdc932c6f024d1878 linux-3.0/drivers/pnp/isapnp/compat.c -092e37a6867f5e8b164384aa9622aee3 linux-3.0/drivers/pnp/isapnp/Makefile -6e1b08ef56bd32d5d1b932a696c13ec1 linux-3.0/drivers/pnp/isapnp/Kconfig -89e1751955b9bcede7eabc275e3ad1c0 linux-3.0/drivers/pnp/interface.c -6886bc01393438cc1aaa0b3d537a2676 linux-3.0/drivers/pnp/driver.c -a59cf90088494ad50305a77cdc85ae21 linux-3.0/drivers/pnp/core.c -36556ee6749c862d359478f64e65ebf1 linux-3.0/drivers/pnp/card.c -059c96922860d90ad536798d324ea1b0 linux-3.0/drivers/pnp/base.h -0b6f0c832d309ca10f45900c3768953a linux-3.0/drivers/pnp/Makefile -ff3140b7a7696b65a59679815567276c linux-3.0/drivers/pnp/Kconfig -fc3efe3f5316eb68c4977c0719ca8c79 linux-3.0/drivers/platform/x86/xo15-ebook.c -ff599d1a4bd08759f59b801b095fce51 linux-3.0/drivers/platform/x86/xo1-rfkill.c -a66d05f8c9834ffb7157fda04ff781ff linux-3.0/drivers/platform/x86/wmi.c -b836aaf0992fcc806162a91641b5318b linux-3.0/drivers/platform/x86/toshiba_bluetooth.c -81cef26b0e9edf8e88cb70224c598622 linux-3.0/drivers/platform/x86/toshiba_acpi.c -66d2a03e15de6712ae2f9ab03b8e3e12 linux-3.0/drivers/platform/x86/topstar-laptop.c -b69df587903877affdf5b5af111e4f7f linux-3.0/drivers/platform/x86/thinkpad_acpi.c -35c2aeb5b2276fbe4541926728f2ab29 linux-3.0/drivers/platform/x86/tc1100-wmi.c -fd8901b11fa01bdca2470f35a07e8c0c linux-3.0/drivers/platform/x86/sony-laptop.c -6d7faeba7db33843d617ceb7d8b54f2a linux-3.0/drivers/platform/x86/samsung-laptop.c -90d82339ff9ee2493b45f22a3306a38e linux-3.0/drivers/platform/x86/panasonic-laptop.c -6b0a6bcb96e9ab3d377eeaf8ea3d6497 linux-3.0/drivers/platform/x86/mxm-wmi.c -a0635a0d16671c1c6860ab7f0b278320 linux-3.0/drivers/platform/x86/msi-wmi.c -1e6482a05be58887d2ce3ff3c482f01f linux-3.0/drivers/platform/x86/msi-laptop.c -2c3c370088f35d28271320ae0d6cc87f linux-3.0/drivers/platform/x86/intel_scu_ipcutil.c -93ff76ef47156c287228630d1176fd82 linux-3.0/drivers/platform/x86/intel_scu_ipc.c -3585b359752a4ae0a331600849096d93 linux-3.0/drivers/platform/x86/intel_rar_register.c -4a15ac8c9a0b365a3e521c518cac123b linux-3.0/drivers/platform/x86/intel_pmic_gpio.c -0235e8a7850e4c0cfdaa8c6893cc3b36 linux-3.0/drivers/platform/x86/intel_oaktrail.c -7960a85a449958e012b366cff9c2d809 linux-3.0/drivers/platform/x86/intel_mid_thermal.c -430d6d6be6cfe47315ce3442c1967730 linux-3.0/drivers/platform/x86/intel_mid_powerbtn.c -fb822cf5e5bc10c0436578959e5b3b16 linux-3.0/drivers/platform/x86/intel_menlow.c -8de78d04887c0d1ac02b5893e4ed0f41 linux-3.0/drivers/platform/x86/intel_ips.h -ee9ff99b1869a67539952feeb00eb4c4 linux-3.0/drivers/platform/x86/intel_ips.c -962b447ad18f632957f441c3a3dc6a9f linux-3.0/drivers/platform/x86/ideapad-laptop.c -e10dfae8eb8e40fd65d0e178fef3ae6e linux-3.0/drivers/platform/x86/ibm_rtl.c -ff34889092ced0b418cac3a513c5c0b0 linux-3.0/drivers/platform/x86/hp_accel.c -9175d9380ffd6b53b5707df036fc7612 linux-3.0/drivers/platform/x86/hp-wmi.c -8af55755dbd26ee52316d25367228459 linux-3.0/drivers/platform/x86/hdaps.c -f4862dbd1f4572ba4f3227178388560e linux-3.0/drivers/platform/x86/fujitsu-laptop.c -a28d2d79e6ef4fe4fee8370a3d04ece3 linux-3.0/drivers/platform/x86/eeepc-wmi.c -398820c5587c85fa786bae1b7e0a0dce linux-3.0/drivers/platform/x86/eeepc-laptop.c -c2078e543cc480436f83ee34bb3116c8 linux-3.0/drivers/platform/x86/dell-wmi.c -402c38f6d6fac6c1d5b2d0c073d96816 linux-3.0/drivers/platform/x86/dell-wmi-aio.c -4dc160db03bc108b86ba03096923f750 linux-3.0/drivers/platform/x86/dell-laptop.c -261887b666410f222c7f672b022eed8a linux-3.0/drivers/platform/x86/compal-laptop.c -fb65c5b16e7221df660604416994a913 linux-3.0/drivers/platform/x86/classmate-laptop.c -73b45c49ecebdd86645e51711e77ffe7 linux-3.0/drivers/platform/x86/asus_acpi.c -be9d20d90561dbe26aa3f0904ab47e14 linux-3.0/drivers/platform/x86/asus-wmi.h -92e55f9bb3eb22658e87400ea2696b17 linux-3.0/drivers/platform/x86/asus-wmi.c -60aaeb7b2b2cb4404762cbe9ffa063e3 linux-3.0/drivers/platform/x86/asus-nb-wmi.c -a2d9e36d3380a2027a57d95f76216a14 linux-3.0/drivers/platform/x86/asus-laptop.c -1826486364ae0d839fba80368c8b216b linux-3.0/drivers/platform/x86/acerhdf.c -5a6d6b675aa73dbd0f149f9d73bf6343 linux-3.0/drivers/platform/x86/acer-wmi.c -9fc85b4f6ae875f18b34aa98c4d9dbbc linux-3.0/drivers/platform/x86/Makefile -716ddc6438e6eab44023592474549c65 linux-3.0/drivers/platform/x86/Kconfig -a08416d110ea90118481699b2747c6cf linux-3.0/drivers/platform/Makefile -77cb4652e1c57717e4cde33aed806cb5 linux-3.0/drivers/platform/Kconfig -dcb94d98ab2abdf91f4130cfb5bc5acb linux-3.0/drivers/pcmcia/yenta_socket.h -2e0ddd6de0e7c276ba154584df62ca34 linux-3.0/drivers/pcmcia/yenta_socket.c -827ca1e2a1e077094e63cc28a0f388bd linux-3.0/drivers/pcmcia/xxs1500_ss.c -e827b8afa78f454dee921b258a3a6d70 linux-3.0/drivers/pcmcia/vrc4173_cardu.h -394c26bb3c8ac961ac34c305df88e7a5 linux-3.0/drivers/pcmcia/vrc4173_cardu.c -8b8fce6f88dbf7f486683553fe07f658 linux-3.0/drivers/pcmcia/vrc4171_card.c -ab1eff2bfae56f7506a9e27abe3d9424 linux-3.0/drivers/pcmcia/vg468.h -ffb64bea1e27b6b1a741a1d2600571e2 linux-3.0/drivers/pcmcia/topic.h -cf6cec84cfd2ebb3b2f8456c27fad524 linux-3.0/drivers/pcmcia/ti113x.h -cd07635ad74a11de839484c04231899a linux-3.0/drivers/pcmcia/tcic.h -c4e6bea98d834f67de52b725dfb0282f linux-3.0/drivers/pcmcia/tcic.c -f6662100e05a5a8f623364f9d7cd2295 linux-3.0/drivers/pcmcia/socket_sysfs.c -79d5251d25f0997ec6329ee0afb6788b linux-3.0/drivers/pcmcia/soc_common.h -b06d806a473d9120d624cc180531e9d3 linux-3.0/drivers/pcmcia/soc_common.c -231c7f3e7592423a7c09ff4fe446cacf linux-3.0/drivers/pcmcia/sa11xx_base.h -24c6e9b13c5e515ac1ab50b8f7df60f8 linux-3.0/drivers/pcmcia/sa11xx_base.c -9505747faf2ca86d1175ccd1d85dbb03 linux-3.0/drivers/pcmcia/sa1111_generic.h -f240067bbaf2b6bf3b25a516d1e9999d linux-3.0/drivers/pcmcia/sa1111_generic.c -be2cd5f4641656dacc26446877f65230 linux-3.0/drivers/pcmcia/sa1100_simpad.c -08769f33a040ed9c36a518d368d66dd6 linux-3.0/drivers/pcmcia/sa1100_shannon.c -339f24bb95fcbc9d2e742aaf80632bf8 linux-3.0/drivers/pcmcia/sa1100_neponset.c -f3ebc43307935474318b55a101d986ab linux-3.0/drivers/pcmcia/sa1100_nanoengine.c -5a69aea90e3ac4a7ad6a7517ae8404af linux-3.0/drivers/pcmcia/sa1100_jornada720.c -d81bff8b214f1080fdc08a52b6b067f0 linux-3.0/drivers/pcmcia/sa1100_h3600.c -33688a2d1b3318ab9d3d28b5a072f585 linux-3.0/drivers/pcmcia/sa1100_generic.h -d5ffaefafc08a6ed57b669ef8515833d linux-3.0/drivers/pcmcia/sa1100_generic.c -57c39817bcdbcb7effc000655d2bb8f3 linux-3.0/drivers/pcmcia/sa1100_cerf.c -42002fe8e8c0ad59e1943cc9af9dc57b linux-3.0/drivers/pcmcia/sa1100_badge4.c -5617d420e56f1fe70b936e474921c0bc linux-3.0/drivers/pcmcia/sa1100_assabet.c -376761a349d295a528db1545f797d85c linux-3.0/drivers/pcmcia/rsrc_nonstatic.c -c07a07e35912d5518d11f7242ab506d1 linux-3.0/drivers/pcmcia/rsrc_mgr.c -42f2cf06f6070431bff9f81f752c4ca1 linux-3.0/drivers/pcmcia/rsrc_iodyn.c -56b9ae114452c0ba6ac9c743a67a6e25 linux-3.0/drivers/pcmcia/ricoh.h -afbc36ceb4bcd43891c1fc34719ccaea linux-3.0/drivers/pcmcia/pxa2xx_vpac270.c -5d0d4aac03bc5a52918c3a2196281611 linux-3.0/drivers/pcmcia/pxa2xx_viper.c -007b991fbe3d85c45c976a477b55d5f1 linux-3.0/drivers/pcmcia/pxa2xx_trizeps4.c -8075cb56769e6b08753d52e24475efec linux-3.0/drivers/pcmcia/pxa2xx_stargate2.c -03ad0366454f99b032995fe0e4338883 linux-3.0/drivers/pcmcia/pxa2xx_sharpsl.c -8438cc46697068476061516b562f3f8e linux-3.0/drivers/pcmcia/pxa2xx_palmtx.c -386e50284baad8d89a8bc948e1655845 linux-3.0/drivers/pcmcia/pxa2xx_palmtc.c -c8e40a38bded2ad9aff417c7055880d3 linux-3.0/drivers/pcmcia/pxa2xx_palmld.c -2f599b62b5440fbd1c070282b362dbdf linux-3.0/drivers/pcmcia/pxa2xx_mainstone.c -d2d7cd775d634f9ef6a079d286c7a580 linux-3.0/drivers/pcmcia/pxa2xx_lubbock.c -116556824a9beacdca2800a15ce7a156 linux-3.0/drivers/pcmcia/pxa2xx_e740.c -144b143358f1d020b16f42e0eb8cd980 linux-3.0/drivers/pcmcia/pxa2xx_colibri.c -c12bdabcd3d981a904906d7d71dbd2a3 linux-3.0/drivers/pcmcia/pxa2xx_cm_x2xx.c -09a2a8ed559f55fd165cae52f9e7803b linux-3.0/drivers/pcmcia/pxa2xx_cm_x270.c -a6b8d4d64c64ffbfbc721ea814349ef2 linux-3.0/drivers/pcmcia/pxa2xx_cm_x255.c -9d3f472bc9bbd76a204802bfa3292543 linux-3.0/drivers/pcmcia/pxa2xx_base.h -ae2375460474c1d45556af657e701981 linux-3.0/drivers/pcmcia/pxa2xx_base.c -01ddb5e74a900b7b38f3da890becbb4f linux-3.0/drivers/pcmcia/pxa2xx_balloon3.c -20eaf569fe246974a3d7814f885d59ce linux-3.0/drivers/pcmcia/pd6729.h -cf1ecd569be73872e511659f8affafdc linux-3.0/drivers/pcmcia/pd6729.c -fa792393d0cdb55f4f56009523a4d1be linux-3.0/drivers/pcmcia/pcmcia_resource.c -cfcdcaf87e141791c9655e7eaaa4ee76 linux-3.0/drivers/pcmcia/pcmcia_cis.c -4525a5413b3acb37ff20aa0fbc39c597 linux-3.0/drivers/pcmcia/omap_cf.c -f7ca4c1c68651d8c5f8b2aa6002c4ea6 linux-3.0/drivers/pcmcia/o2micro.h -ea1a3df06067b001ec46d13f5f36fc28 linux-3.0/drivers/pcmcia/m8xx_pcmcia.c -09848b3be1bc170611ef45edffa4cdc1 linux-3.0/drivers/pcmcia/m32r_pcc.h -c203d5aa4174cba5c966ae348b75e03d linux-3.0/drivers/pcmcia/m32r_pcc.c -24875165a4fb01d24264535aff5af42d linux-3.0/drivers/pcmcia/m32r_cfc.h -feee5b6aeac87f0e31ab4b3f01a6458c linux-3.0/drivers/pcmcia/m32r_cfc.c -8febcf140cebc82635723e59928dba15 linux-3.0/drivers/pcmcia/i82365.h -55e730aa037ed28cd80e1d2276ac9dcf linux-3.0/drivers/pcmcia/i82365.c -e2b11e3c71c1579644876fe8b465a3fb linux-3.0/drivers/pcmcia/i82092aa.h -70008df2a6e97884b8cd1e3a7e2a57c8 linux-3.0/drivers/pcmcia/i82092.c -fd2c0ad35a79584722780e6598bc07f2 linux-3.0/drivers/pcmcia/electra_cf.c -43ac213d80958379106cd0c4a089ea8e linux-3.0/drivers/pcmcia/ds.c -1caedceb5fe8fdb36f90ff284fb548ed linux-3.0/drivers/pcmcia/db1xxx_ss.c -56eaa23dbbf932fa8686aff2f485fd3e linux-3.0/drivers/pcmcia/cs_internal.h -544b8e9973bc19ccf4795f1e13d4949d linux-3.0/drivers/pcmcia/cs.c -e49bcd80799c6efc1987aa3a9b23e675 linux-3.0/drivers/pcmcia/cistpl.c -73a906a08864432e19ea8efc44a2c246 linux-3.0/drivers/pcmcia/cirrus.h -a961bba22f67818b37efb51885c57a46 linux-3.0/drivers/pcmcia/cardbus.c -4d81bf87e348107978b8086a13105858 linux-3.0/drivers/pcmcia/bfin_cf_pcmcia.c -5191b003b24efbe551d647a8e859c481 linux-3.0/drivers/pcmcia/bcm63xx_pcmcia.h -75e340cac811ddfbb93cd8f374372ead linux-3.0/drivers/pcmcia/bcm63xx_pcmcia.c -a263504c766b83984509f65a4eb201dc linux-3.0/drivers/pcmcia/au1000_pb1x00.c -b5063ac75b7007621821a2a31b2a3820 linux-3.0/drivers/pcmcia/au1000_generic.h -e4656f8ceed220c4d5ac478b82eff832 linux-3.0/drivers/pcmcia/au1000_generic.c -756bdb2167f336e2091dbf2d0977ab30 linux-3.0/drivers/pcmcia/at91_cf.c -4fdfd99ca0756aa0591785fd17683da1 linux-3.0/drivers/pcmcia/Makefile -05d7b88ac3bd2bb00098ed50e49fcee9 linux-3.0/drivers/pcmcia/Kconfig -5dd5f800c50d49261be209a60667cc8f linux-3.0/drivers/pci/xen-pcifront.c -390e7bf37c5d7b0017497973bf19dccc linux-3.0/drivers/pci/vpd.c -a64222607edb73fb6a485761cf289eb5 linux-3.0/drivers/pci/syscall.c -02356973c4494901ac7bf6b7ea182ceb linux-3.0/drivers/pci/slot.c -ae289fde4378dcc828a0e284359a1200 linux-3.0/drivers/pci/setup-res.c -3b3b6bbd4cb3bf51733a83a4d9b027bc linux-3.0/drivers/pci/setup-irq.c -0e2298b1deb0b3ba37d1759ac18e9f81 linux-3.0/drivers/pci/setup-bus.c -713e8819f2018c4ffe7e1d011847fde3 linux-3.0/drivers/pci/search.c -fa253a6269db446d478a1172f573c2cb linux-3.0/drivers/pci/rom.c -ef1cf8402bbd0abfda3a884d49f94bd9 linux-3.0/drivers/pci/remove.c -06e48e4ca5bcd111b7dd6699c190d387 linux-3.0/drivers/pci/quirks.c -c7c891779e8a98256eb90eaee302e78d linux-3.0/drivers/pci/proc.c -aac736b10e37aaaf5d23cd704eeffefc linux-3.0/drivers/pci/probe.c -9dbaa624e393826e974fde1e575d02ae linux-3.0/drivers/pci/pcie/portdrv_pci.c -1df975445421e942d4003a7ffdef9e5d linux-3.0/drivers/pci/pcie/portdrv_core.c -501b3f029f054789abd2f710c02e98ba linux-3.0/drivers/pci/pcie/portdrv_bus.c -68f727a92630541aa670a870c5af6bb2 linux-3.0/drivers/pci/pcie/portdrv_acpi.c -3bca494706af9e8e69986ab3c00b9c40 linux-3.0/drivers/pci/pcie/portdrv.h -7e4d136595217414b7550a23d32d87ad linux-3.0/drivers/pci/pcie/pme.c -d19ab5a7aa3d802ad91dae6fd1659499 linux-3.0/drivers/pci/pcie/aspm.c -652c8569ba177eab4c826dfe64e1077a linux-3.0/drivers/pci/pcie/aer/ecrc.c -80dd6e31be6cc6fb2ccb44e516a7c91b linux-3.0/drivers/pci/pcie/aer/aerdrv_errprint.c -86a73ab40a8f42b47e56b1c10952e3f0 linux-3.0/drivers/pci/pcie/aer/aerdrv_core.c -bf173445850c82df6f839b9a8fbf28fd linux-3.0/drivers/pci/pcie/aer/aerdrv_acpi.c -253019e89841abe0b4b58b02c6fb2319 linux-3.0/drivers/pci/pcie/aer/aerdrv.h -8ef6a32bdad2d62634257763511d7c8b linux-3.0/drivers/pci/pcie/aer/aerdrv.c -e9540c655605b115a7787708b47093ba linux-3.0/drivers/pci/pcie/aer/aer_inject.c -9cbbd5a1fb4c318e2bc69b464f3f0598 linux-3.0/drivers/pci/pcie/aer/Makefile -3e1bbabf7967f87996dd33a57e9f5a7e linux-3.0/drivers/pci/pcie/aer/Kconfig.debug -8d859b3155fc3ce7bf8a9a0033bf1ae4 linux-3.0/drivers/pci/pcie/aer/Kconfig -305d44c78dbe8a8751544287145a50d5 linux-3.0/drivers/pci/pcie/Makefile -58f7c52c3f01569fcebaf253c703782e linux-3.0/drivers/pci/pcie/Kconfig -7d1fa474c4c4ecd3ad4c36917cef17da linux-3.0/drivers/pci/pci.h -6880246d84b792267f7f7ebc887ed627 linux-3.0/drivers/pci/pci.c -45f73a58f74f8864831ed3b77da15a42 linux-3.0/drivers/pci/pci-sysfs.c -eccd7291cc36a33d8e0a90eb02c6c1a5 linux-3.0/drivers/pci/pci-stub.c -6b749e9effa9120546415f0b1ecb894d linux-3.0/drivers/pci/pci-label.c -8e5c40160f8e1b08994c343e7ec62925 linux-3.0/drivers/pci/pci-driver.c -69ddd6f984129c09d3bf3dcb3fe0a755 linux-3.0/drivers/pci/pci-acpi.c -ac718822fb157f01b7e865af37c9bc9a linux-3.0/drivers/pci/msi.h -1cdd2a07dfd39cbc402058444c2a1146 linux-3.0/drivers/pci/msi.c -6cf3f784d7e0f5ea807ad66ddf28f46f linux-3.0/drivers/pci/irq.c -66b1c6a1f4bb55878dbe8f3be613a7ea linux-3.0/drivers/pci/iova.c -d86a0b27007ffc5e51c0bb734b1c4895 linux-3.0/drivers/pci/iov.c -481cd828ea718046b494a6ba8aa091c9 linux-3.0/drivers/pci/ioapic.c -e180000f238ad3a31dea22a7b787fc2b linux-3.0/drivers/pci/intr_remapping.h -18c58803d85dacd055d6898b41cf6314 linux-3.0/drivers/pci/intr_remapping.c -e13fd72f7174301f51c070862c4fa836 linux-3.0/drivers/pci/intel-iommu.c -bb0554564ef446773bb285635b5d505b linux-3.0/drivers/pci/htirq.c -b101f975e4d6372d757b75c3a0c42de4 linux-3.0/drivers/pci/hotplug/shpchp_sysfs.c -bfdd6d7a2d3b711c8bf4732dbbc2e2ac linux-3.0/drivers/pci/hotplug/shpchp_pci.c -03620cd9ab02602a5eb49d3ff70816f0 linux-3.0/drivers/pci/hotplug/shpchp_hpc.c -c84594bdb5d405efce78667ade9c5964 linux-3.0/drivers/pci/hotplug/shpchp_ctrl.c -86c1f80cb94331024bfefaacc8ac6c49 linux-3.0/drivers/pci/hotplug/shpchp_core.c -346010e85b88fac2faef28609a0af4e1 linux-3.0/drivers/pci/hotplug/shpchp.h -538ab9aac949ba9a048db991c62e5cfa linux-3.0/drivers/pci/hotplug/sgi_hotplug.c -060005eee0409cf060aa66c96934f071 linux-3.0/drivers/pci/hotplug/rpaphp_slot.c -900a97fd7020be8033939bb32b9559a3 linux-3.0/drivers/pci/hotplug/rpaphp_pci.c -d9746b96a88b3c85585b8f07e142754d linux-3.0/drivers/pci/hotplug/rpaphp_core.c -92da81b9f7e58cb3d102d296e0c48b04 linux-3.0/drivers/pci/hotplug/rpaphp.h -839969471ccfe83fdc6285cc39409e1e linux-3.0/drivers/pci/hotplug/rpadlpar_sysfs.c -1c9db0142704d6b68880b7ed2018ceab linux-3.0/drivers/pci/hotplug/rpadlpar_core.c -9d221fec8bdb24669d533dae14d6e9f2 linux-3.0/drivers/pci/hotplug/rpadlpar.h -25249610192c80fbbca6329ff6a0f796 linux-3.0/drivers/pci/hotplug/pcihp_slot.c -5661151ed0d52b65c0e80d475e4500a4 linux-3.0/drivers/pci/hotplug/pcihp_skeleton.c -5fd274546302f3b96ae69ebdd423dda3 linux-3.0/drivers/pci/hotplug/pciehp_pci.c -e2d9282f4ce7d5fe421c04581896f94c linux-3.0/drivers/pci/hotplug/pciehp_hpc.c -c0c0ff97a217828c9956261392e58870 linux-3.0/drivers/pci/hotplug/pciehp_ctrl.c -c58d0d087e62c037f3b2d9e603df86c2 linux-3.0/drivers/pci/hotplug/pciehp_core.c -a61c689bd4967cdd9fe8964ea6b38d5b linux-3.0/drivers/pci/hotplug/pciehp_acpi.c -9245dbf8e9d2a73c86c7c0b2d180c17f linux-3.0/drivers/pci/hotplug/pciehp.h -08821ff3f0c0d98057cc3e509d939796 linux-3.0/drivers/pci/hotplug/pci_hotplug_core.c -0045af7a662ca59b5ac7f4a3decfc29f linux-3.0/drivers/pci/hotplug/ibmphp_res.c -a0eed559d9ed266a4c4621190e6882f0 linux-3.0/drivers/pci/hotplug/ibmphp_pci.c -494361f4fd776be2324fa63976021b1a linux-3.0/drivers/pci/hotplug/ibmphp_hpc.c -0ae732533a6887a35b3c567174138eb8 linux-3.0/drivers/pci/hotplug/ibmphp_ebda.c -89d2919348ad0a0877e18852405b2a39 linux-3.0/drivers/pci/hotplug/ibmphp_core.c -ab06e1e7deff433c97f4ad20af547d89 linux-3.0/drivers/pci/hotplug/ibmphp.h -f2ee19a936390fa2410b6a569f1cb702 linux-3.0/drivers/pci/hotplug/fakephp.c -ff77a5d6fb393de407f6f9f88c176ccb linux-3.0/drivers/pci/hotplug/cpqphp_sysfs.c -608cccf40d0226cb712fcb6bf1b8caa4 linux-3.0/drivers/pci/hotplug/cpqphp_pci.c -f31513c7309966d0cb845cded986ca3a linux-3.0/drivers/pci/hotplug/cpqphp_nvram.h -9d7273cf83a18028a78e06accd793943 linux-3.0/drivers/pci/hotplug/cpqphp_nvram.c -627acdce10147391bdb261fe0928cfc6 linux-3.0/drivers/pci/hotplug/cpqphp_ctrl.c -fe25ff3740f4b7c3c3031f415c7d0cbb linux-3.0/drivers/pci/hotplug/cpqphp_core.c -124bcbfdb9e224f2a7ad6fa62bc6e83c linux-3.0/drivers/pci/hotplug/cpqphp.h -4ffdb8666f11b3c7aa343e5caefdc67b linux-3.0/drivers/pci/hotplug/cpcihp_zt5550.h -3866ca9bb7dd631bd3a8703560d58efa linux-3.0/drivers/pci/hotplug/cpcihp_zt5550.c -abf03bf29ca63084e0d7548f5a8508db linux-3.0/drivers/pci/hotplug/cpcihp_generic.c -73bc4d891fb89183e2f201c72194bb72 linux-3.0/drivers/pci/hotplug/cpci_hotplug_pci.c -62dc0b0fb40b1d47fb3c8ffbfbb814a4 linux-3.0/drivers/pci/hotplug/cpci_hotplug_core.c -fe22eb48fbd5e6ce09641fb1e73b7c14 linux-3.0/drivers/pci/hotplug/cpci_hotplug.h -ff6dfdcf6d91b5f5df1f61c124a30985 linux-3.0/drivers/pci/hotplug/acpiphp_ibm.c -8825b9965bc69ee0c7764deae6302d09 linux-3.0/drivers/pci/hotplug/acpiphp_glue.c -df2b821cf8fa6af2646d2f25f79a6710 linux-3.0/drivers/pci/hotplug/acpiphp_core.c -91143e764a2539245bc1d1ced27e8923 linux-3.0/drivers/pci/hotplug/acpiphp.h -4e87a2ded14b76b7f1520afe31e8e8a8 linux-3.0/drivers/pci/hotplug/acpi_pcihp.c -bd873081aa52626af4f8be29557b3558 linux-3.0/drivers/pci/hotplug/Makefile -530e4dad53147710f4b0f2afe8775ccd linux-3.0/drivers/pci/hotplug/Kconfig -e050cb9e499940c3ef3e61783903ae58 linux-3.0/drivers/pci/hotplug.c -d7d532c1a05504a3f6c7d1910a64670e linux-3.0/drivers/pci/hotplug-pci.c -a44ac81e29d1732aec6b6783f5e6d004 linux-3.0/drivers/pci/dmar.c -122203aecf02423f67ad57a93946e53b linux-3.0/drivers/pci/bus.c -a7e86cfda33c0ac2737743a35c7711f5 linux-3.0/drivers/pci/access.c -db6531a6b1e481aac45276fa057257ea linux-3.0/drivers/pci/Makefile -1226bbef296d15c49afcf789f3445c9c linux-3.0/drivers/pci/Kconfig -3af83a8d8de4324e09a452ba67a8b4c3 linux-3.0/drivers/pci/.gitignore -ffbd2f3b168ce4cd8930659f99703385 linux-3.0/drivers/parport/share.c -5c24d402b4163c353105e3e8f865e1fe linux-3.0/drivers/parport/procfs.c -5b9e5f15d271cb2283f9b7518352789f linux-3.0/drivers/parport/probe.c -f4be8662a2b515154693202dc8351d4d linux-3.0/drivers/parport/parport_sunbpp.c -9f06a3e2b77e0efb103088190a6e4af6 linux-3.0/drivers/parport/parport_serial.c -82e7da72b1c6b89ccfc48a040fbfa462 linux-3.0/drivers/parport/parport_pc.c -e51320bcff00cf78dea75283458faec6 linux-3.0/drivers/parport/parport_mfc3.c -fb722c3de7aba329eb0c6fa210809ded linux-3.0/drivers/parport/parport_ip32.c -d4d3d5dd2a475c2ac593d45e5241a441 linux-3.0/drivers/parport/parport_gsc.h -0fc86de40628c519cf9d50ed5eeed610 linux-3.0/drivers/parport/parport_gsc.c -98d66531fa7b3a78de4745d2ffca8aed linux-3.0/drivers/parport/parport_cs.c -1b5136ade9cb963ccafae2d2f498d88a linux-3.0/drivers/parport/parport_ax88796.c -c581d2b4e07385e20f305cc5a610bc4e linux-3.0/drivers/parport/parport_atari.c -872997116ad54a7782e63d55044d4a92 linux-3.0/drivers/parport/parport_amiga.c -240b0912a117377bd9a7e195cc4d189e linux-3.0/drivers/parport/multiface.h -8333d541c54f733d72fb66f5f23c6929 linux-3.0/drivers/parport/ieee1284_ops.c -47bc8d229c702aceddeba2f8e0f2889e linux-3.0/drivers/parport/ieee1284.c -68f2199f88fecc4fc8790477b2bbce1e linux-3.0/drivers/parport/daisy.c -5eb60043cf44f49da1871ae2317b95e9 linux-3.0/drivers/parport/TODO-parport -091313a86e3b37acd0363b72be222c11 linux-3.0/drivers/parport/Makefile -1ab7eadb315d42e7b502ecdb2cd18202 linux-3.0/drivers/parport/Kconfig -fd68253236deeca19776e290fbd4e24e linux-3.0/drivers/parport/BUGS-parport -b76c7cd6c13c7cd8eb11422c62a95591 linux-3.0/drivers/parisc/wax.c -1537a96f51897df648768755b8f7ca19 linux-3.0/drivers/parisc/superio.c -1b99b827f74cdd874f5ea7317bd9843a linux-3.0/drivers/parisc/sba_iommu.c -a283a01f619d4ff619e88131f8a6a0cd linux-3.0/drivers/parisc/power.c -fa5ca30c3ac5828e337ec81ddec13109 linux-3.0/drivers/parisc/pdc_stable.c -0164b598e3afee02b53e096a8aa0365c linux-3.0/drivers/parisc/led.c -efab8923d335e8f154739d3cf5c9d05b linux-3.0/drivers/parisc/lba_pci.c -25df1732c9447470f89b804602fee70b linux-3.0/drivers/parisc/lasi.c -08bb5b878ded304795e3e647ede5cf0b linux-3.0/drivers/parisc/iosapic_private.h -527ae3c7e2da644e97833ff58d0810bb linux-3.0/drivers/parisc/iosapic.c -b2c168c58b07cc9f2d49f21f62d77a00 linux-3.0/drivers/parisc/iommu-helpers.h -43cfe728fd07437fc60462f63d2fdacf linux-3.0/drivers/parisc/hppb.c -93ea56903b95c3042c2da7ad3dadb44f linux-3.0/drivers/parisc/gsc.h -582da32fcfacd50aa83a69d297866e17 linux-3.0/drivers/parisc/gsc.c -216484294e9336375d5031d2e647e01a linux-3.0/drivers/parisc/eisa_enumerator.c -b28f652cc4a632f0f1530b9f109739ab linux-3.0/drivers/parisc/eisa_eeprom.c -a79032dadd8a66897dce9c491f592670 linux-3.0/drivers/parisc/eisa.c -09dd09f2c74204905baf570832c35370 linux-3.0/drivers/parisc/dino.c -b2389d022907206e891ddfc7426bb923 linux-3.0/drivers/parisc/ccio-rm-dma.c -432440fd263f4b9720e708c5cdde2e40 linux-3.0/drivers/parisc/ccio-dma.c -f798e9db694e35c144bc7fecc39d7ce4 linux-3.0/drivers/parisc/asp.c -0d7c27717378189b4d3497d0483438cb linux-3.0/drivers/parisc/README.dino -16daaf6c0dbfa24de1c56853dc11df8d linux-3.0/drivers/parisc/Makefile -4548905d4838cdf037f989df31b61a61 linux-3.0/drivers/parisc/Kconfig -6de46aa21b91d0587ccbc033ad1bb95b linux-3.0/drivers/oprofile/timer_int.c -ed6a1c7e624d7c03fa2b34694bf4dbb7 linux-3.0/drivers/oprofile/oprofilefs.c -54d738c8a8650adeee31aa74eb880752 linux-3.0/drivers/oprofile/oprofile_stats.h -eaf39269edaa35e31ee224b3b3cda59c linux-3.0/drivers/oprofile/oprofile_stats.c -4183ca54cbf45ae7d8c749c32fedb11b linux-3.0/drivers/oprofile/oprofile_perf.c -45cede920cf93688a977c09f4afa3d9f linux-3.0/drivers/oprofile/oprofile_files.c -848a4b224e884f846613c8f62fe45018 linux-3.0/drivers/oprofile/oprof.h -523328112c2d98ab818ab32e4eb2d960 linux-3.0/drivers/oprofile/oprof.c -5af332d3ecf1fc7bdb1656a49e2ba9e7 linux-3.0/drivers/oprofile/event_buffer.h -39e2b363dac6fb0cd75ef56cae44a421 linux-3.0/drivers/oprofile/event_buffer.c -78d14ee9c61a6a2781301c3264035d49 linux-3.0/drivers/oprofile/cpu_buffer.h -c4c19f8387979e45be627a155f8611df linux-3.0/drivers/oprofile/cpu_buffer.c -92d1d079e09deb4bed113934d0abd30d linux-3.0/drivers/oprofile/buffer_sync.h -aa94e15716c585d31d2271fe94e59584 linux-3.0/drivers/oprofile/buffer_sync.c -d24ae2ed408456b7b6129683316cab38 linux-3.0/drivers/of/platform.c -79ea833ba3f9d545a233c8680074aa54 linux-3.0/drivers/of/pdt.c -a65ee3dea5357a7a02eab07b9579b4b4 linux-3.0/drivers/of/of_spi.c -ccf0654e22deda6d48cb309f04f4789f linux-3.0/drivers/of/of_pci.c -26509c358101b4a3486fed31e6972cdb linux-3.0/drivers/of/of_net.c -045af50fa36c1c9d99ab4605851130b0 linux-3.0/drivers/of/of_mdio.c -dcead145bedf781f8b8090e2f43b1405 linux-3.0/drivers/of/of_i2c.c -1a7d765a94f0fe26494eb5308d609583 linux-3.0/drivers/of/irq.c -025e07cba6380b568d51caa96efa575c linux-3.0/drivers/of/gpio.c -1f6d2bbd724b47aa553f769ac286db0f linux-3.0/drivers/of/fdt.c -f8dd6377ad38b16d13413f30b4f4cab8 linux-3.0/drivers/of/device.c -8448296ae8610c00f2b84e5f186edcee linux-3.0/drivers/of/base.c -a77bdeb767f0e3ef21c1f41fde8205e7 linux-3.0/drivers/of/address.c -a0379b11948a5e28c2c7dad032b1801d linux-3.0/drivers/of/Makefile -c0bf869fe91569a7b191294667dc864a linux-3.0/drivers/of/Kconfig -14f160f3ac8fd0e470e8a9986c104fa8 linux-3.0/drivers/nubus/proc.c -632cef0688531e47a5c511ec3aba2c2d linux-3.0/drivers/nubus/nubus.c -70fd197a86374ef51a47118d36991e08 linux-3.0/drivers/nubus/Makefile -084c1a4374cb88aee861ba3922423b69 linux-3.0/drivers/nfc/pn544.c -f71cafc56339b44c75a4177373cdb61b linux-3.0/drivers/nfc/Makefile -3c155d4d53c8390546648003d1a6a557 linux-3.0/drivers/nfc/Kconfig -1d63f5484f240534c5b875442d9f76f4 linux-3.0/drivers/net/zorro8390.c -c97ee21d48c8eb4187f6259d970057ef linux-3.0/drivers/net/znet.c -3eeba6d101f97a0c95fc15c962627de6 linux-3.0/drivers/net/yellowfin.c -0c95f15a4b9319d6510ce65c4aa4450d linux-3.0/drivers/net/xtsonic.c -4c316b169b35d1ffd36632178ec388a3 linux-3.0/drivers/net/xilinx_emaclite.c -0bcbb5dc7eaeee07cec52ffa0b249f1f linux-3.0/drivers/net/xen-netfront.c -6a770f49513204ba1ce5019e6f491bcc linux-3.0/drivers/net/xen-netback/xenbus.c -4e71fc9ee48849fa9bf8b6cba7a805f0 linux-3.0/drivers/net/xen-netback/netback.c -64d5143bdb01dcbb5dba1f9386b6b76c linux-3.0/drivers/net/xen-netback/interface.c -63dd2c42b96b65f1d78b59aeac2bae7f linux-3.0/drivers/net/xen-netback/common.h -552411a3a07fa3bed936eaf69cda4149 linux-3.0/drivers/net/xen-netback/Makefile -743f8c93826e4cc49041e1741aa59a1c linux-3.0/drivers/net/wireless/zd1211rw/zd_usb.h -0730a474f67fd6d4731186196a564526 linux-3.0/drivers/net/wireless/zd1211rw/zd_usb.c -451439e862a37fb8deb9cf104034a386 linux-3.0/drivers/net/wireless/zd1211rw/zd_rf_uw2453.c -067b86c7f498088e34cade8bb0048587 linux-3.0/drivers/net/wireless/zd1211rw/zd_rf_rf2959.c -992eb532df53ec8725e42748c7968e92 linux-3.0/drivers/net/wireless/zd1211rw/zd_rf_al7230b.c -0e91045edd3b0338f1c2a4e5cf5e1cf3 linux-3.0/drivers/net/wireless/zd1211rw/zd_rf_al2230.c -f4d585359d931d00eeeb7cefd3fcca12 linux-3.0/drivers/net/wireless/zd1211rw/zd_rf.h -0f5c744334e9731cab596afa7765a068 linux-3.0/drivers/net/wireless/zd1211rw/zd_rf.c -f31269fa72f5cef8fadae4e767a04423 linux-3.0/drivers/net/wireless/zd1211rw/zd_mac.h -d5f91137519130e195a178137051c35e linux-3.0/drivers/net/wireless/zd1211rw/zd_mac.c -bc7b7cd6ecb42c11a24da598d4c73301 linux-3.0/drivers/net/wireless/zd1211rw/zd_def.h -07021c79de6283b6e2720a1d5e926348 linux-3.0/drivers/net/wireless/zd1211rw/zd_chip.h -874b0abe76a3abaee4702f41bfb0e024 linux-3.0/drivers/net/wireless/zd1211rw/zd_chip.c -adbbf2ab2b158d4d4dc27322ac25fbe2 linux-3.0/drivers/net/wireless/zd1211rw/Makefile -bcf717a505f050164ebe88c114cd1877 linux-3.0/drivers/net/wireless/zd1211rw/Kconfig -71cad7af3aadc523042d3dd100ca7c79 linux-3.0/drivers/net/wireless/zd1201.h -08b4974ea3e815e148141fd196cdaf97 linux-3.0/drivers/net/wireless/zd1201.c -26c10cf0665a842a9782ce4c357ab3de linux-3.0/drivers/net/wireless/wl3501_cs.c -3db758ca0bb2cd1836acdfc1fc8638b4 linux-3.0/drivers/net/wireless/wl3501.h -9f30c7b0d8660322566a7ded66ed94a2 linux-3.0/drivers/net/wireless/wl12xx/wl12xx_platform_data.c -2d9889f8e1dbaf15dcb9b0080be25f1f linux-3.0/drivers/net/wireless/wl12xx/wl12xx_80211.h -17caf147d0a416226f8b6b92d85f4f32 linux-3.0/drivers/net/wireless/wl12xx/wl12xx.h -1c362285e6e8cb7faa8ef47c8c13d425 linux-3.0/drivers/net/wireless/wl12xx/tx.h -e57bcd182a5ce95a9fe0599167c131dd linux-3.0/drivers/net/wireless/wl12xx/tx.c -faabfa3d86217da3b77a14a8561edf32 linux-3.0/drivers/net/wireless/wl12xx/testmode.h -ed1a668ad57a1fa9dc122f87b76adee0 linux-3.0/drivers/net/wireless/wl12xx/testmode.c -8631831fbbf53332bcc5e77d90b7006f linux-3.0/drivers/net/wireless/wl12xx/spi.c -60b3ca7fd978e07bee10d911402d39b6 linux-3.0/drivers/net/wireless/wl12xx/sdio_test.c -38f99e13e63b1d0070fc8cdde55119ff linux-3.0/drivers/net/wireless/wl12xx/sdio.c -5dc181ee5723874fe23031d64426c5f8 linux-3.0/drivers/net/wireless/wl12xx/scan.h -809f2dcc48fe47458bbb51ad4aa66d02 linux-3.0/drivers/net/wireless/wl12xx/scan.c -2afd4d126892690b59dadf90648b4260 linux-3.0/drivers/net/wireless/wl12xx/rx.h -6c8aaa9dec4f108de2554c59793d39af linux-3.0/drivers/net/wireless/wl12xx/rx.c -631ef6dbec81986350578229e277751d linux-3.0/drivers/net/wireless/wl12xx/reg.h -d02ae9c9c531db21f2c14de7c5a10978 linux-3.0/drivers/net/wireless/wl12xx/ps.h -13c58c5259da82fb275fd43dd6659d13 linux-3.0/drivers/net/wireless/wl12xx/ps.c -f019852059d6ce130b8d50f428d81163 linux-3.0/drivers/net/wireless/wl12xx/main.c -9c05db681145ec958c022ba2f7c16726 linux-3.0/drivers/net/wireless/wl12xx/io.h -5f5bb5c0eb7ba813d70a5874a79d39ea linux-3.0/drivers/net/wireless/wl12xx/io.c -88f14bac2dde864b4d79026909b104bb linux-3.0/drivers/net/wireless/wl12xx/init.h -b0451b81b9cbec63daf3f41e5897b665 linux-3.0/drivers/net/wireless/wl12xx/init.c -4eb7c0c38b2b8e4ac2178b4c2404928d linux-3.0/drivers/net/wireless/wl12xx/ini.h -7c80b8f9a8bb823ec6ce232b41a942dd linux-3.0/drivers/net/wireless/wl12xx/event.h -5254ca7a22b31d98c19b9fa237dd59bf linux-3.0/drivers/net/wireless/wl12xx/event.c -dc95d83cb90fd2096e40d09cfad41ac7 linux-3.0/drivers/net/wireless/wl12xx/debugfs.h -a3a459a055ab1f6ba8f59d1c18d5c0a3 linux-3.0/drivers/net/wireless/wl12xx/debugfs.c -b82d13a22f34116cfc8d89f4bd96154d linux-3.0/drivers/net/wireless/wl12xx/conf.h -f589ba31bbd73131936c6ef7d74c01b3 linux-3.0/drivers/net/wireless/wl12xx/cmd.h -890fa79c107d9f792a4d0d0a1f6c2021 linux-3.0/drivers/net/wireless/wl12xx/cmd.c -2f5b46c842756694bf1db119feba2132 linux-3.0/drivers/net/wireless/wl12xx/boot.h -e104a61b9df4d71e934341ceb493cf90 linux-3.0/drivers/net/wireless/wl12xx/boot.c -bf90c1661590c70c595f7ff24d52540e linux-3.0/drivers/net/wireless/wl12xx/acx.h -1c15dcb277768e6a72112e130e9a3a8f linux-3.0/drivers/net/wireless/wl12xx/acx.c -4196267f01c6cfd17f9f8877d462be43 linux-3.0/drivers/net/wireless/wl12xx/Makefile -b9c8c1165cc41c691b9f0518bba0ba8f linux-3.0/drivers/net/wireless/wl12xx/Kconfig -df5af53e73415dad3d52c1f781314db9 linux-3.0/drivers/net/wireless/wl1251/wl12xx_80211.h -b2a399cd05290a54f9fef284926f9f11 linux-3.0/drivers/net/wireless/wl1251/wl1251.h -58a91f39cc3d5df46384782718a8b84d linux-3.0/drivers/net/wireless/wl1251/tx.h -e1ea31a0ad715c7d349effb2a6f93cde linux-3.0/drivers/net/wireless/wl1251/tx.c -dd708c1af065bb93608716040350f71f linux-3.0/drivers/net/wireless/wl1251/spi.h -f7010fe0b6cd5fdb48bd59392660254f linux-3.0/drivers/net/wireless/wl1251/spi.c -056472d5fa1531793913f15d66775258 linux-3.0/drivers/net/wireless/wl1251/sdio.c -1699bcaa4d2161821daba7ecc420a9d3 linux-3.0/drivers/net/wireless/wl1251/rx.h -6174a93452ef51c7c4097e34a154252f linux-3.0/drivers/net/wireless/wl1251/rx.c -2c207ac9091c44d1004cef57d5b92c53 linux-3.0/drivers/net/wireless/wl1251/reg.h -4bbaa1095b594cb924f278809232e5dc linux-3.0/drivers/net/wireless/wl1251/ps.h -51ca40ee60575202071c2e1496e875c7 linux-3.0/drivers/net/wireless/wl1251/ps.c -b98f0894366a83e430e14f3864aacca6 linux-3.0/drivers/net/wireless/wl1251/main.c -b13c2ce161ee8d61a2566fdece6d1684 linux-3.0/drivers/net/wireless/wl1251/io.h -fe59a4a0eb5047c32cf1ea8e9f814a81 linux-3.0/drivers/net/wireless/wl1251/io.c -fec7714237cf2dfbc0d4db6e5a219ca5 linux-3.0/drivers/net/wireless/wl1251/init.h -df7e8004eaa2373bf068893cecf9d692 linux-3.0/drivers/net/wireless/wl1251/init.c -aa92575e4521e8c0ef90ec937fe92c8e linux-3.0/drivers/net/wireless/wl1251/event.h -d35644e522d1ac5d9ddcdbefe28fd168 linux-3.0/drivers/net/wireless/wl1251/event.c -8e7aad47d6659bfcf6e0ca6365bc1a31 linux-3.0/drivers/net/wireless/wl1251/debugfs.h -eefed7ce57344316e137180ea618a847 linux-3.0/drivers/net/wireless/wl1251/debugfs.c -434bc065066d202ca9845d66fa1aa919 linux-3.0/drivers/net/wireless/wl1251/cmd.h -0362c66c158288dd7c4abf7933899dc4 linux-3.0/drivers/net/wireless/wl1251/cmd.c -327defe879c032ac0cba30d40365907d linux-3.0/drivers/net/wireless/wl1251/boot.h -4e82930d66000aad557b122984922851 linux-3.0/drivers/net/wireless/wl1251/boot.c -de4950908a6478da506f0bb88595995d linux-3.0/drivers/net/wireless/wl1251/acx.h -65a7baf53c8240e4628c7c603439389f linux-3.0/drivers/net/wireless/wl1251/acx.c -ef0a35d05511fd7219d64f2b50dc2a9d linux-3.0/drivers/net/wireless/wl1251/Makefile -6324513f3f1b26fe4b480d605b277964 linux-3.0/drivers/net/wireless/wl1251/Kconfig -d55f46c72d7600a4f3da6c3013dc5e27 linux-3.0/drivers/net/wireless/rtlwifi/wifi.h -8c91d46781882232cc6aabcb7d7c67be linux-3.0/drivers/net/wireless/rtlwifi/usb.h -7c01370986323a78b3eb5540e791e01f linux-3.0/drivers/net/wireless/rtlwifi/usb.c -a71cce937ba4235754fe8eeae90d41a8 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/trx.h -d954d4fda26990c7ee930b69230a1bb6 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/trx.c -f5c5f10e07c158d12c5fda57b0336c5f linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/table.h -8bea2426ca32ee3869e9ca439ea0b2a8 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/table.c -42e0211d08cce495824508d53c3d887c linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/sw.h -0c384b31100b95b9b34354ec5b7888f2 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/sw.c -8162da4a916bbf6e13bdf5d65787d39a linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/rf.h -6792e78f0335dae9ba5b7bb182cacdf8 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/rf.c -9258c4b4707d23ffcd46d2297b91464c linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/reg.h -df61b6a349f47d6d28c515715c64c4bf linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/phy.h -9b9b9a69d7ac668b2a271d1c86cfac2a linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/phy.c -8af2dd617de69477bb275940fe65202d linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/led.h -32d9e6b48f2f70f9333cf55238f5f563 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/led.c -f953243e929b429ced5b263b169dd50b linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/hw.h -275cf83e763f1b8d9dbb0b70f1726766 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/hw.c -3d82486309049e19c1adb75a407d1357 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/fw.h -1bb7ff07d343bb38d8010a8b2d5c43c2 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/fw.c -835e0840f4d347b08377f03540a12442 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/dm.h -302a8fc3a5af80d126da19b0de760460 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/dm.c -c3130e97bf8c6dba4e4a786c3ea4af9d linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/def.h -91d98ea3b2e87dc60284d62e2377bc0f linux-3.0/drivers/net/wireless/rtlwifi/rtl8192se/Makefile -a84f069139bbc01c5e8a7fb339e483ce linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/trx.h -bdff2ad8a6bf302ad880a7d3664df23e linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/trx.c -4765d9e25415063bcc1fb58629163b19 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/table.h -cd0650e6be941cc7ad1c6f7f5c3980c6 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/table.c -7193a7543a91899710da74c2419ce6f5 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/sw.h -6c42a5077014ee3e947aca04f3e1d3d9 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c -609e1d336e94a4d621431934b4ae164a linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/rf.h -9ab5a762a7929aacaf4f0b0c7bd0c256 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/rf.c -f8aca3b3df5ed2f08e48a020fc6c1064 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/reg.h -73ea2184a9985d37089663b96aa1138b linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/phy.h -a60c71ace04a66ba5639f78aac2d6018 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/phy.c -64632a08fe4b2ec8e467093a890e9004 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/mac.h -3c16e25a1ab0f881e6d707cdfff6dd73 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/mac.c -88c76c3fab383ab6aa8ca362882f1d72 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/led.h -ea6455ff5f51c40f0b39fc81b8f2579c linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/led.c -9ec0673d0a3021ebc14ccbe3421b53dd linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/hw.h -e066f579ec7ce083ba93156c6b2aa5fd linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/hw.c -d3096a7a9deaa73f2797978a778aab4e linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/dm.h -1f018a5c434c295ca2df0c68dc2f9019 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/dm.c -e62ad191fa30c071af2d651c5c303348 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/def.h -45f3371a8211b36999f11fe97570f212 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192cu/Makefile -754ae2a9c97be2ef4e018aae7ebcd516 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/trx.h -496db1329565188d807d00591d732986 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/trx.c -9f6c61164a6f0f2a7bdd01a4c6ca2329 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/table.h -1346bccc9c56a9b8bebcc84dfe5eefb0 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/table.c -8567f1360b77d10b7995ba5ab5e0eabb linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/sw.h -172ba962b7e5fa11f0d701b10617d384 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/sw.c -90b7def2598440d91e59c82987bc37ad linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/rf.h -0a6982398684eb35251d3ef34e900d4f linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/rf.c -b1ad679a906b46779164b6e0ba3536f4 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/reg.h -953568d54ce650f5b0a01c8d7f2de0e9 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/phy.h -ae5d9a05e93f62b79c70fc37aa39cef3 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/phy.c -af98fb1ddc7aeaee98217c240b2eb079 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/led.h -a03ff5538572d71c11156cc81b0fa568 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/led.c -114927d7b06ebf9c3b0a214eed775a03 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/hw.h -cef0e1c14bc7ace5e7511519ae344926 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/hw.c -35f5452d31633ce28552ac30edb37c77 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/dm.h -ccf887aac60f6c610fdcf3e6bbd54a0d linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/dm.c -70ea811f811ca300c348f2cba2fe0ca2 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/def.h -51b5362d2316308f41b4f83020be2268 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192ce/Makefile -ecca1231ad3cae87dd6c6036c01f2660 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192c/phy_common.h -1442097378f9d600ed8177159f61309b linux-3.0/drivers/net/wireless/rtlwifi/rtl8192c/phy_common.c -14639b7a21bdbad682ca5c56ef0d6f2f linux-3.0/drivers/net/wireless/rtlwifi/rtl8192c/main.c -f20217210a184a5c5e72a5516e86b671 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192c/fw_common.h -706505341f7a7a4d75f019372e0166e8 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192c/fw_common.c -9887f797a1eb5b6de5e9e72f4f86c255 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192c/dm_common.h -f006af0a652726622d7e169eafb3c338 linux-3.0/drivers/net/wireless/rtlwifi/rtl8192c/dm_common.c -a5598af7bd88d44b4b0684c2e1962bcf linux-3.0/drivers/net/wireless/rtlwifi/rtl8192c/Makefile -782160e1ce90fe500d993f90a859967c linux-3.0/drivers/net/wireless/rtlwifi/regd.h -7d0dad3c04df2ca3d84e80431842c5ab linux-3.0/drivers/net/wireless/rtlwifi/regd.c -8c8c203ed8d16936f6d359df2566eca8 linux-3.0/drivers/net/wireless/rtlwifi/rc.h -1d782745b8731367453685832d1b328c linux-3.0/drivers/net/wireless/rtlwifi/rc.c -bfb8db4f86afcd801602ea8479ce2ec6 linux-3.0/drivers/net/wireless/rtlwifi/ps.h -9e9c80f293ee7f86d6eeaa13b8a3031e linux-3.0/drivers/net/wireless/rtlwifi/ps.c -e870acda2ae42fd2c96ae020cf2067f9 linux-3.0/drivers/net/wireless/rtlwifi/pci.h -e308fe4cbc1031660676ce6c2ee88e4d linux-3.0/drivers/net/wireless/rtlwifi/pci.c -2716883caa3741ff951ef7c151e4387a linux-3.0/drivers/net/wireless/rtlwifi/efuse.h -76825f2a02b9f9e460665297134e79e6 linux-3.0/drivers/net/wireless/rtlwifi/efuse.c -3768d7a41682428e46a8ec4a1ca333a1 linux-3.0/drivers/net/wireless/rtlwifi/debug.h -9d219d89f8f19c160adaeec5cab776f2 linux-3.0/drivers/net/wireless/rtlwifi/debug.c -214cc4a0020497ffd795b4d98b29984f linux-3.0/drivers/net/wireless/rtlwifi/core.h -95ae24bf3b17b99709273db474f40317 linux-3.0/drivers/net/wireless/rtlwifi/core.c -a7b4f077ed78aad850a139ac030e6b17 linux-3.0/drivers/net/wireless/rtlwifi/cam.h -ff8d858351dd6aaa8111b16febe1e42b linux-3.0/drivers/net/wireless/rtlwifi/cam.c -b20fdb93234e77b1690210ab5a71491d linux-3.0/drivers/net/wireless/rtlwifi/base.h -351eacf3e1bf69ca5d00d571e0dac79a linux-3.0/drivers/net/wireless/rtlwifi/base.c -bd1d9c760aa050a27622ecc4ab0b8998 linux-3.0/drivers/net/wireless/rtlwifi/Makefile -168647c6c18c0345916e80c2901f52a0 linux-3.0/drivers/net/wireless/rtlwifi/Kconfig -e56a3ad662c523c5fd8607a6067a593c linux-3.0/drivers/net/wireless/rtl818x/rtl818x.h -104c29e27562e8acd416a63b94339040 linux-3.0/drivers/net/wireless/rtl818x/rtl8187/rtl8225.h -9255ea1ae58d12a9f5e4b3c241510982 linux-3.0/drivers/net/wireless/rtl818x/rtl8187/rtl8225.c -01042af14faf385be771ab2078cf8bca linux-3.0/drivers/net/wireless/rtl818x/rtl8187/rtl8187.h -072a5c3cbec39a1116e3852579763d13 linux-3.0/drivers/net/wireless/rtl818x/rtl8187/rfkill.h -44f86d3815fdf112d042fca21f10207c linux-3.0/drivers/net/wireless/rtl818x/rtl8187/rfkill.c -fd2da780d70eccb34cb90c1ce100a7fe linux-3.0/drivers/net/wireless/rtl818x/rtl8187/leds.h -e75533ab3fdcdee6e3987d3c5abb99a0 linux-3.0/drivers/net/wireless/rtl818x/rtl8187/leds.c -222dedba0f45b208ba12060643e8f70c linux-3.0/drivers/net/wireless/rtl818x/rtl8187/dev.c -f57a4dbdaf08ada8ba5edb83917778fb linux-3.0/drivers/net/wireless/rtl818x/rtl8187/Makefile -c67e541bb5ff1caabed314a0225d7681 linux-3.0/drivers/net/wireless/rtl818x/rtl8180/sa2400.h -d67d1129dacb470e0dce3429ab9a96f1 linux-3.0/drivers/net/wireless/rtl818x/rtl8180/sa2400.c -52cf9df9d5c224a172f81d8876926ed6 linux-3.0/drivers/net/wireless/rtl818x/rtl8180/rtl8225.h -dfc0cbebe7562b50f9ad5b105762a9ec linux-3.0/drivers/net/wireless/rtl818x/rtl8180/rtl8225.c -1cd1cafca620c4390f0307c0d1fe11d0 linux-3.0/drivers/net/wireless/rtl818x/rtl8180/rtl8180.h -4c9715853c31b2ad5ba19b5a167bad2f linux-3.0/drivers/net/wireless/rtl818x/rtl8180/max2820.h -675dddf462868e7aa7a00e355958c14e linux-3.0/drivers/net/wireless/rtl818x/rtl8180/max2820.c -6794d4f4a31df62ebde6869eedbe7860 linux-3.0/drivers/net/wireless/rtl818x/rtl8180/grf5101.h -3db7df845c1492fee445d8e5a25d66d5 linux-3.0/drivers/net/wireless/rtl818x/rtl8180/grf5101.c -f1ce426216706c4566f00d1e684aaa81 linux-3.0/drivers/net/wireless/rtl818x/rtl8180/dev.c -4890a18acc1960c8ebaa6f0176d992e3 linux-3.0/drivers/net/wireless/rtl818x/rtl8180/Makefile -ea24afa195decfb332eb7dc050088102 linux-3.0/drivers/net/wireless/rtl818x/Makefile -3ab4640bdef995309db1448134fa7aa8 linux-3.0/drivers/net/wireless/rtl818x/Kconfig -2b701f233694f0ac36c07a72e433ddd0 linux-3.0/drivers/net/wireless/rt2x00/rt73usb.h -9f8dfa17271a2c0eb28e26422719a392 linux-3.0/drivers/net/wireless/rt2x00/rt73usb.c -9402ca98e552906f267146fcefc764ab linux-3.0/drivers/net/wireless/rt2x00/rt61pci.h -804917fa2d441f10ecdf891aa4988989 linux-3.0/drivers/net/wireless/rt2x00/rt61pci.c -752c7f38716a20d3f41d6a908e1f5e4e linux-3.0/drivers/net/wireless/rt2x00/rt2x00usb.h -e5c551444550f54be6391c3251be1ea6 linux-3.0/drivers/net/wireless/rt2x00/rt2x00usb.c -0e93c4897a835b65d826dcc57b066c9d linux-3.0/drivers/net/wireless/rt2x00/rt2x00soc.h -ebd9952777c1da221d0ff283013078fc linux-3.0/drivers/net/wireless/rt2x00/rt2x00soc.c -da5717179b085f686a53710c5f040169 linux-3.0/drivers/net/wireless/rt2x00/rt2x00reg.h -bbcdbe815230b4aebe9c57d3d52e7329 linux-3.0/drivers/net/wireless/rt2x00/rt2x00queue.h -502c4375094d53dc438318ec10e8207d linux-3.0/drivers/net/wireless/rt2x00/rt2x00queue.c -ccf587579efb97af6d06485a0362492c linux-3.0/drivers/net/wireless/rt2x00/rt2x00pci.h -d5a9cd21931236ed60f7ad4cb21e8ca3 linux-3.0/drivers/net/wireless/rt2x00/rt2x00pci.c -c13a4c18041b55d613ec84574fc25fad linux-3.0/drivers/net/wireless/rt2x00/rt2x00mac.c -2496d37d685fdf10c074d453d95ed159 linux-3.0/drivers/net/wireless/rt2x00/rt2x00link.c -3688342de347f13f0650c329cc60f256 linux-3.0/drivers/net/wireless/rt2x00/rt2x00lib.h -48d4e2933a82511837a4a954a7c395e1 linux-3.0/drivers/net/wireless/rt2x00/rt2x00leds.h -8a835e13e1a7a3333fef1c1ec6b9a52e linux-3.0/drivers/net/wireless/rt2x00/rt2x00leds.c -c7a5c1842160fa8fef58c987a31a8852 linux-3.0/drivers/net/wireless/rt2x00/rt2x00firmware.c -fce14032f8b3ce3654e01feba71a8a18 linux-3.0/drivers/net/wireless/rt2x00/rt2x00dump.h -4bd42f8eb11af03dc9681a59f7a601a7 linux-3.0/drivers/net/wireless/rt2x00/rt2x00dev.c -82cd5f000723e1119df1ad92483953ba linux-3.0/drivers/net/wireless/rt2x00/rt2x00debug.h -64888104ba3d2be880a148ee88bb66e7 linux-3.0/drivers/net/wireless/rt2x00/rt2x00debug.c -caa1cda9a20bb48ba91ec6b5acc513ef linux-3.0/drivers/net/wireless/rt2x00/rt2x00crypto.c -9ff9ff5be9fd0897c02c1e9564ae2582 linux-3.0/drivers/net/wireless/rt2x00/rt2x00config.c -f0823009ab8963f7b09a2d2c61417294 linux-3.0/drivers/net/wireless/rt2x00/rt2x00.h -2387f5f8f23da35b1b2acb82c94bb621 linux-3.0/drivers/net/wireless/rt2x00/rt2800usb.h -29e1997cb179f28b9bc47cd7403ce1d7 linux-3.0/drivers/net/wireless/rt2x00/rt2800usb.c -a33515b6830b57fc033416622ad3db33 linux-3.0/drivers/net/wireless/rt2x00/rt2800pci.h -9d69fb11cd5e180bfcace9315380dcd1 linux-3.0/drivers/net/wireless/rt2x00/rt2800pci.c -6599115522118cc2714d90a783437c00 linux-3.0/drivers/net/wireless/rt2x00/rt2800lib.h -ef9aa9ea9dad035b8f5d5113dea69abb linux-3.0/drivers/net/wireless/rt2x00/rt2800lib.c -8a6b5b1e0640dea25189f1abf28fca75 linux-3.0/drivers/net/wireless/rt2x00/rt2800.h -1f43053cab6fb00a4a44d495efff1884 linux-3.0/drivers/net/wireless/rt2x00/rt2500usb.h -f25ca2714b0d4dd045c502f688669223 linux-3.0/drivers/net/wireless/rt2x00/rt2500usb.c -2cadac06d7d1468439381796a62c3115 linux-3.0/drivers/net/wireless/rt2x00/rt2500pci.h -8269486c5e9e4cffeb03eed576c6a8df linux-3.0/drivers/net/wireless/rt2x00/rt2500pci.c -fbc66b402d4660d836032d7174c0c577 linux-3.0/drivers/net/wireless/rt2x00/rt2400pci.h -358639c40dc3a65d2ac2ba353f4c5d54 linux-3.0/drivers/net/wireless/rt2x00/rt2400pci.c -426e14fe6e3b03298dbd98cd4c78f8f9 linux-3.0/drivers/net/wireless/rt2x00/Makefile -6ac999bb1bdfd1e3289ee638f4843e84 linux-3.0/drivers/net/wireless/rt2x00/Kconfig -f78f7dbf28b5b861882813d78b51d348 linux-3.0/drivers/net/wireless/rndis_wlan.c -063239e526149ea49214a98344f62c25 linux-3.0/drivers/net/wireless/rayctl.h -2cbe13c1e4c57bd4733161cfd223083b linux-3.0/drivers/net/wireless/ray_cs.h -2bb8f9bd486e522aae7f3fb30ce34a23 linux-3.0/drivers/net/wireless/ray_cs.c -9bfa9c52869fca9549e7b4c34273147c linux-3.0/drivers/net/wireless/prism54/prismcompat.h -c5daa942f3123ccafc384121ea034d19 linux-3.0/drivers/net/wireless/prism54/oid_mgt.h -dd3e614c81f73d445df6f851ab4a6461 linux-3.0/drivers/net/wireless/prism54/oid_mgt.c -97a0ed13bfb482e62a05d9e25b7f4aab linux-3.0/drivers/net/wireless/prism54/islpci_mgt.h -5f4809db35f2e9c4975158ec320f201f linux-3.0/drivers/net/wireless/prism54/islpci_mgt.c -a5a5230353088a465bf02f199eef2547 linux-3.0/drivers/net/wireless/prism54/islpci_hotplug.c -dbe9a544d9ceb7b7311ec153721b85b0 linux-3.0/drivers/net/wireless/prism54/islpci_eth.h -c26a7e0afe155ddde334d6d4032be0ed linux-3.0/drivers/net/wireless/prism54/islpci_eth.c -f0522d9003a56f4731e651bc4c93fc6c linux-3.0/drivers/net/wireless/prism54/islpci_dev.h -2ce1b7a8f69c7079faaf24afff184048 linux-3.0/drivers/net/wireless/prism54/islpci_dev.c -ae825fbb0dc89a01bcf885e9e6115bcd linux-3.0/drivers/net/wireless/prism54/isl_oid.h -8500d0efdb4bbcdf72a4b1e30a82b532 linux-3.0/drivers/net/wireless/prism54/isl_ioctl.h -75ed22319f9b407178001f96d67d0aeb linux-3.0/drivers/net/wireless/prism54/isl_ioctl.c -44c7b6fa5d94cd3544ae1d3a8efeafe6 linux-3.0/drivers/net/wireless/prism54/isl_38xx.h -76acf5cb92315c1b0b208ba190d0454c linux-3.0/drivers/net/wireless/prism54/isl_38xx.c -bc568bcbf4363df5cf2b21eac23eaac2 linux-3.0/drivers/net/wireless/prism54/Makefile -38c5fe63b4a4e6716ef1e7239543b15d linux-3.0/drivers/net/wireless/p54/txrx.c -9bb55346c0af16bec45a75931ec10dc7 linux-3.0/drivers/net/wireless/p54/p54usb.h -3515f4a02b4cbfee71e54f4e1ec4ae90 linux-3.0/drivers/net/wireless/p54/p54usb.c -c06d36d3ec3cf08b223e7549001a8ecb linux-3.0/drivers/net/wireless/p54/p54spi_eeprom.h -73410f6ad6b90b0daf663a242428d82e linux-3.0/drivers/net/wireless/p54/p54spi.h -c7b44a6f0dace3ee2271e86cd8760c1d linux-3.0/drivers/net/wireless/p54/p54spi.c -8a8a5624937ddcedd7a4a90a325b2aca linux-3.0/drivers/net/wireless/p54/p54pci.h -2454b8afb9d7fc0ee99d3e2cd6c1ef47 linux-3.0/drivers/net/wireless/p54/p54pci.c -68d8cb930c6eb3f32549e990cd5f16d5 linux-3.0/drivers/net/wireless/p54/p54.h -a9a1edac9dad9860b05ffe126caf2eb7 linux-3.0/drivers/net/wireless/p54/net2280.h -7832501dbe5a68a5e2d04ba26eb05d09 linux-3.0/drivers/net/wireless/p54/main.c -cc67ee2883ffae80ac905e2aeffe16bc linux-3.0/drivers/net/wireless/p54/lmac.h -f71122bc649517a44cff54adbc7d7b5f linux-3.0/drivers/net/wireless/p54/led.c -5f31c962044f761967ec6c716b0e7be9 linux-3.0/drivers/net/wireless/p54/fwio.c -9eb56697676d630619d6601c43cd86c1 linux-3.0/drivers/net/wireless/p54/eeprom.h -4c7437d91acb5ee5d0fab8493fd592f8 linux-3.0/drivers/net/wireless/p54/eeprom.c -f709f437b268fc80a534397db880f399 linux-3.0/drivers/net/wireless/p54/Makefile -124e80426e9ed51eea7039d7594fe0aa linux-3.0/drivers/net/wireless/p54/Kconfig -e3cfc96e454c603878535b915569fbe3 linux-3.0/drivers/net/wireless/orinoco/wext.h -346cff787106e7f194bc56c4048692b0 linux-3.0/drivers/net/wireless/orinoco/wext.c -8b761947d29571c4748b6d52fb039bd7 linux-3.0/drivers/net/wireless/orinoco/spectrum_cs.c -83480e3e9209b0ecd60473c23c2398c5 linux-3.0/drivers/net/wireless/orinoco/scan.h -8f5def98d34db3925fa96a8b19287bc9 linux-3.0/drivers/net/wireless/orinoco/scan.c -db2dd8f83c80c14121b2140e0418e355 linux-3.0/drivers/net/wireless/orinoco/orinoco_usb.c -0bdd793b4b341ac33501cf990ba04406 linux-3.0/drivers/net/wireless/orinoco/orinoco_tmd.c -d2ea51ec6441bbe6cd1543ae32108617 linux-3.0/drivers/net/wireless/orinoco/orinoco_plx.c -04bd76dd449f87ab1efe41bb47eed15c linux-3.0/drivers/net/wireless/orinoco/orinoco_pci.h -4e7fb549336070a50e5ba5d5e508a850 linux-3.0/drivers/net/wireless/orinoco/orinoco_pci.c -ac65d0c00ea20de6e164654f5f5b7690 linux-3.0/drivers/net/wireless/orinoco/orinoco_nortel.c -bbc976043751c6eeccaf63f543876b92 linux-3.0/drivers/net/wireless/orinoco/orinoco_cs.c -e130c9899dd10dc1646f0128385dfa29 linux-3.0/drivers/net/wireless/orinoco/orinoco.h -4a27ca0620cd810eb16d920dcf650ddd linux-3.0/drivers/net/wireless/orinoco/mic.h -c75182e5e3ac9064332abe9c27a1d6ab linux-3.0/drivers/net/wireless/orinoco/mic.c -7be98f10d0a4a3cd6207d160782f9485 linux-3.0/drivers/net/wireless/orinoco/main.h -d8ddcad30eab8d653af7c31c2f8dc208 linux-3.0/drivers/net/wireless/orinoco/main.c -5b6594e2c1fa746f3d699edfb73a0f65 linux-3.0/drivers/net/wireless/orinoco/hw.h -039bec7b517b27560db06107eb9d17ed linux-3.0/drivers/net/wireless/orinoco/hw.c -80ef126dd4b981c74f7ad5dc2866f7d4 linux-3.0/drivers/net/wireless/orinoco/hermes_rid.h -7b15f5280cbfad2cff1987d2e669b5a7 linux-3.0/drivers/net/wireless/orinoco/hermes_dld.h -f35232a5cbe83b88c7a52f581e82a1de linux-3.0/drivers/net/wireless/orinoco/hermes_dld.c -a3b54bbcc3ec4e7cc640bd46632ab190 linux-3.0/drivers/net/wireless/orinoco/hermes.h -7c5919c0ac9d85f3ccd54d66403cfa56 linux-3.0/drivers/net/wireless/orinoco/hermes.c -2323ac669131d7ce41893926f1fd317a linux-3.0/drivers/net/wireless/orinoco/fw.h -314ef81863c2bfc0f381e8c91df2967d linux-3.0/drivers/net/wireless/orinoco/fw.c -c582eb76fa8dd0e571dafda4d63a39d8 linux-3.0/drivers/net/wireless/orinoco/cfg.h -d608278bcdd6813cdc65fee46611781b linux-3.0/drivers/net/wireless/orinoco/cfg.c -f65edca4ba727d8977fb20ed194cb3a8 linux-3.0/drivers/net/wireless/orinoco/airport.c -3916e26c7d9122c185e6df4016654749 linux-3.0/drivers/net/wireless/orinoco/Makefile -2d3dcb4d36f7b9a7cedfd983324e9ffd linux-3.0/drivers/net/wireless/orinoco/Kconfig -93900ad8fc2ad0fbe2dc438f3989cf0f linux-3.0/drivers/net/wireless/mwl8k.c -8c3706069e0f8e841712d51cea34bfa9 linux-3.0/drivers/net/wireless/mwifiex/wmm.h -5e3810f796af4de071dece666adbb730 linux-3.0/drivers/net/wireless/mwifiex/wmm.c -00d87b682a176fcda041fd41627c3353 linux-3.0/drivers/net/wireless/mwifiex/util.h -b2ebc40c52fb0488bd53e084515dd347 linux-3.0/drivers/net/wireless/mwifiex/util.c -98992bdf52eaacb192ff838fe632b04e linux-3.0/drivers/net/wireless/mwifiex/txrx.c -d2f8201eddc30bf213df220cab7b3480 linux-3.0/drivers/net/wireless/mwifiex/sta_tx.c -2beaee70e993044e89741886883d0e6b linux-3.0/drivers/net/wireless/mwifiex/sta_rx.c -09b0985c95983bd212e3dbec2be3b970 linux-3.0/drivers/net/wireless/mwifiex/sta_ioctl.c -23bbe1a374f40bec7bcb1c4fa519659c linux-3.0/drivers/net/wireless/mwifiex/sta_event.c -4d8c9f2ca5000a9492a99e7ef3c88fea linux-3.0/drivers/net/wireless/mwifiex/sta_cmdresp.c -5c3268b88ff432c12158009ff5e6cbd4 linux-3.0/drivers/net/wireless/mwifiex/sta_cmd.c -547c65abc905b428fdc3687e878483fe linux-3.0/drivers/net/wireless/mwifiex/sdio.h -b13016b7d391ccdad57ce787a30ff060 linux-3.0/drivers/net/wireless/mwifiex/sdio.c -d1b5c2b465ebe3c5906e7190e02ba6ab linux-3.0/drivers/net/wireless/mwifiex/scan.c -f8918713b15fe3d893cfec642a8aae31 linux-3.0/drivers/net/wireless/mwifiex/main.h -5832ae72da3b4bb2f45c01e389548435 linux-3.0/drivers/net/wireless/mwifiex/main.c -c01d9d5f06fb44f7e3cc2b4348c8b780 linux-3.0/drivers/net/wireless/mwifiex/join.c -97b2a8d6096ba1d20000866429a6ef4c linux-3.0/drivers/net/wireless/mwifiex/ioctl.h -56ebcd8a7145904266e3203917c262a2 linux-3.0/drivers/net/wireless/mwifiex/init.c -ad69a2fa2ff76fd9381ba6f2fb4f5631 linux-3.0/drivers/net/wireless/mwifiex/fw.h -2829dd2ebb6125628cc256b691074f28 linux-3.0/drivers/net/wireless/mwifiex/decl.h -c0ab13fee43767e326edf14f0e046fe9 linux-3.0/drivers/net/wireless/mwifiex/debugfs.c -2016c3733e995c55afcf637b807b2c36 linux-3.0/drivers/net/wireless/mwifiex/cmdevt.c -80b3a3c79f038eff188e3486a14a4659 linux-3.0/drivers/net/wireless/mwifiex/cfp.c -51659f297f3f917afe2bfde1c4d57278 linux-3.0/drivers/net/wireless/mwifiex/cfg80211.h -5d09847aa20bb8c53bedc9124319bd6a linux-3.0/drivers/net/wireless/mwifiex/cfg80211.c -f569ddf88a3a6f632636eb8190b680ee linux-3.0/drivers/net/wireless/mwifiex/README -ece8936c51b6be6a81e87943a085d3de linux-3.0/drivers/net/wireless/mwifiex/Makefile -57a7cf2b2638d3a8764ad819cc299173 linux-3.0/drivers/net/wireless/mwifiex/Kconfig -66f0695b7316b7addb6586c2de4d55a4 linux-3.0/drivers/net/wireless/mwifiex/11n_rxreorder.h -e11d7e7e746dd914f4323524adf7d1a4 linux-3.0/drivers/net/wireless/mwifiex/11n_rxreorder.c -69ac32ad3de703534f6d43f2c7dbdb30 linux-3.0/drivers/net/wireless/mwifiex/11n_aggr.h -1fa6fac5c56660788fb2ea11cddbd724 linux-3.0/drivers/net/wireless/mwifiex/11n_aggr.c -ac60750f5f54356912492f193de736b4 linux-3.0/drivers/net/wireless/mwifiex/11n.h -5ff6f6d27f1aaa7a482a2f43e995aaec linux-3.0/drivers/net/wireless/mwifiex/11n.c -cf7843c44174463f068cbe29f49cf8a9 linux-3.0/drivers/net/wireless/mac80211_hwsim.c -df30c6361f33a32c0645cfe42c0f1541 linux-3.0/drivers/net/wireless/libertas_tf/main.c -94798df5ac2b6bb366234197e4ad228a linux-3.0/drivers/net/wireless/libertas_tf/libertas_tf.h -0a6ac1e7d5b2fa5a4dcf9474c0fd29a7 linux-3.0/drivers/net/wireless/libertas_tf/if_usb.h -fbd949a3163a79db9ca27090618129da linux-3.0/drivers/net/wireless/libertas_tf/if_usb.c -0482d35c01b8a5849168747ec6e56ea9 linux-3.0/drivers/net/wireless/libertas_tf/deb_defs.h -01b2fb5d7a26fd20d17ada724c6cdde7 linux-3.0/drivers/net/wireless/libertas_tf/cmd.c -04ef27d6d1fe371f017c7891021338a7 linux-3.0/drivers/net/wireless/libertas_tf/Makefile -919c40d1423fab89f1b52d720b3845fa linux-3.0/drivers/net/wireless/libertas/types.h -0529e4ba8c7cfe46b2a309d9e8118aa2 linux-3.0/drivers/net/wireless/libertas/tx.c -33c42ca71475a22aab6b0de0296abfea linux-3.0/drivers/net/wireless/libertas/rx.c -35b735d45f3d7bb4a21edb70b9866a8f linux-3.0/drivers/net/wireless/libertas/radiotap.h -35c31d49b269134b6efb1a7c6a18096b linux-3.0/drivers/net/wireless/libertas/mesh.h -d60c11a811c0b9cc7ce530afe60f7334 linux-3.0/drivers/net/wireless/libertas/mesh.c -eac8a3ef69a7cb8773b2ea52cc40d1fd linux-3.0/drivers/net/wireless/libertas/main.c -2cd0a8ed29ad533abc4df48afaa3ec8a linux-3.0/drivers/net/wireless/libertas/if_usb.h -cfe05a4a15be7fa28d7159624e5c9fba linux-3.0/drivers/net/wireless/libertas/if_usb.c -b4156f716289a60550e0dafedca42c1f linux-3.0/drivers/net/wireless/libertas/if_spi.h -bbeddce8303ff172e8409c2bea7f3e81 linux-3.0/drivers/net/wireless/libertas/if_spi.c -a04c3174a23b426e586e3c11007b131f linux-3.0/drivers/net/wireless/libertas/if_sdio.h -84e1d8c8673bd8e23c537d3966ac1372 linux-3.0/drivers/net/wireless/libertas/if_sdio.c -069d39cf6fc80bce8996b5dcbeaeb7d1 linux-3.0/drivers/net/wireless/libertas/if_cs.c -24e488923da903f11f227fd6edce4e70 linux-3.0/drivers/net/wireless/libertas/host.h -fae784e5595a3fadb804a15cad2d5e9c linux-3.0/drivers/net/wireless/libertas/ethtool.c -c474f9a182c6ddc88deddb4af297f889 linux-3.0/drivers/net/wireless/libertas/dev.h -ef6ee370f99fc4df5fed831d392daeb4 linux-3.0/drivers/net/wireless/libertas/defs.h -07d7a6e8d2c6ab48e5d1baa2363dbca9 linux-3.0/drivers/net/wireless/libertas/decl.h -f91bf0a34aa41fad16199568a946795e linux-3.0/drivers/net/wireless/libertas/debugfs.h -e4cb73293cfab39e6dccc9ff420e5de8 linux-3.0/drivers/net/wireless/libertas/debugfs.c -3b3ba48ae3daf534487af00bf26eef7f linux-3.0/drivers/net/wireless/libertas/cmdresp.c -7e4bb198dc4745821442db519e48ea33 linux-3.0/drivers/net/wireless/libertas/cmd.h -1214ac5badcab3c7897df7c8b6687944 linux-3.0/drivers/net/wireless/libertas/cmd.c -e7ccebd6d2fcbc771440def31b1c8fc7 linux-3.0/drivers/net/wireless/libertas/cfg.h -6064a321533146716a53f88ea90eb21a linux-3.0/drivers/net/wireless/libertas/cfg.c -0572202bb16dacadbb610814d479ae1b linux-3.0/drivers/net/wireless/libertas/README -ef159896509b5b36eca22cff0df3083b linux-3.0/drivers/net/wireless/libertas/Makefile -4ea603c400089f5e404cc5e453d17bc5 linux-3.0/drivers/net/wireless/libertas/LICENSE -708719335cf4d382f23a3074249fc446 linux-3.0/drivers/net/wireless/libertas/Kconfig -1d8f3526eb8fd44f2797f6d1eed9cd4f linux-3.0/drivers/net/wireless/iwmc3200wifi/umac.h -f74b106f25911aee94c1826f39532959 linux-3.0/drivers/net/wireless/iwmc3200wifi/tx.c -673bb23db282970f9d1bf89b29403323 linux-3.0/drivers/net/wireless/iwmc3200wifi/trace.h -e5ab01969903e292cf1d3f35e8cb43b0 linux-3.0/drivers/net/wireless/iwmc3200wifi/trace.c -eca3f391c5d09ef06d350603c25dcff3 linux-3.0/drivers/net/wireless/iwmc3200wifi/sdio.h -c5238c3c47fadb6bfffdc85e8b999d38 linux-3.0/drivers/net/wireless/iwmc3200wifi/sdio.c -162a489290072c4635c74297b048cefe linux-3.0/drivers/net/wireless/iwmc3200wifi/rx.h -d45bddc1c3f5b529ca4d6212d3b83975 linux-3.0/drivers/net/wireless/iwmc3200wifi/rx.c -f58734b13a3692b4d4051c7b74837321 linux-3.0/drivers/net/wireless/iwmc3200wifi/netdev.c -d69397c8d24ed7fe970a29feeae49e40 linux-3.0/drivers/net/wireless/iwmc3200wifi/main.c -13ac1d99a1a7bc110294c28d689e1458 linux-3.0/drivers/net/wireless/iwmc3200wifi/lmac.h -ed0d79195905df185b46cbd754ee16ad linux-3.0/drivers/net/wireless/iwmc3200wifi/iwm.h -ef7db403dab79f649e3bae0fe0c180e8 linux-3.0/drivers/net/wireless/iwmc3200wifi/hal.h -9e6fbc7486898517eb6d27591fd8e509 linux-3.0/drivers/net/wireless/iwmc3200wifi/hal.c -0672e4a1837e0d4c8f50885822ac46c3 linux-3.0/drivers/net/wireless/iwmc3200wifi/fw.h -901170c584bf61c81e99e12c8b96b1f3 linux-3.0/drivers/net/wireless/iwmc3200wifi/fw.c -7faed96dda3307d79176718c5fbc121a linux-3.0/drivers/net/wireless/iwmc3200wifi/eeprom.h -0045ed32d2fc1390dd40dfb28db8a017 linux-3.0/drivers/net/wireless/iwmc3200wifi/eeprom.c -c5276fed13bb65789871b9348292b82f linux-3.0/drivers/net/wireless/iwmc3200wifi/debugfs.c -2889be8f159b65b0fbc3fc5631419456 linux-3.0/drivers/net/wireless/iwmc3200wifi/debug.h -b0bec7b62112359700db30914f647bf0 linux-3.0/drivers/net/wireless/iwmc3200wifi/commands.h -5bec31c78f3c4882be48d42832c31d6f linux-3.0/drivers/net/wireless/iwmc3200wifi/commands.c -bb5c52c7cdf78ba4fecf0e99b256c749 linux-3.0/drivers/net/wireless/iwmc3200wifi/cfg80211.h -159fc681e0f59f55aa19dc1351d5ff62 linux-3.0/drivers/net/wireless/iwmc3200wifi/cfg80211.c -b68d2c11e5d936410362a4b9d6b28b7c linux-3.0/drivers/net/wireless/iwmc3200wifi/bus.h -8a40c06d744d9c89f22e3d5160d3784f linux-3.0/drivers/net/wireless/iwmc3200wifi/Makefile -255063ebe113e79ea21649d7f7b5d060 linux-3.0/drivers/net/wireless/iwmc3200wifi/Kconfig -19d340e14779e338ebcf45d5e28df990 linux-3.0/drivers/net/wireless/iwlwifi/iwl-tx.c -85ae2e56f95edc33903d28c66ba824b4 linux-3.0/drivers/net/wireless/iwlwifi/iwl-testmode.h -7686d3be093b94f2e4f6d6c4d13c8c51 linux-3.0/drivers/net/wireless/iwlwifi/iwl-sv-open.c -60290f20d4b1b00b95382882511499a5 linux-3.0/drivers/net/wireless/iwlwifi/iwl-sta.h -e155dd3d96c0d59217d612e859c3663a linux-3.0/drivers/net/wireless/iwlwifi/iwl-sta.c -b5af2296ade8df80f54bf31165fd101d linux-3.0/drivers/net/wireless/iwlwifi/iwl-scan.c -74720a9cf2fb8b7743faacbff9f9cdb0 linux-3.0/drivers/net/wireless/iwlwifi/iwl-rx.c -906c9caaef8a4486b389c572a9887d6f linux-3.0/drivers/net/wireless/iwlwifi/iwl-prph.h -ae5d869cf349b1ed99c79fc2724caf3a linux-3.0/drivers/net/wireless/iwlwifi/iwl-power.h -c5c97e59e9ef8d6853add98e0ef70272 linux-3.0/drivers/net/wireless/iwlwifi/iwl-power.c -b18007bde41983f3457a82ea4225b017 linux-3.0/drivers/net/wireless/iwlwifi/iwl-led.h -9fc4e89ddab7042741a47f32ce2e8408 linux-3.0/drivers/net/wireless/iwlwifi/iwl-led.c -f834b849907d9fd4a3a82555c3168377 linux-3.0/drivers/net/wireless/iwlwifi/iwl-io.h -ef9ff3a480ce0da1ac5c8d4fb3f0da94 linux-3.0/drivers/net/wireless/iwlwifi/iwl-io.c -29d8661a77f5a7b678df3844c21f3727 linux-3.0/drivers/net/wireless/iwlwifi/iwl-helpers.h -fb98a5ce30659a0045bb91e94178c15a linux-3.0/drivers/net/wireless/iwlwifi/iwl-hcmd.c -ffb861e563b11d587e6a7b80011bd156 linux-3.0/drivers/net/wireless/iwlwifi/iwl-fh.h -d923d3dfe714d070fc62450eb9f668cb linux-3.0/drivers/net/wireless/iwlwifi/iwl-eeprom.h -996c6750321ccdfcd877d5b9678a422e linux-3.0/drivers/net/wireless/iwlwifi/iwl-eeprom.c -398b639d1cc87f46a96c033956e85883 linux-3.0/drivers/net/wireless/iwlwifi/iwl-devtrace.h -894230de1a2c015fd13974bdebb7aacd linux-3.0/drivers/net/wireless/iwlwifi/iwl-devtrace.c -79d2f2888c8bf1576e282136df838b4c linux-3.0/drivers/net/wireless/iwlwifi/iwl-dev.h -bf021aa1774742ceda99781d4ab7abfa linux-3.0/drivers/net/wireless/iwlwifi/iwl-debugfs.c -20f0cac7a47d8f375abac3b7bc75b1f5 linux-3.0/drivers/net/wireless/iwlwifi/iwl-debug.h -bad90f2e535f7a222457b7bee8fb8901 linux-3.0/drivers/net/wireless/iwlwifi/iwl-csr.h -e44db49f7ff36fb086b742ba915425e2 linux-3.0/drivers/net/wireless/iwlwifi/iwl-core.h -2c44eb32ee3edfbb2199ccbdab727269 linux-3.0/drivers/net/wireless/iwlwifi/iwl-core.c -eb91f8e63982f3479a9995f4dc315b05 linux-3.0/drivers/net/wireless/iwlwifi/iwl-commands.h -f0ea35af47aa7fc08ce4000bbe632064 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn.h -b7f38f31997564de7d571d25ce8d3023 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn.c -08dc9e842687a4c982b8be3c5b6bef49 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-ucode.c -7819cede4dd8e13db31700c203b1b8ff linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-tx.c -cf8c49a54dfc7feebca0687b398ece6b linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-tt.h -178aac30921d76a940170ab4573c9553 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-tt.c -173b64d659ae9f2565364c0b049a6ebc linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-sta.c -20b8401ee2e145944ee0e33c8943f7bf linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-rxon.c -b10bfa1eb80093ad8b6b5422ee927837 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-rs.h -18eadd1c4041cdeb319bd19ab73076fd linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-rs.c -f580a9910839779c62883b9aeb4cacf3 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-lib.c -737b132961cddb3b1962c46bfed748d6 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-ict.c -833fc32990acb9d3f5a0330d42d63ddd linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-hw.h -629c0575ce6f6116d5a39074f7b4302b linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c -eb15d38a5f318a8d1129fb4a4d76cd62 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-eeprom.c -8ba5b5330a5db7697e89a57b40f4eb07 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-calib.h -85aa711be00e2d0be3b313eeb6b3c4a2 linux-3.0/drivers/net/wireless/iwlwifi/iwl-agn-calib.c -995024f5d989d11244a772d0bda7be4d linux-3.0/drivers/net/wireless/iwlwifi/iwl-6000.c -a0f583fc28e8c5310ab66627f2de0886 linux-3.0/drivers/net/wireless/iwlwifi/iwl-6000-hw.h -0d9cd17e2f8d95a933dc8356e8da9ed6 linux-3.0/drivers/net/wireless/iwlwifi/iwl-5000.c -9a471688fd95d05a18c0548883a0aa3c linux-3.0/drivers/net/wireless/iwlwifi/iwl-5000-hw.h -e2ed0e3a4386080e46047cf6c5037290 linux-3.0/drivers/net/wireless/iwlwifi/iwl-2000.c -e131e69eef477463621f93029b1ad948 linux-3.0/drivers/net/wireless/iwlwifi/iwl-1000.c -db7fadb96064752d1921e33bef5ad7ec linux-3.0/drivers/net/wireless/iwlwifi/Makefile -3ba5b292ac43b96e08f04c22edbd3b18 linux-3.0/drivers/net/wireless/iwlwifi/Kconfig -68bdc7fa18f24c05bb526aa624098df3 linux-3.0/drivers/net/wireless/iwlegacy/iwl4965-base.c -c00ac2c85222e0c66746bd17c87bb590 linux-3.0/drivers/net/wireless/iwlegacy/iwl3945-base.c -75bed912d6638df6175ca0b2f8d66d5b linux-3.0/drivers/net/wireless/iwlegacy/iwl-tx.c -07bb476851a181ab6db26371debf4f86 linux-3.0/drivers/net/wireless/iwlegacy/iwl-sta.h -0109263772c0c8c85e2931e8cc53b66b linux-3.0/drivers/net/wireless/iwlegacy/iwl-sta.c -fd963bc7838a3544f0a337adb35f1994 linux-3.0/drivers/net/wireless/iwlegacy/iwl-spectrum.h -abafee319e487b3cc11c5405afa00c6f linux-3.0/drivers/net/wireless/iwlegacy/iwl-scan.c -d22b172da9dbe969b115488ea87f4d9d linux-3.0/drivers/net/wireless/iwlegacy/iwl-rx.c -71ec89392efe602dcc71ef00e6a9e0a0 linux-3.0/drivers/net/wireless/iwlegacy/iwl-prph.h -dbb9e33fdbf6a08cc0381c3b05a8a795 linux-3.0/drivers/net/wireless/iwlegacy/iwl-power.h -c4cc1171f151dba9355cfdda7b72df3b linux-3.0/drivers/net/wireless/iwlegacy/iwl-power.c -e3bf0bf2313413aa23f7322bfff52e90 linux-3.0/drivers/net/wireless/iwlegacy/iwl-legacy-rs.h -cedaa234cd2ff2f8ea3f652289976dd8 linux-3.0/drivers/net/wireless/iwlegacy/iwl-led.h -47a90998949491d281e6f116ef8d7ab5 linux-3.0/drivers/net/wireless/iwlegacy/iwl-led.c -af94e50f2eb61ddc34ee02cb24e8f3bb linux-3.0/drivers/net/wireless/iwlegacy/iwl-io.h -4882a074ec369cfb5b2ce07a5f58e0f6 linux-3.0/drivers/net/wireless/iwlegacy/iwl-helpers.h -f0853358525dd46d0cfe1bde6f5fae95 linux-3.0/drivers/net/wireless/iwlegacy/iwl-hcmd.c -95435f8d69f266df59b0b1a4aa2d9e9a linux-3.0/drivers/net/wireless/iwlegacy/iwl-fh.h -c023dd64eb99e2e2448438359cdec841 linux-3.0/drivers/net/wireless/iwlegacy/iwl-eeprom.h -e4123dcb13b71fc8e99dd02ece88eaa0 linux-3.0/drivers/net/wireless/iwlegacy/iwl-eeprom.c -235688486afa632f6bab2183996ee76b linux-3.0/drivers/net/wireless/iwlegacy/iwl-devtrace.h -9801e294f892aa3be57d02984f6da4d6 linux-3.0/drivers/net/wireless/iwlegacy/iwl-devtrace.c -c38040f9dbd9b7543af08f7812b50f40 linux-3.0/drivers/net/wireless/iwlegacy/iwl-dev.h -d258105c0c41ede86572b9be2a117093 linux-3.0/drivers/net/wireless/iwlegacy/iwl-debugfs.c -60bbbbf733d216a10c1c8d516fa351cf linux-3.0/drivers/net/wireless/iwlegacy/iwl-debug.h -e2a28d1b688bf19d2924d9ef9f8d13f9 linux-3.0/drivers/net/wireless/iwlegacy/iwl-csr.h -825402adf44d84bb06d610de4287df1f linux-3.0/drivers/net/wireless/iwlegacy/iwl-core.h -c05d30fa1698779799ed4789562348a3 linux-3.0/drivers/net/wireless/iwlegacy/iwl-core.c -2c79a031c34629901b7e52c09d333b26 linux-3.0/drivers/net/wireless/iwlegacy/iwl-commands.h -51dfa1d2be9986d81787cf7c96c1bcd4 linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965.h -635c31ab604a6c76bceb72f7804d66af linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965.c -ec61f46e256998f70bc829600b864612 linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-ucode.c -19f6976e363fdbf78f2c5468e71ac35b linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-tx.c -f7fd7caf7b89dc9b63fdc3f0dfbac456 linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-sta.c -491e531d0635efee9e78f326e7bc3acb linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-rx.c -754902a53ee19bd3b3ca6273a47fd0aa linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-rs.c -24b4e9f924fdb4396f478fed21afba0a linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-lib.c -f03f65f7b0b241e7c8ba67695424818d linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-led.h -901cdb639f3f0c3e0bf1df4aefa3270d linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-led.c -2d81acde3366b674cb36fa7195ad9452 linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-hw.h -228ef2e707bb4305f46f3f22614514a8 linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-eeprom.c -ac42812410b690329513a991ddc67e8a linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-debugfs.h -eccc47c268f21b53ee0dba7b713e8007 linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-debugfs.c -400da54e3b8993d584883c7564cfb6ee linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-calib.h -aea6f9cdb7ca6abc04b21317d6c18f0a linux-3.0/drivers/net/wireless/iwlegacy/iwl-4965-calib.c -86e84e57f9ab99bb2e0743591459f797 linux-3.0/drivers/net/wireless/iwlegacy/iwl-3945.h -e8fa991b2ace84594560f9c69af0663c linux-3.0/drivers/net/wireless/iwlegacy/iwl-3945.c -ca7ab6c3b2f696e376865eeca880a878 linux-3.0/drivers/net/wireless/iwlegacy/iwl-3945-rs.c -516df4623f4e792c4c67748ba95fa663 linux-3.0/drivers/net/wireless/iwlegacy/iwl-3945-led.h -31029ce0b5d87fc1b05c2f520b2d41c3 linux-3.0/drivers/net/wireless/iwlegacy/iwl-3945-led.c -77dda422a3b02fb0c9a2e4eef46d2654 linux-3.0/drivers/net/wireless/iwlegacy/iwl-3945-hw.h -67fd91a48e5677d593e85d781e38c30c linux-3.0/drivers/net/wireless/iwlegacy/iwl-3945-fh.h -a6036e2d40ed1803fb856d76a7448068 linux-3.0/drivers/net/wireless/iwlegacy/iwl-3945-debugfs.h -efe6ac12c071612a201bac9768995ef2 linux-3.0/drivers/net/wireless/iwlegacy/iwl-3945-debugfs.c -efe3dbf94932d30ae7bd855d719da537 linux-3.0/drivers/net/wireless/iwlegacy/Makefile -6a8e6ddd99b275a837384a0a9bbfc303 linux-3.0/drivers/net/wireless/iwlegacy/Kconfig -39c4616242ffe7c030ae0320a1f242b0 linux-3.0/drivers/net/wireless/ipw2x00/libipw_wx.c -bf0872e365820441e2b95e02177a8208 linux-3.0/drivers/net/wireless/ipw2x00/libipw_tx.c -00a0b128c52d9ff5cc633169452588f1 linux-3.0/drivers/net/wireless/ipw2x00/libipw_rx.c -217bf6c56aa32a2038ede638ad05f7d6 linux-3.0/drivers/net/wireless/ipw2x00/libipw_module.c -630975a892d4e4e491e814510d178ecb linux-3.0/drivers/net/wireless/ipw2x00/libipw_geo.c -195ef3e7dae5cacd298b5068e9f6bf71 linux-3.0/drivers/net/wireless/ipw2x00/libipw.h -d7e3136d8e5d2b4c092e6168f397888c linux-3.0/drivers/net/wireless/ipw2x00/ipw2200.h -d7cbd5d18fdd420d28da1df5cfe065ce linux-3.0/drivers/net/wireless/ipw2x00/ipw2200.c -f69c1456c1bcd86f54e7fd9ae785b52e linux-3.0/drivers/net/wireless/ipw2x00/ipw2100.h -665288f1abc1a28dd74a62783de84b60 linux-3.0/drivers/net/wireless/ipw2x00/ipw2100.c -a88530c926917615a606a5181dcf7f16 linux-3.0/drivers/net/wireless/ipw2x00/Makefile -856beab026de33caec7c06775d6943f1 linux-3.0/drivers/net/wireless/ipw2x00/Kconfig -894103cb3cb3addf5a8237b86b2c3405 linux-3.0/drivers/net/wireless/hostap/hostap_wlan.h -44f0f70bcd48930705ce37e6b8bee6e3 linux-3.0/drivers/net/wireless/hostap/hostap_proc.c -05ae84250a92fcf0bddb851d1ad7f7e2 linux-3.0/drivers/net/wireless/hostap/hostap_plx.c -2e43dd1877192c75fa186213e8f27a24 linux-3.0/drivers/net/wireless/hostap/hostap_pci.c -fb82a7df2eb97750f73d2460f65fa111 linux-3.0/drivers/net/wireless/hostap/hostap_main.c -9e27c885533b5005a961348b21df7eda linux-3.0/drivers/net/wireless/hostap/hostap_ioctl.c -a5f59a8d529c4aa599f8d8483abef2f2 linux-3.0/drivers/net/wireless/hostap/hostap_info.c -bb1d47b2964c61ccab6534c0a8327f2c linux-3.0/drivers/net/wireless/hostap/hostap_hw.c -89a56422db79cd95399620160f620bf7 linux-3.0/drivers/net/wireless/hostap/hostap_download.c -60e48a7be13295b8095930aa41494be5 linux-3.0/drivers/net/wireless/hostap/hostap_cs.c -a616564964d344981e75af44836bb2b1 linux-3.0/drivers/net/wireless/hostap/hostap_config.h -f778c77be4cba557549599687b78ed4f linux-3.0/drivers/net/wireless/hostap/hostap_common.h -057dbfa2dc18bd0286c2d9077e422334 linux-3.0/drivers/net/wireless/hostap/hostap_ap.h -33771c464f2b10acccbf3dc2f0349134 linux-3.0/drivers/net/wireless/hostap/hostap_ap.c -028a2d50761f6ec82e165332f4b1a885 linux-3.0/drivers/net/wireless/hostap/hostap_80211_tx.c -1a32a0f927e3888b2da5aabb9e2fb0d0 linux-3.0/drivers/net/wireless/hostap/hostap_80211_rx.c -c98632943028ebc7e815426ae6f79497 linux-3.0/drivers/net/wireless/hostap/hostap_80211.h -1ccc76ea682f388cbe0460c86f73b02b linux-3.0/drivers/net/wireless/hostap/hostap.h -29800dabd53f92724f08b972d91db1dc linux-3.0/drivers/net/wireless/hostap/Makefile -d42fa67bc2303909d774d6583e62e399 linux-3.0/drivers/net/wireless/hostap/Kconfig -abca4e73cc27620ea22b2a9d0c161cbf linux-3.0/drivers/net/wireless/b43legacy/xmit.h -257064c00059b99e65cd835ef6926e53 linux-3.0/drivers/net/wireless/b43legacy/xmit.c -7d16ecc6cecd46ee53bb61071acf85a4 linux-3.0/drivers/net/wireless/b43legacy/sysfs.h -2bdffbba41b88b7f559039dca5488844 linux-3.0/drivers/net/wireless/b43legacy/sysfs.c -8979ab4fa9fdd7bf5f7ddbe98e100f78 linux-3.0/drivers/net/wireless/b43legacy/rfkill.h -d796a3b4cdebbba17fbc1d1daa146e5e linux-3.0/drivers/net/wireless/b43legacy/rfkill.c -eed8b3528d8e43058fcef87901a3ede6 linux-3.0/drivers/net/wireless/b43legacy/radio.h -f021352e7068ff761c59f5ea55cf65cf linux-3.0/drivers/net/wireless/b43legacy/radio.c -cc8851dc68a63abcbb07e39d1e4d8ead linux-3.0/drivers/net/wireless/b43legacy/pio.h -dcf664f12cb67db439df75bb4c7f415e linux-3.0/drivers/net/wireless/b43legacy/pio.c -96431faa5e57ad2f2b9dbdf919d246d8 linux-3.0/drivers/net/wireless/b43legacy/phy.h -bbbf963f072b8a40da257b2497eaed6d linux-3.0/drivers/net/wireless/b43legacy/phy.c -500a112573018d68a33a7dd7e76f71f0 linux-3.0/drivers/net/wireless/b43legacy/main.h -b2d6f7d3624216f91726b0336a290a5a linux-3.0/drivers/net/wireless/b43legacy/main.c -b800412d0bff603aa15fa746b094c9ec linux-3.0/drivers/net/wireless/b43legacy/leds.h -c3136189a0b4093258acb445f8a0cbf6 linux-3.0/drivers/net/wireless/b43legacy/leds.c -a18f4efbcc2cc0e920d90418f1dabb5e linux-3.0/drivers/net/wireless/b43legacy/ilt.h -9d15c6b3a5d1efdcd86fb8434ffcdd3c linux-3.0/drivers/net/wireless/b43legacy/ilt.c -8113a514d9dc222b8d417bc2c35956e9 linux-3.0/drivers/net/wireless/b43legacy/dma.h -57b4d0b4ae2f00821e77f6c988d6ad36 linux-3.0/drivers/net/wireless/b43legacy/dma.c -f8a8d10913b17771eb294521deb38819 linux-3.0/drivers/net/wireless/b43legacy/debugfs.h -4c2e0c84e6374893225f33f4af05ed68 linux-3.0/drivers/net/wireless/b43legacy/debugfs.c -0499963074236fb9fc03037ae93ccdaa linux-3.0/drivers/net/wireless/b43legacy/b43legacy.h -94886e02b817e71d96ac1ff9dc334ee4 linux-3.0/drivers/net/wireless/b43legacy/Makefile -5f5083f043dbb2050a9384aeda43d861 linux-3.0/drivers/net/wireless/b43legacy/Kconfig -26046b77ea031f8f99ab1f1cf20e5502 linux-3.0/drivers/net/wireless/b43/xmit.h -55259051209ed8177915e424e02ce416 linux-3.0/drivers/net/wireless/b43/xmit.c -d21126df4c58d0a5b769b2643e8c6234 linux-3.0/drivers/net/wireless/b43/wa.h -3c235cdbdcd19b2933718ae952c85d49 linux-3.0/drivers/net/wireless/b43/wa.c -d05b4dfed110d79b5a689a69434625e0 linux-3.0/drivers/net/wireless/b43/tables_nphy.h -80c2b25fac932e0678a703d239400511 linux-3.0/drivers/net/wireless/b43/tables_nphy.c -435269a44a7bf2f73cac2099de1d5100 linux-3.0/drivers/net/wireless/b43/tables_lpphy.h -899644316388ea2e61c0d1dda30f734d linux-3.0/drivers/net/wireless/b43/tables_lpphy.c -f9d508b91ca9fb32dc8d0c40df310bfd linux-3.0/drivers/net/wireless/b43/tables.h -3c7aa4d6c87635e41a666e05b6ee6775 linux-3.0/drivers/net/wireless/b43/tables.c -de50d506bab4d9b468c900884c05c52a linux-3.0/drivers/net/wireless/b43/sysfs.h -741cbfd7ee5595f4821bd961430eb647 linux-3.0/drivers/net/wireless/b43/sysfs.c -55ce8fc15253ab72450673da08f9933a linux-3.0/drivers/net/wireless/b43/sdio.h -48e37a1502f0231a15e78dc3189b4f9d linux-3.0/drivers/net/wireless/b43/sdio.c -0e918576c7cf1b7a5175cd9463fad1c1 linux-3.0/drivers/net/wireless/b43/rfkill.h -b07a36e8a662ef0b1a9f6d8d9c27a008 linux-3.0/drivers/net/wireless/b43/rfkill.c -ff8607a622b9ef8b0f2aab8ab17d5f2e linux-3.0/drivers/net/wireless/b43/radio_2056.h -bb6ce23f3165038b7f20ce0ad87a90ff linux-3.0/drivers/net/wireless/b43/radio_2056.c -73a8489ba29a0dafa7da99cda3859087 linux-3.0/drivers/net/wireless/b43/radio_2055.h -a8faa002b3c8f63227bac2bbf653d5c1 linux-3.0/drivers/net/wireless/b43/radio_2055.c -599504aed56c9811cc3d6789579603fa linux-3.0/drivers/net/wireless/b43/pio.h -7d898e877d03ddc006ce4c0b8734059e linux-3.0/drivers/net/wireless/b43/pio.c -3a478bd8f3e4179d33b83e1f5aa044d4 linux-3.0/drivers/net/wireless/b43/phy_n.h -499782ffdae08191e33ad2011b06f59e linux-3.0/drivers/net/wireless/b43/phy_n.c -bac37e6992235b76b7137bee8de224cf linux-3.0/drivers/net/wireless/b43/phy_lp.h -a9a6629817af69cea6a83753c75ebd5b linux-3.0/drivers/net/wireless/b43/phy_lp.c -5b0ebb70012b24ba5487bbe2615ff63f linux-3.0/drivers/net/wireless/b43/phy_g.h -c3566ffd5deb78ee6c2f29f121c52936 linux-3.0/drivers/net/wireless/b43/phy_g.c -99517fb9f00e51b89728a6937c84e233 linux-3.0/drivers/net/wireless/b43/phy_common.h -40ff2031e74a494250626fa7090fe9a1 linux-3.0/drivers/net/wireless/b43/phy_common.c -c0652530e74c13546b27191cae349876 linux-3.0/drivers/net/wireless/b43/phy_a.h -900005d5b6ca9a748f36aea1465f8370 linux-3.0/drivers/net/wireless/b43/phy_a.c -0ce67448f66fe4715a641020d921f2be linux-3.0/drivers/net/wireless/b43/pcmcia.h -bb2de98668d9951f7563b271bb2b261a linux-3.0/drivers/net/wireless/b43/pcmcia.c -5e004f4638d81d2acfd09347647763ee linux-3.0/drivers/net/wireless/b43/main.h -a7d7f8d9fe57ed63193be04c863f9103 linux-3.0/drivers/net/wireless/b43/main.c -99233281d9e2d51cb001c887e8410173 linux-3.0/drivers/net/wireless/b43/lo.h -1b35f864441a72a3a6ad3785c2219b93 linux-3.0/drivers/net/wireless/b43/lo.c -cd154a0bbc3b451e7ce86d911acbbac2 linux-3.0/drivers/net/wireless/b43/leds.h -bfb0642f1d0eb2cfd09f5c62ec405463 linux-3.0/drivers/net/wireless/b43/leds.c -099ad760c67ed6bfcd21e9dcf94dc958 linux-3.0/drivers/net/wireless/b43/dma.h -0bd5ed0a3384729df7783a6697b02f2f linux-3.0/drivers/net/wireless/b43/dma.c -178855d13bb3be9f990f1d39da69ae75 linux-3.0/drivers/net/wireless/b43/debugfs.h -87d3332bba044d622c0ee033e3e40207 linux-3.0/drivers/net/wireless/b43/debugfs.c -2a41ce1d45eb8d477966331940fa04cb linux-3.0/drivers/net/wireless/b43/b43.h -26402cc01a5e9c1238fa1496dd37d23d linux-3.0/drivers/net/wireless/b43/Makefile -9b5cc6b406c1425f3be1e77cddd73461 linux-3.0/drivers/net/wireless/b43/Kconfig -2ea87500668725bc3a956b8472abe3d1 linux-3.0/drivers/net/wireless/atmel_pci.c -6cd418b50cc7f0cb0bd31d2058d1cd56 linux-3.0/drivers/net/wireless/atmel_cs.c -ac30123f978028a5f07d826c3007b960 linux-3.0/drivers/net/wireless/atmel.h -db96692bc81f56a2e996dba86fd27c2d linux-3.0/drivers/net/wireless/atmel.c -75e38d757f05bbfab5ff1f96727c5b33 linux-3.0/drivers/net/wireless/ath/regd_common.h -18e549f9f2e11dc5188a16587340010c linux-3.0/drivers/net/wireless/ath/regd.h -26827ab637194467c2e8e0c62866d723 linux-3.0/drivers/net/wireless/ath/regd.c -5f696bf7cc38cad7a732bee3c22b1cb2 linux-3.0/drivers/net/wireless/ath/reg.h -b862fbef3bf83ea84a157d9b49a81a46 linux-3.0/drivers/net/wireless/ath/main.c -668870ec76895ed641b7312e219439b6 linux-3.0/drivers/net/wireless/ath/key.c -a9de177d1c5643aeccdab15da6f2931b linux-3.0/drivers/net/wireless/ath/hw.c -ed5860f35d5c76dc1832db25f2642f5f linux-3.0/drivers/net/wireless/ath/debug.c -dacec1b5fe3967bb1c1db50ee2745191 linux-3.0/drivers/net/wireless/ath/carl9170/wlan.h -face2e8db11fe45cdc5ebe78c40bf6ae linux-3.0/drivers/net/wireless/ath/carl9170/version.h -a01e4a317409bece6eaad662e2e074d2 linux-3.0/drivers/net/wireless/ath/carl9170/usb.c -2a9b9f47eac967f6d30599473b3531b2 linux-3.0/drivers/net/wireless/ath/carl9170/tx.c -7dd679d789afe416b78d80884a845ddd linux-3.0/drivers/net/wireless/ath/carl9170/rx.c -35d6fecb715488bfb09749772c253496 linux-3.0/drivers/net/wireless/ath/carl9170/phy.h -659e91ca53dd996f02961ba62d17a73b linux-3.0/drivers/net/wireless/ath/carl9170/phy.c -0d0da0ffcef9fcfdbaea5efc53ff9f21 linux-3.0/drivers/net/wireless/ath/carl9170/main.c -7fb613feb83fa587089985a651b5a09a linux-3.0/drivers/net/wireless/ath/carl9170/mac.c -83e8a64905787385e6690379e3b270eb linux-3.0/drivers/net/wireless/ath/carl9170/led.c -b35fe22a93a9443d904908301e6dfd70 linux-3.0/drivers/net/wireless/ath/carl9170/hw.h -9e4ca1b82c44a39e9039fe135c0871c2 linux-3.0/drivers/net/wireless/ath/carl9170/fwdesc.h -59471e47f2c3717bf1414981321fd21f linux-3.0/drivers/net/wireless/ath/carl9170/fwcmd.h -b523928734fd33deda35fa6104a40736 linux-3.0/drivers/net/wireless/ath/carl9170/fw.c -59a20140b9a31a58b051a214be332f29 linux-3.0/drivers/net/wireless/ath/carl9170/eeprom.h -d5ec62d05bb4c6dff8b718003d9e770d linux-3.0/drivers/net/wireless/ath/carl9170/debug.h -355099dda853bbaf8b4c0bf56b5f5ae3 linux-3.0/drivers/net/wireless/ath/carl9170/debug.c -7950736beef82addaf05e0aef6c93dcc linux-3.0/drivers/net/wireless/ath/carl9170/cmd.h -b12ac17035e47f7b186269460ae22122 linux-3.0/drivers/net/wireless/ath/carl9170/cmd.c -d70223281598664ea7a958f53bb828dc linux-3.0/drivers/net/wireless/ath/carl9170/carl9170.h -d774b9585c4b39f6f18a02224f5dbcd8 linux-3.0/drivers/net/wireless/ath/carl9170/Makefile -b4635ed13496b5140c37281b16bb4216 linux-3.0/drivers/net/wireless/ath/carl9170/Kconfig -31b743e2a77c1160cd88fd4b2e50b25e linux-3.0/drivers/net/wireless/ath/ath9k/xmit.c -51de764d1daec96065051191e04608ce linux-3.0/drivers/net/wireless/ath/ath9k/wmi.h -8c01e0db3b1d7ddb3fedd87b38cd7d6e linux-3.0/drivers/net/wireless/ath/ath9k/wmi.c -ad3bbd866ca3b40b008c756d324dfae2 linux-3.0/drivers/net/wireless/ath/ath9k/reg.h -34bafed68d29b683370b5d40fe368de9 linux-3.0/drivers/net/wireless/ath/ath9k/recv.c -52086e1a105ee3dacf6650fb315bc996 linux-3.0/drivers/net/wireless/ath/ath9k/rc.h -5ffb4f75eac3539c8405bdcee19b16e7 linux-3.0/drivers/net/wireless/ath/ath9k/rc.c -722692893be91c3e3cc3687ca5f72d77 linux-3.0/drivers/net/wireless/ath/ath9k/phy.h -25906777bb7855bdfd0ff342d2a11c87 linux-3.0/drivers/net/wireless/ath/ath9k/pci.c -9cb39aaa2c8deddb6e63bd80af8f191d linux-3.0/drivers/net/wireless/ath/ath9k/main.c -d1c8be47bf60a83f8855c846eaf630c0 linux-3.0/drivers/net/wireless/ath/ath9k/mac.h -0cd264951d7ee799237a9816ac4dc864 linux-3.0/drivers/net/wireless/ath/ath9k/mac.c -60cdfe734068293ee724800518673b85 linux-3.0/drivers/net/wireless/ath/ath9k/init.c -4836e04c07beead3fc0668b90835bbd7 linux-3.0/drivers/net/wireless/ath/ath9k/hw.h -ccd0c746c2e73441187ef52b4875fd41 linux-3.0/drivers/net/wireless/ath/ath9k/hw.c -cb689acea1ce4f6b1611003d90b614ba linux-3.0/drivers/net/wireless/ath/ath9k/hw-ops.h -45cba21297d58fef61cdc54e5f9640ae linux-3.0/drivers/net/wireless/ath/ath9k/htc_hst.h -74bc7d320129eef76fda59ee564f35a4 linux-3.0/drivers/net/wireless/ath/ath9k/htc_hst.c -862f02cd81782b4fc265814ced8c884a linux-3.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c -fcc7f5b78517bd44865af91e99b95bc1 linux-3.0/drivers/net/wireless/ath/ath9k/htc_drv_main.c -100a264f577798fdc13a58fc68c0eddf linux-3.0/drivers/net/wireless/ath/ath9k/htc_drv_init.c -1b758961efdfb5d91edcd5224a749e9e linux-3.0/drivers/net/wireless/ath/ath9k/htc_drv_gpio.c -eb8b1a2c0a7a5f60654686d8ce9e809c linux-3.0/drivers/net/wireless/ath/ath9k/htc_drv_debug.c -ff55de17b1dc3146f1833e9664cb6070 linux-3.0/drivers/net/wireless/ath/ath9k/htc_drv_beacon.c -2457f75c3e2838272801ce66fa06a05f linux-3.0/drivers/net/wireless/ath/ath9k/htc.h -8419c86fa4ece0510693fb61849b8b3a linux-3.0/drivers/net/wireless/ath/ath9k/hif_usb.h -aece60caf2ae7f9c1af9a42a1db38dc6 linux-3.0/drivers/net/wireless/ath/ath9k/hif_usb.c -ca367b8a092b315638c8890e79d26d02 linux-3.0/drivers/net/wireless/ath/ath9k/gpio.c -9dce3aad30a50f14379d74976900dfa7 linux-3.0/drivers/net/wireless/ath/ath9k/eeprom_def.c -0fd0207d53a04d6e2e6199f7438cb463 linux-3.0/drivers/net/wireless/ath/ath9k/eeprom_9287.c -f2690b678a6e3623956847eb0e0f3199 linux-3.0/drivers/net/wireless/ath/ath9k/eeprom_4k.c -ca4b175958a2eb83bf660774772705cd linux-3.0/drivers/net/wireless/ath/ath9k/eeprom.h -bd30d5d03f362181b0f1037f22c745a3 linux-3.0/drivers/net/wireless/ath/ath9k/eeprom.c -3e34c18fb902ac6c2d7c0410797903a5 linux-3.0/drivers/net/wireless/ath/ath9k/debug.h -b4d0d330fb84c291ce75499bd13f413a linux-3.0/drivers/net/wireless/ath/ath9k/debug.c -5411b06e874948a6dd2c42725f353970 linux-3.0/drivers/net/wireless/ath/ath9k/common.h -96f0c9cc816098b79d6bd5b31b275591 linux-3.0/drivers/net/wireless/ath/ath9k/common.c -1ffab25c7c80f0098f83463ccbc728ed linux-3.0/drivers/net/wireless/ath/ath9k/calib.h -8c4489bedde9251f09b4fedbf75fcb21 linux-3.0/drivers/net/wireless/ath/ath9k/calib.c -e0d1935069477075b34c71d2d4ad9593 linux-3.0/drivers/net/wireless/ath/ath9k/btcoex.h -cf9ec5067edb90686a512a7d5e2d1a2d linux-3.0/drivers/net/wireless/ath/ath9k/btcoex.c -a92230cf853c758be7cd69ade443bee8 linux-3.0/drivers/net/wireless/ath/ath9k/beacon.c -e294704a823f838e604c6c9ec0fbc82a linux-3.0/drivers/net/wireless/ath/ath9k/ath9k.h -e50abe496a10c2903b25f110a527593e linux-3.0/drivers/net/wireless/ath/ath9k/ar9485_initvals.h -7a7dc8bd588f8f8262f860b5f68d5b58 linux-3.0/drivers/net/wireless/ath/ath9k/ar9340_initvals.h -a6cbb8dd08b00d25007ec8579ed5d1bf linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_phy.h -8eed319e33c6351ed4e849f7c43675ac linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_phy.c -1dc6637640cf90017c73a3622a841758 linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_paprd.c -92d903097f7768e4bca6a45b1a96cfb1 linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_mac.h -2b1e13ded4be8e6ea66d44cf3967702d linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_mac.c -04264a7d9a59c461b6dc722a7234e42d linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_hw.c -fff484a31e4e6bbdcf79f64cb246a27b linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_eeprom.h -9a352232223e892b5cb1f87a6960d8ec linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c -0e46ddeaec91868cb5042d00e2242675 linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_calib.c -7706956c2f24ebc074d10cce5a7cde97 linux-3.0/drivers/net/wireless/ath/ath9k/ar9003_2p2_initvals.h -cc84ae206f3409a41190e435fc1c9b60 linux-3.0/drivers/net/wireless/ath/ath9k/ar9002_phy.h -fbabe37a529e68c6a52ca66fe0ae4c7b linux-3.0/drivers/net/wireless/ath/ath9k/ar9002_phy.c -602dab71a9f75c7968ed5cb35a994508 linux-3.0/drivers/net/wireless/ath/ath9k/ar9002_mac.c -83a471ca6a02d67c0236fe43e9c65c5a linux-3.0/drivers/net/wireless/ath/ath9k/ar9002_initvals.h -e04d60914248b4b25c2e7aedc2206629 linux-3.0/drivers/net/wireless/ath/ath9k/ar9002_hw.c -a7b08aba8b8dacea2627ad0a991d3e68 linux-3.0/drivers/net/wireless/ath/ath9k/ar9002_calib.c -c8e31a6bf758c6f5324411c8d292742e linux-3.0/drivers/net/wireless/ath/ath9k/ar9001_initvals.h -fcce77e1ab5e50b8f21ef2bca0247ccb linux-3.0/drivers/net/wireless/ath/ath9k/ar5008_phy.c -eb9c591816c33c3c93b32f559951e309 linux-3.0/drivers/net/wireless/ath/ath9k/ar5008_initvals.h -217476a90b454489bf7e0eed6fa52ded linux-3.0/drivers/net/wireless/ath/ath9k/ani.h -1344a69a13bc608ca46be316b355d96f linux-3.0/drivers/net/wireless/ath/ath9k/ani.c -477593ae25466c4a7122ff723799ce99 linux-3.0/drivers/net/wireless/ath/ath9k/ahb.c -335aecc5329088804f297aebb1d45646 linux-3.0/drivers/net/wireless/ath/ath9k/Makefile -65d19c06f018fb178068862e3dc3e2ba linux-3.0/drivers/net/wireless/ath/ath9k/Kconfig -9bae9310dc4f8325e80971cdda6ba490 linux-3.0/drivers/net/wireless/ath/ath5k/trace.h -0cc7b9fe3cb953c2f1dfd06f64c0044f linux-3.0/drivers/net/wireless/ath/ath5k/sysfs.c -da82933303455a3d76893bf6c2e6e2fc linux-3.0/drivers/net/wireless/ath/ath5k/rfkill.c -6b5b29ec2eaabd7fcf97681290a5fb6a linux-3.0/drivers/net/wireless/ath/ath5k/rfgain.h -f2fc1ad86047a6c995909067de66a22f linux-3.0/drivers/net/wireless/ath/ath5k/rfbuffer.h -4fdb22045fdeae7039807eaec04e7287 linux-3.0/drivers/net/wireless/ath/ath5k/reset.c -54b4b69478ea25acc3f2b93f7b05cb2d linux-3.0/drivers/net/wireless/ath/ath5k/reg.h -6d069118e741ca6f8529163a1a38e57f linux-3.0/drivers/net/wireless/ath/ath5k/qcu.c -970e1f46048c874a2db9e9771c1a022b linux-3.0/drivers/net/wireless/ath/ath5k/phy.c -47f5e33885c7c07134540a5137e3b0b1 linux-3.0/drivers/net/wireless/ath/ath5k/pcu.c -7b7fb29d57492acc8b3e56e298319cb8 linux-3.0/drivers/net/wireless/ath/ath5k/pci.c -31addcddc1490000aa187f0575d1d303 linux-3.0/drivers/net/wireless/ath/ath5k/mac80211-ops.c -06f60dc8a3c4efe453f5af329a17b18e linux-3.0/drivers/net/wireless/ath/ath5k/led.c -ff6c89d89480d982899c2bfa26ecb584 linux-3.0/drivers/net/wireless/ath/ath5k/initvals.c -2a521aeb255691b212aaa3583f2a15a7 linux-3.0/drivers/net/wireless/ath/ath5k/gpio.c -4c7cbe51d05229b0c63789b136da2e5c linux-3.0/drivers/net/wireless/ath/ath5k/eeprom.h -d4d1c8e09145d0550c21b9cf675e6869 linux-3.0/drivers/net/wireless/ath/ath5k/eeprom.c -839e0421733ae7204a4900385606d5bb linux-3.0/drivers/net/wireless/ath/ath5k/dma.c -f07875c991d358753a0ecc6f1e59a00e linux-3.0/drivers/net/wireless/ath/ath5k/desc.h -e55ad88a2e7c6104ea0f05b357216c9d linux-3.0/drivers/net/wireless/ath/ath5k/desc.c -baa2a157ce98d6b600cae253fdd93cbf linux-3.0/drivers/net/wireless/ath/ath5k/debug.h -2494b2ee4d417d84d9438aa96b266136 linux-3.0/drivers/net/wireless/ath/ath5k/debug.c -afd3f203a39bb134137154f5816304bc linux-3.0/drivers/net/wireless/ath/ath5k/caps.c -2ac41b3d02b40f811ab47ccadcbbbea5 linux-3.0/drivers/net/wireless/ath/ath5k/base.h -6af49f347ada118a8ed9ce32424968b2 linux-3.0/drivers/net/wireless/ath/ath5k/base.c -093941919bd7d18e7e69395761078a5d linux-3.0/drivers/net/wireless/ath/ath5k/attach.c -b53cfcbb6c40eaaf30073a948b72d8e7 linux-3.0/drivers/net/wireless/ath/ath5k/ath5k.h -b91c024c5a226830b8cb556d6bb16592 linux-3.0/drivers/net/wireless/ath/ath5k/ani.h -2769662064f05ec74eb47c25231cf81f linux-3.0/drivers/net/wireless/ath/ath5k/ani.c -6b1e84594f1017e097e735d44e8e1d8a linux-3.0/drivers/net/wireless/ath/ath5k/ahb.c -8357be89fe836418de95d0353b05efb9 linux-3.0/drivers/net/wireless/ath/ath5k/Makefile -b13d5a1fb9d1461fd910e3383287fdfb linux-3.0/drivers/net/wireless/ath/ath5k/Kconfig -68412fc8d841b6512edf60cbdc120c8c linux-3.0/drivers/net/wireless/ath/ath.h -09c0b666d6ddb5a683f79bad56cdda5e linux-3.0/drivers/net/wireless/ath/Makefile -ccb15cef61801d506a7241fb70ae0495 linux-3.0/drivers/net/wireless/ath/Kconfig -9b8c32b8f26c694d15d81df379fc61dd linux-3.0/drivers/net/wireless/at76c50x-usb.h -d2324fa251f5e2b8511d0141223a00f7 linux-3.0/drivers/net/wireless/at76c50x-usb.c -83854f8acae547b27223954660f80315 linux-3.0/drivers/net/wireless/airo_cs.c -9f83f6fb85ef98ec57b68ceb89718c3f linux-3.0/drivers/net/wireless/airo.h -1040c19d817616c42acb3a17522c4b2e linux-3.0/drivers/net/wireless/airo.c -089b22d0cffc8ed8ef888c102a4625c9 linux-3.0/drivers/net/wireless/adm8211.h -8f476b31f90eec6d575eaab28ca71aba linux-3.0/drivers/net/wireless/adm8211.c -6e8c0f34836cefaba33a066f9967cbfa linux-3.0/drivers/net/wireless/Makefile -3848f19fd632c0f194d8bb4d4403ca9d linux-3.0/drivers/net/wireless/Kconfig -ff800297c150bd4d0fe0ffbb0b22e007 linux-3.0/drivers/net/wimax/i2400m/usb.c -bd8490c992b19bc128426b4ad3b46b27 linux-3.0/drivers/net/wimax/i2400m/usb-tx.c -e6d58f96eeec74a0b5a14f9a6ff9f224 linux-3.0/drivers/net/wimax/i2400m/usb-rx.c -6dc0b3944a9ff0714ecaf27cbf2496ea linux-3.0/drivers/net/wimax/i2400m/usb-notif.c -c638c8f145cc6f4e54f030b08775db3d linux-3.0/drivers/net/wimax/i2400m/usb-fw.c -1d841a7a6f14c565927eedbbba9b4557 linux-3.0/drivers/net/wimax/i2400m/usb-debug-levels.h -94fba00e33ab28906df0e973a649bf80 linux-3.0/drivers/net/wimax/i2400m/tx.c -106d5231948693af41f57708f5e60d97 linux-3.0/drivers/net/wimax/i2400m/sysfs.c -24c1cec793e4ae5c92043367eb9db297 linux-3.0/drivers/net/wimax/i2400m/sdio.c -e78c1e58f99d127d126235c8b32ac6fa linux-3.0/drivers/net/wimax/i2400m/sdio-tx.c -ec248a68244726ec4b916489df374186 linux-3.0/drivers/net/wimax/i2400m/sdio-rx.c -dbb1d0aa70fc5bb3fdbe26ba65420eff linux-3.0/drivers/net/wimax/i2400m/sdio-fw.c -ab4164ab9360465c291d40ae20aa41e1 linux-3.0/drivers/net/wimax/i2400m/sdio-debug-levels.h -ee103315bc09c4ef5c54eb26ed378aca linux-3.0/drivers/net/wimax/i2400m/rx.c -c97449484d71a73d163846bd3ca236d7 linux-3.0/drivers/net/wimax/i2400m/op-rfkill.c -714b9d0343dc82b7bbb70e742d173fe6 linux-3.0/drivers/net/wimax/i2400m/netdev.c -ce9397c7dd7c64cea6be9e177745ec33 linux-3.0/drivers/net/wimax/i2400m/i2400m.h -f5d3153212ffc0b02446aeedaea8a317 linux-3.0/drivers/net/wimax/i2400m/i2400m-usb.h -3e7ecfdbfd3cacf644b697af1f10d185 linux-3.0/drivers/net/wimax/i2400m/i2400m-sdio.h -891ad74ca1e0925054730601c27a5cbe linux-3.0/drivers/net/wimax/i2400m/fw.c -d6d7bbe9b8037e54195c44e6d80a9956 linux-3.0/drivers/net/wimax/i2400m/driver.c -07481d07cb3e8c599c64dcbea8235900 linux-3.0/drivers/net/wimax/i2400m/debugfs.c -de25c3151250fd1cbf0f9a1f562076f8 linux-3.0/drivers/net/wimax/i2400m/debug-levels.h -21506fe8f2ca8581a7f47aa907e94678 linux-3.0/drivers/net/wimax/i2400m/control.c -e45fed1ab1e2838caac8d72fe8fb89f5 linux-3.0/drivers/net/wimax/i2400m/Makefile -6f718cb7a4a8dc09f3ba788a60829482 linux-3.0/drivers/net/wimax/i2400m/Kconfig -92c8fa2b8c86ec7ea9bd3750ec077c0c linux-3.0/drivers/net/wimax/Makefile -5355133875ebd64d1061bd9daf45a7bd linux-3.0/drivers/net/wimax/Kconfig -2bdd07aa3b9fe0e4f7db968a1c1b9532 linux-3.0/drivers/net/wd.c -74b8f3bd421f8a25c97d91e0b63b9629 linux-3.0/drivers/net/wan/z85230.h -a47d62ce52a442b68901ab3d75c876e0 linux-3.0/drivers/net/wan/z85230.c -4b92459f46dc0f03fcdb3724670e3b0b linux-3.0/drivers/net/wan/x25_asy.h -81992447ea7d6bf99289b2fd78c21197 linux-3.0/drivers/net/wan/x25_asy.c -e702fcbb4a002a8b54f503253bec7d81 linux-3.0/drivers/net/wan/wanxlfw.inc_shipped -c203cb03e98a2c7aad65b55c165eb6c3 linux-3.0/drivers/net/wan/wanxlfw.S -6eb80d8f580860819fdf581c6c5b7ba1 linux-3.0/drivers/net/wan/wanxl.h -d6f97957fef7508e8f4c550e756b8f26 linux-3.0/drivers/net/wan/wanxl.c -6b99fcfc7afae24a7f4a70cee3d03dcf linux-3.0/drivers/net/wan/sealevel.c -300b0f68e60f81c49881a10edb3cf103 linux-3.0/drivers/net/wan/sdla.c -f2c79458d72970610d466379b9c10ca0 linux-3.0/drivers/net/wan/sbni.h -82ec46d5b665283aab4007c82dcc7a5d linux-3.0/drivers/net/wan/sbni.c -0325304cbb8aacddb5b7aae80eb0d264 linux-3.0/drivers/net/wan/pci200syn.c -e67a81776ed80c8694aec274d13a4853 linux-3.0/drivers/net/wan/pc300too.c -528fc64974a83019c8ba04761adf6737 linux-3.0/drivers/net/wan/pc300_tty.c -a98344b65575b3da69de7a3a270a9a19 linux-3.0/drivers/net/wan/pc300_drv.c -abc759eab157e179f89c100a100f6b1e linux-3.0/drivers/net/wan/pc300.h -2cfdc977861205bb0fe8bc72ad83d4b1 linux-3.0/drivers/net/wan/pc300-falc-lh.h -d9d2b9d259f859ed06010b871bc236ad linux-3.0/drivers/net/wan/n2.c -5e7657c6b57cd8b182c351f830ca6f21 linux-3.0/drivers/net/wan/lmc/lmc_var.h -34f054fd9e36c8a65988d11aa38f9620 linux-3.0/drivers/net/wan/lmc/lmc_proto.h -d47e6de2e6100a684c573aa7d325984e linux-3.0/drivers/net/wan/lmc/lmc_proto.c -153924e8bf136a7f3e42f07bdf8e261c linux-3.0/drivers/net/wan/lmc/lmc_media.c -5f10af8138b08cbd05b11f95d09f798e linux-3.0/drivers/net/wan/lmc/lmc_main.c -0e8f727cd168f9f20bf7a118b544f119 linux-3.0/drivers/net/wan/lmc/lmc_ioctl.h -747cc64612e441d07066b981f05ae5dc linux-3.0/drivers/net/wan/lmc/lmc_debug.h -ac7a03796d9b77567e3d73116dafe458 linux-3.0/drivers/net/wan/lmc/lmc_debug.c -6afd916eb75d423bc8f94f2887d32e42 linux-3.0/drivers/net/wan/lmc/lmc.h -62a46fe833204cd023f27bd27e58eb18 linux-3.0/drivers/net/wan/lmc/Makefile -c5cdc43143833f661347942134eef77f linux-3.0/drivers/net/wan/lapbether.c -a59f53deee20fa869756dd061989f578 linux-3.0/drivers/net/wan/ixp4xx_hss.c -a9763a51d779f1fea8c38a19e79b2e94 linux-3.0/drivers/net/wan/hostess_sv11.c -4e2996aa46ddcf04c05d33b2d9d7a8ee linux-3.0/drivers/net/wan/hdlc_x25.c -779202a15f63aca80e2849f6a93c4288 linux-3.0/drivers/net/wan/hdlc_raw_eth.c -e2359175b5a10b0be905bab9979925d9 linux-3.0/drivers/net/wan/hdlc_raw.c -b63d16f94996395f6b6ed28a0ee1e755 linux-3.0/drivers/net/wan/hdlc_ppp.c -c6baec972f3d9c262a621dec832d74da linux-3.0/drivers/net/wan/hdlc_fr.c -180c2945d465a9bdc7f4fd3b3d1d9f74 linux-3.0/drivers/net/wan/hdlc_cisco.c -7884a92c82d673b506bf0f7a7c8970c6 linux-3.0/drivers/net/wan/hdlc.c -5d668c620b3fffcf5b5f83d9939208dc linux-3.0/drivers/net/wan/hd64572.h -6809073c61d05488a4b31c2f5351db0f linux-3.0/drivers/net/wan/hd64572.c -b43fdc80342338dbcec1b209b0b8fe72 linux-3.0/drivers/net/wan/hd64570.h -4e133e11cc4e97557df060006576dd40 linux-3.0/drivers/net/wan/hd64570.c -c5f658e88e8dad020939508904a25227 linux-3.0/drivers/net/wan/farsync.h -fa51610dbe785151fcdd1e664819e3b4 linux-3.0/drivers/net/wan/farsync.c -7b5aa71a692a55986edadeb3ae9d89e2 linux-3.0/drivers/net/wan/dscc4.c -6e6952ea5d05cdf76778b98fef954368 linux-3.0/drivers/net/wan/dlci.c -a73630aa6cc86850b6c29b0be96373bb linux-3.0/drivers/net/wan/cycx_x25.c -714bd1b9e67e378bef606d7cf01abffc linux-3.0/drivers/net/wan/cycx_main.c -bad84fbfdca99b3a95a0e6225a5789d3 linux-3.0/drivers/net/wan/cycx_drv.c -38224dc28cd887db5d431141f0c92fd5 linux-3.0/drivers/net/wan/cosa.h -4e87f0ccb8e7b88916c906e1d2824d03 linux-3.0/drivers/net/wan/cosa.c -1965434240ba50f331409baabe9222b3 linux-3.0/drivers/net/wan/c101.c -8865e864499fe8798c45fa923e2f21ac linux-3.0/drivers/net/wan/Makefile -702b1a1f6611e90b73f6ae768cb083a5 linux-3.0/drivers/net/wan/Kconfig -32bddba3fadaf3e8f97ce0a0d2977ccd linux-3.0/drivers/net/wan/.gitignore -15143a43f734f9395ccff3986fe87f34 linux-3.0/drivers/net/vxge/vxge-version.h -487c085d8fdda3534769e623af70b5ac linux-3.0/drivers/net/vxge/vxge-traffic.h -1a311c5a4f0c594ea37dc3664c8d9c58 linux-3.0/drivers/net/vxge/vxge-traffic.c -8bfaab1fff404d5cc5fe87a56ef1f8f6 linux-3.0/drivers/net/vxge/vxge-reg.h -a43e8c1b63987555d10aae1fe441bdf4 linux-3.0/drivers/net/vxge/vxge-main.h -4a5129abe40d5aede9dc760980c79be3 linux-3.0/drivers/net/vxge/vxge-main.c -10fd9de72760c05561445b255236ff25 linux-3.0/drivers/net/vxge/vxge-ethtool.h -1bc99637aef5b61eaea406dbb363883e linux-3.0/drivers/net/vxge/vxge-ethtool.c -892c0a146185945d4d079a9d4f3837dc linux-3.0/drivers/net/vxge/vxge-config.h -d17c89c45a7e3b39947b7aa2d6528eed linux-3.0/drivers/net/vxge/vxge-config.c -01868dc3ef4d7164ea90e9feb8f94678 linux-3.0/drivers/net/vxge/Makefile -62c8b63bea02836100efbc4de2450f72 linux-3.0/drivers/net/vmxnet3/vmxnet3_int.h -0e3bb0408b2441b7cb86462a95b89a21 linux-3.0/drivers/net/vmxnet3/vmxnet3_ethtool.c -3e414f8ee6daa3a25a206bd6bacb23a0 linux-3.0/drivers/net/vmxnet3/vmxnet3_drv.c -9e434142227f2d3d819742b0371dab88 linux-3.0/drivers/net/vmxnet3/vmxnet3_defs.h -059ea077cc9bd79b5c77c9f7dc58cd87 linux-3.0/drivers/net/vmxnet3/upt1_defs.h -696d755732b32cb5b760cf89a6731fa5 linux-3.0/drivers/net/vmxnet3/Makefile -32c2482fce6a0d218af04d11c7e1b37b linux-3.0/drivers/net/virtio_net.c -0af9324a1226561cf63bfa23747d4a6d linux-3.0/drivers/net/via-velocity.h -7c0d334127bcd510cf9d81eefb6f3c2c linux-3.0/drivers/net/via-velocity.c -d2370140a7af1e17aa0ce392c3d01dc8 linux-3.0/drivers/net/via-rhine.c -c369b494d7043b8827d8387c2c97e1bf linux-3.0/drivers/net/veth.c -13315be39a098313b72555f05804717b linux-3.0/drivers/net/usb/zaurus.c -535ab8b565c931d673dafbf04ec70bf8 linux-3.0/drivers/net/usb/usbnet.c -35f9321e5da7aac9ab78f5355bfa18df linux-3.0/drivers/net/usb/smsc95xx.h -a2913635f2ac35beb2ccc54da2587384 linux-3.0/drivers/net/usb/smsc95xx.c -be54b1bb6b1ad3f4e70c5083a97a4b2e linux-3.0/drivers/net/usb/smsc75xx.h -d160f1f9bdc0bb6b54de87976c42a557 linux-3.0/drivers/net/usb/smsc75xx.c -96412637df36340bbef6b6b46707310d linux-3.0/drivers/net/usb/sierra_net.c -1251f5eb985ca634a3ba099458990803 linux-3.0/drivers/net/usb/rtl8150.c -df37925c4a6330332ec63052fd102d45 linux-3.0/drivers/net/usb/rndis_host.c -97679067922cbe422791f86bc0e19117 linux-3.0/drivers/net/usb/plusb.c -690e08b1c7afe4bab634f5b039984837 linux-3.0/drivers/net/usb/pegasus.h -f6d4d50ad3b684481c5db0d9e8d4508b linux-3.0/drivers/net/usb/pegasus.c -389a20db81547a3aa7ebd5df275398e8 linux-3.0/drivers/net/usb/net1080.c -1388add510721e386c824288558f34c6 linux-3.0/drivers/net/usb/mcs7830.c -acdf0223f4a64eab5877b28da8f43578 linux-3.0/drivers/net/usb/lg-vl600.c -c43bdbd5711d30337652102381df9c76 linux-3.0/drivers/net/usb/kaweth.c -b62c1f21570a8d662a9199394ddee9c9 linux-3.0/drivers/net/usb/kalmia.c -90707089ac6d972da45afaad461b7198 linux-3.0/drivers/net/usb/ipheth.c -e76bdfc8dfee415edb4a582d1f40e810 linux-3.0/drivers/net/usb/int51x1.c -88f0ffc9b21c9569e95c46b489fb372b linux-3.0/drivers/net/usb/hso.c -40202a3f4d6a13fffb4c117ecc43e5e7 linux-3.0/drivers/net/usb/gl620a.c -79c5c78c4a226694b73f49a374b75951 linux-3.0/drivers/net/usb/dm9601.c -df5254e984d34cb89ee75f652690993a linux-3.0/drivers/net/usb/cx82310_eth.c -c4b974c132565596aec70c1a4dff7f24 linux-3.0/drivers/net/usb/cdc_subset.c -900c223a95792f5ef63369ff8b009c86 linux-3.0/drivers/net/usb/cdc_ncm.c -99889e11f1e302ea31b024ea71df9cae linux-3.0/drivers/net/usb/cdc_ether.c -97d0b0448669184bae291855a8bcf253 linux-3.0/drivers/net/usb/cdc_eem.c -183bb5cd4561e6c7f25c0b8f8f4201f3 linux-3.0/drivers/net/usb/cdc-phonet.c -f3aa8f33ea0dfbf4de8a81b3b099fbcb linux-3.0/drivers/net/usb/catc.c -fe687e5049de0f2e7b00bb6c40c73c63 linux-3.0/drivers/net/usb/asix.c -ea9a8f0daaf81f9ab001cfbeb83501c9 linux-3.0/drivers/net/usb/Makefile -0f3efadecdb959b6b4cabad477611d08 linux-3.0/drivers/net/usb/Kconfig -8c09fc7f4a8c168e258b1adca99c4546 linux-3.0/drivers/net/ucc_geth_ethtool.c -97567213979b037f7ecc7d6d19b775a5 linux-3.0/drivers/net/ucc_geth.h -3895dad69546da0f476e2bfa79f661b1 linux-3.0/drivers/net/ucc_geth.c -abd7478c86a2622c5f6e63de274d1d7e linux-3.0/drivers/net/typhoon.h -f56acb12913d898e19b336744da072f7 linux-3.0/drivers/net/typhoon.c -6ce1b2843c2af9664028579864327539 linux-3.0/drivers/net/tun.c -009cda032bdddda8f42ea3775030ee39 linux-3.0/drivers/net/tulip/xircom_cb.c -0fa0d1ca02a1adb4c5f4c4595ee2ae86 linux-3.0/drivers/net/tulip/winbond-840.c -a34b8633431931fbae8c43bf76016d7b linux-3.0/drivers/net/tulip/uli526x.c -c9ea04917ce71c3eeca9b09262facd38 linux-3.0/drivers/net/tulip/tulip_core.c -135fa82be2a147d0eed68e1d0c5d886c linux-3.0/drivers/net/tulip/tulip.h -6dbba7859cf3769cef193de7d79f873d linux-3.0/drivers/net/tulip/timer.c -96c771db8ec5668af8c5f2490037975c linux-3.0/drivers/net/tulip/pnic2.c -e98adf3b1828705884a0439665af12a4 linux-3.0/drivers/net/tulip/pnic.c -d932f7299e7e9f94c3e18b52505aaa11 linux-3.0/drivers/net/tulip/media.c -124c283bea696ddc4d85dc3de6623be8 linux-3.0/drivers/net/tulip/interrupt.c -62df737ae361fbf8322dd09294915230 linux-3.0/drivers/net/tulip/eeprom.c -ee54d0e48fabdccd563a0742f286a649 linux-3.0/drivers/net/tulip/dmfe.c -4c51a3c8b150a66c58e2d44687c4b50a linux-3.0/drivers/net/tulip/de4x5.h -b03577860313f1161f1d8a0bfcd5fa6d linux-3.0/drivers/net/tulip/de4x5.c -75d407a1c01b70fe31c176fad7b2351a linux-3.0/drivers/net/tulip/de2104x.c -deef0dcdea77a009a1e1b2220639bb81 linux-3.0/drivers/net/tulip/Makefile -57aa1a49fd643555859355cf8d4651cd linux-3.0/drivers/net/tulip/Kconfig -44fca3d1710e20f90283d4da6a953d86 linux-3.0/drivers/net/tulip/21142.c -5e464a7778d65f1933314c57985b05d0 linux-3.0/drivers/net/tsi108_eth.h -bdfa20c4975f1132cd3287cefe7d42ba linux-3.0/drivers/net/tsi108_eth.c -8d959850231a16586fa76461d7aaccd5 linux-3.0/drivers/net/tokenring/tmspci.c -7d86d2da6848f309ab0a275c02525fc6 linux-3.0/drivers/net/tokenring/tms380tr.h -31d104e33c32bfe49e86437588bb907d linux-3.0/drivers/net/tokenring/tms380tr.c -002d30e90c9f2e55eb4fcee55a638d65 linux-3.0/drivers/net/tokenring/smctr.h -b4676e88738562ce2791774f1cada06b linux-3.0/drivers/net/tokenring/smctr.c -d2580a5d41a403dbf064dad1f16ad5ca linux-3.0/drivers/net/tokenring/skisa.c -4a365711bd959501a6bcf980eb969219 linux-3.0/drivers/net/tokenring/proteon.c -ec87bd0de8cd13f2c31018b41adff119 linux-3.0/drivers/net/tokenring/olympic.h -229cd645b3a092c61b1c4467b6b39619 linux-3.0/drivers/net/tokenring/olympic.c -60a269255bc8456f651b697431631f39 linux-3.0/drivers/net/tokenring/madgemc.h -7765ac84d017fef8c86d3fc8af5f2404 linux-3.0/drivers/net/tokenring/madgemc.c -4fa992670bdeb2aac4d0db220680f0f3 linux-3.0/drivers/net/tokenring/lanstreamer.h -9ed11272f12b3db3d2e0d348d242c518 linux-3.0/drivers/net/tokenring/lanstreamer.c -32c4f1b7f089c977735e0136b2fec89c linux-3.0/drivers/net/tokenring/ibmtr.c -ccfbb4803efaf276d13abba986afbb6d linux-3.0/drivers/net/tokenring/abyss.h -87abc758b18e77ca66285626fcbb4db2 linux-3.0/drivers/net/tokenring/abyss.c -1761eb19bfa46a1428a3a2a9dbd414e5 linux-3.0/drivers/net/tokenring/Makefile -ca7c0ed05ff476a6bd5823c70550412e linux-3.0/drivers/net/tokenring/Kconfig -a95ae68cea06fa3ec66ad58cba14f6a9 linux-3.0/drivers/net/tokenring/3c359.h -7f7c0b5722719ce0de5b0eab76ce6228 linux-3.0/drivers/net/tokenring/3c359.c -3d616e78e0b331e4e645f25695ce4998 linux-3.0/drivers/net/tlan.h -3b561cfb417722e6095245279b88fbbf linux-3.0/drivers/net/tlan.c -93c4854cec620592db2228ac09d1da4e linux-3.0/drivers/net/tile/tilepro.c -4744865cadf385232d9740ff27bfff4c linux-3.0/drivers/net/tile/Makefile -cf001a6cb043e95612d8339bcac0394a linux-3.0/drivers/net/tg3.h -098b15b42f725a3ffd977fba10691345 linux-3.0/drivers/net/tg3.c -f8d548cc971dd33a1226c828f9a90cfd linux-3.0/drivers/net/tehuti.h -88b2b3695c731646eb51188467549382 linux-3.0/drivers/net/tehuti.c -48ea23c9b64de56d19cdfee64224de02 linux-3.0/drivers/net/tc35815.c -cb17318dea0ba2d374c451921f07dc4d linux-3.0/drivers/net/sunvnet.h -2f5ddc52bb20b504013dddb805eb9d6d linux-3.0/drivers/net/sunvnet.c -083666ae113c2ffe788a55b1a189668e linux-3.0/drivers/net/sunqe.h -b2574957d0a74b7543b60dfd6b02be7f linux-3.0/drivers/net/sunqe.c -92a62673350bf0a461b24bd117c5b219 linux-3.0/drivers/net/sunlance.c -8b8e9fe42934406e82d26edc06b1f28d linux-3.0/drivers/net/sunhme.h -4f7b1f0c9876634cdee1f5dfbacba89d linux-3.0/drivers/net/sunhme.c -ffd8592b74f0a952c5bde0cc36943b12 linux-3.0/drivers/net/sungem_phy.h -a2a26b9b76e29e4308d2ba037be761ee linux-3.0/drivers/net/sungem_phy.c -635185a0065ce9a651296a1bd4d7a8de linux-3.0/drivers/net/sungem.h -3cf469f6a726c33785a36de37468f45b linux-3.0/drivers/net/sungem.c -efd811cf8248dba62fb02e18991e2af9 linux-3.0/drivers/net/sundance.c -9ea44e48bfe497e83cd995aca620d016 linux-3.0/drivers/net/sunbmac.h -d9da23ba204a88dd236f2e32fbc7579b linux-3.0/drivers/net/sunbmac.c -a35e9aa63d3cd14ddc02879116ee83fe linux-3.0/drivers/net/sun3lance.c -800c17509a0e48f2748a0689d1a43453 linux-3.0/drivers/net/sun3_82586.h -2fde26ebbdc7df28a5fb69847b6d8a59 linux-3.0/drivers/net/sun3_82586.c -661e26ed65dae4df5e1590d94d40b2f5 linux-3.0/drivers/net/stnic.c -2f2082d42ef7f28f599fd121bb26aab9 linux-3.0/drivers/net/stmmac/stmmac_timer.h -afddfa4307da081e3f34869de3792681 linux-3.0/drivers/net/stmmac/stmmac_timer.c -3c213a40fffb9d9eac64779e3671f8f7 linux-3.0/drivers/net/stmmac/stmmac_mdio.c -26d8127f5fb3c42d413b63eaddf19ced linux-3.0/drivers/net/stmmac/stmmac_main.c -c206d64fb8d2e93161f0eb219e8634e1 linux-3.0/drivers/net/stmmac/stmmac_ethtool.c -f3baf850bccc6d863627d6900699b627 linux-3.0/drivers/net/stmmac/stmmac.h -b0cea0b47270dce34b1b40b7006d76c6 linux-3.0/drivers/net/stmmac/norm_desc.c -78b1bfc0e422d4c11698bc6a581690fb linux-3.0/drivers/net/stmmac/enh_desc.c -a61eccd6bf86e85d62f51dbdac545b57 linux-3.0/drivers/net/stmmac/dwmac_lib.c -2653d73a93d2f2d7ecdde6a0e3b9958f linux-3.0/drivers/net/stmmac/dwmac_dma.h -5600484681086a62ec08bc21027433b9 linux-3.0/drivers/net/stmmac/dwmac100_dma.c -08cedbd3ca16d449d2446ba616f2c985 linux-3.0/drivers/net/stmmac/dwmac100_core.c -598678c122097032bd3c969d8685338b linux-3.0/drivers/net/stmmac/dwmac1000_dma.c -77e7f097566e87e9666c89340e07f2e9 linux-3.0/drivers/net/stmmac/dwmac1000_core.c -0142bd07a0e3c3b0b7b6ff47a638f1b5 linux-3.0/drivers/net/stmmac/dwmac1000.h -0bb63553423680c991a476a0e1f94ac7 linux-3.0/drivers/net/stmmac/dwmac100.h -9b6fa4ffa5aea2f6c066e8bbe48c514b linux-3.0/drivers/net/stmmac/descs.h -b9ed49fb7b3e065cf392d3809e105664 linux-3.0/drivers/net/stmmac/common.h -ea38692d8ff3a61d90a0c4d3132b779e linux-3.0/drivers/net/stmmac/Makefile -3fe23129e0aca957166249715c11f671 linux-3.0/drivers/net/stmmac/Kconfig -71bacdefe39440e0513301d5bb880715 linux-3.0/drivers/net/starfire.c -17b39a188477651a786d48bd9802aa45 linux-3.0/drivers/net/spider_net_ethtool.c -6f66106ac8322f5103842e03735d0f7b linux-3.0/drivers/net/spider_net.h -c845ab5c73cbcf5aef137e2d5518de0f linux-3.0/drivers/net/spider_net.c -51fee96e6d14bc7be772aa95cca2d530 linux-3.0/drivers/net/sonic.h -9b844d4a0696178f3ec85bfef62d58c9 linux-3.0/drivers/net/sonic.c -7db10a3853cd8880705820b23685ef73 linux-3.0/drivers/net/sni_82596.c -7465f04facb2cf3090346a72cf040447 linux-3.0/drivers/net/smsc9420.h -1ac4f31e45f1be40cc07322347be2bb5 linux-3.0/drivers/net/smsc9420.c -26ba72f5b700e6d7002d89a3144d8917 linux-3.0/drivers/net/smsc911x.h -332ade8193da02b3bf56ec7a84bbeece linux-3.0/drivers/net/smsc911x.c -e33963fa3a35cc16a63cb550dac63781 linux-3.0/drivers/net/smc91x.h -111b50675b467a4eb0f3b36684f2b7af linux-3.0/drivers/net/smc91x.c -d45af78117de90fad8780033ec101762 linux-3.0/drivers/net/smc9194.h -a5b07773c7d74704cab673d157fdd676 linux-3.0/drivers/net/smc9194.c -67417e1b7612b25f4c0ed462e6e48530 linux-3.0/drivers/net/smc911x.h -10db89fe1fac3c36464edba23fc56576 linux-3.0/drivers/net/smc911x.c -710c32aebd2e2ac865d342ea84bf43e1 linux-3.0/drivers/net/smc-ultra32.c -7290db0c74487f35317f091fc1d79f55 linux-3.0/drivers/net/smc-ultra.c -7170a5fd5ae6cf3b4cede21a5bd53c12 linux-3.0/drivers/net/smc-mca.c -32deddcaa064737204f463510c8424da linux-3.0/drivers/net/slip.h -1f1db2c0548975ebaf995c8651a9199f linux-3.0/drivers/net/slip.c -f0bbff86aa0e15c2a48b5de816c036aa linux-3.0/drivers/net/slhc.c -f3ba899a9f4e29f8eefc01d4875ebf1c linux-3.0/drivers/net/sky2.h -6df88e9fcc3af1fb0ba3611920e4f6ab linux-3.0/drivers/net/sky2.c -2bc17affaa213cc69804c9abe154c696 linux-3.0/drivers/net/skge.h -09eaa99a42c8605069d21ac442661bcc linux-3.0/drivers/net/skge.c -da01e738625ce44b0b0211f3896a5aec linux-3.0/drivers/net/skfp/srf.c -87f39ea5a61e18341d71e6882f64b69c linux-3.0/drivers/net/skfp/smttimer.c -dd788df75b857b4c814ba167555fee40 linux-3.0/drivers/net/skfp/smtinit.c -80679c50a2fdeb57b45f3e84c18ef6d6 linux-3.0/drivers/net/skfp/smtdef.c -f157e3774a2b1ff84ce017c7a2f0b518 linux-3.0/drivers/net/skfp/smt.c -e7e28fd229a3fa977127f3e41e128e7b linux-3.0/drivers/net/skfp/skfddi.c -044c2ac8e3c37febfa25ed8da27bd08d linux-3.0/drivers/net/skfp/rmt.c -faaba8f77a376cf81e8e43113eb2a7dd linux-3.0/drivers/net/skfp/queue.c -2337ac92488da7950e5d0e54b321d45a linux-3.0/drivers/net/skfp/pmf.c -cd54d5ebf949c12f67dd8af2005358ff linux-3.0/drivers/net/skfp/pcmplc.c -6c96144aa24b049c2da86b5060ac71c3 linux-3.0/drivers/net/skfp/hwt.c -4519cd9903f8dd05d9bf2a08f55555f8 linux-3.0/drivers/net/skfp/hwmtm.c -20eb889c1355b26da412723c6ea6a982 linux-3.0/drivers/net/skfp/h/types.h -2dd59593276fb340123aad8eb98f10f9 linux-3.0/drivers/net/skfp/h/targetos.h -f3417911830a29c61acd8c876206cb97 linux-3.0/drivers/net/skfp/h/targethw.h -678d5de32d62beedc71dd1793e29be05 linux-3.0/drivers/net/skfp/h/supern_2.h -86d3361a1133a4ebb768705596936d21 linux-3.0/drivers/net/skfp/h/smtstate.h -a65896001dbe7d1776379e8ea7259cb5 linux-3.0/drivers/net/skfp/h/smt_p.h -780dd66e85997c0af071588414694e41 linux-3.0/drivers/net/skfp/h/smt.h -53dce9a75b35311e4164e06cf94e5804 linux-3.0/drivers/net/skfp/h/smc.h -c817a21807b6a7492b648bce701cedc9 linux-3.0/drivers/net/skfp/h/skfbiinc.h -8b0e624b5747da35758a088f9f2790bb linux-3.0/drivers/net/skfp/h/skfbi.h -74f6551855d24fa76a82011a0e256f30 linux-3.0/drivers/net/skfp/h/sba_def.h -df1ae5de23d947376f7cdb0c16addfb9 linux-3.0/drivers/net/skfp/h/sba.h -6c9e4723a11569233778cd5f6b4d3344 linux-3.0/drivers/net/skfp/h/osdef1st.h -a9010ddd6dbdbb97a8d97c097d8795a3 linux-3.0/drivers/net/skfp/h/mbuf.h -c8d94a735c35b5a38148ffcb4bb0e195 linux-3.0/drivers/net/skfp/h/hwmtm.h -16446785ef993620f2f6121138a1706a linux-3.0/drivers/net/skfp/h/fplustm.h -d064ac68a19ad8e1ec5e0eea868ed294 linux-3.0/drivers/net/skfp/h/fddimib.h -ce07dc17547e0a549cd1805274660f69 linux-3.0/drivers/net/skfp/h/fddi.h -5f4b40ac0981ffd3543664fd5bfc02a6 linux-3.0/drivers/net/skfp/h/cmtdef.h -e2658c205de29aef82fe74a5c0645b1c linux-3.0/drivers/net/skfp/fplustm.c -33930db51e04b5ba210d5f6365534132 linux-3.0/drivers/net/skfp/ess.c -26ba98a713cc2b3fc02b51fb814a8884 linux-3.0/drivers/net/skfp/ecm.c -cf73dac7f59e1e2306bcd3bb3371b8cb linux-3.0/drivers/net/skfp/drvfbi.c -99a942b33f347082c71af8f427fafbf1 linux-3.0/drivers/net/skfp/cfm.c -85974e743b3880fe241c1681e327b40e linux-3.0/drivers/net/skfp/Makefile -d1452625899015c547e4aa558296e5dd linux-3.0/drivers/net/sis900.h -dade9c09a2827a4295355a85a280003a linux-3.0/drivers/net/sis900.c -9fea4f1f39a30f97a0897d9532b46529 linux-3.0/drivers/net/sis190.c -de0946f4dffe5b0d3ad82a74dc0d3240 linux-3.0/drivers/net/sh_eth.h -53a64698978f7721458d7f1ae5f7bf37 linux-3.0/drivers/net/sh_eth.c -0abee9dc8bf2451edd047a470fd37c90 linux-3.0/drivers/net/sgiseeq.h -ee940f76be21f6384457c451dd4c1ba5 linux-3.0/drivers/net/sgiseeq.c -ef19b125232f5bb654384df48cda93a3 linux-3.0/drivers/net/sfc/workarounds.h -8f53a7783c2de1745be156d1cef3cf60 linux-3.0/drivers/net/sfc/txc43128_phy.c -1c2bcec7f378e462952d47a2b45e36b1 linux-3.0/drivers/net/sfc/tx.c -de9a855c19ea7d6f858a5c0a58cd726d linux-3.0/drivers/net/sfc/tenxpress.c -d4bfed701eecede25e6531d00ea109c3 linux-3.0/drivers/net/sfc/spi.h -2875bf48229671ae0bc2d7d3da7e3315 linux-3.0/drivers/net/sfc/siena.c -7132a3b53c3189ce4672cab2ed66f514 linux-3.0/drivers/net/sfc/selftest.h -d3f5c63174d80e69945e4f318e72413c linux-3.0/drivers/net/sfc/selftest.c -8531e95efb9412492d6453a2ace57cf3 linux-3.0/drivers/net/sfc/rx.c -37b5fa97091e45a6a9751c68656856bd linux-3.0/drivers/net/sfc/regs.h -1a758466c0350e9d5ffb985d4431475d linux-3.0/drivers/net/sfc/qt202x_phy.c -fd167b85392759cafda9ea71702a6241 linux-3.0/drivers/net/sfc/phy.h -2dd30f054aad7d544ddbe35523308781 linux-3.0/drivers/net/sfc/nic.h -50748543098cca0316823714b94c1c69 linux-3.0/drivers/net/sfc/nic.c -878f64452d843f4eec88891b66af9a7a linux-3.0/drivers/net/sfc/net_driver.h -cd6a43cf0819df8786918c4ed0b5d309 linux-3.0/drivers/net/sfc/mtd.c -cb07ef776dba243cb5465624a175fb53 linux-3.0/drivers/net/sfc/mdio_10g.h -fca0509eacb256815cd32ff954321d8b linux-3.0/drivers/net/sfc/mdio_10g.c -2dc2d2216e3eb65348a5415a574b0240 linux-3.0/drivers/net/sfc/mcdi_phy.c -ea7365ecabbe1feafc88950a6bd45481 linux-3.0/drivers/net/sfc/mcdi_pcol.h -3bc12415fe6122675a8faeece873b8fc linux-3.0/drivers/net/sfc/mcdi_mac.c -9ca1702fc8054084637870779d39bcca linux-3.0/drivers/net/sfc/mcdi.h -a5d1f8cbecf55e7592357d758461b3d3 linux-3.0/drivers/net/sfc/mcdi.c -03ff79f2f7f40406d0cc6aa7984d92ac linux-3.0/drivers/net/sfc/mac.h -990fb76750afa08816314e94518a9e7d linux-3.0/drivers/net/sfc/io.h -de861537305f8725dfb0343ea669427b linux-3.0/drivers/net/sfc/filter.h -c8801d99245644a0c21dd0cca6689b04 linux-3.0/drivers/net/sfc/filter.c -67ce16d394e1351d8e9ee48e1cd76ed5 linux-3.0/drivers/net/sfc/falcon_xmac.c -acd27b9628975c9d9c2239bd47f57c07 linux-3.0/drivers/net/sfc/falcon_boards.c -b8ea3d729e4e51980c659ee3a1b2cb34 linux-3.0/drivers/net/sfc/falcon.c -08551fd6cae836732ddf245a38c5929e linux-3.0/drivers/net/sfc/ethtool.c -075ee861b4615f4c5edafd6042aba301 linux-3.0/drivers/net/sfc/enum.h -98e7594d5c474aae78dd48fd534bbaa7 linux-3.0/drivers/net/sfc/efx.h -65ce8d396f203ca3cef2c82953c8922c linux-3.0/drivers/net/sfc/efx.c -107bc9c531e643f38fb7dbfdb11ec85b linux-3.0/drivers/net/sfc/bitfield.h -292292f4b1125bd5b667de236c0f3fe9 linux-3.0/drivers/net/sfc/Makefile -abf43442df7c4c5cc46ce11dc979a829 linux-3.0/drivers/net/sfc/Kconfig -d0e56f803ed6e4e1ee2376d696b03eaf linux-3.0/drivers/net/seeq8005.h -8caeb0fa2f9c03e4cff32785600adea2 linux-3.0/drivers/net/seeq8005.c -89e9ba8119894ba4c905bf091629ed81 linux-3.0/drivers/net/sc92031.c -031484c6be2441ea37afa494f36b0482 linux-3.0/drivers/net/sb1250-mac.c -63bf4e3a4861d0b84bc0a406a7f9c1a6 linux-3.0/drivers/net/sb1000.c -d6c06ce6861ee4f7d571e62a322f1206 linux-3.0/drivers/net/s6gmac.c -800bce25cb92f37b79e9bb2dcd438462 linux-3.0/drivers/net/s2io.h -aad561bfa458ad5a1edc404bb7284289 linux-3.0/drivers/net/s2io.c -11e2129d0d802f463ba51f428cce7909 linux-3.0/drivers/net/s2io-regs.h -9499d2074ce7beef23e9a05e75c24634 linux-3.0/drivers/net/rrunner.h -7d7c074c374ee8ba9d497ad4058f790d linux-3.0/drivers/net/rrunner.c -90087b0f6fe3f398fee0803b4c3f3512 linux-3.0/drivers/net/rionet.c -15b59c7764620256a9cb638f81ed9719 linux-3.0/drivers/net/r8169.c -1b4fcbdebeba632d73bf4607028c8e04 linux-3.0/drivers/net/r6040.c -6ded63f0dcd790b1c2861bada2b4e270 linux-3.0/drivers/net/qlge/qlge_mpi.c -4585d276fc8fd1926f91f0772a899f4d linux-3.0/drivers/net/qlge/qlge_main.c -ca2bb9e18f84734acd515d530f876746 linux-3.0/drivers/net/qlge/qlge_ethtool.c -f807c0d614b65bdea23242556fe59487 linux-3.0/drivers/net/qlge/qlge_dbg.c -dc2d5ad13211292488c168a897ffed59 linux-3.0/drivers/net/qlge/qlge.h -55e2f8b2350fae04fce6af309fff1845 linux-3.0/drivers/net/qlge/Makefile -250d9bc46cbfa9f00775b441e3f49b56 linux-3.0/drivers/net/qlcnic/qlcnic_main.c -b41e045c1b88fff648033ff5e0713a7a linux-3.0/drivers/net/qlcnic/qlcnic_init.c -d1314bef6475bd30924a129932ab4567 linux-3.0/drivers/net/qlcnic/qlcnic_hw.c -5365aec86bbc1747d4bcd08e57a41228 linux-3.0/drivers/net/qlcnic/qlcnic_hdr.h -16c5d9dd3285f8b16972c2e002764923 linux-3.0/drivers/net/qlcnic/qlcnic_ethtool.c -819c08c80cd775d439b9439eeb5d3cbf linux-3.0/drivers/net/qlcnic/qlcnic_ctx.c -57b85d990ecb084d701f42fa62800ae7 linux-3.0/drivers/net/qlcnic/qlcnic.h -a4f63106bc53260992be3f7530d0588a linux-3.0/drivers/net/qlcnic/Makefile -de8aadd2810424c18459cd823d657743 linux-3.0/drivers/net/qla3xxx.h -cd7e185644d58e6bec6f752b22dd4f5a linux-3.0/drivers/net/qla3xxx.c -08060387bffcc66c928c8eb2b476cc0b linux-3.0/drivers/net/pxa168_eth.c -15a43f6dcfc5a6be9312e183a8a1f08a linux-3.0/drivers/net/ps3_gelic_wireless.h -75035f92990616e8ab358d35d3d8d4c7 linux-3.0/drivers/net/ps3_gelic_wireless.c -f6db9e7313de74252cc3dc4a98ee7758 linux-3.0/drivers/net/ps3_gelic_net.h -a1bfa313facdc6cfb845d5d4963aaa59 linux-3.0/drivers/net/ps3_gelic_net.c -8140a510d68a1e6f4074577cf2e64a31 linux-3.0/drivers/net/pptp.c -853966ed9be043d85828bfd93e0e21a3 linux-3.0/drivers/net/pppox.c -0592f696f692a283cfa40e18b108a033 linux-3.0/drivers/net/pppoe.c -313fac5c3b3caa2fc19ac778e8d77337 linux-3.0/drivers/net/ppp_synctty.c -cd9f6530ae328f01a69c26a482f40100 linux-3.0/drivers/net/ppp_mppe.h -e506a746792c169c42c474eebd89b3ed linux-3.0/drivers/net/ppp_mppe.c -572fa08be52102b22b733ea14e3654b1 linux-3.0/drivers/net/ppp_generic.c -c4199fb6b43a1714f38634be4a1bdfaa linux-3.0/drivers/net/ppp_deflate.c -85d7e6392215c5405ab27ff5728e208c linux-3.0/drivers/net/ppp_async.c -96c210758e50776766089d9ca04eb55b linux-3.0/drivers/net/plip.c -0b336cdd560609ea82859955767bbc56 linux-3.0/drivers/net/phy/vitesse.c -e68119a656d05c0dea68b2a9c7a36492 linux-3.0/drivers/net/phy/ste10Xp.c -f08c85025947b52563c34bd2c5a75bcb linux-3.0/drivers/net/phy/smsc.c -11f4344a4f500525875a63bed5d9baf7 linux-3.0/drivers/net/phy/realtek.c -a96986c794036e1f80707a05a7a65354 linux-3.0/drivers/net/phy/qsemi.c -afd82f62383168370baea8e1a7d6cdbf linux-3.0/drivers/net/phy/phy_device.c -4f0fd3b7c0a515c7ab205e88fb8b6070 linux-3.0/drivers/net/phy/phy.c -eec2600e2896f99b99d47c299a9d980e linux-3.0/drivers/net/phy/national.c -a280416c63cdfbaa4b90388f52c86a53 linux-3.0/drivers/net/phy/micrel.c -bf33a059a5dcd387aa5247fdb00f8fc6 linux-3.0/drivers/net/phy/mdio_bus.c -4cefb569d16e005b69e493348d6b80d9 linux-3.0/drivers/net/phy/mdio-octeon.c -f0195d176741a30fc81cf338b7c4810f linux-3.0/drivers/net/phy/mdio-gpio.c -254c84b6dfb7e0daf2a206d6692966fc linux-3.0/drivers/net/phy/mdio-bitbang.c -a76d3da1ce5b8cd8a591f8c1d7df543f linux-3.0/drivers/net/phy/marvell.c -6b9df9c7a327d0b325f7ccc48bfcd7b3 linux-3.0/drivers/net/phy/lxt.c -913a95741ca3a18d052afde2727ad736 linux-3.0/drivers/net/phy/icplus.c -d87900c457ebe33a85ee38e5bd7b7673 linux-3.0/drivers/net/phy/fixed.c -9c24b6c4501da010d61e17d088637feb linux-3.0/drivers/net/phy/et1011c.c -a5f77d5f2f50911e182ae93f183d12fd linux-3.0/drivers/net/phy/dp83640_reg.h -a8358479f547443d87cfcd12d5fb4fcf linux-3.0/drivers/net/phy/dp83640.c -7c587c3dd50e73ca195bdff1108cdeaf linux-3.0/drivers/net/phy/davicom.c -33ddc214e6f6a1cd195f640c60fb8867 linux-3.0/drivers/net/phy/cicada.c -64bfbe62ab71ad21f01481493fe34936 linux-3.0/drivers/net/phy/broadcom.c -113c755e5542dbdd82f879d89390210c linux-3.0/drivers/net/phy/bcm63xx.c -8b58c6cd97aad29a40ec72248898d53f linux-3.0/drivers/net/phy/Makefile -5055f22e8acdc0452e7193a3275986f2 linux-3.0/drivers/net/phy/Kconfig -f2ec11b6b2f8c3ebf25274a306e87522 linux-3.0/drivers/net/pcnet32.c -5a249340d603e71fd620cd3bade4cd5b linux-3.0/drivers/net/pcmcia/xirc2ps_cs.c -1cfb5dab0d1f98e65e1286a712ada4ab linux-3.0/drivers/net/pcmcia/smc91c92_cs.c -af4cf3ee9e3a4620400e9659b4015d05 linux-3.0/drivers/net/pcmcia/pcnet_cs.c -16330b4259d23ec73e11222b4b3462b1 linux-3.0/drivers/net/pcmcia/nmclan_cs.c -444e20e9ae206065380217126b5227e2 linux-3.0/drivers/net/pcmcia/ibmtr_cs.c -8366672767b1335b497ffea3e8b300fa linux-3.0/drivers/net/pcmcia/fmvj18x_cs.c -185f69301595a70dec464a82c85a26b8 linux-3.0/drivers/net/pcmcia/com20020_cs.c -89cc31b6910001547dec1a62d3eb03ff linux-3.0/drivers/net/pcmcia/axnet_cs.c -734c34655a6f05526c3629e5a010e339 linux-3.0/drivers/net/pcmcia/Makefile -be932a8124bd8b59b50afb9fa22f7860 linux-3.0/drivers/net/pcmcia/Kconfig -8d6a126f703bd9f1634aff2c6d59897d linux-3.0/drivers/net/pcmcia/3c589_cs.c -8750443b35472d9c4d9cdf7184e93632 linux-3.0/drivers/net/pcmcia/3c574_cs.c -2f879a2b653dcbfdd5135a9668df5a20 linux-3.0/drivers/net/pci-skeleton.c -fba44b62427fd6ced56aed16d105823e linux-3.0/drivers/net/pch_gbe/pch_gbe_phy.h -11dd261002059279e25dda1db254f9f3 linux-3.0/drivers/net/pch_gbe/pch_gbe_phy.c -39920da208d71c3d7f6a1af88c0e579d linux-3.0/drivers/net/pch_gbe/pch_gbe_param.c -d783c7f0e9087d0889ec36cb5a6ef22f linux-3.0/drivers/net/pch_gbe/pch_gbe_main.c -bb913970210af59fa4992f6ae5e6f436 linux-3.0/drivers/net/pch_gbe/pch_gbe_ethtool.c -ced64c88d59e47608ab76d2777d19bdc linux-3.0/drivers/net/pch_gbe/pch_gbe_api.h -46335253aeb0b4ecdc2a9a5a4d6516a4 linux-3.0/drivers/net/pch_gbe/pch_gbe_api.c -9a7402ce779c123d5e3448891f181297 linux-3.0/drivers/net/pch_gbe/pch_gbe.h -de8b9c0a0a722b273841ac39e9ef8866 linux-3.0/drivers/net/pch_gbe/Makefile -abdea91414ee04140110713d8849c436 linux-3.0/drivers/net/pasemi_mac_ethtool.c -6f36c1ed7a69186e3038b467d77f6b2d linux-3.0/drivers/net/pasemi_mac.h -4b6cc378a0474ec9204653eb5f702c7f linux-3.0/drivers/net/pasemi_mac.c -2a13cc6c41e53a1e2a6a9d18ff15d79f linux-3.0/drivers/net/octeon/octeon_mgmt.c -45854e10455a37fedbf8c426a4cb5e97 linux-3.0/drivers/net/octeon/Makefile -87a7f58edcf96c8dc810a3488e3918a4 linux-3.0/drivers/net/octeon/Kconfig -27d3d6542369ed1d6fa528cf3053a636 linux-3.0/drivers/net/ns83820.c -fd5d666ad42276acd9070abb189114b6 linux-3.0/drivers/net/niu.h -04e52259b996b198aa0de31707448020 linux-3.0/drivers/net/niu.c -a3096d11874b0c5c4c1f9a5f2bb8cf5c linux-3.0/drivers/net/ni65.h -2de3947758192c8ed3d439e4adaa72ea linux-3.0/drivers/net/ni65.c -34dccc2edc01593290474da5bb32c201 linux-3.0/drivers/net/ni52.h -ea65554a5fed12356bf28f100ae89cf8 linux-3.0/drivers/net/ni52.c -87345082f28488f83542f2f4796e72ac linux-3.0/drivers/net/ni5010.h -8f3a23d9e263c9ab9051746bdb5a5164 linux-3.0/drivers/net/ni5010.c -0ceeb7f8b19a9d062020d3691f0594c3 linux-3.0/drivers/net/netxen/netxen_nic_main.c -7bedbd82ee2a2aec9b08840b3d9f4b96 linux-3.0/drivers/net/netxen/netxen_nic_init.c -1902e90e7a196bf4aacbea3bf3e22294 linux-3.0/drivers/net/netxen/netxen_nic_hw.h -329388c0ce2e1c8f1acc9dfb1045f319 linux-3.0/drivers/net/netxen/netxen_nic_hw.c -ed79d536c9633ebffeaf90027ff4f27e linux-3.0/drivers/net/netxen/netxen_nic_hdr.h -77d4992f33835596305c62a8db996abd linux-3.0/drivers/net/netxen/netxen_nic_ethtool.c -0bfe80b79962c6ca5ff33d5aa4f0566b linux-3.0/drivers/net/netxen/netxen_nic_ctx.c -c8401c8f4c59d74e2509d7326ed51ed5 linux-3.0/drivers/net/netxen/netxen_nic.h -19d1888dd40dea17f4bf247ac69eddd6 linux-3.0/drivers/net/netxen/Makefile -de7d158cc8d65661dfe69ac4dbb29b0e linux-3.0/drivers/net/netx-eth.c -48f50f9a71396a18b004cd4336828be9 linux-3.0/drivers/net/netconsole.c -8613c7a6797945a75d2fbfcb98db784f linux-3.0/drivers/net/ne3210.c -4143cfaa13920d9fb67b5a034d965bf7 linux-3.0/drivers/net/ne2k-pci.c -acf167856dab98cf58317d48a5e44fc8 linux-3.0/drivers/net/ne2.c -7ffb674faf38085d2cede4b84086239c linux-3.0/drivers/net/ne.c -517dc874a5d1b5cd87c2c5583ffae4c4 linux-3.0/drivers/net/ne-h8300.c -205b2d9e9dc3741d76648c0d7f9a39cf linux-3.0/drivers/net/natsemi.c -fe8a89c26408a8676366263ddaa6b815 linux-3.0/drivers/net/myri_sbus.h -26a9b41b096953415efb8501c115a6c8 linux-3.0/drivers/net/myri_sbus.c -4a342a014579dbe9684f0874eb757ffb linux-3.0/drivers/net/myri10ge/myri10ge_mcp_gen_header.h -881b4e512266118031e15974024d45ab linux-3.0/drivers/net/myri10ge/myri10ge_mcp.h -204f3b7c169e3df39cc64473e84264ca linux-3.0/drivers/net/myri10ge/myri10ge.c -691454ce1da9face74e05fb22e1d4a4b linux-3.0/drivers/net/myri10ge/Makefile -93b355be760a801c1a5b204211098216 linux-3.0/drivers/net/mvme147.c -91d1834ee591f2b97f51ce624d02ae3e linux-3.0/drivers/net/mv643xx_eth.c -750f38517b75ed8883cb4d2963ce260d linux-3.0/drivers/net/mlx4/srq.c -552d8fec3be122486b36e6e5094bd8f8 linux-3.0/drivers/net/mlx4/sense.c -0be4b0663f324a012f491ef1d9c56065 linux-3.0/drivers/net/mlx4/reset.c -3ad51a3603b685805ed43c33340d04d3 linux-3.0/drivers/net/mlx4/qp.c -944b70349669a26a18771307fc039648 linux-3.0/drivers/net/mlx4/profile.c -68bd25443864f3d5e7531d779da77210 linux-3.0/drivers/net/mlx4/port.c -b81dff108ac30f19f20bd44e506ee71c linux-3.0/drivers/net/mlx4/pd.c -26d1cb12d89220377a1ac8f3af079285 linux-3.0/drivers/net/mlx4/mr.c -35f0c25924aeaece6a65f0cb51e761cd linux-3.0/drivers/net/mlx4/mlx4_en.h -75f612547a78f8849d4faccb44f2033a linux-3.0/drivers/net/mlx4/mlx4.h -cdc4e0f244bd3ce1a135e0c75605199a linux-3.0/drivers/net/mlx4/mcg.c -ae1f742e4ccf53bb7592eec12dc7f739 linux-3.0/drivers/net/mlx4/main.c -c90e0b5b341514902a9fe48a09d8b1ff linux-3.0/drivers/net/mlx4/intf.c -ba7b7139b950b1775975922e82089d7a linux-3.0/drivers/net/mlx4/icm.h -444157b86a3b826b41efd80e3b6408fe linux-3.0/drivers/net/mlx4/icm.c -260c5d8685bb4465ee724f41d049db06 linux-3.0/drivers/net/mlx4/fw.h -8bda52f5af02df2faf38a53616f8878a linux-3.0/drivers/net/mlx4/fw.c -2ff700da5a33a90e5fd2b5d9e7b464b0 linux-3.0/drivers/net/mlx4/eq.c -20e4734b0968de48be432f3876dcf557 linux-3.0/drivers/net/mlx4/en_tx.c -8a70cc1431931fd52b33b18a8c21fd82 linux-3.0/drivers/net/mlx4/en_selftest.c -896546a58b8fa241d15df14c199e723e linux-3.0/drivers/net/mlx4/en_rx.c -177efbb6f5d6524c07f4891de7cec893 linux-3.0/drivers/net/mlx4/en_resources.c -6ff023749543b15e34214a7db8ebbd17 linux-3.0/drivers/net/mlx4/en_port.h -864a321b372b529f115c5bd0720d2405 linux-3.0/drivers/net/mlx4/en_port.c -687b2c900f0c26112fe131ab4ab52162 linux-3.0/drivers/net/mlx4/en_netdev.c -c4845fc39f054a2a8323207da97188a8 linux-3.0/drivers/net/mlx4/en_main.c -b76bb8ed3554838d9174cfed6531784a linux-3.0/drivers/net/mlx4/en_ethtool.c -3e2fbb85ce566b99b635e3ee97ccafb8 linux-3.0/drivers/net/mlx4/en_cq.c -f656f48c46dc8d21b77c614670ac5469 linux-3.0/drivers/net/mlx4/cq.c -e35294ec672e0df14bbe99051352292b linux-3.0/drivers/net/mlx4/cmd.c -f20f82021328e4462d635ea745764ff5 linux-3.0/drivers/net/mlx4/catas.c -5324a6c68f0f2477b777fe2b80640c7e linux-3.0/drivers/net/mlx4/alloc.c -2af86dc5f76d5ab62bf7a25411cd7af2 linux-3.0/drivers/net/mlx4/Makefile -88187a4a4959151f9f50808235ae6ba8 linux-3.0/drivers/net/mipsnet.c -fdddb79a3337e079e12b18b73900c92c linux-3.0/drivers/net/mii.c -c96ac17828b770d4b200e3bd41c7a761 linux-3.0/drivers/net/meth.h -981ac8cb56006752755294db990921c2 linux-3.0/drivers/net/meth.c -bba0b22ab9162ee8ffcfc44b0b39d174 linux-3.0/drivers/net/mdio.c -3194631f747dc8701e483981a29a72c2 linux-3.0/drivers/net/macvtap.c -16856160c836074af9c3b8086867bfd0 linux-3.0/drivers/net/macvlan.c -f435518eae43f4dad1181c27a6db6bdc linux-3.0/drivers/net/macsonic.c -251a2ba27ab927a8f416983feb77fe47 linux-3.0/drivers/net/macmace.c -466a8dc419500c922d0ce91e808a3f66 linux-3.0/drivers/net/mace.h -2c12d3ca15942bbaab0d8cfe0699ceaa linux-3.0/drivers/net/mace.c -fa0f25d9151602bdcbbc0efb4362d624 linux-3.0/drivers/net/macb.h -d9f7d05cf1d0f76cb793c70e761c676e linux-3.0/drivers/net/macb.c -3d5b786056134d4dbd0ed2875a51548c linux-3.0/drivers/net/mac89x0.c -afffcd856b38fa0c55a4820623323038 linux-3.0/drivers/net/mac8390.c -8ef437f8842e6efe234e51d365b2abca linux-3.0/drivers/net/lp486e.c -4687071265872ce9957e50f60ca15f95 linux-3.0/drivers/net/loopback.c -9878e51a2cb6ef75be3872e2371140fc linux-3.0/drivers/net/lne390.c -4d18623eeae3cf2b656e857849d907a1 linux-3.0/drivers/net/ll_temac_mdio.c -dcda69b4a1da5f6cb1dded9fa9944a82 linux-3.0/drivers/net/ll_temac_main.c -19fd469dd74adca30341c05ba81616f0 linux-3.0/drivers/net/ll_temac.h -54ac43eca1bf35b12e3389a6501235ef linux-3.0/drivers/net/lib8390.c -8e1f984d8fc82a64527099ba58a469c0 linux-3.0/drivers/net/lib82596.c -4eef8973c7ed98271a646108a5d02257 linux-3.0/drivers/net/lasi_82596.c -94db74cfbd2e27004ad350a9cd6258c5 linux-3.0/drivers/net/lantiq_etop.c -9809a58dd598513aaad720bf543f3b57 linux-3.0/drivers/net/lance.c -a874edb87542b747d6bad7dd0b63b9d9 linux-3.0/drivers/net/ksz884x.c -44c4b9de79110cff8d22863e114b4101 linux-3.0/drivers/net/ks8851_mll.c -9308dd6780956f7136b3e984084884e9 linux-3.0/drivers/net/ks8851.h -c69f1b3406a38c116fd3c4ddd6f3d6cb linux-3.0/drivers/net/ks8851.c -427aeedd0b95d89664d648e6e6609f19 linux-3.0/drivers/net/ks8842.c -7fa4130b4c1f9fd0a8ff142f419f8d9b linux-3.0/drivers/net/korina.c -b254d53acf70ed9d04f5c3c7e8ea622d linux-3.0/drivers/net/jme.h -1462f320c8f86a0eb53bc97f27d171bf linux-3.0/drivers/net/jme.c -4bcbd5c48085fd6402009c2f30409c18 linux-3.0/drivers/net/jazzsonic.c -5831cfb599ed97f7fc0c29ef713fc363 linux-3.0/drivers/net/ixp2000/pm3386.h -f1cf3aac6684a3b26dff541ac284a399 linux-3.0/drivers/net/ixp2000/pm3386.c -1cc0ff89fc891b82268cdbb21893b8c0 linux-3.0/drivers/net/ixp2000/ixpdev_priv.h -6eae478a36b28f4f022626f1f20ff1b5 linux-3.0/drivers/net/ixp2000/ixpdev.h -33922d2be57d4cc9282f5f5c5a622c34 linux-3.0/drivers/net/ixp2000/ixpdev.c -9729f6850d571450701775ecf5f1d27f linux-3.0/drivers/net/ixp2000/ixp2400_tx.ucode -c79a269763d2d2b6771b29b54a12fe35 linux-3.0/drivers/net/ixp2000/ixp2400_tx.uc -9180045778af5b2e94b6fa18ce28de99 linux-3.0/drivers/net/ixp2000/ixp2400_rx.ucode -82170e03e754b5c9b95e5b751b1c8cdd linux-3.0/drivers/net/ixp2000/ixp2400_rx.uc -fbeb7add7ddbbc197d0c410ffa5a3770 linux-3.0/drivers/net/ixp2000/ixp2400-msf.h -54dbf6dd152152b6616607c5de89f708 linux-3.0/drivers/net/ixp2000/ixp2400-msf.c -b0eca364880331c64383643ddd804cd6 linux-3.0/drivers/net/ixp2000/enp2611.c -ed400cab3618da16f594c87ac60614cc linux-3.0/drivers/net/ixp2000/caleb.h -bb2f8e2f8959cd5bff88cbdc0c1591d7 linux-3.0/drivers/net/ixp2000/caleb.c -95e8d1fafe2a37735004326d54f890b2 linux-3.0/drivers/net/ixp2000/Makefile -d9d1b0436b929f093419dea6b837da73 linux-3.0/drivers/net/ixp2000/Kconfig -124d72da970db25545dac00272495bca linux-3.0/drivers/net/ixgbevf/vf.h -7c06c3625c375d1c1fcc8c7a949567d5 linux-3.0/drivers/net/ixgbevf/vf.c -6db32107dc0f587056486c454ceb0216 linux-3.0/drivers/net/ixgbevf/regs.h -35fc2c02e2e9401ba24338d9d0dff48d linux-3.0/drivers/net/ixgbevf/mbx.h -693c1106e14cc4bf3dd9f5f821924d65 linux-3.0/drivers/net/ixgbevf/mbx.c -73c1a61eab2bb36fe09188b8bee9c4bf linux-3.0/drivers/net/ixgbevf/ixgbevf_main.c -0fed570530d85051e80819bf67ba359d linux-3.0/drivers/net/ixgbevf/ixgbevf.h -0269354e8d3067362ef1faf10b519cd7 linux-3.0/drivers/net/ixgbevf/ethtool.c -ec8ac0983d90cac619aa4212dba777eb linux-3.0/drivers/net/ixgbevf/defines.h -4f92a823836654256a06c28a66180b90 linux-3.0/drivers/net/ixgbevf/Makefile -7b9a98b046db77c3491e09c1b1603272 linux-3.0/drivers/net/ixgbe/ixgbe_x540.c -e8550c363bd27ef92eea40d3ba54f8fb linux-3.0/drivers/net/ixgbe/ixgbe_type.h -7f84effa0e507c467741f84d68dc4803 linux-3.0/drivers/net/ixgbe/ixgbe_sriov.h -1d13136600801fd7926c52b2d026a8de linux-3.0/drivers/net/ixgbe/ixgbe_sriov.c -ddf555244714bc4460c80ea053c54476 linux-3.0/drivers/net/ixgbe/ixgbe_phy.h -9874d9cbc7d5e165c6405b1a76d4960e linux-3.0/drivers/net/ixgbe/ixgbe_phy.c -4db874fac215de49818f2979dcc9e38d linux-3.0/drivers/net/ixgbe/ixgbe_mbx.h -2e7e8e713dc6072aef637e031abf00c2 linux-3.0/drivers/net/ixgbe/ixgbe_mbx.c -8baebbf0b5b205922a6def46c7bf9674 linux-3.0/drivers/net/ixgbe/ixgbe_main.c -4dee7d6d34d401314e4ba109ee724dec linux-3.0/drivers/net/ixgbe/ixgbe_fcoe.h -37e1a3ace0260c02de223cbac1325cd1 linux-3.0/drivers/net/ixgbe/ixgbe_fcoe.c -92190d0e6731e4bb3d0ea6178df1bc40 linux-3.0/drivers/net/ixgbe/ixgbe_ethtool.c -8e58fe1735ae2111da8c9de57364940b linux-3.0/drivers/net/ixgbe/ixgbe_dcb_nl.c -85e9f1827351509bd4a986d188ce64f4 linux-3.0/drivers/net/ixgbe/ixgbe_dcb_82599.h -0b306f1d351c16be655b7f590de29d67 linux-3.0/drivers/net/ixgbe/ixgbe_dcb_82599.c -1e19732732af6eeec96f6efd8168c171 linux-3.0/drivers/net/ixgbe/ixgbe_dcb_82598.h -9ae2ea8778dbb272fd5ea83773853525 linux-3.0/drivers/net/ixgbe/ixgbe_dcb_82598.c -7443921561e614a72e2e0ec0713688e0 linux-3.0/drivers/net/ixgbe/ixgbe_dcb.h -59629e6a757e7954d1cab7f51d2e6b96 linux-3.0/drivers/net/ixgbe/ixgbe_dcb.c -a8203d9b24ea8ab05735f2c57f2c8411 linux-3.0/drivers/net/ixgbe/ixgbe_common.h -7a63f3032174e478ce90c0086d69b438 linux-3.0/drivers/net/ixgbe/ixgbe_common.c -01d573a35efb17301e64170c2a021e0f linux-3.0/drivers/net/ixgbe/ixgbe_82599.c -f36b928fdc7f34f8a64cf500336fb9d1 linux-3.0/drivers/net/ixgbe/ixgbe_82598.c -b25582e0d3388386b8111390250c3c52 linux-3.0/drivers/net/ixgbe/ixgbe.h -15983618b21c71ff78fffb6ee45b4d6a linux-3.0/drivers/net/ixgbe/Makefile -09811d6e1d1cc6e6780bac68f2909a10 linux-3.0/drivers/net/ixgb/ixgb_param.c -fe9adc36fb69b29839416101ccd0e0e1 linux-3.0/drivers/net/ixgb/ixgb_osdep.h -fafb1b6be779a1f5db3a25a2e55643d4 linux-3.0/drivers/net/ixgb/ixgb_main.c -6dac57ceafcc764d07602d8e5da114ff linux-3.0/drivers/net/ixgb/ixgb_ids.h -f642e3795d6de6a0486bd230f5bfc88b linux-3.0/drivers/net/ixgb/ixgb_hw.h -d4f563f87787675a4d9d8b78f42177f1 linux-3.0/drivers/net/ixgb/ixgb_hw.c -b7bd7cb57aca1cde2c4b7c3327ecbbce linux-3.0/drivers/net/ixgb/ixgb_ethtool.c -df89b76e79aa0811660e77e9ee6efcc9 linux-3.0/drivers/net/ixgb/ixgb_ee.h -b27df1984e8c16acb459ec4b5a9efee6 linux-3.0/drivers/net/ixgb/ixgb_ee.c -b3e240aba260faf446f7a8c66c8fbdbd linux-3.0/drivers/net/ixgb/ixgb.h -787f690dbf832c66f2d134c135b84681 linux-3.0/drivers/net/ixgb/Makefile -265e5d95318d2119b9bd035bcb61fd8b linux-3.0/drivers/net/iseries_veth.c -31b65bdfb73f6eeae2f9abc4e60896ea linux-3.0/drivers/net/irda/w83977af_ir.h -cbba6948744d22c94689854ec9ef4236 linux-3.0/drivers/net/irda/w83977af_ir.c -6c954df083edaf92ed9e9c77f8d21c7b linux-3.0/drivers/net/irda/w83977af.h -c1eb1e3eefce5c446a7a5fc97992ec84 linux-3.0/drivers/net/irda/vlsi_ir.h -846468c0a481b199fe751cd99c8e5b23 linux-3.0/drivers/net/irda/vlsi_ir.c -9d03a1676c584155438ba309af7475d6 linux-3.0/drivers/net/irda/via-ircc.h -b0ff89f38233f7ef0e093f8326637ce6 linux-3.0/drivers/net/irda/via-ircc.c -3554babb6bd064c9cc178b77e059ceeb linux-3.0/drivers/net/irda/toim3232-sir.c -79885eb9454a1cf5a36c1d1b03613772 linux-3.0/drivers/net/irda/tekram-sir.c -6f0771f7f1dd7b07e69154775f33f99d linux-3.0/drivers/net/irda/stir4200.c -91eb4fa9b419477cb056e181fe6dfd82 linux-3.0/drivers/net/irda/smsc-sio.h -acf65c2aa4c3d6ba75a5ea75e75b4af4 linux-3.0/drivers/net/irda/smsc-ircc2.h -6e67d19684e32bcfea5d902012af52a8 linux-3.0/drivers/net/irda/smsc-ircc2.c -124b5a51a0ba048176ce3ba578946a3f linux-3.0/drivers/net/irda/sir_dongle.c -520fcea3f99609f57aa3f216b61d7b2b linux-3.0/drivers/net/irda/sir_dev.c -a8efc80f6cf60cb802eff65e92a22445 linux-3.0/drivers/net/irda/sir-dev.h -ba9677eafad4092051a96a5d85d9693b linux-3.0/drivers/net/irda/sh_sir.c -0f6a2bdbe2f7ef06d989ff261ab88982 linux-3.0/drivers/net/irda/sh_irda.c -64c0263070d7a4bd8c793847668d8484 linux-3.0/drivers/net/irda/sa1100_ir.c -2f37a284426c8b1aae5607d9822b2aba linux-3.0/drivers/net/irda/pxaficp_ir.c -a9f91f1e72446cce263005345379dba4 linux-3.0/drivers/net/irda/old_belkin-sir.c -e1258c9c77988b78c090021d3dc2e4ec linux-3.0/drivers/net/irda/nsc-ircc.h -61bb13bab00839eb6dbc012cbf6ba9b5 linux-3.0/drivers/net/irda/nsc-ircc.c -1b7fea6a0a71c88f182739b635b46e42 linux-3.0/drivers/net/irda/mcs7780.h -f272024ee26c98a3a5527241940e9d8e linux-3.0/drivers/net/irda/mcs7780.c -8b2a7d1ab7d3836fd99914dd81a05b99 linux-3.0/drivers/net/irda/mcp2120-sir.c -302832c13872d140dc96cedcbf93ba26 linux-3.0/drivers/net/irda/ma600-sir.c -ca569665f58133744a1d1274185d960e linux-3.0/drivers/net/irda/litelink-sir.c -415e9a2c45ecc07c289edf010d2b1a4d linux-3.0/drivers/net/irda/ksdazzle-sir.c -561fcc626f07d713b020f6c6652023ed linux-3.0/drivers/net/irda/ks959-sir.c -b530494059e66090a62654a7a1d74c81 linux-3.0/drivers/net/irda/kingsun-sir.c -e2e843aae0a2a155d5af432a0c2f43ea linux-3.0/drivers/net/irda/irtty-sir.h -dab4874fb2537745c430b0491e62715f linux-3.0/drivers/net/irda/irtty-sir.c -96b04c3bfbe604d3738dfc556a026ea2 linux-3.0/drivers/net/irda/irda-usb.h -798cdad6ac60723d59a77450f8efe422 linux-3.0/drivers/net/irda/irda-usb.c -1978b4ed27c1c89e86f447869a514917 linux-3.0/drivers/net/irda/girbil-sir.c -6975ee0c55625e21d388b8c8e43e5299 linux-3.0/drivers/net/irda/esi-sir.c -32a031b510c5c8afabad07176cf49b86 linux-3.0/drivers/net/irda/ep7211-sir.c -f5abe9d0a29f277f4c143ff507ae7de7 linux-3.0/drivers/net/irda/donauboe.h -cb2afbae5d72f27acf3c4410448a5667 linux-3.0/drivers/net/irda/donauboe.c -0d0efcc62c682b353c5042c23074bb5d linux-3.0/drivers/net/irda/bfin_sir.h -1e9efb33c5109c94085d4bb5d9d38326 linux-3.0/drivers/net/irda/bfin_sir.c -b465e4faec3c1028cce975adbcff4912 linux-3.0/drivers/net/irda/au1k_ir.c -822d128627dd4dab21824d756c22c745 linux-3.0/drivers/net/irda/au1000_ircc.h -3516504398558fb7d6c6cdea0cdb4baa linux-3.0/drivers/net/irda/ali-ircc.h -acee972b3bac6dcf7a897513e63f8709 linux-3.0/drivers/net/irda/ali-ircc.c -cf457227dbcce139590486019e7cfa31 linux-3.0/drivers/net/irda/actisys-sir.c -5d38d0d579bfbb8edde1f03d91c15b46 linux-3.0/drivers/net/irda/act200l-sir.c -72472a7b2de09edba2898996c7b941c6 linux-3.0/drivers/net/irda/Makefile -05f2a89f99d9a02c2f89d6c1dbddd152 linux-3.0/drivers/net/irda/Kconfig -a3799f4a85115d4532ea423412c7210a linux-3.0/drivers/net/ipg.h -5d7d110b1787cf5589966e05650221d8 linux-3.0/drivers/net/ipg.c -cf5d7e3b1a381b1ffd198bddd253fca1 linux-3.0/drivers/net/ioc3-eth.c -a517adcc0327854a3aeeb39ea17879d4 linux-3.0/drivers/net/igbvf/vf.h -a566d750a2815bdc31726e3aa03b156f linux-3.0/drivers/net/igbvf/vf.c -4976387a8245e02614e96e658db4f9dc linux-3.0/drivers/net/igbvf/regs.h -8872c0746cce4e1c1ffb8dfb42e44d8f linux-3.0/drivers/net/igbvf/netdev.c -b0903438a37fe8934cc2be5bff63a9fe linux-3.0/drivers/net/igbvf/mbx.h -b9e952da0574923e8d659ae3226b25b0 linux-3.0/drivers/net/igbvf/mbx.c -22f183a58148588bb81a25f140f91694 linux-3.0/drivers/net/igbvf/igbvf.h -a27ae86b76adecf3966ddde124e241cd linux-3.0/drivers/net/igbvf/ethtool.c -ed221eeeb7cbf2ad639fdaa8afc9cfc8 linux-3.0/drivers/net/igbvf/defines.h -231dea1e70b144576d00cf287247c2e4 linux-3.0/drivers/net/igbvf/Makefile -72e93770e8a6863b0a6dfe12c1bf9180 linux-3.0/drivers/net/igb/igb_main.c -4b72979de7885d01034b3f109f6959d2 linux-3.0/drivers/net/igb/igb_ethtool.c -7b450e4ff109eb6675a47324185a938b linux-3.0/drivers/net/igb/igb.h -e39b68a8c9721122577cd668b0f8d981 linux-3.0/drivers/net/igb/e1000_regs.h -9b138a717e9e26491a89913246aa4852 linux-3.0/drivers/net/igb/e1000_phy.h -d9fa52bc7a321255d5f3de094a24b016 linux-3.0/drivers/net/igb/e1000_phy.c -6b017e828c20437d0425f01c92de7629 linux-3.0/drivers/net/igb/e1000_nvm.h -371b7103c992df32d8ea44f648eaaa13 linux-3.0/drivers/net/igb/e1000_nvm.c -e2fce088176334974ba02419230ff801 linux-3.0/drivers/net/igb/e1000_mbx.h -eb4f1dcc5b46966f28c51cb22e11777f linux-3.0/drivers/net/igb/e1000_mbx.c -d3f772c8bdd853a015d8b9d539f73b3c linux-3.0/drivers/net/igb/e1000_mac.h -9d35896824013a32ddfbcc13c92bc63e linux-3.0/drivers/net/igb/e1000_mac.c -376c6f75b703e41696e6922889737cd1 linux-3.0/drivers/net/igb/e1000_hw.h -8c0f437bd4b98d66063c7888e8268f4b linux-3.0/drivers/net/igb/e1000_defines.h -507db64e62fc5dd60dd594ad05f1e52d linux-3.0/drivers/net/igb/e1000_82575.h -b1ba20c714c07fdbe1bcba0b47e95fe3 linux-3.0/drivers/net/igb/e1000_82575.c -1b43e587d3b8643af137556235b4014c linux-3.0/drivers/net/igb/Makefile -e21d9057991ea7f800c26267b86bbc8b linux-3.0/drivers/net/ifb.c -14de9197ecf4cabcd32a07c7397dce97 linux-3.0/drivers/net/ibmveth.h -1d7bbfe39236f7e405310d57f0421e2f linux-3.0/drivers/net/ibmveth.c -d1b6e59a12d5ff2d2969031316a6eebd linux-3.0/drivers/net/ibmlana.h -733462be1d649c21a55df730ef7dd977 linux-3.0/drivers/net/ibmlana.c -3604d9634676e33337d6b3e5f63505cc linux-3.0/drivers/net/ibm_newemac/zmii.h -4f0cbbe42e13be66ba70977795b888c6 linux-3.0/drivers/net/ibm_newemac/zmii.c -ae021b4e6def3209eab1b390dd959c61 linux-3.0/drivers/net/ibm_newemac/tah.h -7faef2cbc29d5568756edbce3db02b6f linux-3.0/drivers/net/ibm_newemac/tah.c -054f6ddd5b9992ad5bc45384f7385d31 linux-3.0/drivers/net/ibm_newemac/rgmii.h -f55152c04beb4caddf3f758ac5e66b2b linux-3.0/drivers/net/ibm_newemac/rgmii.c -4f72e8b9ec7a49f95917d82e2e304cb8 linux-3.0/drivers/net/ibm_newemac/phy.h -f57cdbc7c383288c786ff34b98a10e1b linux-3.0/drivers/net/ibm_newemac/phy.c -3c2d97e01b21d0aead3263e5f79fe0ea linux-3.0/drivers/net/ibm_newemac/mal.h -b9245f7eafddd15c5d9bc98a34c4fa46 linux-3.0/drivers/net/ibm_newemac/mal.c -d3b6b3d8b5d9b46bd12cedacfedb32cc linux-3.0/drivers/net/ibm_newemac/emac.h -aae9e40b146574580083404ed0da3c22 linux-3.0/drivers/net/ibm_newemac/debug.h -376c8c79a2bcf6c1b721c71f316c06a4 linux-3.0/drivers/net/ibm_newemac/debug.c -9026994c9ea0defe4dda6d9e2cfba5c3 linux-3.0/drivers/net/ibm_newemac/core.h -6539a5fb105b8621ae756f655b14f0b9 linux-3.0/drivers/net/ibm_newemac/core.c -77d79f1f58f06449e154644ec2c41a4f linux-3.0/drivers/net/ibm_newemac/Makefile -caaddc1ea21f14177838448df1fa2f31 linux-3.0/drivers/net/ibm_newemac/Kconfig -5d51aa45e34509215572cde137042fe7 linux-3.0/drivers/net/hydra.c -af5f8524722529f417dd3c07425813a0 linux-3.0/drivers/net/hplance.h -fcae546edc6e6f3dd3073492296e77ac linux-3.0/drivers/net/hplance.c -26050e4fe375343af130fba5fa0073ba linux-3.0/drivers/net/hp100.h -290fa70dc32cc0aa67dc69d5c5f58c5f linux-3.0/drivers/net/hp100.c -1f9e069917096499de24e1f2a678512f linux-3.0/drivers/net/hp.c -15d966eaea55c9902fe324ed08870db9 linux-3.0/drivers/net/hp-plus.c -33acdee96f4014b34a609616fa0a7174 linux-3.0/drivers/net/hamradio/z8530.h -d165811171be43fc45f600f0c99a17c6 linux-3.0/drivers/net/hamradio/yam.c -00fd020afedf29e4356d255a31dd2484 linux-3.0/drivers/net/hamradio/scc.c -7d05676b9b7a83b23d449f9841093aab linux-3.0/drivers/net/hamradio/mkiss.c -2649120108769291af9958aec60abde2 linux-3.0/drivers/net/hamradio/hdlcdrv.c -69c15b1fd612613742ffc1ee09be6bb4 linux-3.0/drivers/net/hamradio/dmascc.c -8fbcadeeaa07615e46e00675b78d2013 linux-3.0/drivers/net/hamradio/bpqether.c -b465f8330ceb33bb0dfb95ef2797111c linux-3.0/drivers/net/hamradio/baycom_ser_hdx.c -8322a0c8b526e913a08166cd47504f24 linux-3.0/drivers/net/hamradio/baycom_ser_fdx.c -08e8561b472493870077868194d6fc4c linux-3.0/drivers/net/hamradio/baycom_par.c -1bca96aba3b7f60b3417b25167fc9dcf linux-3.0/drivers/net/hamradio/baycom_epp.c -9c2836106fdae4cc5c631ebb0062443e linux-3.0/drivers/net/hamradio/Makefile -df31411bd0833ebec44f059b18d4c312 linux-3.0/drivers/net/hamradio/Kconfig -a3391886adb83e5e5046af90f98c9c2d linux-3.0/drivers/net/hamradio/6pack.c -c2ad2bd918a29ce2969c48a1d53827a4 linux-3.0/drivers/net/hamachi.c -e70e0957f67e39af58c7e9193e37c635 linux-3.0/drivers/net/greth.h -4333870b5f4b16d292ce3542a72bfff8 linux-3.0/drivers/net/greth.c -b205025c4d93cc33a6151df11a9a8c02 linux-3.0/drivers/net/gianfar_sysfs.c -71467aee2c6239ac30c0a6720faac9dc linux-3.0/drivers/net/gianfar_ptp.c -98ba8d26da9522bceb8f5b447a973323 linux-3.0/drivers/net/gianfar_ethtool.c -8c5cc01d25a9df57a52381249dff3bdb linux-3.0/drivers/net/gianfar.h -89368fd529ef6a0709058fc6c7e7642e linux-3.0/drivers/net/gianfar.c -ca35837a7fd8ab45b4368b2e984fdbba linux-3.0/drivers/net/ftmac100.h -eb2442c548f7f4740cadb2de02658fd5 linux-3.0/drivers/net/ftmac100.c -55801e1ed895667749e54a1d44d0f9c8 linux-3.0/drivers/net/fsl_pq_mdio.h -b24d68adb5fe1e228af610de5dcad397 linux-3.0/drivers/net/fsl_pq_mdio.c -c3869436735cd81a2d9119489f79010d linux-3.0/drivers/net/fs_enet/mii-fec.c -7c531ce127aed66ef8ecb9b7d2a129be linux-3.0/drivers/net/fs_enet/mii-bitbang.c -1b75417493d876d848bf072259aa8084 linux-3.0/drivers/net/fs_enet/mac-scc.c -53833f0f1bebd945489b54cce267d8c0 linux-3.0/drivers/net/fs_enet/mac-fec.c -473fb5c5255973b9da7cf86fab0e8054 linux-3.0/drivers/net/fs_enet/mac-fcc.c -427a0fa0ec86952ad0754d0d878d7962 linux-3.0/drivers/net/fs_enet/fs_enet.h -da99d6878a472abd7c2059c8e403d51a linux-3.0/drivers/net/fs_enet/fs_enet-main.c -a924e79a31a0cf13d3c8f1a493285927 linux-3.0/drivers/net/fs_enet/fec.h -b2d8936d90d5704447ef469e05eb8dd2 linux-3.0/drivers/net/fs_enet/Makefile -5631f71e0d56b8700ef5f934093d79b9 linux-3.0/drivers/net/fs_enet/Kconfig -70cf9487e9803ef5670962268cc00f5c linux-3.0/drivers/net/forcedeth.c -dfc8b3b98bcf9d6c37409b88694a952e linux-3.0/drivers/net/fec_mpc52xx_phy.c -837a28208e861420cd384f8b842a291f linux-3.0/drivers/net/fec_mpc52xx.h -37f370a26d182c1f62771a150033ec20 linux-3.0/drivers/net/fec_mpc52xx.c -da508eb5d8452fe36bd9724f2c7003e5 linux-3.0/drivers/net/fec.h -c8cc4ce60f038d9258265077179b52a7 linux-3.0/drivers/net/fec.c -b55759ede291d8a74ae44b7da25b377d linux-3.0/drivers/net/fealnx.c -bf6dba5c576611cc19bc7c0bb7075705 linux-3.0/drivers/net/ewrk3.h -4161e5db0906ffc89dc5c0b2ce3ebca9 linux-3.0/drivers/net/ewrk3.c -173feff1c0f77b3c0deaeaff07527df3 linux-3.0/drivers/net/ethoc.c -f0f192083541a1c73f0405bed078adef linux-3.0/drivers/net/eth16i.c -f349dd44d272b8b9124c967dc6acca82 linux-3.0/drivers/net/es3210.c -e2710991a923cb095e4ac18283300c3b linux-3.0/drivers/net/eql.c -a704855016dd7c3d830622e479161f24 linux-3.0/drivers/net/epic100.c -3d02d06dbc28c8ccc27993e642a8c252 linux-3.0/drivers/net/enic/wq_enet_desc.h -c24eeb788ed9bb5f7a4ed3045172a22e linux-3.0/drivers/net/enic/vnic_wq.h -d97059793f0ece5bfe4abe06024db249 linux-3.0/drivers/net/enic/vnic_wq.c -62203019f4608b8aff4aa04f9cacf846 linux-3.0/drivers/net/enic/vnic_vic.h -3b6e07c8bc960a2f016a5dde951df3c9 linux-3.0/drivers/net/enic/vnic_vic.c -fbafaf6dd77658d3ae255b97618a15b5 linux-3.0/drivers/net/enic/vnic_stats.h -9e5268f5f96cc7d5dc5da208b1427e22 linux-3.0/drivers/net/enic/vnic_rss.h -d5b30a9a6aaead9201179bcae577737e linux-3.0/drivers/net/enic/vnic_rq.h -3f1e0e56b7382053a1cd4c10234cbec1 linux-3.0/drivers/net/enic/vnic_rq.c -b0378bdd9146a4032a333d9acf124347 linux-3.0/drivers/net/enic/vnic_resource.h -2b7b3ccef7453b2e6659d2e7748b031c linux-3.0/drivers/net/enic/vnic_nic.h -b2e44fa4e561e09d2cac6ae9445f74fb linux-3.0/drivers/net/enic/vnic_intr.h -142c65f75fe2debc58b75c1cab80df89 linux-3.0/drivers/net/enic/vnic_intr.c -456ec28631600d82bd4f3f6a3b852a41 linux-3.0/drivers/net/enic/vnic_enet.h -6f906d214a465db50436447da2f3b44b linux-3.0/drivers/net/enic/vnic_devcmd.h -d69b91774558532dcce4eec0f13c1b03 linux-3.0/drivers/net/enic/vnic_dev.h -64ba1ca30bac044a698341bb96754f3e linux-3.0/drivers/net/enic/vnic_dev.c -1d52a7d1ca69b768f41b568302acd499 linux-3.0/drivers/net/enic/vnic_cq.h -15755f872f36f6096abe82f852a69c45 linux-3.0/drivers/net/enic/vnic_cq.c -891038af2438cd99575f718e65cf1b17 linux-3.0/drivers/net/enic/rq_enet_desc.h -039d1e2bb591cb9e4dce94ebbccf5772 linux-3.0/drivers/net/enic/enic_res.h -b835dd48196e4cfe6052a391da5a824b linux-3.0/drivers/net/enic/enic_res.c -c13be1a7c288becf2aa2d113b1403577 linux-3.0/drivers/net/enic/enic_pp.h -31ba586424746a23fe5785ddfe48d119 linux-3.0/drivers/net/enic/enic_pp.c -9b7ea651e75698612b7784fab87c8b14 linux-3.0/drivers/net/enic/enic_main.c -a6daeb4c20be958b5a036a6f9f5f20af linux-3.0/drivers/net/enic/enic_dev.h -d4a2628676fcfc7cd03d166b3e5c0cb7 linux-3.0/drivers/net/enic/enic_dev.c -7767b6377afcee29dd958a20e3266cd1 linux-3.0/drivers/net/enic/enic.h -f17c03fbc42eb0428b8073ae4a6f2fe0 linux-3.0/drivers/net/enic/cq_enet_desc.h -a8abc933800d578bc94e7ccf526f1e63 linux-3.0/drivers/net/enic/cq_desc.h -5a7911cafdc0071a4884d57a1c1d795e linux-3.0/drivers/net/enic/Makefile -46e02c38f29f55f2426eb9911f37f385 linux-3.0/drivers/net/enc28j60_hw.h -0e823430e4d7d17c0ba8510d4b8c9f30 linux-3.0/drivers/net/enc28j60.c -ff7326daf264b17b322b41ddab22e4f3 linux-3.0/drivers/net/ehea/ehea_qmr.h -ff38130032ecddc830fc4f48bbd0c022 linux-3.0/drivers/net/ehea/ehea_qmr.c -6f079255c81b0f90b9d86ae6846431e4 linux-3.0/drivers/net/ehea/ehea_phyp.h -0ae20dc46596b865d6328d029ce18146 linux-3.0/drivers/net/ehea/ehea_phyp.c -8c5d04e743a74ff114f4b80d14b7f6e9 linux-3.0/drivers/net/ehea/ehea_main.c -a5406b97f8ffd1a17197a868431e8402 linux-3.0/drivers/net/ehea/ehea_hw.h -28c0aae7525be072f744ddc3f7fc3bb7 linux-3.0/drivers/net/ehea/ehea_ethtool.c -459d95c3ae75d51a4b21b3b0b54280f5 linux-3.0/drivers/net/ehea/ehea.h -a9c1d8df05e2a9a95fd47b32785d2186 linux-3.0/drivers/net/ehea/Makefile -6d6427402cc7ea6ba33f337448775a49 linux-3.0/drivers/net/eexpress.h -ec56f8e96fc0815a3d41d234cd1c4ac0 linux-3.0/drivers/net/eexpress.c -dbe60b7164ed63589aa276ce958b88cd linux-3.0/drivers/net/eepro.c -a2a7c999502cb8fdd08946a1947323ab linux-3.0/drivers/net/e2100.c -8fe08e30e771a9a2ac529d5eeba82f0b linux-3.0/drivers/net/e1000e/phy.c -ee4ee17cf96b8e6dc34c0f270bd322f6 linux-3.0/drivers/net/e1000e/param.c -3838de10d66fb133616505621a6c3b13 linux-3.0/drivers/net/e1000e/netdev.c -180a52205d36a55cd2289af644881456 linux-3.0/drivers/net/e1000e/lib.c -bef84a0adf440526afe50ee9d73131cd linux-3.0/drivers/net/e1000e/ich8lan.c -39ddb21560ed9e385c9a5a217ebd4f53 linux-3.0/drivers/net/e1000e/hw.h -3e92d200dbbdc29da996248bc02f3975 linux-3.0/drivers/net/e1000e/ethtool.c -b9ef6915653a697b01670075fdff64a9 linux-3.0/drivers/net/e1000e/es2lan.c -c1d0771b4ff38fcccc6ad87758e36ee3 linux-3.0/drivers/net/e1000e/e1000.h -3851a243df91d99ed3d122967b11791f linux-3.0/drivers/net/e1000e/defines.h -5dd7101e142f88678b25d1a1ba8d933d linux-3.0/drivers/net/e1000e/Makefile -eef7ac2916295acee0579dd9fd4a2e83 linux-3.0/drivers/net/e1000e/82571.c -31c8adeeec26c826dc367ef913c61700 linux-3.0/drivers/net/e1000/e1000_param.c -0e3c27a9912dc6575cfbaa3c964df930 linux-3.0/drivers/net/e1000/e1000_osdep.h -bd05814ba10e437c1eac237b57c2cf2f linux-3.0/drivers/net/e1000/e1000_main.c -8feff58226a319d50a2b0afc9bdaee96 linux-3.0/drivers/net/e1000/e1000_hw.h -48ddc243badc8d11a29126cb1bbd52f0 linux-3.0/drivers/net/e1000/e1000_hw.c -8465a15113c0ee9e1dc8f22196c3b4ca linux-3.0/drivers/net/e1000/e1000_ethtool.c -7e1bb073304266748669b96154e20d75 linux-3.0/drivers/net/e1000/e1000.h -f0d38c67adf1d626c9a1f58a8a16638f linux-3.0/drivers/net/e1000/Makefile -114746851571e2fb9f6c888bda54b38c linux-3.0/drivers/net/e100.c -adb17d3232a72fd0e91205ee97373451 linux-3.0/drivers/net/dummy.c -30b63fcc13eff40cbe5161ae7fb45979 linux-3.0/drivers/net/dnet.h -3cbb67355ef95ad079df9bebddd08885 linux-3.0/drivers/net/dnet.c -1d851f0d506a4f6dc9f915a58345ff07 linux-3.0/drivers/net/dm9000.h -6a3b6dcf343de06169c63d7b4bc9eb27 linux-3.0/drivers/net/dm9000.c -c95647aa28d4ba79d81398d71f3781b5 linux-3.0/drivers/net/dl2k.h -b498607db73b10ea06000dc706496c9e linux-3.0/drivers/net/dl2k.c -27c2a0ea57bf7cdc950456284bf2e43b linux-3.0/drivers/net/depca.h -75fd6302fe2e1ecaee93044780232eab linux-3.0/drivers/net/depca.c -22ee7029197934454476731fcc46a31a linux-3.0/drivers/net/defxx.h -490e685247d142cf9211eb8d2e9831a7 linux-3.0/drivers/net/defxx.c -a81bc96bb8d07623ebade4b669f3ad53 linux-3.0/drivers/net/declance.c -6bb71f30309693d45a5cbe4448d893f3 linux-3.0/drivers/net/de620.h -23a5eeee14985986c535169398f944f7 linux-3.0/drivers/net/de620.c -d99e603a8937b8c7c0259adf9cbf061c linux-3.0/drivers/net/de600.h -03345389c8e902e7472612573a384e55 linux-3.0/drivers/net/de600.c -c1e424b52b4722a460c7357ce3d8029b linux-3.0/drivers/net/davinci_mdio.c -d0f547a5f6af473596bafdc33891f1a1 linux-3.0/drivers/net/davinci_emac.c -0e6ea4051fc194ac77984ae3df1b6d39 linux-3.0/drivers/net/davinci_cpdma.h -24ff3ca825393ee31e2ff1965c69a188 linux-3.0/drivers/net/davinci_cpdma.c -b6327c7a4f45fd3b9a56003267820d76 linux-3.0/drivers/net/cxgb4vf/t4vf_hw.c -5b82dd9d0ffa33b6566f1f0a7212a965 linux-3.0/drivers/net/cxgb4vf/t4vf_defs.h -7335ff16431008c279415d77f5e64866 linux-3.0/drivers/net/cxgb4vf/t4vf_common.h -1d83cc3b711984cc03725eaa3acafe39 linux-3.0/drivers/net/cxgb4vf/sge.c -dda66f9180422fc394b0fd1ce68d6148 linux-3.0/drivers/net/cxgb4vf/cxgb4vf_main.c -d202cfb541c499f7732d8b6d01bad4b9 linux-3.0/drivers/net/cxgb4vf/adapter.h -c88281cf26ddd578b671e843adf9f5f6 linux-3.0/drivers/net/cxgb4vf/Makefile -721dff201cf8ee1b5d93e53a5be2589f linux-3.0/drivers/net/cxgb4/t4fw_api.h -e4a5af7607e1914e2b4ae11ccc937127 linux-3.0/drivers/net/cxgb4/t4_regs.h -64a69e1fc89cd01cf01128849b34ec97 linux-3.0/drivers/net/cxgb4/t4_msg.h -2152568637615e8661b911108fe9b91a linux-3.0/drivers/net/cxgb4/t4_hw.h -4063f3dd357b03f0daf099fc574d41bf linux-3.0/drivers/net/cxgb4/t4_hw.c -38befc40bfff6ea8a7e9c6a7109c0345 linux-3.0/drivers/net/cxgb4/sge.c -ec8b377f9cf02273853dab7f1b868e08 linux-3.0/drivers/net/cxgb4/l2t.h -2f3b13502179e5cc1b49e5e1d90054bd linux-3.0/drivers/net/cxgb4/l2t.c -6a0988c076fb7da72c608c8f681853e2 linux-3.0/drivers/net/cxgb4/cxgb4_uld.h -44fee74688ec1615b501566d1f55d805 linux-3.0/drivers/net/cxgb4/cxgb4_main.c -51a1a97f18483a0a29d075e345dc20bc linux-3.0/drivers/net/cxgb4/cxgb4.h -3fcdd8a8533f4c2fa1d5feb8de9886b7 linux-3.0/drivers/net/cxgb4/Makefile -adb8c3ff5a4eb1b27bb67a5fa4f0778f linux-3.0/drivers/net/cxgb3/xgmac.c -1a71b0b40f6235e2c0ec8ca307add6b9 linux-3.0/drivers/net/cxgb3/vsc8211.c -b46b2306f1431e7f72cd96029d9d993a linux-3.0/drivers/net/cxgb3/version.h -01f6542865b331ab2942fac154ae8c49 linux-3.0/drivers/net/cxgb3/t3cdev.h -1f32a822680729b0ad7a806673cffca7 linux-3.0/drivers/net/cxgb3/t3_hw.c -b6a0e1aee1173c6169f132d0d323dd02 linux-3.0/drivers/net/cxgb3/t3_cpl.h -915815931d802689362cf5758eb152e5 linux-3.0/drivers/net/cxgb3/sge_defs.h -75cf14c98cc7fdc0065036bea41a724c linux-3.0/drivers/net/cxgb3/sge.c -4d111d2d473a5c58b28cc8cb23dfcd02 linux-3.0/drivers/net/cxgb3/regs.h -aea218c580db6abeda3deedf6aec3cca linux-3.0/drivers/net/cxgb3/mc5.c -bec8c17b6cda7fd99c0f1f4629dfa8ea linux-3.0/drivers/net/cxgb3/l2t.h -072da3fdc6599187b92e0b0114d5595b linux-3.0/drivers/net/cxgb3/l2t.c -2ab4c3402a97567d4e0c335da42e4072 linux-3.0/drivers/net/cxgb3/firmware_exports.h -e1606485a6b67da2f2dd7b64e64643fd linux-3.0/drivers/net/cxgb3/cxgb3_offload.h -eaebb178b249ccb4502c55811e94f8f3 linux-3.0/drivers/net/cxgb3/cxgb3_offload.c -a7581cd4de328721727d24d109428b22 linux-3.0/drivers/net/cxgb3/cxgb3_main.c -5df0eaa0e4660792a067c57399217887 linux-3.0/drivers/net/cxgb3/cxgb3_ioctl.h -4d2eb495b7fa669d6ccbe35ef269bf4e linux-3.0/drivers/net/cxgb3/cxgb3_defs.h -50496f2da1d4eb51f28ff5f3499e6161 linux-3.0/drivers/net/cxgb3/cxgb3_ctl_defs.h -0b146a67164c21699ffa371245adc21a linux-3.0/drivers/net/cxgb3/common.h -ad816439979aee6eee8c41c7e5729f34 linux-3.0/drivers/net/cxgb3/aq100x.c -f929c140ccc8a0348f2985d64a1f9fdf linux-3.0/drivers/net/cxgb3/ael1002.c -0e571edf1ceba05d3c936831619f17c1 linux-3.0/drivers/net/cxgb3/adapter.h -42e67309c46f4f474c403c2e6d3c6a85 linux-3.0/drivers/net/cxgb3/Makefile -1adfba64fa1ef768aed8d9125f80a2fa linux-3.0/drivers/net/cs89x0.h -52bc8f5e26781a51105bc84c566c2758 linux-3.0/drivers/net/cs89x0.c -b773bd6da602df4cd12a92a31fda8432 linux-3.0/drivers/net/cris/eth_v10.c -27d640fd14f947612a472d5102d95bd1 linux-3.0/drivers/net/cris/Makefile -10405c518b7874c7b2a44e9c920a2505 linux-3.0/drivers/net/cpmac.c -2e09f8cbe25f66971795a23d29cb2555 linux-3.0/drivers/net/cnic_if.h -67194540c0f228f6f4fc7d409cf09bbf linux-3.0/drivers/net/cnic_defs.h -9bd8fab4e455293a92b0e1936b164e2d linux-3.0/drivers/net/cnic.h -ace00bcb0442c3c19a83e8b5b055e610 linux-3.0/drivers/net/cnic.c -c79a784ffab7ac61c3d8878fbc3aaf8c linux-3.0/drivers/net/chelsio/vsc7326_reg.h -b02efcee598e0e6d03c07ea65c72df98 linux-3.0/drivers/net/chelsio/vsc7326.c -9eb5cba2593bf87eed13ac666efecb83 linux-3.0/drivers/net/chelsio/tp.h -a504cbd252994631c33350bfcce83f48 linux-3.0/drivers/net/chelsio/tp.c -e2905d0d567ed4237bd91e06e5f830bb linux-3.0/drivers/net/chelsio/suni1x10gexp_regs.h -19b7c28632327b9629cc3c813c05b493 linux-3.0/drivers/net/chelsio/subr.c -913410beba14fa1ea97d4c62be780f31 linux-3.0/drivers/net/chelsio/sge.h -250eab33a4343d7cbcafec80f5b2ece5 linux-3.0/drivers/net/chelsio/sge.c -c4f2d68e17dbbc62535cec8cc6b61bfa linux-3.0/drivers/net/chelsio/regs.h -e14c5ab281e4f71b6c28a540fd4193c7 linux-3.0/drivers/net/chelsio/pm3393.c -e94dffb821744cee1173a1ff815e2ef0 linux-3.0/drivers/net/chelsio/my3126.c -29b2f3a363760852c7b7345c5918cc51 linux-3.0/drivers/net/chelsio/mv88x201x.c -abfc897825ff33b2c84363922e29a04f linux-3.0/drivers/net/chelsio/mv88e1xxx.h -49facd812764cef616b4eeb43ed569a9 linux-3.0/drivers/net/chelsio/mv88e1xxx.c -d9ffc978ce5bdf246c94b952ea72c464 linux-3.0/drivers/net/chelsio/gmac.h -6dab3d7634a538560b47ed359ef5ff4e linux-3.0/drivers/net/chelsio/fpga_defs.h -43d505a57c25fdff0b10364e52d956c2 linux-3.0/drivers/net/chelsio/espi.h -634ab9ed5535c29a42c8b47ce1d4dcaa linux-3.0/drivers/net/chelsio/espi.c -12a33ea1eb74e6684d2793388ac9566f linux-3.0/drivers/net/chelsio/elmer0.h -45d4a73bce921aa4085e9face5bf1493 linux-3.0/drivers/net/chelsio/cxgb2.c -5a7ea6357371a00cd2509426b48ce165 linux-3.0/drivers/net/chelsio/cpl5_cmd.h -becb6d9564e340b0892953b887096e95 linux-3.0/drivers/net/chelsio/cphy.h -fb681714880ce855f169cb0fea131097 linux-3.0/drivers/net/chelsio/common.h -9fe39af3231f865ef2026c14a3a8b4c2 linux-3.0/drivers/net/chelsio/Makefile -c51d133a1b36e12a77ff0dbd2d3edc48 linux-3.0/drivers/net/cassini.h -721c6ff0c6b6841be5c326fb80e861ca linux-3.0/drivers/net/cassini.c -f45076173221759e63d3af3b520ac0b7 linux-3.0/drivers/net/can/vcan.c -e4aff86a3012f275f8aee9f3e966a0b6 linux-3.0/drivers/net/can/usb/esd_usb2.c -871a2ddf64be6d19d43d23521571e0e1 linux-3.0/drivers/net/can/usb/ems_usb.c -28af9645ad4b4d2b1586b4756f031d9a linux-3.0/drivers/net/can/usb/Makefile -ff558160f67d5a9228a37443de5cdfe0 linux-3.0/drivers/net/can/usb/Kconfig -26fa5d1baaf5c78bb650ee5a022ddf0c linux-3.0/drivers/net/can/ti_hecc.c -43ca707a0b0906dd3dfa0c9fac109daf linux-3.0/drivers/net/can/softing/softing_platform.h -cd82e7230b26b19556587ba72820e3f9 linux-3.0/drivers/net/can/softing/softing_main.c -1c0d00e05dba366f42ca12dc19cf8b25 linux-3.0/drivers/net/can/softing/softing_fw.c -99cdbf48b713b91afcfc8b3aa48b5cfa linux-3.0/drivers/net/can/softing/softing_cs.c -9031cbfa4a55a64b9e1d7f4ea98c737a linux-3.0/drivers/net/can/softing/softing.h -2f9741bf473c7a37c2cc80bf7f8d1ad9 linux-3.0/drivers/net/can/softing/Makefile -0d90e8c162d83fc536bd886af10099ed linux-3.0/drivers/net/can/softing/Kconfig -5c90cce4756ec445207feebd556c6c12 linux-3.0/drivers/net/can/slcan.c -21258c3702b95ac707b0a7f9404019f6 linux-3.0/drivers/net/can/sja1000/tscan1.c -aff71477a85b5e17f0481936ebe11106 linux-3.0/drivers/net/can/sja1000/sja1000_platform.c -873e1341e6fb0f0c10c4970419902837 linux-3.0/drivers/net/can/sja1000/sja1000_of_platform.c -39a63d11caa48db52747ca72386d74fe linux-3.0/drivers/net/can/sja1000/sja1000_isa.c -cc768fe702d2e5ae78b6fc2079d8170c linux-3.0/drivers/net/can/sja1000/sja1000.h -0761f2573347855c2ae174da864ac693 linux-3.0/drivers/net/can/sja1000/sja1000.c -519242fa07560e48527f096dcfe0ed10 linux-3.0/drivers/net/can/sja1000/plx_pci.c -f208f34ac18f72050925c058c58e376d linux-3.0/drivers/net/can/sja1000/kvaser_pci.c -28833f800464bde374c15d005f8ca211 linux-3.0/drivers/net/can/sja1000/ems_pci.c -0d659027d61ce4cee2a26f1492ce6d02 linux-3.0/drivers/net/can/sja1000/Makefile -fda990586b914fe4b601e6a15cad17e7 linux-3.0/drivers/net/can/sja1000/Kconfig -2e1f29cecafe2ab546cb50eb7f09ca68 linux-3.0/drivers/net/can/pch_can.c -cc30fab759da1ed466125e4537c4d966 linux-3.0/drivers/net/can/mscan/mscan.h -fcb0c8a1580a598ab1cd2fc3cbbb27d8 linux-3.0/drivers/net/can/mscan/mscan.c -ab12760f79bae720d826a9881b5eca41 linux-3.0/drivers/net/can/mscan/mpc5xxx_can.c -cdaf5f4e5cf5087e475a7beec0765fb9 linux-3.0/drivers/net/can/mscan/Makefile -1212fd31044f419703c7705cb1c35b3f linux-3.0/drivers/net/can/mscan/Kconfig -ce02262cd0ebee8c64c761ad4fe3e6e3 linux-3.0/drivers/net/can/mcp251x.c -5b04eb652632aeb18c447a2eb3722efe linux-3.0/drivers/net/can/janz-ican3.c -b3c885f76ffeec7a807a9065069ebbb1 linux-3.0/drivers/net/can/flexcan.c -34e3588989f0d6e2e69cbf98800f98e6 linux-3.0/drivers/net/can/dev.c -a69c38166605b2bf49b653d6daea2b8a linux-3.0/drivers/net/can/c_can/c_can_platform.c -0980661982e2d6e7e9252da9d4066eb3 linux-3.0/drivers/net/can/c_can/c_can.h -b19167afc90176c85a756b41b5c382c1 linux-3.0/drivers/net/can/c_can/c_can.c -a8ff9f6ab1d415e0dcaa69f0e065d29f linux-3.0/drivers/net/can/c_can/Makefile -7dc391f4b396a01945609be088f38d62 linux-3.0/drivers/net/can/c_can/Kconfig -a547f346be2b38c2f283e2949819b503 linux-3.0/drivers/net/can/bfin_can.c -a1ba82e25ee84131c04cd6972a1305c8 linux-3.0/drivers/net/can/at91_can.c -1ddfd422fc972c4277870fbc4d0b38d9 linux-3.0/drivers/net/can/Makefile -62fa697f2d38d72c2f5012925b368603 linux-3.0/drivers/net/can/Kconfig -973f0f2265f87a057d85f40d43da4983 linux-3.0/drivers/net/caif/caif_spi_slave.c -7502b507c52922f8eeaf802f0feb454c linux-3.0/drivers/net/caif/caif_spi.c -6d612e83a1d15d325bb13cb1135f0bc2 linux-3.0/drivers/net/caif/caif_shmcore.c -4d80827c7d66d8a81ec8ef6a57fe6f6f linux-3.0/drivers/net/caif/caif_shm_u5500.c -616671164fd23c904ede2d94c8eb1869 linux-3.0/drivers/net/caif/caif_serial.c -327bc2c0f348fdc6c7880764075e0732 linux-3.0/drivers/net/caif/Makefile -1b39b3d95cc794bb93feddcab5b4f999 linux-3.0/drivers/net/caif/Kconfig -cb921d91b6ac4036496a176f12585288 linux-3.0/drivers/net/bsd_comp.c -55307853c61c65d008e59153840cb2b0 linux-3.0/drivers/net/bonding/bonding.h -bc9527d8ba8a2816d796c91372002737 linux-3.0/drivers/net/bonding/bond_sysfs.c -77df4b7cb90b33cbcc685844ca758ede linux-3.0/drivers/net/bonding/bond_procfs.c -dceabb2066ddc879af4f994a3b17a849 linux-3.0/drivers/net/bonding/bond_main.c -1f5bd2a9ee52f73cb7dcaa8d4196f243 linux-3.0/drivers/net/bonding/bond_ipv6.c -49c4faaca30b7b6a4b1b2642ff8047e5 linux-3.0/drivers/net/bonding/bond_debugfs.c -646f6368f1b2830a942bdb3692ada80a linux-3.0/drivers/net/bonding/bond_alb.h -fa5a5973b4f34a4f62448541e8dc2ecb linux-3.0/drivers/net/bonding/bond_alb.c -0b6b6c1d83f20de9b4570e9b3b9aca0c linux-3.0/drivers/net/bonding/bond_3ad.h -55e6abc95fabe862ba9d924df0d90534 linux-3.0/drivers/net/bonding/bond_3ad.c -0c01b8fa2b37073ba10f179e0fc80382 linux-3.0/drivers/net/bonding/Makefile -4bb52325030098b8ed43c3e6d682ff61 linux-3.0/drivers/net/bnx2x/bnx2x_stats.h -bcf159143f501cae3f451e9a47a5ba88 linux-3.0/drivers/net/bnx2x/bnx2x_stats.c -9550b26a0506e8e5ab68830c61da72df linux-3.0/drivers/net/bnx2x/bnx2x_reg.h -a87013a6c7e0d53071f51ec45ad55fab linux-3.0/drivers/net/bnx2x/bnx2x_main.c -cfadc54fbbce94fab7cc0f5866382865 linux-3.0/drivers/net/bnx2x/bnx2x_link.h -0d70a56ca06f4c5aa1037684182e6e25 linux-3.0/drivers/net/bnx2x/bnx2x_link.c -c54dffc6be988cb24984a4a7b568e358 linux-3.0/drivers/net/bnx2x/bnx2x_init_ops.h -754234aa4c84655ae267249898c5ec91 linux-3.0/drivers/net/bnx2x/bnx2x_init.h -ba2e9061656b9756127a3bba63ab3e27 linux-3.0/drivers/net/bnx2x/bnx2x_hsi.h -49eae4cf835f9c2245a24ce6057753f0 linux-3.0/drivers/net/bnx2x/bnx2x_fw_file_hdr.h -b9bf83700a5c5f25e6398cf666459271 linux-3.0/drivers/net/bnx2x/bnx2x_fw_defs.h -85bf832b1a4ff9cb467fb3c5ae683577 linux-3.0/drivers/net/bnx2x/bnx2x_ethtool.c -256a69f42a5b2b3e8a1666dfd800df43 linux-3.0/drivers/net/bnx2x/bnx2x_dump.h -14fe6b1072fe8822775cf2efd43a851b linux-3.0/drivers/net/bnx2x/bnx2x_dcb.h -7b910ba31ee60f88efc3d008f9c13370 linux-3.0/drivers/net/bnx2x/bnx2x_dcb.c -fc40df4f5ea00fbb710daba9a6f7b0ac linux-3.0/drivers/net/bnx2x/bnx2x_cmn.h -e5e62d7aa07fceb38079357e77a4d3e8 linux-3.0/drivers/net/bnx2x/bnx2x_cmn.c -d8968be58330ab6434cf65e109b0e705 linux-3.0/drivers/net/bnx2x/bnx2x.h -67b71d52388b9c515a4ddb8b7900f2c2 linux-3.0/drivers/net/bnx2x/Makefile -b12020711f5b419d7295735d2a7f86a7 linux-3.0/drivers/net/bnx2_fw.h -9584b98e71025b24c6217b7ea608924e linux-3.0/drivers/net/bnx2.h -8d72edebd734f6fccf5516367170d4eb linux-3.0/drivers/net/bnx2.c -5d7fb76106719114f6453a2e7990b39f linux-3.0/drivers/net/bna/cna_fwimg.c -5b5ea03f6dc850087d8877c94cad934e linux-3.0/drivers/net/bna/cna.h -ebfb988f7bf69917df231b6bd1e6d52f linux-3.0/drivers/net/bna/bnad_ethtool.c -b7862ffdb11f674a7c2b686c5112e5e7 linux-3.0/drivers/net/bna/bnad.h -ce3a9494795fb97a8412ac629091e468 linux-3.0/drivers/net/bna/bnad.c -2bf5a09cda75aec2191635c304c1ff5e linux-3.0/drivers/net/bna/bna_types.h -c8af6c0c5ef9c147e562447b9d878faa linux-3.0/drivers/net/bna/bna_txrx.c -de8d752f93e2a0f3082b368de4d2be01 linux-3.0/drivers/net/bna/bna_hw.h -76a1af13028ca3238daa335a5fd91915 linux-3.0/drivers/net/bna/bna_ctrl.c -8f6e7b1ebfa868b02c4b6413356396a3 linux-3.0/drivers/net/bna/bna.h -bc9625064e980ef0da27e4c720ffdfc6 linux-3.0/drivers/net/bna/bfi_ll.h -2f85ef73a31bc0fa75663b027f561af4 linux-3.0/drivers/net/bna/bfi_ctreg.h -21677e6219f72feec5476b40fad013c9 linux-3.0/drivers/net/bna/bfi_cna.h -309b071d0a62ba17dbcfb844c81064a5 linux-3.0/drivers/net/bna/bfi.h -490ff3efeb0b7a61542a36582b52e4ed linux-3.0/drivers/net/bna/bfa_wc.h -c009e7674aed11bb14b8c9a821b6e8d4 linux-3.0/drivers/net/bna/bfa_sm.h -71d05af7585921215e848815e80c02b7 linux-3.0/drivers/net/bna/bfa_ioc_ct.c -de7f9c6c5101b2ff957b0f5190e2b6fc linux-3.0/drivers/net/bna/bfa_ioc.h -1b5d2e2f721037874ee23fefd29649d6 linux-3.0/drivers/net/bna/bfa_ioc.c -2fbfdb36c433daba1aa879e0a96f0a2d linux-3.0/drivers/net/bna/bfa_defs_status.h -613a2d65efbc93b2a6e8f2eb7ba5444b linux-3.0/drivers/net/bna/bfa_defs_mfg_comm.h -9d0615a062af2dc57436b23d6f63704b linux-3.0/drivers/net/bna/bfa_defs_cna.h -5fb157b00a53b8ea327337e035e57e8c linux-3.0/drivers/net/bna/bfa_defs.h -032200c7fab1561a85ffb53024b2b452 linux-3.0/drivers/net/bna/bfa_cee.h -288aa30a51aa31bb0dab43941292f7b3 linux-3.0/drivers/net/bna/bfa_cee.c -0f4612919e5c6a243bb79570cf2693ad linux-3.0/drivers/net/bna/Makefile -115da2f2c27a13e2d30a25ea3d11bd56 linux-3.0/drivers/net/bmac.h -7a4abdf7f6ca53d4143ce0ce5dad2ba7 linux-3.0/drivers/net/bmac.c -c42afb7e31eedc66807137d0ac2c49ef linux-3.0/drivers/net/bfin_mac.h -1ef1746b38807516c95348be743846a8 linux-3.0/drivers/net/bfin_mac.c -c796acb260c6ce08eb536a3764e43cce linux-3.0/drivers/net/benet/be_main.c -e00c95d90ed3454b239a5fc038b4fd19 linux-3.0/drivers/net/benet/be_hw.h -e78b3f00551262f5fbe0659f75821d08 linux-3.0/drivers/net/benet/be_ethtool.c -99416414ba080026c29348ee7c36f87d linux-3.0/drivers/net/benet/be_cmds.h -c69d3aab32ca8b03cf36f5a9b01cd6b7 linux-3.0/drivers/net/benet/be_cmds.c -5387c5bf5ca172a24744cad1d08e7a43 linux-3.0/drivers/net/benet/be.h -8273674afcb6e0a254984ab443ba7375 linux-3.0/drivers/net/benet/Makefile -526c3e99b22d7b3676e2749fdbdcbc6d linux-3.0/drivers/net/benet/Kconfig -e519a872a846ca5fb4bd434b67acff09 linux-3.0/drivers/net/bcm63xx_enet.h -b3c95234cc0d8338368601d99d30983b linux-3.0/drivers/net/bcm63xx_enet.c -32d065f806703501cf903138f78ccf39 linux-3.0/drivers/net/b44.h -11b4878819aa2f5ecad1ee062e6a283d linux-3.0/drivers/net/b44.c -0af0165683fd92e585d2cd09e84bdce0 linux-3.0/drivers/net/ax88796.c -354c679f768504ce42822bad03f41981 linux-3.0/drivers/net/au1000_eth.h -959529cdad3932436cb327bbb10e4310 linux-3.0/drivers/net/au1000_eth.c -84edb2ed2a33435fb311a7cc38003c1a linux-3.0/drivers/net/atp.h -e21fb3fca21adda31dde03e759cc02bd linux-3.0/drivers/net/atp.c -7af2cf0b277d8276f28e61d2edd22668 linux-3.0/drivers/net/atlx/atlx.h -da1231fe7b6818954f41e0a3b6539d11 linux-3.0/drivers/net/atlx/atlx.c -a31cd562ede25af2789c5c520a3b9c3f linux-3.0/drivers/net/atlx/atl2.h -b23c6a0ad8c7c4031eaf610eb7a6274d linux-3.0/drivers/net/atlx/atl2.c -938372f0413a969c56000f35de9e061c linux-3.0/drivers/net/atlx/atl1.h -696cb859c6e5c0275f5ef1733652c2df linux-3.0/drivers/net/atlx/atl1.c -f15bc600c7d60595108b7e616c30eb7f linux-3.0/drivers/net/atlx/Makefile -1a2944ab45494ad7d19efea5d8868d26 linux-3.0/drivers/net/atl1e/atl1e_param.c -f5825dc969fe3a83683eecc17211d9f3 linux-3.0/drivers/net/atl1e/atl1e_main.c -8d9164205eacc86e83a0781f3ec67e19 linux-3.0/drivers/net/atl1e/atl1e_hw.h -b87dd5df2de2d190e110fc8d193d0eb4 linux-3.0/drivers/net/atl1e/atl1e_hw.c -52b52609527a45714c83e6efdad7e6a7 linux-3.0/drivers/net/atl1e/atl1e_ethtool.c -c32fc75b57c99013d0bcc5e495477e4c linux-3.0/drivers/net/atl1e/atl1e.h -438a3cfff0ce97b0d8830e6b353c5d75 linux-3.0/drivers/net/atl1e/Makefile -7ce4f51f2716cbe1963d4a0fbb37c970 linux-3.0/drivers/net/atl1c/atl1c_main.c -3243272d28398179c9df5348254ac7ca linux-3.0/drivers/net/atl1c/atl1c_hw.h -143d3f6aa4de03d075b79ef092dfa8be linux-3.0/drivers/net/atl1c/atl1c_hw.c -dd398dd593edb5949d079a0f6cb416c9 linux-3.0/drivers/net/atl1c/atl1c_ethtool.c -ac76347472d6d401f28e00b80624f2ec linux-3.0/drivers/net/atl1c/atl1c.h -a5abb602830161c55d0a21f27cec953e linux-3.0/drivers/net/atl1c/Makefile -dbb0ec5082375fa5fa519fddd119b341 linux-3.0/drivers/net/atarilance.c -d595de783875e165107924dc86022e7e linux-3.0/drivers/net/at1700.c -b0ebdc2c4297c2908bb5a548ade679a5 linux-3.0/drivers/net/arm/w90p910_ether.c -9b18c5dd1c9cab80110e6ea2a9bb80e3 linux-3.0/drivers/net/arm/ks8695net.h -ec19532beedc40360860b21315016e15 linux-3.0/drivers/net/arm/ks8695net.c -735fef29e25646e3266d416215fee50d linux-3.0/drivers/net/arm/ixp4xx_eth.c -4bf328c59975df1b07be574427f77c53 linux-3.0/drivers/net/arm/etherh.c -7f9fc3ec8c764d8f4f49fb98879a806f linux-3.0/drivers/net/arm/ether3.h -038f94c8013ab5ba4e39c0ea3bf88bf0 linux-3.0/drivers/net/arm/ether3.c -36b5ade391160abc7304c3291c41e02d linux-3.0/drivers/net/arm/ether1.h -6c0ffe5087c2fb389d652fd4a62813f0 linux-3.0/drivers/net/arm/ether1.c -49d03f4797b98b382484deaf43466fcb linux-3.0/drivers/net/arm/ep93xx_eth.c -4f6ff35e58702a84ec28051f27b7e0e0 linux-3.0/drivers/net/arm/at91_ether.h -7b376cedb7cfe36c56b713515ef72d90 linux-3.0/drivers/net/arm/at91_ether.c -6fdaf2ebcf8d127951b922c187f1689f linux-3.0/drivers/net/arm/am79c961a.h -ce2718d1814e226a2dbc68a5b366b508 linux-3.0/drivers/net/arm/am79c961a.c -a96fb6f070fdf2489d3f71b27da8174a linux-3.0/drivers/net/arm/Makefile -f4f434a89120897ba668bbf6e687b2f1 linux-3.0/drivers/net/arm/Kconfig -b52dcaab0cde178e93d426ea2646b968 linux-3.0/drivers/net/ariadne.h -a4e407f653d818812362e41ea55bfcb3 linux-3.0/drivers/net/ariadne.c -f76c2b97512781ce01e3e6b2e85bf7c4 linux-3.0/drivers/net/arcnet/rfc1201.c -73f3347496aa7eeb5d5770a90801f0b0 linux-3.0/drivers/net/arcnet/rfc1051.c -e98635be8d9b2f952f271d3b279dbbf7 linux-3.0/drivers/net/arcnet/com90xx.c -2f29ca9e91784b926574f6d42789f6ea linux-3.0/drivers/net/arcnet/com90io.c -d0bb218a5cd1be485f9008aad0c3ac3a linux-3.0/drivers/net/arcnet/com20020.c -b3dc78b61cb8e45d4d0f1ce4ef56392e linux-3.0/drivers/net/arcnet/com20020-pci.c -5729b70fada2828edcfd70db062cb68f linux-3.0/drivers/net/arcnet/com20020-isa.c -a836b427339d358f1b21ed76628a52e4 linux-3.0/drivers/net/arcnet/capmode.c -07b8d8690ed704e629d4a9febe320ef0 linux-3.0/drivers/net/arcnet/arcnet.c -5913f21798241c79bd5ffb457b992cd9 linux-3.0/drivers/net/arcnet/arc-rimi.c -bbde005d7d4c4dd977bab890c0a576d9 linux-3.0/drivers/net/arcnet/arc-rawmode.c -fb28c6e36b8738a23213dd6692398a30 linux-3.0/drivers/net/arcnet/Makefile -322843a9553fc45aad604d2980671415 linux-3.0/drivers/net/arcnet/Kconfig -eb760f4da640e0492295dfe2d676c150 linux-3.0/drivers/net/appletalk/ltpc.h -2b9be636081552920bb5d8e9f9dcdb72 linux-3.0/drivers/net/appletalk/ltpc.c -842845c4b7693aa1bf9939edf33a6322 linux-3.0/drivers/net/appletalk/ipddp.h -a0be59aa1274b5eefd32eced5d1396f0 linux-3.0/drivers/net/appletalk/ipddp.c -c3037af474f15d726db140eb9cbb548b linux-3.0/drivers/net/appletalk/cops_ltdrv.h -e7d27ab0cb5be8fe8e7a80e5c221c571 linux-3.0/drivers/net/appletalk/cops_ffdrv.h -73ca6c47aa3c9cfd2083a1d93f9535ae linux-3.0/drivers/net/appletalk/cops.h -4278c18cbbbf127edd5e1971c5dda348 linux-3.0/drivers/net/appletalk/cops.c -5a7632cfc531a880be79c73c5776294f linux-3.0/drivers/net/appletalk/Makefile -4070ad0699108c4019d184cbbfe715ea linux-3.0/drivers/net/appletalk/Kconfig -65402d290a65758ddde5e41a0b9acd4a linux-3.0/drivers/net/apne.c -5dc5dc3ea62caea0fde2a591d6a0f4c1 linux-3.0/drivers/net/amd8111e.h -0fbdc11f6d00784f615be56b2305b718 linux-3.0/drivers/net/amd8111e.c -b23a67519594461e5454925ce80b3527 linux-3.0/drivers/net/acenic.h -ecfdd1a99296b902d1f27b523e0ab342 linux-3.0/drivers/net/acenic.c -e6282349896ee9929102ece916ff796c linux-3.0/drivers/net/ac3200.c -a7a9876ec4cf61e01457017e323a0019 linux-3.0/drivers/net/a2065.h -0d8763416ee9d4a97cdcc4ff78cf3a66 linux-3.0/drivers/net/a2065.c -8d8eec876f2c99b46597c48670acfa23 linux-3.0/drivers/net/Space.c -41233073a330d90835f82df3a07ed7f9 linux-3.0/drivers/net/Makefile -e5e50f92b87d827b29e6e79e05432963 linux-3.0/drivers/net/LICENSE.SRC -1f935b5a9b2641f3169506d04fa9a1d6 linux-3.0/drivers/net/Kconfig -16f1669b26a7e1138b15b5a60f3f2f13 linux-3.0/drivers/net/8390p.c -b20d161e8797c9bb65870d855e2a6731 linux-3.0/drivers/net/8390.h -2bd032b83c85f82603f746b629152661 linux-3.0/drivers/net/8390.c -0590673c5a7f734147cae3157ffad70a linux-3.0/drivers/net/82596.c -657266374924bf9e84d27e8b524bdcf3 linux-3.0/drivers/net/8139too.c -cf1400688ac576d952a54a27a90d2be7 linux-3.0/drivers/net/8139cp.c -78ff06c66795f789d983fd9ada655c69 linux-3.0/drivers/net/7990.h -fe280be675bf5a9c9ec238efc43509b7 linux-3.0/drivers/net/7990.c -e29cff36ba36b07b517711bf4dc73193 linux-3.0/drivers/net/3c59x.c -c0a7d674536c44e9299e88f66aae6d3e linux-3.0/drivers/net/3c527.h -fef2f46257ee857089037078ce75d733 linux-3.0/drivers/net/3c527.c -834a03822542aa80773f608a9f83680a linux-3.0/drivers/net/3c523.h -f29f13f47a55e36a1452d2983adffaf9 linux-3.0/drivers/net/3c523.c -c52ac26d796863bcc91b96f6a6a83716 linux-3.0/drivers/net/3c515.c -3082d8fa5ac427ce9730cf1dcc6803b9 linux-3.0/drivers/net/3c509.c -a8ea016c36e557d979265b3d130d3471 linux-3.0/drivers/net/3c507.c -087ddc86132d196491852bc3472d7115 linux-3.0/drivers/net/3c505.h -c490c39f246dc1661accfe08ca254e17 linux-3.0/drivers/net/3c505.c -0bfd16c74f6aa6743d2df87c668470e0 linux-3.0/drivers/net/3c503.h -a5eab2fd30e0a3aa4886ec3ef27de923 linux-3.0/drivers/net/3c503.c -60d6c5391b2c4de46f10b699eb23370c linux-3.0/drivers/net/3c501.h -90cb3785581c07e552080fc7b02b88ed linux-3.0/drivers/net/3c501.c -a198d1a5ba2beb0ced53b466e08b4972 linux-3.0/drivers/mtd/ubi/wl.c -14244f49f5a1b640b932f8741d487934 linux-3.0/drivers/mtd/ubi/vtbl.c -a289e709cc48d4e260516764ca21a61a linux-3.0/drivers/mtd/ubi/vmt.c -c998b32002008765488dd837bd7a2b27 linux-3.0/drivers/mtd/ubi/upd.c -d532b60601794b09b1d981d83386d251 linux-3.0/drivers/mtd/ubi/ubi.h -f6f672f2a07f2f6cf183ccbea662468b linux-3.0/drivers/mtd/ubi/ubi-media.h -17bdb30d1f134c03ffd469f451b386c2 linux-3.0/drivers/mtd/ubi/scan.h -d4990cc9388e08f0127d6e53e575c90e linux-3.0/drivers/mtd/ubi/scan.c -bdd573004f2d406414216c57c28eed6d linux-3.0/drivers/mtd/ubi/misc.c -87f6817a8aad1aad44fb51a5e57a3228 linux-3.0/drivers/mtd/ubi/kapi.c -7418e8a0c1283e5df05ddd419fa6389f linux-3.0/drivers/mtd/ubi/io.c -55db3183affd16e3a61af286b5e54188 linux-3.0/drivers/mtd/ubi/gluebi.c -99a976c70f614887a10c7bcf8a8e033a linux-3.0/drivers/mtd/ubi/eba.c -8d14cfda394fe7f4da1c95e05202e84a linux-3.0/drivers/mtd/ubi/debug.h -d591193698fba7fd6609a51f557e90cf linux-3.0/drivers/mtd/ubi/debug.c -4c76ce4482ac504e2160aab5032d0727 linux-3.0/drivers/mtd/ubi/cdev.c -b2af506499b89414bdc42b19620de71a linux-3.0/drivers/mtd/ubi/build.c -9a3fbd444422f047ca990f126a1aa40b linux-3.0/drivers/mtd/ubi/Makefile -ee52ff78056d349e6029fa49d9fc5447 linux-3.0/drivers/mtd/ubi/Kconfig -a16a1a45ff34a17401b1b4574b5b552f linux-3.0/drivers/mtd/tests/mtd_torturetest.c -c58197ff590347b01ecc2b78c682db98 linux-3.0/drivers/mtd/tests/mtd_subpagetest.c -c5b239ac5d3a6d58c43812df2c2cf322 linux-3.0/drivers/mtd/tests/mtd_stresstest.c -672bfab52e7866aba26b36d05b2312c6 linux-3.0/drivers/mtd/tests/mtd_speedtest.c -36bc82a98f60c4363203007a2c03ad5c linux-3.0/drivers/mtd/tests/mtd_readtest.c -df3051e06341c4d05627424c1456bdc2 linux-3.0/drivers/mtd/tests/mtd_pagetest.c -40c4bfc71d2e95950bf5ff4c28220be9 linux-3.0/drivers/mtd/tests/mtd_oobtest.c -b241ef375ad49f0d9a55b792e89d682b linux-3.0/drivers/mtd/tests/mtd_nandecctest.c -5330f42befa0b46d07ca504a8b64248f linux-3.0/drivers/mtd/tests/Makefile -6e410b0d8cd207f27f7dbd7ed3e27071 linux-3.0/drivers/mtd/ssfdc.c -93b6bc51d34b359659651c0faef4d6d9 linux-3.0/drivers/mtd/sm_ftl.h -aa55913d81e9e43f82028edd94ec72a8 linux-3.0/drivers/mtd/sm_ftl.c -e330c3e6a605b8fb8607a38619f69ec3 linux-3.0/drivers/mtd/rfd_ftl.c -21ce49fec27e38723f0252780a61981d linux-3.0/drivers/mtd/redboot.c -3d4f32b1240f4330fb4f83e459ac8f73 linux-3.0/drivers/mtd/onenand/samsung.c -8da7687acfaed799ae560c844d844671 linux-3.0/drivers/mtd/onenand/onenand_sim.c -f2f468b312bde3291695b0d4d9b577b7 linux-3.0/drivers/mtd/onenand/onenand_bbt.c -d8dec3064896930aa8a37a44d2b9bc14 linux-3.0/drivers/mtd/onenand/onenand_base.c -5e6764856069441b2886cbf878d2c196 linux-3.0/drivers/mtd/onenand/omap2.c -cf3cd9113f77cd826193669ad1ec624b linux-3.0/drivers/mtd/onenand/generic.c -aa36f140eaffcabe918fa85805c0c249 linux-3.0/drivers/mtd/onenand/Makefile -e4390e761043068fd0b50e650b69b901 linux-3.0/drivers/mtd/onenand/Kconfig -51c57e2a2f8a5944768c037ee7fe552c linux-3.0/drivers/mtd/ofpart.c -8a9161022e24d982515185718bc882ed linux-3.0/drivers/mtd/nftlmount.c -c89450a15755fff73ccf5ded2093bf27 linux-3.0/drivers/mtd/nftlcore.c -3b0f7ed6a162ee299de5b9f6aa0433d7 linux-3.0/drivers/mtd/nand/txx9ndfmc.c -31a0ad6406951e9e3b2903fbdb72ed97 linux-3.0/drivers/mtd/nand/tmio_nand.c -774f0e6376e1706a96ed9753e9c95284 linux-3.0/drivers/mtd/nand/spia.c -fa212cd188c9a68976393de642bea9b0 linux-3.0/drivers/mtd/nand/socrates_nand.c -c4efccf6301363c71b52bdc4174115d7 linux-3.0/drivers/mtd/nand/sm_common.h -c32af48b84f07676185133319a61a42e linux-3.0/drivers/mtd/nand/sm_common.c -a932d2e3e3d01f7ae63ec89f3ca4c03d linux-3.0/drivers/mtd/nand/sharpsl.c -6d4d810a30af2e3f0b0135fa1db14875 linux-3.0/drivers/mtd/nand/sh_flctl.c -0129b4db653072c6292b257f011d0393 linux-3.0/drivers/mtd/nand/s3c2410.c -ebcdae6b638af040b7808c4774798bb3 linux-3.0/drivers/mtd/nand/rtc_from4.c -9f40c7aab4bb046f0a07de18c2685a27 linux-3.0/drivers/mtd/nand/r852.h -c6a9ed676fea6c1953ad199a2190c665 linux-3.0/drivers/mtd/nand/r852.c -2a15e132543092dddcc09a54e673e315 linux-3.0/drivers/mtd/nand/pxa3xx_nand.c -206843d83a378d1646c90bad5f624a4e linux-3.0/drivers/mtd/nand/ppchameleonevb.c -5f3a87a32d82b061fb9b4006b4b8b56e linux-3.0/drivers/mtd/nand/plat_nand.c -2b14470246f964aae9f6824fb576a6f7 linux-3.0/drivers/mtd/nand/pasemi_nand.c -7b1c278e4a63847bbed214b375b95a06 linux-3.0/drivers/mtd/nand/orion_nand.c -6d8c6a32648973333897c4a5f236a959 linux-3.0/drivers/mtd/nand/omap2.c -91fb32805ab857689be418664e9abaab linux-3.0/drivers/mtd/nand/nuc900_nand.c -09f24aa8b683c1ede8a622b7a2f8a8b3 linux-3.0/drivers/mtd/nand/nomadik_nand.c -c17341d015a996fac384eb6f97ea2c6a linux-3.0/drivers/mtd/nand/ndfc.c -48e2b6ddcb513f865deaf5b95975e5b7 linux-3.0/drivers/mtd/nand/nandsim.c -4ee14014e168990e1f1c18278587ec56 linux-3.0/drivers/mtd/nand/nand_ids.c -7ac4e9be96fa88116d8eec0e5e0e935d linux-3.0/drivers/mtd/nand/nand_ecc.c -b9b461fb5d9127fc5625fd20bcd21312 linux-3.0/drivers/mtd/nand/nand_bcm_umi.h -6e0138f53788e30b12c97cdd8082e5d0 linux-3.0/drivers/mtd/nand/nand_bcm_umi.c -225ebb0c1a909b3aabb3d2fe9b3145fc linux-3.0/drivers/mtd/nand/nand_bch.c -f52d5d27fe8a99dbd73fe295c0f4383d linux-3.0/drivers/mtd/nand/nand_bbt.c -a6c48933e964dfecc92b07e1ba5d7b1f linux-3.0/drivers/mtd/nand/nand_base.c -b9a8517c3abe9b74fe91bbeb67100193 linux-3.0/drivers/mtd/nand/mxc_nand.c -434e0a4f271340d9a5f7f92b1ee7a064 linux-3.0/drivers/mtd/nand/mpc5121_nfc.c -7cb01444229e75ea368c2665cc8fbc01 linux-3.0/drivers/mtd/nand/jz4740_nand.c -4b52cc95f3957a14d923f0197fe02608 linux-3.0/drivers/mtd/nand/h1910.c -e73df1bdba49033e408bb3f737000866 linux-3.0/drivers/mtd/nand/gpio.c -77970a494bc6549609eb2f2f6ecd3158 linux-3.0/drivers/mtd/nand/fsmc_nand.c -0d304f5c0adcbab4d8467ffb5e4426d5 linux-3.0/drivers/mtd/nand/fsl_upm.c -deb52a984b3a8eed60d54a96603a0cb6 linux-3.0/drivers/mtd/nand/fsl_elbc_nand.c -dd88b4ac9914acb8d3b6cb492e3c7114 linux-3.0/drivers/mtd/nand/edb7312.c -a1cbbed8691c4033d71d4692f9935cfb linux-3.0/drivers/mtd/nand/diskonchip.c -86b36ac3b24769c615d04218177c2cf1 linux-3.0/drivers/mtd/nand/denali.h -c2a0d62f765374b4ba15225a98ce5e9a linux-3.0/drivers/mtd/nand/denali.c -978c2effa15889a576fef329910baaad linux-3.0/drivers/mtd/nand/davinci_nand.c -d6453838bab8dbbdcc53d6004404ce4b linux-3.0/drivers/mtd/nand/cs553x_nand.c -0556b93971a994e30aadb0b36f8e10d9 linux-3.0/drivers/mtd/nand/cmx270_nand.c -3eccc9fe9ef29fb7ed09199432e7a47b linux-3.0/drivers/mtd/nand/cafe_nand.c -69889a545cd383b04b1a2769deb89d80 linux-3.0/drivers/mtd/nand/bf5xx_nand.c -317de8254d5dfbae6ee2ba07de493a24 linux-3.0/drivers/mtd/nand/bcm_umi_nand.c -1c752a4661f76c3b1a18fca8afa2a183 linux-3.0/drivers/mtd/nand/bcm_umi_bch.c -641ff9ac3a56602fb540a3295c09d893 linux-3.0/drivers/mtd/nand/autcpu12.c -3f810f892300161a71f0e16cefd972ad linux-3.0/drivers/mtd/nand/au1550nd.c -2ffef6b82ed65ce2bb77dec18969aaf2 linux-3.0/drivers/mtd/nand/atmel_nand_ecc.h -80686b80914d4e1c9b776bdb64601bbe linux-3.0/drivers/mtd/nand/atmel_nand.c -22a8703a82711bcc12f7302fd495ace7 linux-3.0/drivers/mtd/nand/ams-delta.c -d0e6fe036e4d0a0c2a8d15fc85eb0011 linux-3.0/drivers/mtd/nand/alauda.c -63b9c8470c64b9554249e7b64f9305b1 linux-3.0/drivers/mtd/nand/Makefile -343b93ae8e44dadec1ecebe4740bf555 linux-3.0/drivers/mtd/nand/Kconfig -9fea31001b191ada81c57aefe1fd9077 linux-3.0/drivers/mtd/mtdswap.c -ae34703c99b2189dfaa91c3577fa4a40 linux-3.0/drivers/mtd/mtdsuper.c -8eda5269f69ab621e63698d4fd4bfc96 linux-3.0/drivers/mtd/mtdpart.c -9c39704214c2dfa9f04e856d1231e88c linux-3.0/drivers/mtd/mtdoops.c -2aadc85108526b74f652974039070489 linux-3.0/drivers/mtd/mtdcore.h -e4f276c0fe17440a5edf9e65a55866e6 linux-3.0/drivers/mtd/mtdcore.c -8c6decd62fb032aed45b9867a2785167 linux-3.0/drivers/mtd/mtdconcat.c -66b342b623e289d0ac75bdb7efd6e08a linux-3.0/drivers/mtd/mtdchar.c -65d8b97de12fc38b9b2eead2c71265f3 linux-3.0/drivers/mtd/mtdblock_ro.c -54c4a9dfed09f58035b496df4aac8db3 linux-3.0/drivers/mtd/mtdblock.c -b348280700751534c84cccb07a21a29c linux-3.0/drivers/mtd/mtd_blkdevs.c -8c54d550b54269a6218d051e978bb570 linux-3.0/drivers/mtd/maps/wr_sbc82xx_flash.c -ce2c4b7f195d8cced7a6f017b50d949d linux-3.0/drivers/mtd/maps/vmu-flash.c -45e0709da06f9f58dbce0860d0a7fcc0 linux-3.0/drivers/mtd/maps/vmax301.c -059f2eccdfbae8b7e99cebe3e9343572 linux-3.0/drivers/mtd/maps/uclinux.c -b4cde20fab7674c07ea1265a2fb59d1e linux-3.0/drivers/mtd/maps/tsunami_flash.c -bf546a72084efd079dc8d9411ab62c55 linux-3.0/drivers/mtd/maps/ts5500_flash.c -e62ebb9e44ba9055fb1e0e72b265c29e linux-3.0/drivers/mtd/maps/tqm8xxl.c -26d8688e368d36477e6a0750dfbe2b28 linux-3.0/drivers/mtd/maps/sun_uflash.c -cbf87504e4a4f68a135ff8c2891c3554 linux-3.0/drivers/mtd/maps/solutionengine.c -7dd991d7ef5bdf1c84613a697d44c377 linux-3.0/drivers/mtd/maps/scx200_docflash.c -f5bdd1ad4710e882cea2c358076e67f2 linux-3.0/drivers/mtd/maps/scb2_flash.c -ce50029c1d9fdb9c90e17d4e413d545d linux-3.0/drivers/mtd/maps/sc520cdp.c -73a6c66ef7a2c2db265db06be5ed611e linux-3.0/drivers/mtd/maps/sbc_gxx.c -304824efbadf5c9558e4e63d93407262 linux-3.0/drivers/mtd/maps/sa1100-flash.c -162bffbbaf20b8e4de45c7cfb68a454f linux-3.0/drivers/mtd/maps/rpxlite.c -621872824edc8818fafbaf92c1b61cce linux-3.0/drivers/mtd/maps/rbtx4939-flash.c -21a1d4de94197de8f490b036f6acc8b5 linux-3.0/drivers/mtd/maps/pxa2xx-flash.c -bce8222659133fc3808a2e743830bd40 linux-3.0/drivers/mtd/maps/pmcmsp-flash.c -b04f2d43f7702cf66bc12699e0194ab0 linux-3.0/drivers/mtd/maps/plat-ram.c -94b17954c21adda837654183bbcb7f2a linux-3.0/drivers/mtd/maps/pismo.c -93e78d74e100f09f374fcd3631869aa5 linux-3.0/drivers/mtd/maps/physmap_of.c -1b99b755bb86bf5e0d3360dfcccf5472 linux-3.0/drivers/mtd/maps/physmap.c -32bbc89c67fcd219ba6d037c12dcd804 linux-3.0/drivers/mtd/maps/pcmciamtd.c -ebf3d3218dd4e59839a71dbe6b97abd2 linux-3.0/drivers/mtd/maps/pci.c -988fa7e15f4bff3324b8006727e66c55 linux-3.0/drivers/mtd/maps/octagon-5066.c -db8f3cc7e50714920a10435e9f0a3aa7 linux-3.0/drivers/mtd/maps/nettel.c -5554fa878381054e448f3bc8159bf2f1 linux-3.0/drivers/mtd/maps/netsc520.c -1a944f2cb4edd7cb02b64638e62ba506 linux-3.0/drivers/mtd/maps/mbx860.c -627a2604f54c3c9177daaa64ae42aa3b linux-3.0/drivers/mtd/maps/map_funcs.c -e3e24f212333ec97baf36f9df61138a5 linux-3.0/drivers/mtd/maps/latch-addr-flash.c -0271fc21212b3211a098ab6559bcf327 linux-3.0/drivers/mtd/maps/lantiq-flash.c -e9ee5001ada356fe0b5b97a6dd580e33 linux-3.0/drivers/mtd/maps/l440gx.c -2cbed544c3a2401897ddbfc120b59207 linux-3.0/drivers/mtd/maps/ixp4xx.c -09851f8c41d4a015d2f4d920abe4293b linux-3.0/drivers/mtd/maps/ixp2000.c -e0e7ee7cb62aaecbe97ebb58ecb2332c linux-3.0/drivers/mtd/maps/intel_vr_nor.c -ddc8c3dca980c381ac23dfed3a9c1e60 linux-3.0/drivers/mtd/maps/impa7.c -f90750873a5e6dc8b8fb644f5908b984 linux-3.0/drivers/mtd/maps/ichxrom.c -f83343a5d0c7937b5a3b60a4f3ac6050 linux-3.0/drivers/mtd/maps/h720x-flash.c -3f3f36c8de4c300cd0f07a4ba8f1c2f4 linux-3.0/drivers/mtd/maps/gpio-addr-flash.c -49464e928a8314ce2939c67557897b90 linux-3.0/drivers/mtd/maps/fortunet.c -249554f86badc72da3288b3054c0b4eb linux-3.0/drivers/mtd/maps/esb2rom.c -6fbba7fde9029bf7e4a37b65b331dccd linux-3.0/drivers/mtd/maps/edb7312.c -146b59c89eee9ddf7d3acfbd7bebb19d linux-3.0/drivers/mtd/maps/dmv182.c -e51e5e8fcea630215775ab24796be465 linux-3.0/drivers/mtd/maps/dilnetpc.c -cb0a5752bf227df7fcaacdae1585780c linux-3.0/drivers/mtd/maps/dc21285.c -2d359deff981af67f54e42425e3a0513 linux-3.0/drivers/mtd/maps/dbox2-flash.c -d3f4b04077a2ba7c9257042a79e45382 linux-3.0/drivers/mtd/maps/ck804xrom.c -1ed58c78a1ab033a483e06ede9c3fa6d linux-3.0/drivers/mtd/maps/cfi_flagadm.c -30ec0e05220a426be28c3be398e0fbd4 linux-3.0/drivers/mtd/maps/ceiva.c -667069533bd6e5b98073b8d5cef07610 linux-3.0/drivers/mtd/maps/cdb89712.c -43fae89370a59c26a2d9895c76c31537 linux-3.0/drivers/mtd/maps/bfin-async-flash.c -dca856b5c7a4e19cbef0ff85d7b3c305 linux-3.0/drivers/mtd/maps/bcm963xx-flash.c -a81224b272c8f1059b203858189c8d6c linux-3.0/drivers/mtd/maps/autcpu12-nvram.c -316eef53a36b6adcc228fff8bb7746ca linux-3.0/drivers/mtd/maps/amd76xrom.c -ffb2f6d0d732f47f538e11caad09a5ee linux-3.0/drivers/mtd/maps/Makefile -89ded48c13b90a0513141d62b338a94f linux-3.0/drivers/mtd/maps/Kconfig -6bad427b2e49365ccc162a5fbbf59f6d linux-3.0/drivers/mtd/lpddr/qinfo_probe.c -794148b902e9e6f9064e6414c55e49df linux-3.0/drivers/mtd/lpddr/lpddr_cmds.c -aff03d0a90e69af573313f511561d110 linux-3.0/drivers/mtd/lpddr/Makefile -110967efd1bde4c2806329506c1553fc linux-3.0/drivers/mtd/lpddr/Kconfig -238b0395b23e7a9bebd49fbedfb3f34c linux-3.0/drivers/mtd/inftlmount.c -18a98d6c5dd1fbfd2b4ee87ae0b241be linux-3.0/drivers/mtd/inftlcore.c -87f14016e63dd67ceb53460a86403ce7 linux-3.0/drivers/mtd/ftl.c -637eda801ff9c4bbbf389ca76ddee2a5 linux-3.0/drivers/mtd/devices/sst25l.c -6554276bebd701bfde8b08a25fd32e34 linux-3.0/drivers/mtd/devices/slram.c -020b27254d13d62646c77146fae8315d linux-3.0/drivers/mtd/devices/pmc551.c -9a1c3b1d580ee5a72766c8665c2ee05a linux-3.0/drivers/mtd/devices/phram.c -c593924cd4a648c888519612e5588e76 linux-3.0/drivers/mtd/devices/mtdram.c -a744e1f77774300e1ce17342bb6cce1c linux-3.0/drivers/mtd/devices/mtd_dataflash.c -d9ff2ae989008d4919da3e4663171500 linux-3.0/drivers/mtd/devices/ms02-nv.h -0a2af3aa6403fd9251d4ef14ec3cd9d2 linux-3.0/drivers/mtd/devices/ms02-nv.c -bc38285ba5952a800f985097af44c183 linux-3.0/drivers/mtd/devices/m25p80.c -ab115ce33e24c0954bc5fb6e859892c3 linux-3.0/drivers/mtd/devices/lart.c -481a31fa4322d7acf74bbdce4db4838b linux-3.0/drivers/mtd/devices/docprobe.c -c8683eb039161856679a774bf8af0eab linux-3.0/drivers/mtd/devices/docecc.c -74823df652412efce23ad1ea6e3796b3 linux-3.0/drivers/mtd/devices/doc2001plus.c -7ed8a14883fe2e54b76c0e5002928c9d linux-3.0/drivers/mtd/devices/doc2001.c -ee2880301af6844367a35d2c1536162a linux-3.0/drivers/mtd/devices/doc2000.c -6866e715deff00a661027a4fc5672a33 linux-3.0/drivers/mtd/devices/block2mtd.c -97deedc4cfa898adf7a17565ef16c822 linux-3.0/drivers/mtd/devices/Makefile -a6a5a442cf0b0939e59f766f33d7dd83 linux-3.0/drivers/mtd/devices/Kconfig -037d175e02f5ad2800b78ddb31ef6e33 linux-3.0/drivers/mtd/cmdlinepart.c -fac116def88be8241ea10d92bd46455c linux-3.0/drivers/mtd/chips/map_rom.c -7652a7cb926b4f96ff630c7a1610f52d linux-3.0/drivers/mtd/chips/map_ram.c -6631cfd8241c6e85414d402ed55bb134 linux-3.0/drivers/mtd/chips/map_absent.c -a0accb9e98c7fe86ee228ac4707c27b6 linux-3.0/drivers/mtd/chips/jedec_probe.c -1eddbba0de11bb8bbe2648c7d1429fc2 linux-3.0/drivers/mtd/chips/gen_probe.c -d26dec074b3613a23a59eac931daf8bd linux-3.0/drivers/mtd/chips/fwh_lock.h -a3d214a50be73aca81b6aa33bb7bde3f linux-3.0/drivers/mtd/chips/chipreg.c -010a750da82ae443b923a7a5415ef7af linux-3.0/drivers/mtd/chips/cfi_util.c -55eb536c3986e51e8bf707730e7af481 linux-3.0/drivers/mtd/chips/cfi_probe.c -3dc1ad106888759a9f35e327c984cdb4 linux-3.0/drivers/mtd/chips/cfi_cmdset_0020.c -3ee74a3c3988415e69dacbbf803e36f2 linux-3.0/drivers/mtd/chips/cfi_cmdset_0002.c -2659158694ac726b5de94585e30f0642 linux-3.0/drivers/mtd/chips/cfi_cmdset_0001.c -bca38ac0f1e9258c263b86e6ba1bc416 linux-3.0/drivers/mtd/chips/Makefile -e1a9295dce19838990479dd9de23aa78 linux-3.0/drivers/mtd/chips/Kconfig -dc7a407cdc0c239b4642f5f8bdca390a linux-3.0/drivers/mtd/ar7part.c -66301e78b5e2d6361772408e747ca888 linux-3.0/drivers/mtd/afs.c -669325bd2bb2969c7374491b5d403467 linux-3.0/drivers/mtd/Makefile -6ce3b05260d80cb6e0e33ea7166666f9 linux-3.0/drivers/mtd/Kconfig -6461f05d45ccc13fb698af05b3088df8 linux-3.0/drivers/mmc/host/wbsd.h -94b553513cd8a72291a271c34d0b2d01 linux-3.0/drivers/mmc/host/wbsd.c -b9fb14f4534e20c8335f6b40878a4e93 linux-3.0/drivers/mmc/host/vub300.c -149d73f0b0c5ddbedc1b4d6f4556439d linux-3.0/drivers/mmc/host/via-sdmmc.c -1ffd6e9e338630b2905618cc7da7d4fe linux-3.0/drivers/mmc/host/ushc.c -819a0850c4d19962411d8edc560f7ba4 linux-3.0/drivers/mmc/host/tmio_mmc_pio.c -ef1d762e67c2e102cd4d6ca301830d08 linux-3.0/drivers/mmc/host/tmio_mmc_dma.c -49cb7b8c5e568aafee4bfeba90804950 linux-3.0/drivers/mmc/host/tmio_mmc.h -f5084822fdbc4c285ed330992cc790f7 linux-3.0/drivers/mmc/host/tmio_mmc.c -18a654eb09650c7bc618c293700f15f8 linux-3.0/drivers/mmc/host/tifm_sd.c -2759c65563e53d92f0027a94e83d67a7 linux-3.0/drivers/mmc/host/sh_mobile_sdhi.c -a5e837a5a63add9140e8fbafecd6cb11 linux-3.0/drivers/mmc/host/sh_mmcif.c -e29b164a1aadad45c84cb3801b04122f linux-3.0/drivers/mmc/host/sdricoh_cs.c -f682935e9c2de38e316fef173c38a295 linux-3.0/drivers/mmc/host/sdhci.h -684b650847254e89b9aaef201ebcb966 linux-3.0/drivers/mmc/host/sdhci.c -8fd06520a237ceb713ea3943296be6a5 linux-3.0/drivers/mmc/host/sdhci-tegra.c -960f97b33692f5e66b6770141422ff51 linux-3.0/drivers/mmc/host/sdhci-spear.c -62c528849aa54c6c94f8c29871689e2a linux-3.0/drivers/mmc/host/sdhci-s3c.c -5ccabfd82efd24221aac201bad0c1d45 linux-3.0/drivers/mmc/host/sdhci-pxa.c -3c0ca6d0f8795eb5ed89c1ed09136872 linux-3.0/drivers/mmc/host/sdhci-pltfm.h -489d17df1310dbee6ac3cadb0d6e262a linux-3.0/drivers/mmc/host/sdhci-pltfm.c -f0a3e87b60df0c85d7cb37a9fdbe6e55 linux-3.0/drivers/mmc/host/sdhci-pci.c -0a026da4b3022c60ec45812043530715 linux-3.0/drivers/mmc/host/sdhci-of.h -ec28e67b04b0582c1634bca074876eb1 linux-3.0/drivers/mmc/host/sdhci-of-hlwd.c -c7096d5bdcacc2f3decda8caa43d67f4 linux-3.0/drivers/mmc/host/sdhci-of-esdhc.c -f1391685f3ec21cfbbd5e837a922f706 linux-3.0/drivers/mmc/host/sdhci-of-core.c -368eed9e6164737bae6e1a972e05cddb linux-3.0/drivers/mmc/host/sdhci-esdhc.h -deb0043b9acadaeb16307124f254ee79 linux-3.0/drivers/mmc/host/sdhci-esdhc-imx.c -d32e9eeb89586fa9a20eba39bdb70b2a linux-3.0/drivers/mmc/host/sdhci-dove.c -12b85a555d6cbca88d2e5d5784652ddd linux-3.0/drivers/mmc/host/sdhci-cns3xxx.c -18fe8c99331c0628ec38b4a57fa419b4 linux-3.0/drivers/mmc/host/s3cmci.h -839201e4f4c80e5f638ba782d76083e1 linux-3.0/drivers/mmc/host/s3cmci.c -7f87e4c98f1663a40f0afca193a60c4a linux-3.0/drivers/mmc/host/pxamci.h -0f1e5a906504bcaa01db1a61dfd6a9ce linux-3.0/drivers/mmc/host/pxamci.c -071edfd7cdc21dad50a54e4b914f8320 linux-3.0/drivers/mmc/host/omap_hsmmc.c -f18e1d1707f4e1ba4b394e59565c6699 linux-3.0/drivers/mmc/host/omap.c -6633a8eeae870ea620a885ad5d97fcc7 linux-3.0/drivers/mmc/host/of_mmc_spi.c -b11079fd50cc00f740d4b5457c4e26b2 linux-3.0/drivers/mmc/host/mxs-mmc.c -218742aa936d6d0ebddb710bc2229dae linux-3.0/drivers/mmc/host/mxcmmc.c -10a7a23b1f5bd3d9b1ccd82ad219caa9 linux-3.0/drivers/mmc/host/mvsdio.h -6de59e360a54f52c7f71f47c79c7b539 linux-3.0/drivers/mmc/host/mvsdio.c -93b4326752312ab623b067066c0066c7 linux-3.0/drivers/mmc/host/msm_sdcc.h -8ed99f043190fd6ff345bb01bbfd62a8 linux-3.0/drivers/mmc/host/msm_sdcc.c -36d0d75b0438401fad7abffeb64f3252 linux-3.0/drivers/mmc/host/mmci.h -d4fccf776e95f31b9ad3436dc42c724f linux-3.0/drivers/mmc/host/mmci.c -a04bc8686efda62f9c8412cb335285b7 linux-3.0/drivers/mmc/host/mmc_spi.c -78642457c8e0bda2065ba49567f5f304 linux-3.0/drivers/mmc/host/jz4740_mmc.c -a3a159a2b54b5aa3f6bd69883cdb81cc linux-3.0/drivers/mmc/host/imxmmc.h -b79b5cb0c0d5f0ee1c9cf8d3ec414e27 linux-3.0/drivers/mmc/host/imxmmc.c -8f5a60891b015b7ac2410aff49c5000f linux-3.0/drivers/mmc/host/dw_mmc.h -083b07f9cee4ecf6596162c4b520a9b0 linux-3.0/drivers/mmc/host/dw_mmc.c -d98d8d534077858d015c0c8a5a41f07f linux-3.0/drivers/mmc/host/davinci_mmc.c -aa3314d923256f5fa70ac752726af6ca linux-3.0/drivers/mmc/host/cb710-mmc.h -a1a8a16d44be58c147b5506897d422d9 linux-3.0/drivers/mmc/host/cb710-mmc.c -edc4be6ce2a5e6ade8d086ccb762517b linux-3.0/drivers/mmc/host/bfin_sdh.c -15365c034d06b2385f13c10acd3cd9fc linux-3.0/drivers/mmc/host/au1xmmc.c -2364f875a1fbc37589f99a9ec6280093 linux-3.0/drivers/mmc/host/atmel-mci.c -d9f3504355c211eb375415d8a35d2d5a linux-3.0/drivers/mmc/host/atmel-mci-regs.h -9c2a0ce79ddf61c7c200f3a73ba8ac17 linux-3.0/drivers/mmc/host/at91_mci.c -5eb4bc0be75ff0ae7ba04270d7ac13c2 linux-3.0/drivers/mmc/host/Makefile -76b6ff7ab932d2f146b81da744eba6b7 linux-3.0/drivers/mmc/host/Kconfig -788a8bb2dbf45928a9395792c263cdc4 linux-3.0/drivers/mmc/core/sdio_ops.h -e7504e4cb6924a39f8e1f48233d141a0 linux-3.0/drivers/mmc/core/sdio_ops.c -cf7a003facc78c25cbfa39e32e869271 linux-3.0/drivers/mmc/core/sdio_irq.c -67bd553eb1ef3753e93147131b2af128 linux-3.0/drivers/mmc/core/sdio_io.c -efcab98d6520c84871e5cdd624d093f0 linux-3.0/drivers/mmc/core/sdio_cis.h -b7b0e1fac5fc10a85e3c4f7de9ff80df linux-3.0/drivers/mmc/core/sdio_cis.c -c85fcbc2f7d683bba383ca1223181b44 linux-3.0/drivers/mmc/core/sdio_bus.h -81d5c8cfa741e2a7e18f607df9889d88 linux-3.0/drivers/mmc/core/sdio_bus.c -2ee1d61b4454eda21d3ab7fd01d70337 linux-3.0/drivers/mmc/core/sdio.c -2b4b82cea73c7e3a686523b0a92c5730 linux-3.0/drivers/mmc/core/sd_ops.h -46cddb494e406cded540d6a7960b4bc8 linux-3.0/drivers/mmc/core/sd_ops.c -5e60c632408632c03961fea3c61beec2 linux-3.0/drivers/mmc/core/sd.h -59fa744e7dc405ee684ac1a75ecb015e linux-3.0/drivers/mmc/core/sd.c -731f7a8ccf67ceb53f662ab12d16046a linux-3.0/drivers/mmc/core/quirks.c -42a10ecc7aa8a014fc5d5cea9d2aa170 linux-3.0/drivers/mmc/core/mmc_ops.h -c4b7e10baf7fba7e0bd13757bcf8b42c linux-3.0/drivers/mmc/core/mmc_ops.c -6790af2fb6d723925acdb8d7dd1ec8cc linux-3.0/drivers/mmc/core/mmc.c -b1adb669e3c1e09ead0b41676899bc9f linux-3.0/drivers/mmc/core/host.h -4be36045b22225f48dbec20469690f15 linux-3.0/drivers/mmc/core/host.c -0dea58b49640c5def5e66fbef2767d15 linux-3.0/drivers/mmc/core/debugfs.c -10ad2a2ed15c424d02007743b348582d linux-3.0/drivers/mmc/core/core.h -46a7fb6d7ccdd39f9a19a4f2160be9dc linux-3.0/drivers/mmc/core/core.c -5696e17644b0357c58762f7464305112 linux-3.0/drivers/mmc/core/bus.h -379c2ef4e74444e03feb8dab55fd1cf8 linux-3.0/drivers/mmc/core/bus.c -5111846d2aa84e803dedc498bb51947a linux-3.0/drivers/mmc/core/Makefile -47225ad1c9022b94142504861104ffd8 linux-3.0/drivers/mmc/core/Kconfig -8675a8aa513c19c7cd131768236a70f0 linux-3.0/drivers/mmc/card/sdio_uart.c -0779b832ed3dc10296026b7c582eddc7 linux-3.0/drivers/mmc/card/queue.h -29ac49592a07b1b396e30202ebd02ffa linux-3.0/drivers/mmc/card/queue.c -868d7d783403d0a4fa2d45c5c8269b98 linux-3.0/drivers/mmc/card/mmc_test.c -e1e704f5fdcbb4e23a95b97be1ee9895 linux-3.0/drivers/mmc/card/block.c -e1cc84f5753101464e8d1307d5fe07de linux-3.0/drivers/mmc/card/Makefile -28fad898f8ff02ed025447d0b0b898fa linux-3.0/drivers/mmc/card/Kconfig -6d1c8def57912fad4f8be8f3a0f4b7dd linux-3.0/drivers/mmc/Makefile -1245f72571fa304e60bb75bd42aa33f0 linux-3.0/drivers/mmc/Kconfig -f5d702c601bd77c2e5b4cf32276b1359 linux-3.0/drivers/misc/vmw_balloon.c -0389571b023845cdadcbcb41bf81eeae linux-3.0/drivers/misc/tsl2550.c -54580f4932b9fe33ec01dd209dbf4541 linux-3.0/drivers/misc/tifm_core.c -cd0a281b3d693caf7a903ec8485cf48c linux-3.0/drivers/misc/tifm_7xx1.c -77a2ff3c4d4f15c7708b2caa6a0fc420 linux-3.0/drivers/misc/ti_dac7512.c -fc7dbbac7239907941d12894ff12c79f linux-3.0/drivers/misc/ti-st/st_ll.c -73dbe6f17c58dd451014c2a71a2d03f3 linux-3.0/drivers/misc/ti-st/st_kim.c -0d2fe38a769648836d39f874787903fa linux-3.0/drivers/misc/ti-st/st_core.c -a6ac043f2ff8bcd2b5e84dfc85435aae linux-3.0/drivers/misc/ti-st/Makefile -902340c56bed8d9e91ab9f9296f10f64 linux-3.0/drivers/misc/ti-st/Kconfig -3ff333470a81b9ad5471857705834c06 linux-3.0/drivers/misc/spear13xx_pcie_gadget.c -4fb44d795502ad944c599511012bd2bf linux-3.0/drivers/misc/sgi-xp/xpnet.c -09e5381c46ce37bcbd10b2c43ecacd21 linux-3.0/drivers/misc/sgi-xp/xpc_uv.c -f9e52eb63bb1695cc3995a59bfeebe9d linux-3.0/drivers/misc/sgi-xp/xpc_sn2.c -55d528b90b4601bda4ce5a11cb4f4872 linux-3.0/drivers/misc/sgi-xp/xpc_partition.c -c9df150e6b7be5effd1eb6635ae94a3e linux-3.0/drivers/misc/sgi-xp/xpc_main.c -eca611bb6e68836436e53b0e2f0145b8 linux-3.0/drivers/misc/sgi-xp/xpc_channel.c -6775a5cadfe8786ff26005f5891b0c19 linux-3.0/drivers/misc/sgi-xp/xpc.h -318bb30b1bea099edc6160c5b46c262d linux-3.0/drivers/misc/sgi-xp/xp_uv.c -6216f8b3a16fbb55b473317e8211d1ca linux-3.0/drivers/misc/sgi-xp/xp_sn2.c -7f93f340882259590fa835b1af4a704a linux-3.0/drivers/misc/sgi-xp/xp_nofault.S -5545b058ab3b79a90f6b96da2c3507e1 linux-3.0/drivers/misc/sgi-xp/xp_main.c -740f9ebb506e299b2de13d548216f7be linux-3.0/drivers/misc/sgi-xp/xp.h -3d91232e7b15c206c7eff5ac5ce66d9b linux-3.0/drivers/misc/sgi-xp/Makefile -17472fdd76b266a265c6ebba0d9b3654 linux-3.0/drivers/misc/sgi-gru/grutlbpurge.c -62dee1f4f835b6b6435c931d70874568 linux-3.0/drivers/misc/sgi-gru/grutables.h -481f41684be463d5e2e75adb4b6bece3 linux-3.0/drivers/misc/sgi-gru/gruprocfs.c -e6e40e6181a6cbcc05070d0379aa8700 linux-3.0/drivers/misc/sgi-gru/grumain.c -551129d9e0785fc88be078cd6dd0a8e3 linux-3.0/drivers/misc/sgi-gru/grulib.h -e69332dfe265549a7cd861259d854034 linux-3.0/drivers/misc/sgi-gru/grukservices.h -51d3c56b0263ad1f546801dc991f1960 linux-3.0/drivers/misc/sgi-gru/grukservices.c -c14baeb2bf620628fc0190d30c9745f4 linux-3.0/drivers/misc/sgi-gru/grukdump.c -f45d45090ea5c865594a76f79f270139 linux-3.0/drivers/misc/sgi-gru/gruhandles.h -8abcd604f1a798bb5d249d045049558a linux-3.0/drivers/misc/sgi-gru/gruhandles.c -a616d0220fe947004c0afe4fefd00b86 linux-3.0/drivers/misc/sgi-gru/grufile.c -a998c51be492c13330148cc42fce7d5e linux-3.0/drivers/misc/sgi-gru/grufault.c -58be806ab0b797b7ce23443d9f089751 linux-3.0/drivers/misc/sgi-gru/gru_instructions.h -9a54d46389a28309339c07e608a3b146 linux-3.0/drivers/misc/sgi-gru/gru.h -528c598f10f06ead3032f5e8155667c1 linux-3.0/drivers/misc/sgi-gru/Makefile -7841b882f843a10c135ca2a3aba2246f linux-3.0/drivers/misc/pti.c -1fa05055c752c8df1e016feaec1352b6 linux-3.0/drivers/misc/phantom.c -b364fa69f894b4a4020ee0230ef93be6 linux-3.0/drivers/misc/pch_phub.c -b49e037c77f5832ca27d55581b6ef417 linux-3.0/drivers/misc/lkdtm.c -cbe825a4abd9599c9e2b401a5048fa22 linux-3.0/drivers/misc/lis3lv02d/lis3lv02d_spi.c -5103c27c1bd49bd9c0bf6cbe6f6a183c linux-3.0/drivers/misc/lis3lv02d/lis3lv02d_i2c.c -172e9abb24ceb81c52e95d7633ac322a linux-3.0/drivers/misc/lis3lv02d/lis3lv02d.h -6ce99b68af1a2768320fe200bc00f06d linux-3.0/drivers/misc/lis3lv02d/lis3lv02d.c -659181c755ce3f42caf45cee72646be4 linux-3.0/drivers/misc/lis3lv02d/Makefile -5f6cb9b4468c0b55775107ecfff7ff88 linux-3.0/drivers/misc/lis3lv02d/Kconfig -1837e1ccfa6b54df630e7ca208a2395f linux-3.0/drivers/misc/kgdbts.c -9cb07eb842912fe63ad5a55c10f0092f linux-3.0/drivers/misc/iwmc3200top/main.c -fc7ee2ed82b15aaf3453fa246cd6a64f linux-3.0/drivers/misc/iwmc3200top/log.h -e754b64c2a594bb89707f32d30f31f0e linux-3.0/drivers/misc/iwmc3200top/log.c -18fa3a2005b7a121e7b4c53ff08465bf linux-3.0/drivers/misc/iwmc3200top/iwmc3200top.h -5863c00a9168494297fa722d90045c0f linux-3.0/drivers/misc/iwmc3200top/fw-msg.h -1a9c952c7646545296712fb62a8def47 linux-3.0/drivers/misc/iwmc3200top/fw-download.c -b002566db7839b22cf5dcc8389fb2b6c linux-3.0/drivers/misc/iwmc3200top/debugfs.h -64b599d84e3a69a849e17f3ea4447037 linux-3.0/drivers/misc/iwmc3200top/debugfs.c -ab922084166860446c816a1026be4373 linux-3.0/drivers/misc/iwmc3200top/Makefile -79467ce7bf204ae3897a9f8aaa8d98d2 linux-3.0/drivers/misc/iwmc3200top/Kconfig -efdb6db982d0aa3f42b857493c7ce75f linux-3.0/drivers/misc/isl29020.c -19ab9997bb574cd8d9bacb6ab45f90ae linux-3.0/drivers/misc/isl29003.c -da24d94d54d1e16a743dc3cf58d82e6a linux-3.0/drivers/misc/ioc4.c -7d2f2a2ea66f157dcf3d13206c966bcc linux-3.0/drivers/misc/ics932s401.c -c550ad7064daa29139589b391a995aef linux-3.0/drivers/misc/ibmasm/uart.c -d7f4b79e572adbae1d632f31e732c7e8 linux-3.0/drivers/misc/ibmasm/remote.h -4dd2f34cf68f6d0bd9939863e9eae063 linux-3.0/drivers/misc/ibmasm/remote.c -d166dce231a07df61e6e065fa6f35c20 linux-3.0/drivers/misc/ibmasm/r_heartbeat.c -04f8b6d4df4ffa65c22d49670b3c24fa linux-3.0/drivers/misc/ibmasm/module.c -334cfd6ca58b8698ad648f1120a9843a linux-3.0/drivers/misc/ibmasm/lowlevel.h -3e5518465b75d2c235e4baf98d8d0174 linux-3.0/drivers/misc/ibmasm/lowlevel.c -a4476a97a6e419040270c744c208c46d linux-3.0/drivers/misc/ibmasm/ibmasmfs.c -c8eac4698fa510edb2800238b5d26ecc linux-3.0/drivers/misc/ibmasm/ibmasm.h -b0a4f1c74ddaf89f03c661df848a6573 linux-3.0/drivers/misc/ibmasm/i2o.h -a148ea232ca48bb230d1c671aa98b86f linux-3.0/drivers/misc/ibmasm/heartbeat.c -0ba7be6e13d8d1720361ab8c628983d9 linux-3.0/drivers/misc/ibmasm/event.c -c9b5516955d797b275e77d0ea3ae6020 linux-3.0/drivers/misc/ibmasm/dot_command.h -3ae08673710d76c538b41593ff4c0127 linux-3.0/drivers/misc/ibmasm/dot_command.c -cbc3997be87c81350f0e8a24b55088ff linux-3.0/drivers/misc/ibmasm/command.c -09f5a43eb142b7875870aaf4444db889 linux-3.0/drivers/misc/ibmasm/Makefile -b46d406f9fe375804e99424cd260d193 linux-3.0/drivers/misc/hpilo.h -b0afc17334885b5ecbbe9c6152c99c23 linux-3.0/drivers/misc/hpilo.c -c08010b5dc2ccffef7b49b97a22f2f69 linux-3.0/drivers/misc/hmc6352.c -4eb2b2c25d06a2fc6e226b521b500991 linux-3.0/drivers/misc/ep93xx_pwm.c -55d825d65854f5392c7434a444335622 linux-3.0/drivers/misc/enclosure.c -39369f4788c35a21ea0bc010d8f88daf linux-3.0/drivers/misc/eeprom/max6875.c -b2c550b53a47d4239c4c4e0d447fe84e linux-3.0/drivers/misc/eeprom/eeprom_93cx6.c -86b8f278b983a33e7ce57eb52d5d1926 linux-3.0/drivers/misc/eeprom/eeprom.c -63aab347e31d2a14ba87eebf7da643b6 linux-3.0/drivers/misc/eeprom/at25.c -dac01d199440bda4140e4bc556139921 linux-3.0/drivers/misc/eeprom/at24.c -5192cab57acdf847e846af9f730f8af1 linux-3.0/drivers/misc/eeprom/Makefile -c0fc09623628352b478706a3c81376cf linux-3.0/drivers/misc/eeprom/Kconfig -e271cb68963f2a5c5ec139d8500b4e39 linux-3.0/drivers/misc/ds1682.c -c7dee9f23c338cbf782598fad7f24516 linux-3.0/drivers/misc/cs5535-mfgpt.c -0a3ba730fe0aab48410fba651377696a linux-3.0/drivers/misc/cb710/sgbuf2.c -a394da41916f3f43230c277bd3af94f0 linux-3.0/drivers/misc/cb710/debug.c -857509f62d4b95b4de98585d3012f35f linux-3.0/drivers/misc/cb710/core.c -44445ebdf2d923224765ffaef03cb722 linux-3.0/drivers/misc/cb710/Makefile -97be18b4b0eb9277d45956ffcca7514a linux-3.0/drivers/misc/cb710/Kconfig -cffae69f880ed0d08ddcee6d3a29a41a linux-3.0/drivers/misc/carma/carma-fpga.c -f5db187ee569232c63008eb3d14baf8b linux-3.0/drivers/misc/carma/carma-fpga-program.c -2ca646759ceaff8f2a5dd79d9f474512 linux-3.0/drivers/misc/carma/Makefile -c0ddccacf8dfd2406808dd98daa29177 linux-3.0/drivers/misc/carma/Kconfig -35275cc635ae4ea2d0e65100c8746960 linux-3.0/drivers/misc/c2port/core.c -afb8c1c500485c40a180e05eb2f36e41 linux-3.0/drivers/misc/c2port/c2port-duramar2150.c -fb926763aa9ae5b31f5c0ab5ecad4b06 linux-3.0/drivers/misc/c2port/Makefile -638f56e84d799776ab5889744bdd976e linux-3.0/drivers/misc/c2port/Kconfig -ca28b1a9adb4f915b0da51dd576afb39 linux-3.0/drivers/misc/bmp085.c -80594de330f6e49c74d8f7b8e2a2f986 linux-3.0/drivers/misc/bh1780gli.c -61447171851808306fde47d948ecee12 linux-3.0/drivers/misc/bh1770glc.c -c94c1af8caab40b1afffc444dfd526e2 linux-3.0/drivers/misc/atmel_tclib.c -148d4d29450234f295196e05107903e1 linux-3.0/drivers/misc/atmel_pwm.c -b1ecd5097af471fc40a743b03240063c linux-3.0/drivers/misc/atmel-ssc.c -37bcf998dbe4932830288c5caf730381 linux-3.0/drivers/misc/arm-charlcd.c -0847fdb3b9f80695808aec470aeb1e85 linux-3.0/drivers/misc/apds990x.c -5dc38b7768d0ab32fc5b7e3d4f46b82d linux-3.0/drivers/misc/apds9802als.c -6e4c8a8df1c912aa020d660481d6951c linux-3.0/drivers/misc/ad525x_dpot.h -e1eb433047e54ce24550bcdce2a66abf linux-3.0/drivers/misc/ad525x_dpot.c -6f51c50a3eb07f91b53d8870b7f99acd linux-3.0/drivers/misc/ad525x_dpot-spi.c -519a4b550ae5febe82a21a0a7b568cc3 linux-3.0/drivers/misc/ad525x_dpot-i2c.c -90ebc20bb7501c9f54ccec638f077b98 linux-3.0/drivers/misc/ab8500-pwm.c -61bd53a1826b9244f1ec00b74f13b071 linux-3.0/drivers/misc/Makefile -2b9ae83b8c4002347b9e139bd4fa379c linux-3.0/drivers/misc/Kconfig -fde70e20f5d023912e71489158a0e3eb linux-3.0/drivers/mfd/wm8994-irq.c -082470aaea4214922d2d62e85c37666d linux-3.0/drivers/mfd/wm8994-core.c -567ecb0c79c854a817b9ad94bab78c83 linux-3.0/drivers/mfd/wm8400-core.c -30f75335341fe998ec2e67473fbd76d3 linux-3.0/drivers/mfd/wm8350-regmap.c -acaf30d61f044a69a194ed10d3536060 linux-3.0/drivers/mfd/wm8350-irq.c -ce62e1c2871932d82fa6e69e6c816538 linux-3.0/drivers/mfd/wm8350-i2c.c -86e86cdd4023050bf2351fc45fba95b7 linux-3.0/drivers/mfd/wm8350-gpio.c -b452d3303fb3ed6f7710ad82441c0a11 linux-3.0/drivers/mfd/wm8350-core.c -23942b5594693cf94b2d466ad18409d9 linux-3.0/drivers/mfd/wm831x-spi.c -da823e409f50b0e70b78eb517c50c611 linux-3.0/drivers/mfd/wm831x-otp.c -9c8b06521a29d7cd34fe69a8050a07f2 linux-3.0/drivers/mfd/wm831x-irq.c -7bcbfda1af954d62ce5e629811944b63 linux-3.0/drivers/mfd/wm831x-i2c.c -bb092f8716079066ff26b34b2e71a675 linux-3.0/drivers/mfd/wm831x-core.c -4cd89b3b7c212da00522ce356c0e38d2 linux-3.0/drivers/mfd/wl1273-core.c -bf4fcdbf498c4a3351d7588ab97c9543 linux-3.0/drivers/mfd/vx855.c -59ad6806b5544ccd50159e7a5f531e3a linux-3.0/drivers/mfd/ucb1x00-ts.c -a07f52732445817d8270065c4d56ae96 linux-3.0/drivers/mfd/ucb1x00-core.c -176a91f231fa31891ce0eab679c0f747 linux-3.0/drivers/mfd/ucb1x00-assabet.c -9971bc27eab9531cab45d9900ca1d949 linux-3.0/drivers/mfd/ucb1400_core.c -2f62fdd237d08bbb875306046ed7f7c7 linux-3.0/drivers/mfd/twl6030-pwm.c -d2e6a308ef7f66c423024bad5028e3c9 linux-3.0/drivers/mfd/twl6030-irq.c -2b7c42aac792c99eafaec10ef1ece99d linux-3.0/drivers/mfd/twl4030-power.c -1fa95758a201ddd7925f7dccaeebe38a linux-3.0/drivers/mfd/twl4030-madc.c -3d7aee369f0e8d778ee23d78f19672f2 linux-3.0/drivers/mfd/twl4030-irq.c -587699f0d1ed33431db3a592748879c1 linux-3.0/drivers/mfd/twl4030-codec.c -a124ffa3dba8d38145e38588e470839c linux-3.0/drivers/mfd/twl-core.h -bcdf8749d2e91eb1ced5d9012e1c0686 linux-3.0/drivers/mfd/twl-core.c -f334535eda4c3e872d3d81790d89e46f linux-3.0/drivers/mfd/tps65911-comparator.c -1bd4c0f2ca26575e0604e1f1b3e756fa linux-3.0/drivers/mfd/tps65910.c -6536973083b2e865e984fc5c5b40ccbb linux-3.0/drivers/mfd/tps65910-irq.c -f8aef727ae3456988019ba262d597051 linux-3.0/drivers/mfd/tps6586x.c -8f1641adc92f24ec2f62aecd37f602ea linux-3.0/drivers/mfd/tps6507x.c -a9d124f40831109604e92d217880cdf5 linux-3.0/drivers/mfd/tps65010.c -2f606bbd9f615c8e4fd746bc7e672c9a linux-3.0/drivers/mfd/tps6105x.c -c969cd9d1f202e2ca923a7a704b67953 linux-3.0/drivers/mfd/tmio_core.c -db2f3f2599b8fda54d4bf8350ee26f5a linux-3.0/drivers/mfd/timberdale.h -741224641e0c6374144838a7132215d5 linux-3.0/drivers/mfd/timberdale.c -8490aa1bec9aba0c4252ffcf9c71017c linux-3.0/drivers/mfd/ti-ssp.c -cdb1fa6d495d06c0af5e23600da1e73a linux-3.0/drivers/mfd/tc6393xb.c -52c260c287952bf1967cc1aa81f4594e linux-3.0/drivers/mfd/tc6387xb.c -eb1a09b831ce00f9d82d232c83d695b1 linux-3.0/drivers/mfd/tc3589x.c -b02826a9f1d8ea61ca7c83937b6243dd linux-3.0/drivers/mfd/t7l66xb.c -47d492afffdf59f3cf0e91b7412b61ff linux-3.0/drivers/mfd/stmpe.h -4a780fe9f7f40fec01933bab901b9451 linux-3.0/drivers/mfd/stmpe.c -467e674fb649be492390df88ebaf73b7 linux-3.0/drivers/mfd/sm501.c -7a75ae813134ed1b2c855c74bc09f417 linux-3.0/drivers/mfd/rdc321x-southbridge.c -fee8da61166a03a5d3e720ab5434099c linux-3.0/drivers/mfd/pm8xxx-irq.c -532c5e1da0c9d4775032b5b90c5d5f46 linux-3.0/drivers/mfd/pm8921-core.c -6f18c741d20c4e9da8ba99fb76edf8c7 linux-3.0/drivers/mfd/pcf50633-irq.c -d4315f2c40f960872f39844649710ac1 linux-3.0/drivers/mfd/pcf50633-gpio.c -bea9f7b446c4590b01db04a3209363c0 linux-3.0/drivers/mfd/pcf50633-core.c -7d5756b47f87f294065ae087eb1725fc linux-3.0/drivers/mfd/pcf50633-adc.c -6d172801e56570d82733c8576cdba221 linux-3.0/drivers/mfd/omap-usb-host.c -13cdff77e9d07214c189575cef3f265a linux-3.0/drivers/mfd/mfd-core.c -5591bf7d96f4386eed08a103a318b9f1 linux-3.0/drivers/mfd/menelaus.c -38a22eb27b31e77a4d0b172dd10684c3 linux-3.0/drivers/mfd/mcp-sa11x0.c -ba585dbd7e57c7c2dcd9341918d02582 linux-3.0/drivers/mfd/mcp-core.c -d6db18bb6fcc4fddb23e92ab438c7983 linux-3.0/drivers/mfd/mc13xxx-core.c -315b30bdc21ca085e777123844db9def linux-3.0/drivers/mfd/max8998.c -daa699de55c9374052ee5c71e0687b04 linux-3.0/drivers/mfd/max8998-irq.c -8c5e36c9001ac3b2133ff412e9d36960 linux-3.0/drivers/mfd/max8997.c -3d74d27dc545ba8df172a1abeb7d4c6d linux-3.0/drivers/mfd/max8997-irq.c -7ed8a26112902fdca7157251079cb706 linux-3.0/drivers/mfd/max8925-i2c.c -79fe3071df2f59dd9a597c1d0727c197 linux-3.0/drivers/mfd/max8925-core.c -81eb5f66f91f6c73108de84515862f2e linux-3.0/drivers/mfd/lpc_sch.c -913a2360bae3365ae898c79cd6093795 linux-3.0/drivers/mfd/jz4740-adc.c -ee4bf4b818e8ffb2e8a707935eab85af linux-3.0/drivers/mfd/janz-cmodio.c -4a51221e8b3e2bdf0efbcf9d24eff85c linux-3.0/drivers/mfd/htc-pasic3.c -5ff3564128f828d67d3f45127978094b linux-3.0/drivers/mfd/htc-i2cpld.c -62833e7b26b42ee06c321818f9b1fb5b linux-3.0/drivers/mfd/htc-egpio.c -9b4ef678222b63a28e05bf141bf065aa linux-3.0/drivers/mfd/ezx-pcap.c -3b5ae66e74e745d1b08cf471e9f3c3d3 linux-3.0/drivers/mfd/dm355evm_msp.c -cfaa421b91dd1e2077ed633776c0cd2c linux-3.0/drivers/mfd/db8500-prcmu.c -99687d05f9dc46a6486c2ca9758b211b linux-3.0/drivers/mfd/db8500-prcmu-regs.h -0c7aae40f44be110f6e7247e33dcb356 linux-3.0/drivers/mfd/db5500-prcmu.c -cd9876df021bd14c9c080e36d4c97f70 linux-3.0/drivers/mfd/db5500-prcmu-regs.h -acbf589d1daaed2c991fdf437dc78132 linux-3.0/drivers/mfd/davinci_voicecodec.c -e83615c4f93e83024a5eb8d9ee1c1f7f linux-3.0/drivers/mfd/da903x.c -27eb866973579908fba0ab8a8a4576e2 linux-3.0/drivers/mfd/cs5535-mfd.c -bd4294280b34bd0976d2c73d50c11829 linux-3.0/drivers/mfd/asic3.c -cde0b42f692a42c2107c21f214b40067 linux-3.0/drivers/mfd/adp5520.c -da2a779d3a49592503c44de9b4852fd1 linux-3.0/drivers/mfd/abx500-core.c -28020ae17d94a288c40b2915f0c3c319 linux-3.0/drivers/mfd/ab8500-sysctrl.c -0327f7fea7c824e81f107b1534837d31 linux-3.0/drivers/mfd/ab8500-i2c.c -604c742803f97f0a5a48eed4a0fafe81 linux-3.0/drivers/mfd/ab8500-gpadc.c -b476f2babcd72944c88a42f5ed637100 linux-3.0/drivers/mfd/ab8500-debugfs.c -1110371e78786fff630af430e141423e linux-3.0/drivers/mfd/ab8500-core.c -63c26dd00f1f975f4c67436c266e3cd9 linux-3.0/drivers/mfd/ab3550-core.c -48c40e533d76f9751e756ac9cf0306b6 linux-3.0/drivers/mfd/ab3100-otp.c -0102f5432ac3bb253b48371fe064902b linux-3.0/drivers/mfd/ab3100-core.c -16a42f30ad8c8854b2f9cc1838844674 linux-3.0/drivers/mfd/Makefile -49be5aa2d511f1342b4c68cdd783ec4a linux-3.0/drivers/mfd/Kconfig -6f89090aa48022e2d1103a8b5cd5a691 linux-3.0/drivers/mfd/88pm860x-i2c.c -8c3af941de1a5f9a2a9420b006f4a564 linux-3.0/drivers/mfd/88pm860x-core.c -d572b9534d0b4447cb539c6065568536 linux-3.0/drivers/message/i2o/pci.c -404bccc558b51bb22058879215095cbb linux-3.0/drivers/message/i2o/memory.c -eeeb45ed0a7a53f6bad7db1feffc270a linux-3.0/drivers/message/i2o/iop.c -0ef00968c5a1934683d24239242664a8 linux-3.0/drivers/message/i2o/i2o_scsi.c -0b466dada1f0ae0f56097deed69a73f9 linux-3.0/drivers/message/i2o/i2o_proc.c -785b9f931932e7de64f9cc32073b0523 linux-3.0/drivers/message/i2o/i2o_config.c -5f7a5a3036b5f45c99facb2bbe787f58 linux-3.0/drivers/message/i2o/i2o_block.h -d270a23ad31876a57a6b6839c99c98e3 linux-3.0/drivers/message/i2o/i2o_block.c -7170bd10076d373617f5304e31289681 linux-3.0/drivers/message/i2o/exec-osm.c -2a74280b69bf418149b254526b75a3ff linux-3.0/drivers/message/i2o/driver.c -9bb5066b0459e91fbed85117ecf9c158 linux-3.0/drivers/message/i2o/device.c -f51c957eea87c3d89b85462845b97421 linux-3.0/drivers/message/i2o/debug.c -49139a412758c7fe6073810188944cce linux-3.0/drivers/message/i2o/core.h -e6ab7cbfd15838b8ae2e9bf33c95cc63 linux-3.0/drivers/message/i2o/config-osm.c -2b9765a8feac00ac61cedf53d27a916e linux-3.0/drivers/message/i2o/bus-osm.c -b937a2c10312beaff6a853628a9d25a4 linux-3.0/drivers/message/i2o/README.ioctl -9c60dd8e462c473392e5e8125ece38d3 linux-3.0/drivers/message/i2o/README -396351047eb476af29ffe73309897259 linux-3.0/drivers/message/i2o/Makefile -08be4900c3409101c13208d5d31aa469 linux-3.0/drivers/message/i2o/Kconfig -1b4c0b450ff9586a685e33165988d6f3 linux-3.0/drivers/message/fusion/mptspi.c -4ca856e8d3940d747d1f6823846f3993 linux-3.0/drivers/message/fusion/mptscsih.h -cbbea624d8b912d912d074bbd6cdaa3b linux-3.0/drivers/message/fusion/mptscsih.c -35246fde4f97a8050b424a0c1359b6e5 linux-3.0/drivers/message/fusion/mptsas.h -71677b1d80352a180e7c6361b27e0e19 linux-3.0/drivers/message/fusion/mptsas.c -25813a6582e54992ae12f6b57ec08985 linux-3.0/drivers/message/fusion/mptlan.h -98f4aded77589a6faedcc8cf1846a1ef linux-3.0/drivers/message/fusion/mptlan.c -767a9c927a1e4c13725fd28af21ea52c linux-3.0/drivers/message/fusion/mptfc.c -5a36773f8a6b8b230c5ec7fe05ece455 linux-3.0/drivers/message/fusion/mptdebug.h -ec7a3578bab30753d892714aa5507bab linux-3.0/drivers/message/fusion/mptctl.h -aaaac514462898023e0ccdd63baf978b linux-3.0/drivers/message/fusion/mptctl.c -2cb01e0ff66ab43f3557d9cced6d265d linux-3.0/drivers/message/fusion/mptbase.h -0add96d0119bf8fea6afd5e80a50411a linux-3.0/drivers/message/fusion/mptbase.c -b23770cbfaf403897aa4a8a2802cb960 linux-3.0/drivers/message/fusion/lsi/mpi_type.h -2fc139f510655b2b5979b07b6771ae04 linux-3.0/drivers/message/fusion/lsi/mpi_tool.h -66f4b9d6a72a464516be2a0bff8f3d2f linux-3.0/drivers/message/fusion/lsi/mpi_targ.h -cd1fced21678100810186b139fe0ea4c linux-3.0/drivers/message/fusion/lsi/mpi_sas.h -e48bb23fa7e2bc555813a8815135e224 linux-3.0/drivers/message/fusion/lsi/mpi_raid.h -092cbda509a6aaa4105018912e4abab5 linux-3.0/drivers/message/fusion/lsi/mpi_log_sas.h -a91648f2bec402be02471afa3d4a230c linux-3.0/drivers/message/fusion/lsi/mpi_log_fc.h -1350ac9f13f8b97289c5cd76ff5d2de0 linux-3.0/drivers/message/fusion/lsi/mpi_lan.h -e5fceea8be642e2b9672dc3a863ba7dd linux-3.0/drivers/message/fusion/lsi/mpi_ioc.h -dd69031defe079daacc9f7f12ee3f9a7 linux-3.0/drivers/message/fusion/lsi/mpi_init.h -8b9807d3255500bfe73dbf356f0b888f linux-3.0/drivers/message/fusion/lsi/mpi_history.txt -874da5dcd463568f2f2bde838f5ac126 linux-3.0/drivers/message/fusion/lsi/mpi_fc.h -9edd6248ad01951f25b935b89bfd71ec linux-3.0/drivers/message/fusion/lsi/mpi_cnfg.h -9c1a455b4bcf098e3768315fbdb11484 linux-3.0/drivers/message/fusion/lsi/mpi.h -586cebb73d7c9c1860c192ab540ef531 linux-3.0/drivers/message/fusion/Makefile -c01b8e7133a0845e40587195f5b572e6 linux-3.0/drivers/message/fusion/Kconfig -19eefb950fe5dba09c915aec09a6cfa6 linux-3.0/drivers/message/Makefile -c84ab7dcebcbec82979f28a45b14e073 linux-3.0/drivers/memstick/host/tifm_ms.c -22978f24c9dce76ff053e54366d2aeca linux-3.0/drivers/memstick/host/r592.h -2daedcbe3fe62f81157e43e35fd3324b linux-3.0/drivers/memstick/host/r592.c -85a045bd0b70a20288ebef97f2e563d0 linux-3.0/drivers/memstick/host/jmb38x_ms.c -c35f425ea71ae31d194066a9424c6fd1 linux-3.0/drivers/memstick/host/Makefile -266fccbf96f46495253aa4786cc776f7 linux-3.0/drivers/memstick/host/Kconfig -c4969774a025021503d2222fa835f506 linux-3.0/drivers/memstick/core/mspro_block.c -1b4ed394e009cf97cf454f68010a82bd linux-3.0/drivers/memstick/core/memstick.c -c984b54271b555876836d2b4c303f7b3 linux-3.0/drivers/memstick/core/Makefile -8125067eea7080eb067012ce543d99df linux-3.0/drivers/memstick/core/Kconfig -cc1c6badc794dacc90800ee0606c569f linux-3.0/drivers/memstick/Makefile -a46d368f7b9997292d9cd338d670b088 linux-3.0/drivers/memstick/Kconfig -abf1ef7302a6e1e5ab83b27e33331aa2 linux-3.0/drivers/media/video/zr364xx.c -97c9bca923d246cbc2f6bfff24e2641b linux-3.0/drivers/media/video/zoran/zr36060.h -f9bbd49e162b050d3e0d425a25cc8802 linux-3.0/drivers/media/video/zoran/zr36060.c -72d343ad1f4f84d790d929aa883dd687 linux-3.0/drivers/media/video/zoran/zr36057.h -037faca34b0b00a06fde805a9f40a3ab linux-3.0/drivers/media/video/zoran/zr36050.h -5195c7012002ca25dc44f95692ed4984 linux-3.0/drivers/media/video/zoran/zr36050.c -ccedffa8be2a6436799d7f87ccbc531b linux-3.0/drivers/media/video/zoran/zr36016.h -f4a066b96fd7d0df38ae92e9a747e1d3 linux-3.0/drivers/media/video/zoran/zr36016.c -75026e31664088ae6554c1815a287b3a linux-3.0/drivers/media/video/zoran/zoran_procfs.h -fa81b577a333bc39d5942d5b103e1114 linux-3.0/drivers/media/video/zoran/zoran_procfs.c -9d3f8d14afad773c01a65786f2ec9373 linux-3.0/drivers/media/video/zoran/zoran_driver.c -5f9d9bf589a2ca4687396a34618e0dd7 linux-3.0/drivers/media/video/zoran/zoran_device.h -9cc4cc662222b9351c345995318b558d linux-3.0/drivers/media/video/zoran/zoran_device.c -3fadbbd226eb4d6778602b27cae28f6b linux-3.0/drivers/media/video/zoran/zoran_card.h -3109a1282501c022f57e9679ee5897f2 linux-3.0/drivers/media/video/zoran/zoran_card.c -5913354737f0c4537c6991d494f49230 linux-3.0/drivers/media/video/zoran/zoran.h -b817c64db21c2a4dbf8d941d98124d00 linux-3.0/drivers/media/video/zoran/videocodec.h -1fb8a5bcaaad6a7661c35d5a9f906bd1 linux-3.0/drivers/media/video/zoran/videocodec.c -2f52cfa24336583c831cd49b53d4a0df linux-3.0/drivers/media/video/zoran/Makefile -7119f756a905c2063f8bc4d361da7cde linux-3.0/drivers/media/video/zoran/Kconfig -e2d1e83b6ec00ca0c88bf7ab5c76115b linux-3.0/drivers/media/video/wm8775.c -99c68ae8df485698b4f7e4a9520bd8c1 linux-3.0/drivers/media/video/wm8739.c -d148afcc9e8c4a282817fa0088dbb5be linux-3.0/drivers/media/video/w9966.c -ab5e24c1e25680f25e7bdc628e1eb2da linux-3.0/drivers/media/video/vpx3220.c -0461e0be65287623c01d1cec008a08f2 linux-3.0/drivers/media/video/vp27smpx.c -ccbbd30679b326219599e3685966bee5 linux-3.0/drivers/media/video/vivi.c -3fe3738da7bf136c713cf6c514181df9 linux-3.0/drivers/media/video/vino.h -a567693b6226b7c1fc63b4dc74c8339f linux-3.0/drivers/media/video/vino.c -b82648067c028f03a06d9e4c19af303c linux-3.0/drivers/media/video/videobuf2-vmalloc.c -636d22b0a6043b821f7a1a7885c00bfa linux-3.0/drivers/media/video/videobuf2-memops.c -0a883b4800337286a8c3579d1e88de31 linux-3.0/drivers/media/video/videobuf2-dma-sg.c -2f16fc4af2606fb66315fc850a6238b8 linux-3.0/drivers/media/video/videobuf2-dma-contig.c -22ca41266f9147b1e800163551a94ef8 linux-3.0/drivers/media/video/videobuf2-core.c -d5f2be9a2a739d744b14203c5bad1a2e linux-3.0/drivers/media/video/videobuf-vmalloc.c -a993afed9c01ae731a7f32db36cede0d linux-3.0/drivers/media/video/videobuf-dvb.c -33867bf56d7d891a956ff5bb513808b8 linux-3.0/drivers/media/video/videobuf-dma-sg.c -acabbc4b82e975e80601e44cb0a4a667 linux-3.0/drivers/media/video/videobuf-dma-contig.c -0d482fe1d5502bc1f3d01d58a9fd8a03 linux-3.0/drivers/media/video/videobuf-core.c -c01205d24250e0dcd3ddde93f59d47c1 linux-3.0/drivers/media/video/via-camera.h -90d18ee8ca152a932f00f8ca9c01f1bd linux-3.0/drivers/media/video/via-camera.c -d2771722159a320afc0aa939ffb5006d linux-3.0/drivers/media/video/v4l2-subdev.c -3b48a1d234d3c905ef0df3ff44acf120 linux-3.0/drivers/media/video/v4l2-mem2mem.c -0e690554a87f7912286c5f1c0917184a linux-3.0/drivers/media/video/v4l2-ioctl.c -5a53129214da2a2fbf8ab27a90b6fc86 linux-3.0/drivers/media/video/v4l2-int-device.c -edb3701b3ce0d07072f03382a93809e4 linux-3.0/drivers/media/video/v4l2-fh.c -2ff466ed5123289f340a3ffa5ce858ae linux-3.0/drivers/media/video/v4l2-event.c -e7b9f323686ab6ef767c2bda04c835c9 linux-3.0/drivers/media/video/v4l2-device.c -10a2fb3f9b09e1d79f8830a6fd24bd09 linux-3.0/drivers/media/video/v4l2-dev.c -b275a8507cf0b91be7b234968f45c1e8 linux-3.0/drivers/media/video/v4l2-ctrls.c -39062bb92256c9dd2312fe4d570f2978 linux-3.0/drivers/media/video/v4l2-compat-ioctl32.c -3509bf325b978e1cd29a5e28df89e406 linux-3.0/drivers/media/video/v4l2-common.c -8b39adabcbbbfa322bdc70f2e5759d10 linux-3.0/drivers/media/video/uvc/uvcvideo.h -83170ba910fd579de685bfafcdecda9d linux-3.0/drivers/media/video/uvc/uvc_video.c -dd8074cb6a8528cbedcf655e40cc7c1a linux-3.0/drivers/media/video/uvc/uvc_v4l2.c -368bc341e759840bcd661fc3552aec32 linux-3.0/drivers/media/video/uvc/uvc_status.c -ef35b09f8b640793036e5d32639309a9 linux-3.0/drivers/media/video/uvc/uvc_queue.c -40305faeb73197f00a8cfc27807402db linux-3.0/drivers/media/video/uvc/uvc_isight.c -b33dc619f522a9a54e2e17d887040ae9 linux-3.0/drivers/media/video/uvc/uvc_entity.c -5dead54644a3b1ae92ed207d8d10f045 linux-3.0/drivers/media/video/uvc/uvc_driver.c -e4bf6a7d6165f141e5a9cbca3a3f4885 linux-3.0/drivers/media/video/uvc/uvc_ctrl.c -8e0dbc127d8050f4998d75351ad1c287 linux-3.0/drivers/media/video/uvc/Makefile -b52c47c60dbb5d2c891e747f3389b547 linux-3.0/drivers/media/video/uvc/Kconfig -d4499da5611ed94e72e19da9abf8c361 linux-3.0/drivers/media/video/usbvision/usbvision.h -e606a7b840eb1ef40904b32f6785191e linux-3.0/drivers/media/video/usbvision/usbvision-video.c -9861b65fbd8160cb4b2631d8fb75da0f linux-3.0/drivers/media/video/usbvision/usbvision-i2c.c -2ab7c75c3743e8431f95d3cd631f1312 linux-3.0/drivers/media/video/usbvision/usbvision-core.c -02510c9a177063abb05c5432d365a26c linux-3.0/drivers/media/video/usbvision/usbvision-cards.h -13ae8a641a85241b794fc0d9715830aa linux-3.0/drivers/media/video/usbvision/usbvision-cards.c -65d6fbaf8069cc72bfbcd1b444bf3d87 linux-3.0/drivers/media/video/usbvision/Makefile -7dabbd16d322e05867024ec08eae66d2 linux-3.0/drivers/media/video/usbvision/Kconfig -108010d1932828fe6235bf48d29da282 linux-3.0/drivers/media/video/upd64083.c -885af5c72a9087f929df711c6c5b3221 linux-3.0/drivers/media/video/upd64031a.c -21935f32bbbbc0ff49fd9811b7215820 linux-3.0/drivers/media/video/tw9910.c -52228985e9347f54714a13b97ab77afe linux-3.0/drivers/media/video/tvp7002_reg.h -029656a1d6efe30747738e0d36db4f7a linux-3.0/drivers/media/video/tvp7002.c -0738ee54783a2f393f14bbf84ad39019 linux-3.0/drivers/media/video/tvp5150_reg.h -f226fb79b3426b0927efc6d190e43300 linux-3.0/drivers/media/video/tvp5150.c -5f0e5c492a92b38140bf4742dd1232c2 linux-3.0/drivers/media/video/tvp514x_regs.h -a5aadc1248eed0aaac2ebb64ee8deb3f linux-3.0/drivers/media/video/tvp514x.c -9523ac5ccb6fedcd916af377fd89e803 linux-3.0/drivers/media/video/tveeprom.c -577c5a72c8ad7fa581a2e3de03007ec9 linux-3.0/drivers/media/video/tvaudio.c -9b197247f92994177d4cba340145f2d2 linux-3.0/drivers/media/video/tuner-core.c -794d7e39a6701eff7bb291efc38dccee linux-3.0/drivers/media/video/tlv320aic23b.c -dbe1f88faa6c33caa590673f736449f9 linux-3.0/drivers/media/video/tlg2300/vendorcmds.h -811d39c5f3d1df854c83138f5ce89b4d linux-3.0/drivers/media/video/tlg2300/pd-video.c -35b2dfd1cda24fb86815c71f9e2b72d2 linux-3.0/drivers/media/video/tlg2300/pd-radio.c -1052ca9227f75c643a44f222f43d10f1 linux-3.0/drivers/media/video/tlg2300/pd-main.c -e28988f0afcdb7ce950fdff57b8ad1f5 linux-3.0/drivers/media/video/tlg2300/pd-dvb.c -8d30752a378429bea829b0e9619a3aad linux-3.0/drivers/media/video/tlg2300/pd-common.h -4b2451463808bff422a64dc417182444 linux-3.0/drivers/media/video/tlg2300/pd-alsa.c -db515aaa68cb3a65dec87447c4f4bf6e linux-3.0/drivers/media/video/tlg2300/Makefile -f4fef8ffebe16a720bdbea14b3c0e29f linux-3.0/drivers/media/video/tlg2300/Kconfig -8fa16d055b2237b15db57ffed7a607e9 linux-3.0/drivers/media/video/timblogiw.c -d04c440f9c0e2f9f2d307fffd664041c linux-3.0/drivers/media/video/ths7303.c -6af46a4c7cfd33e99b261bb774882878 linux-3.0/drivers/media/video/tea6420.h -f4f47003fe6619dd61e600acf7de4e57 linux-3.0/drivers/media/video/tea6420.c -41a39234167653dd8f06b9bbe9b99704 linux-3.0/drivers/media/video/tea6415c.h -eb01622a0baf36c9d49dd74ba5c4fcd8 linux-3.0/drivers/media/video/tea6415c.c -457954f6c35df3d645860da9b106af73 linux-3.0/drivers/media/video/tda9840.c -c93bcfe0af779a65e34386ce7f30c250 linux-3.0/drivers/media/video/tda7432.c -800c3dfcd67f72dfc89acdedf0091e10 linux-3.0/drivers/media/video/tcm825x.h -fdd8c5d08e3e56fabb9de80e0280ab2b linux-3.0/drivers/media/video/tcm825x.c -916f22f3334a57f68961f57c06c0f61e linux-3.0/drivers/media/video/stk-webcam.h -669e62584534e4b00e422ec91bcdd769 linux-3.0/drivers/media/video/stk-webcam.c -cb2a38ebb87d805edd44388cfd896fea linux-3.0/drivers/media/video/stk-sensor.c -6749ab85f4ddf8af262654d9d3e1a66a linux-3.0/drivers/media/video/sr030pc30.c -5cad2a159fb4a8d05233401cd7edc6a0 linux-3.0/drivers/media/video/soc_mediabus.c -8b8fa4f7ec33054be0e42d6e92f6943a linux-3.0/drivers/media/video/soc_camera_platform.c -57e39378f80e19230dc3395501c03ca6 linux-3.0/drivers/media/video/soc_camera.c -4cf94643d41c3f5932f1da71483d2270 linux-3.0/drivers/media/video/sn9c102/sn9c102_tas5130d1b.c -03130bfc493930f552ea9a29adf93b31 linux-3.0/drivers/media/video/sn9c102/sn9c102_tas5110d.c -a74fa5791ff5fe406f27b4d7164a979e linux-3.0/drivers/media/video/sn9c102/sn9c102_tas5110c1b.c -a126ed29528830869ad590fedde816eb linux-3.0/drivers/media/video/sn9c102/sn9c102_sensor.h -1aae3e7b6980bc639bcc7c4ba739097d linux-3.0/drivers/media/video/sn9c102/sn9c102_pas202bcb.c -69116d2fdc7415d7ae7d809a364cc3d2 linux-3.0/drivers/media/video/sn9c102/sn9c102_pas106b.c -e75755aaca88cff6859fef52190ed754 linux-3.0/drivers/media/video/sn9c102/sn9c102_ov7660.c -d89cf7f57777cb11be4c867df5b394cf linux-3.0/drivers/media/video/sn9c102/sn9c102_ov7630.c -dc9ca6d2e1af64958a2a246cf894301b linux-3.0/drivers/media/video/sn9c102/sn9c102_mt9v111.c -4e0269d6702bf21d3ae49eb3e414e0ae linux-3.0/drivers/media/video/sn9c102/sn9c102_mi0360.c -70cb58ab6d2c6959f8ca0a6de6d647db linux-3.0/drivers/media/video/sn9c102/sn9c102_mi0343.c -620bd63746d8af2c8d5c01ae050cd35c linux-3.0/drivers/media/video/sn9c102/sn9c102_hv7131r.c -3c335b41071efd3ccd3b71f49aae9ea2 linux-3.0/drivers/media/video/sn9c102/sn9c102_hv7131d.c -ae6c9ffa53681faa3e1bea524488dd32 linux-3.0/drivers/media/video/sn9c102/sn9c102_devtable.h -793c583b5c8266b2f1451a7046cb30c6 linux-3.0/drivers/media/video/sn9c102/sn9c102_core.c -458594d37ed5bc6b0b6aa4031634593c linux-3.0/drivers/media/video/sn9c102/sn9c102_config.h -4961311a8e37269e235e7e0f6ad02369 linux-3.0/drivers/media/video/sn9c102/sn9c102.h -05fbfea56809f55f48e253856546d78c linux-3.0/drivers/media/video/sn9c102/Makefile -8d02cb025642a0d3a0427f6308efbcb1 linux-3.0/drivers/media/video/sn9c102/Kconfig -ecc836a389dc3df864c44b58982fe3b2 linux-3.0/drivers/media/video/sh_vou.c -8aa9bccefab156f2104efce79fe3e7d3 linux-3.0/drivers/media/video/sh_mobile_csi2.c -c413d757c6c93d73a35a835d28f11148 linux-3.0/drivers/media/video/sh_mobile_ceu_camera.c -7c5c268c8ccdc50c09fde29c1d6ce87c linux-3.0/drivers/media/video/saa7191.h -0970f4fa677e6b662fbbb81da0def7bb linux-3.0/drivers/media/video/saa7191.c -82ad2b152bb7cbdde6f79bb6990da1b8 linux-3.0/drivers/media/video/saa7185.c -c7dddac82cc1525066795b95115498cd linux-3.0/drivers/media/video/saa717x.c -e5fb90c28a550c82959be102ed696d46 linux-3.0/drivers/media/video/saa7164/saa7164.h -340acfdb55339b6c084e9fd3ea8933db linux-3.0/drivers/media/video/saa7164/saa7164-vbi.c -35b1ebf0bff286c6b38a51ce264486a7 linux-3.0/drivers/media/video/saa7164/saa7164-types.h -58a814c3c24c76a9968f6eb36fc55019 linux-3.0/drivers/media/video/saa7164/saa7164-reg.h -468ad447b598624440f5915c5698d894 linux-3.0/drivers/media/video/saa7164/saa7164-i2c.c -584d67c87776be959b92dbef23b19236 linux-3.0/drivers/media/video/saa7164/saa7164-fw.c -7cb659d499eb09269308347727f12af5 linux-3.0/drivers/media/video/saa7164/saa7164-encoder.c -88c871af89f42056b75c52477ecda338 linux-3.0/drivers/media/video/saa7164/saa7164-dvb.c -188e240f5b84364ee163eb03c3191db7 linux-3.0/drivers/media/video/saa7164/saa7164-core.c -19203cea8968dae56142587ae2df2f41 linux-3.0/drivers/media/video/saa7164/saa7164-cmd.c -33addeba868f9ddd6e61861beab1fb2a linux-3.0/drivers/media/video/saa7164/saa7164-cards.c -fd75d631ff6de88645c5ace1b3da6281 linux-3.0/drivers/media/video/saa7164/saa7164-bus.c -e4620d2cfd0e94d7e28a4703fdfb4088 linux-3.0/drivers/media/video/saa7164/saa7164-buffer.c -d68335736c517c4c7481a8b490f2b51d linux-3.0/drivers/media/video/saa7164/saa7164-api.c -e10e19a5c2a2152e28c6ccb08bfd2144 linux-3.0/drivers/media/video/saa7164/Makefile -4db94c74b716a8afd7be7271520c339e linux-3.0/drivers/media/video/saa7164/Kconfig -4504f3817d5c4f8f7a58f670d192e163 linux-3.0/drivers/media/video/saa7146reg.h -13b7dbbab71916a74514e58e735fe6ce linux-3.0/drivers/media/video/saa7146.h -6e245823bb71c0f97318e5e1f676756f linux-3.0/drivers/media/video/saa7134/saa7134.h -7c763ea0848705ac54508faf2e7d61fc linux-3.0/drivers/media/video/saa7134/saa7134-video.c -307b4e655ecf67d902f71f3e0d4104b5 linux-3.0/drivers/media/video/saa7134/saa7134-vbi.c -b3ad5f4a87d6c4d90d998baf3929b8d9 linux-3.0/drivers/media/video/saa7134/saa7134-tvaudio.c -bdcfba3c0bdea10a6ed430640e7f17d3 linux-3.0/drivers/media/video/saa7134/saa7134-ts.c -728f6a6756b448cccb3eb75752d20333 linux-3.0/drivers/media/video/saa7134/saa7134-reg.h -0fccf05d452cf09c4cd2bff247187366 linux-3.0/drivers/media/video/saa7134/saa7134-input.c -7f84671bd9992aecb38d19f551b67c46 linux-3.0/drivers/media/video/saa7134/saa7134-i2c.c -6f6df54896c692ed81b528853774b885 linux-3.0/drivers/media/video/saa7134/saa7134-empress.c -b20b0a32cd47326162690b0892a87d15 linux-3.0/drivers/media/video/saa7134/saa7134-dvb.c -025c810016d395ae0011c05f0afa8e6e linux-3.0/drivers/media/video/saa7134/saa7134-core.c -31b32bade6c121288325e7fe370c9832 linux-3.0/drivers/media/video/saa7134/saa7134-cards.c -2e99f4593f206e92873ee61cbb9c2d5b linux-3.0/drivers/media/video/saa7134/saa7134-alsa.c -d33e9e835ae2588bde29c48466f3e405 linux-3.0/drivers/media/video/saa7134/saa6752hs.c -dd5b17f80c0bfc1fc2314fe7584ec0f3 linux-3.0/drivers/media/video/saa7134/Makefile -e0b9e044e3a3c4027a0a2e1e8df9a830 linux-3.0/drivers/media/video/saa7134/Kconfig -681cdef2f09c84cfbaa86ea90342a922 linux-3.0/drivers/media/video/saa7127.c -5ad3cc73aaef14d2ab7088b089a757cb linux-3.0/drivers/media/video/saa7121.h -33815a9b92ef644813002081360dd050 linux-3.0/drivers/media/video/saa711x_regs.h -77a2229fea24c455acb296f5db1d290a linux-3.0/drivers/media/video/saa7115.c -ceef6d87350ff2da7688035e42f60fc5 linux-3.0/drivers/media/video/saa7110.c -26f8ffbe4c23ab9bed7979c0fa4d3ae6 linux-3.0/drivers/media/video/saa6588.c -3337a286d1745d60f9f2ff426c667d7b linux-3.0/drivers/media/video/s5p-fimc/regs-fimc.h -363d5defd2b3cf1e2267af7770fc61d9 linux-3.0/drivers/media/video/s5p-fimc/mipi-csis.h -9cb6f72768d06538a0c694fe97a2ca57 linux-3.0/drivers/media/video/s5p-fimc/mipi-csis.c -966ea1f752bf02dc04991b5a72871525 linux-3.0/drivers/media/video/s5p-fimc/fimc-reg.c -2c88aa98da714f0241b2d32de126d0ce linux-3.0/drivers/media/video/s5p-fimc/fimc-core.h -2bd1213adbd86c72a83ac5a71b2a9439 linux-3.0/drivers/media/video/s5p-fimc/fimc-core.c -5c57e7704f19661e9d3533fa7945d821 linux-3.0/drivers/media/video/s5p-fimc/fimc-capture.c -54a76bab53c43a70f5ef883576b13cbc linux-3.0/drivers/media/video/s5p-fimc/Makefile -7d9ebeba754413f8acb4dbfa917d0061 linux-3.0/drivers/media/video/s2255drv.c -181f2074e7e20b68d7b5034afcd129fd linux-3.0/drivers/media/video/rj54n1cb0c.c -b1304c58ab33c98329e0e20fb1e62512 linux-3.0/drivers/media/video/pxa_camera.c -b02ae161dda7f32547af137d247aecf1 linux-3.0/drivers/media/video/pwc/pwc.h -a02b5ec3683e86ff99ad8db73a02fa1b linux-3.0/drivers/media/video/pwc/pwc-v4l.c -ce339fcee2d0aaf3932861215c8d569a linux-3.0/drivers/media/video/pwc/pwc-uncompress.h -bab834c036086addbef73c7abebf84ff linux-3.0/drivers/media/video/pwc/pwc-uncompress.c -36d001820aa3097be61cce5e121f65d0 linux-3.0/drivers/media/video/pwc/pwc-timon.h -7dcad07db6bf052e8a01162d12c00ec4 linux-3.0/drivers/media/video/pwc/pwc-timon.c -749dfd28d07966be7a83c344653af258 linux-3.0/drivers/media/video/pwc/pwc-nala.h -e730aa62e78e08dacdcc0acf7591f08c linux-3.0/drivers/media/video/pwc/pwc-misc.c -cad4bd8b459d040cf91dc9e9e60c1b53 linux-3.0/drivers/media/video/pwc/pwc-kiara.h -d363b14c0c342b8187a3019c9f2c7aad linux-3.0/drivers/media/video/pwc/pwc-kiara.c -d2ac5c58c162f0c4a0303dd947ca9db7 linux-3.0/drivers/media/video/pwc/pwc-ioctl.h -6a6182942ad8bb25a60c251f1adbb05b linux-3.0/drivers/media/video/pwc/pwc-if.c -97b139df41df620898390a03248455cb linux-3.0/drivers/media/video/pwc/pwc-dec23.h -df2da7953bae8269ab5138cd177eeaa5 linux-3.0/drivers/media/video/pwc/pwc-dec23.c -39cadb9d929e1586517917491d5418ed linux-3.0/drivers/media/video/pwc/pwc-dec1.h -5d708d3bf75018d558759ea8e7ac33e1 linux-3.0/drivers/media/video/pwc/pwc-dec1.c -e50d41f378f1ebd422a172fd4f60a777 linux-3.0/drivers/media/video/pwc/pwc-ctrl.c -344310e97420166c59122a047ecf6ef1 linux-3.0/drivers/media/video/pwc/philips.txt -2bb29aa12d3b85cf512ef2a1e1783d84 linux-3.0/drivers/media/video/pwc/Makefile -07261f472ebc653a51413d52839b5e69 linux-3.0/drivers/media/video/pwc/Kconfig -7567f709903a4764917b4ab348c39557 linux-3.0/drivers/media/video/pvrusb2/pvrusb2.h -29c9b7d3eb7b59842652559c86585b8e linux-3.0/drivers/media/video/pvrusb2/pvrusb2-wm8775.h -ae6023f6d1faad13d95afc5312741da5 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-wm8775.c -7460c7eedfd9592c1d88d8a66d26a26f linux-3.0/drivers/media/video/pvrusb2/pvrusb2-video-v4l.h -aa70297ae4c50fae9d0b8d8f583a30fa linux-3.0/drivers/media/video/pvrusb2/pvrusb2-video-v4l.c -db28bff561bbc7033c42e1e53a96c609 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-v4l2.h -4d36429c9db1717bba5598d77d866225 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-v4l2.c -903cb5e8a876c80c0b9f6cafaea3dab8 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-util.h -6fc7cea0abc88d94fcc4bca89599b176 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-sysfs.h -d1581d4baaf31cd24542d6b378964217 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-sysfs.c -4ee611a5f77138d845dde5fd8b0287fb linux-3.0/drivers/media/video/pvrusb2/pvrusb2-std.h -c32640e47a41f0c7a6b3eaa8ac2dc5f1 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-std.c -c0f80e1e82d904b8f6d23e28aa55a0f0 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-main.c -31450f6bdfedfe82580cd70c1492b777 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-ioread.h -3bc437229c31b9e6cec3d13ed30cc90f linux-3.0/drivers/media/video/pvrusb2/pvrusb2-ioread.c -e32a6d053393ca6327dfd3b1a945d711 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-io.h -9bcd80aff9cbfe74d28845a80d78e1b5 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-io.c -edbfcad80d34540145f659a030ae814a linux-3.0/drivers/media/video/pvrusb2/pvrusb2-i2c-core.h -07dfce02d01476bf1342a811ec97a8a6 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-i2c-core.c -db0d27fbf85168f212018278494a89aa linux-3.0/drivers/media/video/pvrusb2/pvrusb2-hdw.h -7c94954335ac73ba1975e7d8876f4c34 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-hdw.c -da295784106e9e067d099989e3f280a8 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h -8b0ae0b5b0b0bbaeefe737b50ce21136 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-fx2-cmd.h -4a0d83d9211023cebbd1cc7277f7c21b linux-3.0/drivers/media/video/pvrusb2/pvrusb2-encoder.h -c613ab0575d289c6aebde966336e120c linux-3.0/drivers/media/video/pvrusb2/pvrusb2-encoder.c -fb8cab1382dcd31f340ed2c2dc673fb3 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-eeprom.h -9a660e12ba02db43c6dd262fb5705ec3 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-eeprom.c -42b6b67aa2840fedc8ee98c4b2961f64 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-dvb.h -cfae6930da8f2d2fca709e07a5a2d1eb linux-3.0/drivers/media/video/pvrusb2/pvrusb2-dvb.c -424dc34cb983067fb23c533af9365cdc linux-3.0/drivers/media/video/pvrusb2/pvrusb2-devattr.h -62f3accc1e4c1deb1c22eb4913e70d9a linux-3.0/drivers/media/video/pvrusb2/pvrusb2-devattr.c -5db374f675c02f18b397e1cf549743f7 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-debugifc.h -c632fa2562fc230f4bf0407b1af2a77f linux-3.0/drivers/media/video/pvrusb2/pvrusb2-debugifc.c -4f0c14d9e014b8a0e31ffcd7b824685b linux-3.0/drivers/media/video/pvrusb2/pvrusb2-debug.h -e71bc09d8cac409e07e9961a8af3b127 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.h -ff745aa2c6adacfca889f23395a35482 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c -4ca70649555b6f53381a9a53dc29b5f1 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-ctrl.h -4a6f9852c953da3dcdb615804102714e linux-3.0/drivers/media/video/pvrusb2/pvrusb2-ctrl.c -1de565e5de13a6fdbdda932c1b9d7817 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-cs53l32a.h -6671d152639337e268156541e549d846 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-cs53l32a.c -261443c529d52c6fb67282537f2156e4 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-context.h -80efd007b53fff2ecc3f6d6cf2e0608e linux-3.0/drivers/media/video/pvrusb2/pvrusb2-context.c -8824cef6d7d229f7723be88fe7c57b49 linux-3.0/drivers/media/video/pvrusb2/pvrusb2-audio.h -8058e1a44aa510cfb85061646a70dcfc linux-3.0/drivers/media/video/pvrusb2/pvrusb2-audio.c -2399acbccaa99824104738e6e9e2993a linux-3.0/drivers/media/video/pvrusb2/Makefile -3e0295000a850279ad796cc18ed4bda6 linux-3.0/drivers/media/video/pvrusb2/Kconfig -814eb97c7b8a5d14037823a74b60e7ed linux-3.0/drivers/media/video/pms.c -425b03b2ced1dffc626a0dea12f92d3c linux-3.0/drivers/media/video/ov9740.c -b4efd1824ed9659869c20a9789d40a5b linux-3.0/drivers/media/video/ov9640.h -bf749aacc78ada7fa0899415790d1575 linux-3.0/drivers/media/video/ov9640.c -843fd60a9e702b5eed4c2c3949ba8185 linux-3.0/drivers/media/video/ov772x.c -62ad18feb975cbeb5ea33a33420526e7 linux-3.0/drivers/media/video/ov7670.h -08c0e8d70fea39b96d35e8fc3fe41adc linux-3.0/drivers/media/video/ov7670.c -381193bf591a3b7695574ecbede80088 linux-3.0/drivers/media/video/ov6650.c -e27c6713d92bd476192e708b200b183f linux-3.0/drivers/media/video/ov2640.c -b3c83c5d2276019d240eb09fefd3ac9d linux-3.0/drivers/media/video/omap3isp/noise_filter_table.h -423677d38b685398aabba234c4b11767 linux-3.0/drivers/media/video/omap3isp/luma_enhance_table.h -35d539fa2539fee7c642acccfcabeb8c linux-3.0/drivers/media/video/omap3isp/ispvideo.h -37cbfc13a0e8ad43c32c6192811eda54 linux-3.0/drivers/media/video/omap3isp/ispvideo.c -a4d4ce94090fdeb6e1d68831ce81df0c linux-3.0/drivers/media/video/omap3isp/ispstat.h -ff14bfeb38f4ebcc8f8d021b4d4b5249 linux-3.0/drivers/media/video/omap3isp/ispstat.c -7b76160ffd2d97b7da17933d2ce6c048 linux-3.0/drivers/media/video/omap3isp/ispresizer.h -c2f6cc351a2b1a3ae87355e582c16ee1 linux-3.0/drivers/media/video/omap3isp/ispresizer.c -e3b87b358cf1bb8156a6efa10e432fef linux-3.0/drivers/media/video/omap3isp/ispreg.h -1cd90e7e3e303a380bc3843c328a1f9f linux-3.0/drivers/media/video/omap3isp/ispqueue.h -e8ba14c15fa4e4a3cfb753ee3b16725b linux-3.0/drivers/media/video/omap3isp/ispqueue.c -1cf8c498650abaa5bf1b61082287d9e2 linux-3.0/drivers/media/video/omap3isp/isppreview.h -3a6d28f7b724d431fb2a25ffeaf81776 linux-3.0/drivers/media/video/omap3isp/isppreview.c -4578ae7f85211021a0c6409e13a266f4 linux-3.0/drivers/media/video/omap3isp/isphist.h -e1f15140bc63f0551abc4f0de1861e91 linux-3.0/drivers/media/video/omap3isp/isphist.c -9a8ae26ff526c53ec3edc8931bfc3351 linux-3.0/drivers/media/video/omap3isp/isph3a_af.c -4746445c4e8a11e729651a052e536359 linux-3.0/drivers/media/video/omap3isp/isph3a_aewb.c -35feec731b19fb404a711f8cd1296508 linux-3.0/drivers/media/video/omap3isp/isph3a.h -f87843495db01e9c1da00fbf29f4d2de linux-3.0/drivers/media/video/omap3isp/ispcsiphy.h -a1fc2ea15ae62e083b168fc08716185e linux-3.0/drivers/media/video/omap3isp/ispcsiphy.c -de08da49babdd5a0aba5ce18df9368b0 linux-3.0/drivers/media/video/omap3isp/ispcsi2.h -1a38e2ea2db8450e3cb7d3e1434edaa7 linux-3.0/drivers/media/video/omap3isp/ispcsi2.c -0feb3e253881b593ca3698eda375636b linux-3.0/drivers/media/video/omap3isp/ispccp2.h -cc111cfb365af7d56d0c0f4d4d2dfbca linux-3.0/drivers/media/video/omap3isp/ispccp2.c -f44952af95e623a97fffeab4b591e597 linux-3.0/drivers/media/video/omap3isp/ispccdc.h -707b7e4c7ba4e33accc4ecad906934bb linux-3.0/drivers/media/video/omap3isp/ispccdc.c -a41ef991c875f400d77047632dd0baae linux-3.0/drivers/media/video/omap3isp/isp.h -c01fadb082dca3ec3e48415aeca34d88 linux-3.0/drivers/media/video/omap3isp/isp.c -c96f8b1871a7a171c318d71a6d9255be linux-3.0/drivers/media/video/omap3isp/gamma_table.h -6030412ff8cf5f97435acce20f77ac44 linux-3.0/drivers/media/video/omap3isp/cfa_coef_table.h -c016ae4df865b5071ed171725ca4e959 linux-3.0/drivers/media/video/omap3isp/Makefile -b4ac7dfec826091b9506b5d65ba785e5 linux-3.0/drivers/media/video/omap24xxcam.h -f4718724ccc32e18f2d2e3622b95993f linux-3.0/drivers/media/video/omap24xxcam.c -c233faddf54b96ba02d01c1c3d3af1d2 linux-3.0/drivers/media/video/omap24xxcam-dma.c -29deb520895f067df9762a0fa5a9c028 linux-3.0/drivers/media/video/omap1_camera.c -164726640d17cc593512fc407545ed48 linux-3.0/drivers/media/video/omap/omap_voutlib.h -f3040be5f72bdaac7074286c3d3427ab linux-3.0/drivers/media/video/omap/omap_voutlib.c -b9a8cb163c2cacf3351b3f099b456fa3 linux-3.0/drivers/media/video/omap/omap_voutdef.h -7bc1cacf75cfde52c46dc1658a1251db linux-3.0/drivers/media/video/omap/omap_vout.c -6678a467ce6bb70fec24429a6fc5f867 linux-3.0/drivers/media/video/omap/Makefile -8cb02f1e698cafaa24a297d16cf6926b linux-3.0/drivers/media/video/omap/Kconfig -fc0ff08d76260b04b35e5241d1888e3a linux-3.0/drivers/media/video/noon010pc30.c -eb3b40fce39faf48ec708b7701f19bf5 linux-3.0/drivers/media/video/mxb.h -588e2d70691783ef5d851572b8d1b803 linux-3.0/drivers/media/video/mxb.c -e773f3a887482bac6e404bdfa948165f linux-3.0/drivers/media/video/mx3_camera.c -3e8ea2358f78593806c3ac1e1fd54497 linux-3.0/drivers/media/video/mx2_camera.c -65d034ddb382625f76c7058085232a19 linux-3.0/drivers/media/video/mx1_camera.c -9410a5d509bd5144a869fb87f0a5d643 linux-3.0/drivers/media/video/mt9v032.c -fd15317df3ff9311f5243e10c61f7e5f linux-3.0/drivers/media/video/mt9v022.c -d1c0f914cdf374ad3b1e1af887d48def linux-3.0/drivers/media/video/mt9v011.c -5d9b8aa5f79a3b5a154d36c3a9f42af3 linux-3.0/drivers/media/video/mt9t112.c -58427ad11c130a19bccb4808d137a7c6 linux-3.0/drivers/media/video/mt9t031.c -1a44e2219b097ea0b432768d53340741 linux-3.0/drivers/media/video/mt9m111.c -1ee0cce765850640ea8bad737a2e382f linux-3.0/drivers/media/video/mt9m001.c -9d3c6169ab1a5fd71abac9bc92e0cd16 linux-3.0/drivers/media/video/msp3400-kthreads.c -0460a4474cdff2b135c07265e6532d49 linux-3.0/drivers/media/video/msp3400-driver.h -aea34024de9bb3b12636239c397c479a linux-3.0/drivers/media/video/msp3400-driver.c -fa2b05ebe144e5fdc643a95e28f55324 linux-3.0/drivers/media/video/meye.h -d8b6df725f26239ad3ff83a66e1ce41b linux-3.0/drivers/media/video/meye.c -101af0f1b967ad2f1a5f508b46c049b6 linux-3.0/drivers/media/video/mem2mem_testdev.c -c42b3d3c84bb35aa92280f145ce18ea3 linux-3.0/drivers/media/video/m5mols/m5mols_reg.h -187a9a0a771451c4f4a9bce8d8eb98b2 linux-3.0/drivers/media/video/m5mols/m5mols_core.c -e7085a0a636ba2df8fcf6dd953bcc604 linux-3.0/drivers/media/video/m5mols/m5mols_controls.c -4378563f31cfa6846871b7185dfb3a09 linux-3.0/drivers/media/video/m5mols/m5mols_capture.c -0fbb06229beac59ad8ce1200b336fc43 linux-3.0/drivers/media/video/m5mols/m5mols.h -b877b32bd325b59ef01c59be5cf8c2d6 linux-3.0/drivers/media/video/m5mols/Makefile -46366523d80001d6bcec02d83a8c10c4 linux-3.0/drivers/media/video/m5mols/Kconfig -399fe32b9d5cd94c28e24e839f4c9d8f linux-3.0/drivers/media/video/m52790.c -368248f98998d4d9d16db941d3e9856b linux-3.0/drivers/media/video/ks0127.h -3827ad23dc67133feec057eb90dcc156 linux-3.0/drivers/media/video/ks0127.c -12eff71f10508add5fb40ab072ca1d8c linux-3.0/drivers/media/video/ivtv/ivtvfb.c -cf317dc71b6e4f272af99fe05790837b linux-3.0/drivers/media/video/ivtv/ivtv-yuv.h -9ec232bfe813ce18e5748a627e576dbc linux-3.0/drivers/media/video/ivtv/ivtv-yuv.c -47fe9c04e88fd64e87eae5215341ca63 linux-3.0/drivers/media/video/ivtv/ivtv-version.h -916f918c55660877b9aac64769d4d217 linux-3.0/drivers/media/video/ivtv/ivtv-vbi.h -a24fb09ef242385784b8a0521521f9f4 linux-3.0/drivers/media/video/ivtv/ivtv-vbi.c -fde1fdf82d74f3f265fa68ad6a3ea864 linux-3.0/drivers/media/video/ivtv/ivtv-udma.h -49a31587e197b6a767de40a4b21682af linux-3.0/drivers/media/video/ivtv/ivtv-udma.c -2d6fef929b832325fa8e8dc505988601 linux-3.0/drivers/media/video/ivtv/ivtv-streams.h -0c8bab1d627a2a48d96589c291d49f82 linux-3.0/drivers/media/video/ivtv/ivtv-streams.c -825a314e52493a792b58a2247dc0de13 linux-3.0/drivers/media/video/ivtv/ivtv-routing.h -2b822b004942e7ee28ed3c8a827a98da linux-3.0/drivers/media/video/ivtv/ivtv-routing.c -688e15b5d0353d250349dcf2ecf29d4c linux-3.0/drivers/media/video/ivtv/ivtv-queue.h -60bb43ad366827311b4d134ee2981b4a linux-3.0/drivers/media/video/ivtv/ivtv-queue.c -7b032e30062d153857fa895b2b4b7090 linux-3.0/drivers/media/video/ivtv/ivtv-mailbox.h -d3a5b22dff09dc6640c7d1ee7b3d7b04 linux-3.0/drivers/media/video/ivtv/ivtv-mailbox.c -b6f336dcf52a267eb936ea0804d7b4c8 linux-3.0/drivers/media/video/ivtv/ivtv-irq.h -ec3895ab5724eba78d5f61ca17184678 linux-3.0/drivers/media/video/ivtv/ivtv-irq.c -a7674a4a45783a17053f5813ae6603e2 linux-3.0/drivers/media/video/ivtv/ivtv-ioctl.h -bc3b22908ab6c0a3ad7063463434e084 linux-3.0/drivers/media/video/ivtv/ivtv-ioctl.c -f091bea78f731e1e861bc8ae6fa0694b linux-3.0/drivers/media/video/ivtv/ivtv-i2c.h -638effc8343a2d618f1bcd7abd8aef43 linux-3.0/drivers/media/video/ivtv/ivtv-i2c.c -152ecfcd372a818d2adc93bf217e1347 linux-3.0/drivers/media/video/ivtv/ivtv-gpio.h -0dfc0ce5a3e220ca30312ffbf8bdb1f3 linux-3.0/drivers/media/video/ivtv/ivtv-gpio.c -e710ba8002e0344f8131251766b39dc0 linux-3.0/drivers/media/video/ivtv/ivtv-firmware.h -bd86553278ca50a915064d655eab56ce linux-3.0/drivers/media/video/ivtv/ivtv-firmware.c -ef5a0e4978611aa17f2aed65cbeb046e linux-3.0/drivers/media/video/ivtv/ivtv-fileops.h -f64fb6468c4c31527838d9976f77b311 linux-3.0/drivers/media/video/ivtv/ivtv-fileops.c -4147d7487c8e11664fec59be4340c7f4 linux-3.0/drivers/media/video/ivtv/ivtv-driver.h -c8685fffdb6238341e33e46b06dfb120 linux-3.0/drivers/media/video/ivtv/ivtv-driver.c -3caf083c52947efb7f13038e8c26d755 linux-3.0/drivers/media/video/ivtv/ivtv-controls.h -483c2eb1c21e7a7a0083b90fd8c4a721 linux-3.0/drivers/media/video/ivtv/ivtv-controls.c -1f4d656f632ecf426c3963b73bffe536 linux-3.0/drivers/media/video/ivtv/ivtv-cards.h -37c49f0edf34dbcb2b5facb7e0d9b5bd linux-3.0/drivers/media/video/ivtv/ivtv-cards.c -46cda14a42f1b4b31ac636930f1f3cd8 linux-3.0/drivers/media/video/ivtv/Makefile -0b41930c9add6e5437392d6836c88390 linux-3.0/drivers/media/video/ivtv/Kconfig -c76e2f422ef6357dbe980b968002b82d linux-3.0/drivers/media/video/ir-kbd-i2c.c -55dc7c00e72126d5d5ecfa1fd7be26ed linux-3.0/drivers/media/video/indycam.h -5ebf419f33f537324c0524162b4ce30f linux-3.0/drivers/media/video/indycam.c -739513e0725310d26679447655538fa7 linux-3.0/drivers/media/video/imx074.c -fa05a7640de70cf8370d3fbfcc4de1c4 linux-3.0/drivers/media/video/ibmmpeg2.h -bb2c0aa0044bc3e3b3d78569910c9d11 linux-3.0/drivers/media/video/hexium_orion.c -d32ccde9bd00665b3f0dc2539df08543 linux-3.0/drivers/media/video/hexium_gemini.c -526c73a56666a18e3df808532299867e linux-3.0/drivers/media/video/hdpvr/hdpvr.h -cc313d502d20922fbd984cf56c4d2e40 linux-3.0/drivers/media/video/hdpvr/hdpvr-video.c -c608406a8976ae06ae02c0b32072417d linux-3.0/drivers/media/video/hdpvr/hdpvr-i2c.c -68f58a64e7d90a530ef0d67140dbacf4 linux-3.0/drivers/media/video/hdpvr/hdpvr-core.c -0664818768a28f988718f1590b7f2013 linux-3.0/drivers/media/video/hdpvr/hdpvr-control.c -ec16458bae078260da4d5c91b37b3ea6 linux-3.0/drivers/media/video/hdpvr/Makefile -d643f92bc1f572bbe96a65ad67225644 linux-3.0/drivers/media/video/hdpvr/Kconfig -a399caef126b663207c468239e818f81 linux-3.0/drivers/media/video/gspca/zc3xx.c -4829acfdcfe85173982154125a93d7e1 linux-3.0/drivers/media/video/gspca/zc3xx-reg.h -3ec7ffb333bfb905c03548c9cddc85d2 linux-3.0/drivers/media/video/gspca/xirlink_cit.c -34f465b5a2149b2f9a61f2f6cb879874 linux-3.0/drivers/media/video/gspca/w996Xcf.c -f1ab252677095a0d4e71944cb88ad080 linux-3.0/drivers/media/video/gspca/vicam.c -865ff8f045dec6332886c5bdf011179e linux-3.0/drivers/media/video/gspca/vc032x.c -cc9a81abc47ad465464f45211a59c24f linux-3.0/drivers/media/video/gspca/tv8532.c -c9eb46e5ff17d48ed6f6b3d230a77076 linux-3.0/drivers/media/video/gspca/t613.c -99923a428e182d1ea5995068ad931baa linux-3.0/drivers/media/video/gspca/sunplus.c -de188c07a9521281f492ce8f8068e373 linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx_vv6410.h -caaec8f95ccae671384d35b486699798 linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx_vv6410.c -c8cb2834f9ac9b4e7422894929777f4f linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx_st6422.h -8790045754248e6495a33815ea356cd4 linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx_st6422.c -d320971c8db5a41353fc8aa10a969cc2 linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx_sensor.h -965550c0ff7f46564e8f241745cbbd71 linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx_pb0100.h -57191a37be55848e3f1f6411c7a06e46 linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx_pb0100.c -076f437a95e105c978fe291dd6a406b5 linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx_hdcs.h -27af2b04d04899bd2c3721ba10c9a23d linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx_hdcs.c -92e0df039c8d9f26281702317e6eef94 linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx.h -8ed18924608f31489a9c49bb4d511e43 linux-3.0/drivers/media/video/gspca/stv06xx/stv06xx.c -ace7b468cb6c9dee455021c64450c754 linux-3.0/drivers/media/video/gspca/stv06xx/Makefile -ad3f0901698434b8e406dc97a96278e4 linux-3.0/drivers/media/video/gspca/stv06xx/Kconfig -9c63b09bd206f9e1fabe2c4ba10d37e5 linux-3.0/drivers/media/video/gspca/stv0680.c -b9359e61ed72b3561d1dbbea02b57ef0 linux-3.0/drivers/media/video/gspca/stk014.c -374b85810adaf932b50051ce76c64138 linux-3.0/drivers/media/video/gspca/sq930x.c -b72e5683204e67e2c5cc281ffb04d6ac linux-3.0/drivers/media/video/gspca/sq905c.c -c50097dec620cdfcb23ce38bb2c2a9ac linux-3.0/drivers/media/video/gspca/sq905.c -5c856564da2f34e7aebc8b95225e7394 linux-3.0/drivers/media/video/gspca/spca561.c -996860fb873a7c9592cfbcee1bb6baeb linux-3.0/drivers/media/video/gspca/spca508.c -bbe8f92ce686585103d630812b9fd423 linux-3.0/drivers/media/video/gspca/spca506.c -f3d125eac9ecd66b68c58f60ffb395f8 linux-3.0/drivers/media/video/gspca/spca505.c -a030ff87c3d8c02f9019a5fc03a8403f linux-3.0/drivers/media/video/gspca/spca501.c -641654d57214edb6fe7096450ed4deb0 linux-3.0/drivers/media/video/gspca/spca500.c -01299ba4804d46ba514a6e854cfd7694 linux-3.0/drivers/media/video/gspca/spca1528.c -b6224178158024b8e2898ab9cb2eab83 linux-3.0/drivers/media/video/gspca/sonixj.c -b05a1ba6479fa5cb9a00e0a14e415efd linux-3.0/drivers/media/video/gspca/sonixb.c -871ab986429b7fb590a3ae532d5f4ee7 linux-3.0/drivers/media/video/gspca/sn9c20x.c -67a451bec1220b8b353ae02434050ca1 linux-3.0/drivers/media/video/gspca/sn9c2028.h -b321bbb8d7b3534361e5aa0bf544b72c linux-3.0/drivers/media/video/gspca/sn9c2028.c -27a446cb02b0c8f8bd6f59c74108af4d linux-3.0/drivers/media/video/gspca/pac_common.h -4de7ed89cb74ed71c27efbbb87e28ba5 linux-3.0/drivers/media/video/gspca/pac7311.c -200859d4d41dec342b8a771239dc8981 linux-3.0/drivers/media/video/gspca/pac7302.c -3557d18b442fd8aad4d9897e774f2e9d linux-3.0/drivers/media/video/gspca/pac207.c -b591c61dc6c42dfaa72ee0e7f909b152 linux-3.0/drivers/media/video/gspca/ov534_9.c -c1044cf286dd1061b1edeef6e02bc877 linux-3.0/drivers/media/video/gspca/ov534.c -b31ed0bd6cfc5b5da42f54c088663e7c linux-3.0/drivers/media/video/gspca/ov519.c -49a2e58ca45ac2bc92d6bf98a12c8727 linux-3.0/drivers/media/video/gspca/nw80x.c -b70e11ed487d61805f9ed20916ebe7b9 linux-3.0/drivers/media/video/gspca/mr97310a.c -f374d21b752517e0058b53dd9dcc6cd2 linux-3.0/drivers/media/video/gspca/mars.c -0dd50dfe77e74d76d8c9e95465da777c linux-3.0/drivers/media/video/gspca/m5602/m5602_sensor.h -b971b078b72bad0c45c4a3d3f1c0e07a linux-3.0/drivers/media/video/gspca/m5602/m5602_s5k83a.h -c000773486fa88594aea4f3f5db1be56 linux-3.0/drivers/media/video/gspca/m5602/m5602_s5k83a.c -871e9a0533895daeebba2a52dd0d1a1f linux-3.0/drivers/media/video/gspca/m5602/m5602_s5k4aa.h -8c60257ffcf727614b1ecc0b7a68ccb6 linux-3.0/drivers/media/video/gspca/m5602/m5602_s5k4aa.c -85eaa96b0f7b9b86277ec604133e62eb linux-3.0/drivers/media/video/gspca/m5602/m5602_po1030.h -ace73d764d4234dbe5950e81106a7c36 linux-3.0/drivers/media/video/gspca/m5602/m5602_po1030.c -7dedbca0a9d75b258f77ed73dbd09aad linux-3.0/drivers/media/video/gspca/m5602/m5602_ov9650.h -c17560ed2795962793f4c43d8115f16c linux-3.0/drivers/media/video/gspca/m5602/m5602_ov9650.c -a436331279e1084a7490aea5dfc491e6 linux-3.0/drivers/media/video/gspca/m5602/m5602_ov7660.h -44a6a66414ba14b6b0b9d06217509b38 linux-3.0/drivers/media/video/gspca/m5602/m5602_ov7660.c -5429ea725414a2730ac0e3881483f119 linux-3.0/drivers/media/video/gspca/m5602/m5602_mt9m111.h -82caf48757ae673262a535c5c4084685 linux-3.0/drivers/media/video/gspca/m5602/m5602_mt9m111.c -2b88cf4829f08fb76fed0c1e9dd24868 linux-3.0/drivers/media/video/gspca/m5602/m5602_core.c -fc1c90a795a3714e4b20647c41954b2c linux-3.0/drivers/media/video/gspca/m5602/m5602_bridge.h -969c0d813abfa1087d78cf02ae012e33 linux-3.0/drivers/media/video/gspca/m5602/Makefile -1c8704dd01b2124533b453b109a534f8 linux-3.0/drivers/media/video/gspca/m5602/Kconfig -a5087230cd4c243379cf8842537aa711 linux-3.0/drivers/media/video/gspca/konica.c -47b2ae6b81250916b462e38d3b7c3ac2 linux-3.0/drivers/media/video/gspca/kinect.c -a7a1d9b71da767df6e02d2dfc1fdd96b linux-3.0/drivers/media/video/gspca/jpeg.h -925c4630c2766e3a4b8d611fbac08bdb linux-3.0/drivers/media/video/gspca/jeilinj.c -ad32798cfdbcb5e8f8ec27792235f831 linux-3.0/drivers/media/video/gspca/gspca.h -060124ccdd783e6c7ee31fccabdc44ac linux-3.0/drivers/media/video/gspca/gspca.c -8c39e14fc11aaba40485592e9b91118f linux-3.0/drivers/media/video/gspca/gl860/gl860.h -5686c82c295f4cca9185208575bdd995 linux-3.0/drivers/media/video/gspca/gl860/gl860.c -d127e57cb45ccd9a4e086c709d576052 linux-3.0/drivers/media/video/gspca/gl860/gl860-ov9655.c -e84ed01a167127cde6f6ea6977a6b52f linux-3.0/drivers/media/video/gspca/gl860/gl860-ov2640.c -8e32ed1248019abf337aa0dc65ff7ec4 linux-3.0/drivers/media/video/gspca/gl860/gl860-mi2020.c -66b778bfec009b56f361dd861d784e34 linux-3.0/drivers/media/video/gspca/gl860/gl860-mi1320.c -84de30037940d3b903a77695210bbb4c linux-3.0/drivers/media/video/gspca/gl860/Makefile -fb890f8d10b73e5507b1d548814c113c linux-3.0/drivers/media/video/gspca/gl860/Kconfig -4eb9586c3d6fff2c9bb7186ea5413751 linux-3.0/drivers/media/video/gspca/finepix.c -84ca3bcce3a28877561f2eca77f57b17 linux-3.0/drivers/media/video/gspca/etoms.c -8d5982647378e7f52bc7cc4b0c5823b9 linux-3.0/drivers/media/video/gspca/cpia1.c -e1c38a89aac28ce798821d7624037f9f linux-3.0/drivers/media/video/gspca/conex.c -5974527476566b470d003248c4cfc35f linux-3.0/drivers/media/video/gspca/benq.c -62bd602878f36c5c75cd91aa6bb73358 linux-3.0/drivers/media/video/gspca/autogain_functions.h -6873f5a04e26776a44f7e0ee5a0096a6 linux-3.0/drivers/media/video/gspca/Makefile -e623eb0f715e0d87e3eb839463d66e26 linux-3.0/drivers/media/video/gspca/Kconfig -e13f22dfcbc86539af5a839ed7668f9a linux-3.0/drivers/media/video/fsl-viu.c -714d7875c2cacf79c957e325d0bbd960 linux-3.0/drivers/media/video/et61x251/et61x251_tas5130d1b.c -d4bdc150852166cd1d11d8a7a92f18fe linux-3.0/drivers/media/video/et61x251/et61x251_sensor.h -63416e6d2f07c0270542d2bd6b269fa5 linux-3.0/drivers/media/video/et61x251/et61x251_core.c -02d253654bbbd9f9af1a1218864e6bb2 linux-3.0/drivers/media/video/et61x251/et61x251.h -f8435bd2f70c3b5fc4ea13f40dbb7e9e linux-3.0/drivers/media/video/et61x251/Makefile -222d10af1e192d4498a6672897c6f5bf linux-3.0/drivers/media/video/et61x251/Kconfig -c196c29f7017510aa9b8a6afe151bc08 linux-3.0/drivers/media/video/em28xx/em28xx.h -2cf1a5c8a90bdcc19f1870de7a1ff903 linux-3.0/drivers/media/video/em28xx/em28xx-video.c -9e17e8de785b0c1504664436e87a9a10 linux-3.0/drivers/media/video/em28xx/em28xx-vbi.c -5af0f49017ba08b50c73ef88cd6552f5 linux-3.0/drivers/media/video/em28xx/em28xx-reg.h -3ff92e50f0887766582ef680962c9349 linux-3.0/drivers/media/video/em28xx/em28xx-input.c -dc67f380b3562a051e4b42fe141d6d52 linux-3.0/drivers/media/video/em28xx/em28xx-i2c.c -33300a6a1a0f3a61d0f0d8b25b014189 linux-3.0/drivers/media/video/em28xx/em28xx-dvb.c -0a11271a343657aa9ba860a8cd3de074 linux-3.0/drivers/media/video/em28xx/em28xx-core.c -7d6f9c44595b6fb52119ea280a2c141f linux-3.0/drivers/media/video/em28xx/em28xx-cards.c -006ca7bcb0307c297641163cf4125bc7 linux-3.0/drivers/media/video/em28xx/em28xx-audio.c -09651323232941f2cbf21a497d5abb65 linux-3.0/drivers/media/video/em28xx/Makefile -04887c922696c2c48f0b56dd73a4e49a linux-3.0/drivers/media/video/em28xx/Kconfig -f5fafa40b9449d4c2915b6f4c00c3808 linux-3.0/drivers/media/video/davinci/vpss.c -0e5768a3bcb49aeb9c886e576bb3f4b6 linux-3.0/drivers/media/video/davinci/vpif_display.h -64c4e0dd3d2b44195b493f9c15ba361c linux-3.0/drivers/media/video/davinci/vpif_display.c -a6bfd487ef6cac8bbb574f7cccf14a60 linux-3.0/drivers/media/video/davinci/vpif_capture.h -cb8b673deeade441ff3cb60b89c0b7fe linux-3.0/drivers/media/video/davinci/vpif_capture.c -27242e13fa96adb5aaa46901836b8842 linux-3.0/drivers/media/video/davinci/vpif.h -8942d207641901d62ab9401c677b2c8b linux-3.0/drivers/media/video/davinci/vpif.c -8b3d8d2e61b26fc7a64b6a022f1d26b1 linux-3.0/drivers/media/video/davinci/vpfe_capture.c -7b8b9f5ee81733095f50378c749e6151 linux-3.0/drivers/media/video/davinci/isif_regs.h -742b5887f3375c1385d1cc2b6b1d96e3 linux-3.0/drivers/media/video/davinci/isif.c -0d6555df106b24ac1755f2c49f73356a linux-3.0/drivers/media/video/davinci/dm644x_ccdc_regs.h -62193af586bb1f15b3817b46d41dd7f3 linux-3.0/drivers/media/video/davinci/dm644x_ccdc.c -d3421709a8c2a6188f5a3b85a23208ad linux-3.0/drivers/media/video/davinci/dm355_ccdc_regs.h -5a7bc32fd680c5b5857fe5dec9414bee linux-3.0/drivers/media/video/davinci/dm355_ccdc.c -98e5a09e210071076cc8808e0308c3b7 linux-3.0/drivers/media/video/davinci/ccdc_hw_device.h -6c4f14a91c47ff3a8dd79de2afbad56d linux-3.0/drivers/media/video/davinci/Makefile -e40bcbb497da9b7517a4ea56107f7892 linux-3.0/drivers/media/video/davinci/Kconfig -d1917731db8b6f797b2633fa314c8877 linux-3.0/drivers/media/video/cx88/cx88.h -dcac07c713e6c1a4b53fba055786ba71 linux-3.0/drivers/media/video/cx88/cx88-vp3054-i2c.h -f98cde432e32d2d46d663ae0bac2ce02 linux-3.0/drivers/media/video/cx88/cx88-vp3054-i2c.c -f940c2fb7966909380573f6265df5994 linux-3.0/drivers/media/video/cx88/cx88-video.c -2680e02e79f138d6a5a69d77a416714b linux-3.0/drivers/media/video/cx88/cx88-vbi.c -e50b8c7acb84b0a1de41ab214f99c6c2 linux-3.0/drivers/media/video/cx88/cx88-tvaudio.c -45ef26baa7232a23ea09fa7134ec8fc3 linux-3.0/drivers/media/video/cx88/cx88-reg.h -034eb3ec0da4b572ddcecf160d5a5864 linux-3.0/drivers/media/video/cx88/cx88-mpeg.c -5cfaab497475adf74f6944eadfefe822 linux-3.0/drivers/media/video/cx88/cx88-input.c -58c531ed276b36dcf2c581ec1bfa089f linux-3.0/drivers/media/video/cx88/cx88-i2c.c -ec89b33a7fb53bc095fb710fd1059b59 linux-3.0/drivers/media/video/cx88/cx88-dvb.c -9e8dc76d282e5b4af5141af881271f92 linux-3.0/drivers/media/video/cx88/cx88-dsp.c -7526eded31c0f81a506a65e6e540998c linux-3.0/drivers/media/video/cx88/cx88-core.c -a3966c00081f41d60f2128e627aec482 linux-3.0/drivers/media/video/cx88/cx88-cards.c -a9b19207ea6f9856433d808182c0f45f linux-3.0/drivers/media/video/cx88/cx88-blackbird.c -f5094a90ff24965442cc0c987717ee1f linux-3.0/drivers/media/video/cx88/cx88-alsa.c -a2bc18040dbc288eebe7f3f357eab2dd linux-3.0/drivers/media/video/cx88/Makefile -51299255e1eff7cbc18517129d9341df linux-3.0/drivers/media/video/cx88/Kconfig -950dee4a3eebcaddfe9e4d7daf8d552f linux-3.0/drivers/media/video/cx25840/cx25840-vbi.c -216e028ce94470533c6ddab2e32aed8a linux-3.0/drivers/media/video/cx25840/cx25840-ir.c -1d9f2e90eb47b09dc449fee0f40225c4 linux-3.0/drivers/media/video/cx25840/cx25840-firmware.c -cb04852bc415277cdd1197e30f0e000e linux-3.0/drivers/media/video/cx25840/cx25840-core.h -5261e556cbbbfb31fb39d3609ff5b916 linux-3.0/drivers/media/video/cx25840/cx25840-core.c -c5658afbefd2b3a8742e72f3f2ba7c7b linux-3.0/drivers/media/video/cx25840/cx25840-audio.c -969029530a0c9b1f2393f7e595c19cc1 linux-3.0/drivers/media/video/cx25840/Makefile -9615dd0ad1e81354f6e0c58f5caace71 linux-3.0/drivers/media/video/cx25840/Kconfig -b9837bba3a9e6e9532ea4dfaba0c55d6 linux-3.0/drivers/media/video/cx23885/netup-init.h -9dea07c10fb6764e7d292bf20b9ebec6 linux-3.0/drivers/media/video/cx23885/netup-init.c -3d9d089173bcc8f5b27e60f8564bb20f linux-3.0/drivers/media/video/cx23885/netup-eeprom.h -026f1943b9876f490f1932ea4601bf34 linux-3.0/drivers/media/video/cx23885/netup-eeprom.c -6cb693446495a003e3eda3ac0e7e2ab3 linux-3.0/drivers/media/video/cx23885/cx23888-ir.h -edbe40df8f6c2c42113adba1d473a13e linux-3.0/drivers/media/video/cx23885/cx23888-ir.c -75d3f14a0676484a4a172dc57c1efe65 linux-3.0/drivers/media/video/cx23885/cx23885.h -af0e66065c289ad8322fdc288b46e1a5 linux-3.0/drivers/media/video/cx23885/cx23885-video.c -0be6d61832f97b80e0cb278b169e7625 linux-3.0/drivers/media/video/cx23885/cx23885-vbi.c -c68dd6bd3077f052789f887e303faaab linux-3.0/drivers/media/video/cx23885/cx23885-reg.h -af10bdb3a13e118fe1627c1582df7518 linux-3.0/drivers/media/video/cx23885/cx23885-ir.h -cb5292305e27f1fd9ad127e5bdfa110a linux-3.0/drivers/media/video/cx23885/cx23885-ir.c -b457798976862df92e7e96be841db63a linux-3.0/drivers/media/video/cx23885/cx23885-ioctl.h -2468fd194e1ab91eae24056dc4347c02 linux-3.0/drivers/media/video/cx23885/cx23885-ioctl.c -f68effb407d7708e6bda96cc9a9e4d43 linux-3.0/drivers/media/video/cx23885/cx23885-input.h -6e6b5094355e852c576d710695c3da86 linux-3.0/drivers/media/video/cx23885/cx23885-input.c -1376bf6bd5331ebb22e8d063816ac516 linux-3.0/drivers/media/video/cx23885/cx23885-i2c.c -92106cefd7f230253381b07a02f2117c linux-3.0/drivers/media/video/cx23885/cx23885-f300.h -e39f56f254fdc53a2e8a63b3998da691 linux-3.0/drivers/media/video/cx23885/cx23885-f300.c -3604c97acfb61c1f8dfe71767219788a linux-3.0/drivers/media/video/cx23885/cx23885-dvb.c -bdff50760c41ff21e18c7dffab53e184 linux-3.0/drivers/media/video/cx23885/cx23885-core.c -921b7826299d1455c6f9ac9232182360 linux-3.0/drivers/media/video/cx23885/cx23885-cards.c -d1c971e13022e7cd3373af616d7de744 linux-3.0/drivers/media/video/cx23885/cx23885-av.h -0311b2841cef3dbdee1d45ba467bb1cb linux-3.0/drivers/media/video/cx23885/cx23885-av.c -d88212b834643d28cd86be992d0c92fd linux-3.0/drivers/media/video/cx23885/cx23885-417.c -880c6cc7b663b19866d2f3fa791ee417 linux-3.0/drivers/media/video/cx23885/cimax2.h -0a180123041adb4633f32bee01fc197c linux-3.0/drivers/media/video/cx23885/cimax2.c -9366d1e5d026c67372f4abaa272571af linux-3.0/drivers/media/video/cx23885/altera-ci.h -6c3b7c7ac3247d78ae1782e6213c1b20 linux-3.0/drivers/media/video/cx23885/altera-ci.c -a132301454002ba6103759f0728cb833 linux-3.0/drivers/media/video/cx23885/Makefile -0f3cb7c59b7d18750a359a8f90cf8573 linux-3.0/drivers/media/video/cx23885/Kconfig -54a12c4439c17ef3c352f2be90088567 linux-3.0/drivers/media/video/cx2341x.c -88816dbe639a06aa01ee77e9309f6419 linux-3.0/drivers/media/video/cx231xx/cx231xx.h -b626778f6e774709045ca256d6c2cee6 linux-3.0/drivers/media/video/cx231xx/cx231xx-video.c -5bb9af32b025be4fa73186314ece9c76 linux-3.0/drivers/media/video/cx231xx/cx231xx-vbi.h -0ac07318c7b408ca109e174feafad31d linux-3.0/drivers/media/video/cx231xx/cx231xx-vbi.c -7ad4fddc3f4d906afe8d2e1130ec657d linux-3.0/drivers/media/video/cx231xx/cx231xx-reg.h -9636f0361fa9a0791d537505434453e1 linux-3.0/drivers/media/video/cx231xx/cx231xx-pcb-cfg.h -61b7a1053d5bcb0fbb8b41ba3469130a linux-3.0/drivers/media/video/cx231xx/cx231xx-pcb-cfg.c -19fa0e73cf6b60fc5bd4981289138f78 linux-3.0/drivers/media/video/cx231xx/cx231xx-input.c -81fff16005618feb7cd228546705d1df linux-3.0/drivers/media/video/cx231xx/cx231xx-i2c.c -1e0dafb4c2eb5e733c456f0f6fb6a3f2 linux-3.0/drivers/media/video/cx231xx/cx231xx-dvb.c -7a943f26629f54f8b9dbd58d57662961 linux-3.0/drivers/media/video/cx231xx/cx231xx-dif.h -203e776acddaa64fdc11673879fb6dee linux-3.0/drivers/media/video/cx231xx/cx231xx-core.c -f1aecb297c1f66c8eafb9b4c79e67c3f linux-3.0/drivers/media/video/cx231xx/cx231xx-conf-reg.h -83f13f6e2bf96db31a9efe267b721d9d linux-3.0/drivers/media/video/cx231xx/cx231xx-cards.c -22a07687d37e45e6dbe4313587beed1e linux-3.0/drivers/media/video/cx231xx/cx231xx-avcore.c -5625c2040088fedead359d45f9b5f34a linux-3.0/drivers/media/video/cx231xx/cx231xx-audio.c -1d3fcd2cb812c378edd972d6a0b68e93 linux-3.0/drivers/media/video/cx231xx/cx231xx-417.c -8cb8b2c49857ba67787eb3cc93765e06 linux-3.0/drivers/media/video/cx231xx/Makefile -915ed6bf7fe7a0b7d834e0933eeef1f5 linux-3.0/drivers/media/video/cx231xx/Kconfig -a99813e6aa57c09f27c63440ae2a1dd8 linux-3.0/drivers/media/video/cx18/cx23418.h -740093f13ab21fc9376c73520bd08302 linux-3.0/drivers/media/video/cx18/cx18-video.h -47914096368666e9343e1a0fc92a11d6 linux-3.0/drivers/media/video/cx18/cx18-video.c -c1f5911755e6a6e454a5df1a53872822 linux-3.0/drivers/media/video/cx18/cx18-version.h -2b84d759c886f1fff4580923c40b39dc linux-3.0/drivers/media/video/cx18/cx18-vbi.h -c3460edad0cf2040514305d384b087e7 linux-3.0/drivers/media/video/cx18/cx18-vbi.c -789a100d9fccc396444cd2271d895d4b linux-3.0/drivers/media/video/cx18/cx18-streams.h -a96eac7a47c1bb68b0cc7d939affc165 linux-3.0/drivers/media/video/cx18/cx18-streams.c -692b570df14db58d3d25a13e283a8a42 linux-3.0/drivers/media/video/cx18/cx18-scb.h -a47cf2fe7f2deb968834a59371af5d29 linux-3.0/drivers/media/video/cx18/cx18-scb.c -f69eb2620845edcdc8c97136e91e7867 linux-3.0/drivers/media/video/cx18/cx18-queue.h -4bd0018d4ac5c0a118e82b5ee7ded8e2 linux-3.0/drivers/media/video/cx18/cx18-queue.c -5aa6d62cf11f5128af66260bc250aaa2 linux-3.0/drivers/media/video/cx18/cx18-mailbox.h -b483b37803d6da69e7c7a922b0b5daa8 linux-3.0/drivers/media/video/cx18/cx18-mailbox.c -94a5aec0d755db7c2e2060b4f1498225 linux-3.0/drivers/media/video/cx18/cx18-irq.h -c133eaf489b1011dd778309f9f1e66ab linux-3.0/drivers/media/video/cx18/cx18-irq.c -d4ddbccc9cbbeec022c185ee2dffcbcb linux-3.0/drivers/media/video/cx18/cx18-ioctl.h -77034c1c69a76c4e1b1e56888a9253f6 linux-3.0/drivers/media/video/cx18/cx18-ioctl.c -f52c524bfffef78583107b5fa2130f78 linux-3.0/drivers/media/video/cx18/cx18-io.h -2b713f910619c8514f7a55ba6020b8d5 linux-3.0/drivers/media/video/cx18/cx18-io.c -ad65732693fd64ff61f9b3c33016f6e0 linux-3.0/drivers/media/video/cx18/cx18-i2c.h -7d0b7d53c2a9a29029ac0f1bb59fa0e5 linux-3.0/drivers/media/video/cx18/cx18-i2c.c -4e72467469e1635799ecd11ad53d01da linux-3.0/drivers/media/video/cx18/cx18-gpio.h -4a63bf0895d7cb4a7b23cd1bc5dcb0e6 linux-3.0/drivers/media/video/cx18/cx18-gpio.c -4a6a60d548df4b1732968c1cf479d530 linux-3.0/drivers/media/video/cx18/cx18-firmware.h -021db3cbac2a1ef48d5a7582246f11f9 linux-3.0/drivers/media/video/cx18/cx18-firmware.c -fd1a7fccfa69104f410d125f565cf3e6 linux-3.0/drivers/media/video/cx18/cx18-fileops.h -46d75834282a32b67bc8c41193e315e7 linux-3.0/drivers/media/video/cx18/cx18-fileops.c -1358a08eaf2a8de8f217f1e31676437b linux-3.0/drivers/media/video/cx18/cx18-dvb.h -cfcc3190aa23307b0854d410c2efd870 linux-3.0/drivers/media/video/cx18/cx18-dvb.c -19b02bcacd43191dd7a010eaac631f95 linux-3.0/drivers/media/video/cx18/cx18-driver.h -ef5d4f0a101e418a91bbad4b17e746bb linux-3.0/drivers/media/video/cx18/cx18-driver.c -6d71cf67ee45a17c977068822db95e23 linux-3.0/drivers/media/video/cx18/cx18-controls.h -c0e859df5397ae1bd4e63d3d31beccba linux-3.0/drivers/media/video/cx18/cx18-controls.c -89ac753f2c1c83ba2aeb3c95f3b5b4dc linux-3.0/drivers/media/video/cx18/cx18-cards.h -bbf84149a14d221d302a1160e9aac586 linux-3.0/drivers/media/video/cx18/cx18-cards.c -95ca46395631890ca6d87aeab2bdf84e linux-3.0/drivers/media/video/cx18/cx18-av-vbi.c -ca2315b2d34cc9dbcac8048688d38d40 linux-3.0/drivers/media/video/cx18/cx18-av-firmware.c -d1fab4620b5d73a4dc24daa86dbb054a linux-3.0/drivers/media/video/cx18/cx18-av-core.h -1cd97728188d4356b7bfb0c9e8f43751 linux-3.0/drivers/media/video/cx18/cx18-av-core.c -86489bdcad792da580721d23f59b8026 linux-3.0/drivers/media/video/cx18/cx18-av-audio.c -579743f6a753478756166bec0cfb6bb2 linux-3.0/drivers/media/video/cx18/cx18-audio.h -8d8c0cb9938329d59932489b75072c41 linux-3.0/drivers/media/video/cx18/cx18-audio.c -53bf2c427adb6c822d357ea57a3bf2d4 linux-3.0/drivers/media/video/cx18/cx18-alsa.h -e204843c7005f2df3ce20b314611a567 linux-3.0/drivers/media/video/cx18/cx18-alsa-pcm.h -33ae8f41ca902698c0a338d06336af77 linux-3.0/drivers/media/video/cx18/cx18-alsa-pcm.c -aa166972b4110f161265c9b7935b814b linux-3.0/drivers/media/video/cx18/cx18-alsa-mixer.h -b3d62660d076b03108bf8c287032d6ba linux-3.0/drivers/media/video/cx18/cx18-alsa-mixer.c -7199dde8f0ebd25f05cd57c3788cfc1c linux-3.0/drivers/media/video/cx18/cx18-alsa-main.c -ccefa7a0440f56f7a72b1ece230ff112 linux-3.0/drivers/media/video/cx18/Makefile -6b1227ff48232f15249efc24ff7a3ad0 linux-3.0/drivers/media/video/cx18/Kconfig -3920cc772ac0142790981d2edce68461 linux-3.0/drivers/media/video/cs8420.h -338342e01cc0ed79cd8c54ef1326a520 linux-3.0/drivers/media/video/cs53l32a.c -d44ad394468ab3088451ddbd43f940b4 linux-3.0/drivers/media/video/cs5345.c -fb204b4a35ec0da69faf26c11d1035e9 linux-3.0/drivers/media/video/cpia2/cpia2dev.h -aa1b7c845769d3f404748beed3f12ffe linux-3.0/drivers/media/video/cpia2/cpia2_v4l.c -a192f55497b2af37e8b2e7a2df4640ca linux-3.0/drivers/media/video/cpia2/cpia2_usb.c -10343a8a0c936a4632df502fcf26266e linux-3.0/drivers/media/video/cpia2/cpia2_registers.h -13f28c4194a4e7ab6de2b4a470db94fe linux-3.0/drivers/media/video/cpia2/cpia2_core.c -c58840e74ae8b45b10d7868ffa2235ff linux-3.0/drivers/media/video/cpia2/cpia2.h -0bfe20e8c44000d9f8f6e1d6421ffcff linux-3.0/drivers/media/video/cpia2/Makefile -91097ccb8af6d52a00e887b9f8449d71 linux-3.0/drivers/media/video/cpia2/Kconfig -69f5130d89485750dac07c955fd13c1f linux-3.0/drivers/media/video/cafe_ccic.c -885024e8d643b2148b140864656813f9 linux-3.0/drivers/media/video/cafe_ccic-regs.h -639602e6089ac9b2b0e5ef6df3e05f30 linux-3.0/drivers/media/video/c-qcam.c -22edf3d83e39310ade9d1e539cf82a79 linux-3.0/drivers/media/video/bw-qcam.c -2477f4e1c2ab1903a55616231ec8b0dc linux-3.0/drivers/media/video/btcx-risc.h -722d1da8c22e5ca88bf35c8d2bdf31f6 linux-3.0/drivers/media/video/btcx-risc.c -5681d7e6c7c039f1359708d0ecf4f0fd linux-3.0/drivers/media/video/bt8xx/bttvp.h -826a0e14888a2ec6468ca21eaa9504b2 linux-3.0/drivers/media/video/bt8xx/bttv.h -4e9e22b8b7a3a0a252e6df71d49e8c32 linux-3.0/drivers/media/video/bt8xx/bttv-vbi.c -c017d5ee50296c88ae75c5d067615090 linux-3.0/drivers/media/video/bt8xx/bttv-risc.c -4d553f1043e4c3733a0a2b366621bf72 linux-3.0/drivers/media/video/bt8xx/bttv-input.c -4948b2561a10234c3162c44af040521a linux-3.0/drivers/media/video/bt8xx/bttv-if.c -c536b8e9cca65d26b7f60c938fc9200a linux-3.0/drivers/media/video/bt8xx/bttv-i2c.c -4202b56eb13702460070f337a6855725 linux-3.0/drivers/media/video/bt8xx/bttv-gpio.c -1e9cffe40e770b98a75452ce5709affb linux-3.0/drivers/media/video/bt8xx/bttv-driver.c -2cf82df568d82f3fc00a6bea644c353e linux-3.0/drivers/media/video/bt8xx/bttv-cards.c -90c58fd1318ee160a197eeeddce4500f linux-3.0/drivers/media/video/bt8xx/bttv-audio-hook.h -c4cc572b5b40dc37a4b0b3a9eb678d7c linux-3.0/drivers/media/video/bt8xx/bttv-audio-hook.c -385bf2a63eb497c95bef6fb3cce4f85b linux-3.0/drivers/media/video/bt8xx/bt848.h -39b2270d9b7e860b7cfc5c2beadb4578 linux-3.0/drivers/media/video/bt8xx/Makefile -c301013d6c075df85a03d8f7c22d8f58 linux-3.0/drivers/media/video/bt8xx/Kconfig -ff09f6c0e8bd2cd649c937e0975b6091 linux-3.0/drivers/media/video/bt866.c -f74d2286b2a7381329affc633d354b40 linux-3.0/drivers/media/video/bt856.c -e31aba9499fbb6fa9509bfd81836d62b linux-3.0/drivers/media/video/bt819.c -15c812faa91a8981271a029ef23d2160 linux-3.0/drivers/media/video/au0828/au0828.h -109d83d3a12216f3fa66e29fa6007922 linux-3.0/drivers/media/video/au0828/au0828-video.c -2665e4340d6ce158ce04cb3d9dede74a linux-3.0/drivers/media/video/au0828/au0828-vbi.c -78504e57e9d4b366d6b95c18279d7f3a linux-3.0/drivers/media/video/au0828/au0828-reg.h -2f7b794c2fd0d1e26cdb3e5cd25f07fe linux-3.0/drivers/media/video/au0828/au0828-i2c.c -5ce4b014459f6758c43ffdb1882586da linux-3.0/drivers/media/video/au0828/au0828-dvb.c -e81948ddf2c6a9b3a225492497b843d9 linux-3.0/drivers/media/video/au0828/au0828-core.c -17995e250c7c5f2e68f90e7fc1e3b661 linux-3.0/drivers/media/video/au0828/au0828-cards.h -0968b4ef888e2e4b0532ea2d510af136 linux-3.0/drivers/media/video/au0828/au0828-cards.c -91b1846e8e9ae9c576eb3b7ec027ca99 linux-3.0/drivers/media/video/au0828/Makefile -dc0c34a39dec866880c24af8a136137b linux-3.0/drivers/media/video/au0828/Kconfig -d8d781fb619f75f0ffa1e80bd9ce368c linux-3.0/drivers/media/video/arv.c -d6c84a51cbd2cb90b8f784aa4c515d92 linux-3.0/drivers/media/video/ak881x.c -fb4bdd99f482d7b31cb0aa1aed1e3628 linux-3.0/drivers/media/video/adv7343_regs.h -37ef1491963ce8d608fcbc95f1234b87 linux-3.0/drivers/media/video/adv7343.c -00bf70e468d7c1dcfb087067f0cceda7 linux-3.0/drivers/media/video/adv7180.c -9488c51dafdc623686cedc2ffd99af78 linux-3.0/drivers/media/video/adv7175.c -65d6fa1241fce294eab814092579e97e linux-3.0/drivers/media/video/adv7170.c -56069908d0d150e8c06d3ae3bf287653 linux-3.0/drivers/media/video/Makefile -2801adcd6f6b47e35503f8fcdf8f4995 linux-3.0/drivers/media/video/Kconfig -8811ac8f0fa86c2d525d47f9f4336d91 linux-3.0/drivers/media/rc/winbond-cir.c -23bf86f3d88f543e05adf104bca257a8 linux-3.0/drivers/media/rc/streamzap.c -5a97e50bf324501b918934197bb5a2ee linux-3.0/drivers/media/rc/redrat3.c -ee7449fd16a1e8e952482e67919cc7e8 linux-3.0/drivers/media/rc/rc-main.c -08b103007300463bbd0d4fe3efc8dc45 linux-3.0/drivers/media/rc/rc-loopback.c -6dcd80654fe2dc712e99726ccccc0bb0 linux-3.0/drivers/media/rc/rc-core-priv.h -e81f7ddb65c14161dd4c1c649f1fb9ed linux-3.0/drivers/media/rc/nuvoton-cir.h -516daa25b6e44befc33776f7d8abece8 linux-3.0/drivers/media/rc/nuvoton-cir.c -512607076272a4463d49b2ef0dc51ed7 linux-3.0/drivers/media/rc/mceusb.c -e63bcaa523e1967f41c10d9391f22a00 linux-3.0/drivers/media/rc/lirc_dev.c -cd19b230d9e48055cec9180bff200b07 linux-3.0/drivers/media/rc/keymaps/rc-winfast.c -5e1212f7d1d1873a135c2ba4a61576b3 linux-3.0/drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.c -79f2f3cb58c1dd211219e2a639d19bd2 linux-3.0/drivers/media/rc/keymaps/rc-videomate-tv-pvr.c -c4dc98e722a40db98042f6be33c93759 linux-3.0/drivers/media/rc/keymaps/rc-videomate-s350.c -84e130dd32e011c8dcea350aaa259a01 linux-3.0/drivers/media/rc/keymaps/rc-videomate-m1f.c -ae391b84ab80788fc990a27464fee5e1 linux-3.0/drivers/media/rc/keymaps/rc-twinhan1027.c -9eb5e3da4aa0450caa2ca36eaf1164b5 linux-3.0/drivers/media/rc/keymaps/rc-tt-1500.c -1e9a2e048476fc294e2c774e6204720e linux-3.0/drivers/media/rc/keymaps/rc-trekstor.c -9e48134504690086b92307080e3f5cdd linux-3.0/drivers/media/rc/keymaps/rc-total-media-in-hand.c -d69a5b5bf272ec966e04e1c22d5c12d3 linux-3.0/drivers/media/rc/keymaps/rc-tivo.c -a75c3d2948422930161d78c68a1ed37f linux-3.0/drivers/media/rc/keymaps/rc-tevii-nec.c -2a07d3de9fb8824e31c742364de73421 linux-3.0/drivers/media/rc/keymaps/rc-terratec-slim.c -c7827e4d75b27f5053f5fe9da9802a07 linux-3.0/drivers/media/rc/keymaps/rc-terratec-slim-2.c -02d98218284e60cf30f6e56db8c77f54 linux-3.0/drivers/media/rc/keymaps/rc-terratec-cinergy-xs.c -f90b9463831e6b55629a5a41ddb0c76a linux-3.0/drivers/media/rc/keymaps/rc-technisat-usb2.c -1ec29ef8114fec20deaa88ea34b91780 linux-3.0/drivers/media/rc/keymaps/rc-tbs-nec.c -cd877d32871a46deef489504a0fc171a linux-3.0/drivers/media/rc/keymaps/rc-streamzap.c -9ef24216e37ce7ce21fad6c1b1b6333a linux-3.0/drivers/media/rc/keymaps/rc-real-audio-220-32-keys.c -3e39bcf8bd94af2a4ea022c6ecfd868b linux-3.0/drivers/media/rc/keymaps/rc-rc6-mce.c -4b29b5cfcd16e7d2bb8f87f31288583a linux-3.0/drivers/media/rc/keymaps/rc-pv951.c -91def29e8fdb403990017e3c4a49214a linux-3.0/drivers/media/rc/keymaps/rc-purpletv.c -e69a8d40005be63fddce52871d426df4 linux-3.0/drivers/media/rc/keymaps/rc-proteus-2309.c -ebac96543cabdc4bcb3409e01556f316 linux-3.0/drivers/media/rc/keymaps/rc-powercolor-real-angel.c -71e4d789836352cad99338f1b26ba271 linux-3.0/drivers/media/rc/keymaps/rc-pixelview.c -8056ea218c0549c200aced8cdfcc1ff8 linux-3.0/drivers/media/rc/keymaps/rc-pixelview-new.c -a5d92670090481977e659eff6c227997 linux-3.0/drivers/media/rc/keymaps/rc-pixelview-mk12.c -15fec7c5a8508f25e2a081ae50edeb71 linux-3.0/drivers/media/rc/keymaps/rc-pixelview-002t.c -a93774502f5e999144315be71e7974a9 linux-3.0/drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.c -f1a75804868ba49268167696d21f3199 linux-3.0/drivers/media/rc/keymaps/rc-pinnacle-grey.c -b0d5625d37d846067511bd0e7f5afa60 linux-3.0/drivers/media/rc/keymaps/rc-pinnacle-color.c -7fa884fdf3f567dd4225ce7e8cb6b662 linux-3.0/drivers/media/rc/keymaps/rc-pctv-sedna.c -9b52d4560cba97a23d8261c184447f38 linux-3.0/drivers/media/rc/keymaps/rc-npgtech.c -6ff603ee598927388156377113ce1305 linux-3.0/drivers/media/rc/keymaps/rc-norwood.c -c01ddb22b64ce0e13b43d31f4cf2ab7a linux-3.0/drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.c -a748987e977a8d683ef973dbcbf983ad linux-3.0/drivers/media/rc/keymaps/rc-nebula.c -616da5521d3e7700acd9c4c4fa44bba7 linux-3.0/drivers/media/rc/keymaps/rc-msi-tvanywhere.c -7f6c60ec00b605f7ffac6eb1b7c448f8 linux-3.0/drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.c -7ba1a8b9245add50eb913d0ce5f343de linux-3.0/drivers/media/rc/keymaps/rc-msi-digivox-iii.c -9e553afe418f7000a6a18755d95a0bfa linux-3.0/drivers/media/rc/keymaps/rc-msi-digivox-ii.c -cbfefb031a93fa5e690f5a5207afd611 linux-3.0/drivers/media/rc/keymaps/rc-manli.c -7a682a9d364f5c3b04c329f9c820bf69 linux-3.0/drivers/media/rc/keymaps/rc-lme2510.c -b9509f368f75c74f8929dd856fc27881 linux-3.0/drivers/media/rc/keymaps/rc-lirc.c -5cc0f580fad8bf154b20d73253f16ec6 linux-3.0/drivers/media/rc/keymaps/rc-leadtek-y04g0051.c -f6223baf075f3a0181eca7869fb15369 linux-3.0/drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.c -3f2353b75b96ec006e1db378632dec27 linux-3.0/drivers/media/rc/keymaps/rc-kworld-315u.c -7f6cd30569cee186185cdfd75aa5dd51 linux-3.0/drivers/media/rc/keymaps/rc-kaiomy.c -10ead8311bd5fce2c2f1cc5ac447ce24 linux-3.0/drivers/media/rc/keymaps/rc-iodata-bctv7e.c -d973bbcaa2f8dc0843429528d642bf48 linux-3.0/drivers/media/rc/keymaps/rc-imon-pad.c -13257bc07c34aac8bb64237d1db007be linux-3.0/drivers/media/rc/keymaps/rc-imon-mce.c -c338cbdd62d636c1fdc9d3fda35d5d33 linux-3.0/drivers/media/rc/keymaps/rc-hauppauge.c -bb5957c58fee55ea8dc7ead1c285aa17 linux-3.0/drivers/media/rc/keymaps/rc-gotview7135.c -288387c6d45560713c41724e848498dc linux-3.0/drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.c -40e4bc4d0dd4a59a4c24f19206cc59e1 linux-3.0/drivers/media/rc/keymaps/rc-gadmei-rm008z.c -3dd86978a8bb8a34efdee4021d097b63 linux-3.0/drivers/media/rc/keymaps/rc-fusionhdtv-mce.c -24375983945e18278642a092e7cc9c60 linux-3.0/drivers/media/rc/keymaps/rc-flyvideo.c -c6a533c2e209ce09da8d3bafb1a921a2 linux-3.0/drivers/media/rc/keymaps/rc-flydvb.c -415425503c0cb7d730a335e4d80f07b3 linux-3.0/drivers/media/rc/keymaps/rc-eztv.c -37d22a169f14c648243c52f9008b4914 linux-3.0/drivers/media/rc/keymaps/rc-evga-indtube.c -cfe28065b9ebaab90d5c30e99668fdbf linux-3.0/drivers/media/rc/keymaps/rc-encore-enltv2.c -745a49942a05b4eb094f40f5c7b76480 linux-3.0/drivers/media/rc/keymaps/rc-encore-enltv.c -adf648e524f583db484ecfe09f6dddb2 linux-3.0/drivers/media/rc/keymaps/rc-encore-enltv-fm53.c -cdf842845bc8a10f7b12bb180d0f8844 linux-3.0/drivers/media/rc/keymaps/rc-em-terratec.c -100ccda0452c89123ae3788b4586321f linux-3.0/drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.c -f7748c42061a9e5b6763488c365bb0bc linux-3.0/drivers/media/rc/keymaps/rc-dntv-live-dvb-t.c -cfb99be44bbc6cc63b314288e7f08d07 linux-3.0/drivers/media/rc/keymaps/rc-dm1105-nec.c -141451a2100aae8ce09ba39e65a7f3db linux-3.0/drivers/media/rc/keymaps/rc-digittrade.c -f8c1fd2ba160d42ff5dda9ae27246c77 linux-3.0/drivers/media/rc/keymaps/rc-digitalnow-tinytwin.c -1e104145573fb5cafb631710fd93263e linux-3.0/drivers/media/rc/keymaps/rc-dib0700-rc5.c -18b25cbff592ddc737d5cfb63cced026 linux-3.0/drivers/media/rc/keymaps/rc-dib0700-nec.c -c602e8b707cf5f3df6796bd5d897f8d2 linux-3.0/drivers/media/rc/keymaps/rc-cinergy.c -08192f1d5670ce34bd9323bf7c237089 linux-3.0/drivers/media/rc/keymaps/rc-cinergy-1400.c -e8c0eb9e6ef1d643c632f7be0c6a8cce linux-3.0/drivers/media/rc/keymaps/rc-budget-ci-old.c -906999f15ca3daf00977065143c0196a linux-3.0/drivers/media/rc/keymaps/rc-behold.c -7ef1cf45ffefde4fd08ed32a45fcb9ea linux-3.0/drivers/media/rc/keymaps/rc-behold-columbus.c -79f6065306e56e2946df56a428b9f825 linux-3.0/drivers/media/rc/keymaps/rc-azurewave-ad-tu700.c -888aa9efb0b3adf9872a18f34d3a4284 linux-3.0/drivers/media/rc/keymaps/rc-avertv-303.c -56894f9dd07ded6cf5bfd83d4d51a41c linux-3.0/drivers/media/rc/keymaps/rc-avermedia.c -b64319f49cdc977c0d7fabfe62c814b6 linux-3.0/drivers/media/rc/keymaps/rc-avermedia-rm-ks.c -0ea64799f0a5c0d9ec2d6fa347a30e72 linux-3.0/drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.c -99a12befd2861c25bc92c4fbad31cbb3 linux-3.0/drivers/media/rc/keymaps/rc-avermedia-m135a.c -ee3b2af02845da188963d89d888396c7 linux-3.0/drivers/media/rc/keymaps/rc-avermedia-dvbt.c -2ed13ec4e6133c0d0eb797f86da0e288 linux-3.0/drivers/media/rc/keymaps/rc-avermedia-cardbus.c -63f9ceabe3373fd6833931448a753d10 linux-3.0/drivers/media/rc/keymaps/rc-avermedia-a16d.c -872cd17f9e79dede492ab33869a1a07c linux-3.0/drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.c -e98ea7fa7b9ca9ede0142e9c06a29ab0 linux-3.0/drivers/media/rc/keymaps/rc-asus-pc39.c -2d50176b1fb1798747b86be3ba9beae6 linux-3.0/drivers/media/rc/keymaps/rc-apac-viewcomp.c -47df20d874592fd9bc3c947ee5dd5705 linux-3.0/drivers/media/rc/keymaps/rc-anysee.c -526a735dec8f680bbdc7527f454d3472 linux-3.0/drivers/media/rc/keymaps/rc-alink-dtu-m.c -e50a27089262b5a04c96c8a4f4e130e4 linux-3.0/drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.c -af541b7513f9061f31429682d843a5c1 linux-3.0/drivers/media/rc/keymaps/Makefile -fafd380473fa69480fcd34e238868ff2 linux-3.0/drivers/media/rc/keymaps/Kconfig -c7fa486491cbf6691dc274c9aced7f1b linux-3.0/drivers/media/rc/ite-cir.h -7a2bbedcdedb0fab76096085bba04287 linux-3.0/drivers/media/rc/ite-cir.c -a7c798058955a25c3bdd146cb7f2a016 linux-3.0/drivers/media/rc/ir-sony-decoder.c -9addc72fa764740b357f4dc880784e74 linux-3.0/drivers/media/rc/ir-rc6-decoder.c -50866eaaf5d67576626ea201bb941dc9 linux-3.0/drivers/media/rc/ir-rc5-sz-decoder.c -a44a516d98e328f622b390911ba97664 linux-3.0/drivers/media/rc/ir-rc5-decoder.c -51a8308b821e592159b70375fbfd1962 linux-3.0/drivers/media/rc/ir-raw.c -9cb2e111b536e753e0d7ec9a88efaf5f linux-3.0/drivers/media/rc/ir-nec-decoder.c -bc497878f3a6d48560ba84f7298908fc linux-3.0/drivers/media/rc/ir-lirc-codec.c -048e2f7193d316e4ef09d15edb577cb6 linux-3.0/drivers/media/rc/ir-jvc-decoder.c -bf7ad5071e25001540135eba23591f23 linux-3.0/drivers/media/rc/imon.c -11878a986d569cc265e4b0c1b51b29f5 linux-3.0/drivers/media/rc/fintek-cir.h -cd8eb4022579b4cfaff7e43dca02e8d6 linux-3.0/drivers/media/rc/fintek-cir.c -2ecac4d5047c52ca7b49c72c1925acb2 linux-3.0/drivers/media/rc/ene_ir.h -7549df171b41b3a4fe3b81c4278862f2 linux-3.0/drivers/media/rc/ene_ir.c -f357a8c7c0242354a8c8eace6503cc88 linux-3.0/drivers/media/rc/Makefile -9501f9ebed8574c7e4e37a3495008071 linux-3.0/drivers/media/rc/Kconfig -77462ee90ced3375358d2cdf5453cfa1 linux-3.0/drivers/media/radio/wl128x/fmdrv_v4l2.h -30e83c008ad894ea2256eda2b8ecea73 linux-3.0/drivers/media/radio/wl128x/fmdrv_v4l2.c -1d9d09c0f6e54f842a7a05db0be71930 linux-3.0/drivers/media/radio/wl128x/fmdrv_tx.h -da3fc7e63caf10ec50a6c9b9fb1686e8 linux-3.0/drivers/media/radio/wl128x/fmdrv_tx.c -c2a70733018b35be53ed63e895038646 linux-3.0/drivers/media/radio/wl128x/fmdrv_rx.h -6604bd890a1f2776af9a3a49c9fcd5dd linux-3.0/drivers/media/radio/wl128x/fmdrv_rx.c -01dfdcd7aba57198de65ad66c6cd77e2 linux-3.0/drivers/media/radio/wl128x/fmdrv_common.h -620ca165ef7c6a9564dcfe725786f51a linux-3.0/drivers/media/radio/wl128x/fmdrv_common.c -7ebc46aa94b2330e101e751dc0e05d31 linux-3.0/drivers/media/radio/wl128x/fmdrv.h -f173a2370e3dd9232595695eeca7aa75 linux-3.0/drivers/media/radio/wl128x/Makefile -da478d2a5c7120db887b02b0d0fa4315 linux-3.0/drivers/media/radio/wl128x/Kconfig -b6e7dc34b8013a84145af9b54f05b109 linux-3.0/drivers/media/radio/tef6862.c -84e4720acc7e6dca871149728e4432f7 linux-3.0/drivers/media/radio/si4713-i2c.h -739ebb33dc20bf041e1d37b4046275ce linux-3.0/drivers/media/radio/si4713-i2c.c -f65d9473816260161acd85965f318869 linux-3.0/drivers/media/radio/si470x/radio-si470x.h -b49044c566ef499e717b77b541f8ebdf linux-3.0/drivers/media/radio/si470x/radio-si470x-usb.c -477ddac0455e3f7821490dc46e8a6f87 linux-3.0/drivers/media/radio/si470x/radio-si470x-i2c.c -566c8f807f4c04c4a1b3f966249673e6 linux-3.0/drivers/media/radio/si470x/radio-si470x-common.c -9c0c4b81b83efd03393e1d093c50dfac linux-3.0/drivers/media/radio/si470x/Makefile -ee7fd6f903d543be3076a9247c037c84 linux-3.0/drivers/media/radio/si470x/Kconfig -ec3dcb6558cdfdd33148ed19d4d79f71 linux-3.0/drivers/media/radio/saa7706h.c -23c8519506966b80d4ec18cb8760898f linux-3.0/drivers/media/radio/radio-zoltrix.c -4026bb3910fa59395bc4d966f0cbeb2b linux-3.0/drivers/media/radio/radio-wl1273.c -725752b0ad578e646052495def97a644 linux-3.0/drivers/media/radio/radio-typhoon.c -9bd7b1b711d3f307686cf99e65270bbf linux-3.0/drivers/media/radio/radio-trust.c -61973f54bfd59164da74f92214c08290 linux-3.0/drivers/media/radio/radio-timb.c -56cd11ee7b6fe9975ca417264a5a63d4 linux-3.0/drivers/media/radio/radio-terratec.c -1178abf815ebf0753c3aec7432b35897 linux-3.0/drivers/media/radio/radio-tea5764.c -f49a83926ccec43e00304dbe6501b047 linux-3.0/drivers/media/radio/radio-si4713.c -bebae7d7558b8b80480a9a1d851f1a78 linux-3.0/drivers/media/radio/radio-sf16fmr2.c -97d78e5a339240ec1c18dc1f7f086949 linux-3.0/drivers/media/radio/radio-sf16fmi.c -9e743a2748bfa1a91e52d15bed72423b linux-3.0/drivers/media/radio/radio-rtrack2.c -362fc735b4ca3edccb6c9a2edaeb8d75 linux-3.0/drivers/media/radio/radio-mr800.c -5d294b8876f874fe52e805996c4a6528 linux-3.0/drivers/media/radio/radio-miropcm20.c -c55cb6a281ac5617211960f184b4143a linux-3.0/drivers/media/radio/radio-maxiradio.c -688c22f911f052cf6b75925c53e9634a linux-3.0/drivers/media/radio/radio-gemtek.c -39c33617ef91794bf2d07dd069cfcf4a linux-3.0/drivers/media/radio/radio-cadet.c -02d384e72b6aa240727f9d0d5a8b289b linux-3.0/drivers/media/radio/radio-aztech.c -359f6dde850b122d5755ec3a2a58a2d0 linux-3.0/drivers/media/radio/radio-aimslab.c -f17217ae652226493b84d4ab68616ff5 linux-3.0/drivers/media/radio/dsbr100.c -00c829b931d9a234932c836f5b1dd1bd linux-3.0/drivers/media/radio/Makefile -2c188f4a5be182dd030729a31b1511d3 linux-3.0/drivers/media/radio/Kconfig -91160ea0031b2220abc2e89713b5fe52 linux-3.0/drivers/media/media-entity.c -1d19c615d334f23ddb7002a519540c4d linux-3.0/drivers/media/media-devnode.c -c54ad4ea27df05fe01dc786b63a12140 linux-3.0/drivers/media/media-device.c -be781805be9e8e2fb360a97f36757241 linux-3.0/drivers/media/dvb/ttusb-dec/ttusbdecfe.h -acc167824d2cc6ef650cc50e0ee98ae8 linux-3.0/drivers/media/dvb/ttusb-dec/ttusbdecfe.c -cd1665cbf86422bfedf6e4b30f43b614 linux-3.0/drivers/media/dvb/ttusb-dec/ttusb_dec.c -cda94aaa55793eb180af6f859c552af3 linux-3.0/drivers/media/dvb/ttusb-dec/Makefile -b0899b1a0e1cd975e1ebbb14b7658633 linux-3.0/drivers/media/dvb/ttusb-dec/Kconfig -159666849617cb1452787c1621c1f914 linux-3.0/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c -7e37be74fcca5696795417acb51b2beb linux-3.0/drivers/media/dvb/ttusb-budget/Makefile -620087ac7a511ef2a50586c0637a8d8e linux-3.0/drivers/media/dvb/ttusb-budget/Kconfig -eb942668b213897b487fdcad7b38f2c2 linux-3.0/drivers/media/dvb/ttpci/ttpci-eeprom.h -cf98c25ed84f0d6f5679090d85098951 linux-3.0/drivers/media/dvb/ttpci/ttpci-eeprom.c -e62b94116940d1cfab462200b17d8585 linux-3.0/drivers/media/dvb/ttpci/budget.h -634e8ffaec1dd493d2647519dec280e0 linux-3.0/drivers/media/dvb/ttpci/budget.c -f39cd7ab8613a9a3ecf90949043b0faa linux-3.0/drivers/media/dvb/ttpci/budget-patch.c -b23df8c2064d9e651eae4b8da1601937 linux-3.0/drivers/media/dvb/ttpci/budget-core.c -86bf57c426c86e8412917abd4476b989 linux-3.0/drivers/media/dvb/ttpci/budget-ci.c -6d7fcf3f2358f6e8ca3325c44fa1f9ae linux-3.0/drivers/media/dvb/ttpci/budget-av.c -57cf3ae230da0a5445cf9b1f3d25e935 linux-3.0/drivers/media/dvb/ttpci/av7110_v4l.c -c521363ca89dc89495433c8d8c78e867 linux-3.0/drivers/media/dvb/ttpci/av7110_ir.c -d65304833d79fafbb3de4fad6aa886df linux-3.0/drivers/media/dvb/ttpci/av7110_ipack.h -fe5e06824936ac90aaff453eb6ed808e linux-3.0/drivers/media/dvb/ttpci/av7110_ipack.c -eb0d691787f06ab9d9cf6b82206215cc linux-3.0/drivers/media/dvb/ttpci/av7110_hw.h -d360c1a4eed93c59a96028072643047a linux-3.0/drivers/media/dvb/ttpci/av7110_hw.c -9c4e4d8de021f72a519dc7b83c37d9ce linux-3.0/drivers/media/dvb/ttpci/av7110_ca.h -5276d90c9c8afa9d8b714d55d7973347 linux-3.0/drivers/media/dvb/ttpci/av7110_ca.c -348320f72d51a56413ae2a048f889e21 linux-3.0/drivers/media/dvb/ttpci/av7110_av.h -aca8fab3d8816afe1aa4f884dbdef406 linux-3.0/drivers/media/dvb/ttpci/av7110_av.c -1d756ce6d0c5da9c43f403f7f11f4f87 linux-3.0/drivers/media/dvb/ttpci/av7110.h -ab9ccc90e7e1fbb2d993f4500a7bca3c linux-3.0/drivers/media/dvb/ttpci/av7110.c -8d6ef3fbb419c6616d064dea48efd0cf linux-3.0/drivers/media/dvb/ttpci/Makefile -9407b4c67395638d4add79705dddfe0a linux-3.0/drivers/media/dvb/ttpci/Kconfig -4bd82a0d6a729711dc0bc4aa8d5db12f linux-3.0/drivers/media/dvb/siano/smsusb.c -84cdb52cb4cf59b4d87c3b3de331c343 linux-3.0/drivers/media/dvb/siano/smssdio.c -2b8df64145878f8c893d1418041fbafe linux-3.0/drivers/media/dvb/siano/smsir.h -c1d5100e0e9899f069ccb1093c67c947 linux-3.0/drivers/media/dvb/siano/smsir.c -4a987a5154366a7ba4051c717100033a linux-3.0/drivers/media/dvb/siano/smsendian.h -949dce01bc60d873f7dd0454f7f7ed8b linux-3.0/drivers/media/dvb/siano/smsendian.c -4773d337a8bd9ee193ab4dba289a6e8a linux-3.0/drivers/media/dvb/siano/smsdvb.c -16bc2423d8acec8b4f5cc1767800434b linux-3.0/drivers/media/dvb/siano/smscoreapi.h -e6a7e6a5af2e41ddc06803a319a5532d linux-3.0/drivers/media/dvb/siano/smscoreapi.c -4040db3788115bc8616654d335ffd481 linux-3.0/drivers/media/dvb/siano/sms-cards.h -0edfe5ab183756f6a932ee05eeb7de13 linux-3.0/drivers/media/dvb/siano/sms-cards.c -121be22dcdcf3df0f6918213b09ecbd4 linux-3.0/drivers/media/dvb/siano/Makefile -5e15f47174fc29962de698b1f37ef55a linux-3.0/drivers/media/dvb/siano/Kconfig -740db4326866b25f42ad5b337f254365 linux-3.0/drivers/media/dvb/pt1/va1j5jf8007t.h -2a26297e8a2522d860fa55895d3a13be linux-3.0/drivers/media/dvb/pt1/va1j5jf8007t.c -57a4b71c3312856c30deb4417f214ee4 linux-3.0/drivers/media/dvb/pt1/va1j5jf8007s.h -a25acbbe7a3f7d796eb4fea086a9a6aa linux-3.0/drivers/media/dvb/pt1/va1j5jf8007s.c -a5f4d851baf6815b406156b49c1618da linux-3.0/drivers/media/dvb/pt1/pt1.c -7f41f0c20d8dbef1fb3be23f61a1c678 linux-3.0/drivers/media/dvb/pt1/Makefile -4139d3e8e190718f955d038adff5ebfe linux-3.0/drivers/media/dvb/pt1/Kconfig -25acdbf86436e46fec3a60a569ab0f44 linux-3.0/drivers/media/dvb/pluto2/pluto2.c -b4452bc212dcc5a1aee7797f74f8d9e9 linux-3.0/drivers/media/dvb/pluto2/Makefile -0e3fcd9de09cdf2626c08442ff5f4b6f linux-3.0/drivers/media/dvb/pluto2/Kconfig -9dd087a93b76921150ec4777f248ec8b linux-3.0/drivers/media/dvb/ngene/ngene.h -ab881bb5b93bf18ea4568fb8ebed6f76 linux-3.0/drivers/media/dvb/ngene/ngene-i2c.c -c9a77492230076454eaa84cb9abc1adc linux-3.0/drivers/media/dvb/ngene/ngene-dvb.c -92c6bdfc42879e64b236d3f090e001f9 linux-3.0/drivers/media/dvb/ngene/ngene-core.c -9cb9d0d0342e23f3a7ff31763ba95f47 linux-3.0/drivers/media/dvb/ngene/ngene-cards.c -dee23b51b5fe05183215ec770da2f00a linux-3.0/drivers/media/dvb/ngene/Makefile -779e95fedbaa4a0cc2cb21430f980fc7 linux-3.0/drivers/media/dvb/ngene/Kconfig -fbffa211174f22d524d08fc9a58dbfd7 linux-3.0/drivers/media/dvb/mantis/mantis_vp3030.h -a00545d860f0f5b410c9379d0ddc815d linux-3.0/drivers/media/dvb/mantis/mantis_vp3030.c -09ee7ce5f262abc0c356d45286dc3bec linux-3.0/drivers/media/dvb/mantis/mantis_vp3028.h -f2087b0548246a679efaf05b17a7ea5e linux-3.0/drivers/media/dvb/mantis/mantis_vp3028.c -aecb919c1e445df8f1746fbd786380e1 linux-3.0/drivers/media/dvb/mantis/mantis_vp2040.h -cb8156974deecebb92532bebd6caa790 linux-3.0/drivers/media/dvb/mantis/mantis_vp2040.c -43777455b126dabec1432272e667ca90 linux-3.0/drivers/media/dvb/mantis/mantis_vp2033.h -9274359b4a5b7bda905a79c1f32b06cf linux-3.0/drivers/media/dvb/mantis/mantis_vp2033.c -bb0e39e0b3f9ab5955e20e86de382f4b linux-3.0/drivers/media/dvb/mantis/mantis_vp1041.h -ad4b9e9d2cb3cadcddc3dfc855f2e807 linux-3.0/drivers/media/dvb/mantis/mantis_vp1041.c -4e5416486fab5c9c634e71b8368c9100 linux-3.0/drivers/media/dvb/mantis/mantis_vp1034.h -eef2b6f46a52f91c72b1387ee109c83e linux-3.0/drivers/media/dvb/mantis/mantis_vp1034.c -ddaa216845e84914ec175382a8a8b16e linux-3.0/drivers/media/dvb/mantis/mantis_vp1033.h -ef286e3bdb234818fc5512348600d95b linux-3.0/drivers/media/dvb/mantis/mantis_vp1033.c -d59f1f916b5f02ab782571d18112f5d4 linux-3.0/drivers/media/dvb/mantis/mantis_uart.h -a21ab2253f62e1b1f7eae8c587b07144 linux-3.0/drivers/media/dvb/mantis/mantis_uart.c -84a48143f19d7d98ed86f65e92a2a26f linux-3.0/drivers/media/dvb/mantis/mantis_reg.h -261c3b52c568be0a2ca609dd2e2c3c51 linux-3.0/drivers/media/dvb/mantis/mantis_pcmcia.c -a245aa5fffc6cb4036d49d064995f1cc linux-3.0/drivers/media/dvb/mantis/mantis_pci.h -4c0c296d302956e7993d27d897a3b986 linux-3.0/drivers/media/dvb/mantis/mantis_pci.c -7db249704145a5e4c1538a11f2bbaa67 linux-3.0/drivers/media/dvb/mantis/mantis_link.h -3394a3e570d65e4ac0607519424e34e8 linux-3.0/drivers/media/dvb/mantis/mantis_ioc.h -32d6a95699d4e6f93f64dbabf1004649 linux-3.0/drivers/media/dvb/mantis/mantis_ioc.c -37186672b53f77b133669b48e45e3872 linux-3.0/drivers/media/dvb/mantis/mantis_input.c -801db19aaa582ab4572ab49e0a55cfc1 linux-3.0/drivers/media/dvb/mantis/mantis_i2c.h -4e21ae1ba7f2496b0e1a11a1c66e37e2 linux-3.0/drivers/media/dvb/mantis/mantis_i2c.c -1e3de17024c0faad9ebd4963c0a59c05 linux-3.0/drivers/media/dvb/mantis/mantis_hif.h -1248c7352c480380eca131f72f72eb9a linux-3.0/drivers/media/dvb/mantis/mantis_hif.c -bade2ec3773d5d3694a04f756eb04254 linux-3.0/drivers/media/dvb/mantis/mantis_evm.c -29fa0aa710bdb5cde17dadb8e55113a1 linux-3.0/drivers/media/dvb/mantis/mantis_dvb.h -609bd32d38f8d655922da9d9b95f8590 linux-3.0/drivers/media/dvb/mantis/mantis_dvb.c -028181042a0a8bd804d1ed0e7d26d0cc linux-3.0/drivers/media/dvb/mantis/mantis_dma.h -1444da9aa8a9f2ad149b335e1d5ba6ae linux-3.0/drivers/media/dvb/mantis/mantis_dma.c -ed29fdf83bf1fa86be9953b1b74dc85d linux-3.0/drivers/media/dvb/mantis/mantis_core.h -ae3b9e8588a3ec64fd807da2a6ce5f9f linux-3.0/drivers/media/dvb/mantis/mantis_core.c -03058e5e46eebfa5417f3e1de48808e4 linux-3.0/drivers/media/dvb/mantis/mantis_common.h -598997f98d2f252d7a78868d2dbd13c9 linux-3.0/drivers/media/dvb/mantis/mantis_cards.c -6935c9529dfc7606a3e86299b11e9d04 linux-3.0/drivers/media/dvb/mantis/mantis_ca.h -4a14eb4321c81395bde9d791857735af linux-3.0/drivers/media/dvb/mantis/mantis_ca.c -b51b5ac4f48ded8e0400aacf11eebda5 linux-3.0/drivers/media/dvb/mantis/hopper_vp3028.h -bf5b4ca16eb0415652fe61ae55418a72 linux-3.0/drivers/media/dvb/mantis/hopper_vp3028.c -79548a4beee162c652b1f4459fa707df linux-3.0/drivers/media/dvb/mantis/hopper_cards.c -b9b769b3ea6eafe407038db6202784c3 linux-3.0/drivers/media/dvb/mantis/Makefile -7d5b230796847081fb531625df75abe4 linux-3.0/drivers/media/dvb/mantis/Kconfig -4504df1189b0222972b129fb46813489 linux-3.0/drivers/media/dvb/frontends/zl10353_priv.h -f0e573ef064a68738073f38d2cec6487 linux-3.0/drivers/media/dvb/frontends/zl10353.h -212bee818d261413568c9963e7a36d45 linux-3.0/drivers/media/dvb/frontends/zl10353.c -0bd5a3d89d456aad00c51f7ba5e48640 linux-3.0/drivers/media/dvb/frontends/zl10039.h -eba40aefede43c8fd56c109fa30c0ddc linux-3.0/drivers/media/dvb/frontends/zl10039.c -51171dce4f18213ac0fc84651fc6c94f linux-3.0/drivers/media/dvb/frontends/zl10036.h -973b57b6cf0a7d0aa8622a2ebf546e81 linux-3.0/drivers/media/dvb/frontends/zl10036.c -1818291938565ab11f71a9e7125421f8 linux-3.0/drivers/media/dvb/frontends/z0194a.h -26456c421d4baa511a7b4b61203631d6 linux-3.0/drivers/media/dvb/frontends/ves1x93.h -70db3365fe3cbb8850a55cac5e6da959 linux-3.0/drivers/media/dvb/frontends/ves1x93.c -38156573f70fdeec4bf8adf8a7743374 linux-3.0/drivers/media/dvb/frontends/ves1820.h -d8fc4797cfc7a4ab212b8cac518f116b linux-3.0/drivers/media/dvb/frontends/ves1820.c -f9a89e7314472144c66bbc81e1136c84 linux-3.0/drivers/media/dvb/frontends/tua6100.h -021c8527da3cf16504d99e6faf665c11 linux-3.0/drivers/media/dvb/frontends/tua6100.c -1afea6b1796f74e05fa97854ec23f761 linux-3.0/drivers/media/dvb/frontends/tdhd1.h -340a7c12bc527d107a66595c26ccd6f1 linux-3.0/drivers/media/dvb/frontends/tda826x.h -f3e9861b1950a8ec71ec94cd22258fdf linux-3.0/drivers/media/dvb/frontends/tda826x.c -ed5abf71878918f7707730fac4fc5605 linux-3.0/drivers/media/dvb/frontends/tda8261_cfg.h -c77f1dd14195dcde5d47fb6b88153c75 linux-3.0/drivers/media/dvb/frontends/tda8261.h -d25e3f29c0664cef8615279b9988be4b linux-3.0/drivers/media/dvb/frontends/tda8261.c -b4690f4d747c1fe878e00946eeb6dc8f linux-3.0/drivers/media/dvb/frontends/tda8083.h -d8f23de2ed7a7c6a59bb05a1c1f16291 linux-3.0/drivers/media/dvb/frontends/tda8083.c -4ecdf7d440cf681bfb401d1b1c8572eb linux-3.0/drivers/media/dvb/frontends/tda665x.h -a1de241d0654d0808c55e8907f64d14d linux-3.0/drivers/media/dvb/frontends/tda665x.c -774cb775f28ffa8d29942f2085549919 linux-3.0/drivers/media/dvb/frontends/tda10086.h -3fe3ea75ca75dd83764c90cb033e02f5 linux-3.0/drivers/media/dvb/frontends/tda10086.c -2434cd7971e0fbff568e3912885365a4 linux-3.0/drivers/media/dvb/frontends/tda1004x.h -88f2683e6cde30a9de6060cfa6da36b5 linux-3.0/drivers/media/dvb/frontends/tda1004x.c -6acb57feb81f4bdcb8fa0ba431725cc0 linux-3.0/drivers/media/dvb/frontends/tda10048.h -b925263e0005cd8052d222882890f920 linux-3.0/drivers/media/dvb/frontends/tda10048.c -19bb153085652918e1a32198d5c26095 linux-3.0/drivers/media/dvb/frontends/tda1002x.h -4febff9eb7b45e642c34643c9c351b39 linux-3.0/drivers/media/dvb/frontends/tda10023.c -53e940c4a0a7affeaee0baf094a60fa6 linux-3.0/drivers/media/dvb/frontends/tda10021.c -7e9c0ed3292a43e10b9b7bc06e192944 linux-3.0/drivers/media/dvb/frontends/stv6110x_reg.h -72f9e5ea1e66a6c0a829c0747f5aa481 linux-3.0/drivers/media/dvb/frontends/stv6110x_priv.h -6ebce317a82776c7c569786e03307018 linux-3.0/drivers/media/dvb/frontends/stv6110x.h -f82405cc1d984476a133f44aa330009d linux-3.0/drivers/media/dvb/frontends/stv6110x.c -09bae090d2aefa0aa9673391e7419b47 linux-3.0/drivers/media/dvb/frontends/stv6110.h -770d169373132a58df90ba1a90421861 linux-3.0/drivers/media/dvb/frontends/stv6110.c -113228e83745394d1a6963da8a326de6 linux-3.0/drivers/media/dvb/frontends/stv090x_reg.h -ef3c3a6bdd8f88963b705ad2229f7968 linux-3.0/drivers/media/dvb/frontends/stv090x_priv.h -97c5aabcbd17fd8909f51101156fab08 linux-3.0/drivers/media/dvb/frontends/stv090x.h -b09950b3fb2a8f5964cd71eff862a4ab linux-3.0/drivers/media/dvb/frontends/stv090x.c -0e65f5170ca98714a441cc5d797a7987 linux-3.0/drivers/media/dvb/frontends/stv0900_sw.c -9840e9deabf16b5bd25520924cfd8460 linux-3.0/drivers/media/dvb/frontends/stv0900_reg.h -849b7f3b7b3a8b49b2c30b3d3c17bc0f linux-3.0/drivers/media/dvb/frontends/stv0900_priv.h -a428d73d3be03e089e2721806af462ba linux-3.0/drivers/media/dvb/frontends/stv0900_init.h -85aa7073642b6b8f944c197e41a9f4dd linux-3.0/drivers/media/dvb/frontends/stv0900_core.c -028a920418f37191d22ba341bd5ff77c linux-3.0/drivers/media/dvb/frontends/stv0900.h -c443227be0a95bd6a4419b3f4a4f14c5 linux-3.0/drivers/media/dvb/frontends/stv0367_regs.h -fedcdcfb58c1a4af81eb5e6679303ed3 linux-3.0/drivers/media/dvb/frontends/stv0367_priv.h -b79fa9e00e1a1fcf2accd471b450f9a8 linux-3.0/drivers/media/dvb/frontends/stv0367.h -114c4beacf50b92b0312fce6abf47da9 linux-3.0/drivers/media/dvb/frontends/stv0367.c -42b326d6ffe857cc5130c1569f172f67 linux-3.0/drivers/media/dvb/frontends/stv0299.h -a1a6d4e62a9e4f4892aec1edafa938e1 linux-3.0/drivers/media/dvb/frontends/stv0299.c -74efaa341e609940a0f66ce23ea34157 linux-3.0/drivers/media/dvb/frontends/stv0297.h -e97908420ce475185bcc7a34537f6a2d linux-3.0/drivers/media/dvb/frontends/stv0297.c -12d70368fb4b3b17b79573d9547d70af linux-3.0/drivers/media/dvb/frontends/stv0288.h -3656f7095b7f08372fe4a120bdb1d25f linux-3.0/drivers/media/dvb/frontends/stv0288.c -fd554d191db6a564720dfc98e345bc96 linux-3.0/drivers/media/dvb/frontends/stb6100_proc.h -4be15f113ef78b7d571adbe883ae79cb linux-3.0/drivers/media/dvb/frontends/stb6100_cfg.h -d04494b10e0c2c22a122b4f80a4584bb linux-3.0/drivers/media/dvb/frontends/stb6100.h -eed84f673967120c3e3dcfb631756ee5 linux-3.0/drivers/media/dvb/frontends/stb6100.c -7557167cb6c29689da0758bf7698d4bd linux-3.0/drivers/media/dvb/frontends/stb6000.h -7a97aed77972f9eedb2419bf4d84c344 linux-3.0/drivers/media/dvb/frontends/stb6000.c -9ec87f2726578a05220f28db3af7cd83 linux-3.0/drivers/media/dvb/frontends/stb0899_reg.h -c0e0f930367df3b6cab81f23b472240e linux-3.0/drivers/media/dvb/frontends/stb0899_priv.h -bab30eb1d47ea25f7bededa6dca685fc linux-3.0/drivers/media/dvb/frontends/stb0899_drv.h -df0c3d2f87bf979f6622d08a4905eff8 linux-3.0/drivers/media/dvb/frontends/stb0899_drv.c -2a5a0fe34a11cae21e308f27599f7e11 linux-3.0/drivers/media/dvb/frontends/stb0899_cfg.h -cafba98e4aec142495e12f2a726ac9e3 linux-3.0/drivers/media/dvb/frontends/stb0899_algo.c -fed8459fda66998e16f4cfa2560a3ee1 linux-3.0/drivers/media/dvb/frontends/sp887x.h -fff8fa2b5c7dc48ae5b83aac6fd1eee0 linux-3.0/drivers/media/dvb/frontends/sp887x.c -f0172f5622eb70051b7d59fb474e7cd1 linux-3.0/drivers/media/dvb/frontends/sp8870.h -c7520ac9bed7264c80f8f8012cc7b79b linux-3.0/drivers/media/dvb/frontends/sp8870.c -64e4ea70172be4ec578fb4577aef7118 linux-3.0/drivers/media/dvb/frontends/si21xx.h -165b2a045a697ff0261ea1c048eed92e linux-3.0/drivers/media/dvb/frontends/si21xx.c -a7bc29cc150cb291248398ae2ffb6c2d linux-3.0/drivers/media/dvb/frontends/s921.h -9386a4c2b78724aef6fce119c790b7e0 linux-3.0/drivers/media/dvb/frontends/s921.c -02f8d3da463e41c6e70bae57b18cb4e4 linux-3.0/drivers/media/dvb/frontends/s5h1432.h -bed83b4853ddf9bfcd7db049a3a16b89 linux-3.0/drivers/media/dvb/frontends/s5h1432.c -dd48ff5825ea3dad49adfc5779c8b726 linux-3.0/drivers/media/dvb/frontends/s5h1420_priv.h -3d2ceff5b6fba412c35e947f0d4335d2 linux-3.0/drivers/media/dvb/frontends/s5h1420.h -f0fe64dcafa789a3c03fafc8967c9372 linux-3.0/drivers/media/dvb/frontends/s5h1420.c -033723c995b88ee0be25f5ea35f8a7f3 linux-3.0/drivers/media/dvb/frontends/s5h1411.h -1b3f797fa192f61903b223f0edfc160a linux-3.0/drivers/media/dvb/frontends/s5h1411.c -756c39a7a4d163e46f38a8b95402a0bf linux-3.0/drivers/media/dvb/frontends/s5h1409.h -90d6a81bad855153d14a4f2f23acadf1 linux-3.0/drivers/media/dvb/frontends/s5h1409.c -f8b1fdbfdf0d0837b6a2d126f295d1c1 linux-3.0/drivers/media/dvb/frontends/or51211.h -5fccf2e4a5e31350818e91208002da42 linux-3.0/drivers/media/dvb/frontends/or51211.c -be4be4acefcf55845635a68d8b201b3f linux-3.0/drivers/media/dvb/frontends/or51132.h -19b48bbc5e739c0e6a7fc9de9cf47de6 linux-3.0/drivers/media/dvb/frontends/or51132.c -1d943dd07302162db553ade87ac73bcd linux-3.0/drivers/media/dvb/frontends/nxt6000_priv.h -cb801e8fed121e3fb78fdcb1c133c223 linux-3.0/drivers/media/dvb/frontends/nxt6000.h -a3c937131443f1d9a6adf02ceed13974 linux-3.0/drivers/media/dvb/frontends/nxt6000.c -2590f73bcf8ccd2561e0334ec3e83d99 linux-3.0/drivers/media/dvb/frontends/nxt200x.h -0e6ca5611cdb913249c53e705feffd8c linux-3.0/drivers/media/dvb/frontends/nxt200x.c -35b630fe3879748872baa1ea0756eb76 linux-3.0/drivers/media/dvb/frontends/mt352_priv.h -53569d10aa24af151d9c7675b7dd103f linux-3.0/drivers/media/dvb/frontends/mt352.h -65f740cdbf3d1d393fa95c9e09b62009 linux-3.0/drivers/media/dvb/frontends/mt352.c -9657f5799360eb973f97e777d602d6a2 linux-3.0/drivers/media/dvb/frontends/mt312_priv.h -6bec4c3248fa8acd27f90948bf958a79 linux-3.0/drivers/media/dvb/frontends/mt312.h -7876c85f720a4d858a3be5cfef6c3b6c linux-3.0/drivers/media/dvb/frontends/mt312.c -c85f0436d4b308536b3c97c4c968fec5 linux-3.0/drivers/media/dvb/frontends/mb86a20s.h -73c2d6515e32782b81f4313c01c5020f linux-3.0/drivers/media/dvb/frontends/mb86a20s.c -d1ab21617f28ca55fec04103fe87cc4e linux-3.0/drivers/media/dvb/frontends/mb86a16_priv.h -2200b2ccf9d5ea6ed47644cd03fdb550 linux-3.0/drivers/media/dvb/frontends/mb86a16.h -7d93990d4777e9ca0c1363938e232def linux-3.0/drivers/media/dvb/frontends/mb86a16.c -22e408ec6a07404d6d1a41b5be5bb606 linux-3.0/drivers/media/dvb/frontends/lnbp21.h -ae0868d0aad3fb9daf1c11c1f5a55515 linux-3.0/drivers/media/dvb/frontends/lnbp21.c -d8175a2d77c73aad6d37c5b732c212d7 linux-3.0/drivers/media/dvb/frontends/lnbh24.h -b934b0e2170a6404c950bd8783e11f4d linux-3.0/drivers/media/dvb/frontends/lgs8gxx_priv.h -674590b57fabf1c3774e99015822481f linux-3.0/drivers/media/dvb/frontends/lgs8gxx.h -943e0c3a4895ffd151355df783e7adda linux-3.0/drivers/media/dvb/frontends/lgs8gxx.c -46ddea69e23cc11b3a8657fbc485cea7 linux-3.0/drivers/media/dvb/frontends/lgs8gl5.h -483891200d886980d06bc729004c304e linux-3.0/drivers/media/dvb/frontends/lgs8gl5.c -376fd0f3a58b4939e5c55f40b2ff991a linux-3.0/drivers/media/dvb/frontends/lgdt330x_priv.h -740b5cd39f68db3790ab02a855972e8b linux-3.0/drivers/media/dvb/frontends/lgdt330x.h -d84db6e8df5ec56dd294f6e78e8e9807 linux-3.0/drivers/media/dvb/frontends/lgdt330x.c -00da87e99e155a0a33d4c0f4a519391e linux-3.0/drivers/media/dvb/frontends/lgdt3305.h -7515cdab9d0582cb93a647486d610bb8 linux-3.0/drivers/media/dvb/frontends/lgdt3305.c -32c734be3213ca64c333cde0e5d9b36c linux-3.0/drivers/media/dvb/frontends/l64781.h -e33d742196c24e5dd3ff9801d3399d1e linux-3.0/drivers/media/dvb/frontends/l64781.c -78430e16a5d81157e3c423cbd027986a linux-3.0/drivers/media/dvb/frontends/ix2505v.h -40c54380aef98432e70eb1fb3df90e04 linux-3.0/drivers/media/dvb/frontends/ix2505v.c -e325681cd1afc2f4c8c296185bd85c84 linux-3.0/drivers/media/dvb/frontends/itd1000_priv.h -2460bbf51b467b781be98bd10a97219a linux-3.0/drivers/media/dvb/frontends/itd1000.h -beeff2ae2eaa834a80110ae004ff381d linux-3.0/drivers/media/dvb/frontends/itd1000.c -25e816b8919f5bd2a5d526220fd2f29b linux-3.0/drivers/media/dvb/frontends/isl6423.h -0aa1b2598946351d5b014d41f7dad92a linux-3.0/drivers/media/dvb/frontends/isl6423.c -edfb745887bad9f62841e1c8b718e6ac linux-3.0/drivers/media/dvb/frontends/isl6421.h -28cc9b700799e7b03050ce218dcdd7ef linux-3.0/drivers/media/dvb/frontends/isl6421.c -8423eb96336ddf417b6c00f7e108f4e8 linux-3.0/drivers/media/dvb/frontends/isl6405.h -673a1081bdfcd5bd10f0e1346b3f9bd3 linux-3.0/drivers/media/dvb/frontends/isl6405.c -4754768c1e5649094aec1da5e01543d4 linux-3.0/drivers/media/dvb/frontends/eds1547.h -b44d4b3b8c4b10ed2b1eafb30f25f2aa linux-3.0/drivers/media/dvb/frontends/ec100_priv.h -8e0183b0be446e19726d3eb86ba0f0c4 linux-3.0/drivers/media/dvb/frontends/ec100.h -24815c4c20221a46923cbe8ee066d79e linux-3.0/drivers/media/dvb/frontends/ec100.c -9015373a18f6651372c4014578f8577c linux-3.0/drivers/media/dvb/frontends/dvb_dummy_fe.h -217b414aaa7690723dfdcd5f0013dbd0 linux-3.0/drivers/media/dvb/frontends/dvb_dummy_fe.c -92317977190eb9ef379ab016035efd17 linux-3.0/drivers/media/dvb/frontends/dvb-pll.h -6508a2eb9d1cc25ed226ef0e3d0821f5 linux-3.0/drivers/media/dvb/frontends/dvb-pll.c -cc12ecbf4b6332b1d79140775a8c4cf8 linux-3.0/drivers/media/dvb/frontends/ds3000.h -835c699debe6845ed6d5752fec7ea41f linux-3.0/drivers/media/dvb/frontends/ds3000.c -95600a7b47830188cf277d97d2638b8f linux-3.0/drivers/media/dvb/frontends/drxd_map_firm.h -4abd6a4d9c4fe95ab86aa3666f1683d8 linux-3.0/drivers/media/dvb/frontends/drxd_hard.c -1a8337d3e703b04d6783b7459239beb8 linux-3.0/drivers/media/dvb/frontends/drxd_firm.h -a8392965f42e59f2bcdc40b0a2b1b4f2 linux-3.0/drivers/media/dvb/frontends/drxd_firm.c -d1799404d57536445603603bfc7950c7 linux-3.0/drivers/media/dvb/frontends/drxd.h -e6b1afe9105dd1b4271d7671bd0b72a0 linux-3.0/drivers/media/dvb/frontends/dibx000_common.h -1637d4bd7f3ae5cf12c17bb7217697b4 linux-3.0/drivers/media/dvb/frontends/dibx000_common.c -e3165b762a0d5d35622015319f8506cb linux-3.0/drivers/media/dvb/frontends/dib9000.h -adf23910f30fd96a95607391c52f6470 linux-3.0/drivers/media/dvb/frontends/dib9000.c -446cc3ae1b9f368896af78fabba6a621 linux-3.0/drivers/media/dvb/frontends/dib8000.h -810f83612a68d91544e90c69f6647446 linux-3.0/drivers/media/dvb/frontends/dib8000.c -0a5f5bdbbefc263f703168eb132ffd83 linux-3.0/drivers/media/dvb/frontends/dib7000p.h -a029008a021e0f47f7fda320790aa635 linux-3.0/drivers/media/dvb/frontends/dib7000p.c -0fccd239e6a61327c24deed348c69e4c linux-3.0/drivers/media/dvb/frontends/dib7000m.h -325727b801b7a452524f1fadab3a2fa2 linux-3.0/drivers/media/dvb/frontends/dib7000m.c -bebe80d7987568ac7aa0b92a52d43f83 linux-3.0/drivers/media/dvb/frontends/dib3000mc.h -5f3993dbab84e8f8cf313c4a488794b0 linux-3.0/drivers/media/dvb/frontends/dib3000mc.c -6b64af38822f8fde3c170a004885e3b7 linux-3.0/drivers/media/dvb/frontends/dib3000mb_priv.h -077c7bddef26a9963b226f2cd6486b78 linux-3.0/drivers/media/dvb/frontends/dib3000mb.c -bb28c1e64daa0362913aef02709f3d44 linux-3.0/drivers/media/dvb/frontends/dib3000.h -6019ba3de9c985b53a71223937e4b118 linux-3.0/drivers/media/dvb/frontends/dib0090.h -ae940e6be91eb066deabc210e9b24f5d linux-3.0/drivers/media/dvb/frontends/dib0090.c -045ff28318573146daa318a39159feb7 linux-3.0/drivers/media/dvb/frontends/dib0070.h -5b09fff4016e85ba559baf2f689a1970 linux-3.0/drivers/media/dvb/frontends/dib0070.c -e913eeb7ccb84a8cc81413ec1b9b64b2 linux-3.0/drivers/media/dvb/frontends/cxd2820r_t2.c -ee88b4b58be88d4b3035a61725bbd620 linux-3.0/drivers/media/dvb/frontends/cxd2820r_t.c -910f6799d2ab51cd42fb74c23becddc4 linux-3.0/drivers/media/dvb/frontends/cxd2820r_priv.h -62814328963369aa1cc48dbc9d27d222 linux-3.0/drivers/media/dvb/frontends/cxd2820r_core.c -8d20c587d7a598e358a1e7bd24d7e107 linux-3.0/drivers/media/dvb/frontends/cxd2820r_c.c -de97cf035ed76e4e72f361d35f5bbc5b linux-3.0/drivers/media/dvb/frontends/cxd2820r.h -93d28dd610963238cb5cd4152fd7e4c3 linux-3.0/drivers/media/dvb/frontends/cx24123.h -85cc4e0fec8af1cb581485fe2c188158 linux-3.0/drivers/media/dvb/frontends/cx24123.c -f210b4cbfdbff839af335c91cc88a0c6 linux-3.0/drivers/media/dvb/frontends/cx24116.h -65ee530090f078cddf84f9bbacd98862 linux-3.0/drivers/media/dvb/frontends/cx24116.c -1e5efea27847b16449b2e45987875980 linux-3.0/drivers/media/dvb/frontends/cx24113.h -66b6bbffc86fb36af718615d3cf8202f linux-3.0/drivers/media/dvb/frontends/cx24113.c -53e3309c265116907b00518ff06ffb6e linux-3.0/drivers/media/dvb/frontends/cx24110.h -f91bff1dc1be74d402a385d4fcdf7629 linux-3.0/drivers/media/dvb/frontends/cx24110.c -064e0419c1c61eb0313a83b7b4a81b7d linux-3.0/drivers/media/dvb/frontends/cx22702.h -baf2177d6434864d2474e585cb86a896 linux-3.0/drivers/media/dvb/frontends/cx22702.c -e384b87087eb950a1551c60515e77ffa linux-3.0/drivers/media/dvb/frontends/cx22700.h -c79da284e2b468b2be76d88136699fc6 linux-3.0/drivers/media/dvb/frontends/cx22700.c -f45bea2f3fe7fdbfa147c702ee248577 linux-3.0/drivers/media/dvb/frontends/bsru6.h -3e4c8d532c65a5a40bc8cb3ea04ddffb linux-3.0/drivers/media/dvb/frontends/bsbe1.h -724cf10fd8f72d25f6a7409f9ec6db0e linux-3.0/drivers/media/dvb/frontends/bsbe1-d01a.h -f2d14c65298e6de9811d0208e62e537b linux-3.0/drivers/media/dvb/frontends/bcm3510_priv.h -f28aa08e280cecd59c371fdfd1f4bc6f linux-3.0/drivers/media/dvb/frontends/bcm3510.h -4ff1736e477a44301bf8b6fb6a69430d linux-3.0/drivers/media/dvb/frontends/bcm3510.c -c6d2739005e45990e0cefa0cc267f2fd linux-3.0/drivers/media/dvb/frontends/au8522_priv.h -ad7684aa4b88b9643efca5ba66eef1a2 linux-3.0/drivers/media/dvb/frontends/au8522_dig.c -93b361c6153bb0edc5878d55f8c8c37d linux-3.0/drivers/media/dvb/frontends/au8522_decoder.c -5c4dadca62c5f7728c8be9e807eb9600 linux-3.0/drivers/media/dvb/frontends/au8522.h -47f9e8a514f84706b5f3451375e27431 linux-3.0/drivers/media/dvb/frontends/atbm8830_priv.h -baf5eb5db7b31c400ffc8b2dea2fc361 linux-3.0/drivers/media/dvb/frontends/atbm8830.h -608d8fb04f5c6a9b27710945dac23ccd linux-3.0/drivers/media/dvb/frontends/atbm8830.c -a5f3216531254c934dba80d4745a5683 linux-3.0/drivers/media/dvb/frontends/af9013_priv.h -cf38ab0de38f03dcb20a3b3b6cb214b3 linux-3.0/drivers/media/dvb/frontends/af9013.h -8a47ed4898f8755a1ebc59a401f12b82 linux-3.0/drivers/media/dvb/frontends/af9013.c -78ef6922dcd7d4fc086a7bfe649e7413 linux-3.0/drivers/media/dvb/frontends/Makefile -b4c1fdcd89bf9ac8056afd126b1ebbf0 linux-3.0/drivers/media/dvb/frontends/Kconfig -aec73d35973ee06e98b8e496b6820912 linux-3.0/drivers/media/dvb/firewire/firedtv.h -e5cb1440cb10408a94f2c6607670300b linux-3.0/drivers/media/dvb/firewire/firedtv-rc.c -26470603d141326203cf35dc908d2290 linux-3.0/drivers/media/dvb/firewire/firedtv-fw.c -7a8de254637a5111fd41c1ba91024c2c linux-3.0/drivers/media/dvb/firewire/firedtv-fe.c -46c4d81697704f6f000e8707f2b21069 linux-3.0/drivers/media/dvb/firewire/firedtv-dvb.c -a7d99a61340f0583148468c9a9d5b7b3 linux-3.0/drivers/media/dvb/firewire/firedtv-ci.c -c977e7a44becdb828a4243b96a6bac42 linux-3.0/drivers/media/dvb/firewire/firedtv-avc.c -70b498bd93f5ea82cc6e89030495cb65 linux-3.0/drivers/media/dvb/firewire/Makefile -aa87bc51e6f947a2b5c310a4d5f34ea0 linux-3.0/drivers/media/dvb/firewire/Kconfig -531040ab3bec3318be17e87f8548f951 linux-3.0/drivers/media/dvb/dvb-usb/vp7045.h -44131da9fb11ac5a590e9e60918d0c9b linux-3.0/drivers/media/dvb/dvb-usb/vp7045.c -0a690083b0362454a63a0a51cec5036a linux-3.0/drivers/media/dvb/dvb-usb/vp7045-fe.c -87cf0919b5c57a04dfca72657d69c683 linux-3.0/drivers/media/dvb/dvb-usb/vp702x.h -886dedfec8c115e6bb8019db5ba000f6 linux-3.0/drivers/media/dvb/dvb-usb/vp702x.c -745d07425e7cd1d83619059ff4215e2e linux-3.0/drivers/media/dvb/dvb-usb/vp702x-fe.c -6adad854e56e3b915fc07539eed6e769 linux-3.0/drivers/media/dvb/dvb-usb/usb-urb.c -2e1fbe378030a18e9b35be88c64db29c linux-3.0/drivers/media/dvb/dvb-usb/umt-010.c -6b05fc438375e9ccd5da43796ce0822c linux-3.0/drivers/media/dvb/dvb-usb/ttusb2.h -5f4317a309c17bfbcc4bbb3611f4dce5 linux-3.0/drivers/media/dvb/dvb-usb/ttusb2.c -d5bebcca39676eee26254f4d1b6cda3c linux-3.0/drivers/media/dvb/dvb-usb/technisat-usb2.c -a7301a0b6a5262e560e39c5ce2ed68d2 linux-3.0/drivers/media/dvb/dvb-usb/opera1.c -060d2448f691cf41c39f73f5d48442e3 linux-3.0/drivers/media/dvb/dvb-usb/nova-t-usb2.c -ceeeb6667f2a8e2e759ad30f57381c09 linux-3.0/drivers/media/dvb/dvb-usb/m920x.h -25c9c75ea3e710b23adb5c14077b2ad5 linux-3.0/drivers/media/dvb/dvb-usb/m920x.c -2504a001dd8e1bbbd57c543c5ff6710d linux-3.0/drivers/media/dvb/dvb-usb/lmedm04.h -4a6752bce9b36a5f609763b86473a61f linux-3.0/drivers/media/dvb/dvb-usb/lmedm04.c -b7dc05f5fac90aba298879b59e504e10 linux-3.0/drivers/media/dvb/dvb-usb/gp8psk.h -bfea78efc4a04dbc8b6e9b11bfbbe8aa linux-3.0/drivers/media/dvb/dvb-usb/gp8psk.c -b525cbd7374e9c6473ceb02f5cbfb0af linux-3.0/drivers/media/dvb/dvb-usb/gp8psk-fe.c -11da90f46173fb5790587267bf9467b7 linux-3.0/drivers/media/dvb/dvb-usb/gl861.h -dcb0b7478a9f0f8ea3690072385d083a linux-3.0/drivers/media/dvb/dvb-usb/gl861.c -434616e4977be952fc3bcab2bf48df2e linux-3.0/drivers/media/dvb/dvb-usb/friio.h -6fe2330b628e39c19ae12a009c95a06f linux-3.0/drivers/media/dvb/dvb-usb/friio.c -0c38393f39286dfcd6819f473998d023 linux-3.0/drivers/media/dvb/dvb-usb/friio-fe.c -44ca9f565d07059438eda2e13f7e74a9 linux-3.0/drivers/media/dvb/dvb-usb/ec168.h -1a5835571b7c15c87258d27c43afe518 linux-3.0/drivers/media/dvb/dvb-usb/ec168.c -60dd427ac9a0f700fe011d97c49e86a9 linux-3.0/drivers/media/dvb/dvb-usb/dw2102.h -968eded3773dc14cf1393f06600ea0e8 linux-3.0/drivers/media/dvb/dvb-usb/dw2102.c -9f4c95b032357e89953d06dbf364ea22 linux-3.0/drivers/media/dvb/dvb-usb/dvb-usb.h -08ac549999f7fb616f4754b70631132c linux-3.0/drivers/media/dvb/dvb-usb/dvb-usb-urb.c -33becf968659d5ac251a98bfb19c3308 linux-3.0/drivers/media/dvb/dvb-usb/dvb-usb-remote.c -48f693862a65436bd2acd1de9888595f linux-3.0/drivers/media/dvb/dvb-usb/dvb-usb-init.c -720fd0f28276f9a7dd165c7e893328bd linux-3.0/drivers/media/dvb/dvb-usb/dvb-usb-ids.h -b9effa2f8f15b81bb8a97cfbff96534c linux-3.0/drivers/media/dvb/dvb-usb/dvb-usb-i2c.c -e7e4efa203a7977202ac1d053677e79b linux-3.0/drivers/media/dvb/dvb-usb/dvb-usb-firmware.c -bc6cedc9d72bfefa2466a5c95db12f43 linux-3.0/drivers/media/dvb/dvb-usb/dvb-usb-dvb.c -4c6e078caa977fcdbd87023fd1552656 linux-3.0/drivers/media/dvb/dvb-usb/dvb-usb-common.h -21d5488b370173961bb830021e7505d3 linux-3.0/drivers/media/dvb/dvb-usb/dtv5100.h -c5ca9d40e9eafabf712690222ec977be linux-3.0/drivers/media/dvb/dvb-usb/dtv5100.c -d73cbda7b0e46991455b30c32f052a48 linux-3.0/drivers/media/dvb/dvb-usb/dtt200u.h -cf89bde6b212653290302ef2e9c11ccc linux-3.0/drivers/media/dvb/dvb-usb/dtt200u.c -8c57b8461e4df318606c368ddfd50963 linux-3.0/drivers/media/dvb/dvb-usb/dtt200u-fe.c -f37ccae5037eb98b5237bf97ab136016 linux-3.0/drivers/media/dvb/dvb-usb/digitv.h -f14efcc1bc987add52444b2cb8e097b9 linux-3.0/drivers/media/dvb/dvb-usb/digitv.c -442a077e1d987e711f7cee169ae0ea69 linux-3.0/drivers/media/dvb/dvb-usb/dibusb.h -c2c43ca73945c7022460839d492e8930 linux-3.0/drivers/media/dvb/dvb-usb/dibusb-mc.c -13e0634f3833683f183dbc1b286f3f18 linux-3.0/drivers/media/dvb/dvb-usb/dibusb-mb.c -381122062d3fd78c95ccf2a58f2e4a29 linux-3.0/drivers/media/dvb/dvb-usb/dibusb-common.c -4486fb67994e56c27916045229dd19d4 linux-3.0/drivers/media/dvb/dvb-usb/dib07x0.h -32b37359a1e943d85ff06f11e62c63b7 linux-3.0/drivers/media/dvb/dvb-usb/dib0700_devices.c -9346f06a8fe57e88d4523a32d2c8f677 linux-3.0/drivers/media/dvb/dvb-usb/dib0700_core.c -9d8eaca558bd4e32572121e5b1aeb83b linux-3.0/drivers/media/dvb/dvb-usb/dib0700.h -d1f4c21307965ef529d382b4b889ba93 linux-3.0/drivers/media/dvb/dvb-usb/cxusb.h -b64e0bd196ce73ab3ff2567fbac1e790 linux-3.0/drivers/media/dvb/dvb-usb/cxusb.c -280eb83ff600f77f8343de9e2fda1fef linux-3.0/drivers/media/dvb/dvb-usb/cinergyT2.h -920245af20047a091f198d42f969e1bd linux-3.0/drivers/media/dvb/dvb-usb/cinergyT2-fe.c -d4180a060b064a48d228cf2e74408ea6 linux-3.0/drivers/media/dvb/dvb-usb/cinergyT2-core.c -8616e9003891abd7b6b0354da1dbf995 linux-3.0/drivers/media/dvb/dvb-usb/ce6230.h -30869b37409a369a987c8acc94279e96 linux-3.0/drivers/media/dvb/dvb-usb/ce6230.c -4529984949fbaa859e737baa394b44f4 linux-3.0/drivers/media/dvb/dvb-usb/az6027.h -b61c8e1583c5762e5e1f0e53500610c9 linux-3.0/drivers/media/dvb/dvb-usb/az6027.c -b228a54e0f54502fd0d7d06007523875 linux-3.0/drivers/media/dvb/dvb-usb/au6610.h -3d843c0b0c102666e6a6357b5c5c85e5 linux-3.0/drivers/media/dvb/dvb-usb/au6610.c -ea86aec09ca9228318b08d0a22451284 linux-3.0/drivers/media/dvb/dvb-usb/anysee.h -318ab4d2c9b0feaf8a62a75744881de5 linux-3.0/drivers/media/dvb/dvb-usb/anysee.c -71b7a93d0543335fa459b78004986d49 linux-3.0/drivers/media/dvb/dvb-usb/af9015.h -2e65d8a253dd0577533b0eb8dc03525e linux-3.0/drivers/media/dvb/dvb-usb/af9015.c -74f5560519981b8233272ea3f0b75ca6 linux-3.0/drivers/media/dvb/dvb-usb/af9005.h -c2b16bcac271e33070880731f424efd4 linux-3.0/drivers/media/dvb/dvb-usb/af9005.c -74395a78936df1a72fd9c98765bfa3fc linux-3.0/drivers/media/dvb/dvb-usb/af9005-script.h -4e8c65b6d862016a8ecd9965c56f47c3 linux-3.0/drivers/media/dvb/dvb-usb/af9005-remote.c -934f3dba4efbb30d6915d9bec522a827 linux-3.0/drivers/media/dvb/dvb-usb/af9005-fe.c -3f1d3c8840e4c1676a57e43c8e54d3fe linux-3.0/drivers/media/dvb/dvb-usb/a800.c -8f5ffb67e3ab9aa425695ba936c0e5c7 linux-3.0/drivers/media/dvb/dvb-usb/Makefile -b46a407ebfe586a40968a7157ef84ae7 linux-3.0/drivers/media/dvb/dvb-usb/Kconfig -8b751e39849962032c1915bb8bb5ed14 linux-3.0/drivers/media/dvb/dvb-core/dvbdev.h -ca383c2d74e2fbfba46e23732e68699d linux-3.0/drivers/media/dvb/dvb-core/dvbdev.c -7b327630f98369e469f8ceb98b428879 linux-3.0/drivers/media/dvb/dvb-core/dvb_ringbuffer.h -c27fe90a9cdf49ef82c2fdea730ca058 linux-3.0/drivers/media/dvb/dvb-core/dvb_ringbuffer.c -4db2e8032c3d31d7df481fcf37e58f83 linux-3.0/drivers/media/dvb/dvb-core/dvb_net.h -b3c7af1426ba4b74ac0a47b2353e28ff linux-3.0/drivers/media/dvb/dvb-core/dvb_net.c -14071d5b03da83c108bb7c0058d892fb linux-3.0/drivers/media/dvb/dvb-core/dvb_math.h -bff01ce432babe16d948220a0f97a1f9 linux-3.0/drivers/media/dvb/dvb-core/dvb_math.c -866c5d4616dc27349d1ae02558931318 linux-3.0/drivers/media/dvb/dvb-core/dvb_frontend.h -89fad5a7de3979dd00a6a1dd9fc52752 linux-3.0/drivers/media/dvb/dvb-core/dvb_frontend.c -c7bd8a9a1a09d857bcdf501e2f95092e linux-3.0/drivers/media/dvb/dvb-core/dvb_filter.h -ef5a6710b53e73ffd1b1b77d792f5f37 linux-3.0/drivers/media/dvb/dvb-core/dvb_filter.c -e73c9fc8e386a892b37ff67c5dcf236d linux-3.0/drivers/media/dvb/dvb-core/dvb_demux.h -d0dc9c937da58397373c488bff3577c5 linux-3.0/drivers/media/dvb/dvb-core/dvb_demux.c -77a1fe6c624006d712ecc19229428129 linux-3.0/drivers/media/dvb/dvb-core/dvb_ca_en50221.h -5bbffa7b6ff06f4cf08eac32d3f6f38d linux-3.0/drivers/media/dvb/dvb-core/dvb_ca_en50221.c -db551551059ceafa8788fc636aa06e0c linux-3.0/drivers/media/dvb/dvb-core/dmxdev.h -9b4c1eea66da709a95115e91e7e56d67 linux-3.0/drivers/media/dvb/dvb-core/dmxdev.c -f51e54d3864f41a2a3f7a92d0d7e9ba1 linux-3.0/drivers/media/dvb/dvb-core/demux.h -db2010db29e0329524af51479ebe5286 linux-3.0/drivers/media/dvb/dvb-core/Makefile -c7113e332fdfcdac6d07def53e4c79b1 linux-3.0/drivers/media/dvb/dm1105/dm1105.c -c6bdfb248e7335dd261150ab7c32581e linux-3.0/drivers/media/dvb/dm1105/Makefile -84d1ce4376076fb1b8884a050c9dc780 linux-3.0/drivers/media/dvb/dm1105/Kconfig -35d3fbb6ab4a8e2c6b41810445cbf4ab linux-3.0/drivers/media/dvb/bt8xx/dvb-bt8xx.h -4adfc9b2d9760ae3acea26d8ebb5f203 linux-3.0/drivers/media/dvb/bt8xx/dvb-bt8xx.c -9df5330d884d5a374b124aa0e01c8314 linux-3.0/drivers/media/dvb/bt8xx/dst_priv.h -0093409be1811e8d83c5e7c3a3857b0d linux-3.0/drivers/media/dvb/bt8xx/dst_common.h -809706252691c84bcb07326bb6c9bb63 linux-3.0/drivers/media/dvb/bt8xx/dst_ca.h -295fe58054c1d891839fb6cd37c17ea1 linux-3.0/drivers/media/dvb/bt8xx/dst_ca.c -db50ef42a9816b6342ab5fb101d40abb linux-3.0/drivers/media/dvb/bt8xx/dst.c -e46b81cbcd2517fb1d1581f62d03cf98 linux-3.0/drivers/media/dvb/bt8xx/bt878.h -345aa60f19b78ce25a842cbe33e14448 linux-3.0/drivers/media/dvb/bt8xx/bt878.c -cf76e7bfe0ec45b7057caa87418a9390 linux-3.0/drivers/media/dvb/bt8xx/Makefile -cd319e7f7c0802df78013ecf8005dd6e linux-3.0/drivers/media/dvb/bt8xx/Kconfig -1ed124630fc7db27579b9a38dabb4c2b linux-3.0/drivers/media/dvb/b2c2/flexcop_ibi_value_le.h -c5f933c03599116810d2bfe543f478cd linux-3.0/drivers/media/dvb/b2c2/flexcop_ibi_value_be.h -011f8aa0e307d5b05f2226c75cef1c41 linux-3.0/drivers/media/dvb/b2c2/flexcop.h -5cbdd57db3b9594cadb50975730655e4 linux-3.0/drivers/media/dvb/b2c2/flexcop.c -f4aa32f24cb298aa07cca4e9d4123c81 linux-3.0/drivers/media/dvb/b2c2/flexcop-usb.h -2b9eb5a72f25e562b71c717e3ba6e238 linux-3.0/drivers/media/dvb/b2c2/flexcop-usb.c -e8b8043e7fcf525b0aa0eb50ce77860b linux-3.0/drivers/media/dvb/b2c2/flexcop-sram.c -3e67aecb9a201d3c69ff231cc1267a61 linux-3.0/drivers/media/dvb/b2c2/flexcop-reg.h -42d06e01bfacc190ad3311fde8f9403b linux-3.0/drivers/media/dvb/b2c2/flexcop-pci.c -e834e87f48a9e0499629c042d874ec61 linux-3.0/drivers/media/dvb/b2c2/flexcop-misc.c -84c6e87ccf43481b160a57aa481ed2fd linux-3.0/drivers/media/dvb/b2c2/flexcop-i2c.c -21cf8c3b6fade161f98d738565f72a32 linux-3.0/drivers/media/dvb/b2c2/flexcop-hw-filter.c -54586551a6f76cc7abe620c7614ac01d linux-3.0/drivers/media/dvb/b2c2/flexcop-fe-tuner.c -9b556329050d9220b032c8226766c000 linux-3.0/drivers/media/dvb/b2c2/flexcop-eeprom.c -6aea06941661bbb991fba2481b189142 linux-3.0/drivers/media/dvb/b2c2/flexcop-dma.c -546411d139397637f4e33d0256ccc192 linux-3.0/drivers/media/dvb/b2c2/flexcop-common.h -3737119b755acbbaa9deee9de53cce68 linux-3.0/drivers/media/dvb/b2c2/Makefile -f9cbddbadf6eefb716a82a5069a63843 linux-3.0/drivers/media/dvb/b2c2/Kconfig -009d8d5ecbed76a9618fb0ce662dc167 linux-3.0/drivers/media/dvb/Makefile -201ee28bd87ed8b27b92dba758237d8e linux-3.0/drivers/media/dvb/Kconfig -b3032d6b845adb4d58854b9283fdf95e linux-3.0/drivers/media/common/tuners/xc5000.h -8bdc79febec7c93788d6be392b871adb linux-3.0/drivers/media/common/tuners/xc5000.c -5e89855b035dd50bf0a552948a04cf95 linux-3.0/drivers/media/common/tuners/tuner-xc2028.h -fa6e3a409e6d1cbffe5225c17841c94c linux-3.0/drivers/media/common/tuners/tuner-xc2028.c -7669498a058585ce39000bcf567fb2ff linux-3.0/drivers/media/common/tuners/tuner-xc2028-types.h -11efb961a5039d4b6f2c7e7b4c3d974d linux-3.0/drivers/media/common/tuners/tuner-types.c -ff8113491c19f4f75f78cf7fd04d4acc linux-3.0/drivers/media/common/tuners/tuner-simple.h -8d058670a296dea1ce98aa6af4998b4f linux-3.0/drivers/media/common/tuners/tuner-simple.c -d4e42df2f4393f9038b3254a11a4d66e linux-3.0/drivers/media/common/tuners/tuner-i2c.h -73e1844a141c739216b02a18bae0c6cf linux-3.0/drivers/media/common/tuners/tea5767.h -3c71372e6274420a6eb1b3caab10a09d linux-3.0/drivers/media/common/tuners/tea5767.c -6e81713a27f49104ee7af4071cb8e046 linux-3.0/drivers/media/common/tuners/tea5761.h -f9e7f50c2ec5803cfa8442882e9544bb linux-3.0/drivers/media/common/tuners/tea5761.c -5e5baef0bb3ac09279cd8fa643aad1a3 linux-3.0/drivers/media/common/tuners/tda9887.h -d544f209b16e4e0772f9307c0d230e51 linux-3.0/drivers/media/common/tuners/tda9887.c -177e9d1cc6a34fa424098d7bd16c0267 linux-3.0/drivers/media/common/tuners/tda8290.h -869ce6900e8e135bcea3998a0dc837d0 linux-3.0/drivers/media/common/tuners/tda8290.c -8f34ba9d23b80643c13592b8a88e807f linux-3.0/drivers/media/common/tuners/tda827x.h -3541444baa26159c08d33fc3f8106247 linux-3.0/drivers/media/common/tuners/tda827x.c -95c63772ecd07bb6de41117b20768eb1 linux-3.0/drivers/media/common/tuners/tda18271.h -19c9d40d075931d55cd8d9daef1b4cf8 linux-3.0/drivers/media/common/tuners/tda18271-priv.h -f0cd2f412c949e4af046f5438732a6ad linux-3.0/drivers/media/common/tuners/tda18271-maps.c -4c3e039df721f08c967cd238eac910ef linux-3.0/drivers/media/common/tuners/tda18271-fe.c -f09796dc68d3325362144540747f4f9e linux-3.0/drivers/media/common/tuners/tda18271-common.c -2ff1e4679f57d8b21b70b6fda2eef724 linux-3.0/drivers/media/common/tuners/tda18218_priv.h -9ae41b7e21ee7b9065ff30eab9c86c99 linux-3.0/drivers/media/common/tuners/tda18218.h -377b2ac4e2aef737bbe49e47dbde8190 linux-3.0/drivers/media/common/tuners/tda18218.c -c3db08dd46a69fdbf099549090075410 linux-3.0/drivers/media/common/tuners/tda18212_priv.h -92247d7517a539648980094e3a3dcbd1 linux-3.0/drivers/media/common/tuners/tda18212.h -4b999a303052b9fd33a09dfebb33ed75 linux-3.0/drivers/media/common/tuners/tda18212.c -6c5a16a61f0f6fa13a60ed49ebe7fdd8 linux-3.0/drivers/media/common/tuners/qt1010_priv.h -ae9adf7541ce9437d997b9b6bece3f92 linux-3.0/drivers/media/common/tuners/qt1010.h -1bbd0910e7e15a0550f93e9d64056f9c linux-3.0/drivers/media/common/tuners/qt1010.c -ab0a4be7e18a7edca9e27afb3ae68b16 linux-3.0/drivers/media/common/tuners/mxl5007t.h -e80876e3cb53b0d9b14e6d9495c3b0a5 linux-3.0/drivers/media/common/tuners/mxl5007t.c -b50c63f709c1fbe830eb74a837fd0f0f linux-3.0/drivers/media/common/tuners/mxl5005s.h -c07841f1abd23a7b1f0085aada2ce7ac linux-3.0/drivers/media/common/tuners/mxl5005s.c -c15b3d645953f263b975e07ed74bf77e linux-3.0/drivers/media/common/tuners/mt2266.h -47e9dfc4476ac01bb29e9356100abb68 linux-3.0/drivers/media/common/tuners/mt2266.c -319b9cd40c0884820725906c298ecc22 linux-3.0/drivers/media/common/tuners/mt2131_priv.h -0e4d3421d785bbc539bcb98449ad7515 linux-3.0/drivers/media/common/tuners/mt2131.h -0c66579c1a45e8068110b59e32561449 linux-3.0/drivers/media/common/tuners/mt2131.c -22fe78d31d18c7273f4cb68440d02c60 linux-3.0/drivers/media/common/tuners/mt20xx.h -54a53c1e3a206387e9e66bd430c2c3c2 linux-3.0/drivers/media/common/tuners/mt20xx.c -17495e47fcea1e9dfb6ed9b5aa046034 linux-3.0/drivers/media/common/tuners/mt2060_priv.h -247e2e0599fac47e0602a3bd9b50e66e linux-3.0/drivers/media/common/tuners/mt2060.h -3f7f1c73ab08157382bc9678dec4f21e linux-3.0/drivers/media/common/tuners/mt2060.c -bc77cd81337dbc5e33653a814dc0d89c linux-3.0/drivers/media/common/tuners/mc44s803_priv.h -427667296a174ad11c1369e94cebb6dd linux-3.0/drivers/media/common/tuners/mc44s803.h -c0b260c9ea52263676342c42c21d471a linux-3.0/drivers/media/common/tuners/mc44s803.c -f9c6aa793462f8b5a0a45768e65c60b5 linux-3.0/drivers/media/common/tuners/max2165_priv.h -be0e480dd37c23b2102d87be1d64e70e linux-3.0/drivers/media/common/tuners/max2165.h -803e5d763ef1952a286562f3988aff4d linux-3.0/drivers/media/common/tuners/max2165.c -8f3d42bcf284592287f39a6e2c3815d3 linux-3.0/drivers/media/common/tuners/Makefile -f0406445ed8a2e67183db7258790a502 linux-3.0/drivers/media/common/tuners/Kconfig -b059c46b2341f69e5a461a3f66db0842 linux-3.0/drivers/media/common/saa7146_video.c -d3cba1eef185b29e0423f4e7bc22af77 linux-3.0/drivers/media/common/saa7146_vbi.c -abbb325be8735aa3a28f50fd494a4d9c linux-3.0/drivers/media/common/saa7146_i2c.c -cdf8da601db42bfbbca99f97f1480c7e linux-3.0/drivers/media/common/saa7146_hlp.c -70143b1330257aba027d1598d7bb2c01 linux-3.0/drivers/media/common/saa7146_fops.c -161ba3e5f603649b673ab7aee8edac6d linux-3.0/drivers/media/common/saa7146_core.c -0c2804742a6485419718b9d519987895 linux-3.0/drivers/media/common/Makefile -5fe3dfe740550e84afda849eede972b2 linux-3.0/drivers/media/common/Kconfig -6a082b24031ba44e956882e282da77d7 linux-3.0/drivers/media/Makefile -d5aa620c1e19450b3ad2b9bc1d7b3d63 linux-3.0/drivers/media/Kconfig -ac0a006d193f70cad3c32f326aded691 linux-3.0/drivers/md/raid5.h -0ce775912dbe04b8125a5b9c84a13857 linux-3.0/drivers/md/raid5.c -d320c86d99626bd8699e02837fee0d92 linux-3.0/drivers/md/raid10.h -7506470caef3c769f244274f361d31d2 linux-3.0/drivers/md/raid10.c -a0883a662309d70282bc62b8d0bd913f linux-3.0/drivers/md/raid1.h -4e66377ce7049707ecea2061a2d22bd8 linux-3.0/drivers/md/raid1.c -83adfd4a354b0781381444f2aa7f9453 linux-3.0/drivers/md/raid0.h -52a612d5f7741f7049c5af45b1c31338 linux-3.0/drivers/md/raid0.c -8a57e2a876dcf96800a2d1dae597a458 linux-3.0/drivers/md/multipath.h -5fdec92461469b9fa6b76aa39ea61bf2 linux-3.0/drivers/md/multipath.c -4b0aad8d534a10a8ffefc08d5d78f8b2 linux-3.0/drivers/md/md.h -09293e088555861268703fc4b5f771ef linux-3.0/drivers/md/md.c -b9bdceffc17cca5073c6e1663481baf2 linux-3.0/drivers/md/linear.h -6177e31f4e0cb69ed61c4946ba1559f2 linux-3.0/drivers/md/linear.c -af1e659d7b27525026533edab29931a0 linux-3.0/drivers/md/faulty.c -7a01f51ae3f08eee756fe3df5a8ef38a linux-3.0/drivers/md/dm.h -e99fea9d8ef512add583650007ccaf02 linux-3.0/drivers/md/dm.c -b3759e8d21f9344379135ab7e4ef7218 linux-3.0/drivers/md/dm-zero.c -3089630a1fc539e58c9bc99c2883c17c linux-3.0/drivers/md/dm-uevent.h -f055c0ba0a7f653a5dd6ea25abd6e8f8 linux-3.0/drivers/md/dm-uevent.c -ed8aa895703112424d0d212fcb365eda linux-3.0/drivers/md/dm-target.c -8a7c2fcfa85970378754b511ad229d6b linux-3.0/drivers/md/dm-table.c -42084d06eb7b66d8837edcfddd6af1b2 linux-3.0/drivers/md/dm-sysfs.c -d87d53cca237b5d0b32ab7eda5e8dbd1 linux-3.0/drivers/md/dm-stripe.c -905011d768013a5b9290bd72943bd955 linux-3.0/drivers/md/dm-snap.c -2d4cfaee3432eca8b3376d247f1a1bef linux-3.0/drivers/md/dm-snap-transient.c -203b7fd421d5fd9dd1bf489dbb66c973 linux-3.0/drivers/md/dm-snap-persistent.c -817d42530860e78c9ea4427d9bbf9572 linux-3.0/drivers/md/dm-service-time.c -8d14b38161361be0479d21d79fe3b161 linux-3.0/drivers/md/dm-round-robin.c -5c05edc699a8821625cbea1bf7827f36 linux-3.0/drivers/md/dm-region-hash.c -d3e1b35619243b1612389168b230cf13 linux-3.0/drivers/md/dm-raid1.c -011ea0a988395361af1c00525c613ff1 linux-3.0/drivers/md/dm-raid.c -c0edeeb83e841de18aea6ebb88be5f40 linux-3.0/drivers/md/dm-queue-length.c -4c790e51e6373d84076e39284bd67265 linux-3.0/drivers/md/dm-path-selector.h -27b45c78857642b6930ebb0182977252 linux-3.0/drivers/md/dm-path-selector.c -32254bb1aadc4c1e12d9471aa40cc32c linux-3.0/drivers/md/dm-mpath.h -71e39807fc15fccfc25402455d8735da linux-3.0/drivers/md/dm-mpath.c -ca0b5e1615306998f64e1b8c61572757 linux-3.0/drivers/md/dm-log.c -cd2187a66224bfd35d2a81cd1cb0f6e5 linux-3.0/drivers/md/dm-log-userspace-transfer.h -a7773b52e994b9fad9a1c8b143bbb709 linux-3.0/drivers/md/dm-log-userspace-transfer.c -403148150d44312ad640c51ea20d82a0 linux-3.0/drivers/md/dm-log-userspace-base.c -1834796a9c11ad16d04829ea154be40f linux-3.0/drivers/md/dm-linear.c -fc899a743ea28860b596410b587cf74f linux-3.0/drivers/md/dm-kcopyd.c -3c56307cd9035c42742647fbeb0cd901 linux-3.0/drivers/md/dm-ioctl.c -b15c6d1bf404537decd8129be29721ba linux-3.0/drivers/md/dm-io.c -5336247b3c34b5ef321d4f642b43e731 linux-3.0/drivers/md/dm-flakey.c -0e12d53f480ae27ad89817209acf2a92 linux-3.0/drivers/md/dm-exception-store.h -c98c29c1fbf7e208463c626e1da40a13 linux-3.0/drivers/md/dm-exception-store.c -90d366bc8ae85cac89b3fbd52a18a1bd linux-3.0/drivers/md/dm-delay.c -7c347fc3c0608021ced62853586ac677 linux-3.0/drivers/md/dm-crypt.c -bce36e2ea6569eac6ee3c0b9ae768810 linux-3.0/drivers/md/dm-bio-record.h -c8bd3dace1259314a41a9ba94b197814 linux-3.0/drivers/md/bitmap.h -e57ce1478cb63a65ac9afb9623138aa3 linux-3.0/drivers/md/bitmap.c -05a34111b4f570d19ae91da34f85424d linux-3.0/drivers/md/Makefile -3be5901f2a6d440662822360fa6e448c linux-3.0/drivers/md/Kconfig -8db9551ec6cdf00d6a599c24c71fad24 linux-3.0/drivers/mca/mca-proc.c -e204ea134f5b73dba82701b6ae62f506 linux-3.0/drivers/mca/mca-legacy.c -91585857bbc047de451f65b9f4b48cf4 linux-3.0/drivers/mca/mca-driver.c -34e7bfef9646dac633d8b28e28503ef0 linux-3.0/drivers/mca/mca-device.c -bb83224ed1680fd85aac09dfdd0dd90f linux-3.0/drivers/mca/mca-bus.c -903d56716d63bae579ad0e391489d393 linux-3.0/drivers/mca/Makefile -a006de3c04a0885b07e1d9238467dbd3 linux-3.0/drivers/mca/Kconfig -bd92478a9687e408d88297dac2080e6e linux-3.0/drivers/macintosh/windfarm_smu_sensors.c -ceb0ea29c9b53e064aef753676cd68a3 linux-3.0/drivers/macintosh/windfarm_smu_sat.c -74c89cdd1f3300338acbe4ffa49c1a1b linux-3.0/drivers/macintosh/windfarm_smu_controls.c -3ce1018285e832ffcba2c41b96bc3a82 linux-3.0/drivers/macintosh/windfarm_pm91.c -5cc1415d159731e2de0efaedb798c75f linux-3.0/drivers/macintosh/windfarm_pm81.c -7e25403423fb98b0db37c15b20b3859a linux-3.0/drivers/macintosh/windfarm_pm121.c -1a259768b6ed848b06a9a7513b1d60e6 linux-3.0/drivers/macintosh/windfarm_pm112.c -bf4b9598ad360cc461cac28fc503a10a linux-3.0/drivers/macintosh/windfarm_pid.h -43392ea2574d7feb1424c1cecf9c3680 linux-3.0/drivers/macintosh/windfarm_pid.c -f2669b266c842248d0357099cdd42a77 linux-3.0/drivers/macintosh/windfarm_max6690_sensor.c -1cce580b23611f66802e00ad0c863e80 linux-3.0/drivers/macintosh/windfarm_lm75_sensor.c -6d9324e512e1d88ef8f72f26590f5c49 linux-3.0/drivers/macintosh/windfarm_cpufreq_clamp.c -8a207853a2e875fbdadedd7bf26d646d linux-3.0/drivers/macintosh/windfarm_core.c -1e9dc315d315a747e9cdd3687bd929ca linux-3.0/drivers/macintosh/windfarm.h -da9f239a8af40a64b40151ba59a529bb linux-3.0/drivers/macintosh/via-pmu68k.c -ba4766f3d5f86b7ecc2bdb1dae3fe9c0 linux-3.0/drivers/macintosh/via-pmu.c -d5ab43880b35ee9ec81b471848cfec0a linux-3.0/drivers/macintosh/via-pmu-led.c -ecf921418ba1369fdd5ec250ae3814e4 linux-3.0/drivers/macintosh/via-pmu-event.h -619ad76903905e1e294b570f9f229d2c linux-3.0/drivers/macintosh/via-pmu-event.c -e9af648ebaa3a65418e3bee13f6dbe25 linux-3.0/drivers/macintosh/via-pmu-backlight.c -a382f151abcbf8919bc0c77f8bbd1925 linux-3.0/drivers/macintosh/via-maciisi.c -e3b77cc29bc9668165ae8581cd5fde13 linux-3.0/drivers/macintosh/via-macii.c -80abddf1d4b28fb1c6ccef9fac852e71 linux-3.0/drivers/macintosh/via-cuda.c -ebb05dc1fe0e57f6956d1c2680448fdb linux-3.0/drivers/macintosh/therm_windtunnel.c -131a3ad82c22537cd0499c5f06ac99b6 linux-3.0/drivers/macintosh/therm_pm72.h -bb8ffbed94b4960c6ff282ead354f6e1 linux-3.0/drivers/macintosh/therm_pm72.c -2a3c9ff6699c941603c52d061d30cb76 linux-3.0/drivers/macintosh/therm_adt746x.c -03062e656713e880af94aa80193e2fe9 linux-3.0/drivers/macintosh/smu.c -7e35972a0ed0974e6e31baff939bcdfc linux-3.0/drivers/macintosh/rack-meter.c -b201e7ca25f7eb65c540995e1f4f432c linux-3.0/drivers/macintosh/nvram.c -3413e30e83af95b3fd6e2a18e2ba1719 linux-3.0/drivers/macintosh/mediabay.c -75594536aee03238b545f09251ae0531 linux-3.0/drivers/macintosh/macio_sysfs.c -b1f6f507d3564b435cc720081555d4c0 linux-3.0/drivers/macintosh/macio_asic.c -dfd4ecd75060e9904284cb21b704b130 linux-3.0/drivers/macintosh/macio-adb.c -257f141aee97904de3abb09f814b7d60 linux-3.0/drivers/macintosh/mac_hid.c -9f5a57b2f04cb73342897cb40eec8e5d linux-3.0/drivers/macintosh/apm_emu.c -a311bf3d63eaa0300a223eb003a48615 linux-3.0/drivers/macintosh/ans-lcd.h -0330c08843620660a30826f4552b8332 linux-3.0/drivers/macintosh/ans-lcd.c -8f036ed430abf1dfb4cdcfe6ad4487e4 linux-3.0/drivers/macintosh/ams/ams.h -0c2e6fc3b9dc0fabad3069f723902c12 linux-3.0/drivers/macintosh/ams/ams-pmu.c -b4388cd3c0f125893fe99e209caa412b linux-3.0/drivers/macintosh/ams/ams-input.c -4b4dcf1457da2606ee06e7c0720314c4 linux-3.0/drivers/macintosh/ams/ams-i2c.c -47582e1a6f176d02d707bd0bf97de33d linux-3.0/drivers/macintosh/ams/ams-core.c -5b38a383c79a5b4d2bb06b5303ed58f9 linux-3.0/drivers/macintosh/ams/Makefile -0ebed5d7a7ff3f9dbc07bc8729b86527 linux-3.0/drivers/macintosh/adbhid.c -9bbc4b4fc44228360d791413729bdb5c linux-3.0/drivers/macintosh/adb.c -e09c1b759b2d6948a516e1ad1157e853 linux-3.0/drivers/macintosh/adb-iop.c -b25a74065a96dd20eead7c92e12022ab linux-3.0/drivers/macintosh/Makefile -fd18cc98cc06f7fc54aedb16d079723b linux-3.0/drivers/macintosh/Kconfig -3ac94d52060dd86c1c44da07c1863219 linux-3.0/drivers/lguest/x86/switcher_32.S -fd6263e46ebd34d5212c7094c9e4c8d3 linux-3.0/drivers/lguest/x86/core.c -75b82f17a4b90747f96f7800ca89c6af linux-3.0/drivers/lguest/segments.c -dfe11034224ad426e63e739dc9c73b09 linux-3.0/drivers/lguest/page_tables.c -ac44228d86e11695bc8408beb5b9e184 linux-3.0/drivers/lguest/lguest_user.c -609c689ea540587c5c5f0d390eb9f78e linux-3.0/drivers/lguest/lguest_device.c -17797ed78be5a4007ac87ac990a92733 linux-3.0/drivers/lguest/lg.h -3588b244093b952e9c9ff321f84c0dab linux-3.0/drivers/lguest/interrupts_and_traps.c -a6ae03af4803e1cfc2b22bbcf0d424dc linux-3.0/drivers/lguest/hypercalls.c -04d0c41c3af822ab26e46720eb0d8d46 linux-3.0/drivers/lguest/core.c -8b5933803b8b9e59961e08968c677feb linux-3.0/drivers/lguest/README -e42ece889909d99d0199afc794f0da63 linux-3.0/drivers/lguest/Makefile -8a340154709e50f0c69c62ed8f988f8e linux-3.0/drivers/lguest/Kconfig -342fd74abbeee731e7b9c07c726b1a3b linux-3.0/drivers/leds/ledtrig-timer.c -b761c305246cbb066d0b4a0074d8ef95 linux-3.0/drivers/leds/ledtrig-ide-disk.c -9e5bc64cefb6122cc2da1ffe1d78bddd linux-3.0/drivers/leds/ledtrig-heartbeat.c -4f24198d693cae463d5353fa9e1fa23f linux-3.0/drivers/leds/ledtrig-gpio.c -58e85c62331a6fae6c70d4a61793b935 linux-3.0/drivers/leds/ledtrig-default-on.c -31091d0f12147aa49e04c4575e7e5e10 linux-3.0/drivers/leds/ledtrig-backlight.c -eb947c56f4d43eefa6d10edc1cab2dca linux-3.0/drivers/leds/leds.h -dff874cbc4450e1f1015038917da64f1 linux-3.0/drivers/leds/leds-wrap.c -89166ace066dd554df368254f008e8c9 linux-3.0/drivers/leds/leds-wm8350.c -f269420d7a511c30c3680e8fa7490fd7 linux-3.0/drivers/leds/leds-wm831x-status.c -43c3dd067cc5339d8213d4ee4a14c626 linux-3.0/drivers/leds/leds-sunfire.c -e201592809c8724b6c3c3ad0b59782cf linux-3.0/drivers/leds/leds-ss4200.c -e2cc46262db9a517c62f682396ada829 linux-3.0/drivers/leds/leds-s3c24xx.c -a9e6d50ac6d71b7cd09cdb47a8cc8e20 linux-3.0/drivers/leds/leds-regulator.c -030c2be7622a0831d3a6448ed24407e3 linux-3.0/drivers/leds/leds-rb532.c -09dcea964abac31ed514d0e98f9c97f8 linux-3.0/drivers/leds/leds-pwm.c -6919174a08b5ea6e07cb2f1524333513 linux-3.0/drivers/leds/leds-pca955x.c -ff363a46c742700fa3012b1336a8d0eb linux-3.0/drivers/leds/leds-pca9532.c -d890b3452f16341c7ec79dc37dfec4e6 linux-3.0/drivers/leds/leds-ns2.c -7ddd3de83f0356862dba3ab881e016dc linux-3.0/drivers/leds/leds-netxbig.c -95bbf07b720673199d97dd3bb26626c1 linux-3.0/drivers/leds/leds-net5501.c -793455411a40f2078654ee9e3cbbdf65 linux-3.0/drivers/leds/leds-net48xx.c -b0593c9e21862b46ad13d9c3c40aeee0 linux-3.0/drivers/leds/leds-mc13783.c -39a23191b8c38a17dcad2061b1057d79 linux-3.0/drivers/leds/leds-lt3593.c -e1c217ab5041730694453f93ba377a41 linux-3.0/drivers/leds/leds-lp5523.c -ff9067c6b5005d6aef6e678a4fa58c97 linux-3.0/drivers/leds/leds-lp5521.c -fadbed4c5bd7686ef0fa210af7e5084a linux-3.0/drivers/leds/leds-lp3944.c -cbdf5b9f4c6bff21f4e2baaa819afa2d linux-3.0/drivers/leds/leds-locomo.c -8945bddfaeb7a5809b3c8387abbc23ec linux-3.0/drivers/leds/leds-lm3530.c -70229bd72bd646252f3f8fe98f79d3d8 linux-3.0/drivers/leds/leds-hp6xx.c -015d2eea70f5cba582a17eb3a258ec1d linux-3.0/drivers/leds/leds-gpio.c -3d95b726ee29898ae0f4e83d735c7199 linux-3.0/drivers/leds/leds-gpio-register.c -ffba0612da9e1bcd504a4606a0c0e5d3 linux-3.0/drivers/leds/leds-fsg.c -d9faab538e089f11015060fda3e9a986 linux-3.0/drivers/leds/leds-dac124s085.c -9c46a324b4d689bb891a8c6f9708119a linux-3.0/drivers/leds/leds-da903x.c -2400ad25e455ab437c4fa522ffd0ec3e linux-3.0/drivers/leds/leds-cobalt-raq.c -6ed432f1a32ed3c67002ada1b698eed9 linux-3.0/drivers/leds/leds-cobalt-qube.c -eb1f4493a370ca21d58279fd6e92cde2 linux-3.0/drivers/leds/leds-clevo-mail.c -0b788e5bb3663a2474b350d70638073b linux-3.0/drivers/leds/leds-bd2802.c -501f666cc1a07ede283cd358099cbdee linux-3.0/drivers/leds/leds-atmel-pwm.c -d05aa53f115fce921bc6ad6e364da7ca linux-3.0/drivers/leds/leds-asic3.c -d1d9027b9d82c05080416a704aa595d6 linux-3.0/drivers/leds/leds-ams-delta.c -c2c32774f6bc8e9e9897fc71f59f6e1c linux-3.0/drivers/leds/leds-alix2.c -6b9877dfd7e047eec6554c86dc144ed4 linux-3.0/drivers/leds/leds-adp5520.c -90487bd9c120417134530d1ef9e7d262 linux-3.0/drivers/leds/leds-88pm860x.c -77b77c729c3978ca1c7891f1538baa10 linux-3.0/drivers/leds/led-triggers.c -1b2f5b752feac41058dafb32308c15cc linux-3.0/drivers/leds/led-core.c -4f5a0effa304962a3c11915861c7fb78 linux-3.0/drivers/leds/led-class.c -191be0da92bce600735d5ac2c0124063 linux-3.0/drivers/leds/dell-led.c -dd90a7e78b9c10f556fba601d34729ce linux-3.0/drivers/leds/Makefile -48a1ca1a90c755461c53622b581ccca7 linux-3.0/drivers/leds/Kconfig -5a52e88302d8e0104bb9ba1350923918 linux-3.0/drivers/isdn/sc/timer.c -34d7a4944d0d23f2a0ec6f9cb9b5b935 linux-3.0/drivers/isdn/sc/shmem.c -950dfe9f88ff4a5e7984b6a52e5d01e2 linux-3.0/drivers/isdn/sc/scioc.h -88efd45e08ac77cc6ee9a225af0c4dd7 linux-3.0/drivers/isdn/sc/packet.c -a2c92c66abd06af87e790ccb79c6788d linux-3.0/drivers/isdn/sc/message.h -8defaac0fb2ae0a9041040700023e75b linux-3.0/drivers/isdn/sc/message.c -27dbe0db58f19256daf0eaec07200cf3 linux-3.0/drivers/isdn/sc/ioctl.c -f304d3d7be03112d9a89a72a1702c49b linux-3.0/drivers/isdn/sc/interrupt.c -01cbcfcb5252a6a35431660897a633bf linux-3.0/drivers/isdn/sc/init.c -d8be2e748c1c1f333eb9bf35ad00d359 linux-3.0/drivers/isdn/sc/includes.h -c6332c8bdfc732b819209a72aed360c7 linux-3.0/drivers/isdn/sc/hardware.h -70962d7e56ac3989c470f91475bd28c4 linux-3.0/drivers/isdn/sc/event.c -c0dd621b3c8b213745cf0347124113b5 linux-3.0/drivers/isdn/sc/command.c -fb5400a2a9744eef61832a18c30eae32 linux-3.0/drivers/isdn/sc/card.h -450a7d0c0a5d3e8a0bedf29ca970eca9 linux-3.0/drivers/isdn/sc/Makefile -01b53b1b4e2908cd6905386d9b0cecb9 linux-3.0/drivers/isdn/sc/Kconfig -ef0bf3742f87c0ed057801cf880a9f0b linux-3.0/drivers/isdn/pcbit/pcbit.h -fd30791936a3f0bd0034ee598c09c914 linux-3.0/drivers/isdn/pcbit/module.c -405aabeb88fd92786d2aa23663047ba4 linux-3.0/drivers/isdn/pcbit/layer2.h -455103bef93a85aa019785f25192eefa linux-3.0/drivers/isdn/pcbit/layer2.c -6e1d0cfa56f711a987318c40f6eb844e linux-3.0/drivers/isdn/pcbit/edss1.h -c059be77fb02d2f1db8f3b07706e16a0 linux-3.0/drivers/isdn/pcbit/edss1.c -5d42696bd98526ddf39d4688b66b7fbd linux-3.0/drivers/isdn/pcbit/drv.c -d017e33961f735918a2b06d723f5e669 linux-3.0/drivers/isdn/pcbit/capi.h -5d29acceb31bc832408d8b2fd2218112 linux-3.0/drivers/isdn/pcbit/capi.c -ec9c1efb77b4d42f2934f61173a699e7 linux-3.0/drivers/isdn/pcbit/callbacks.h -a51f190290ecfc77c4446105d8e28bc9 linux-3.0/drivers/isdn/pcbit/callbacks.c -0d509e2efb94e97dd80706482de2219a linux-3.0/drivers/isdn/pcbit/Makefile -6614030b2aef364249118b7ecb856701 linux-3.0/drivers/isdn/pcbit/Kconfig -0fc9e1f65a0693dd3aff2158575e90e3 linux-3.0/drivers/isdn/mISDN/timerdev.c -6f96817e53218e9276d4e27223bb7c0e linux-3.0/drivers/isdn/mISDN/tei.c -f1e053c6e93983d290f82c69ad64a32b linux-3.0/drivers/isdn/mISDN/stack.c -3bd13b040a4db3c63580db006290590e linux-3.0/drivers/isdn/mISDN/socket.c -1cdd945d3d9bf418b57f6b1348fe05cd linux-3.0/drivers/isdn/mISDN/layer2.h -598dbc5f4e62e46d565f1b3a63848342 linux-3.0/drivers/isdn/mISDN/layer2.c -3d7f8e51558549ae1da27150a1699281 linux-3.0/drivers/isdn/mISDN/layer1.h -e8ddc62866198ac2db39d023e350fc84 linux-3.0/drivers/isdn/mISDN/layer1.c -f3ed92c8889e7164e640019b46e2e0fb linux-3.0/drivers/isdn/mISDN/l1oip_core.c -9fba0870b65fb256a2b7b64f372b6279 linux-3.0/drivers/isdn/mISDN/l1oip_codec.c -05d0621f6d9a9ed452a08d599a50af55 linux-3.0/drivers/isdn/mISDN/l1oip.h -116a99d2b665fd9fc8c740fb0839d928 linux-3.0/drivers/isdn/mISDN/hwchannel.c -7e5ee5ce53cc721a1117d151db47182b linux-3.0/drivers/isdn/mISDN/fsm.h -320372747dc0c8867b8584435631d486 linux-3.0/drivers/isdn/mISDN/fsm.c -a5c1114617ced707ae7900f5045fd37e linux-3.0/drivers/isdn/mISDN/dsp_tones.c -ebe7caa68808476ab9633b71433eb62b linux-3.0/drivers/isdn/mISDN/dsp_pipeline.c -3d6b8d495d9b3b33689d292ac4d8c12a linux-3.0/drivers/isdn/mISDN/dsp_hwec.h -b9d2c40cf65f03527e0d3c44f4b13460 linux-3.0/drivers/isdn/mISDN/dsp_hwec.c -801789581dc335af0a90431935100eb7 linux-3.0/drivers/isdn/mISDN/dsp_ecdis.h -a83c48a9a27a856749fcb18e980b8dbc linux-3.0/drivers/isdn/mISDN/dsp_dtmf.c -f38cf98e80d1113aef1714df7ba05186 linux-3.0/drivers/isdn/mISDN/dsp_core.c -15c8cf1a1298940d3452a80178135eb0 linux-3.0/drivers/isdn/mISDN/dsp_cmx.c -3af295f5fc56eed0d8f6c7ce84b719e9 linux-3.0/drivers/isdn/mISDN/dsp_blowfish.c -e489bcc7baf131a635cb8d0f4069dc60 linux-3.0/drivers/isdn/mISDN/dsp_biquad.h -90e708f3dce8c85128a37bf3acd209b9 linux-3.0/drivers/isdn/mISDN/dsp_audio.c -1158caedcfdddcc2ffc03bb74992fb63 linux-3.0/drivers/isdn/mISDN/dsp.h -d88d8e82a2f661632bcf843f338d3b19 linux-3.0/drivers/isdn/mISDN/core.h -241864e63447344d52f76b1b6866d2c4 linux-3.0/drivers/isdn/mISDN/core.c -c806f7d0d1efa52ce4adc3d61663934d linux-3.0/drivers/isdn/mISDN/clock.c -d16e3e3a230150ec5e27101a82a46827 linux-3.0/drivers/isdn/mISDN/Makefile -f43710bbef9053d741329c00293f47f0 linux-3.0/drivers/isdn/mISDN/Kconfig -7d6a80c55f378aff4c57c5e2cad39a75 linux-3.0/drivers/isdn/isdnloop/isdnloop.h -2f4ab043d74050ceab7befbbe9340ae5 linux-3.0/drivers/isdn/isdnloop/isdnloop.c -dd3988d63b8667ab2c79e9b8e2a99f58 linux-3.0/drivers/isdn/isdnloop/Makefile -842e748f335febd1bad09940555459a0 linux-3.0/drivers/isdn/icn/icn.h -264cfd8e6597fe16a40ca2e23ff81875 linux-3.0/drivers/isdn/icn/icn.c -ad0aef2161c145ae214b0a0813269e09 linux-3.0/drivers/isdn/icn/Makefile -f1e8767d0167aa07f7d1f503bf24b4d9 linux-3.0/drivers/isdn/icn/Kconfig -35601b52dabd6cfbbf54e5b19b72e616 linux-3.0/drivers/isdn/i4l/isdnhdlc.c -9c0906dd94e785a61285142a3a3ab83d linux-3.0/drivers/isdn/i4l/isdn_x25iface.h -9a59834ae0eb846b95883a3a70bed9dd linux-3.0/drivers/isdn/i4l/isdn_x25iface.c -8af49dd2544c08d1c4aaf0088b3f6548 linux-3.0/drivers/isdn/i4l/isdn_v110.h -7989d2bffefd01e673951a58ffcb0302 linux-3.0/drivers/isdn/i4l/isdn_v110.c -38a828b0773da2b6971129aea156ec80 linux-3.0/drivers/isdn/i4l/isdn_ttyfax.h -3ab96fa01ba56bc2ebed303d75961b59 linux-3.0/drivers/isdn/i4l/isdn_ttyfax.c -95a760b5e3df708abc9456b9c3518e38 linux-3.0/drivers/isdn/i4l/isdn_tty.h -06963c380a8df58c4c076a6b17f08d8c linux-3.0/drivers/isdn/i4l/isdn_tty.c -69f5fc7a047c85650d48589afd877e4d linux-3.0/drivers/isdn/i4l/isdn_ppp.h -4d360d8958d8bbfc3e328f5e65ac400b linux-3.0/drivers/isdn/i4l/isdn_ppp.c -305b63ba0c438d0446dfa3f275463377 linux-3.0/drivers/isdn/i4l/isdn_net.h -24c669ecb1622d3327b05c279a023a98 linux-3.0/drivers/isdn/i4l/isdn_net.c -deba43f5c99c44f23729932f21878884 linux-3.0/drivers/isdn/i4l/isdn_concap.h -3038c2f799f0e368eae22429b0a33cb9 linux-3.0/drivers/isdn/i4l/isdn_concap.c -878e4834afb832052a330efc06829fb3 linux-3.0/drivers/isdn/i4l/isdn_common.h -08079779a836fc82160df6ee4d10b485 linux-3.0/drivers/isdn/i4l/isdn_common.c -01f0cff0a0fa1ad6026908bc1047cf46 linux-3.0/drivers/isdn/i4l/isdn_bsdcomp.c -e74d0e4fc2c4cf8ba537d9a9a6ddd1d3 linux-3.0/drivers/isdn/i4l/isdn_audio.h -6dfa1d025004053abc7de980b93f68fc linux-3.0/drivers/isdn/i4l/isdn_audio.c -34291f5f3c43ba9d09a33ecfe91e5348 linux-3.0/drivers/isdn/i4l/Makefile -c3b276d721f24d5e3abd05d0d1f2b8d6 linux-3.0/drivers/isdn/i4l/Kconfig -cdc497a0fe1742dfebff06d8d59c70e1 linux-3.0/drivers/isdn/hysdn/ince1pc.h -58a3d08956d8095d1a652aa7da6e1d8c linux-3.0/drivers/isdn/hysdn/hysdn_sched.c -b985501d7202b8dfbd290977e0a428d1 linux-3.0/drivers/isdn/hysdn/hysdn_proclog.c -c6cf25636a18c9fa9d2c0d3bf4f9ffc5 linux-3.0/drivers/isdn/hysdn/hysdn_procconf.c -5ac90ceb3ad26ceaf57716d427f6126a linux-3.0/drivers/isdn/hysdn/hysdn_pof.h -ce0ea68260ac06e4d9849d3bad158e99 linux-3.0/drivers/isdn/hysdn/hysdn_net.c -1af83b8345967b2aa4dfd9eb1ef902be linux-3.0/drivers/isdn/hysdn/hysdn_init.c -a2fd1452c5f8029374a279afe258cb94 linux-3.0/drivers/isdn/hysdn/hysdn_defs.h -3163759c96228f9ce92309900f199b7f linux-3.0/drivers/isdn/hysdn/hysdn_boot.c -1c0f17846a2a2b69ee9d121571e69a2f linux-3.0/drivers/isdn/hysdn/hycapi.c -895f026380c19a010d3d50473e6d8b26 linux-3.0/drivers/isdn/hysdn/boardergo.h -de1127b0d49d13a430f2abdc151b3998 linux-3.0/drivers/isdn/hysdn/boardergo.c -49358daba88c6d3341ba6b7ef54f365a linux-3.0/drivers/isdn/hysdn/Makefile -7dfcdce17005a0955b1930372191c281 linux-3.0/drivers/isdn/hysdn/Kconfig -bb65938748c93f94591de62d58a3f08a linux-3.0/drivers/isdn/hisax/w6692.h -83eeb39c7431f00642672db884c801e2 linux-3.0/drivers/isdn/hisax/w6692.c -54398f53ed0b9ee07c7cfbb82b87f410 linux-3.0/drivers/isdn/hisax/telespci.c -d7949d3d6c30f4d10405100f830597cd linux-3.0/drivers/isdn/hisax/teles_cs.c -cfbe68478697d785855fdbd7b2a38f47 linux-3.0/drivers/isdn/hisax/teles3.c -24bb432ffabc3146f973c4063e43ca60 linux-3.0/drivers/isdn/hisax/teles0.c -b6b9665404679ee119899d6ef34b55d2 linux-3.0/drivers/isdn/hisax/teleint.c -7d93a871ccd641a20cf6d42b09dc3a55 linux-3.0/drivers/isdn/hisax/tei.c -b936538ab16f4baa0a0cd54a8455470f linux-3.0/drivers/isdn/hisax/st5481_usb.c -fe76782361979948c82370a686447f08 linux-3.0/drivers/isdn/hisax/st5481_init.c -7e49631892075e7973c5b466c9f8ed54 linux-3.0/drivers/isdn/hisax/st5481_d.c -18a09df1844a7dd6031eb70a5e75104d linux-3.0/drivers/isdn/hisax/st5481_b.c -5f5c10bf7b15ebd9357ab85f4cb85c6d linux-3.0/drivers/isdn/hisax/st5481.h -243bf924175e9fafa5c1ab3c037665de linux-3.0/drivers/isdn/hisax/sportster.c -a75df443c96a1eaaf47d91acffd078e7 linux-3.0/drivers/isdn/hisax/sedlbauer_cs.c -3d0942d66d98c4c12d0713bb5276cfa7 linux-3.0/drivers/isdn/hisax/sedlbauer.c -353e2251f586e70de5a1167cc0f3b1a2 linux-3.0/drivers/isdn/hisax/saphir.c -a3117392a2e462a05c68358f8415c7d3 linux-3.0/drivers/isdn/hisax/s0box.c -98d41cc2db7d037fe28402846a9d3839 linux-3.0/drivers/isdn/hisax/q931.c -4b8eb0a4de75370cac51bd91af134908 linux-3.0/drivers/isdn/hisax/nj_u.c -f80b33f4c4c743e6586b6be7c20ef906 linux-3.0/drivers/isdn/hisax/nj_s.c -856b12f4e1f8714b84bcbd1df171cd5d linux-3.0/drivers/isdn/hisax/niccy.c -ef02c64ee6558917a3aefb589976e9c0 linux-3.0/drivers/isdn/hisax/netjet.h -a430c36b3af17cc0c3706dc97b692eeb linux-3.0/drivers/isdn/hisax/netjet.c -fbe56615e55033d96b94c0fc0b06e5e4 linux-3.0/drivers/isdn/hisax/mic.c -8cb8358a54239ea4694863928c4c3417 linux-3.0/drivers/isdn/hisax/lmgr.c -96e00175d5e4db038a9b6f999a5d7f4c linux-3.0/drivers/isdn/hisax/l3ni1.h -3b9345462bd8851c645e67bc01a97af6 linux-3.0/drivers/isdn/hisax/l3ni1.c -c73027af38ea7bb572bf5097c35814ec linux-3.0/drivers/isdn/hisax/l3dss1.h -3c936f8cb968b425effb663e68690585 linux-3.0/drivers/isdn/hisax/l3dss1.c -543e250643712f96072aac0a510e8edf linux-3.0/drivers/isdn/hisax/l3_1tr6.h -7cde137ec82bff5dc2e716272c6f68a7 linux-3.0/drivers/isdn/hisax/l3_1tr6.c -0ffcc7d6684c7530ba6c7b1ef79d4a90 linux-3.0/drivers/isdn/hisax/jade_irq.c -dc0a4eea83746d5efa2a6b8dd64b5ce9 linux-3.0/drivers/isdn/hisax/jade.h -271cce9b70fd23f684733c8b72bd0659 linux-3.0/drivers/isdn/hisax/jade.c -459fce6c65d364cc7f5aa5d5228f249a linux-3.0/drivers/isdn/hisax/ix1_micro.c -a08e97f9012ec19bb25a9b55bed05f46 linux-3.0/drivers/isdn/hisax/isurf.c -a54bc0e1f537184856f7634ad7afddbc linux-3.0/drivers/isdn/hisax/isdnl3.h -c9c61d5ed745557e8cae5b086a32a047 linux-3.0/drivers/isdn/hisax/isdnl3.c -73f3a1ece81414bce98cb5c3ba333f00 linux-3.0/drivers/isdn/hisax/isdnl2.h -f78b3e05d51b10e80d569b11da84d702 linux-3.0/drivers/isdn/hisax/isdnl2.c -47a456496198892e74638bcd8f1a7d9f linux-3.0/drivers/isdn/hisax/isdnl1.h -4272486c56b501bc88c654d6da935286 linux-3.0/drivers/isdn/hisax/isdnl1.c -05815da63cb58eed5744fb05c4f57bbc linux-3.0/drivers/isdn/hisax/isar.h -e18addd7682f44ba3d015e25544dc3fa linux-3.0/drivers/isdn/hisax/isar.c -c0879a23fa9633723e88e4d82d5a8bfc linux-3.0/drivers/isdn/hisax/isac.h -c9e93d0ed76d6e459d4463f158df9554 linux-3.0/drivers/isdn/hisax/isac.c -41e3aef762140dae9060625fd2ebf4fc linux-3.0/drivers/isdn/hisax/ipacx.h -5d7f5c71f39fcb430b2296a0be4d6065 linux-3.0/drivers/isdn/hisax/ipacx.c -d9da837157b68e812d98af6e04637eac linux-3.0/drivers/isdn/hisax/ipac.h -17c993ef76d57132b9a0b9209f233e49 linux-3.0/drivers/isdn/hisax/icc.h -886faa2acaa17a4f52064b6f74b283a0 linux-3.0/drivers/isdn/hisax/icc.c -5291869408f9182ecb88e623145f08fd linux-3.0/drivers/isdn/hisax/hscx_irq.c -8578f0058da2f6e0ca3e8f1baad98d5b linux-3.0/drivers/isdn/hisax/hscx.h -aa42f9eee82d40b48be4205fda9ba0fc linux-3.0/drivers/isdn/hisax/hscx.c -8d8bb1b4a25478e1d07ff454f2edd682 linux-3.0/drivers/isdn/hisax/hisax_isac.h -f5a1c6494a95e53a4cf2154304381953 linux-3.0/drivers/isdn/hisax/hisax_isac.c -e0db53068a3356414da46301411d47e4 linux-3.0/drivers/isdn/hisax/hisax_if.h -0a444c38bc637fb9a7d81f7aebb6d263 linux-3.0/drivers/isdn/hisax/hisax_fcpcipnp.h -b7d27b3877bbcee021996e87965ef6e8 linux-3.0/drivers/isdn/hisax/hisax_fcpcipnp.c -682793f89737c32b810d5884d713cb77 linux-3.0/drivers/isdn/hisax/hisax_debug.h -2632e6350584f4d4ac2691eb5c8ca2c3 linux-3.0/drivers/isdn/hisax/hisax_cfg.h -e8927a271d42e8a4285e0339c5534d31 linux-3.0/drivers/isdn/hisax/hisax.h -d30b9a48ad266805da34cd0c3506afea linux-3.0/drivers/isdn/hisax/hfcscard.c -8e04cd31637f850427a48d91ddb5330f linux-3.0/drivers/isdn/hisax/hfc_usb.h -e90def43fb73714e9fc32789f41e6193 linux-3.0/drivers/isdn/hisax/hfc_usb.c -4862384639d6cc7f6c28e640860c039a linux-3.0/drivers/isdn/hisax/hfc_sx.h -2f2d181bdd1c1366b3eba10c4255ef6f linux-3.0/drivers/isdn/hisax/hfc_sx.c -ff43b9f977e9dc4ddb394d19c2a79a09 linux-3.0/drivers/isdn/hisax/hfc_pci.h -d1f7a01f2391c158cbc4ac89176ff7ce linux-3.0/drivers/isdn/hisax/hfc_pci.c -48e1442bf6a18a79d95eb5f586cb5d7a linux-3.0/drivers/isdn/hisax/hfc_2bs0.h -8cac1f97ecce8556f586f7a452d6248f linux-3.0/drivers/isdn/hisax/hfc_2bs0.c -a4bf19b29083f7818665f3a83e85ab60 linux-3.0/drivers/isdn/hisax/hfc_2bds0.h -282f4d2a8b2ac5cbdf5d90c5158d39bb linux-3.0/drivers/isdn/hisax/hfc_2bds0.c -7b91c647e103d14bf75ff19dcf32b466 linux-3.0/drivers/isdn/hisax/hfc4s8s_l1.h -2de0c09fb55138b30a8c8bf07bc3dfac linux-3.0/drivers/isdn/hisax/hfc4s8s_l1.c -b836dea085fde7a46ff3533898cee535 linux-3.0/drivers/isdn/hisax/gazel.c -4b93ba636654019a6a317b4bf2bc1120 linux-3.0/drivers/isdn/hisax/fsm.h -9c25ea1658e40d162de11e5957847a4b linux-3.0/drivers/isdn/hisax/fsm.c -6480fdfa1b3a8d80d7d9a8286b919581 linux-3.0/drivers/isdn/hisax/enternow_pci.c -5e0fde218400da5563f21a53c4389b94 linux-3.0/drivers/isdn/hisax/elsa_ser.c -20b4ca6aa200cc8f3ccd30c9a42ab4f3 linux-3.0/drivers/isdn/hisax/elsa_cs.c -54f588625d8d58b1bbdd121930c0034b linux-3.0/drivers/isdn/hisax/elsa.c -5e5b3423f0968a97805a6870040817e5 linux-3.0/drivers/isdn/hisax/diva.c -f6e3c6b0b17391ad9ac84979ad7c2b7b linux-3.0/drivers/isdn/hisax/config.c -0b39b704ceaa6c47ead1e648c37d41f2 linux-3.0/drivers/isdn/hisax/callc.c -ec71834851857f05aab6e507ba35f7ef linux-3.0/drivers/isdn/hisax/bkm_ax.h -31740003094b601cdba501812362067b linux-3.0/drivers/isdn/hisax/bkm_a8.c -47484437ff37778a34a8bf1078532fa4 linux-3.0/drivers/isdn/hisax/bkm_a4t.c -c6f6aaef326b0426f25986c4b10abb83 linux-3.0/drivers/isdn/hisax/avma1_cs.c -f1d599ba49e0767c13b3fc87055b8988 linux-3.0/drivers/isdn/hisax/avm_pci.c -96748c71b2c1b87edf80948206f97c3f linux-3.0/drivers/isdn/hisax/avm_a1p.c -8cd8778b92c6a1f671451216bcd76123 linux-3.0/drivers/isdn/hisax/avm_a1.c -8c3098c55b7e2f36849b5e5b1d64b1c3 linux-3.0/drivers/isdn/hisax/asuscom.c -f05097880e347f773cf699655ea5056a linux-3.0/drivers/isdn/hisax/arcofi.h -a536bb3623ae4eb0a0a99d2a12826f11 linux-3.0/drivers/isdn/hisax/arcofi.c -4f4ae6b107a5747d0b22a7248dc90853 linux-3.0/drivers/isdn/hisax/amd7930_fn.h -e7cdde63c1684749b51728a3bb9f1e66 linux-3.0/drivers/isdn/hisax/amd7930_fn.c -2592f4ad2c9e4c9cfe8b0af2ba3eb12c linux-3.0/drivers/isdn/hisax/Makefile -23f10310a9ae6c81b31705827b3874f7 linux-3.0/drivers/isdn/hisax/Kconfig -fef5256fa0a8742f743395bb3fcf29b2 linux-3.0/drivers/isdn/hardware/mISDN/w6692.h -1b19dc386bb700a705cea97ef0fa20d9 linux-3.0/drivers/isdn/hardware/mISDN/w6692.c -167234e8af7efb49613710c8682a3037 linux-3.0/drivers/isdn/hardware/mISDN/speedfax.c -5e0deb42c781e96934bfc09a97d47836 linux-3.0/drivers/isdn/hardware/mISDN/netjet.h -ef391fe4ff34a3eacd5fdfec3d4bee01 linux-3.0/drivers/isdn/hardware/mISDN/netjet.c -1437cc01a7c3d728370d4438c9b463b2 linux-3.0/drivers/isdn/hardware/mISDN/mISDNisar.c -4f5720f58f8b7b62aa0070991f5fcf57 linux-3.0/drivers/isdn/hardware/mISDN/mISDNipac.c -acb9205cf78725fb6ed6e7b27e0b672c linux-3.0/drivers/isdn/hardware/mISDN/mISDNinfineon.c -5f58cc7b1b87a5e9004d174c63ae5b7f linux-3.0/drivers/isdn/hardware/mISDN/isar.h -14fc3226b0d1b953d88067c4f312c389 linux-3.0/drivers/isdn/hardware/mISDN/ipac.h -247f33eda73b9bd5a316a23ed961da4b linux-3.0/drivers/isdn/hardware/mISDN/iohelper.h -13dd8055587b693b5b77fb867e670501 linux-3.0/drivers/isdn/hardware/mISDN/hfcsusb.h -9f161c51c021240a2a6f0b0a14576333 linux-3.0/drivers/isdn/hardware/mISDN/hfcsusb.c -269c0cc691b13055a8ecac3b0e37c330 linux-3.0/drivers/isdn/hardware/mISDN/hfcpci.c -0fe830aa978c5600f5f499f22ebf981b linux-3.0/drivers/isdn/hardware/mISDN/hfcmulti.c -be836ca22bdeb3039387a1e4030a6c71 linux-3.0/drivers/isdn/hardware/mISDN/hfc_pci.h -900c49c83bd0b31e49929750fd51e8cd linux-3.0/drivers/isdn/hardware/mISDN/hfc_multi_8xx.h -e7bdccd72f7cb74627109799d2e0cc8e linux-3.0/drivers/isdn/hardware/mISDN/hfc_multi.h -4ff3d3fcdf7f0cd8c167a6e5f2c545fe linux-3.0/drivers/isdn/hardware/mISDN/avmfritz.c -50ed35bffaae0ed5742e48bc1fe957d6 linux-3.0/drivers/isdn/hardware/mISDN/Makefile -a586a1d51fa78c1ccdb688ea32cfbb81 linux-3.0/drivers/isdn/hardware/mISDN/Kconfig -051dec479c63b38ddb14c2caf65b5675 linux-3.0/drivers/isdn/hardware/eicon/xdi_vers.h -39c4554d4df5a301198149c546074a6d linux-3.0/drivers/isdn/hardware/eicon/xdi_msg.h -710fb28d0a6402ca1183f9240a0e219f linux-3.0/drivers/isdn/hardware/eicon/xdi_adapter.h -3971494fdec02303b4d07bf58f8de623 linux-3.0/drivers/isdn/hardware/eicon/um_xdi.h -a2a633028530814c40dcc7b1ae509e24 linux-3.0/drivers/isdn/hardware/eicon/um_idi.h -c1b76f7b977fca1333acbe4df67dd20d linux-3.0/drivers/isdn/hardware/eicon/um_idi.c -c676c1f74f80ba5c4e5741937fad71ba linux-3.0/drivers/isdn/hardware/eicon/sdp_hdr.h -3a2f5204afadd5c618c153b8cc93037f linux-3.0/drivers/isdn/hardware/eicon/s_pri.c -6895e72215b757668f9a3b7e95b470d5 linux-3.0/drivers/isdn/hardware/eicon/s_bri.c -e9f4296244da2b2f2cdff72dbf64e324 linux-3.0/drivers/isdn/hardware/eicon/s_4bri.c -041f44f6dedf743b7a96f053b8824956 linux-3.0/drivers/isdn/hardware/eicon/pr_pc.h -27e36e576ca26fa05a4c32994a37799f linux-3.0/drivers/isdn/hardware/eicon/platform.h -0493a730093d29d7bcb488735e3562b8 linux-3.0/drivers/isdn/hardware/eicon/pkmaint.h -358c7dea17b45ed609d05bede2962c5b linux-3.0/drivers/isdn/hardware/eicon/pc_maint.h -d23dc89341ac3f28857a0288a7a82ed0 linux-3.0/drivers/isdn/hardware/eicon/pc_init.h -638e882263207da5cc57e74acd05fa71 linux-3.0/drivers/isdn/hardware/eicon/pc.h -f3d00e1ab11651b4fe58d083d43b0d4d linux-3.0/drivers/isdn/hardware/eicon/os_pri.h -22f00a9809915a31269422a3a39e2583 linux-3.0/drivers/isdn/hardware/eicon/os_pri.c -39a3e4542c5c83fa2f397e858ff7ed42 linux-3.0/drivers/isdn/hardware/eicon/os_capi.h -2d086b608e2a0ecac212b8767d12eeac linux-3.0/drivers/isdn/hardware/eicon/os_bri.h -1e9e6f6c199561f7777f49968cb22a76 linux-3.0/drivers/isdn/hardware/eicon/os_bri.c -98c74e07b1b5ace89884276bea0cde6e linux-3.0/drivers/isdn/hardware/eicon/os_4bri.h -68b32f6e17f425e12dbc71d9f3ca256d linux-3.0/drivers/isdn/hardware/eicon/os_4bri.c -bd08c9b3515e22bd64d50cded3668f8d linux-3.0/drivers/isdn/hardware/eicon/mntfunc.c -d81ddec8ba1aa5c9d3db1899945aebfe linux-3.0/drivers/isdn/hardware/eicon/mi_pc.h -45a1884e51b4b4dcb48daf0ea248b6c7 linux-3.0/drivers/isdn/hardware/eicon/message.c -e112c2fb3a3228f90e20ea951750bb8a linux-3.0/drivers/isdn/hardware/eicon/mdm_msg.h -883a6d13e12bfc5f1dcd6fb960dd447a linux-3.0/drivers/isdn/hardware/eicon/man_defs.h -c10ce852d105b76ce1d0c654b5c5f679 linux-3.0/drivers/isdn/hardware/eicon/maintidi.h -f8d18349382ad62e48909a553b7b18e2 linux-3.0/drivers/isdn/hardware/eicon/maintidi.c -52daaee98d8647f657d630200923f2d7 linux-3.0/drivers/isdn/hardware/eicon/kst_ifc.h -56380ecdd97087533c0c4add4d26dd37 linux-3.0/drivers/isdn/hardware/eicon/istream.c -ad7f2627c845196478774b3882eec551 linux-3.0/drivers/isdn/hardware/eicon/io.h -ee60be2defd6cb2bada81e325fec96f8 linux-3.0/drivers/isdn/hardware/eicon/io.c -2300792e8ebf295c0b29cced9c1349a6 linux-3.0/drivers/isdn/hardware/eicon/idifunc.c -294e2fe831275a4d3719490942681edf linux-3.0/drivers/isdn/hardware/eicon/helpers.h -c95817ad65f55f94cc63d5cada59c634 linux-3.0/drivers/isdn/hardware/eicon/entity.h -94a1ea740db74e51f4419182393e9219 linux-3.0/drivers/isdn/hardware/eicon/dsrv_pri.h -137e5c2cda98026563b89571cb1fcce0 linux-3.0/drivers/isdn/hardware/eicon/dsrv_bri.h -3f1de3a55a866e88408763455f4f541f linux-3.0/drivers/isdn/hardware/eicon/dsrv4bri.h -45a64d60eea468e65404f5733db69768 linux-3.0/drivers/isdn/hardware/eicon/dspdids.h -93e3d5d22db034d2756195b670fea03a linux-3.0/drivers/isdn/hardware/eicon/dsp_tst.h -cb2506ea36412144c3ad1131114daf9f linux-3.0/drivers/isdn/hardware/eicon/dsp_defs.h -02682d7bb2c9e8e2f57859581714525c linux-3.0/drivers/isdn/hardware/eicon/dqueue.h -cba05860d681e51af5715ad447fa1eb0 linux-3.0/drivers/isdn/hardware/eicon/dqueue.c -4ca4b256a61a84a80347d281426f0eef linux-3.0/drivers/isdn/hardware/eicon/divasync.h -2bbc8f2ae99b88b6969c6f9c829bf497 linux-3.0/drivers/isdn/hardware/eicon/divasproc.c -32546703a92e71010298f66f416af91c linux-3.0/drivers/isdn/hardware/eicon/divasmain.c -126f1946352c57126d01483d5aae0563 linux-3.0/drivers/isdn/hardware/eicon/divasi.c -2d73d86c72f85558f78821069f3fd8cc linux-3.0/drivers/isdn/hardware/eicon/divasfunc.c -636b1cedc7bc7b5c31e73b621e9605ce linux-3.0/drivers/isdn/hardware/eicon/divamnt.c -d29ebac0fc6019ece1b7926d6bbb4679 linux-3.0/drivers/isdn/hardware/eicon/divacapi.h -d1d3559cc070d095911a6e37b81a754a linux-3.0/drivers/isdn/hardware/eicon/diva_pci.h -cb51c9ef9f4458e803abd250b318a640 linux-3.0/drivers/isdn/hardware/eicon/diva_dma.h -5c7e0ae6273d242ade4e284d1ff5541e linux-3.0/drivers/isdn/hardware/eicon/diva_dma.c -666a4fa52f4827bcbca9c765e5d1e3bf linux-3.0/drivers/isdn/hardware/eicon/diva_didd.c -5aa39685893828bd9596f9468c38764a linux-3.0/drivers/isdn/hardware/eicon/diva.h -043a414b8ddb4e4dbb3a480f200e18d2 linux-3.0/drivers/isdn/hardware/eicon/diva.c -8d0c0277747514dcb469d6a44be4f357 linux-3.0/drivers/isdn/hardware/eicon/diddfunc.c -af5d2d16c23a92430a23e44ded719cdc linux-3.0/drivers/isdn/hardware/eicon/did_vers.h -f276e18f441317ec533273973c88b320 linux-3.0/drivers/isdn/hardware/eicon/di_defs.h -dcf70060f6c508cb0513f120182f6057 linux-3.0/drivers/isdn/hardware/eicon/di_dbg.h -432978bfc3010fb64a4ef73ff83486a8 linux-3.0/drivers/isdn/hardware/eicon/di.h -1152ae06abbb5de3d09a89375fa3d6bc linux-3.0/drivers/isdn/hardware/eicon/di.c -b3460f94947c43d5faba69d104af50d4 linux-3.0/drivers/isdn/hardware/eicon/dfifo.h -243207aec8b97df500c8cafdaef6232a linux-3.0/drivers/isdn/hardware/eicon/debuglib.h -4bfe36cd5cd6c876f8b3604b801fb8dc linux-3.0/drivers/isdn/hardware/eicon/debuglib.c -3051c3d614dacf77a4513635fa5bbf24 linux-3.0/drivers/isdn/hardware/eicon/debug_if.h -0507e04cc94e9f37b5fb1b51b9f051d4 linux-3.0/drivers/isdn/hardware/eicon/debug.c -8d6ea6f2fe8bbe9d82fff67af82228da linux-3.0/drivers/isdn/hardware/eicon/dadapter.h -701c5d15c6a91ffac623f26ba17d772c linux-3.0/drivers/isdn/hardware/eicon/dadapter.c -5b0cf464c2260dbbc293592ef7af20bd linux-3.0/drivers/isdn/hardware/eicon/cp_vers.h -60a25c51a2559ba022144f8a85563c9b linux-3.0/drivers/isdn/hardware/eicon/cardtype.h -59464ff3b8e03031927aa88437fb3587 linux-3.0/drivers/isdn/hardware/eicon/capimain.c -8791e8f6bf77423ceb5c982b52b2e6ef linux-3.0/drivers/isdn/hardware/eicon/capifunc.h -1764a3475b483e9be6a1450167be3cbd linux-3.0/drivers/isdn/hardware/eicon/capifunc.c -4a54c57a959961abc177e409d4a720a8 linux-3.0/drivers/isdn/hardware/eicon/capidtmf.h -ec9f93b8ae3dae82f208a3c3e7049ac2 linux-3.0/drivers/isdn/hardware/eicon/capidtmf.c -dd3b9e7a913431703abc72c5b72cfc42 linux-3.0/drivers/isdn/hardware/eicon/capi20.h -d38ed2f2f51172f6f7b878e1d4129937 linux-3.0/drivers/isdn/hardware/eicon/adapter.h -d474e90fd3de33aa3b388fc4ba5cb141 linux-3.0/drivers/isdn/hardware/eicon/Makefile -aa8e657ef409056cf400faa3739ba293 linux-3.0/drivers/isdn/hardware/eicon/Kconfig -9076cd7bd732d157e111395035a17da2 linux-3.0/drivers/isdn/hardware/avm/t1pci.c -d689bc37a1425e401a7a946b5d88b237 linux-3.0/drivers/isdn/hardware/avm/t1isa.c -f83cf40871e3f4246a0321ec70927c40 linux-3.0/drivers/isdn/hardware/avm/c4.c -c4045064433dd2f849faff80b32b7236 linux-3.0/drivers/isdn/hardware/avm/b1pcmcia.c -1c8f6c96679f215c05738bd35d73ecb6 linux-3.0/drivers/isdn/hardware/avm/b1pci.c -b1ae4b4b5e27e05c3efe07592d44b431 linux-3.0/drivers/isdn/hardware/avm/b1isa.c -0c3f92bf38247ea16ba5bd8cf2a4adfd linux-3.0/drivers/isdn/hardware/avm/b1dma.c -e44a3ec710b28cea14d6c69f220c2128 linux-3.0/drivers/isdn/hardware/avm/b1.c -3de34044cfd799910f270f09dfb1e20c linux-3.0/drivers/isdn/hardware/avm/avmcard.h -4ad651517853d32780bc5a94c13e6b65 linux-3.0/drivers/isdn/hardware/avm/avm_cs.c -d0fb9dd1f187abedadb026107c29d427 linux-3.0/drivers/isdn/hardware/avm/Makefile -1f4997f788e1897c04dc4c3a1148df45 linux-3.0/drivers/isdn/hardware/avm/Kconfig -b0b63a91bcd5dc9e243128a61bde6d07 linux-3.0/drivers/isdn/hardware/Makefile -38f6e5502488f12ca4b3bad2f1443ac4 linux-3.0/drivers/isdn/hardware/Kconfig -0a80a17b31c1ab7161b3f0ccfd765e8d linux-3.0/drivers/isdn/gigaset/usb-gigaset.c -2fc163e5503fdcc150bf368a7e434f32 linux-3.0/drivers/isdn/gigaset/ser-gigaset.c -0d49c93316a696afc2d49f4e5976df33 linux-3.0/drivers/isdn/gigaset/proc.c -c29e1052216e68e7f39a288004790f89 linux-3.0/drivers/isdn/gigaset/isocdata.c -f87f8ca095495e698a8805e3ab22c312 linux-3.0/drivers/isdn/gigaset/interface.c -3e7c91e8d209e4026beb8fd7976380f6 linux-3.0/drivers/isdn/gigaset/i4l.c -149035432a2a1829db9e4f3ee13eff08 linux-3.0/drivers/isdn/gigaset/gigaset.h -0da19fa7f4d743dbf9099127321e83fc linux-3.0/drivers/isdn/gigaset/ev-layer.c -d0a2338d117b42871a7a5ca2794f87f9 linux-3.0/drivers/isdn/gigaset/dummyll.c -857ffb7e530b867a2d623d5da44afc12 linux-3.0/drivers/isdn/gigaset/common.c -0b0c61f42b2c8b2b87a68d67fc02ad9b linux-3.0/drivers/isdn/gigaset/capi.c -3983f5f734c9ecaf9102d8ce2f8cdbd4 linux-3.0/drivers/isdn/gigaset/bas-gigaset.c -43afdd737c631fa9754ee1ee13ac7342 linux-3.0/drivers/isdn/gigaset/asyncdata.c -67a14346de1beef80debd6f8748b9ba8 linux-3.0/drivers/isdn/gigaset/Makefile -7c8330cafa01bc062e8c25f7a996d714 linux-3.0/drivers/isdn/gigaset/Kconfig -ae57c1d60b27a8cbddc64250690849d4 linux-3.0/drivers/isdn/divert/isdn_divert.h -de9db48e710ec3d1aaf3db19105ee9b7 linux-3.0/drivers/isdn/divert/isdn_divert.c -58cb1b0f7fccffffc21bd6d25966dbee linux-3.0/drivers/isdn/divert/divert_procfs.c -6717bd37955f00f45238b243b5b37e3a linux-3.0/drivers/isdn/divert/divert_init.c -def10eb89520fcd118fa870d8787d073 linux-3.0/drivers/isdn/divert/Makefile -32704640611a7389ba284b9d33da70c1 linux-3.0/drivers/isdn/capi/kcapi_proc.c -4d2c5374879d5e6d637e8b3d06c9e594 linux-3.0/drivers/isdn/capi/kcapi.h -fcc7abd7962125955266c38210b3b766 linux-3.0/drivers/isdn/capi/kcapi.c -b9f2dd60637ee3608c4a3bcb30356596 linux-3.0/drivers/isdn/capi/capiutil.c -8339b9b33c406aa8283b5b93131bd3f4 linux-3.0/drivers/isdn/capi/capilib.c -d997a1399dcc872f3d7e6a7ca9bf6f90 linux-3.0/drivers/isdn/capi/capidrv.h -729868874d8c6dd64f8cba6561afb982 linux-3.0/drivers/isdn/capi/capidrv.c -ebb38414cc9bf44d46546a768d73c765 linux-3.0/drivers/isdn/capi/capi.c -676962ee337c713fe7b01785d99cffe1 linux-3.0/drivers/isdn/capi/Makefile -7bde9f1ea4ea1f2a740ba23ec745c80b linux-3.0/drivers/isdn/capi/Kconfig -1e7fc2fa549aa4c9bda8ed983530e1db linux-3.0/drivers/isdn/act2000/module.c -8413945f7bab5f879914dfd31f79bfdd linux-3.0/drivers/isdn/act2000/capi.h -bd02d3ddf0c4f9845a4f0c7d72db0730 linux-3.0/drivers/isdn/act2000/capi.c -dd2c76a9c7ebc7ba8ec8f0b8bebf0be9 linux-3.0/drivers/isdn/act2000/act2000_isa.h -90f9dd6cb7e773a3839eaf410d248901 linux-3.0/drivers/isdn/act2000/act2000_isa.c -d9f612bd40b11adff05d0213106f20d7 linux-3.0/drivers/isdn/act2000/act2000.h -379580f380408130dffe39cc6b25dc69 linux-3.0/drivers/isdn/act2000/Makefile -62b31be22a9ef0867303bf6d5b4f86a7 linux-3.0/drivers/isdn/act2000/Kconfig -e47629bb1ae2c0bad9c97728c90f2d24 linux-3.0/drivers/isdn/Makefile -319ef04989bda9a7aa14c0f1ab88ed11 linux-3.0/drivers/isdn/Kconfig -daa583ad6161ae7e665fbc2fd53f2d34 linux-3.0/drivers/input/touchscreen/zylonite-wm97xx.c -ad241e5ca6dd23bb8910d2de79835376 linux-3.0/drivers/input/touchscreen/wm97xx-core.c -023e00e7ea369f4e5eda043ebdde9577 linux-3.0/drivers/input/touchscreen/wm9713.c -8b0c792fced3990f0771c002850c81e8 linux-3.0/drivers/input/touchscreen/wm9712.c -157c7266e78bf27683845113aebbacdc linux-3.0/drivers/input/touchscreen/wm9705.c -12083b07f9a85e831325cf2a8ae302c5 linux-3.0/drivers/input/touchscreen/wm831x-ts.c -709d52bc9c018cb15dcd14e955dffbb6 linux-3.0/drivers/input/touchscreen/wacom_w8001.c -30656d198fee8371a5efe91a0230d181 linux-3.0/drivers/input/touchscreen/w90p910_ts.c -92749c48d377f6b7769aebe8f4f2647a linux-3.0/drivers/input/touchscreen/usbtouchscreen.c -4266d1010dd3af25dcda089c89749b99 linux-3.0/drivers/input/touchscreen/ucb1400_ts.c -14f84ed229d7d1ce894ec48b98e5edce linux-3.0/drivers/input/touchscreen/tsc2007.c -2c7ce1a13f90bf83d5f10859fdaaac95 linux-3.0/drivers/input/touchscreen/tsc2005.c -2f359191a9a6668c7beb3354d23eb025 linux-3.0/drivers/input/touchscreen/tps6507x-ts.c -d4f927563d8a3ff364ed0af8a3e8783c linux-3.0/drivers/input/touchscreen/touchwin.c -d6b1455198c72443ab9e9c2908525650 linux-3.0/drivers/input/touchscreen/touchright.c -9208d09171f113255fca66b3d71c413c linux-3.0/drivers/input/touchscreen/touchit213.c -e51f834383410e2e56e8d70a8d44edb4 linux-3.0/drivers/input/touchscreen/tnetv107x-ts.c -005b89d40582e4c23651f31b3d7f26cb linux-3.0/drivers/input/touchscreen/stmpe-ts.c -343ef55aa7eb51f14a4459ca7e9fb8e1 linux-3.0/drivers/input/touchscreen/st1232.c -009949624555d7ef5416d00187584955 linux-3.0/drivers/input/touchscreen/s3c2410_ts.c -5397a5b3dec50d0b4376d204724ebf99 linux-3.0/drivers/input/touchscreen/penmount.c -33b13301553b7539cb53438f11bcccfe linux-3.0/drivers/input/touchscreen/pcap_ts.c -e50c7c65f98685f5a56b1e53366ef51f linux-3.0/drivers/input/touchscreen/mtouch.c -6a532386602f35b9d2894cd9ff39b959 linux-3.0/drivers/input/touchscreen/mk712.c -5a6a1c563d3ea1976b788e5cd116598e linux-3.0/drivers/input/touchscreen/migor_ts.c -896e0ae26bc449c81836734c2f466aab linux-3.0/drivers/input/touchscreen/mcs5000_ts.c -b4d4b66bfc74c0afda62b081d886c738 linux-3.0/drivers/input/touchscreen/mc13783_ts.c -79899e17e73aec26d3744fda1fa963ab linux-3.0/drivers/input/touchscreen/max11801_ts.c -dd1c7fd14b4e42a96350eed32cffa531 linux-3.0/drivers/input/touchscreen/mainstone-wm97xx.c -26f85f71769af39956a39f119e214ae4 linux-3.0/drivers/input/touchscreen/lpc32xx_ts.c -d337cd5ae1200c807153596840dbe3a2 linux-3.0/drivers/input/touchscreen/jornada720_ts.c -1f14bd8836b0e4d73019d4f8b4e70c60 linux-3.0/drivers/input/touchscreen/intel-mid-touch.c -ea273490a93d38220cb7f541dd25bdc4 linux-3.0/drivers/input/touchscreen/inexio.c -124fd9cb42e6bebd0a0d7fc5c5640a16 linux-3.0/drivers/input/touchscreen/htcpen.c -5ee1f31a60e730429f36d3cb7622c628 linux-3.0/drivers/input/touchscreen/hp680_ts_input.c -48e83a83fc3b17063cf42c0227944bea linux-3.0/drivers/input/touchscreen/hampshire.c -17b7419d85492ea70af987de79cb3a91 linux-3.0/drivers/input/touchscreen/h3600_ts_input.c -3e7975d2e31d0906bd82d7b245b566f2 linux-3.0/drivers/input/touchscreen/gunze.c -3bc122d559f0cced5d771c9bcfbf7705 linux-3.0/drivers/input/touchscreen/fujitsu_ts.c -b89ad0696e66fa4125a1e058185ad227 linux-3.0/drivers/input/touchscreen/elo.c -162ba25dd1cd0317a591673c4604f4cc linux-3.0/drivers/input/touchscreen/eeti_ts.c -740345a9c71e08da30fd9a6d76df70a9 linux-3.0/drivers/input/touchscreen/dynapro.c -d094ad898bae933f18f611694e128034 linux-3.0/drivers/input/touchscreen/da9034-ts.c -2a4cab73ede75dd3b52b3a1d2d1a11ec linux-3.0/drivers/input/touchscreen/cy8ctmg110_ts.c -50b99a152ef6e43147f02fbfeebbf12d linux-3.0/drivers/input/touchscreen/bu21013_ts.c -2f767d200cba408d5392a6fe04f4dc6a linux-3.0/drivers/input/touchscreen/atmel_tsadcc.c -6741f2d554731b2c44471cabc108fb4b linux-3.0/drivers/input/touchscreen/atmel_mxt_ts.c -c196200d2eae10f51b204c4e91993f1a linux-3.0/drivers/input/touchscreen/atmel-wm97xx.c -2f449be87698f1374e6e43f01ff74795 linux-3.0/drivers/input/touchscreen/ads7846.c -f425af59bbd1ab4c31efc298c70334b2 linux-3.0/drivers/input/touchscreen/ad7879.h -ebe51c35fe91d26662cff14746510736 linux-3.0/drivers/input/touchscreen/ad7879.c -44a0c5333b897bf46f3e8f0bd59eda39 linux-3.0/drivers/input/touchscreen/ad7879-spi.c -b1ff30b2ecd9fa943cfe92ecde580d1a linux-3.0/drivers/input/touchscreen/ad7879-i2c.c -111be590b9e5b889b782dee7569e1c1c linux-3.0/drivers/input/touchscreen/ad7877.c -a894ba3271914aef50b1b2e9f8fb94bc linux-3.0/drivers/input/touchscreen/Makefile -9ffd426352809ef363b9a3452c813824 linux-3.0/drivers/input/touchscreen/Kconfig -d583862df287847ee97dff7881765a82 linux-3.0/drivers/input/touchscreen/88pm860x-ts.c -8138111af31c2c6ad05198b87057a186 linux-3.0/drivers/input/tablet/wacom_wac.h -1bca9b8db83c6e1fa15ba6eb8337f42f linux-3.0/drivers/input/tablet/wacom_wac.c -f29ab70f3c6b5dea7d509f3b5238cecb linux-3.0/drivers/input/tablet/wacom_sys.c -7bb4f9be7347d065311e3e8941504fcc linux-3.0/drivers/input/tablet/wacom.h -5868dae86c5455b8dbcce067fe002b7b linux-3.0/drivers/input/tablet/kbtab.c -995ab7e310083b153223cb2ba7e7ccd9 linux-3.0/drivers/input/tablet/hanwang.c -549ec92369c6c38a4dcd0a66640afcd4 linux-3.0/drivers/input/tablet/gtco.c -3b7777dfcea6b072ed50f3dfed84bcbb linux-3.0/drivers/input/tablet/aiptek.c -49180fbc7392f6b5984b539de8a83141 linux-3.0/drivers/input/tablet/acecad.c -773bcb8625dd1e586e43fdd6c86dd1f5 linux-3.0/drivers/input/tablet/Makefile -125f5d5d21e9cded48c2783d4391ce66 linux-3.0/drivers/input/tablet/Kconfig -b37938566f6a040e32045aeaf626b5eb linux-3.0/drivers/input/sparse-keymap.c -587c97cb6ea46f0a665fcd32f588686c linux-3.0/drivers/input/serio/xilinx_ps2.c -81d9f2b4a959d66964e6955bc2fecebf linux-3.0/drivers/input/serio/serport.c -c1b7f2ef7101f842b317b911d07d55f8 linux-3.0/drivers/input/serio/serio_raw.c -617d4841c2f647d67cea149eaf8d5d5e linux-3.0/drivers/input/serio/serio.c -fcb4bd486447a73e00055dd1768f3092 linux-3.0/drivers/input/serio/sa1111ps2.c -f0cacbb7c27b823bd655b0df1361f73e linux-3.0/drivers/input/serio/rpckbd.c -f95891d4bb2fdb094bf7e894791f931a linux-3.0/drivers/input/serio/q40kbd.c -068358e91fc57bfa1ce5e0e52de6e735 linux-3.0/drivers/input/serio/ps2mult.c -c221362c2cc4ca168385563715c72253 linux-3.0/drivers/input/serio/pcips2.c -789de13a2cc0409be45819d0892d6333 linux-3.0/drivers/input/serio/parkbd.c -17cffd69f9d3a3fb588006a3033cab33 linux-3.0/drivers/input/serio/maceps2.c -6f64155c2b890a3a348eb7f2f34698c8 linux-3.0/drivers/input/serio/libps2.c -43b844f3cfcebf0975703c8e7fd2ca11 linux-3.0/drivers/input/serio/i8042.h -08d46cddac545a6a37288649eba2d944 linux-3.0/drivers/input/serio/i8042.c -4e9931f8cf3ccf7eede9565fe4caeeb8 linux-3.0/drivers/input/serio/i8042-x86ia64io.h -1c60ad8a10fe19290b7a79f8779bb48b linux-3.0/drivers/input/serio/i8042-unicore32io.h -733f8ebe122f8ba421bc8de93b407f31 linux-3.0/drivers/input/serio/i8042-sparcio.h -f00558785a1adf1c6cb7c78c340b0406 linux-3.0/drivers/input/serio/i8042-snirm.h -73bd319a6a9a2304dab983713871dd69 linux-3.0/drivers/input/serio/i8042-ppcio.h -6ef577524d1218a45d9e1e974452e4d7 linux-3.0/drivers/input/serio/i8042-jazzio.h -45bfdaf06b5abf7253772c9b6980bef6 linux-3.0/drivers/input/serio/i8042-ip22io.h -fa554fe7c0b9999b1eef440f62e8d4e5 linux-3.0/drivers/input/serio/i8042-io.h -db49c77e230a79dbac65714fe8f04180 linux-3.0/drivers/input/serio/hp_sdc_mlc.c -42912984751d0aa8b8c5e2c6c1dd84de linux-3.0/drivers/input/serio/hp_sdc.c -e417b924d3b45441ec27640a29748d77 linux-3.0/drivers/input/serio/hil_mlc.c -a0096a99698e1627bc130d1f89e4eda9 linux-3.0/drivers/input/serio/gscps2.c -e251610431a74e79eeb4433fef083579 linux-3.0/drivers/input/serio/ct82c710.c -cd337ee51d12c7f2bf4986055275a67a linux-3.0/drivers/input/serio/at32psif.c -0708b241f1be6a6bd3d7a3f8d06d0612 linux-3.0/drivers/input/serio/ams_delta_serio.c -c29c2442a73cf015e523f6a3c2c2828c linux-3.0/drivers/input/serio/ambakmi.c -a803341379b31f5f0357a1eb7f444f6d linux-3.0/drivers/input/serio/altera_ps2.c -104a0e6a360bbe005065cd03b04fd903 linux-3.0/drivers/input/serio/Makefile -089f597c03605db01e9762a58af9d0a8 linux-3.0/drivers/input/serio/Kconfig -99a32ce02ba3edc0efabcd4fefeb660c linux-3.0/drivers/input/mousedev.c -ef5149407ba67ddd00c9f85ef29c7835 linux-3.0/drivers/input/mouse/vsxxxaa.c -6cbe5fba15ede30a427037f12f98e797 linux-3.0/drivers/input/mouse/trackpoint.h -51ba766b50bd0a3479537a1268aa251a linux-3.0/drivers/input/mouse/trackpoint.c -4e8369f2ba48b1e9d730a7ae02ee6ea3 linux-3.0/drivers/input/mouse/touchkit_ps2.h -5d397529bb908baef0e7c73611860028 linux-3.0/drivers/input/mouse/touchkit_ps2.c -48eb55a4b9dda218542d776791139576 linux-3.0/drivers/input/mouse/synaptics_i2c.c -6cb700ef89a704b91dd945ace8d0259f linux-3.0/drivers/input/mouse/synaptics.h -1f8980763643b1e7d990f1904ba22f6d linux-3.0/drivers/input/mouse/synaptics.c -5ebe42a7a44b3b807ea3a3ad9efa7190 linux-3.0/drivers/input/mouse/sermouse.c -221d5ab02c5d06f887f061be5d6ade5e linux-3.0/drivers/input/mouse/sentelic.h -5edf8dbedf081e71bad825a67f8d7c10 linux-3.0/drivers/input/mouse/sentelic.c -5fd228834102a21b86b96889374c8dab linux-3.0/drivers/input/mouse/rpcmouse.c -0e6d5de0da4051729b15ba12ccd5595f linux-3.0/drivers/input/mouse/pxa930_trkball.c -5febf643e5dbbf7dd3f02171fce086ab linux-3.0/drivers/input/mouse/psmouse.h -31168e04c85b425a654fb0f4770981ef linux-3.0/drivers/input/mouse/psmouse-base.c -b22f81fe1d8f13650cf1a9a823bfd269 linux-3.0/drivers/input/mouse/pc110pad.c -8857d175061bce73ecbf5827e0c76e1e linux-3.0/drivers/input/mouse/maplemouse.c -555c4a3dedc70a1452c9c1c50e73ae42 linux-3.0/drivers/input/mouse/logips2pp.h -9c80654c943d8461229c4f320d260a99 linux-3.0/drivers/input/mouse/logips2pp.c -79d7e11602768b24b6d5220f23e66d19 linux-3.0/drivers/input/mouse/logibm.c -7900e31c8240dd959fbf10425c8007f0 linux-3.0/drivers/input/mouse/lifebook.h -a670357b31950a430c5573f8575e4269 linux-3.0/drivers/input/mouse/lifebook.c -e171aba2c93ca5209089f38ee266a02e linux-3.0/drivers/input/mouse/inport.c -c52e9dd680782ee12af7af67fd4d9d34 linux-3.0/drivers/input/mouse/hgpk.h -23de70c450b95e712feab90eb0fe3bc5 linux-3.0/drivers/input/mouse/hgpk.c -73304e15cba5b75d447eaccb63dcccfd linux-3.0/drivers/input/mouse/gpio_mouse.c -04c6d12062a0cd85e58e6a3e3a2c3ee8 linux-3.0/drivers/input/mouse/elantech.h -4bbee4b54445d8202532c9600775fa48 linux-3.0/drivers/input/mouse/elantech.c -02c13d1d0fa881439caa0fcb508c39af linux-3.0/drivers/input/mouse/bcm5974.c -93b16151ef4113bab3f383bef07a5e21 linux-3.0/drivers/input/mouse/atarimouse.c -fa3790cbd7c447ccca481850a7ba98c6 linux-3.0/drivers/input/mouse/appletouch.c -7a006870ac877620bec608c3e40af8f3 linux-3.0/drivers/input/mouse/amimouse.c -b3777532f1fba1db3766391f111f13f5 linux-3.0/drivers/input/mouse/alps.h -8e255d5d074f7fefea3805cb053be165 linux-3.0/drivers/input/mouse/alps.c -bd6c40b445f960db419dd0ca67db8737 linux-3.0/drivers/input/mouse/Makefile -4e8313aa59917bad083508b1e0dcfa32 linux-3.0/drivers/input/mouse/Kconfig -ccdb498d9474f76fc4adddc71b09592f linux-3.0/drivers/input/misc/yealink.h -4755eb65417d35a03f484f6f313e5211 linux-3.0/drivers/input/misc/yealink.c -399636301d6d681c844324e4d2c9e924 linux-3.0/drivers/input/misc/xen-kbdfront.c -d31f0dd5732d86acf431dd1da407ff2f linux-3.0/drivers/input/misc/wm831x-on.c -1985d2b9cfd4105ace4c010dca17a4ef linux-3.0/drivers/input/misc/wistron_btns.c -58284f21254ae167eba4cd2ddc1e3d94 linux-3.0/drivers/input/misc/uinput.c -dacc56fa2516423cde7dbfbd789e0584 linux-3.0/drivers/input/misc/twl4030-vibra.c -1bb1650fac203438111656e8aa119862 linux-3.0/drivers/input/misc/twl4030-pwrbutton.c -06ee3acf39f051814d6d0121c0b86c39 linux-3.0/drivers/input/misc/sparcspkr.c -df970056acdaa09ad668c8e7d62c3f30 linux-3.0/drivers/input/misc/sgi_btns.c -51b6dc2df95daf18481632ade7238020 linux-3.0/drivers/input/misc/rotary_encoder.c -2a2d65d6f3649f9b15b786b5871ffc5a linux-3.0/drivers/input/misc/rb532_button.c -9be1b6ac66363b87b9b7ea05ad0b4bd1 linux-3.0/drivers/input/misc/pwm-beeper.c -ae5e633c676ec335e33f5930f8c9abfa linux-3.0/drivers/input/misc/powermate.c -9b9c961f399e9958a4870dbf35e99d80 linux-3.0/drivers/input/misc/pmic8xxx-pwrkey.c -9a7392bd91881fd26665c7ac2d2bf189 linux-3.0/drivers/input/misc/pcspkr.c -2fcf89e69016b6faf4c81f77f55a0cf7 linux-3.0/drivers/input/misc/pcf8574_keypad.c -d2aee73542728587d14502e3b2fa0057 linux-3.0/drivers/input/misc/pcf50633-input.c -46ccfd5ee38892227eaf46760e215fa5 linux-3.0/drivers/input/misc/pcap_keys.c -45a1df1b5f6d07ed0762fc254d788dc5 linux-3.0/drivers/input/misc/max8925_onkey.c -faf09f66ebe187f9b1b1e2871268cd61 linux-3.0/drivers/input/misc/m68kspkr.c -e75f482b337ee7e742ebc8a22cb72b3b linux-3.0/drivers/input/misc/keyspan_remote.c -bde586b2b04509a7aee822863919e7a7 linux-3.0/drivers/input/misc/ixp4xx-beeper.c -8c95167c8c693dba50518fb059b6a25e linux-3.0/drivers/input/misc/hp_sdc_rtc.c -d36c61463d6c285228645ec6de5fef19 linux-3.0/drivers/input/misc/dm355evm_keys.c -88cc3ae1916a0a2ab1a981d20626b094 linux-3.0/drivers/input/misc/cobalt_btns.c -e26f353a47ac7d0b8d7041ce45766d02 linux-3.0/drivers/input/misc/cma3000_d0x_i2c.c -c74888b89882af3cb948dfcb4fc9d3e2 linux-3.0/drivers/input/misc/cma3000_d0x.h -ccaa5ca5be66b7ce507a7ae7a3df5782 linux-3.0/drivers/input/misc/cma3000_d0x.c -7539810cc285022554f98bfc6a88942d linux-3.0/drivers/input/misc/cm109.c -cf0bc03c66c88c1fa15e80f42469ecbf linux-3.0/drivers/input/misc/bfin_rotary.c -15a68d34e4950e56049be2c920b08ea5 linux-3.0/drivers/input/misc/atlas_btns.c -4c520b11a7d63b13dc3f9f4ef671b323 linux-3.0/drivers/input/misc/ati_remote2.c -dbc1c79c4b05b9ac676920aed1a41240 linux-3.0/drivers/input/misc/ati_remote.c -2bf538a7e7db9fba58254b20f8bc1e73 linux-3.0/drivers/input/misc/apanel.c -de36ebb380f2146380c941fb25da35aa linux-3.0/drivers/input/misc/adxl34x.h -321d843ab48b9e7e4e8ed1b05713d7d8 linux-3.0/drivers/input/misc/adxl34x.c -c1ff682fd126106d4efc2bba54276c91 linux-3.0/drivers/input/misc/adxl34x-spi.c -ee0a7badb3cd5abf33e908bd3cd5efd1 linux-3.0/drivers/input/misc/adxl34x-i2c.c -e0d0211ee08e6b94c2bad5ef097b9d8b linux-3.0/drivers/input/misc/ad714x.h -9fe83172e693b02f38448e0892e43aa3 linux-3.0/drivers/input/misc/ad714x.c -28b9a18e4c68d94fabbb118d4aa080b2 linux-3.0/drivers/input/misc/ad714x-spi.c -b9d07fb2acfb55927e4cecdf1561d051 linux-3.0/drivers/input/misc/ad714x-i2c.c -b00acdcf154fea1a4b544cd62f32196f linux-3.0/drivers/input/misc/ab8500-ponkey.c -da8abd202ad21a68c6559c0921db2330 linux-3.0/drivers/input/misc/Makefile -c2e243548bacfa9a77a0d642944d4a8e linux-3.0/drivers/input/misc/Kconfig -c5bcde6cf1abdc8b7d031c7fcda2e1e1 linux-3.0/drivers/input/misc/88pm860x_onkey.c -ab2a8e6d2e95fac4e2a7a88f35445585 linux-3.0/drivers/input/keyboard/xtkbd.c -44299c5be091a5f55e8054db6fc0afee linux-3.0/drivers/input/keyboard/w90p910_keypad.c -0b68ed45b2a4c5806a72d6ae7e3dab8c linux-3.0/drivers/input/keyboard/twl4030_keypad.c -83111e9fc6b8c201d138c604473a379d linux-3.0/drivers/input/keyboard/tnetv107x-keypad.c -8853309f00cad680228b492a1fa1510d linux-3.0/drivers/input/keyboard/tegra-kbc.c -59932c1ade0a729a38dd2f3f3f97c1bf linux-3.0/drivers/input/keyboard/tca6416-keypad.c -ee40682a3396568815d82bd425093e95 linux-3.0/drivers/input/keyboard/tc3589x-keypad.c -9e1aa15a1ee0ded3cd20bfdbef63bf96 linux-3.0/drivers/input/keyboard/sunkbd.c -97fc0acd9b0142acb2827a0f8d270414 linux-3.0/drivers/input/keyboard/stowaway.c -6bc4cea568897705391628679284be3c linux-3.0/drivers/input/keyboard/stmpe-keypad.c -eda8ff93acc19ad6d38fc871e76b02eb linux-3.0/drivers/input/keyboard/spear-keyboard.c -aa6d67f2c01658db4e84de8b15e04a42 linux-3.0/drivers/input/keyboard/sh_keysc.c -781f9bc64bb3fc32d10c008cdb2f7934 linux-3.0/drivers/input/keyboard/samsung-keypad.c -7064c1b5e0fd62bf7cbd2e2b81091003 linux-3.0/drivers/input/keyboard/qt2160.c -71b355e9c8d9ad99cdace04be66325d2 linux-3.0/drivers/input/keyboard/qt1070.c -0dbf98461f48446d8111f62a3b1b30d4 linux-3.0/drivers/input/keyboard/pxa930_rotary.c -8f48f02c20c4fbcac427b19673ffa9c9 linux-3.0/drivers/input/keyboard/pxa27x_keypad.c -caa8ece9929f7152b691a565bd533113 linux-3.0/drivers/input/keyboard/pmic8xxx-keypad.c -c7bd9482fdfd84ceeb3101a1b66feab5 linux-3.0/drivers/input/keyboard/opencores-kbd.c -994e1b1b9225cae6f056e2fa5fac807a linux-3.0/drivers/input/keyboard/omap4-keypad.c -191d918ad13610902170af952647386c linux-3.0/drivers/input/keyboard/omap-keypad.c -09c36b4c06f3f33edcc45fc11c864442 linux-3.0/drivers/input/keyboard/nomadik-ske-keypad.c -d63c7e84de772e207ebde6e8375cacff linux-3.0/drivers/input/keyboard/newtonkbd.c -ce4f723c422a60cf034ef527ab59c7f0 linux-3.0/drivers/input/keyboard/mpr121_touchkey.c -317686011efcb35c5ec33b9edb28967c linux-3.0/drivers/input/keyboard/mcs_touchkey.c -6affe44480730d1408f6fd0a6a3e7be8 linux-3.0/drivers/input/keyboard/max7359_keypad.c -8ed2f2a88a2e95e96ed2b4049b695d3a linux-3.0/drivers/input/keyboard/matrix_keypad.c -1efb846bb3a21a81e2dd13562ceef611 linux-3.0/drivers/input/keyboard/maple_keyb.c -01abe7bbc4e3ae34817ed5257839b06b linux-3.0/drivers/input/keyboard/locomokbd.c -d4d0b9203a915f4bc743cf60aa0d8947 linux-3.0/drivers/input/keyboard/lm8323.c -893de04bf1ddbdbc2266cf124dab48f1 linux-3.0/drivers/input/keyboard/lkkbd.c -3acb8e7111a27cbb479e3537638e3a26 linux-3.0/drivers/input/keyboard/jornada720_kbd.c -6939a73146046c7bed5791dbf9966892 linux-3.0/drivers/input/keyboard/jornada680_kbd.c -b1d54be368c9982f3a3f275ce4b83872 linux-3.0/drivers/input/keyboard/imx_keypad.c -3903c3697768332a040e4e9c7ba8af19 linux-3.0/drivers/input/keyboard/hpps2atkbd.h -6713c284ee628c4979041c0077b71781 linux-3.0/drivers/input/keyboard/hilkbd.c -d46567df123e296ddca0195dc9797a26 linux-3.0/drivers/input/keyboard/hil_kbd.c -0ad2e5660a790b202e0ff48888acdcdb linux-3.0/drivers/input/keyboard/gpio_keys_polled.c -eb0d524ef6dfa8ea6b212191809535cb linux-3.0/drivers/input/keyboard/gpio_keys.c -014455af412a61ca227e9612254c4fb1 linux-3.0/drivers/input/keyboard/ep93xx_keypad.c -364ed447d7addca7fab80676f025cee1 linux-3.0/drivers/input/keyboard/davinci_keyscan.c -731736d4b41a3bd288edbd7f1b680bcb linux-3.0/drivers/input/keyboard/bf54x-keys.c -3104f9d2af8019ca0382739b7d0993ba linux-3.0/drivers/input/keyboard/atkbd.c -c5bbc741db707504154e91b6e0daf7ae linux-3.0/drivers/input/keyboard/atakbd.c -e2dd8f7724728bbb0ec19f07890ad949 linux-3.0/drivers/input/keyboard/amikbd.c -d4e8ed3be9b68fae72e40e47a68223d0 linux-3.0/drivers/input/keyboard/adp5589-keys.c -04aa3ad395f6fc9d9f24d8d8d7fd342f linux-3.0/drivers/input/keyboard/adp5588-keys.c -4d1a2dd165b8a1081ee3b73f90d772f1 linux-3.0/drivers/input/keyboard/adp5520-keys.c -fbaa1262f6f6f5846ca88ca7f0e00222 linux-3.0/drivers/input/keyboard/Makefile -ec80682e7908c5aea403a32b18c2dfcf linux-3.0/drivers/input/keyboard/Kconfig -cd2289cc3304ba735776edb361a22cc7 linux-3.0/drivers/input/joystick/zhenhua.c -f2bf867c55fb6584370ba238f2691bfa linux-3.0/drivers/input/joystick/xpad.c -b81c16c20789a923ebb6c0528cd2afa7 linux-3.0/drivers/input/joystick/warrior.c -e263bbba30e9acc13f0af0182fc9f8cd linux-3.0/drivers/input/joystick/walkera0701.c -ec5ec2712098ed0574d04014938fa155 linux-3.0/drivers/input/joystick/twidjoy.c -741419dd53ebe2c3545ba65222c1031b linux-3.0/drivers/input/joystick/turbografx.c -cfd9f1ab8b4fe421a08d06a8043695c9 linux-3.0/drivers/input/joystick/tmdc.c -005ec83420eec741dbd4917ae3f4328a linux-3.0/drivers/input/joystick/stinger.c -cd1e126e05320151de5508bf42739408 linux-3.0/drivers/input/joystick/spaceorb.c -f237aa05e5e7f6b5123222f9fb0351fa linux-3.0/drivers/input/joystick/spaceball.c -0830d0be9ce299a395d021bf1eb1e642 linux-3.0/drivers/input/joystick/sidewinder.c -de2b4c6ee8edef0ed15cc9ff3ae857e6 linux-3.0/drivers/input/joystick/maplecontrol.c -f0b636e4c34fb51021176b1b866c911a linux-3.0/drivers/input/joystick/magellan.c -c5e98792c42d5654a8c164109670c910 linux-3.0/drivers/input/joystick/joydump.c -558940ac22a3c671e14f358ab56f7b5f linux-3.0/drivers/input/joystick/interact.c -8e3010e149d5ae96467989e6ac142b5a linux-3.0/drivers/input/joystick/iforce/iforce.h -66336d5894c25ffa7800b61768b39aa6 linux-3.0/drivers/input/joystick/iforce/iforce-usb.c -54f8f46af367508ef582c610f9bb03a5 linux-3.0/drivers/input/joystick/iforce/iforce-serio.c -b198046777fd5cc471484d5bc1259f0d linux-3.0/drivers/input/joystick/iforce/iforce-packets.c -1e9885a91caf1b5c14e6c19687d2a1f1 linux-3.0/drivers/input/joystick/iforce/iforce-main.c -67e038a10fd08b1a5f879b42bf455561 linux-3.0/drivers/input/joystick/iforce/iforce-ff.c -f5995a543497808db9773b0841aecd6b linux-3.0/drivers/input/joystick/iforce/Makefile -a7dd1706f7aa2a0a71bd6f7ae782ff07 linux-3.0/drivers/input/joystick/iforce/Kconfig -6dbbce9ee82f5bb2f262a4105a03bff0 linux-3.0/drivers/input/joystick/guillemot.c -ad7548ab89b089aad9a52dda56cc15a3 linux-3.0/drivers/input/joystick/grip_mp.c -c5554538b7497c073dc6980a60f0c07d linux-3.0/drivers/input/joystick/grip.c -29f424223103c9df7d32403acdc824f2 linux-3.0/drivers/input/joystick/gf2k.c -3ea09d61e95f07e76eb7c085287475cf linux-3.0/drivers/input/joystick/gamecon.c -8147dde292c87cd2c8b4142f4d723097 linux-3.0/drivers/input/joystick/db9.c -e18081324df922a1078cc7a82ce2bf64 linux-3.0/drivers/input/joystick/cobra.c -3848670f301ce881310feb9394d3ad8a linux-3.0/drivers/input/joystick/as5011.c -ae548ceed95f5ac6b5470724f401a483 linux-3.0/drivers/input/joystick/analog.c -1ac872a645cf09704e41b9f1cbd67f57 linux-3.0/drivers/input/joystick/amijoy.c -d123db8dcf1332d04bac75e38a0e78fd linux-3.0/drivers/input/joystick/adi.c -3ac22bcf5922a73cfe57e6c21f6aa12c linux-3.0/drivers/input/joystick/a3d.c -30b581a24a802bc450e41d60251fe741 linux-3.0/drivers/input/joystick/Makefile -c1f61b567456cc500056da3c16dfebdd linux-3.0/drivers/input/joystick/Kconfig -4a20ac17601a80b298f5bc292d8d46f5 linux-3.0/drivers/input/joydev.c -f2a368cd6922aa604232aa52cd884e38 linux-3.0/drivers/input/input.c -a820264e6cc833a63efdc5d2d15a465c linux-3.0/drivers/input/input-polldev.c -068a34c54fd5fc6c465ac8660a0467a8 linux-3.0/drivers/input/input-mt.c -d8fc1dc4c1ec8bdd76ecd55805c90713 linux-3.0/drivers/input/input-compat.h -85fb71cc00422cbce838fc8667e686f0 linux-3.0/drivers/input/input-compat.c -4f1aad0a6190c75629a09a85b9213848 linux-3.0/drivers/input/gameport/ns558.c -91e6311149b8fba58cd6048b068fbac1 linux-3.0/drivers/input/gameport/lightning.c -42bfdfeec42309d819c6591becd5d21d linux-3.0/drivers/input/gameport/gameport.c -db9680c30d291f291a1dc7354f203c55 linux-3.0/drivers/input/gameport/fm801-gp.c -e9c51efa0a3f5ba43f57030fd07e547d linux-3.0/drivers/input/gameport/emu10k1-gp.c -89238fbbcceb395b9eaafa5a1452be3a linux-3.0/drivers/input/gameport/Makefile -ee2769db723afc6da0971556f67d5cfb linux-3.0/drivers/input/gameport/Kconfig -35cd6f7cbc2e07a51cbfe51ada237549 linux-3.0/drivers/input/fixp-arith.h -dc856a42488cf9d5abff434ede09d1d2 linux-3.0/drivers/input/ff-memless.c -b35883c9a26c0b52aa0a6e6d3ed186b0 linux-3.0/drivers/input/ff-core.c -1179ffc9403a5af8f0048619881a649c linux-3.0/drivers/input/evdev.c -f29cd0fa0753416fde6839d30272b8ef linux-3.0/drivers/input/evbug.c -1a9b08c6270b72b7fdfc0bcdbdded674 linux-3.0/drivers/input/apm-power.c -951e8102e99c4e623d0a0a936bd47a2b linux-3.0/drivers/input/Makefile -cdc88b4ec6fc139616014835befb6cf7 linux-3.0/drivers/input/Kconfig -49f9c4776df165b4e50ba6f3b1ef2840 linux-3.0/drivers/infiniband/ulp/srp/ib_srp.h -3c9aaac804cb064a8ed7af5cc24aa07d linux-3.0/drivers/infiniband/ulp/srp/ib_srp.c -0157bdef0039584b4241a5bef48e1677 linux-3.0/drivers/infiniband/ulp/srp/Kconfig -6b3007f5f8b5708f3ce9b25cf99e52a8 linux-3.0/drivers/infiniband/ulp/srp/Kbuild -1867661e7e4cfe069b89723c1fdcfc86 linux-3.0/drivers/infiniband/ulp/iser/iser_verbs.c -69e08d7f7e55e596eef7ae1af7dcf6f7 linux-3.0/drivers/infiniband/ulp/iser/iser_memory.c -cc17c167a84ac681b0a75cc987c38512 linux-3.0/drivers/infiniband/ulp/iser/iser_initiator.c -4144c84b3a500c29da27aa24ebbce325 linux-3.0/drivers/infiniband/ulp/iser/iscsi_iser.h -9171bb4b08504cc748cfbd8a89a19d61 linux-3.0/drivers/infiniband/ulp/iser/iscsi_iser.c -4f6e50a1f0e11032d1966b5f6d069081 linux-3.0/drivers/infiniband/ulp/iser/Makefile -6a88b35adb8665cc6950fb50f8ce7abb linux-3.0/drivers/infiniband/ulp/iser/Kconfig -875c3166a2db44da4535a17c55582f6e linux-3.0/drivers/infiniband/ulp/ipoib/ipoib_vlan.c -fbed72781c82b62a8f6c028259ff0cc2 linux-3.0/drivers/infiniband/ulp/ipoib/ipoib_verbs.c -be86df08a0b72529017b0e411e453bca linux-3.0/drivers/infiniband/ulp/ipoib/ipoib_multicast.c -100d271432abc612eb1b969725d42731 linux-3.0/drivers/infiniband/ulp/ipoib/ipoib_main.c -7f9e937a30c3fba722ac7946dfc20dd8 linux-3.0/drivers/infiniband/ulp/ipoib/ipoib_ib.c -70e4e7c3dea1d3b77526da150e98d309 linux-3.0/drivers/infiniband/ulp/ipoib/ipoib_fs.c -c137dcfdd5e110ce39027f6ebfd170dd linux-3.0/drivers/infiniband/ulp/ipoib/ipoib_ethtool.c -2cf47475a7f86591a98452d77188650f linux-3.0/drivers/infiniband/ulp/ipoib/ipoib_cm.c -33c1d92743fcaf2afa4d672fc0b75143 linux-3.0/drivers/infiniband/ulp/ipoib/ipoib.h -fc466a37a5f27a46f62bd93831affbc4 linux-3.0/drivers/infiniband/ulp/ipoib/Makefile -9071a3a7b2ec06247d704522d14f128f linux-3.0/drivers/infiniband/ulp/ipoib/Kconfig -14078abbe3bba5024c4b9bad77c6801a linux-3.0/drivers/infiniband/hw/qib/qib_wc_x86_64.c -987847554c0902c5fff0715807674fb6 linux-3.0/drivers/infiniband/hw/qib/qib_wc_ppc64.c -7b3df4ff674cd0cd043e23f4cd7df14a linux-3.0/drivers/infiniband/hw/qib/qib_verbs_mcast.c -a3aebb9583a04ace54f3a54978ca300f linux-3.0/drivers/infiniband/hw/qib/qib_verbs.h -7657616c61ac8083a4c8bd7e7a434d1b linux-3.0/drivers/infiniband/hw/qib/qib_verbs.c -d1d387523f22129b8ac2ee9d35babb44 linux-3.0/drivers/infiniband/hw/qib/qib_user_sdma.h -7afc1dc008f3ca2905a0796cab95d9da linux-3.0/drivers/infiniband/hw/qib/qib_user_sdma.c -6b62f68a7182c468e4f2a5a78d807725 linux-3.0/drivers/infiniband/hw/qib/qib_user_pages.c -694454637e96c7cda85fbe1a2fb6af73 linux-3.0/drivers/infiniband/hw/qib/qib_ud.c -19dcf4ea48dc44d4af7c3683d3d526f9 linux-3.0/drivers/infiniband/hw/qib/qib_uc.c -7c24cf92b0f55ed66a668ae268c31397 linux-3.0/drivers/infiniband/hw/qib/qib_tx.c -90b3c5601eecaa76b817b45f82f9a860 linux-3.0/drivers/infiniband/hw/qib/qib_twsi.c -3349ed12b1e585a94c0d81ea6fca36d7 linux-3.0/drivers/infiniband/hw/qib/qib_sysfs.c -a955b94c0d742b10704e7a6689238b79 linux-3.0/drivers/infiniband/hw/qib/qib_srq.c -cd6f0b25f296125a51b4700c89e23dde linux-3.0/drivers/infiniband/hw/qib/qib_sdma.c -0b4464374e5c78ae9b2600736deb6e35 linux-3.0/drivers/infiniband/hw/qib/qib_sd7220.c -ab8c978ee5aa48614223b3c1e2ffad68 linux-3.0/drivers/infiniband/hw/qib/qib_ruc.c -37b2736fbd1259f582bfc07d8442921c linux-3.0/drivers/infiniband/hw/qib/qib_rc.c -8ce9af3f3ea4935a601f1db2ee5d3993 linux-3.0/drivers/infiniband/hw/qib/qib_qsfp.h -d63e0fa4742588cef0c15732485c4f25 linux-3.0/drivers/infiniband/hw/qib/qib_qsfp.c -1b21ea2d58eb6ce42881dc253e1479ee linux-3.0/drivers/infiniband/hw/qib/qib_qp.c -1bfd7b7df446dcf8954b41842052c55c linux-3.0/drivers/infiniband/hw/qib/qib_pio_copy.c -c57e010805999d5ca660f47d36a06365 linux-3.0/drivers/infiniband/hw/qib/qib_pcie.c -6e9f78463b47c47cc42badca99194e42 linux-3.0/drivers/infiniband/hw/qib/qib_mr.c -d7c3e74460ae84600bf58843ebc78679 linux-3.0/drivers/infiniband/hw/qib/qib_mmap.c -5e97044df7590964ee534af780578221 linux-3.0/drivers/infiniband/hw/qib/qib_mad.h -1ffb7aeaa79cd711def7a1e518af9705 linux-3.0/drivers/infiniband/hw/qib/qib_mad.c -f1a876d7e9893498b8a3683824ccd1ff linux-3.0/drivers/infiniband/hw/qib/qib_keys.c -1b9a6f4fcbfa980228a475433a23f178 linux-3.0/drivers/infiniband/hw/qib/qib_intr.c -f89517195a47e0909769289dac6f658d linux-3.0/drivers/infiniband/hw/qib/qib_init.c -9e296b35bf11e0e1e8408a4f6d649360 linux-3.0/drivers/infiniband/hw/qib/qib_iba7322.c -8efe8084723d8691116ec354ee9bff16 linux-3.0/drivers/infiniband/hw/qib/qib_iba7220.c -7cf251984370d39a0a33e2d840e79fce linux-3.0/drivers/infiniband/hw/qib/qib_iba6120.c -1ecc8722795bfc344dd7d91d9a39f829 linux-3.0/drivers/infiniband/hw/qib/qib_fs.c -a515dae8268f7bbb9697efb89137187b linux-3.0/drivers/infiniband/hw/qib/qib_file_ops.c -567f43c20ac9cb0393729816441df669 linux-3.0/drivers/infiniband/hw/qib/qib_eeprom.c -37a041b7290887fb9071b46c7c50b422 linux-3.0/drivers/infiniband/hw/qib/qib_driver.c -fdffb94cc8bf91451ecc9b280a36d815 linux-3.0/drivers/infiniband/hw/qib/qib_dma.c -70611ea8dfe7da9cdce938e9dd47bcb5 linux-3.0/drivers/infiniband/hw/qib/qib_diag.c -f158d86638df184e836ea64b8c0faffe linux-3.0/drivers/infiniband/hw/qib/qib_cq.c -987fff7d5cc162492163572fa5451569 linux-3.0/drivers/infiniband/hw/qib/qib_common.h -b56d4b16d80bd2d48b0dc03f2698a3dc linux-3.0/drivers/infiniband/hw/qib/qib_7322_regs.h -e822c5d7d113619794e151663d125846 linux-3.0/drivers/infiniband/hw/qib/qib_7220_regs.h -8b711debed13e350a7e2bc701072f13c linux-3.0/drivers/infiniband/hw/qib/qib_7220.h -1a32ecf954b0e3b02afb241e6a1424ea linux-3.0/drivers/infiniband/hw/qib/qib_6120_regs.h -1db02994a0075f7d50e54a98aa2f89ef linux-3.0/drivers/infiniband/hw/qib/qib.h -9663471c7d009ae6fcbf1baf62d5b22d linux-3.0/drivers/infiniband/hw/qib/Makefile -3f44e8ff1dacbcab3ee28916484e9298 linux-3.0/drivers/infiniband/hw/qib/Kconfig -85d4a1c6c1b3027463bf1860086d413b linux-3.0/drivers/infiniband/hw/nes/nes_verbs.h -e08f1607f7f5366f02dcb374d493cd07 linux-3.0/drivers/infiniband/hw/nes/nes_verbs.c -e09d7c65edeaf0ccb1c422151b705e92 linux-3.0/drivers/infiniband/hw/nes/nes_utils.c -dbb4298ef6fc233c7800c1eee50385e0 linux-3.0/drivers/infiniband/hw/nes/nes_user.h -e4adfa1cb5e8064a98e2fe09d1350570 linux-3.0/drivers/infiniband/hw/nes/nes_nic.c -af658c60a5441bf3b93cf5b5b2978f5a linux-3.0/drivers/infiniband/hw/nes/nes_hw.h -3ef5c46c51cfd3108486354f3f2ff950 linux-3.0/drivers/infiniband/hw/nes/nes_hw.c -965310076073fa260549fa14ef6aeddf linux-3.0/drivers/infiniband/hw/nes/nes_context.h -f934d88293fb6918bfe84dc9a852d545 linux-3.0/drivers/infiniband/hw/nes/nes_cm.h -530cecf232b95a9001e26a44d0961402 linux-3.0/drivers/infiniband/hw/nes/nes_cm.c -6b08c4006838740e5e5dbbceef4f7b5b linux-3.0/drivers/infiniband/hw/nes/nes.h -622b57300fa302bcdac7eb88460d314c linux-3.0/drivers/infiniband/hw/nes/nes.c -b0b183d4c7f38cce339a128adb22c353 linux-3.0/drivers/infiniband/hw/nes/Makefile -8d742fe379a5ca1206334f9fd484b289 linux-3.0/drivers/infiniband/hw/nes/Kconfig -2599ea31f4b6db86c721752cbe5abf69 linux-3.0/drivers/infiniband/hw/mthca/mthca_wqe.h -dfcc354edd4ee88bbb36252f76289718 linux-3.0/drivers/infiniband/hw/mthca/mthca_user.h -73e203ed1ade6c074a57c0430776b6a4 linux-3.0/drivers/infiniband/hw/mthca/mthca_uar.c -37c51a999cdc73c1319ca55c9c0f062b linux-3.0/drivers/infiniband/hw/mthca/mthca_srq.c -ff25cdd7ce7447f6ab2457e185463955 linux-3.0/drivers/infiniband/hw/mthca/mthca_reset.c -40163767c0121a0d995ccb62521ce718 linux-3.0/drivers/infiniband/hw/mthca/mthca_qp.c -65982038fa86835eb1797f164d0b7699 linux-3.0/drivers/infiniband/hw/mthca/mthca_provider.h -4337fbc5baf6f22f3077d5a65bee89ee linux-3.0/drivers/infiniband/hw/mthca/mthca_provider.c -4f9707dfdf8fa767be8335ee422813b5 linux-3.0/drivers/infiniband/hw/mthca/mthca_profile.h -3b4083aa061c9c07e587586d7956edfe linux-3.0/drivers/infiniband/hw/mthca/mthca_profile.c -4aa07d61a2787b051385ac496cdc2eda linux-3.0/drivers/infiniband/hw/mthca/mthca_pd.c -2e6117298383176027978dfd6210d890 linux-3.0/drivers/infiniband/hw/mthca/mthca_mr.c -ed1581d66b2d81540e13d88928359eb9 linux-3.0/drivers/infiniband/hw/mthca/mthca_memfree.h -f5bea4f37365956153648ee20ae79809 linux-3.0/drivers/infiniband/hw/mthca/mthca_memfree.c -b1c2f06ddc5d99be9095b7ada64b162a linux-3.0/drivers/infiniband/hw/mthca/mthca_mcg.c -8cbe72706420bcaf1560f42069876108 linux-3.0/drivers/infiniband/hw/mthca/mthca_main.c -e4a0ef7e562a778583d9ee9a564a0664 linux-3.0/drivers/infiniband/hw/mthca/mthca_mad.c -d83e614201c3a866a0169a9628b17e56 linux-3.0/drivers/infiniband/hw/mthca/mthca_eq.c -8fb1ac868d44c2e35fa58fc693304396 linux-3.0/drivers/infiniband/hw/mthca/mthca_doorbell.h -404c41d07f655f9d5cf21a910e47af97 linux-3.0/drivers/infiniband/hw/mthca/mthca_dev.h -6eca4e0a57d92765cbf4bf7b4c0de80f linux-3.0/drivers/infiniband/hw/mthca/mthca_cq.c -d1d9df52ba9415b9c421134116b81a9f linux-3.0/drivers/infiniband/hw/mthca/mthca_config_reg.h -c02d2882ef66f0e92005a5e319e61922 linux-3.0/drivers/infiniband/hw/mthca/mthca_cmd.h -60277a7358ddae62aa3e04ab9662db4c linux-3.0/drivers/infiniband/hw/mthca/mthca_cmd.c -ba7097c1fcb2ffe4122c50d5448e28d6 linux-3.0/drivers/infiniband/hw/mthca/mthca_catas.c -7001848d0b0e680f021bc2ceae483872 linux-3.0/drivers/infiniband/hw/mthca/mthca_av.c -1ba365e8732be8475f4c132d0e3931e0 linux-3.0/drivers/infiniband/hw/mthca/mthca_allocator.c -75f2a4a24a900078c060b5ca083fc722 linux-3.0/drivers/infiniband/hw/mthca/Makefile -f7c26b69ac8b2bee50e5b327aa34afc8 linux-3.0/drivers/infiniband/hw/mthca/Kconfig -16a51b1c91bfe83b1df4e2f77623ebde linux-3.0/drivers/infiniband/hw/mlx4/user.h -4ce142bcd6b12ef09dc2b4147a99d71f linux-3.0/drivers/infiniband/hw/mlx4/srq.c -aee7df3ab7a053acf6d50a82a4f8049c linux-3.0/drivers/infiniband/hw/mlx4/qp.c -03b9fe7c0a8cf996f89edab560d03777 linux-3.0/drivers/infiniband/hw/mlx4/mr.c -33c3b3eadbcbfb5e4cba53196b920f70 linux-3.0/drivers/infiniband/hw/mlx4/mlx4_ib.h -bf98722cb22ac5b0b4025aada14a4b22 linux-3.0/drivers/infiniband/hw/mlx4/main.c -0d887f79e7a54615dbfe266cc770ff74 linux-3.0/drivers/infiniband/hw/mlx4/mad.c -433a03457e9c60ce16317c33d82a39e9 linux-3.0/drivers/infiniband/hw/mlx4/doorbell.c -dc1109e467e7b0cf8bdc4a2276263d97 linux-3.0/drivers/infiniband/hw/mlx4/cq.c -9b8fc3dccf91b4f35cd5b1e2f103d7d7 linux-3.0/drivers/infiniband/hw/mlx4/ah.c -3203e6587a605d63ad6f4e76c7769fed linux-3.0/drivers/infiniband/hw/mlx4/Makefile -af78fcbb28f4ca445f96c1c57651fc71 linux-3.0/drivers/infiniband/hw/mlx4/Kconfig -45b39ff1fe24fba5113775f02c8feddd linux-3.0/drivers/infiniband/hw/ipath/ipath_wc_x86_64.c -b53b47d1648ab97aa06adaa3c29ef78c linux-3.0/drivers/infiniband/hw/ipath/ipath_wc_ppc64.c -c6d707e06c81d0fbde39eaf5239977e0 linux-3.0/drivers/infiniband/hw/ipath/ipath_verbs_mcast.c -9fb2e6249b4eebdb2d02719b60617908 linux-3.0/drivers/infiniband/hw/ipath/ipath_verbs.h -049e012ffe068096a91c9b2423abc8e8 linux-3.0/drivers/infiniband/hw/ipath/ipath_verbs.c -e8543b9d4948b1ade95162337fae8e8b linux-3.0/drivers/infiniband/hw/ipath/ipath_user_sdma.h -501dcddebf0c5d6700afd8fed6be3ea3 linux-3.0/drivers/infiniband/hw/ipath/ipath_user_sdma.c -f0218f830decd92f13cb397c3cc00c21 linux-3.0/drivers/infiniband/hw/ipath/ipath_user_pages.c -ad2462a74851b63db51dffb50225e275 linux-3.0/drivers/infiniband/hw/ipath/ipath_ud.c -4358418450b4c6bc8696b4c044b6bc39 linux-3.0/drivers/infiniband/hw/ipath/ipath_uc.c -4a5a0b86041511da9c36ea17db5fe6de linux-3.0/drivers/infiniband/hw/ipath/ipath_sysfs.c -481dc0f6cd96dc6fd3bdd1205a4390c1 linux-3.0/drivers/infiniband/hw/ipath/ipath_stats.c -a49ea4c2572e81bf98c8cbbf025dc03f linux-3.0/drivers/infiniband/hw/ipath/ipath_srq.c -7ea9b647dd1d20f8ed881486737ef191 linux-3.0/drivers/infiniband/hw/ipath/ipath_sdma.c -6e6403ad17198e275f3f9694f63c840b linux-3.0/drivers/infiniband/hw/ipath/ipath_ruc.c -605eea54afa4a9c450a377faa5f7db02 linux-3.0/drivers/infiniband/hw/ipath/ipath_registers.h -b991d686fe98f596452eec0498868874 linux-3.0/drivers/infiniband/hw/ipath/ipath_rc.c -693b23e5b9358968ed4d14d24e100e18 linux-3.0/drivers/infiniband/hw/ipath/ipath_qp.c -fe5c5f0986ac0dc9fa8625e1ffdfb881 linux-3.0/drivers/infiniband/hw/ipath/ipath_mr.c -ee518704c5073a5833b516e9ee5b7836 linux-3.0/drivers/infiniband/hw/ipath/ipath_mmap.c -646e614e48e9cd59068f41646ff4de51 linux-3.0/drivers/infiniband/hw/ipath/ipath_mad.c -5df803f72102de01f191f185b6c681eb linux-3.0/drivers/infiniband/hw/ipath/ipath_keys.c -10da3a031b7c2ebfd2f5b11ac1bfc4c2 linux-3.0/drivers/infiniband/hw/ipath/ipath_kernel.h -16503b106261266bd8956897e97f1922 linux-3.0/drivers/infiniband/hw/ipath/ipath_intr.c -5ca3940e6f26dd754fd3fa3477f7d3b3 linux-3.0/drivers/infiniband/hw/ipath/ipath_init_chip.c -2a7b7d93090bf08cf04d3964d130839d linux-3.0/drivers/infiniband/hw/ipath/ipath_iba6110.c -d2f77aada464da7efc29edd56b908be2 linux-3.0/drivers/infiniband/hw/ipath/ipath_fs.c -f4203e1c79babd9d971d6abd3874afcc linux-3.0/drivers/infiniband/hw/ipath/ipath_file_ops.c -28f5aca1c38aae1a6907a880d20f1f54 linux-3.0/drivers/infiniband/hw/ipath/ipath_eeprom.c -b6a641d1dd4f8164f5bea88174064076 linux-3.0/drivers/infiniband/hw/ipath/ipath_driver.c -a7b67e6452c0b9016d0cfb0ca9479013 linux-3.0/drivers/infiniband/hw/ipath/ipath_dma.c -98a019eb43734f5f72dd1e64634963f3 linux-3.0/drivers/infiniband/hw/ipath/ipath_diag.c -3e2a027615121e78942f565fba7f165d linux-3.0/drivers/infiniband/hw/ipath/ipath_debug.h -13bdfe150939199abe3edc089ac09b06 linux-3.0/drivers/infiniband/hw/ipath/ipath_cq.c -fffdd367807f72b3e7649f132107e627 linux-3.0/drivers/infiniband/hw/ipath/ipath_common.h -6c1a0a9bb13af84d0944ca321f5be2dc linux-3.0/drivers/infiniband/hw/ipath/Makefile -a32a4a71dc44ffd37c830da3bd82a926 linux-3.0/drivers/infiniband/hw/ipath/Kconfig -d8e6d450ffdf3db6b053b5f593eb3ef3 linux-3.0/drivers/infiniband/hw/ehca/ipz_pt_fn.h -add63665603501c6ed64de3438cd3d65 linux-3.0/drivers/infiniband/hw/ehca/ipz_pt_fn.c -0ca6cdf0aca5ff8e1b74da4260cd111a linux-3.0/drivers/infiniband/hw/ehca/hipz_hw.h -900739f51221930cf4653854c46e7414 linux-3.0/drivers/infiniband/hw/ehca/hipz_fns_core.h -fc6eae18acf317af66abacef66e97c2e linux-3.0/drivers/infiniband/hw/ehca/hipz_fns.h -87091ba9c611e915efae39a66a16dc8c linux-3.0/drivers/infiniband/hw/ehca/hcp_phyp.h -2a977ad5154dd877d9ce1dec200a1a90 linux-3.0/drivers/infiniband/hw/ehca/hcp_phyp.c -c37787fdf5b6fbce799fc70503d06e33 linux-3.0/drivers/infiniband/hw/ehca/hcp_if.h -c4b52aeedb5f206636aa3285a902b0b6 linux-3.0/drivers/infiniband/hw/ehca/hcp_if.c -cbef699091b40efb03ba7ce0fcc090d3 linux-3.0/drivers/infiniband/hw/ehca/ehca_uverbs.c -3ac36b8778a0bd02004491c93bc41df4 linux-3.0/drivers/infiniband/hw/ehca/ehca_tools.h -c90600c1b7e97393f558d4efdf153a7e linux-3.0/drivers/infiniband/hw/ehca/ehca_sqp.c -3f1031eb2e29e4d3b514f5956ea191e3 linux-3.0/drivers/infiniband/hw/ehca/ehca_reqs.c -95ab5688b9a1ffa30067efe0fb6b662d linux-3.0/drivers/infiniband/hw/ehca/ehca_qp.c -3fb2aa5136b36d31eb8668956a0eb72c linux-3.0/drivers/infiniband/hw/ehca/ehca_qes.h -a9ad3c39342188496e70383ff105f758 linux-3.0/drivers/infiniband/hw/ehca/ehca_pd.c -abf720ed644f512103841e173ffae00c linux-3.0/drivers/infiniband/hw/ehca/ehca_mrmw.h -ae7284b9036ffcc0bf6a407002603e78 linux-3.0/drivers/infiniband/hw/ehca/ehca_mrmw.c -210f98b6259731c4bbccfb57be52c975 linux-3.0/drivers/infiniband/hw/ehca/ehca_mcast.c -c7da893d863071e6042cef5804acc41e linux-3.0/drivers/infiniband/hw/ehca/ehca_main.c -4eb3f45e22be6d5606a42a92e4751c07 linux-3.0/drivers/infiniband/hw/ehca/ehca_iverbs.h -a50e4a1708ad552afb618e2f9d93c08e linux-3.0/drivers/infiniband/hw/ehca/ehca_irq.h -6da5789fd4231f2f79a85658d6be4d30 linux-3.0/drivers/infiniband/hw/ehca/ehca_irq.c -bda4cf700d7804c56af66310ec2a656e linux-3.0/drivers/infiniband/hw/ehca/ehca_hca.c -91f18335f2279f8571f6c77116741395 linux-3.0/drivers/infiniband/hw/ehca/ehca_eq.c -de7f916ff1bca64ea69f6fee081cc014 linux-3.0/drivers/infiniband/hw/ehca/ehca_cq.c -3b0d47288a0ab2c50a20b8cc1237cb2d linux-3.0/drivers/infiniband/hw/ehca/ehca_classes_pSeries.h -3d6cf9081c2812538df66be1cd2e0a45 linux-3.0/drivers/infiniband/hw/ehca/ehca_classes.h -ff96f0bd2a925091961bfe4df564119e linux-3.0/drivers/infiniband/hw/ehca/ehca_av.c -f9b13020ac8d50b02980e619b334d013 linux-3.0/drivers/infiniband/hw/ehca/Makefile -fba69f31062d6a3e931dea4203b2c881 linux-3.0/drivers/infiniband/hw/ehca/Kconfig -d0995f13b0912ff89a86d4a645bf6d71 linux-3.0/drivers/infiniband/hw/cxgb4/user.h -d100243f536807c4625d454d40a0a443 linux-3.0/drivers/infiniband/hw/cxgb4/t4fw_ri_api.h -d67f704584e7491e1a8193f6d9703eb1 linux-3.0/drivers/infiniband/hw/cxgb4/t4.h -0c66ed25172fa67de30b16cc1788f868 linux-3.0/drivers/infiniband/hw/cxgb4/resource.c -3e45c855971f335cc1ac6ca1b93ab786 linux-3.0/drivers/infiniband/hw/cxgb4/qp.c -7249828b29f79287c9d063fd84076ae4 linux-3.0/drivers/infiniband/hw/cxgb4/provider.c -5974f666ed1c14d58b1caea2d9355e96 linux-3.0/drivers/infiniband/hw/cxgb4/mem.c -0ab55e4ec582d8bbe3e52c907bff878f linux-3.0/drivers/infiniband/hw/cxgb4/iw_cxgb4.h -a2ad9195b8da123a3376653f89804fc7 linux-3.0/drivers/infiniband/hw/cxgb4/ev.c -68d307c035e31b00b58896af8ca67e2c linux-3.0/drivers/infiniband/hw/cxgb4/device.c -d98a09b0ec945431a4e68cfb61e97cc4 linux-3.0/drivers/infiniband/hw/cxgb4/cq.c -24a376c356f7467b93351e08a85bc7eb linux-3.0/drivers/infiniband/hw/cxgb4/cm.c -38874b5b4836eab85b42d72dd0077f0b linux-3.0/drivers/infiniband/hw/cxgb4/Makefile -a80bc5a86cf60a658f8a1bc0b8ec05b0 linux-3.0/drivers/infiniband/hw/cxgb4/Kconfig -3628465ce1a97be36d3be235bc9fbe0a linux-3.0/drivers/infiniband/hw/cxgb3/tcb.h -23aa6018b26bce82993caa3e0d3a3932 linux-3.0/drivers/infiniband/hw/cxgb3/iwch_user.h -f794be288673480a62abc73f737372ff linux-3.0/drivers/infiniband/hw/cxgb3/iwch_qp.c -3193954b233a21789f82ffe3967e2860 linux-3.0/drivers/infiniband/hw/cxgb3/iwch_provider.h -cb7c1d8a422be2e943713c30dc1c14cf linux-3.0/drivers/infiniband/hw/cxgb3/iwch_provider.c -e7d2a3bc512ca480483903f194987a15 linux-3.0/drivers/infiniband/hw/cxgb3/iwch_mem.c -98092a7d37b1ec8d2fe6bc168e2e165a linux-3.0/drivers/infiniband/hw/cxgb3/iwch_ev.c -06e9464a439f8be7f3ab08acba322f37 linux-3.0/drivers/infiniband/hw/cxgb3/iwch_cq.c -a2e0d49295d6dbe97146a4c04b78596c linux-3.0/drivers/infiniband/hw/cxgb3/iwch_cm.h -f59a3bce84cbf707af4800deed1e8f55 linux-3.0/drivers/infiniband/hw/cxgb3/iwch_cm.c -41402386bb633f7ee4bc580d8a8d3f16 linux-3.0/drivers/infiniband/hw/cxgb3/iwch.h -4501f8f84ee1f31600ca8fd6ef84acb6 linux-3.0/drivers/infiniband/hw/cxgb3/iwch.c -f738d9a576781b6472872ddbba27a875 linux-3.0/drivers/infiniband/hw/cxgb3/cxio_wr.h -afa0fa3213135a1259c0c4f3d9197a58 linux-3.0/drivers/infiniband/hw/cxgb3/cxio_resource.h -63f61e9ac8aef94de95dfa2b39ab2bb7 linux-3.0/drivers/infiniband/hw/cxgb3/cxio_resource.c -5b273e0e8985940b888160d68880d3dc linux-3.0/drivers/infiniband/hw/cxgb3/cxio_hal.h -1e31712562771a9c4aa5088b4737238c linux-3.0/drivers/infiniband/hw/cxgb3/cxio_hal.c -98cd7cd4273ef437dc67d724d4cc300c linux-3.0/drivers/infiniband/hw/cxgb3/cxio_dbg.c -63659672ebde0188a2cca9bf02c0fa94 linux-3.0/drivers/infiniband/hw/cxgb3/Makefile -c98b3326e1a0d28581b159ec01fcd1bb linux-3.0/drivers/infiniband/hw/cxgb3/Kconfig -dc6fdf47500326bd0ee8ecdd8cb132fc linux-3.0/drivers/infiniband/hw/amso1100/c2_wr.h -1bcb386ec59c3e8516eb0edabb0ba44c linux-3.0/drivers/infiniband/hw/amso1100/c2_vq.h -0d6ad08c02b73206b92bfeac4a677b27 linux-3.0/drivers/infiniband/hw/amso1100/c2_vq.c -60ee78dff0992a2d69560b745249f63c linux-3.0/drivers/infiniband/hw/amso1100/c2_user.h -068679ab009b010c23750808de251e9f linux-3.0/drivers/infiniband/hw/amso1100/c2_status.h -435c8d4793a9273c6c04f8076068bc70 linux-3.0/drivers/infiniband/hw/amso1100/c2_rnic.c -39f0890cbaa809da9e0f15ae0713e113 linux-3.0/drivers/infiniband/hw/amso1100/c2_qp.c -6ce575f503c38ce2e0c10dd9fc79151a linux-3.0/drivers/infiniband/hw/amso1100/c2_provider.h -b505b4cd70c850cde09397dd29404639 linux-3.0/drivers/infiniband/hw/amso1100/c2_provider.c -8252cab4055b5f91e322fd8d0877b9b6 linux-3.0/drivers/infiniband/hw/amso1100/c2_pd.c -52599c05bb60ff90d2090446e983aebc linux-3.0/drivers/infiniband/hw/amso1100/c2_mq.h -2e4229d1c5a254ad275278c3fe644c65 linux-3.0/drivers/infiniband/hw/amso1100/c2_mq.c -5c4f7becb8d707a14743402e97944302 linux-3.0/drivers/infiniband/hw/amso1100/c2_mm.c -fc8ca43d56c67c39396135ab3163d0ec linux-3.0/drivers/infiniband/hw/amso1100/c2_intr.c -04f617b24ed74e8712a7900c2c69f768 linux-3.0/drivers/infiniband/hw/amso1100/c2_cq.c -602b782154b81744610ea6d9d0ac547b linux-3.0/drivers/infiniband/hw/amso1100/c2_cm.c -2a7addb542e87035c9737e39aac0d57e linux-3.0/drivers/infiniband/hw/amso1100/c2_alloc.c -f4425094cad2c04df7f33326ba32203f linux-3.0/drivers/infiniband/hw/amso1100/c2_ae.h -2a140561e83cca2562a1776b95c69cdf linux-3.0/drivers/infiniband/hw/amso1100/c2_ae.c -4983ad1222452792a52c6b47b897c4b6 linux-3.0/drivers/infiniband/hw/amso1100/c2.h -2369a59fcbbf7ab48fc8ecc252cd339c linux-3.0/drivers/infiniband/hw/amso1100/c2.c -e684b6a6583b744ca19d1f1329d0679c linux-3.0/drivers/infiniband/hw/amso1100/Kconfig -9012e86302e47b615cb11713194b251a linux-3.0/drivers/infiniband/hw/amso1100/Kbuild -4c994a1f7872a7c2a192c0c790d4b946 linux-3.0/drivers/infiniband/core/verbs.c -cc1736665d95e60b02fe62d4ef744c42 linux-3.0/drivers/infiniband/core/uverbs_marshall.c -09daae23d721c6d194490651dfc0cc2c linux-3.0/drivers/infiniband/core/uverbs_main.c -012ceb24bcfe944ac47d3254c0c71757 linux-3.0/drivers/infiniband/core/uverbs_cmd.c -59222768dfddfd41d7a3e29becca4432 linux-3.0/drivers/infiniband/core/uverbs.h -5c6d282fdaa4e1460f5d5d9c2f983e33 linux-3.0/drivers/infiniband/core/user_mad.c -ba23705b45d9d9bfdfdee8b81aa9219c linux-3.0/drivers/infiniband/core/umem.c -4357f2c1cdf52d2c7eb290b88e5bff62 linux-3.0/drivers/infiniband/core/ud_header.c -53bd8472b0eb268ee0afb616e71efba7 linux-3.0/drivers/infiniband/core/ucma.c -9a3cee0a3bdd2fe8ba881abdd5aa4573 linux-3.0/drivers/infiniband/core/ucm.c -51d3196123a4e42904658c8347f90583 linux-3.0/drivers/infiniband/core/sysfs.c -76ca6a1dff628fb25e3212f29baa5877 linux-3.0/drivers/infiniband/core/smi.h -6670af9f6069da585eedf74057f86cfc linux-3.0/drivers/infiniband/core/smi.c -abaa414ed7d15fbece6aff463b4840c4 linux-3.0/drivers/infiniband/core/sa_query.c -f0370901895e5868ad62302162d36af3 linux-3.0/drivers/infiniband/core/sa.h -17c809e61b8b3935ea5070fc8c1cbb5c linux-3.0/drivers/infiniband/core/packer.c -e7c386e7268a701288876e0d4d95319a linux-3.0/drivers/infiniband/core/netlink.c -c43712508a366bb574a6a3087e692b56 linux-3.0/drivers/infiniband/core/multicast.c -aad51e993b5384a7d7cb6b6d79d28a95 linux-3.0/drivers/infiniband/core/mad_rmpp.h -f0ff9e75691ca8ef3d11ca75776837f2 linux-3.0/drivers/infiniband/core/mad_rmpp.c -1183ce96997a94491b8cacb29c4aa7b5 linux-3.0/drivers/infiniband/core/mad_priv.h -a90a11c48a47ce0e5fd6a3b841dbe982 linux-3.0/drivers/infiniband/core/mad.c -c84f71a0ae34e3db5bfc521e8447e3d8 linux-3.0/drivers/infiniband/core/iwcm.h -62e0a83cf6ccf1de7afeeab15d5db4cf linux-3.0/drivers/infiniband/core/iwcm.c -0f9b5d7abe2316711c742eb5648ff026 linux-3.0/drivers/infiniband/core/fmr_pool.c -c625a8680cc22bce63ed57315c79aa3b linux-3.0/drivers/infiniband/core/device.c -d8b01c4444397d91f1dbeb7fa5abad69 linux-3.0/drivers/infiniband/core/core_priv.h -713fc3777961368505b7092598742cad linux-3.0/drivers/infiniband/core/cma.c -14cdff2c5291ef2e7efc9c293d806ada linux-3.0/drivers/infiniband/core/cm_msgs.h -9ba594543d5101f200f1c1152ab8cdaf linux-3.0/drivers/infiniband/core/cm.c -ffbc1b7291c40302b38eb5af547b02b1 linux-3.0/drivers/infiniband/core/cache.c -c54d8374fd04e67a980f566894444bf6 linux-3.0/drivers/infiniband/core/agent.h -2950e2d96b3b0af09f6aba38171eac93 linux-3.0/drivers/infiniband/core/agent.c -db7bb1a25ca670e99e50ef31831ce33f linux-3.0/drivers/infiniband/core/addr.c -bcc3ea2b89adbfaa1e87c3897f8bc607 linux-3.0/drivers/infiniband/core/Makefile -15af2739d8664df8e1181321459f61f0 linux-3.0/drivers/infiniband/Makefile -15bc5fa9727743b81da008e2a90777ba linux-3.0/drivers/infiniband/Kconfig -30176b4d1908d1618c3327cdfaf959d0 linux-3.0/drivers/ieee802154/fakehard.c -2f7ee27ea11bfe4af1d0005a43599f17 linux-3.0/drivers/ieee802154/Makefile -be8aa39dff6c78c90875a8308d9ec0d0 linux-3.0/drivers/ieee802154/Kconfig -4e4a9bb91413c5181401953ec5f30ce3 linux-3.0/drivers/idle/intel_idle.c -f0f0de27c899e78d2e0558950859a954 linux-3.0/drivers/idle/i7300_idle.c -a0380a23de586e3da56a6ebbe0044fac linux-3.0/drivers/idle/Makefile -4e2a45e33dbd1f6052c94542be778b81 linux-3.0/drivers/idle/Kconfig -12c86713f80490b67ed1d7aca29e1f2a linux-3.0/drivers/ide/via82cxxx.c -711b0b120492cba02f5d6606333e8d65 linux-3.0/drivers/ide/umc8672.c -ffe24a45207a599e2b7ed8aef05ee2a8 linux-3.0/drivers/ide/tx4939ide.c -0a77eea8ebccb3d967fccc1958be7368 linux-3.0/drivers/ide/tx4938ide.c -7711120f65de503d9172cee4038b58c4 linux-3.0/drivers/ide/trm290.c -1cd79856d2be84b0e2ef1cad542eda24 linux-3.0/drivers/ide/triflex.c -86ae876ebb5960a3f0118f25f61ef2c2 linux-3.0/drivers/ide/tc86c001.c -094fa56df6c59d49737a5516514836e5 linux-3.0/drivers/ide/slc90e66.c -9bc669e8f6a8347470d5f31a69a60ab4 linux-3.0/drivers/ide/sl82c105.c -40532e1ec0a3360f358304ccbb20276c linux-3.0/drivers/ide/sis5513.c -319314710930a5311886c1f6314df6e5 linux-3.0/drivers/ide/siimage.c -726199ce1aa398856cb3ed67d04dae7e linux-3.0/drivers/ide/sgiioc4.c -d067b9a5cad0e5efb0be61369a88f5a9 linux-3.0/drivers/ide/setup-pci.c -b21eadde8bc72e168bbab5830781a527 linux-3.0/drivers/ide/serverworks.c -3204238253bf0815f9088b15bc936791 linux-3.0/drivers/ide/scc_pata.c -d1e57f7e6f6bf01dec9d7da86f0f5105 linux-3.0/drivers/ide/sc1200.c -b2a06cbf4205b99b4dcb2f5a706942c5 linux-3.0/drivers/ide/rz1000.c -9aab9406574e54dd69c676e1b98281a4 linux-3.0/drivers/ide/rapide.c -f98142a2c36f52108515eff85c018c80 linux-3.0/drivers/ide/qd65xx.h -9422c2c8c0436445e40ac515e24e1959 linux-3.0/drivers/ide/qd65xx.c -20df2a7dd1143555e8457a4b2f23f19e linux-3.0/drivers/ide/q40ide.c -cb17d4cf5dddb47b839478bd9ca033f3 linux-3.0/drivers/ide/pmac.c -086dad6670a098ec83de25a3459d3ac2 linux-3.0/drivers/ide/piix.c -5714c0cc5484dc788cfc9d098db9cb6f linux-3.0/drivers/ide/pdc202xx_old.c -1de95c4f07ea043c367d8be56477753e linux-3.0/drivers/ide/pdc202xx_new.c -a3878101e0d9a4e9541976f2b662520a linux-3.0/drivers/ide/palm_bk3710.c -dc33530b82fefc668f11b55f401ff5aa linux-3.0/drivers/ide/opti621.c -39a90f4a15ed62974932523d9e1312f3 linux-3.0/drivers/ide/ns87415.c -ab0bd64135ad0d9130e4c50dc8a14782 linux-3.0/drivers/ide/macide.c -5384c5e834a1ec89bbea8343c96c07b3 linux-3.0/drivers/ide/jmicron.c -c267688e97ee8e4447ebb9e86804e321 linux-3.0/drivers/ide/it821x.c -4cac547ddc7cfe5f80b79d9c323b3c37 linux-3.0/drivers/ide/it8213.c -e7cedf5e42757404bd3960848f76a81b linux-3.0/drivers/ide/it8172.c -c6ae1801497953b1d3687441c7a09c62 linux-3.0/drivers/ide/ide_platform.c -9949b499b08eef25e318cbc8dbb22679 linux-3.0/drivers/ide/ide.c -866260dfc9b83b64323a0a749651f3f2 linux-3.0/drivers/ide/ide-xfer-mode.c -bc4bc949cfdf951a6275bab41a8494a9 linux-3.0/drivers/ide/ide-timings.c -043d760987cf615039ca2a6833cf5375 linux-3.0/drivers/ide/ide-taskfile.c -93f4021cf23b26b460b63ad207a30b1d linux-3.0/drivers/ide/ide-tape.c -705149fac01f3291fb5af1598a8b645b linux-3.0/drivers/ide/ide-sysfs.c -7dc7dba326ab1d6e14ba0013b17f4285 linux-3.0/drivers/ide/ide-scan-pci.c -b168b8cc817560b29adb42395e84953f linux-3.0/drivers/ide/ide-proc.c -6291e8d3e7ab1b2539fcfbd7c6a667c5 linux-3.0/drivers/ide/ide-probe.c -6648a54634ca874d56bd637ddcc2d10e linux-3.0/drivers/ide/ide-pnp.c -29ca73b4c457d11a6fc0cf7c0139fd82 linux-3.0/drivers/ide/ide-pm.c -a61b4266df056b69c843f859221eb814 linux-3.0/drivers/ide/ide-pio-blacklist.c -7b2b4ec1d670b7a8ede58c4d066fb2ef linux-3.0/drivers/ide/ide-pci-generic.c -7b4b4f0a77def9079b1c8c585f78553b linux-3.0/drivers/ide/ide-park.c -f6a8655455cbaadafb9f97f28af06aa2 linux-3.0/drivers/ide/ide-lib.c -46e16a161c4df3f1969edcde62e36ebd linux-3.0/drivers/ide/ide-legacy.c -87043fc7972ae8a7dd97eed9a2ae2645 linux-3.0/drivers/ide/ide-iops.c -f108a6b3aa7e6c58afeb9e1996fc999e linux-3.0/drivers/ide/ide-ioctls.c -a49ee6ee7134c5eee76cd989ad2cb385 linux-3.0/drivers/ide/ide-io.c -df36cb4e81a32422bf49c50c82622f90 linux-3.0/drivers/ide/ide-io-std.c -e180295af1517c3e5f4ec39961277f02 linux-3.0/drivers/ide/ide-h8300.c -daf85614961178727e0f570fa4052a79 linux-3.0/drivers/ide/ide-generic.c -262b8ba947c131b154bcf526234a651b linux-3.0/drivers/ide/ide-gd.h -289095062efe37b7ccd3025f1203a200 linux-3.0/drivers/ide/ide-gd.c -2249079060dff98b9011ed9d05db7939 linux-3.0/drivers/ide/ide-floppy_proc.c -d8e2a65ee2da6b4e9e8b25fbfca90867 linux-3.0/drivers/ide/ide-floppy_ioctl.c -e7345411dd229c19a4ea00a0d8cafb3b linux-3.0/drivers/ide/ide-floppy.h -d02e3aeb46f8bf60cb964693f515a404 linux-3.0/drivers/ide/ide-floppy.c -b168002310595e99dc7ecf3143a9bc91 linux-3.0/drivers/ide/ide-eh.c -da4105604fd0b93806b7e20d79c0651c linux-3.0/drivers/ide/ide-dma.c -95e9c49a409692696322b16ec5130ee8 linux-3.0/drivers/ide/ide-dma-sff.c -f7df07b28a9014e9c51389fcd8eb4a47 linux-3.0/drivers/ide/ide-disk_proc.c -3a38b8600464b9a543649bccd3303a42 linux-3.0/drivers/ide/ide-disk_ioctl.c -e5432c11025a71434afb57feb0a0839d linux-3.0/drivers/ide/ide-disk.h -b29a525ff38d5a58d3e5353fc14a0f1e linux-3.0/drivers/ide/ide-disk.c -a05561ce227acefaaa8282746dc2a224 linux-3.0/drivers/ide/ide-devsets.c -962dac29de489676ac2fcff66bef9f13 linux-3.0/drivers/ide/ide-cs.c -e590271df420bb962c2a411fffb48d37 linux-3.0/drivers/ide/ide-cd_verbose.c -2bddf7203b53b0554e05260d6c0ad867 linux-3.0/drivers/ide/ide-cd_ioctl.c -c649480792ed9e4bf05b1e746206fd0f linux-3.0/drivers/ide/ide-cd.h -02c2944e8565941bb9f8d9de7b78490d linux-3.0/drivers/ide/ide-cd.c -c84771e2e2a4cd40f56fdac45aefc92d linux-3.0/drivers/ide/ide-atapi.c -85fadc688d5e92b9786cc43baf504483 linux-3.0/drivers/ide/ide-acpi.c -211a271ec3502e15a60f78f63c503eda linux-3.0/drivers/ide/ide-4drives.c -265ed6259749ad0d3824981170756fe0 linux-3.0/drivers/ide/icside.c -97539b3803ac46374a3b3f1e2ec531c6 linux-3.0/drivers/ide/ht6560b.c -a13e18175cc75c0755fd6c24b213d5b3 linux-3.0/drivers/ide/hpt366.c -f7755cdf2abd9990349031e1688da07c linux-3.0/drivers/ide/gayle.c -9625a1b9cf72dfd35a33a7f5d9f0d523 linux-3.0/drivers/ide/falconide.c -537425c7f53d7f1cd98853cf31ff39f0 linux-3.0/drivers/ide/dtc2278.c -7fd5f440f949de2cc8e583ece4871d53 linux-3.0/drivers/ide/delkin_cb.c -e394354d75089faea3f802e9c338beef linux-3.0/drivers/ide/cy82c693.c -5d0b5bb6bf9ed975f6932fa2020a7204 linux-3.0/drivers/ide/cs5536.c -70f22984c6dfdca925540024c10883ac linux-3.0/drivers/ide/cs5535.c -e8f400e9bcec50ef316e6b84a6d59b70 linux-3.0/drivers/ide/cs5530.c -7a0d446a8cf6770b7501780c4c99a17d linux-3.0/drivers/ide/cs5520.c -6ebe4d72a0e0c3f255e7f7c7956339cc linux-3.0/drivers/ide/cmd64x.c -1e36c006e15e96092f497a941a67e3d8 linux-3.0/drivers/ide/cmd640.c -b074718e5ed38de33658a6f23869f3ba linux-3.0/drivers/ide/buddha.c -9ea9f63044661bb5cc81b5417c3e5c87 linux-3.0/drivers/ide/au1xxx-ide.c -316a87b04c52339c33a9a1933486a7a4 linux-3.0/drivers/ide/atiixp.c -9ac5568ff5af5a04dbd826ea25a673f8 linux-3.0/drivers/ide/at91_ide.c -fc4009e39fadaf96fa8f1cedf4ee77a8 linux-3.0/drivers/ide/amd74xx.c -dbb81cbd696a55fe0fb0313245c430eb linux-3.0/drivers/ide/alim15x3.c -36d46df42a9b01744abd465edd8b13a9 linux-3.0/drivers/ide/ali14xx.c -61b4da188683a167eb47ac4fe4dd342f linux-3.0/drivers/ide/aec62xx.c -92cfad4e1fa43bf6e2059a1bf2091fb0 linux-3.0/drivers/ide/Makefile -2ceca1bbfcdc9bb75a82361ab05fc8fd linux-3.0/drivers/ide/Kconfig -5528e1ba4e57d3bb3c2405cbd94b30db linux-3.0/drivers/i2c/muxes/pca954x.c -ad9684dc31385af04ab5f4bb190e5050 linux-3.0/drivers/i2c/muxes/pca9541.c -adeaf7adb449ac6e09e20608f40652a3 linux-3.0/drivers/i2c/muxes/gpio-i2cmux.c -129c8a835496fd0692e7b605c8cf9067 linux-3.0/drivers/i2c/muxes/Makefile -f49ba2fc8620afef13c8ec3f2ed9c232 linux-3.0/drivers/i2c/muxes/Kconfig -2f0d211fc4ce3972f822f12c623d1081 linux-3.0/drivers/i2c/i2c-smbus.c -315c304064972ebdbbc60921488bd5ac linux-3.0/drivers/i2c/i2c-mux.c -7019a1f1987acf906d2fe7c96282da04 linux-3.0/drivers/i2c/i2c-dev.c -2425991f21bc979feafa1351e91228df linux-3.0/drivers/i2c/i2c-core.h -84ce5d7aea2bb1f74abac86ebb93362d linux-3.0/drivers/i2c/i2c-core.c -f388d14e7b306966aa58daacf9166e7b linux-3.0/drivers/i2c/i2c-boardinfo.c -9eca3fa2124942b8aee59199eb703002 linux-3.0/drivers/i2c/busses/scx200_i2c.c -3354a8fe1096ca6a42dd01c6b8636526 linux-3.0/drivers/i2c/busses/scx200_acb.c -dcb2bca94d8be5afc70f248334be301d linux-3.0/drivers/i2c/busses/i2c-xiic.c -6256922be5d227e19a3e3ae8890055f4 linux-3.0/drivers/i2c/busses/i2c-viapro.c -182eee9e5e84566d29920c36c9002069 linux-3.0/drivers/i2c/busses/i2c-via.c -ad3fc5f5d44c59a20c61b5a534d8c02c linux-3.0/drivers/i2c/busses/i2c-versatile.c -06864ed75e473abfa019d0ef54017b6f linux-3.0/drivers/i2c/busses/i2c-tiny-usb.c -df180913e06866d5498e2cbe16e3f2b3 linux-3.0/drivers/i2c/busses/i2c-tegra.c -313f7186d78f2641f606a8143c470fde linux-3.0/drivers/i2c/busses/i2c-taos-evm.c -a669ffe1bc01af657578716567665c1c linux-3.0/drivers/i2c/busses/i2c-stub.c -e0bdbfa56e999b11a206bd6b8a063ce8 linux-3.0/drivers/i2c/busses/i2c-stu300.c -2c39c09d290df73108c8727cab549fd3 linux-3.0/drivers/i2c/busses/i2c-sis96x.c -6a87a9930dac274c868c4a82199c38e6 linux-3.0/drivers/i2c/busses/i2c-sis630.c -c4163e06606b3899c68311aa9e1b5104 linux-3.0/drivers/i2c/busses/i2c-sis5595.c -e3b79064f77a2aead71ef3b7b415b71d linux-3.0/drivers/i2c/busses/i2c-simtec.c -9370453ce45aed40c0c6f6e9fa487f47 linux-3.0/drivers/i2c/busses/i2c-sibyte.c -29a873ebd3fa1728d33d1771069c8c88 linux-3.0/drivers/i2c/busses/i2c-sh_mobile.c -2d29fb34320c2d834cd56e281ae3b179 linux-3.0/drivers/i2c/busses/i2c-sh7760.c -2eb534692c7f3499df1383c6cdf52106 linux-3.0/drivers/i2c/busses/i2c-scmi.c -f163a58da994b748d533146e2994aab2 linux-3.0/drivers/i2c/busses/i2c-s6000.h -4c2f7b7681661c4d6ec00599e8b653ee linux-3.0/drivers/i2c/busses/i2c-s6000.c -7553075744a30e8ff9b09b652884c3a1 linux-3.0/drivers/i2c/busses/i2c-s3c2410.c -02f3d710e8de296b56c61a1d7f60cb9b linux-3.0/drivers/i2c/busses/i2c-pxa.c -edb657de26fd389bd8c7521ddd58b93c linux-3.0/drivers/i2c/busses/i2c-pxa-pci.c -2f593f714b9509fb59b9ba43e9b8e196 linux-3.0/drivers/i2c/busses/i2c-puv3.c -9fba7589bf55b17afa3d1442b0fdfd13 linux-3.0/drivers/i2c/busses/i2c-powermac.c -9d15db2581f2de6e6e4c3c9a77fed852 linux-3.0/drivers/i2c/busses/i2c-pnx.c -44eb9ff6a6c83ee2b7a8a53aab4f258d linux-3.0/drivers/i2c/busses/i2c-pmcmsp.c -7833d127805a0d64c28769780e6b94e7 linux-3.0/drivers/i2c/busses/i2c-piix4.c -fece654d8e7063ed6ee852c059dffcb3 linux-3.0/drivers/i2c/busses/i2c-pca-platform.c -f95aa13892df9205dc84f2b1a014e128 linux-3.0/drivers/i2c/busses/i2c-pca-isa.c -a3c945ac965d7859b2d7a5b2499c8098 linux-3.0/drivers/i2c/busses/i2c-pasemi.c -928d7e1b29dc4e7f542381a4cd529793 linux-3.0/drivers/i2c/busses/i2c-parport.h -33a8e1f02bc33d300a69973ed6169b53 linux-3.0/drivers/i2c/busses/i2c-parport.c -958ac728cb0ad3353cbedef4ec350966 linux-3.0/drivers/i2c/busses/i2c-parport-light.c -33555032e87b32b2e261c3619738216a linux-3.0/drivers/i2c/busses/i2c-omap.c -49fc4976263907cd32d2478b1a34244e linux-3.0/drivers/i2c/busses/i2c-octeon.c -1ea39c7c155aa08cdeb9511cefd634d6 linux-3.0/drivers/i2c/busses/i2c-ocores.c -d766a5638da9c36009c73a6f2b0bd622 linux-3.0/drivers/i2c/busses/i2c-nuc900.c -76364e30eb8391ca6585c85fd8e4e2da linux-3.0/drivers/i2c/busses/i2c-nomadik.c -c397fd5240722062d3556fd890936fd7 linux-3.0/drivers/i2c/busses/i2c-nforce2.c -9b0bad4e9c82d16a456e7ac6e05b5a9e linux-3.0/drivers/i2c/busses/i2c-nforce2-s4985.c -bb93f4e536d5525a5ebed4786ea3d6da linux-3.0/drivers/i2c/busses/i2c-mxs.c -273622a1bfb2fbb61776f0470164ce39 linux-3.0/drivers/i2c/busses/i2c-mv64xxx.c -1b765c9a1dc5b12a199bbddc7275360f linux-3.0/drivers/i2c/busses/i2c-mpc.c -380931987973cdbc13e04a10ab1d99fb linux-3.0/drivers/i2c/busses/i2c-ixp2000.c -80d06c9c4367f8e881272a2a846ce6e2 linux-3.0/drivers/i2c/busses/i2c-isch.c -ef05a31909463c13f3adb7cd51539da0 linux-3.0/drivers/i2c/busses/i2c-iop3xx.h -d7363966bb1124680596ee7147c04ddd linux-3.0/drivers/i2c/busses/i2c-iop3xx.c -9a267107b65f579e84d78fd96fee6d80 linux-3.0/drivers/i2c/busses/i2c-intel-mid.c -c6c0a6af7f0518db2b0d90e2780deb35 linux-3.0/drivers/i2c/busses/i2c-imx.c -2b6dbef9017300ef22029da8e218c9cd linux-3.0/drivers/i2c/busses/i2c-ibm_iic.h -f6fb883dd767f75553015cfbcdae2405 linux-3.0/drivers/i2c/busses/i2c-ibm_iic.c -9fe14cef5b5470dd6cbc6a92c94e0853 linux-3.0/drivers/i2c/busses/i2c-i801.c -9cb233319a2d6c0fefb20e49cb56e7a1 linux-3.0/drivers/i2c/busses/i2c-hydra.c -e70b984ce1f2a7c191d3e0a4edb3dd56 linux-3.0/drivers/i2c/busses/i2c-highlander.c -3bbe8c540f94206adf4c286804197bad linux-3.0/drivers/i2c/busses/i2c-gpio.c -4a34562713a694939bc9442cb1207513 linux-3.0/drivers/i2c/busses/i2c-elektor.c -bf0b5f38e507f991313df6efed6d7318 linux-3.0/drivers/i2c/busses/i2c-eg20t.c -661e55fb94fff83c01af846ae8a427cc linux-3.0/drivers/i2c/busses/i2c-diolan-u2c.c -4e30b3817037b8b631948e49d694eeb7 linux-3.0/drivers/i2c/busses/i2c-designware.c -1fa24752d28ea3018401c41c6f13940e linux-3.0/drivers/i2c/busses/i2c-davinci.c -ea0db174f2403e6c3da1f004222a3928 linux-3.0/drivers/i2c/busses/i2c-cpm.c -525075c725c881814fa9a92a46d684ae linux-3.0/drivers/i2c/busses/i2c-bfin-twi.c -1c2780c61ace15ec8beb245a50969675 linux-3.0/drivers/i2c/busses/i2c-au1550.c -50409804d3a85eb6a99b0d7749479daf linux-3.0/drivers/i2c/busses/i2c-at91.c -2444f0ac5bd231a66f1dae5a6f42c574 linux-3.0/drivers/i2c/busses/i2c-amd8111.c -9fad43a98986190aeb53fdaca325c12c linux-3.0/drivers/i2c/busses/i2c-amd756.c -fe1262f3ddadbb439ea37fefd94eb4a8 linux-3.0/drivers/i2c/busses/i2c-amd756-s4882.c -448bf12aeb3aab55928ede1c602589d6 linux-3.0/drivers/i2c/busses/i2c-ali15x3.c -60d132a8dbb70696faa35b3f9fb8e909 linux-3.0/drivers/i2c/busses/i2c-ali1563.c -a024af6e8d27fd0a53990d7245bbd13b linux-3.0/drivers/i2c/busses/i2c-ali1535.c -63a9334f27919d79cb66c28f593af249 linux-3.0/drivers/i2c/busses/i2c-acorn.c -aec31b9551d73d85904406d4ba11b7ef linux-3.0/drivers/i2c/busses/Makefile -ed336d254e166de589cb9ac820830f0a linux-3.0/drivers/i2c/busses/Kconfig -de2af98d20a99aad2d6e4bcbe4837388 linux-3.0/drivers/i2c/algos/i2c-algo-pcf.h -78da11e0347a7287c206d4c96529d011 linux-3.0/drivers/i2c/algos/i2c-algo-pcf.c -8b091ab88c1f432df265849be6829274 linux-3.0/drivers/i2c/algos/i2c-algo-pca.c -5f47f628fd3a19bf128eaa5a32ed6b41 linux-3.0/drivers/i2c/algos/i2c-algo-bit.c -87a051531208d4ffbff855d6ee7f1570 linux-3.0/drivers/i2c/algos/Makefile -668610894612d1ba1692b764dd66e8b0 linux-3.0/drivers/i2c/algos/Kconfig -3f4ed223557d96b0a4db58bb30399b56 linux-3.0/drivers/i2c/Makefile -567249dcd397664c067516f0c32b9c5b linux-3.0/drivers/i2c/Kconfig -82202d637840612651d8a69650ad6b9b linux-3.0/drivers/hwspinlock/omap_hwspinlock.c -53dae61fef756a2fe36ff09e93d8cb68 linux-3.0/drivers/hwspinlock/hwspinlock_internal.h -8fa68d8fb1afc4b91e2825db6430dcdd linux-3.0/drivers/hwspinlock/hwspinlock_core.c -5a26c7f74b02227e019cf807073b4d6d linux-3.0/drivers/hwspinlock/Makefile -c3b110780c15c3ba770987447bee5583 linux-3.0/drivers/hwspinlock/Kconfig -3d6f214a9fa0d877ba54df216f2990a8 linux-3.0/drivers/hwmon/wm8350-hwmon.c -2136fd512c84001b3e5cdc197e1949df linux-3.0/drivers/hwmon/wm831x-hwmon.c -b3649e00cd014e23a0d80dcb36cd1e4d linux-3.0/drivers/hwmon/w83l786ng.c -84093cda5ce2ec78c4905c4608821cc1 linux-3.0/drivers/hwmon/w83l785ts.c -1316eb54f9e8fae693c024078da82388 linux-3.0/drivers/hwmon/w83795.c -ff9b8d9d5c5ec1fbd7ae8eab19092106 linux-3.0/drivers/hwmon/w83793.c -c5cb4f436085fdcf783ff347c519ccb9 linux-3.0/drivers/hwmon/w83792d.c -2526baf864007bc375da4bae68ee7867 linux-3.0/drivers/hwmon/w83791d.c -b7eab4dceeedd9d6677836b908ad69b4 linux-3.0/drivers/hwmon/w83781d.c -4a7aa7fb2264e096747ba38a99b49e6d linux-3.0/drivers/hwmon/w83627hf.c -6e1dbd4e0fc49202675424ceef5a692b linux-3.0/drivers/hwmon/w83627ehf.c -a267e6ac23eb343e4703a4c711958edd linux-3.0/drivers/hwmon/vt8231.c -e324dca7e8e6c2f300b276000f015e11 linux-3.0/drivers/hwmon/vt1211.c -fa651ebb4d60989878a526914bed63a5 linux-3.0/drivers/hwmon/via686a.c -c28beeb7939459d12eb4f3f4e8883919 linux-3.0/drivers/hwmon/via-cputemp.c -2d78e8f2f3e4cb81f3668770d53c28df linux-3.0/drivers/hwmon/ultra45_env.c -63fdf8042460f3543289b75897845189 linux-3.0/drivers/hwmon/ucd9200.c -7fa0502b48001d12dfc9977552c80bec linux-3.0/drivers/hwmon/ucd9000.c -0252c8a9aafdd20349315974c0edada3 linux-3.0/drivers/hwmon/twl4030-madc-hwmon.c -1ce8ad015fef18683c0a72b04eca265c linux-3.0/drivers/hwmon/tmp421.c -e48ae6a311ddfda325d8129da1b907c7 linux-3.0/drivers/hwmon/tmp401.c -c2a0ff83bfc223802111900a7b5ce5d7 linux-3.0/drivers/hwmon/tmp102.c -d94f89e9bd1fd3aeaf6b686efff6fc97 linux-3.0/drivers/hwmon/thmc50.c -73d9d73234be8c7e1cb1a0fd96ba7ed7 linux-3.0/drivers/hwmon/smsc47m192.c -8b55634c6a2c6532dd456091daf4e29a linux-3.0/drivers/hwmon/smsc47m1.c -7ce1ac42487179745f141ebcfb6b00b7 linux-3.0/drivers/hwmon/smsc47b397.c -fef65c62d0e3a573d6d657be3fbbb866 linux-3.0/drivers/hwmon/smm665.c -a67ef6e8c810dad0c33a7a5c16c67d01 linux-3.0/drivers/hwmon/sis5595.c -b2249a49d2e1fcf44e70e6cd31bd6c0a linux-3.0/drivers/hwmon/sht21.c -b7310567f30ab602c40b70798a99bea5 linux-3.0/drivers/hwmon/sht15.c -4b4fe0a31072184a3453180bd723ee67 linux-3.0/drivers/hwmon/sch5627.c -32f650a59282ea48dc24bf7867fb2849 linux-3.0/drivers/hwmon/s3c-hwmon.c -4596a54826ccbc44256c6b9e27d545a5 linux-3.0/drivers/hwmon/pmbus_core.c -5900f5bffd2a9476d322139a76f13d6f linux-3.0/drivers/hwmon/pmbus.h -1ba21206106425a0547de14b4ed5e4e6 linux-3.0/drivers/hwmon/pmbus.c -cadf276d5692c918d157ea5d1d59b4e8 linux-3.0/drivers/hwmon/pcf8591.c -5ab9c7ca5cda4b38ec3fc08b44efe677 linux-3.0/drivers/hwmon/pc87427.c -56688e0b0e51fcd699fdf4fe3588b82d linux-3.0/drivers/hwmon/pc87360.c -f2f340d409b41fd904cf72d59308b626 linux-3.0/drivers/hwmon/mc13783-adc.c -1466a0a3dd3f601fa04e8d7b6b4df437 linux-3.0/drivers/hwmon/max8688.c -818895a22af5b6f405670d4cc84be2ec linux-3.0/drivers/hwmon/max6650.c -1d8da5f63872106a44a7fcc913416a6d linux-3.0/drivers/hwmon/max6642.c -fe481cfcb3b3dce5187127d3480bd963 linux-3.0/drivers/hwmon/max6639.c -3faf4ce5a1f4341d629bee562e1e54da linux-3.0/drivers/hwmon/max34440.c -e15897b77727d97af64e5f7a14d8a5f6 linux-3.0/drivers/hwmon/max1619.c -995f45a1108956318a7fecc82d8d9bdb linux-3.0/drivers/hwmon/max16065.c -b3b7866007ed9428f676bc161c813621 linux-3.0/drivers/hwmon/max16064.c -de40e7412569d4bceb72efaacdd87de1 linux-3.0/drivers/hwmon/max1111.c -6b5f76bcf0a3328d3419065f823795f3 linux-3.0/drivers/hwmon/ltc4261.c -c86536d873ff5d5060dc8583fc47d81d linux-3.0/drivers/hwmon/ltc4245.c -ee5b9aa4d2d58b899423e2c97e6558a8 linux-3.0/drivers/hwmon/ltc4215.c -979df375f9cff985fc5e26adfbd42aeb linux-3.0/drivers/hwmon/ltc4151.c -aca856f759c0eb111a48404743988ecd linux-3.0/drivers/hwmon/lm95241.c -8f835a5623928c571a8ff514479441ca linux-3.0/drivers/hwmon/lm93.c -5fcfa96237197e0fcafa71309786a69d linux-3.0/drivers/hwmon/lm92.c -99e7ee7d2b06eb3b3aa2e1eba0195c8a linux-3.0/drivers/hwmon/lm90.c -aa8ae1e32299275f2f314ed88e27ef4d linux-3.0/drivers/hwmon/lm87.c -2fb4fce73c09a5237d136ec326aad55c linux-3.0/drivers/hwmon/lm85.c -c7a5e1cb9211f52229f3bd518dc78d5b linux-3.0/drivers/hwmon/lm83.c -f1f8362bd7ccb670817309a97275b49f linux-3.0/drivers/hwmon/lm80.c -ffb4838bad1f99d1cf8490a9585f3932 linux-3.0/drivers/hwmon/lm78.c -3c901fcd54f854366ce54a6defd3ef92 linux-3.0/drivers/hwmon/lm77.c -cb1cacbeeeb88fadaaf2654f92c7b5ae linux-3.0/drivers/hwmon/lm75.h -ed670980981f45549bd0ef3e43c0f19c linux-3.0/drivers/hwmon/lm75.c -31bc9b22b12c65a40452bd5991e8bcb8 linux-3.0/drivers/hwmon/lm73.c -659ff69770d695615c7b8f52efe4863e linux-3.0/drivers/hwmon/lm70.c -af728b5525efe6bf34f31e05551a382d linux-3.0/drivers/hwmon/lm63.c -c3b3f49fb720eb85a14a548e3bb6438f linux-3.0/drivers/hwmon/lineage-pem.c -e131fcd73fceb207aa1faf78c59d2936 linux-3.0/drivers/hwmon/k8temp.c -81c2c394b69f0968079eb5390f4d90e6 linux-3.0/drivers/hwmon/k10temp.c -7f748acae07382f6ccb96b89bcb743c2 linux-3.0/drivers/hwmon/jz4740-hwmon.c -8238b6d83a07ee39fddb7b9cd41ce760 linux-3.0/drivers/hwmon/jc42.c -4564b659ce1f0b0b1f2cf144d78a429c linux-3.0/drivers/hwmon/it87.c -192776f042fc15857493083ef70abd81 linux-3.0/drivers/hwmon/ibmpex.c -6b10ede8462529a2ac8769ad1444afcf linux-3.0/drivers/hwmon/ibmaem.c -19870b420120ce4e9d8beb4531189b2f linux-3.0/drivers/hwmon/i5k_amb.c -abe41aa263210dbcab26cc2f0244b592 linux-3.0/drivers/hwmon/hwmon.c -47a0b0254b8a7b2e91158097569555e4 linux-3.0/drivers/hwmon/hwmon-vid.c -78a2ebc03688ba3c61d73ff3687c81e0 linux-3.0/drivers/hwmon/gpio-fan.c -868c7982877ac7a7b5de3c0bda32069e linux-3.0/drivers/hwmon/gl520sm.c -5226a19efac7c2f2db387fac407b4b0c linux-3.0/drivers/hwmon/gl518sm.c -ed6044e0931b98179ad997b18baf05de linux-3.0/drivers/hwmon/g760a.c -89f6edfad38d184d335a6945e4c769c9 linux-3.0/drivers/hwmon/fschmd.c -ceb0140991a35c929e323411e5e5476f linux-3.0/drivers/hwmon/fam15h_power.c -e3bcdfcd32e976fc9596e4c9738d01a2 linux-3.0/drivers/hwmon/f75375s.c -c0dd0efd89db6f0262bc3ba8fccd16ec linux-3.0/drivers/hwmon/f71882fg.c -f0915534f8b92bd0d5b19d54579b8033 linux-3.0/drivers/hwmon/f71805f.c -2c3b66023d71e721d8df5779364eca5c linux-3.0/drivers/hwmon/emc6w201.c -5a4c9306169c0bd803b16364f9e574e1 linux-3.0/drivers/hwmon/emc2103.c -612db8b18d7c816f7b1f0a81e4731b04 linux-3.0/drivers/hwmon/emc1403.c -03b31f0e413bca03c7e7c31ba532bd24 linux-3.0/drivers/hwmon/ds620.c -cbe6c0d664adce30cf02d1443546c9b8 linux-3.0/drivers/hwmon/ds1621.c -02186ee133361b2d2a7da14031d5d4c3 linux-3.0/drivers/hwmon/dme1737.c -519f8ea316fc1527bd7d07a87d1c1320 linux-3.0/drivers/hwmon/coretemp.c -d152ec0bbaba6067560a840a41f4e0ad linux-3.0/drivers/hwmon/atxp1.c -3be340a31582add72068204b17a8cf76 linux-3.0/drivers/hwmon/asus_atk0110.c -53147abe031f33226322c46a0454c3f8 linux-3.0/drivers/hwmon/asc7621.c -ae0ba93b524e1b69f32d9c0e4feb5758 linux-3.0/drivers/hwmon/asb100.c -ac137db954bef2fc78f1637305a0c638 linux-3.0/drivers/hwmon/applesmc.c -158a554316e6bb26ce946f0ffd8e1b8b linux-3.0/drivers/hwmon/amc6821.c -99d76ce6ec79d153369dc15e95204787 linux-3.0/drivers/hwmon/adt7475.c -4443692d41f5be213f81bf847f75fc2d linux-3.0/drivers/hwmon/adt7470.c -66735519d33ca5d11ea134b8e1687da7 linux-3.0/drivers/hwmon/adt7462.c -a484ed41c69367c9b09d74d4adb286e8 linux-3.0/drivers/hwmon/adt7411.c -74a00c899e417c083374aa5175133fa3 linux-3.0/drivers/hwmon/ads7871.c -8056b1203558cb2557a277a82002a4ea linux-3.0/drivers/hwmon/ads7828.c -508643cb87673b2a2b00a436ad3ea8bf linux-3.0/drivers/hwmon/ads1015.c -1685cc80f9f936d43f57e3f493e5e0fe linux-3.0/drivers/hwmon/adm9240.c -75451771ff125aff9278e66df91def0b linux-3.0/drivers/hwmon/adm1275.c -0fffb68acde8176cb79e5fef13c471af linux-3.0/drivers/hwmon/adm1031.c -a49a4c8aef41e0cf122ef87fad503c50 linux-3.0/drivers/hwmon/adm1029.c -0b4719505aea658e7ce367691bed5f00 linux-3.0/drivers/hwmon/adm1026.c -750c52eb5f6438626a78543e9538cb09 linux-3.0/drivers/hwmon/adm1025.c -e6c8b26b753d9cb24d382a1057838269 linux-3.0/drivers/hwmon/adm1021.c -a5eacfd3d64c23fb117e32948fc8177f linux-3.0/drivers/hwmon/adcxx.c -ceb91b1d8b4774367d7575810507e5cb linux-3.0/drivers/hwmon/ad7418.c -6fc00b682cb99081027ff088f22aaab6 linux-3.0/drivers/hwmon/ad7414.c -ca8d8689f2c3574b161d26e9c9c0daae linux-3.0/drivers/hwmon/acpi_power_meter.c -5401507718fdf5969f76d7f6c48fb2d5 linux-3.0/drivers/hwmon/abituguru3.c -548a3d81dbc0e04fd5084cc6b689d524 linux-3.0/drivers/hwmon/abituguru.c -3c823f43197c8577ad9f7334c4cac9aa linux-3.0/drivers/hwmon/Makefile -4dd6d3f5baa674255badf929eddb22b1 linux-3.0/drivers/hwmon/Kconfig -312648500492cb8425af022242b71a6a linux-3.0/drivers/hid/usbhid/usbmouse.c -f9888004e0304b695896356d9d6ba8b9 linux-3.0/drivers/hid/usbhid/usbkbd.c -231877044739ed398f31c889a08c513b linux-3.0/drivers/hid/usbhid/usbhid.h -dbeb270ad798fcff3e866985072d5ae2 linux-3.0/drivers/hid/usbhid/hiddev.c -095ceb512137375122fcd3615ce139b9 linux-3.0/drivers/hid/usbhid/hid-quirks.c -499389738615ec337a2fb8fc8476ac1a linux-3.0/drivers/hid/usbhid/hid-pidff.c -116f5f9d092e5a143752033897a5e6a1 linux-3.0/drivers/hid/usbhid/hid-core.c -c618c2ef6ac340117d16876a90ad0768 linux-3.0/drivers/hid/usbhid/Makefile -56550e3d5a6611091a1f7af9daab8a3a linux-3.0/drivers/hid/usbhid/Kconfig -c308c5f267326167c3e2ac0125ea6994 linux-3.0/drivers/hid/hidraw.c -85f46d87949a065ac93f97f010066962 linux-3.0/drivers/hid/hid-zydacron.c -39fab3b32131fd5136ef1afd1dd538ef linux-3.0/drivers/hid/hid-zpff.c -e5dd14fb220192d7b46ef48e4ba12e1b linux-3.0/drivers/hid/hid-waltop.c -9e63ac34478afbe3ba5a923b075dfea7 linux-3.0/drivers/hid/hid-wacom.c -7d7b3fe139fa681e3abad80ea654ba84 linux-3.0/drivers/hid/hid-uclogic.c -acb1bc592c185c275c3f6e1036373cf5 linux-3.0/drivers/hid/hid-twinhan.c -e1e8619aeb5b6c11169796b6f7e2b577 linux-3.0/drivers/hid/hid-topseed.c -0741510313ead4b466c7bb8b8b7634f6 linux-3.0/drivers/hid/hid-tmff.c -3b72c2deba9d7e1e5ac04f4b45f3184d linux-3.0/drivers/hid/hid-sunplus.c -687f0edbb9c168e32cd83aee0e2584dd linux-3.0/drivers/hid/hid-sony.c -35aab92dd1fa552f46498ef84c9d3623 linux-3.0/drivers/hid/hid-sjoy.c -0de20733f52a43deb4ee5388b7e8e166 linux-3.0/drivers/hid/hid-samsung.c -2182ba11ddc6a86c2aec9dc3ba5edbf9 linux-3.0/drivers/hid/hid-roccat.c -f7ab2a6eacf70880edc06fe0b4972666 linux-3.0/drivers/hid/hid-roccat-pyra.h -c030aa3d6410cf0b4726b8549c4add05 linux-3.0/drivers/hid/hid-roccat-pyra.c -76908876b2bab439a826fa4455a6bede linux-3.0/drivers/hid/hid-roccat-kovaplus.h -3917d33a3b1c6bd54a162d11bad31dd1 linux-3.0/drivers/hid/hid-roccat-kovaplus.c -7fe9da05860fa2c182f98ee42798835a linux-3.0/drivers/hid/hid-roccat-koneplus.h -8976d6a9f07b4dc320bd15edc80d914b linux-3.0/drivers/hid/hid-roccat-koneplus.c -2e60f3d55a05f54d52de6a6bdfd5a7e0 linux-3.0/drivers/hid/hid-roccat-kone.h -f790e0f9cff9e9784f062d780083c7ec linux-3.0/drivers/hid/hid-roccat-kone.c -126440b8d26ad333c77bf60127324afb linux-3.0/drivers/hid/hid-roccat-common.h -c5342a42f7fdcc27f0b39c5922646c77 linux-3.0/drivers/hid/hid-roccat-common.c -4533d85d4a890187fb69d162571bc747 linux-3.0/drivers/hid/hid-roccat-arvo.h -5e404ec0adcded393e7c7767d96fb8e9 linux-3.0/drivers/hid/hid-roccat-arvo.c -00d4c512255be795718b599813c2f0ea linux-3.0/drivers/hid/hid-quanta.c -314be5b671314d69617617b8626a5777 linux-3.0/drivers/hid/hid-prodikeys.c -969ee387b82156640fe02a6ea85cb31a linux-3.0/drivers/hid/hid-pl.c -618607b2ee40a1bfc08d9c4294485986 linux-3.0/drivers/hid/hid-picolcd.c -16595fc9904f872c7e098d7dd650bace linux-3.0/drivers/hid/hid-petalynx.c -41524ee08ae1640715465149833ca85b linux-3.0/drivers/hid/hid-ortek.c -b3aa5af18ec5230c0c0d4ed6f9a883d6 linux-3.0/drivers/hid/hid-ntrig.c -cd098989c46262c5380c222b6dc82708 linux-3.0/drivers/hid/hid-multitouch.c -dd891785ddab7eeaa0c3da880f4f3dee linux-3.0/drivers/hid/hid-monterey.c -21457137d5d2caa39a73e450d685a4b5 linux-3.0/drivers/hid/hid-microsoft.c -056c1f3f46e1713dede98ec0f80b5c81 linux-3.0/drivers/hid/hid-magicmouse.c -4b19ef60fefbc7a86da2c59793fc3519 linux-3.0/drivers/hid/hid-lgff.c -9a8627cb2ea2596a08b23302043c1f2e linux-3.0/drivers/hid/hid-lg4ff.c -cd501342731626a2d3d1d249d8e3256c linux-3.0/drivers/hid/hid-lg3ff.c -55ee56fc28f3e5535bad847744fdec7d linux-3.0/drivers/hid/hid-lg2ff.c -5dfe31d3b12f2b2f3bd32aeb3122fad5 linux-3.0/drivers/hid/hid-lg.h -929a90ff42bf428097cf27e99fdd4200 linux-3.0/drivers/hid/hid-lg.c -6473373d5d3a7155c7dd29f47e34852b linux-3.0/drivers/hid/hid-lcpower.c -364f61d9eb9f96bd4ae506cdb3a26721 linux-3.0/drivers/hid/hid-kye.c -d710fab982e88917f9e59627ff65beae linux-3.0/drivers/hid/hid-keytouch.c -ffa82c87e414984dae6349f29c843b87 linux-3.0/drivers/hid/hid-kensington.c -63150f5d5d736c67b79a99cb1a115a9c linux-3.0/drivers/hid/hid-input.c -9d807f25401e3eea6aae5b3ae5f02686 linux-3.0/drivers/hid/hid-ids.h -d6f2f73b25fe0d1c598f1c77d7cf0801 linux-3.0/drivers/hid/hid-gyration.c -8e11f948a1e0467a1745600fb87a4efe linux-3.0/drivers/hid/hid-gaff.c -00a22599fcd6f0f76f59e8e5183a114c linux-3.0/drivers/hid/hid-ezkey.c -b0d48a8f3e41ece98130bdf3020cbbb4 linux-3.0/drivers/hid/hid-emsff.c -498d0bc6868c2a8460eabe41f1f5db4c linux-3.0/drivers/hid/hid-elecom.c -4db8d904e8b8c2db6b0aec0b27797279 linux-3.0/drivers/hid/hid-dr.c -765fb2379facd296ed7d9478fbdae809 linux-3.0/drivers/hid/hid-debug.c -e36f1a9e6956b77fc8ee677315d4c0be linux-3.0/drivers/hid/hid-cypress.c -9c578fe2e69a06884097c8d2c5ba9eac linux-3.0/drivers/hid/hid-core.c -de27c6dfbd52064a88f608a8cb3f97fa linux-3.0/drivers/hid/hid-chicony.c -400d500c4a1e583827f0df980aba0f37 linux-3.0/drivers/hid/hid-cherry.c -f480228b6c0ded601c9c1f7aad3e1576 linux-3.0/drivers/hid/hid-belkin.c -b7ec1037fd57054a5f900a78ab4a5515 linux-3.0/drivers/hid/hid-axff.c -3250c00591a14242a5be1e10098c0dea linux-3.0/drivers/hid/hid-apple.c -2d629aff5cc7e6f8467f24262f6d091d linux-3.0/drivers/hid/hid-a4tech.c -0b9f317f14dd88060f0be82169d2483e linux-3.0/drivers/hid/Makefile -92ca2d8cc923195aebfc6f81d50b5acd linux-3.0/drivers/hid/Kconfig -d05e8302479f236339df39e4e688b580 linux-3.0/drivers/gpu/vga/vgaarb.c -3867134c5e0d0d029bbbdf93e4500a8e linux-3.0/drivers/gpu/vga/vga_switcheroo.c -549e8fcf47d1b4e44bd92018c9f8f8b6 linux-3.0/drivers/gpu/vga/Makefile -436f4bbf68c9364787570a90745f3536 linux-3.0/drivers/gpu/vga/Kconfig -53883f62fc151fc29e131b22449ca10b linux-3.0/drivers/gpu/stub/poulsbo.c -914b1a8cf53881210fd3e19e6071ff57 linux-3.0/drivers/gpu/stub/Makefile -485dadd739ffe3b852715a7d682e5125 linux-3.0/drivers/gpu/stub/Kconfig -16aa25cd4a8ad5cfd1d9b21d36e28315 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_glue.c -efe568f3d1521946a89f105481d44213 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_resource.c -ff0ac4b55ac2445d928eee0bb31560e6 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_reg.h -525a2514da7e8cbd098a2ee901944b5f linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c -7b6615fc4c44846d12fb38b06ad92676 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_ldu.c -28422a266deadffa616d7b8407104227 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.h -cad22fefb91b6246d2410734c83aaae6 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c -5c310667785a2ed2ee42032e6933ec12 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_irq.c -711ecbfa7cf9d484d746526f7ae3d26c linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c -50c6bc70d43f20cd1072cc0b72bf2042 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_gmrid_manager.c -b1c01f41b126fd1440983bfce7ac9009 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_gmr.c -b8fae206243f822a3cab0ca72f70f56e linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c -f21dc987a96d0ba8c3747390f3c102a2 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_fence.c -e451355e4ab78d0af0a12e5caffdae77 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c -3211b46db1f44b246dfc26e1335d9966 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c -f4fdda46932497613649d888582b8c82 linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h -23e45a065304bac21f415a742fff554c linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c -bb3fcffa4cdb54094bbd3299c72450ca linux-3.0/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c -e46984e1ee97e732895be9a48c10dcfc linux-3.0/drivers/gpu/drm/vmwgfx/svga_types.h -616fef9a4b92589d4f27a51d0f69e470 linux-3.0/drivers/gpu/drm/vmwgfx/svga_reg.h -72d6126abdcf5961d6a58bc32dd52bd5 linux-3.0/drivers/gpu/drm/vmwgfx/svga_overlay.h -6298764cf8eafbe64b41ebf2118b5fdc linux-3.0/drivers/gpu/drm/vmwgfx/svga_escape.h -552a390750e7a4f8018faf28bf2f6437 linux-3.0/drivers/gpu/drm/vmwgfx/svga3d_reg.h -9cecb4588ce22cb5d38303a79aceb1dd linux-3.0/drivers/gpu/drm/vmwgfx/Makefile -47d7f792376aeed304ed448734446c4d linux-3.0/drivers/gpu/drm/vmwgfx/Kconfig -a3d03fab2b567872a1ed6a33ca87de7d linux-3.0/drivers/gpu/drm/via/via_video.c -444fc3309508a8bc744f66b174704cd5 linux-3.0/drivers/gpu/drm/via/via_verifier.h -80c7a5ac3302d7eefc1377e0c305894d linux-3.0/drivers/gpu/drm/via/via_verifier.c -3ef070c1e24144805cd2b37339481dc0 linux-3.0/drivers/gpu/drm/via/via_mm.c -62296cab28c2582e29bd1cb11bd989c7 linux-3.0/drivers/gpu/drm/via/via_map.c -343a5954ac4465f443dec49ad6300647 linux-3.0/drivers/gpu/drm/via/via_irq.c -bc2b959fb422d7a0c05132ec0e6bfbf4 linux-3.0/drivers/gpu/drm/via/via_drv.h -19dfc5e3b4c0a063637a6a4c98467cb1 linux-3.0/drivers/gpu/drm/via/via_drv.c -2d604c9d735715bafe3ac1508acca9f0 linux-3.0/drivers/gpu/drm/via/via_dmablit.h -ffd363c43eee9de704efa3f394bebdae linux-3.0/drivers/gpu/drm/via/via_dmablit.c -1d2e7e3bf6b22ce446f7ae807249f9bd linux-3.0/drivers/gpu/drm/via/via_dma.c -196d56a9123a95eb46e1a52027337ccf linux-3.0/drivers/gpu/drm/via/via_3d_reg.h -d29acb2eeb286082a022f9b6e2789405 linux-3.0/drivers/gpu/drm/via/Makefile -da5e57883e6acdea6b78bdea814a66fb linux-3.0/drivers/gpu/drm/ttm/ttm_tt.c -ba38035aa9a124f7446a0730f563f97e linux-3.0/drivers/gpu/drm/ttm/ttm_page_alloc.c -a06b977dea49a78bd9a7ba1d8a7aa001 linux-3.0/drivers/gpu/drm/ttm/ttm_object.c -3f931ee013aef90e5ab94b0c24a7b520 linux-3.0/drivers/gpu/drm/ttm/ttm_module.c -21c85890b43b0da7ef2956d7ad2661f2 linux-3.0/drivers/gpu/drm/ttm/ttm_memory.c -db7736255178afbabdc029ee34bccc15 linux-3.0/drivers/gpu/drm/ttm/ttm_lock.c -cc05e2164b66940dd76a15f9fdf0ec60 linux-3.0/drivers/gpu/drm/ttm/ttm_execbuf_util.c -d54a091af90ac722bc3e365c7563d521 linux-3.0/drivers/gpu/drm/ttm/ttm_bo_vm.c -7d27c6118e86bb054558090fa9a1ba84 linux-3.0/drivers/gpu/drm/ttm/ttm_bo_util.c -d2d9e69aaf5ef4de98dbd112581f6c78 linux-3.0/drivers/gpu/drm/ttm/ttm_bo_manager.c -bec58d38903c1fdfba707a0b701aa448 linux-3.0/drivers/gpu/drm/ttm/ttm_bo.c -cb306a75d064f0598913719f89f89e8e linux-3.0/drivers/gpu/drm/ttm/ttm_agp_backend.c -113dce4354fb5d5451ca085b22435273 linux-3.0/drivers/gpu/drm/ttm/Makefile -e95ccb17f3e41b0f49e96192ad66f0e4 linux-3.0/drivers/gpu/drm/tdfx/tdfx_drv.h -c7652cb3cbff2c1d9efc03b35dcdb15d linux-3.0/drivers/gpu/drm/tdfx/tdfx_drv.c -93d3dac27cead7f0e62a6b022457b81e linux-3.0/drivers/gpu/drm/tdfx/Makefile -ad76b19b7a07c4b72ee1f43d78d77ca9 linux-3.0/drivers/gpu/drm/sis/sis_mm.c -b94ee2819d377e9025e80f0ab8d872ed linux-3.0/drivers/gpu/drm/sis/sis_drv.h -5795a07010094458117a3dfa970dafc6 linux-3.0/drivers/gpu/drm/sis/sis_drv.c -77a38243e75c81ad10718ec8930b77e9 linux-3.0/drivers/gpu/drm/sis/Makefile -5fd3294ac3c14491ae64127eeed94f2f linux-3.0/drivers/gpu/drm/savage/savage_state.c -0b51884bde019eaf90b9ae88da34bce7 linux-3.0/drivers/gpu/drm/savage/savage_drv.h -84b685f26cc1ec1066b11a24ee8b1071 linux-3.0/drivers/gpu/drm/savage/savage_drv.c -6dc010fa790dc9913e1ca94ce8ec8018 linux-3.0/drivers/gpu/drm/savage/savage_bci.c -f16566bb17cf3044c6c32f840976710a linux-3.0/drivers/gpu/drm/savage/Makefile -79b768c74bb9718ffccbce39e6cef623 linux-3.0/drivers/gpu/drm/radeon/rv770d.h -76c8c7f45b5865facdb04add0b58419a linux-3.0/drivers/gpu/drm/radeon/rv770.c -3f34d0840b16ef329a6f098923029a26 linux-3.0/drivers/gpu/drm/radeon/rv515d.h -7676b46559a96322cb599cf6492d74ec linux-3.0/drivers/gpu/drm/radeon/rv515.c -8275c17d1e21d5b5ec8ddf889206324e linux-3.0/drivers/gpu/drm/radeon/rv350d.h -40abe47bbd9cd67f4b685ded121b0c8b linux-3.0/drivers/gpu/drm/radeon/rv250d.h -d338e7b3a67d28bdba89ffbc40d6b0e2 linux-3.0/drivers/gpu/drm/radeon/rv200d.h -30badb4c64280536ec48aad58311b653 linux-3.0/drivers/gpu/drm/radeon/rs690d.h -2495e335fb1d53ab66fc5e39f430eff8 linux-3.0/drivers/gpu/drm/radeon/rs690.c -604b7340323e8875c22249d2c5621f68 linux-3.0/drivers/gpu/drm/radeon/rs600d.h -a98fbb400934a8a287da0a7a8dd5c655 linux-3.0/drivers/gpu/drm/radeon/rs600.c -712dda08fa979df8893977c366f14cae linux-3.0/drivers/gpu/drm/radeon/rs400d.h -02b18328a8a2734291fc53b259e675eb linux-3.0/drivers/gpu/drm/radeon/rs400.c -30201a6e04778471891506cbeab1d635 linux-3.0/drivers/gpu/drm/radeon/rs100d.h -5679a1198bb3131e46f2e93d63155abd linux-3.0/drivers/gpu/drm/radeon/reg_srcs/rv515 -77806b23ac3d85e88b0b31314336751c linux-3.0/drivers/gpu/drm/radeon/reg_srcs/rs600 -d5d8419e3c838c9af4d85f46a22a3cf5 linux-3.0/drivers/gpu/drm/radeon/reg_srcs/rn50 -d439f4a11268d9839b3a963bb1f68586 linux-3.0/drivers/gpu/drm/radeon/reg_srcs/r600 -bf83b536b01b1c16de368dce2a209e7f linux-3.0/drivers/gpu/drm/radeon/reg_srcs/r420 -cab10703bb742dcc9932ef12a50b8972 linux-3.0/drivers/gpu/drm/radeon/reg_srcs/r300 -fbf06d57dac563c3439e9a73a78c8b2e linux-3.0/drivers/gpu/drm/radeon/reg_srcs/r200 -80a28c4079fe889e2b209d8b7fba1712 linux-3.0/drivers/gpu/drm/radeon/reg_srcs/r100 -8789f4798b7d0165028e6b56804f4698 linux-3.0/drivers/gpu/drm/radeon/reg_srcs/evergreen -cfd32a5a20d95bc8eda566a99e3237f0 linux-3.0/drivers/gpu/drm/radeon/reg_srcs/cayman -61becd203efe41b0db7f57ab1d7bb84e linux-3.0/drivers/gpu/drm/radeon/radeon_ttm.c -4d04bbf581f1584b7e6c4b355013c3e9 linux-3.0/drivers/gpu/drm/radeon/radeon_trace_points.c -de0787e08e44556789809d7daabb7118 linux-3.0/drivers/gpu/drm/radeon/radeon_trace.h -49948095f7f2a8454b6de89a77f35b02 linux-3.0/drivers/gpu/drm/radeon/radeon_test.c -65eb833e5d1c9d5168da0789e90b5835 linux-3.0/drivers/gpu/drm/radeon/radeon_state.c -0744b0f9adb3b135cf14475d972bad8a linux-3.0/drivers/gpu/drm/radeon/radeon_ring.c -c866259c624bc40bbbd1e59913d572d7 linux-3.0/drivers/gpu/drm/radeon/radeon_reg.h -aa3881bb90dacf5af293ed8b387af7d7 linux-3.0/drivers/gpu/drm/radeon/radeon_pm.c -94fd465021a79da3ffb70028949086f1 linux-3.0/drivers/gpu/drm/radeon/radeon_object.h -b7b5479e2872d5fec8ebdcbe9e44f8c5 linux-3.0/drivers/gpu/drm/radeon/radeon_object.c -beebcda5572ee46155244945b7a77d6b linux-3.0/drivers/gpu/drm/radeon/radeon_mode.h -af20e63ae11be99d003cb0f9b14d847b linux-3.0/drivers/gpu/drm/radeon/radeon_mem.c -dc89d84056c35a55264bb25ec9105414 linux-3.0/drivers/gpu/drm/radeon/radeon_legacy_tv.c -5e08d35b7eaaf9a760f35deb1371b47d linux-3.0/drivers/gpu/drm/radeon/radeon_legacy_encoders.c -65087e4618e154c248705f239f3926a2 linux-3.0/drivers/gpu/drm/radeon/radeon_legacy_crtc.c -8150dc314099cfa4e8e7f3594d10b2dc linux-3.0/drivers/gpu/drm/radeon/radeon_kms.c -e326b164cc85faa8e4f9b98f0399db87 linux-3.0/drivers/gpu/drm/radeon/radeon_irq_kms.c -491176b2458772ca8d238ec93e156fcd linux-3.0/drivers/gpu/drm/radeon/radeon_irq.c -756687f4be892464a648650c01bccb2a linux-3.0/drivers/gpu/drm/radeon/radeon_ioc32.c -3cfc7db2964ba1e93525a41a14f03419 linux-3.0/drivers/gpu/drm/radeon/radeon_i2c.c -ad9f06f45b8869c7d2c0df4641d50c68 linux-3.0/drivers/gpu/drm/radeon/radeon_gem.c -df61fa4f78a29d496e1948441bf874d5 linux-3.0/drivers/gpu/drm/radeon/radeon_gart.c -a8a3e4953c4f12536fd3412e88abdc92 linux-3.0/drivers/gpu/drm/radeon/radeon_fence.c -59131c12af5ff0e04865063970e6cd78 linux-3.0/drivers/gpu/drm/radeon/radeon_fb.c -db3db26a3c22d1127dd3274bea22429c linux-3.0/drivers/gpu/drm/radeon/radeon_family.h -f3578012aa4e3430885e8afd9bfa3625 linux-3.0/drivers/gpu/drm/radeon/radeon_encoders.c -348a1bd8430e20e19b2bcc038576508c linux-3.0/drivers/gpu/drm/radeon/radeon_drv.h -837f828f75d98592ad62076a3b37b65f linux-3.0/drivers/gpu/drm/radeon/radeon_drv.c -8db1e62503cb6ea6656dc1480cf09c8a linux-3.0/drivers/gpu/drm/radeon/radeon_display.c -23622707904885af75009e5f9af7083c linux-3.0/drivers/gpu/drm/radeon/radeon_device.c -2658800619669310cb3e7cbce4e0b25a linux-3.0/drivers/gpu/drm/radeon/radeon_cursor.c -ac899a6568c40c6dea3072506fd9f748 linux-3.0/drivers/gpu/drm/radeon/radeon_cs.c -5b5b070f1b6de71b25e3d14893545954 linux-3.0/drivers/gpu/drm/radeon/radeon_cp.c -ddda47364ce12701552e5ae9d59fd01d linux-3.0/drivers/gpu/drm/radeon/radeon_connectors.c -d2626a5729a2afd5961ef93ea7933878 linux-3.0/drivers/gpu/drm/radeon/radeon_combios.c -e2c4d3f4256d657b45ea37ca07ff078f linux-3.0/drivers/gpu/drm/radeon/radeon_clocks.c -ea7e5ccc950e9a08ffc93bb478c9a844 linux-3.0/drivers/gpu/drm/radeon/radeon_bios.c -526c58e5e3375722432004ac67e5fe79 linux-3.0/drivers/gpu/drm/radeon/radeon_benchmark.c -f72a26c2f3c2ef8584887dc9bd7c038a linux-3.0/drivers/gpu/drm/radeon/radeon_atpx_handler.c -f788978e2de9534f004ebffbf1b2ebe5 linux-3.0/drivers/gpu/drm/radeon/radeon_atombios.c -bfef283c56147ec87833d6c03da57aa2 linux-3.0/drivers/gpu/drm/radeon/radeon_asic.h -8f27cead2c3dcd3328590548edfb2f4b linux-3.0/drivers/gpu/drm/radeon/radeon_asic.c -5b3d60d61ce685b8d8c2a9e6dccd67c9 linux-3.0/drivers/gpu/drm/radeon/radeon_agp.c -e9eea28baffdce915a4c24f030c9f399 linux-3.0/drivers/gpu/drm/radeon/radeon_acpi.c -4fac54cfe83fc1c9fa84a4d97f9bc134 linux-3.0/drivers/gpu/drm/radeon/radeon.h -03cca160b4fdd74694e17d3a24a0bfe2 linux-3.0/drivers/gpu/drm/radeon/r600d.h -33742706a085871e6c12d0429def77a3 linux-3.0/drivers/gpu/drm/radeon/r600_reg.h -237ca8dc4f1ba0aa6e0a02973996d4bf linux-3.0/drivers/gpu/drm/radeon/r600_hdmi.c -54bf5f28bc6dd58f3d32a1422f31e9ff linux-3.0/drivers/gpu/drm/radeon/r600_cs.c -b96c4736fd4b023b12ec1f4ae260d939 linux-3.0/drivers/gpu/drm/radeon/r600_cp.c -4eeb15ae30a2af884ea3cc00a272d4b7 linux-3.0/drivers/gpu/drm/radeon/r600_blit_shaders.h -f84de8907ea63d9be0a589338d3af981 linux-3.0/drivers/gpu/drm/radeon/r600_blit_shaders.c -c8e762458d7e9bf88595289a43e844bd linux-3.0/drivers/gpu/drm/radeon/r600_blit_kms.c -dc0c8add23d46e219fff9d0638a0e62a linux-3.0/drivers/gpu/drm/radeon/r600_blit.c -bb9a52a794c043fbbaf6f50179b9b98c linux-3.0/drivers/gpu/drm/radeon/r600_audio.c -2a329d225074b44f0ae62b9e19bb847c linux-3.0/drivers/gpu/drm/radeon/r600.c -e576c249adae78fc14a9089cbb6b1fe1 linux-3.0/drivers/gpu/drm/radeon/r520d.h -50eb92f0221124a8b869922264482615 linux-3.0/drivers/gpu/drm/radeon/r520.c -9257bc204a78bdd90d394486bcead69c linux-3.0/drivers/gpu/drm/radeon/r500_reg.h -79cedc2aa573f4c7c78a4b6179024820 linux-3.0/drivers/gpu/drm/radeon/r420d.h -b098834cb0491a98ffe3054c312a4eba linux-3.0/drivers/gpu/drm/radeon/r420.c -b764e76a82080eb8a9b829ecd95fb7a7 linux-3.0/drivers/gpu/drm/radeon/r300d.h -daac0c0d42c25665bfda341f2138e243 linux-3.0/drivers/gpu/drm/radeon/r300_reg.h -fbaac4d5630abff1c4d478aeda53eb0b linux-3.0/drivers/gpu/drm/radeon/r300_cmdbuf.c -ab0e5e6a494f44803352a2cdf9e61ec3 linux-3.0/drivers/gpu/drm/radeon/r300.c -76722375b433036244b864bd9192c2f2 linux-3.0/drivers/gpu/drm/radeon/r200.c -bd46f5d259ee39b051b30525aa4305a7 linux-3.0/drivers/gpu/drm/radeon/r100d.h -ee296d1d8b664b073f37da10ce85deea linux-3.0/drivers/gpu/drm/radeon/r100_track.h -0afa72e6b43a5424fa09c51848c87ee2 linux-3.0/drivers/gpu/drm/radeon/r100.c -eaa6ce1a166fbde774aac5079ddc5eee linux-3.0/drivers/gpu/drm/radeon/nid.h -912bc09e932fc6b5fa874bc0cceee7df linux-3.0/drivers/gpu/drm/radeon/ni_reg.h -c460f2238182ca64d5cb198dedab9b1c linux-3.0/drivers/gpu/drm/radeon/ni.c -5a4f236e621bb367007e5502f4cb16fa linux-3.0/drivers/gpu/drm/radeon/mkregtable.c -e83104b0c8148b28eb453cb32d72b4a5 linux-3.0/drivers/gpu/drm/radeon/evergreend.h -8e71cebd27064b971aff852ad2cc74c9 linux-3.0/drivers/gpu/drm/radeon/evergreen_reg.h -4ed4fbd58cea2f76af8bf3dd90b0097d linux-3.0/drivers/gpu/drm/radeon/evergreen_cs.c -0039698a1c82ea4bd38081ee69d30a9f linux-3.0/drivers/gpu/drm/radeon/evergreen_blit_shaders.h -d1dfdebb3100ac73ba2036fcc3e52fb1 linux-3.0/drivers/gpu/drm/radeon/evergreen_blit_shaders.c -f4f23c9761bf07d6f23de1db1017afdf linux-3.0/drivers/gpu/drm/radeon/evergreen_blit_kms.c -313bf63c359581fe909ebfc4d9710cf1 linux-3.0/drivers/gpu/drm/radeon/evergreen.c -502ee044f76271dd7c81ef2929eb531c linux-3.0/drivers/gpu/drm/radeon/cayman_blit_shaders.h -0d2cfdbe3c0954f3770e22f95549478f linux-3.0/drivers/gpu/drm/radeon/cayman_blit_shaders.c -41658ad6931bc9686cec0e6081db7210 linux-3.0/drivers/gpu/drm/radeon/avivod.h -8d279301f2761b80c80d0e29ca4aac89 linux-3.0/drivers/gpu/drm/radeon/atombios_dp.c -fd34caf6d8ef6293554f8f5566cef966 linux-3.0/drivers/gpu/drm/radeon/atombios_crtc.c -f2ab490678c143dc82c49f5a70d2d18b linux-3.0/drivers/gpu/drm/radeon/atombios.h -faeb55e813772f84f7f08a464c663e59 linux-3.0/drivers/gpu/drm/radeon/atom.h -d879748175bea804250af1b937c3fab9 linux-3.0/drivers/gpu/drm/radeon/atom.c -0d7a3c8df874923bb7031b2ca670f358 linux-3.0/drivers/gpu/drm/radeon/atom-types.h -80f294977d163e3a4876513bba7d001a linux-3.0/drivers/gpu/drm/radeon/atom-names.h -66150977d70c0674044ab0f82a2817d3 linux-3.0/drivers/gpu/drm/radeon/atom-bits.h -2cedd0584b1b7ecb7e3bcf56487dbbd2 linux-3.0/drivers/gpu/drm/radeon/ObjectID.h -f6b1367641097818e2a3a5b664536754 linux-3.0/drivers/gpu/drm/radeon/Makefile -cc5d93dd7913a30433a36483037e49eb linux-3.0/drivers/gpu/drm/radeon/Kconfig -25cc1e84146f915bc3877280b7570b1d linux-3.0/drivers/gpu/drm/radeon/.gitignore -3d7d8a704f9dddff98cf03b170bd117d linux-3.0/drivers/gpu/drm/r128/r128_state.c -421d439abf71b0dddea2f5a79b50ae73 linux-3.0/drivers/gpu/drm/r128/r128_irq.c -7abc4b80a37a5f810f46cbfcceeb9fa0 linux-3.0/drivers/gpu/drm/r128/r128_ioc32.c -0d3233b618d3a1d34dd9f19a97ef8a35 linux-3.0/drivers/gpu/drm/r128/r128_drv.h -6298ad4e6bd4b37f1c40441d9f042187 linux-3.0/drivers/gpu/drm/r128/r128_drv.c -7248b26e9200a6028a700b9dbe49282e linux-3.0/drivers/gpu/drm/r128/r128_cce.c -38ae5a0b1132d1674b6e7dc5eaf3a850 linux-3.0/drivers/gpu/drm/r128/Makefile -67e02693302814669739978fa259ee16 linux-3.0/drivers/gpu/drm/nouveau/nvreg.h -536929c75597475c9ff0e25b36065926 linux-3.0/drivers/gpu/drm/nouveau/nvc0_vram.c -6354c5c395e33ae2581ecb8dad87880b linux-3.0/drivers/gpu/drm/nouveau/nvc0_vm.c -423038883b9ae8a1f019a8ccb7d3a003 linux-3.0/drivers/gpu/drm/nouveau/nvc0_instmem.c -89e5f502132bc4f63ddbaee3e17560c3 linux-3.0/drivers/gpu/drm/nouveau/nvc0_grctx.c -3cf677b7a8eec8887d1c20943e907db1 linux-3.0/drivers/gpu/drm/nouveau/nvc0_graph.h -3157ee5faa6c361b221a20b5344c4e72 linux-3.0/drivers/gpu/drm/nouveau/nvc0_graph.c -15296550552e5f06264b9686cd53c6e7 linux-3.0/drivers/gpu/drm/nouveau/nvc0_fifo.c -999e99a2c34486703aefe237eea41b5e linux-3.0/drivers/gpu/drm/nouveau/nvc0_fbcon.c -0f60afa16c3f83d6673fce31aff43030 linux-3.0/drivers/gpu/drm/nouveau/nvc0_fb.c -71d6dfe0dd2e46d63f4a659c6987b9ee linux-3.0/drivers/gpu/drm/nouveau/nvc0_copy.fuc.h -73a45d066df3281b7c92677f44aa661f linux-3.0/drivers/gpu/drm/nouveau/nvc0_copy.c -89d5a7aeb17a72cf7cabbe5e2cabc27a linux-3.0/drivers/gpu/drm/nouveau/nva3_pm.c -62be535d4ae410b68830b6900d82cb22 linux-3.0/drivers/gpu/drm/nouveau/nva3_copy.fuc.h -1167de42eca0c812dc2c64ed19597cec linux-3.0/drivers/gpu/drm/nouveau/nva3_copy.fuc -0bff53950457f6d20bee120ee06d3b21 linux-3.0/drivers/gpu/drm/nouveau/nva3_copy.c -693d7eeb4a7d5c4e7b5699c42f8e3fe4 linux-3.0/drivers/gpu/drm/nouveau/nv84_crypt.c -e676483a85e3ab717b82e7781a6ac0dc linux-3.0/drivers/gpu/drm/nouveau/nv50_vram.c -738b1658cccdc7b8d161d5f7759a92b7 linux-3.0/drivers/gpu/drm/nouveau/nv50_vm.c -8a6a3c705c1bda9d9a37d73290900d2d linux-3.0/drivers/gpu/drm/nouveau/nv50_sor.c -75d494b052f5d78d870c278966cb1e36 linux-3.0/drivers/gpu/drm/nouveau/nv50_pm.c -bf38e82f17df4a987e656e40d8efff93 linux-3.0/drivers/gpu/drm/nouveau/nv50_mpeg.c -a844ba6a3da62dc66a6b75d04a6bb048 linux-3.0/drivers/gpu/drm/nouveau/nv50_mc.c -f91bd5115b42ab3411db985feb72e830 linux-3.0/drivers/gpu/drm/nouveau/nv50_instmem.c -c1b7caa32af76915fdf717cb12137ef1 linux-3.0/drivers/gpu/drm/nouveau/nv50_grctx.c -4d4542844ded482ed459355231ceec71 linux-3.0/drivers/gpu/drm/nouveau/nv50_graph.c -e25b8e4c115c2a6995f46a76ffb5594f linux-3.0/drivers/gpu/drm/nouveau/nv50_gpio.c -5aa37b5ae763e454c5d1523dd8d6fff8 linux-3.0/drivers/gpu/drm/nouveau/nv50_fifo.c -69aa4978c67cd821e73c354009c01a86 linux-3.0/drivers/gpu/drm/nouveau/nv50_fbcon.c -07ab9f9bba40b1085e375dd830357c31 linux-3.0/drivers/gpu/drm/nouveau/nv50_fb.c -8926d7c0ab096e983aaa717533253cd7 linux-3.0/drivers/gpu/drm/nouveau/nv50_evo.h -1e1512d9c4433bfc141b6861b470a9fe linux-3.0/drivers/gpu/drm/nouveau/nv50_evo.c -087c29b256e04ba10daed9ca7a1d6079 linux-3.0/drivers/gpu/drm/nouveau/nv50_display.h -d2a85b36b0403c3ebd303d8c4e21db67 linux-3.0/drivers/gpu/drm/nouveau/nv50_display.c -fb37490e839f6680d66411e5f3bba26e linux-3.0/drivers/gpu/drm/nouveau/nv50_dac.c -9cd43395156142fe6910aab8451b7ee5 linux-3.0/drivers/gpu/drm/nouveau/nv50_cursor.c -10cb44bc62ce98c52582551fef45b957 linux-3.0/drivers/gpu/drm/nouveau/nv50_crtc.c -66277bcf75b63802599a4a836f9007dc linux-3.0/drivers/gpu/drm/nouveau/nv50_calc.c -239cdb268c7110359a92917cb9ed54e1 linux-3.0/drivers/gpu/drm/nouveau/nv40_mpeg.c -2016b7af92ed5d6a258fb73e4e8ea5c7 linux-3.0/drivers/gpu/drm/nouveau/nv40_mc.c -a67c6482785e27c8df652579c6538fb7 linux-3.0/drivers/gpu/drm/nouveau/nv40_grctx.c -09f4dab5564887683e7303582706fca2 linux-3.0/drivers/gpu/drm/nouveau/nv40_graph.c -ae50128c2afa47c2a138d9805c4c9fd8 linux-3.0/drivers/gpu/drm/nouveau/nv40_fifo.c -77d9482f6d4c2ddcf1e1e733318c6fcd linux-3.0/drivers/gpu/drm/nouveau/nv40_fb.c -ebceaebf2c1e536fe0cf271d51320e0e linux-3.0/drivers/gpu/drm/nouveau/nv30_fb.c -86556e293a5ca0469ad010ad28d89e54 linux-3.0/drivers/gpu/drm/nouveau/nv20_graph.c -a2a484e5f1dc9fea1f33d1bc9b84c1bc linux-3.0/drivers/gpu/drm/nouveau/nv17_tv_modes.c -c61c70b5a803e0adbc5038c9673d59f2 linux-3.0/drivers/gpu/drm/nouveau/nv17_tv.h -6240180fa98631c0f0cde5c0597f2289 linux-3.0/drivers/gpu/drm/nouveau/nv17_tv.c -f194564d3cf272bbe25044171d7e0249 linux-3.0/drivers/gpu/drm/nouveau/nv10_graph.c -7bf55c1035bb7083a9c838959e3281bc linux-3.0/drivers/gpu/drm/nouveau/nv10_gpio.c -2ea7b9987aca27bf0de8307cee87938f linux-3.0/drivers/gpu/drm/nouveau/nv10_fifo.c -eb136a2b4bc02ce49706cbeba8391b9c linux-3.0/drivers/gpu/drm/nouveau/nv10_fb.c -279f94459acce8ff3e8f186ef74cd799 linux-3.0/drivers/gpu/drm/nouveau/nv04_tv.c -b6c1ef12dfcb34025068fb66d3444d7f linux-3.0/drivers/gpu/drm/nouveau/nv04_timer.c -5a4b720a5cdce81cbf3b5d2b04338961 linux-3.0/drivers/gpu/drm/nouveau/nv04_pm.c -2c3b751d07a435857fc00f9df5a0bda6 linux-3.0/drivers/gpu/drm/nouveau/nv04_mc.c -a65bd1996a36e2bc815ada22a83c5048 linux-3.0/drivers/gpu/drm/nouveau/nv04_instmem.c -77eb59b3a1e28dc026ecc9d81a4fae51 linux-3.0/drivers/gpu/drm/nouveau/nv04_graph.c -913d6971e7b6efc03e9995d77a88dfbb linux-3.0/drivers/gpu/drm/nouveau/nv04_fifo.c -d54b619e01372a1456c882ee26047889 linux-3.0/drivers/gpu/drm/nouveau/nv04_fbcon.c -a59cb17dfbee0410a4e665d24f0a879c linux-3.0/drivers/gpu/drm/nouveau/nv04_fb.c -39bd5b10cedc66b199a6bbe8d724409f linux-3.0/drivers/gpu/drm/nouveau/nv04_display.c -5eea295fb9b0c4073ff084a7a6fbd3e1 linux-3.0/drivers/gpu/drm/nouveau/nv04_dfp.c -5c4d2a63c17e2518ebc6f42b8dc8ad4f linux-3.0/drivers/gpu/drm/nouveau/nv04_dac.c -70d9e253406ef7895a767eda2024da6d linux-3.0/drivers/gpu/drm/nouveau/nv04_cursor.c -9273807f4d56866c2189b9345fa69e3d linux-3.0/drivers/gpu/drm/nouveau/nv04_crtc.c -e4b51e14f4477fcbe6fa04e6c34c6c5f linux-3.0/drivers/gpu/drm/nouveau/nouveau_volt.c -6f85052716f8ae7a5d1d75fa5933f718 linux-3.0/drivers/gpu/drm/nouveau/nouveau_vm.h -4db9034df7678473fcdc1a26cbd0eada linux-3.0/drivers/gpu/drm/nouveau/nouveau_vm.c -af9cc981b3de98dde72c4309e7999f51 linux-3.0/drivers/gpu/drm/nouveau/nouveau_util.h -0fbe50b17ccad669043d011a0618df5d linux-3.0/drivers/gpu/drm/nouveau/nouveau_util.c -1eb805bb015087302c79b93dfc8feeb0 linux-3.0/drivers/gpu/drm/nouveau/nouveau_ttm.c -d33715487bccdd7719823e1a63e14e56 linux-3.0/drivers/gpu/drm/nouveau/nouveau_temp.c -2954adb33297fa9c51c9c2156b30974f linux-3.0/drivers/gpu/drm/nouveau/nouveau_state.c -daf9eb575d81b5b6c9185f43f0f3041e linux-3.0/drivers/gpu/drm/nouveau/nouveau_sgdma.c -8208ebd7d9bcbc8704209b0f5cc97aca linux-3.0/drivers/gpu/drm/nouveau/nouveau_reg.h -e805377ed2116a902c9b009f1733c84a linux-3.0/drivers/gpu/drm/nouveau/nouveau_ramht.h -b6f708cf4a9966b20d607a32a626bfb1 linux-3.0/drivers/gpu/drm/nouveau/nouveau_ramht.c -3348d0fc0b291ab0a74767d0d997d5a2 linux-3.0/drivers/gpu/drm/nouveau/nouveau_pm.h -d0d98cfd34297841f657859513a48b9e linux-3.0/drivers/gpu/drm/nouveau/nouveau_pm.c -29178a9dada842bda286537d0704965c linux-3.0/drivers/gpu/drm/nouveau/nouveau_perf.c -223ca948c234c15effe3b7d9d6055a16 linux-3.0/drivers/gpu/drm/nouveau/nouveau_object.c -9075830246cd1988a40254ecb753e7c0 linux-3.0/drivers/gpu/drm/nouveau/nouveau_notifier.c -67252476b5d47ec10d7b4111ab91323c linux-3.0/drivers/gpu/drm/nouveau/nouveau_mm.h -066423e935816a9c35edb846a2870c67 linux-3.0/drivers/gpu/drm/nouveau/nouveau_mm.c -c00a572da07fe951049fbf835fbe9d23 linux-3.0/drivers/gpu/drm/nouveau/nouveau_mem.c -0775eef83683d3fd1c9d3dc1aab70e34 linux-3.0/drivers/gpu/drm/nouveau/nouveau_irq.c -a32d7a4723036e0d016919885fdda17d linux-3.0/drivers/gpu/drm/nouveau/nouveau_ioc32.c -aee3af523a217b50caef951204b116c1 linux-3.0/drivers/gpu/drm/nouveau/nouveau_i2c.h -2f839bd64803ea54dedda710d5aa9a81 linux-3.0/drivers/gpu/drm/nouveau/nouveau_i2c.c -fb754b12b9053c4b508dc63d64e268b2 linux-3.0/drivers/gpu/drm/nouveau/nouveau_hw.h -fe93babdbab1497635dfec2626b4190a linux-3.0/drivers/gpu/drm/nouveau/nouveau_hw.c -7a22fbe2e762c9eb1870e20ed4e1156b linux-3.0/drivers/gpu/drm/nouveau/nouveau_grctx.h -22314e9038793a1238df10f91493f96c linux-3.0/drivers/gpu/drm/nouveau/nouveau_gem.c -272aac81e01bf7b1ce2ef6af2d6d4ba3 linux-3.0/drivers/gpu/drm/nouveau/nouveau_fence.c -ae48e2404ad60855c6b2580fa931a08f linux-3.0/drivers/gpu/drm/nouveau/nouveau_fbcon.h -6b413600c7f0dcc0ac121e458234f805 linux-3.0/drivers/gpu/drm/nouveau/nouveau_fbcon.c -b7d850bd7b9a9e57c59fb2112635425b linux-3.0/drivers/gpu/drm/nouveau/nouveau_fb.h -55ef7fb88c0022440005901d2252dbdd linux-3.0/drivers/gpu/drm/nouveau/nouveau_encoder.h -2067013c08abf2d43ac8c66ac0896925 linux-3.0/drivers/gpu/drm/nouveau/nouveau_drv.h -e7026ed0b282c628f9b3e910bbf203c0 linux-3.0/drivers/gpu/drm/nouveau/nouveau_drv.c -c792e40381944d942615df80ea75b435 linux-3.0/drivers/gpu/drm/nouveau/nouveau_dp.c -fe65314895e86a5e3c9f66962b6920bf linux-3.0/drivers/gpu/drm/nouveau/nouveau_dma.h -4f7a916f46c934c21d061735c36cbca8 linux-3.0/drivers/gpu/drm/nouveau/nouveau_dma.c -3294fa52ce17dc18697e7f86e1120d3d linux-3.0/drivers/gpu/drm/nouveau/nouveau_display.c -d9e20caa107979af6d9ed121ef6190bc linux-3.0/drivers/gpu/drm/nouveau/nouveau_debugfs.c -947f334d45f386bf02b2f09d23e31aa7 linux-3.0/drivers/gpu/drm/nouveau/nouveau_crtc.h -59e5ee1702ded657f7a753908f76e526 linux-3.0/drivers/gpu/drm/nouveau/nouveau_connector.h -28e3d120130a35c79e4037ebf5e87dfe linux-3.0/drivers/gpu/drm/nouveau/nouveau_connector.c -30e9859c5f12db9bb997a39f73805832 linux-3.0/drivers/gpu/drm/nouveau/nouveau_channel.c -6be4a5e4673bdaa6a1fa77a511ebe52c linux-3.0/drivers/gpu/drm/nouveau/nouveau_calc.c -64ef8bbd4eb54f956344e22dcaa4df77 linux-3.0/drivers/gpu/drm/nouveau/nouveau_bo.c -19e55438f1c309b77c4a2165b6ca90e2 linux-3.0/drivers/gpu/drm/nouveau/nouveau_bios.h -227add29b1e12615fb0572566f7c0306 linux-3.0/drivers/gpu/drm/nouveau/nouveau_bios.c -28065006b08b177a3bb19211c0b66ea4 linux-3.0/drivers/gpu/drm/nouveau/nouveau_backlight.c -f47127afbec21c3637c72a882c03d986 linux-3.0/drivers/gpu/drm/nouveau/nouveau_acpi.c -ef24efe4cf9146c28dde771093da6062 linux-3.0/drivers/gpu/drm/nouveau/Makefile -5bfa8ded76e0e3fec57108de04c94df9 linux-3.0/drivers/gpu/drm/nouveau/Kconfig -f401d908ab8b50959ff61c6d232a14b4 linux-3.0/drivers/gpu/drm/mga/mga_warp.c -f11e42fdb6c8fcc6c18abf45b1f728dc linux-3.0/drivers/gpu/drm/mga/mga_state.c -4ab976e625a6cef7c69022b3037a1bee linux-3.0/drivers/gpu/drm/mga/mga_irq.c -e868b970056afa5720038ff15140d10b linux-3.0/drivers/gpu/drm/mga/mga_ioc32.c -b4799017c2ae76499932abc3d1d4db57 linux-3.0/drivers/gpu/drm/mga/mga_drv.h -88821bae2501dee3539980dbbda55a79 linux-3.0/drivers/gpu/drm/mga/mga_drv.c -4c8f7f00f1dc20e3d39ac6e999cd363e linux-3.0/drivers/gpu/drm/mga/mga_dma.c -dca2f0e285c04404f2777352013c37b0 linux-3.0/drivers/gpu/drm/mga/Makefile -ce25990fa6375b79bec808f3e78ccde9 linux-3.0/drivers/gpu/drm/i915/intel_tv.c -b6359535ce3628ec4773fda5ce71d4e5 linux-3.0/drivers/gpu/drm/i915/intel_sdvo_regs.h -2ed31ae3d7d203d3d5a48037f0d3d7dd linux-3.0/drivers/gpu/drm/i915/intel_sdvo.c -74ff86ce451c3ce6e63a411f03ae699b linux-3.0/drivers/gpu/drm/i915/intel_ringbuffer.h -a3efe35644497604515c982770818ab7 linux-3.0/drivers/gpu/drm/i915/intel_ringbuffer.c -2b865cc9820387bb7df70190727d39b3 linux-3.0/drivers/gpu/drm/i915/intel_panel.c -552ddd6dcd39178272c3f81472b24798 linux-3.0/drivers/gpu/drm/i915/intel_overlay.c -d96704df8c2404fb41f611538ae401a5 linux-3.0/drivers/gpu/drm/i915/intel_opregion.c -94d05d887cf7b53e307fd31eeb2624e8 linux-3.0/drivers/gpu/drm/i915/intel_modes.c -b80294342f702afe1f86d2d88f73b102 linux-3.0/drivers/gpu/drm/i915/intel_lvds.c -45f6533ca91c1659966e6d64dfe04ed8 linux-3.0/drivers/gpu/drm/i915/intel_i2c.c -207e99c83307c3d7249e5476992cbc29 linux-3.0/drivers/gpu/drm/i915/intel_hdmi.c -719684b63514cbb2d75a78709980f0bc linux-3.0/drivers/gpu/drm/i915/intel_fb.c -7b6955bf27d60e72ecd4279c94128c85 linux-3.0/drivers/gpu/drm/i915/intel_dvo.c -f956fa5d582443b634e21b6abe4e37ba linux-3.0/drivers/gpu/drm/i915/intel_drv.h -850a4e4390676cda84f96c8fc7f79bab linux-3.0/drivers/gpu/drm/i915/intel_dp.c -5f222efb9419dd0dd0d8dfeb148fb522 linux-3.0/drivers/gpu/drm/i915/intel_display.c -718cb65a03dab2d9b5c2e5cd34fc449e linux-3.0/drivers/gpu/drm/i915/intel_crt.c -29b9e829ca13394ab5f535cce51866cd linux-3.0/drivers/gpu/drm/i915/intel_bios.h -8aae224a16894c9673937378013a03b7 linux-3.0/drivers/gpu/drm/i915/intel_bios.c -ee9c854a13963208b18a87dd5002841c linux-3.0/drivers/gpu/drm/i915/intel_acpi.c -609584d16f39d420aa90a0ea9ba73c21 linux-3.0/drivers/gpu/drm/i915/i915_trace_points.c -cc781e10f6eded57d519fdacefded5e9 linux-3.0/drivers/gpu/drm/i915/i915_trace.h -bbae7a50e96663211faa3e8e6313b33d linux-3.0/drivers/gpu/drm/i915/i915_suspend.c -07220be774dece8cfa2a80c20cd5572e linux-3.0/drivers/gpu/drm/i915/i915_reg.h -e8649ea0dc3e16ad20b58d9b8959fa2f linux-3.0/drivers/gpu/drm/i915/i915_mem.c -c8766ba30e23adbb49bf04016fd1ce3b linux-3.0/drivers/gpu/drm/i915/i915_irq.c -9cc704497e649da2f32b4ba313738685 linux-3.0/drivers/gpu/drm/i915/i915_ioc32.c -7854dd8a1c1eb1ae4ebc9542e63e0b77 linux-3.0/drivers/gpu/drm/i915/i915_gem_tiling.c -1d820b7d7fdf62e6573a7a9b4352b65f linux-3.0/drivers/gpu/drm/i915/i915_gem_gtt.c -6402e1540196720df1a2e3fd3a523196 linux-3.0/drivers/gpu/drm/i915/i915_gem_execbuffer.c -9001154b6ec8114e2ff73bf4386f4bea linux-3.0/drivers/gpu/drm/i915/i915_gem_evict.c -30857e20543cb1308912f61ee0823931 linux-3.0/drivers/gpu/drm/i915/i915_gem_debug.c -a5bb3688d9b3b3f4b959260187a9ed2e linux-3.0/drivers/gpu/drm/i915/i915_gem.c -d81a36050cf22ef242ba7123a94b2b61 linux-3.0/drivers/gpu/drm/i915/i915_drv.h -9bf0e1cda880b873cf05552bccbb4840 linux-3.0/drivers/gpu/drm/i915/i915_drv.c -1ee841d5b6b7d477ca9e2a58cbf2984d linux-3.0/drivers/gpu/drm/i915/i915_dma.c -df5cef44ddf3fbc34715373a2941551b linux-3.0/drivers/gpu/drm/i915/i915_debugfs.c -fe765e932d3576c8b1ee475ae53d3baf linux-3.0/drivers/gpu/drm/i915/dvo_tfp410.c -8876be1400bb714b66d8032f16511808 linux-3.0/drivers/gpu/drm/i915/dvo_sil164.c -3c94be43ba4aa5b86f8db6c76e85ed0f linux-3.0/drivers/gpu/drm/i915/dvo_ivch.c -5b872f7642d21a4e4106a8143b69b0de linux-3.0/drivers/gpu/drm/i915/dvo_ch7xxx.c -0c4f9a02ae0e32f0dd2a1e0a54b43206 linux-3.0/drivers/gpu/drm/i915/dvo_ch7017.c -775eb6c8ce965753a90ec8585a446bd3 linux-3.0/drivers/gpu/drm/i915/dvo.h -a8fbf44131dbd3b0a99f008f14c8b9a4 linux-3.0/drivers/gpu/drm/i915/Makefile -a1b4eb4d18bc3cc74d5e2fb9ea7873c5 linux-3.0/drivers/gpu/drm/i810/i810_drv.h -ad3ef1dab7807252eaec8332788ad8a7 linux-3.0/drivers/gpu/drm/i810/i810_drv.c -e39645e3242a5a7f20eb43ba0de6c8d7 linux-3.0/drivers/gpu/drm/i810/i810_dma.c -2a8b738ea9df29dd9bba61ee17b20cb3 linux-3.0/drivers/gpu/drm/i810/Makefile -e7fba68859769a4c3b80ea14286487e9 linux-3.0/drivers/gpu/drm/i2c/sil164_drv.c -1088c98e23a5bd8b8c760e5c7ed756b5 linux-3.0/drivers/gpu/drm/i2c/ch7006_priv.h -08d66acaf3f7a502f0256395d925e6b0 linux-3.0/drivers/gpu/drm/i2c/ch7006_mode.c -2d5334d044148c080641a1cb41cf4bc7 linux-3.0/drivers/gpu/drm/i2c/ch7006_drv.c -aa45ed14b303896d8ccd928e784db7e8 linux-3.0/drivers/gpu/drm/i2c/Makefile -672e723ee03a23dada8cb6a2c3c1e6ce linux-3.0/drivers/gpu/drm/drm_vm.c -c2650abbe883bd250d038fd8c0c8f9de linux-3.0/drivers/gpu/drm/drm_usb.c -6ec6076e1c8de4629daebb6169d2350e linux-3.0/drivers/gpu/drm/drm_trace_points.c -a5acdf7c93b2de69aed85b9628db9bb5 linux-3.0/drivers/gpu/drm/drm_trace.h -0136f6a646dffa5aa4712a9789398498 linux-3.0/drivers/gpu/drm/drm_sysfs.c -f618a559e28ff87343e3968842c7cb18 linux-3.0/drivers/gpu/drm/drm_stub.c -4ded2811e2882c219ae3f74c03ac697c linux-3.0/drivers/gpu/drm/drm_sman.c -d76be47c12994dad5a0cfbac83dcfab0 linux-3.0/drivers/gpu/drm/drm_scatter.c -e0b7f75ead38b2e9f20d874c72b63a17 linux-3.0/drivers/gpu/drm/drm_proc.c -0f67900b15eeac9fc73fe30deab73a0d linux-3.0/drivers/gpu/drm/drm_platform.c -1017f44c967b7fb2ca582c7714949656 linux-3.0/drivers/gpu/drm/drm_pci.c -93c2e4d54e0a28731427e2b12e7ac4ed linux-3.0/drivers/gpu/drm/drm_modes.c -0b9d463d880d256ec988b1d0a5711735 linux-3.0/drivers/gpu/drm/drm_mm.c -542271cd97d573e4ca66865a3f7a51c3 linux-3.0/drivers/gpu/drm/drm_memory.c -ec9aa90a1766bfd88b24540f926a98e4 linux-3.0/drivers/gpu/drm/drm_lock.c -c54dfa7fa79189cfca23dbc77d083322 linux-3.0/drivers/gpu/drm/drm_irq.c -a6d4d2541ae5c3adfd815c818bdee624 linux-3.0/drivers/gpu/drm/drm_ioctl.c -dd209be44d324ec58126d737e451c3d8 linux-3.0/drivers/gpu/drm/drm_ioc32.c -7aa8cdfb4fda4c190a5f5d02a34ab7fe linux-3.0/drivers/gpu/drm/drm_info.c -fd94e9c94956bd171fc795c788e4a33a linux-3.0/drivers/gpu/drm/drm_hashtab.c -ce55efba5565a4d6cc961d2f65b1c309 linux-3.0/drivers/gpu/drm/drm_global.c -55153d13a203297abb020b91a3ef2c80 linux-3.0/drivers/gpu/drm/drm_gem.c -1b79dc14d1157cf6a27ea81ca1b07715 linux-3.0/drivers/gpu/drm/drm_fops.c -31f8aa6932b24a91a5182e50a5915b91 linux-3.0/drivers/gpu/drm/drm_fb_helper.c -4d267ac01eb003d5d64702d84c7c2d34 linux-3.0/drivers/gpu/drm/drm_encoder_slave.c -64bf003a3410bd34fae08fe31a414040 linux-3.0/drivers/gpu/drm/drm_edid_modes.h -5c91155cfaad9d4283526549e676303a linux-3.0/drivers/gpu/drm/drm_edid.c -f799bcd48b867a012e7ac22ecb6a745e linux-3.0/drivers/gpu/drm/drm_drv.c -82aa3b970c7392002d03f2f2fdaa18ac linux-3.0/drivers/gpu/drm/drm_dp_i2c_helper.c -9d7dd3da3252771aca910d2b7b47943a linux-3.0/drivers/gpu/drm/drm_dma.c -63d2abb49d1188275655693c0bbc4953 linux-3.0/drivers/gpu/drm/drm_debugfs.c -84ae0c2d820bb3a8e1a1abef76219a5e linux-3.0/drivers/gpu/drm/drm_crtc_helper.c -60b5c83ced236cb2ae0000ab4e53dbf4 linux-3.0/drivers/gpu/drm/drm_crtc.c -5cbb9b6b263f06fddce774a3421b992c linux-3.0/drivers/gpu/drm/drm_context.c -7161d08fd78c23a58164949d3bccc1e5 linux-3.0/drivers/gpu/drm/drm_cache.c -ec379e28b37f92cb7595010fcd5d832d linux-3.0/drivers/gpu/drm/drm_bufs.c -af3c8b230cc4348b805801b7ff4745b2 linux-3.0/drivers/gpu/drm/drm_buffer.c -51d54adb2834e7bb8f49ed93c6b1f382 linux-3.0/drivers/gpu/drm/drm_auth.c -83aa532a35f44c6fbb9a49f6f2affd87 linux-3.0/drivers/gpu/drm/drm_agpsupport.c -de6d86b271ae62fca9e77116e24d8156 linux-3.0/drivers/gpu/drm/ati_pcigart.c -b4b5cd9b39262f1e89cf15fbd0e2d780 linux-3.0/drivers/gpu/drm/README.drm -ba26fcbc29be565ffdc5611b4ce369d2 linux-3.0/drivers/gpu/drm/Makefile -c6160dc2ceb8de70f5af53fd28486a0f linux-3.0/drivers/gpu/drm/Kconfig -b76d89de7704d704610f80b37d969aff linux-3.0/drivers/gpu/Makefile -27887da65b5fbde03e533efb4950164c linux-3.0/drivers/gpio/xilinx_gpio.c -2ba9dce970d69d19703569db1a32d5f6 linux-3.0/drivers/gpio/wm8994-gpio.c -a6274126bdb1d74687c1f635e8f4822c linux-3.0/drivers/gpio/wm8350-gpiolib.c -84ebe271ab3cc557fa3fb17031778e08 linux-3.0/drivers/gpio/wm831x-gpio.c -19ffac9a0ce82571ca22d245d0162497 linux-3.0/drivers/gpio/vx855_gpio.c -a610ba99059967811bd61145459ec269 linux-3.0/drivers/gpio/vr41xx_giu.c -f0e4447acdcf7d7f42ef0cef293c6087 linux-3.0/drivers/gpio/ucb1400_gpio.c -c951329f0c12d3dfd831b7ad85369877 linux-3.0/drivers/gpio/twl4030-gpio.c -3c77f322537a0ac032e6d45991819b6b linux-3.0/drivers/gpio/tps65910-gpio.c -dbefad1299fab5a0e34602f3791177c0 linux-3.0/drivers/gpio/timbgpio.c -a8fb8ddfca6ffcfa8ef324dd715b6568 linux-3.0/drivers/gpio/tc3589x-gpio.c -bb8cba6e8913d923a3681dc1f885ef60 linux-3.0/drivers/gpio/sx150x.c -679529e544760e4e23ac920ff2614a43 linux-3.0/drivers/gpio/stmpe-gpio.c -2db9425ea977c49a931e62406ce2622f linux-3.0/drivers/gpio/sch_gpio.c -a0ea898846413540444879166b23fbae linux-3.0/drivers/gpio/rdc321x-gpio.c -cf9946e49f9f8514a44adb18edac52db linux-3.0/drivers/gpio/pl061.c -35cdd87962e15a60838b4ffefb541f7b linux-3.0/drivers/gpio/pch_gpio.c -a583606f77e9ee216378ecd4efa1d79f linux-3.0/drivers/gpio/pcf857x.c -ea45699d1a2762b4de1f17ae31a4592b linux-3.0/drivers/gpio/pca953x.c -9110618e8cc4d0a43ff5abf15a4e8011 linux-3.0/drivers/gpio/ml_ioh_gpio.c -223ae5f8ca00fbeec50b97c5a64bdf7b linux-3.0/drivers/gpio/mcp23s08.c -7a65af37b87c1285e2ebc3a9aa31f2d5 linux-3.0/drivers/gpio/mc33880.c -f895c47c88a2134d50696009e5043bf6 linux-3.0/drivers/gpio/max732x.c -c0d2395c4f6f848c52471957e176997b linux-3.0/drivers/gpio/max730x.c -4deeb677ad1127cf1f55ba8844959b26 linux-3.0/drivers/gpio/max7301.c -bcc42e8c242221341303ac2b9f5d3289 linux-3.0/drivers/gpio/max7300.c -b6af6a5142c79dd4945520c5ec5473d3 linux-3.0/drivers/gpio/langwell_gpio.c -ac1f96e014be52f81fde9b78412bb279 linux-3.0/drivers/gpio/janz-ttl.c -474af9a330d260311b19eb8efe4b68c3 linux-3.0/drivers/gpio/it8761e_gpio.c -e48e5bf67cdb6eda798575dddee1d6b3 linux-3.0/drivers/gpio/gpiolib.c -8c39fc107680885c1d0b70682b42af39 linux-3.0/drivers/gpio/gpio-u300.c -8a72ccdab7293991d8926e39bf1233db linux-3.0/drivers/gpio/gpio-s5pv210.c -d65d50417d40e75f9c7a6c4d4627eff9 linux-3.0/drivers/gpio/gpio-s5pc100.c -4f813d6508e1890e58bfe2febaa419f2 linux-3.0/drivers/gpio/gpio-plat-samsung.c -311d0bbaa133d44b5c51e78e11e85ed1 linux-3.0/drivers/gpio/gpio-omap.c -ca5029a25d3cdcd11a919f4df2532ff1 linux-3.0/drivers/gpio/gpio-nomadik.c -4530bd780d1cec4e0831bd15fc9f5a7e linux-3.0/drivers/gpio/gpio-exynos4.c -84ea2d5de1f13e04b6121dfe3246c26c linux-3.0/drivers/gpio/cs5535-gpio.c -b1fc030b4641c55c6bfb76f089a5311b linux-3.0/drivers/gpio/bt8xxgpio.c -febb33bbd438ad3fa4d3701e4a45ff2f linux-3.0/drivers/gpio/basic_mmio_gpio.c -43bff9c6d9b5a9e35c9e0198ded7454e linux-3.0/drivers/gpio/adp5588-gpio.c -eb3fa0c19b03fadd7a3561e3c5934f30 linux-3.0/drivers/gpio/adp5520-gpio.c -91b692d86f3e2d49aab4db3d9b0cd599 linux-3.0/drivers/gpio/ab8500-gpio.c -7f842f2f2dc658828ecc431a853af91f linux-3.0/drivers/gpio/Makefile -b94e200031cb40de6ffb00c807db98d8 linux-3.0/drivers/gpio/Kconfig -bbf66ef7549d42559ac3822645d4eeda linux-3.0/drivers/gpio/74x164.c -7de993526a66ead03b6e1990109839f2 linux-3.0/drivers/firmware/sigma.c -db29d5d267b43d5248a4b87c225f740a linux-3.0/drivers/firmware/pcdp.h -319ec6bae3cfdef3996de3653a646dd8 linux-3.0/drivers/firmware/pcdp.c -c7f84d5d0b8d64dc3775f7b47dff89e8 linux-3.0/drivers/firmware/memmap.c -be3509fdcb92236b594fd9cb7acacc2c linux-3.0/drivers/firmware/iscsi_ibft_find.c -d128d1e272c0baeabe51576bd8e4e886 linux-3.0/drivers/firmware/iscsi_ibft.c -7da92083a8e4ac0b25708437302955b1 linux-3.0/drivers/firmware/google/memconsole.c -890605bf66efcc319de7266a264c35cb linux-3.0/drivers/firmware/google/gsmi.c -ff84c4d8bba4ecda079d24a95a7d4c41 linux-3.0/drivers/firmware/google/Makefile -6c370c4e4c84462bce7b3394f4a82801 linux-3.0/drivers/firmware/google/Kconfig -26165084de85d8f199e9cf4d2c523795 linux-3.0/drivers/firmware/efivars.c -30e211bc837b6c677ff241da1cde102e linux-3.0/drivers/firmware/edd.c -bf24bba726a463fd9aea46fd9ccac577 linux-3.0/drivers/firmware/dmi_scan.c -2ac5db0a2a56365bb9858017117e6ac4 linux-3.0/drivers/firmware/dmi-sysfs.c -4be701267da1f3f005c8ae650148d657 linux-3.0/drivers/firmware/dmi-id.c -26db77e0d8f1a6a04474c2b9791b0d46 linux-3.0/drivers/firmware/dell_rbu.c -dad7b1a28a5e9ed9ef6bd9b51d549416 linux-3.0/drivers/firmware/dcdbas.h -cb89926ef55625daef1f1b63fd9a7774 linux-3.0/drivers/firmware/dcdbas.c -28d01f1a3ae0142611b72ae938a90236 linux-3.0/drivers/firmware/Makefile -c6e70db6630f2f2cf7182a90e5ce3ffc linux-3.0/drivers/firmware/Kconfig -2ea759cb6e4a35c6b7c18ef3af6b1e59 linux-3.0/drivers/firewire/sbp2.c -bb182495c70d10b2f1d402a84dd2a6a8 linux-3.0/drivers/firewire/ohci.h -9762f206a1efe5fa096a10d5643e10db linux-3.0/drivers/firewire/ohci.c -576d1276b01080d57984fa7ed789fe32 linux-3.0/drivers/firewire/nosy.h -2fc681a7202d2d9823395a9c7f4485cf linux-3.0/drivers/firewire/nosy.c -eaa10271aff86366826f3f778130b6ae linux-3.0/drivers/firewire/nosy-user.h -8c7a2b3bc16dd7482f9dc176654fa157 linux-3.0/drivers/firewire/net.c -c57f2d5dd4ff74e23ccd9227ed7b9116 linux-3.0/drivers/firewire/init_ohci1394_dma.c -e2485fd228a80208c0eb0b3f4e00b6ba linux-3.0/drivers/firewire/core.h -56bdcc2e6941ba5527e5ca33ac4b3248 linux-3.0/drivers/firewire/core-transaction.c -b79814efb8056925c2a0e18e72378d3f linux-3.0/drivers/firewire/core-topology.c -72b336bdcd67dee310ef171a1c6c9b16 linux-3.0/drivers/firewire/core-iso.c -30bb8ef79967ac752e5039a52cf67a17 linux-3.0/drivers/firewire/core-device.c -aceb2bf6577b58f6a9d7486e9898220d linux-3.0/drivers/firewire/core-cdev.c -b1a0e7773959257cb9137540b42d39d6 linux-3.0/drivers/firewire/core-card.c -02070e74f0dd00a6d511d5d4e4d4d7be linux-3.0/drivers/firewire/Makefile -20bcd8e3d4c04bda415e9e14adfd294f linux-3.0/drivers/firewire/Kconfig -19ba5a4f9c28a25a6164d640b4dc9e4e linux-3.0/drivers/eisa/virtual_root.c -90b83afb88e0c1b95d98b85d6afc55f8 linux-3.0/drivers/eisa/pci_eisa.c -bcf17605f6dfd3480660a3434820ebc8 linux-3.0/drivers/eisa/eisa.ids -fc4a39cbb0ec1e1581dba3ff17702991 linux-3.0/drivers/eisa/eisa-bus.c -8e93891e215c40465a068451e96d9051 linux-3.0/drivers/eisa/Makefile -26f431add6d50f413b3e704002b19277 linux-3.0/drivers/eisa/Kconfig -0fd76c76ff47c12b3b413084bd22143f linux-3.0/drivers/eisa/.gitignore -3a48482c47f864f8c8bdd38ae8d4c512 linux-3.0/drivers/edac/x38_edac.c -7e4813fcda888f364b934dad64738666 linux-3.0/drivers/edac/tile_edac.c -aa0f806362d62e8117e08c4cb380ec13 linux-3.0/drivers/edac/r82600_edac.c -a86f2e40044c0071416329c0ca879acb linux-3.0/drivers/edac/ppc4xx_edac.h -c456733cbc1bf66908f787c2f6f463be linux-3.0/drivers/edac/ppc4xx_edac.c -d3971ed4434fd21386e0417d35fdf99f linux-3.0/drivers/edac/pasemi_edac.c -29cff4c03a15471cf89aa58e899f14ac linux-3.0/drivers/edac/mv64x60_edac.h -6cf7a2a7c750de5b2a1c04b1039d397e linux-3.0/drivers/edac/mv64x60_edac.c -8ec57b1389480307c90230889739dd05 linux-3.0/drivers/edac/mpc85xx_edac.h -97a3f2e83441b6f0115a1edff594868b linux-3.0/drivers/edac/mpc85xx_edac.c -bbac9a2c919c64a56808eff3158e0670 linux-3.0/drivers/edac/mce_amd_inj.c -3c62f49e5dc992313bc682f684b01a30 linux-3.0/drivers/edac/mce_amd.h -9e1ba5564cc6752d9df998083beba58c linux-3.0/drivers/edac/mce_amd.c -f007a5dadd676653dd082ad3421da8b4 linux-3.0/drivers/edac/i82975x_edac.c -c0c8cb17bcbf63c029e54465e65111bd linux-3.0/drivers/edac/i82875p_edac.c -8c588064378abecdc0d6048d67df3af0 linux-3.0/drivers/edac/i82860_edac.c -affdfef81c57ebfa2c7b72e408d97dd0 linux-3.0/drivers/edac/i82443bxgx_edac.c -046270b52765a2556e1330cf2d4e8983 linux-3.0/drivers/edac/i7core_edac.c -17d9ff1c0e7f9afaab0d37fd1fce6911 linux-3.0/drivers/edac/i7300_edac.c -376f1b5565b7b017b4631954c3ceb489 linux-3.0/drivers/edac/i5400_edac.c -e467a9ddb946323bcf83c3d4948c44a2 linux-3.0/drivers/edac/i5100_edac.c -e5c7d97d6bb8f5de720ca9896c03a73a linux-3.0/drivers/edac/i5000_edac.c -491db25d4a852b8e2797524e3c898698 linux-3.0/drivers/edac/i3200_edac.c -9836b72e0017916fcd7bea2549619194 linux-3.0/drivers/edac/i3000_edac.c -d057a00bfcdef4924dd4e5d7807f3846 linux-3.0/drivers/edac/edac_stub.c -b54071b1359ea388d8fb03902efb0534 linux-3.0/drivers/edac/edac_pci_sysfs.c -c79a30fb06c08295b644ced9d46b944a linux-3.0/drivers/edac/edac_pci.c -68b4ecd5da612a9c446e69fef8e893c0 linux-3.0/drivers/edac/edac_module.h -0b088c0539353667aa842cbd7920e468 linux-3.0/drivers/edac/edac_module.c -1880472fc95c0b8c37e28cd992206d31 linux-3.0/drivers/edac/edac_mce.c -0f6bdf3339eb48c6a3cf46e361f748f9 linux-3.0/drivers/edac/edac_mc_sysfs.c -a1f90fdad9d0e0503b04c6e396511085 linux-3.0/drivers/edac/edac_mc.c -219bb2880ea102e7f4b69a0e41a3306f linux-3.0/drivers/edac/edac_device_sysfs.c -afef33c4dfb09245800bf31f37bde98e linux-3.0/drivers/edac/edac_device.c -a06136bbabad4f8688a333677e1bf983 linux-3.0/drivers/edac/edac_core.h -2703a828afac393b7995d84ab4f2ec62 linux-3.0/drivers/edac/e7xxx_edac.c -f52a1770da225a836db89ba7307fc7eb linux-3.0/drivers/edac/e752x_edac.c -fc795fd3ce5d6729e98d402da033f4fe linux-3.0/drivers/edac/cpc925_edac.c -21cba24ec3739ce7557353b888ddc031 linux-3.0/drivers/edac/cell_edac.c -619cb6fb5946ee9ac95f99bacac8af01 linux-3.0/drivers/edac/amd8131_edac.h -75dca88eb6c7e0c49c057ba50fe04c41 linux-3.0/drivers/edac/amd8131_edac.c -0a20e1dfdf2ee8a8bec212998e87a573 linux-3.0/drivers/edac/amd8111_edac.h -ee5a6e69d60632375b0b7b32961c39fb linux-3.0/drivers/edac/amd8111_edac.c -ad6d752461772df3f00939722a6c73ec linux-3.0/drivers/edac/amd76x_edac.c -29bcfe3cd01d352a665658e3b43bd9cf linux-3.0/drivers/edac/amd64_edac_inj.c -f0a5374d9070ead268e4aae9d305ceb9 linux-3.0/drivers/edac/amd64_edac_dbg.c -3da771b787f366f56cb698160a9055c6 linux-3.0/drivers/edac/amd64_edac.h -c7ac369051a8a85224b77101c455fade linux-3.0/drivers/edac/amd64_edac.c -41d2fa56564276d01eba091bbebb0122 linux-3.0/drivers/edac/Makefile -f0524dd8dc954e79275404d5fd08662a linux-3.0/drivers/edac/Kconfig -ecdd05e276102cf56dad8f367754f21e linux-3.0/drivers/dma/txx9dmac.h -da05f23954051b27fbccc8bda66a9bd9 linux-3.0/drivers/dma/txx9dmac.c -f33342392bedf8a4845ffaa033b4251f linux-3.0/drivers/dma/timb_dma.c -f4dc884067371bc5e360c6d704079fed linux-3.0/drivers/dma/ste_dma40_ll.h -d3594cc211616c353f07f61c147b1d64 linux-3.0/drivers/dma/ste_dma40_ll.c -ab2012a6cc85257d15d310e20b72c81f linux-3.0/drivers/dma/ste_dma40.c -4f926b495d0f9286e9c453bcf5e9f4ba linux-3.0/drivers/dma/shdma.h -c91975751e94acc728c31387d92dfa19 linux-3.0/drivers/dma/shdma.c -570cd48844ee059e87011fef55f45be0 linux-3.0/drivers/dma/ppc4xx/xor.h -4b0c50dc7ac922e2ac768a5f4f052d18 linux-3.0/drivers/dma/ppc4xx/dma.h -9afc950487e7a9b84fbbf907acf248a2 linux-3.0/drivers/dma/ppc4xx/adma.h -6c5fef7ddb5e3934a64b11ef4767c23e linux-3.0/drivers/dma/ppc4xx/adma.c -5b6541bee415f82bd2182816682674c7 linux-3.0/drivers/dma/ppc4xx/Makefile -ecfd6fdc2ee6f3c5cf59cc44cb159d61 linux-3.0/drivers/dma/pl330.c -73002b4285d15d9402fca1f468e41001 linux-3.0/drivers/dma/pch_dma.c -a1f39dd0bfb8ec8c9122b7da8db610b9 linux-3.0/drivers/dma/mxs-dma.c -b5a767c16434142e2190efa03a960a50 linux-3.0/drivers/dma/mv_xor.h -57b3c42d49ba10eaf16159916a5a111b linux-3.0/drivers/dma/mv_xor.c -821bca290db2fd01e39edfb648495dbb linux-3.0/drivers/dma/mpc512x_dma.c -9640e246f874e8ef92b0bd9668251d80 linux-3.0/drivers/dma/ipu/ipu_irq.c -4ca8bd7242964eaffef4464e86826697 linux-3.0/drivers/dma/ipu/ipu_intern.h -7120c86a3d7595337c3609f6ad75e5c5 linux-3.0/drivers/dma/ipu/ipu_idmac.c -faa9fe709eff64090e756dcc43d16cd7 linux-3.0/drivers/dma/ipu/Makefile -f3abf45f1451686b6886bc3e260ba1da linux-3.0/drivers/dma/iovlock.c -3b3c7f8dfaf280d56c8424b3a5a2ab27 linux-3.0/drivers/dma/iop-adma.c -a12f74e5faa13c5c43882d0f0d8ac47d linux-3.0/drivers/dma/ioat/registers.h -a07bc31a2e3f591818f5358a6b8d8ca9 linux-3.0/drivers/dma/ioat/pci.c -7feb5f1458e91db2f4ddab10b63b0bcc linux-3.0/drivers/dma/ioat/hw.h -98991d07bf692068782cf47ab8b86c33 linux-3.0/drivers/dma/ioat/dma_v3.c -231e49416459426327a5051cca86f0e8 linux-3.0/drivers/dma/ioat/dma_v2.h -de55031bbbb529345379d9b159237ebf linux-3.0/drivers/dma/ioat/dma_v2.c -9441cab89d2d92eeaabcf529364509c3 linux-3.0/drivers/dma/ioat/dma.h -0c5a98c5754948421d29a6881cdd4e03 linux-3.0/drivers/dma/ioat/dma.c -9e3785c6414942f0012dc1f31f8728ab linux-3.0/drivers/dma/ioat/dca.c -e1acc09312a5afe32b8c05c62957a333 linux-3.0/drivers/dma/ioat/Makefile -d2bca36270a369bf0d7a48a086f0e130 linux-3.0/drivers/dma/intel_mid_dma_regs.h -bee04763d3fc6d6984037eb0106860f6 linux-3.0/drivers/dma/intel_mid_dma.c -929b9985fd949cea094d45f9447f208f linux-3.0/drivers/dma/imx-sdma.c -88479fd648a18bef80dfa1d2d7b9a92a linux-3.0/drivers/dma/imx-dma.c -5ebf60ffbe971e9a335fc487dc3e09ea linux-3.0/drivers/dma/fsldma.h -49496b53a3e11c9bb3b665da4a07cd4c linux-3.0/drivers/dma/fsldma.c -ddd32df91e4d7b5e699a8fbe74bcd50d linux-3.0/drivers/dma/dw_dmac_regs.h -f745da6d8f770d40ca78ebbc53351087 linux-3.0/drivers/dma/dw_dmac.c -26e9885eb0ead0d8354c0e7c03d04343 linux-3.0/drivers/dma/dmatest.c -6abe594666ab1f4b2ea5d3c725ebd9a0 linux-3.0/drivers/dma/dmaengine.c -0fca20cf864d36632e328c21af48ed7a linux-3.0/drivers/dma/coh901318_lli.h -5a77ba1a11e33e44e8e082642d875c09 linux-3.0/drivers/dma/coh901318_lli.c -ffad40ec2ff7b28f4bf2cf4d920303e3 linux-3.0/drivers/dma/coh901318.c -353be72a84cf21d15faf3b0cb7bb9447 linux-3.0/drivers/dma/at_hdmac_regs.h -8798e68076ba00355f87dbd62342b508 linux-3.0/drivers/dma/at_hdmac.c -7e8276496bc9bee2725ab4eb168fa7e8 linux-3.0/drivers/dma/amba-pl08x.c -0ae52bb2e7a39e6cd0723c23f23d05ae linux-3.0/drivers/dma/TODO -635b1823534cafc13d8d4e4106e3374a linux-3.0/drivers/dma/Makefile -dce2289aa9d95f5c34d15e656b4c1e03 linux-3.0/drivers/dma/Kconfig -fea994e9ac051516c49425bb2fb22f73 linux-3.0/drivers/dio/dio.c -6c8966339aa63a8f47e19fed3a841bb8 linux-3.0/drivers/dio/dio-sysfs.c -f94b16e73378230435a1c40b6e3371b5 linux-3.0/drivers/dio/dio-driver.c -ffdc16a1e0b64b2c67740931017eeffd linux-3.0/drivers/dio/Makefile -da23cb64769bef093cba2d5e2ff207a3 linux-3.0/drivers/dca/dca-sysfs.c -72c553972daa94ad434347cd3d2850e7 linux-3.0/drivers/dca/dca-core.c -41dd6448fd91bb95a6fd27657f2c061d linux-3.0/drivers/dca/Makefile -e8027774b02f7dd56bba97d290a88fc6 linux-3.0/drivers/dca/Kconfig -8eb385305976a2687d19217ee38d53ba linux-3.0/drivers/crypto/talitos.h -ff2118578e15317684c0981db1ff33f3 linux-3.0/drivers/crypto/talitos.c -103cf437b6934f20f7ba32578ba9af73 linux-3.0/drivers/crypto/s5p-sss.c -59e827b9257677cf8e1b279153fb938c linux-3.0/drivers/crypto/picoxcell_crypto_regs.h -b7575d04ad7f8c9b717c60b62fec10ae linux-3.0/drivers/crypto/picoxcell_crypto.c -dee532d4c7eadf1f022c9a0a3d04a569 linux-3.0/drivers/crypto/padlock-sha.c -1b8b76093f7c01d3252afda2ded36250 linux-3.0/drivers/crypto/padlock-aes.c -0aeec82177f7e05adcb2e8ca1fc95b53 linux-3.0/drivers/crypto/omap-sham.c -a1034fff1968f3b89f381e8d5c658423 linux-3.0/drivers/crypto/omap-aes.c -b2bcdcb351bba20c7d31cb992ba13a4f linux-3.0/drivers/crypto/n2_core.h -988021cc651c43c048673f6d0f4e7f48 linux-3.0/drivers/crypto/n2_core.c -405b6a73b76754bd85efda861c860d94 linux-3.0/drivers/crypto/n2_asm.S -9e0aff09a09409fd9c45873f211bca77 linux-3.0/drivers/crypto/mv_cesa.h -cb6fc9dab88d460c7ceb8856f98d2903 linux-3.0/drivers/crypto/mv_cesa.c -429d38f1c259948dacc7d5d9239b269d linux-3.0/drivers/crypto/ixp4xx_crypto.c -4fedb8f2c231bee5c77cc311a41d5cdf linux-3.0/drivers/crypto/hifn_795x.c -76e5709695a58062b44b4d0914958f67 linux-3.0/drivers/crypto/geode-aes.h -a3ab2c4df0e4945e81af4e36d133156f linux-3.0/drivers/crypto/geode-aes.c -7b482cdd8dd7a390a35222af0e49df48 linux-3.0/drivers/crypto/caam/regs.h -ac0bc134aeff07f4d3abf9c6be6b4123 linux-3.0/drivers/crypto/caam/jr.h -f95979246304f14b90b074a42522753f linux-3.0/drivers/crypto/caam/jr.c -d994752023d3c46a6ed7a27400d66992 linux-3.0/drivers/crypto/caam/intern.h -c8896dc9957b5284de1c1a0984419675 linux-3.0/drivers/crypto/caam/error.h -537395b428a7d0a0830978e4b31b2a7e linux-3.0/drivers/crypto/caam/error.c -2ab32ed779de0f85eb3996597f8e9b69 linux-3.0/drivers/crypto/caam/desc_constr.h -1ac6baa4d7ace11b2688f475de83a69a linux-3.0/drivers/crypto/caam/desc.h -8131e6b82dcfa30d73265160c1de99cc linux-3.0/drivers/crypto/caam/ctrl.c -b720a2910aae4f4ced0eadfe1d4d2494 linux-3.0/drivers/crypto/caam/compat.h -fab43c5ce44d0685f46529168f7f9591 linux-3.0/drivers/crypto/caam/caamalg.c -7eb18287dc000c8e45b9304c0a660ee4 linux-3.0/drivers/crypto/caam/Makefile -fc2066c2e08b811a159ea31f7a085ded linux-3.0/drivers/crypto/caam/Kconfig -ddd52b4d2952462d651a5117f669fc5b linux-3.0/drivers/crypto/amcc/crypto4xx_sa.h -a9144045c17a1c3869eaa87703ca248b linux-3.0/drivers/crypto/amcc/crypto4xx_sa.c -16376d3eb01c3d4b7c67c56dca26dc07 linux-3.0/drivers/crypto/amcc/crypto4xx_reg_def.h -7f189016bd60ede18d04f85eb518347b linux-3.0/drivers/crypto/amcc/crypto4xx_core.h -d5fcb9e436968eb494b8ca7c8c7bf767 linux-3.0/drivers/crypto/amcc/crypto4xx_core.c -16bff10a038992060b4c91380bdec815 linux-3.0/drivers/crypto/amcc/crypto4xx_alg.c -e6b5c8a8abf4bcd1502aceb45646b46d linux-3.0/drivers/crypto/amcc/Makefile -4a89fc489063f558db4491d9c6d2be50 linux-3.0/drivers/crypto/Makefile -2230a4aae50ebe4f6766d800c281496b linux-3.0/drivers/crypto/Kconfig -ac7708dd1549ba4b0d2ce4ff9edf9d32 linux-3.0/drivers/cpuidle/sysfs.c -a3c8af2ff61cbcfb6e929e4b64ba4bb1 linux-3.0/drivers/cpuidle/governors/menu.c -4b060efbcd4c4d024ccbb14c1d5500ab linux-3.0/drivers/cpuidle/governors/ladder.c -c0daff0e1df7ced27ef90002b047ca96 linux-3.0/drivers/cpuidle/governors/Makefile -0fbc7b9e2b80c3777b8f8b1867995bf4 linux-3.0/drivers/cpuidle/governor.c -cad674da582c17279f747d5007cd1c7c linux-3.0/drivers/cpuidle/driver.c -c00e3c0ee6f0d83df1da27e91af34cf2 linux-3.0/drivers/cpuidle/cpuidle.h -ffc6a875ab8c30b21b646f882dab47c8 linux-3.0/drivers/cpuidle/cpuidle.c -ac731c4981956276430ba88f1770446d linux-3.0/drivers/cpuidle/Makefile -2fe39833a5f089c50c97150bab40d69a linux-3.0/drivers/cpuidle/Kconfig -9009b87209cc5985b302557d46b874d5 linux-3.0/drivers/cpufreq/speedstep-smi.c -7029f7d9ee7877e48dbc53a21436584b linux-3.0/drivers/cpufreq/speedstep-lib.h -168757633751520af211aeed2d984144 linux-3.0/drivers/cpufreq/speedstep-lib.c -e76eaefc62868ec1455c4334d9503729 linux-3.0/drivers/cpufreq/speedstep-ich.c -edc4872681581994ea5ad42b030e8834 linux-3.0/drivers/cpufreq/speedstep-centrino.c -263768437f4dc5c5cec9e85e0cc14661 linux-3.0/drivers/cpufreq/sc520_freq.c -b5ac626b332593ce7a82a56db19c9e25 linux-3.0/drivers/cpufreq/powernow-k8.h -3961686a0539f2904776ff7b71279901 linux-3.0/drivers/cpufreq/powernow-k8.c -0b492cf9aa9c961cf6e0360ab2837a77 linux-3.0/drivers/cpufreq/powernow-k7.h -ea0165f78d1794e7bd557c2384c14c5c linux-3.0/drivers/cpufreq/powernow-k7.c -d78459e3f19cc4a9f793b2f5acf60615 linux-3.0/drivers/cpufreq/powernow-k6.c -e4f4a92772820daffb957b7a0db8d575 linux-3.0/drivers/cpufreq/pcc-cpufreq.c -e674b007d8944adf460cce9eeef148f9 linux-3.0/drivers/cpufreq/p4-clockmod.c -eff9f1e59689cdd1b44d415072c26d95 linux-3.0/drivers/cpufreq/mperf.h -f3475b2507e0773401b3d8d3f4bfccd7 linux-3.0/drivers/cpufreq/mperf.c -6ece23ad9181cc475528d7f507e022f2 linux-3.0/drivers/cpufreq/longrun.c -08efd3a7452b475999e676601fb23fb6 linux-3.0/drivers/cpufreq/longhaul.h -38db8f9d1f45dafeab04f38a0f74901a linux-3.0/drivers/cpufreq/longhaul.c -8bf7004fde2593fd6d57772f4264ccc5 linux-3.0/drivers/cpufreq/gx-suspmod.c -6b45b72b6f18d5eaaf78acbf503774f3 linux-3.0/drivers/cpufreq/freq_table.c -5d43dbd5a2d00e03ec175d9debd08bff linux-3.0/drivers/cpufreq/elanfreq.c -6791f6a70dd69e741b2191b35c160231 linux-3.0/drivers/cpufreq/e_powersaver.c -c14be058789766c1ea6840272e0095d6 linux-3.0/drivers/cpufreq/db8500-cpufreq.c -291198ea1f11527953328e82cb65baac linux-3.0/drivers/cpufreq/cpufreq_userspace.c -0591eb25909cd4a7f3e31e73d34e2a90 linux-3.0/drivers/cpufreq/cpufreq_stats.c -e469f4a4794c5197395f3f20414ab848 linux-3.0/drivers/cpufreq/cpufreq_powersave.c -daeee83741e359c1ad4eebe9d39a52c6 linux-3.0/drivers/cpufreq/cpufreq_performance.c -5ef5db4d0d2e43ca42175635ecde430c linux-3.0/drivers/cpufreq/cpufreq_ondemand.c -b149014f12d25e5fe3172d28ff769e52 linux-3.0/drivers/cpufreq/cpufreq_conservative.c -553f67845742b2c24007cdbf0697c945 linux-3.0/drivers/cpufreq/cpufreq.c -accf5fd60c34c3e71fe016c0e894eddc linux-3.0/drivers/cpufreq/cpufreq-nforce2.c -7d2d9726fcf408ec71a64c6d400aada2 linux-3.0/drivers/cpufreq/acpi-cpufreq.c -ce47556bec9e477c7de03ff84db68424 linux-3.0/drivers/cpufreq/Makefile -decb5c6838e9d494de7f0505a0d0b3e2 linux-3.0/drivers/cpufreq/Kconfig.x86 -70f487eb8f1922ee2c26c72a9228a299 linux-3.0/drivers/cpufreq/Kconfig -924787857c7aa5bba1d0cb82fa034bd3 linux-3.0/drivers/connector/connector.c -e4a54b5148de41b1219a62b9f97f4e8d linux-3.0/drivers/connector/cn_queue.c -533a01329addb992a643a05975019a7e linux-3.0/drivers/connector/cn_proc.c -89b42befa23cec0e0a88e89373de2a26 linux-3.0/drivers/connector/Makefile -8cdd7173229277b79fc5c4d4ab463fa0 linux-3.0/drivers/connector/Kconfig -29527934f3b0eddd490d6d0da9241ef5 linux-3.0/drivers/clocksource/tcb_clksrc.c -9f2d4cfd79bd48e6596a8bdedae77e77 linux-3.0/drivers/clocksource/sh_tmu.c -572ac59bdcb71d9f055354f62e2464b2 linux-3.0/drivers/clocksource/sh_mtu2.c -42cd023284d2f44e46075a0d66a98594 linux-3.0/drivers/clocksource/sh_cmt.c -4875683a03794200b3effe0fc92e0325 linux-3.0/drivers/clocksource/scx200_hrt.c -690d734347fd848f60d3e3526fce82fe linux-3.0/drivers/clocksource/mmio.c -fba267b2ff1dff1c76f105b47a29d859 linux-3.0/drivers/clocksource/i8253.c -df011c26de4469c12724157ebe188daf linux-3.0/drivers/clocksource/cyclone.c -0cb369766a71e35b936a8a2dfede95b4 linux-3.0/drivers/clocksource/cs5535-clockevt.c -36715cc4a8b326848e55775f8817bbde linux-3.0/drivers/clocksource/acpi_pm.c -87fa17a118d8a4f908998808384720ff linux-3.0/drivers/clocksource/Makefile -c3bcc78ce2da73c69efaec79dda9a4ee linux-3.0/drivers/clocksource/Kconfig -848b9aad754d9123d917204ee004406c linux-3.0/drivers/clk/clkdev.c -8dd4ace5c28102f5b8dbd4ffc448358c linux-3.0/drivers/clk/Makefile -9a9a8acb2241c6d8b76caa2fd15600db linux-3.0/drivers/clk/Kconfig -d55b8beb8aed77624d1e0ce53ea60d0e linux-3.0/drivers/char/xilinx_hwicap/xilinx_hwicap.h -c7d5bc72d0b40462c396095c3528cfe5 linux-3.0/drivers/char/xilinx_hwicap/xilinx_hwicap.c -adcf492ba52fcbc15ba3cb87afa3c53d linux-3.0/drivers/char/xilinx_hwicap/fifo_icap.h -b34a9098f4a985bc6efb718a02276f6d linux-3.0/drivers/char/xilinx_hwicap/fifo_icap.c -3cae866f62b135083fa2e29de6e74c75 linux-3.0/drivers/char/xilinx_hwicap/buffer_icap.h -a0c695653f745626b4541f843207b29e linux-3.0/drivers/char/xilinx_hwicap/buffer_icap.c -28f54501dfd2731e80cf6e968b4c8192 linux-3.0/drivers/char/xilinx_hwicap/Makefile -4dbc7cc9fb57a4146558e4e65f42560e linux-3.0/drivers/char/virtio_console.c -3c10cb7317d66587cae0092019181258 linux-3.0/drivers/char/viotape.c -d804258e87750a172308bc55537bb7a6 linux-3.0/drivers/char/uv_mmtimer.c -c4930c74a25a8baf43c1e36ab7e61a12 linux-3.0/drivers/char/ttyprintk.c -99fec6f6abf6dee2e6a212deabe966f6 linux-3.0/drivers/char/tpm/tpm_tis.c -e1a40a1391059d9f535963d346b4c3c5 linux-3.0/drivers/char/tpm/tpm_nsc.c -e7a213d9641d9575a0f1f50b5a6a3b4f linux-3.0/drivers/char/tpm/tpm_infineon.c -0672f77610260c00aa7cc878a0d0c168 linux-3.0/drivers/char/tpm/tpm_bios.c -9eaa4f727b8d6a19d024e2e22c982753 linux-3.0/drivers/char/tpm/tpm_atmel.h -e98e1544ac932ba71d95dda450ae180c linux-3.0/drivers/char/tpm/tpm_atmel.c -3f94f90099d56b6c4fc7719b98445254 linux-3.0/drivers/char/tpm/tpm.h -4dd4234521abfc9b7ee5fbe478f64a49 linux-3.0/drivers/char/tpm/tpm.c -9f4ea2f343a6bd90f029b08d84aca671 linux-3.0/drivers/char/tpm/Makefile -7bb6f58f4132bc849444393d17afb13a linux-3.0/drivers/char/tpm/Kconfig -dfc1573d05460d3360df88bc6bda4b3e linux-3.0/drivers/char/toshiba.c -93e6cc14f4e263001209d76cfcdc08f3 linux-3.0/drivers/char/tlclk.c -e5c4cacb78d3b46a5446838ef1e6a298 linux-3.0/drivers/char/tb0219.c -22d2230ae6f525387e16c5244e1b2afd linux-3.0/drivers/char/sonypi.c -48223bbc7f7950c35fd9038711b977ba linux-3.0/drivers/char/snsc_event.c -30b2978abcbef4c2bdca04d0a8fe9f46 linux-3.0/drivers/char/snsc.h -4a2bd630d385773e67b7668910e58560 linux-3.0/drivers/char/snsc.c -670a9ab5cd7a2258010b7ab315359be5 linux-3.0/drivers/char/scx200_gpio.c -d909dad168e0f94666fec40646b19b27 linux-3.0/drivers/char/scc.h -cd8b92fa2f69ec740835ed5b43bab850 linux-3.0/drivers/char/rtc.c -9552c3df8df8eb2d95bcfeab493389af linux-3.0/drivers/char/raw.c -01561eb1af6f6a97e4d3e8d1fc5e6bbc linux-3.0/drivers/char/random.c -3c56d6002f2374b484585ee939ab0e2a linux-3.0/drivers/char/ramoops.c -7b74f0fe14db8d64f8c002be116ba12b linux-3.0/drivers/char/ps3flash.c -d5e7a339ea9c6efbd66e002889754bb6 linux-3.0/drivers/char/ppdev.c -9990b381aff71ea36e28a41ddda3c1f6 linux-3.0/drivers/char/pcmcia/synclink_cs.c -a603eae17f1244f38828a182c19c32d7 linux-3.0/drivers/char/pcmcia/cm4040_cs.h -cfc7a7ccd7a46f03d19ee15f8b94a004 linux-3.0/drivers/char/pcmcia/cm4040_cs.c -1747d4a894fcf5427c746d1fcc5404e0 linux-3.0/drivers/char/pcmcia/cm4000_cs.c -80045d051820416b6eb47db8d2348e0d linux-3.0/drivers/char/pcmcia/Makefile -971ae70ea347efeaaf9ec36f6fa045d3 linux-3.0/drivers/char/pcmcia/Kconfig -83d832c1c7e2080d72e67ef9002359ad linux-3.0/drivers/char/pc8736x_gpio.c -1bd047e90aa3bdb892ddb71dae852f4c linux-3.0/drivers/char/nwflash.c -66b1a687fd022469f257d0f6b6b88172 linux-3.0/drivers/char/nwbutton.h -1fc5d96a258071dc525d7896331adda3 linux-3.0/drivers/char/nwbutton.c -53e43b3686e0aa7b7aaf4fcfb8293d71 linux-3.0/drivers/char/nvram.c -85b9cc2aed1ad58f04184fb571040292 linux-3.0/drivers/char/nsc_gpio.c -351dae50aed541a360515a180ab559d4 linux-3.0/drivers/char/mwave/tp3780i.h -3e70ab78a70fb104d466e0ddbf9c35c0 linux-3.0/drivers/char/mwave/tp3780i.c -045c92eff723bf7f9277d4d5520b9300 linux-3.0/drivers/char/mwave/smapi.h -1998ccccbae612952621af2c37fb1fe0 linux-3.0/drivers/char/mwave/smapi.c -42220fe3671f66f228faccd7e4c678a1 linux-3.0/drivers/char/mwave/mwavepub.h -10a6fb017a111e8b85f4fdc8edf0c4d1 linux-3.0/drivers/char/mwave/mwavedd.h -bbeec348f6575739882fb11fbda0bbd2 linux-3.0/drivers/char/mwave/mwavedd.c -d2e833854607d87a5c6ddb5e7fbee2b8 linux-3.0/drivers/char/mwave/README -3c24f672c2b037d55ae96d8444623902 linux-3.0/drivers/char/mwave/Makefile -4e4c4d454b7ef0baf3cf41c582b86193 linux-3.0/drivers/char/mwave/3780i.h -f2ac118f18e40cf1328562fc001dd08e linux-3.0/drivers/char/mwave/3780i.c -2e98727e3f2cef3d57ff827c7aac3d3e linux-3.0/drivers/char/mspec.c -782675d10476b7d92f2aa6d5d2561509 linux-3.0/drivers/char/msm_smd_pkt.c -f1e718006bae4c321c8011340507e316 linux-3.0/drivers/char/mmtimer.c -b47a5a59c6ee65ccc8c6c1864aefc2eb linux-3.0/drivers/char/misc.c -1d9a603a3f8d8709c399eec23f239851 linux-3.0/drivers/char/mem.c -5a92883188648ec14d53006d13fed4e0 linux-3.0/drivers/char/mbcs.h -280c67aa8beed91183b0173af83ed9c7 linux-3.0/drivers/char/mbcs.c -aac71fc5619a6a10da83053934f0caed linux-3.0/drivers/char/lp.c -13725ac3711df0beca2cd87733c5a912 linux-3.0/drivers/char/ipmi/ipmi_watchdog.c -73651146e079422bac0cd91356f87e5c linux-3.0/drivers/char/ipmi/ipmi_smic_sm.c -6b318522e3a2b93f313626214924734b linux-3.0/drivers/char/ipmi/ipmi_si_sm.h -b3c08cb63e79106bd6485557688e6098 linux-3.0/drivers/char/ipmi/ipmi_si_intf.c -2f78d6859370c22965f83a196ce577cd linux-3.0/drivers/char/ipmi/ipmi_poweroff.c -c840dc956eb4a3b40af22ad3db0402b5 linux-3.0/drivers/char/ipmi/ipmi_msghandler.c -625ab459d619fc52266b5f3981ba0d1f linux-3.0/drivers/char/ipmi/ipmi_kcs_sm.c -e1b3d28b1cba802dddef34e4e26e4bdd linux-3.0/drivers/char/ipmi/ipmi_devintf.c -8a8be1824fe469ec495aff15a59fb89c linux-3.0/drivers/char/ipmi/ipmi_bt_sm.c -22cab11ced422218bba4d108494e6f98 linux-3.0/drivers/char/ipmi/Makefile -6e2476ae5f75fc00556dfe92b480f876 linux-3.0/drivers/char/ipmi/Kconfig -6d98bb58d1dbc3f3fbbe6b9ede8fc7b5 linux-3.0/drivers/char/i8k.c -d377476e142da81deb31677f3a744b35 linux-3.0/drivers/char/hw_random/virtio-rng.c -554b1a8fab1d1a9d992d99e47c990faa linux-3.0/drivers/char/hw_random/via-rng.c -2ca6232a9345faf9c6172e57b5d268cb linux-3.0/drivers/char/hw_random/tx4939-rng.c -ecffe1ce70f5b5c219ecfbf151598adf linux-3.0/drivers/char/hw_random/timeriomem-rng.c -554e933491102910e0572221e7993380 linux-3.0/drivers/char/hw_random/picoxcell-rng.c -4e5b402a62af853c3f5f33c6b73730e2 linux-3.0/drivers/char/hw_random/pasemi-rng.c -f3959496d0fd1faf791e525e2cb028f3 linux-3.0/drivers/char/hw_random/omap-rng.c -78a6148d43bf4c09c70c862ec3c0f772 linux-3.0/drivers/char/hw_random/octeon-rng.c -e7b3dc53d5e38c8f2356ec8e3504740c linux-3.0/drivers/char/hw_random/nomadik-rng.c -5dc99c78c1ef6673c921366700e35ce5 linux-3.0/drivers/char/hw_random/n2rng.h -c82f28964d5883362b0f9ce037b8d37d linux-3.0/drivers/char/hw_random/n2-drv.c -9c269a44b44c0faf63fe4dcf3e10c1a3 linux-3.0/drivers/char/hw_random/n2-asm.S -a2459a6cfdd6629ae86ecb7233d67f42 linux-3.0/drivers/char/hw_random/mxc-rnga.c -d20273277a108def7856719512dd3d22 linux-3.0/drivers/char/hw_random/ixp4xx-rng.c -98cb0b93b20b43b0677011d752b08e0a linux-3.0/drivers/char/hw_random/intel-rng.c -59874e8f59c8ca51d7365740ecff5461 linux-3.0/drivers/char/hw_random/geode-rng.c -3f9707cc661633a93c3e2251cd98448e linux-3.0/drivers/char/hw_random/core.c -1ecfa123806a18eb323e6ab0cb8726b7 linux-3.0/drivers/char/hw_random/amd-rng.c -b033898fda6c53ed8125704355366a73 linux-3.0/drivers/char/hw_random/Makefile -3e4b18e63dafe364910bc77d9d8a4c02 linux-3.0/drivers/char/hw_random/Kconfig -98412a41d4a6a86237a7f4b13e5e67dd linux-3.0/drivers/char/hpet.c -874f1d070b5c14e1e856dfcb0ebcc981 linux-3.0/drivers/char/hangcheck-timer.c -9941fa92138d6abf2e41eb91ac11aaad linux-3.0/drivers/char/genrtc.c -bf20935473dc96c8639a0c1a351c3ea3 linux-3.0/drivers/char/generic_nvram.c -751865ce9708caa84edffe4abcb9351d linux-3.0/drivers/char/efirtc.c -f3a0980fcbbda54479d69b1621e45552 linux-3.0/drivers/char/dtlk.c -e9ae1ac5714c219219435a255a440235 linux-3.0/drivers/char/dsp56k.c -9b3d8ca321cb356fa6c86b6f751e4c7b linux-3.0/drivers/char/ds1620.c -3840ee542e074958c4242cec34b64d36 linux-3.0/drivers/char/ds1302.c -12bfa48039098aadb949a28c278120d5 linux-3.0/drivers/char/bsr.c -5e50eb2a652143a599e72f79d722adc3 linux-3.0/drivers/char/briq_panel.c -bd1a0d4f3b096ffa3643474e2b9efefd linux-3.0/drivers/char/bfin-otp.c -e53a70bf9d69d1686f6e8fd2c53b4ee8 linux-3.0/drivers/char/applicom.h -7b44201f59c8d007804ec15fd263ff17 linux-3.0/drivers/char/applicom.c -6195d60dc4bfe69e80b6b5789adbb1ef linux-3.0/drivers/char/apm-emulation.c -8763f20dadcb715a0ceba9e99ab544c0 linux-3.0/drivers/char/agp/via-agp.c -eed7d6823507565aa4331b7d84427769 linux-3.0/drivers/char/agp/uninorth-agp.c -92daab6c96c7da86a1cf17e107f22420 linux-3.0/drivers/char/agp/sworks-agp.c -c40c66ecff9f6e36f147d50e2cce17c5 linux-3.0/drivers/char/agp/sis-agp.c -0834b59fb4dc3088968a273844c62539 linux-3.0/drivers/char/agp/sgi-agp.c -a934ceb7da268040c41d2a4233eaca4e linux-3.0/drivers/char/agp/parisc-agp.c -344fe08ed5893207fa5c40cb7b93c2b2 linux-3.0/drivers/char/agp/nvidia-agp.c -fec1d03665181e9700b43af134f8db3f linux-3.0/drivers/char/agp/isoch.c -ad6f7f88a8fdfb1fd8a0fb4b7b567698 linux-3.0/drivers/char/agp/intel-gtt.c -7d606829d3a15574cc3ad4622d01e44f linux-3.0/drivers/char/agp/intel-agp.h -7bcc90b6404f4274863c50b63b0d09b2 linux-3.0/drivers/char/agp/intel-agp.c -cc53058080a4c8e1752471c5a4d86232 linux-3.0/drivers/char/agp/i460-agp.c -dd205994ed12c33f95c419258a6e806d linux-3.0/drivers/char/agp/hp-agp.c -80951a5dd13e1e23738585db67246ef0 linux-3.0/drivers/char/agp/generic.c -13a58fa016e9eda0f81dd86c8dbcac0d linux-3.0/drivers/char/agp/frontend.c -695790341d670fcd31057a90dfa6f89a linux-3.0/drivers/char/agp/efficeon-agp.c -a2cff08a2ad046c31282f7342fcafc0c linux-3.0/drivers/char/agp/compat_ioctl.h -2e17728abbb86b6f2dd7f2d869c253a4 linux-3.0/drivers/char/agp/compat_ioctl.c -02814c7dad5359aef624ad10fef7c489 linux-3.0/drivers/char/agp/backend.c -d8b777fcb0fb73aa2bbde697b562b4ec linux-3.0/drivers/char/agp/ati-agp.c -4ccdd3bd0fb984ef7c3e90e8569e41d6 linux-3.0/drivers/char/agp/amd64-agp.c -1e5dccde409c0e04a2b5b50afe8581f0 linux-3.0/drivers/char/agp/amd-k7-agp.c -a3fe22dee117840d3aa385b1ce585535 linux-3.0/drivers/char/agp/alpha-agp.c -04b2ece615db81ac072a28974616e14c linux-3.0/drivers/char/agp/ali-agp.c -0535e27d214e1d840c46d7fefd84be1d linux-3.0/drivers/char/agp/agp.h -367d0b322b0433a166596cd43ec30438 linux-3.0/drivers/char/agp/Makefile -e416c96c24fd1638f0bb6e67d4279ad8 linux-3.0/drivers/char/agp/Kconfig -26771e797556fd37894dea389a522f74 linux-3.0/drivers/char/Makefile -eaba62d3b9600377d9f11c0d7847f10d linux-3.0/drivers/char/Kconfig -56f9251b3665ada88e605e61a31264e9 linux-3.0/drivers/cdrom/viocd.c -ad5e1aff276e7f90c8b77a711111a028 linux-3.0/drivers/cdrom/gdrom.c -0c2ac617b3ab20e7ea08df732f7f1cdc linux-3.0/drivers/cdrom/cdrom.c -e1dccf28e1911669fab421f4f06663a7 linux-3.0/drivers/cdrom/Makefile -b5720f79b0b7c267cfdf90d7ca5c32ff linux-3.0/drivers/bluetooth/hci_vhci.c -88c0ae05185ed0da1d22abda7936328a linux-3.0/drivers/bluetooth/hci_uart.h -67cbf0fe2e6b858931fd70d28dbee6e9 linux-3.0/drivers/bluetooth/hci_ll.c -96ece4cbc2b4b1c2e3b236d62396a42a linux-3.0/drivers/bluetooth/hci_ldisc.c -6f126a1103bed68963d1324ce3b78695 linux-3.0/drivers/bluetooth/hci_h4.c -e14ca79e0289cd981a6d1aca14aee837 linux-3.0/drivers/bluetooth/hci_bcsp.c -bcf89f1c625c31d71f5a6b48637b5f1c linux-3.0/drivers/bluetooth/hci_ath.c -7b664011ed7bf71b56d8895f09bb506d linux-3.0/drivers/bluetooth/dtl1_cs.c -ae09a64d1c88f6d6d68e1a12959f62b3 linux-3.0/drivers/bluetooth/btwilink.c -6beab0916f6354fef3919d04a1354c43 linux-3.0/drivers/bluetooth/btusb.c -66ade4dc08f026955ffb25c13133f616 linux-3.0/drivers/bluetooth/btuart_cs.c -a2d8ccd6fd7f7b31a11cee02462936bb linux-3.0/drivers/bluetooth/btsdio.c -7e19fbe06afbe7cbadb868c5dd856ed2 linux-3.0/drivers/bluetooth/btmrvl_sdio.h -4f84e44cba7b55266fedbaa81a2d909d linux-3.0/drivers/bluetooth/btmrvl_sdio.c -1a9cee0ff2ec1eab21f2b72702c314a3 linux-3.0/drivers/bluetooth/btmrvl_main.c -f20458918a4a697a8764afa77b97e57d linux-3.0/drivers/bluetooth/btmrvl_drv.h -a9984f04d2035851e5290e0aaca59f6b linux-3.0/drivers/bluetooth/btmrvl_debugfs.c -b0d0d9cba246bf71638bd4c97c3bac98 linux-3.0/drivers/bluetooth/bt3c_cs.c -66858a8dbcaac8843a6eb892a3aca4dd linux-3.0/drivers/bluetooth/bpa10x.c -12e6f2f4002bc7b36d5c388dc3e03d83 linux-3.0/drivers/bluetooth/bluecard_cs.c -ebca375e4f282f0e3fabb34d96bc668a linux-3.0/drivers/bluetooth/bfusb.c -0d932730b15a688e96cc689320d5620e linux-3.0/drivers/bluetooth/bcm203x.c -a28c0b3f9cf036c29443468de8913c93 linux-3.0/drivers/bluetooth/ath3k.c -e6553d24a8be79be81495d708421a0ad linux-3.0/drivers/bluetooth/Makefile -a3d6e1e3beb9ee80547200fa6da309cd linux-3.0/drivers/bluetooth/Kconfig -5e04e3aca8a537618f490dfbb2d2b343 linux-3.0/drivers/block/z2ram.c -3dac9716e25d0d30b785c0c117f79d98 linux-3.0/drivers/block/xsysace.c -898944d47619a2de1e4933c3ef07a276 linux-3.0/drivers/block/xen-blkfront.c -917511f2fc00bc57cba0d6c4950896a6 linux-3.0/drivers/block/xen-blkback/xenbus.c -d6c5e54c9f1ef380ab548e3597cfec95 linux-3.0/drivers/block/xen-blkback/common.h -9319d2c45588164ef2bc66aba6a051a5 linux-3.0/drivers/block/xen-blkback/blkback.c -d753d207e16fea896cb2f99a4890a48b linux-3.0/drivers/block/xen-blkback/Makefile -02136b92f4f0da836f8c173b06c9e3fb linux-3.0/drivers/block/xd.h -36e41c0bfb8ea2049a299f3c425b7444 linux-3.0/drivers/block/xd.c -b64877e0097ab81d14b7c619983bcd9e linux-3.0/drivers/block/virtio_blk.c -c521080b9d259210487b6032f397c719 linux-3.0/drivers/block/viodasd.c -2cfe16c97946c22c5869efbc32d716bc linux-3.0/drivers/block/umem.h -5b1e874beb5f6531172f0af792630c1e linux-3.0/drivers/block/umem.c -798dd2f3a759ce3530f567ad35c78eb4 linux-3.0/drivers/block/ub.c -8311b829be497beccb172fe76bacd4aa linux-3.0/drivers/block/sx8.c -c4baf6043c019901dc05baa645a20b4c linux-3.0/drivers/block/swim_asm.S -d637d1d1acd93cda36eea7383a3b5149 linux-3.0/drivers/block/swim3.c -394765f1a2bf5b2e5d77335b61bb0465 linux-3.0/drivers/block/swim.c -03fe1980caba72f1c53e6900d5e576b0 linux-3.0/drivers/block/sunvdc.c -224b9c453f12fa74684c4f962883eab2 linux-3.0/drivers/block/smart1,2.h -44cd26f9a2e45e0652eeeacd053b9a81 linux-3.0/drivers/block/rbd_types.h -f10c9a49c7aa16e570c34211b19e4d75 linux-3.0/drivers/block/rbd.c -7c2fe2ddc17daa7b0d5f2142c1f6a65c linux-3.0/drivers/block/ps3vram.c -f48fc5f3045884a4995dec95bf45a4fa linux-3.0/drivers/block/ps3disk.c -dc0d524697998ed1ee4ec43d3e3c2adc linux-3.0/drivers/block/pktcdvd.c -49a89b39a0fa3f7c4e037fbf3029852c linux-3.0/drivers/block/paride/pt.c -f558b071d003aabdc4affdb0d967f44b linux-3.0/drivers/block/paride/pseudo.h -d6d08b2a49ec66867dd351936e00c501 linux-3.0/drivers/block/paride/ppc6lnx.c -4c4fc4864286bab29d3ebfa850b60996 linux-3.0/drivers/block/paride/pg.c -46ea486ac0e0f07f5268660498ac627b linux-3.0/drivers/block/paride/pf.c -635cccc6d8a848985e2cd9d2508570f2 linux-3.0/drivers/block/paride/pd.c -7fc3077377eac6e4ce1eb4bfb17fc612 linux-3.0/drivers/block/paride/pcd.c -c9a0e080fb4dc8ab754a41de5c7344c2 linux-3.0/drivers/block/paride/paride.h -8e2877b01178c2b1aee4db03964a4451 linux-3.0/drivers/block/paride/paride.c -d05bebb174f0d0dfdb0ef0667e22be4d linux-3.0/drivers/block/paride/on26.c -d85dc71e1826eb62f38b1798531d5786 linux-3.0/drivers/block/paride/on20.c -ad35748a9aa9764f6e71c7c1f2c012e0 linux-3.0/drivers/block/paride/mkd -e22c26de3679de5013e88ac268906425 linux-3.0/drivers/block/paride/ktti.c -c09f642c70378d4e9fa0e907459b6608 linux-3.0/drivers/block/paride/kbic.c -1be3390063369dc73fb4269efccb95e5 linux-3.0/drivers/block/paride/frpw.c -e2078b945392ac20667f628d1aba8ce1 linux-3.0/drivers/block/paride/friq.c -d182b2050e387c231125bf3cab3019e6 linux-3.0/drivers/block/paride/fit3.c -fdc3990949fbe315d641f60adf8825ff linux-3.0/drivers/block/paride/fit2.c -2050eabd2eb2db056190afc58dd0fda5 linux-3.0/drivers/block/paride/epia.c -4c7d4ffb14d4d1f46c4f644c38ee12b3 linux-3.0/drivers/block/paride/epat.c -dc2d15afe15e8743398eee9791d41c3c linux-3.0/drivers/block/paride/dstr.c -36b3dd7aee62e03bd97a7dd956390054 linux-3.0/drivers/block/paride/comm.c -2dbb7750d280302a88b78d2ea424ce99 linux-3.0/drivers/block/paride/bpck6.c -383a7bc8ee71a5d1899086b8a1325a0b linux-3.0/drivers/block/paride/bpck.c -93df7aa1eda613536d507c1358dd1f4e linux-3.0/drivers/block/paride/aten.c -8f1739e1afa0ba55f9242557421e0f16 linux-3.0/drivers/block/paride/Transition-notes -d08f7085cd18816fe02e80972550a241 linux-3.0/drivers/block/paride/Makefile -6fc6c6bf5e1da015b69a0bb13ea2e5d7 linux-3.0/drivers/block/paride/Kconfig -01af9cc986a2a213e2c49f73d87130b6 linux-3.0/drivers/block/osdblk.c -ff403048a8e8f32b4982ffdc4e95fb0f linux-3.0/drivers/block/nbd.c -d8553369872787fd869e838473f0f2c9 linux-3.0/drivers/block/mg_disk.c -78db377cbe74ea3c1671899f6d76b47a linux-3.0/drivers/block/loop.c -bc77879906ea91268a35614669f332c8 linux-3.0/drivers/block/ida_ioctl.h -b23dd2d8c5f6c7fc827fe249b82895d9 linux-3.0/drivers/block/ida_cmd.h -16f3768da06715a4f453be7c3e309e8a linux-3.0/drivers/block/hd.c -bf137b50acf60951ee171d35978e8115 linux-3.0/drivers/block/floppy.c -925a4323e4939f4b6b9b7954435a38af linux-3.0/drivers/block/drbd/drbd_wrappers.h -8a6cbd0afbc8519856f50b59486a3e51 linux-3.0/drivers/block/drbd/drbd_worker.c -188528d59adabfcf5add2ca0019cf6af linux-3.0/drivers/block/drbd/drbd_vli.h -4c30d9ba8faaa90e73fd98ca64b126f8 linux-3.0/drivers/block/drbd/drbd_strings.c -b10d01f4e641365546d099bc6627edfc linux-3.0/drivers/block/drbd/drbd_req.h -be37988cdb713e866c506334c0e16b64 linux-3.0/drivers/block/drbd/drbd_req.c -e52097b8b91a531cafe31b01ee540f7a linux-3.0/drivers/block/drbd/drbd_receiver.c -f0b1f477508c8addb8e33493188ba159 linux-3.0/drivers/block/drbd/drbd_proc.c -56dc7ce9f5cff4df71a165f588cb2ef3 linux-3.0/drivers/block/drbd/drbd_nl.c -81887667d619c322e6de10cb5582151f linux-3.0/drivers/block/drbd/drbd_main.c -2f30b50159f65d56639b83820e27604a linux-3.0/drivers/block/drbd/drbd_int.h -570491e54157e3d476eee6371a6ce45c linux-3.0/drivers/block/drbd/drbd_bitmap.c -836181c6176c2f3380fd6f6ec829169e linux-3.0/drivers/block/drbd/drbd_actlog.c -5f29b96aae67db9fa1def0dd4e87ad6b linux-3.0/drivers/block/drbd/Makefile -5bf54910d9528ea68c53ca515e3ac5ff linux-3.0/drivers/block/drbd/Kconfig -fe644c1679577909f892bd0b8702800f linux-3.0/drivers/block/cryptoloop.c -8d40b87f1d4098e2f22b64966928af4c linux-3.0/drivers/block/cpqarray.h -8dfa5a25450d28bbe3096fb52ec373f3 linux-3.0/drivers/block/cpqarray.c -3d89a3ebe9f2a915ef15449763c64b44 linux-3.0/drivers/block/cciss_scsi.h -88bcea1c8bf41a324d8f2f748c407536 linux-3.0/drivers/block/cciss_scsi.c -088e151d1c77c48a3b6f960d852c7ca2 linux-3.0/drivers/block/cciss_cmd.h -55c2d8702a5e9246027eb3b62c850a3e linux-3.0/drivers/block/cciss.h -4b118270e887b2b75a0a446989489267 linux-3.0/drivers/block/cciss.c -3a8553ade2ee6d86355834a5d0967dae linux-3.0/drivers/block/brd.c -df53858ef0218f62122a9cc1ca6a1d3d linux-3.0/drivers/block/ataflop.c -59d3fe9a1c32cc57da25e2bbe3aaf555 linux-3.0/drivers/block/aoe/aoenet.c -03963ceff6bc6bc96a1604afec38bcb8 linux-3.0/drivers/block/aoe/aoemain.c -c15e2a7060ffe789be07c708692af11e linux-3.0/drivers/block/aoe/aoedev.c -4966d808afd5262090f73b2bb12456e4 linux-3.0/drivers/block/aoe/aoecmd.c -ee582f5593dc4a1d36d54794f0dc44ee linux-3.0/drivers/block/aoe/aoechr.c -43f4316a41dd784473e1996c54fad8cf linux-3.0/drivers/block/aoe/aoeblk.c -5f676cffefc2c0f842750778e42a5185 linux-3.0/drivers/block/aoe/aoe.h -4352d87dc85c6e3420da95f9b8dc9936 linux-3.0/drivers/block/aoe/Makefile -a34d1426f1a4d1a8116639fa36c04fbd linux-3.0/drivers/block/amiflop.c -e00dcc36004485f6e91861fcaace54b9 linux-3.0/drivers/block/Makefile -aeb3d4120e53481586e59e56b6124d6a linux-3.0/drivers/block/Kconfig -e4af30770fe3195e670882470eaadbcd linux-3.0/drivers/block/DAC960.h -e58db8aad7f8c320ed6da73529105db0 linux-3.0/drivers/block/DAC960.c -1b54546374995fc7451cbf7b78c14dc0 linux-3.0/drivers/bcma/scan.h -c4cd8bc1b98b3a3c19573200fc59b2b1 linux-3.0/drivers/bcma/scan.c -7e8021db2ae114def071ea558d729415 linux-3.0/drivers/bcma/main.c -c5a4da82ddedccf93b738a847bb6fc9c linux-3.0/drivers/bcma/host_pci.c -6500e26442778d165c7c956b3a9e3c11 linux-3.0/drivers/bcma/driver_pci.c -63b66f98531537957ae1e808997f9161 linux-3.0/drivers/bcma/driver_chipcommon_pmu.c -b00addfb14d69aa0e445095bfae81d9d linux-3.0/drivers/bcma/driver_chipcommon.c -c765c2b3250c00c018dcda61073f6d47 linux-3.0/drivers/bcma/core.c -bc84f4ec0fd7752b0f030df52b19050d linux-3.0/drivers/bcma/bcma_private.h -8eaec86cf3882099c98386cc2cd61df1 linux-3.0/drivers/bcma/TODO -ea5572b01aa0385124ea5114dac6a36a linux-3.0/drivers/bcma/README -8b1020094f5a9ff9a543a6dcbff78eb9 linux-3.0/drivers/bcma/Makefile -4b3c902023282b56a982470cb2300a54 linux-3.0/drivers/bcma/Kconfig -17e87088ae4361f8773623cc44edc865 linux-3.0/drivers/base/transport_class.c -56803cb5d4aac073536cf8fa933fa449 linux-3.0/drivers/base/topology.c -d4905fe676bf16e7d65b55fd2962f323 linux-3.0/drivers/base/syscore.c -4ee8d8417f3eee0258a73976d8118ab5 linux-3.0/drivers/base/sys.c -eeb787d6ab3207c12316c62c792b6d3d linux-3.0/drivers/base/power/wakeup.c -ddd9399f8056209163cf27c18260dcbb linux-3.0/drivers/base/power/trace.c -dba21a26ca9848973d0161d7c48c3eeb linux-3.0/drivers/base/power/sysfs.c -7a17ca1768e883abd111a7ffdc6ed7e6 linux-3.0/drivers/base/power/runtime.c -0a148991502e1167b524130fc478a305 linux-3.0/drivers/base/power/power.h -4842eba61c3dd38ce7212490e556cdc9 linux-3.0/drivers/base/power/opp.c -8bb45ae45a1d49b47cef26074c44ee3d linux-3.0/drivers/base/power/main.c -92182ab49219644c4f4c4784bddf6053 linux-3.0/drivers/base/power/generic_ops.c -0689e5094c78b913bf0041f34a291297 linux-3.0/drivers/base/power/clock_ops.c -dad8e12bb266ff011ca4f8b3975d17dc linux-3.0/drivers/base/power/Makefile -617549e806d060431a5ac5c6477346d4 linux-3.0/drivers/base/platform.c -af8f0fd63c5124d86d164f8c496ed908 linux-3.0/drivers/base/node.c -b209eef30a104610991fb0d87b29d680 linux-3.0/drivers/base/module.c -8b12795f8b7f6e7f53393c9b73bac247 linux-3.0/drivers/base/memory.c -dadd570179d0afd3d643c79eb883237e linux-3.0/drivers/base/map.c -94aa4a477c1efcdabab71945326ad9aa linux-3.0/drivers/base/isa.c -0f732dbfb2622c07f12a631bcaccb307 linux-3.0/drivers/base/iommu.c -15c138da339de5561e582724e4cde816 linux-3.0/drivers/base/init.c -2b2946fc3653f92a69719908e4675e88 linux-3.0/drivers/base/hypervisor.c -4752ba16d0d88e1412f5e07af35485b6 linux-3.0/drivers/base/firmware_class.c -d335dba35f42c373843ce4fae777077f linux-3.0/drivers/base/firmware.c -dcfe74835513f13d419321b891c6ab0a linux-3.0/drivers/base/driver.c -2d1928808bfa804817b70052e11fc2ce linux-3.0/drivers/base/dma-mapping.c -978f9585cc9f5afd741613a37af563c9 linux-3.0/drivers/base/dma-coherent.c -5b690f578a00372a744e5aa885739446 linux-3.0/drivers/base/devtmpfs.c -6a0d9e3e4f439b7a53a68a3d19370f39 linux-3.0/drivers/base/devres.c -3d757188eb3bbf76abfe5bd7a97d0e93 linux-3.0/drivers/base/dd.c -a4a4c69179790fd3fccfdcbdcda6e7b8 linux-3.0/drivers/base/cpu.c -de99383caec52f91155e422074de760e linux-3.0/drivers/base/core.c -e88a6cbb46d94c49597e1e00fa4be46a linux-3.0/drivers/base/class.c -c998e543fcd35b44215eb1929867a17c linux-3.0/drivers/base/bus.c -356560365a4425516ac2c517a2679725 linux-3.0/drivers/base/base.h -633a8317f82f5a11377966517a7541b3 linux-3.0/drivers/base/attribute_container.c -1d19d60578ae6889fc6bbff7fcd478e4 linux-3.0/drivers/base/Makefile -79a7a07d41b24876f02831a9e1c4d921 linux-3.0/drivers/base/Kconfig -5a84ce6dcf09f72e297b07a27a5e9338 linux-3.0/drivers/auxdisplay/ks0108.c -5a623efc623ef5b34a166ab5c09bc7e8 linux-3.0/drivers/auxdisplay/cfag12864bfb.c -a015af0ae7df4824ca26327498180432 linux-3.0/drivers/auxdisplay/cfag12864b.c -42761e64718a5f0f7e2a5d41b16b746c linux-3.0/drivers/auxdisplay/Makefile -c4a2e2f06ac756226a73f224d6d6690a linux-3.0/drivers/auxdisplay/Kconfig -182f90c11067d436ec83160b0743c2ec linux-3.0/drivers/atm/zeprom.h -9960b90a1870cde75231083c2cac0487 linux-3.0/drivers/atm/zatm.h -9d543b3a9e52b4533d48b42ea86aba4f linux-3.0/drivers/atm/zatm.c -1d98c1857458b14007b89a0c43424555 linux-3.0/drivers/atm/uPD98402.h -2e32f3f3a62b5cb4cdcd76de42f70e46 linux-3.0/drivers/atm/uPD98402.c -f9b3da64f4ce57942f516bbc11517acd linux-3.0/drivers/atm/uPD98401.h -d09e07db5d367f63e400ee84bf9a41b3 linux-3.0/drivers/atm/tonga.h -2dc96104b162577e5aaba532e2d703a1 linux-3.0/drivers/atm/suni.h -bcb5289656e2c5482bb76723c8a08a27 linux-3.0/drivers/atm/suni.c -8d3e56cd9c158ac5ed39d8ead5391eb7 linux-3.0/drivers/atm/solos-pci.c -35574a6e7ebfc669ec08c4757172571c linux-3.0/drivers/atm/solos-attrlist.c -752a54b5a9dfe85410f23603778f3f87 linux-3.0/drivers/atm/nicstarmac.copyright -ee10c532a250cb98b5e85bc67fad2a00 linux-3.0/drivers/atm/nicstarmac.c -12189d4b303a192e29ed1cefdc440f0a linux-3.0/drivers/atm/nicstar.h -a527da51618750f3c5311c3d06e27d0f linux-3.0/drivers/atm/nicstar.c -42d6b2cb60fa37c9464245583f042f9f linux-3.0/drivers/atm/midway.h -36a536df7ed06aaa838978abd14dbbac linux-3.0/drivers/atm/lanai.c -3ae7dd58efe566da6500dd81ba3a94ac linux-3.0/drivers/atm/iphase.h -a227bf462f9d250b573c0a5757215a54 linux-3.0/drivers/atm/iphase.c -1c8357a71bf0bef135af29a877582a9f linux-3.0/drivers/atm/idt77252_tables.h -fc9858c32684a548cc72be60ab4b1a77 linux-3.0/drivers/atm/idt77252.h -261c7412a6570b3135c38fcfce747065 linux-3.0/drivers/atm/idt77252.c -4109bf9a4bfa48eee872775998f8f0f8 linux-3.0/drivers/atm/idt77105.h -955c33a3c30e4d2d6766470b75dc5109 linux-3.0/drivers/atm/idt77105.c -b67bb3a2ee8a88beba0d809137a37dc8 linux-3.0/drivers/atm/horizon.h -f558547fa9579727b0a407fd24cda6d8 linux-3.0/drivers/atm/horizon.c -a4536470b83e9377c26a3b4c5ef6985a linux-3.0/drivers/atm/he.h -8c64c5a648ccf2c3dbb31f55554c729a linux-3.0/drivers/atm/he.c -2a4f9f55cf1a99d9e2ad921370816d1c linux-3.0/drivers/atm/fore200e.h -e495cc3237d28494db507f075cc36a9a linux-3.0/drivers/atm/fore200e.c -c861221317ce53f1978c2278f8d14aaa linux-3.0/drivers/atm/firestream.h -99dc0db15b4891ca4937a96e92f8d8e1 linux-3.0/drivers/atm/firestream.c -5cfc0e0e9b659f1bb3c9128736c41071 linux-3.0/drivers/atm/eni.h -80ef060b06902b793594c348bfb3dde0 linux-3.0/drivers/atm/eni.c -db414869a1622d912f0c0aa14f75e086 linux-3.0/drivers/atm/atmtcp.c -9d81239ff3ac1da1d0efc4afb4dbe6d8 linux-3.0/drivers/atm/ambassador.h -47dc87f0fc586088d86b40727a8a3aca linux-3.0/drivers/atm/ambassador.c -ff3bc25723ae0e8920ded9c9b859e5ed linux-3.0/drivers/atm/adummy.c -0b190e3a7569bbb8e42252f36312623a linux-3.0/drivers/atm/Makefile -dfd7a60e9f8a269a3fa44ed82098d34b linux-3.0/drivers/atm/Kconfig -21f241ad5f5568d51afc955c12bc0055 linux-3.0/drivers/atm/.gitignore -dd28e15f2859bd7071dc8489a731c583 linux-3.0/drivers/ata/sis.h -d06231fecdf6312f4cb037fae5c59d99 linux-3.0/drivers/ata/sata_vsc.c -ee44173125cc2401aed11e980dce836e linux-3.0/drivers/ata/sata_via.c -fb0a9c74ecc8f6a18a0214d70379809e linux-3.0/drivers/ata/sata_uli.c -5482269b5637a95375728db5bb7d8d39 linux-3.0/drivers/ata/sata_sx4.c -273ac88371c005b3dff1da50cb54855a linux-3.0/drivers/ata/sata_svw.c -10279c4c2e0104e1eca87ce4fbcbd665 linux-3.0/drivers/ata/sata_sis.c -1a8b5fcfac00ff1655ba5f013f71af3d linux-3.0/drivers/ata/sata_sil24.c -b79ea5aef7dae1a9243ac3178c3ae4ce linux-3.0/drivers/ata/sata_sil.c -7c9773bf88259b75459fc5aa43a12a1c linux-3.0/drivers/ata/sata_qstor.c -bce959f638083e3977f1cccfb6e3f82a linux-3.0/drivers/ata/sata_promise.h -ed98504474cd00a0d5a91c17979b3a7d linux-3.0/drivers/ata/sata_promise.c -6abd4225b1e28de74e510b64ac0f1e89 linux-3.0/drivers/ata/sata_nv.c -6277dbf56209256fcc7e8f48a3cf64b2 linux-3.0/drivers/ata/sata_mv.c -bc0f3bbff08ce024250f353ce5663448 linux-3.0/drivers/ata/sata_inic162x.c -62287d48b9bb4bfee6e4a561af25de0e linux-3.0/drivers/ata/sata_fsl.c -1cd87a435ef3ac5695baadc82c1c2663 linux-3.0/drivers/ata/sata_dwc_460ex.c -ef8c251fb59d702d49dc69cc7b976ccc linux-3.0/drivers/ata/pdc_adma.c -f089a5ed464e2b7aaa3d6d9922a87772 linux-3.0/drivers/ata/pata_via.c -d26b888b974d38bd40e431128e7a0589 linux-3.0/drivers/ata/pata_triflex.c -11dedd08ef6eee105f5978204b0e30a0 linux-3.0/drivers/ata/pata_sl82c105.c -ceab92f359178f32552f607cabe21f5e linux-3.0/drivers/ata/pata_sis.c -1a110b654e1c7525f467058220a9c2e6 linux-3.0/drivers/ata/pata_sil680.c -6e32dd7d83683d1d3a37c87318fe1702 linux-3.0/drivers/ata/pata_serverworks.c -2b1562c34d3c511b7f7b0fc8e03f6aeb linux-3.0/drivers/ata/pata_sch.c -1945b5893fee8950351474e918a33f4a linux-3.0/drivers/ata/pata_scc.c -aa840ad3a917f38c1ffe3541b33f1a24 linux-3.0/drivers/ata/pata_sc1200.c -8ab9b09af0a70e53f476d21667dbe683 linux-3.0/drivers/ata/pata_samsung_cf.c -8752b9773a81f1f37d93a4f5366f601e linux-3.0/drivers/ata/pata_rz1000.c -e5a4d33c4ec967595aea0f06ca21d980 linux-3.0/drivers/ata/pata_rdc.c -00db16de442c3652c9136d96ed9db1b2 linux-3.0/drivers/ata/pata_rb532_cf.c -d9e42b06881db8de5935155c700dd8ac linux-3.0/drivers/ata/pata_radisys.c -841433cc75ace5afa173e38aed4cd607 linux-3.0/drivers/ata/pata_qdi.c -5e45d14b0aafc0ff71e78a52d9883c8e linux-3.0/drivers/ata/pata_pxa.c -60deecc59bab96f26fd4c51f3fe0fffc linux-3.0/drivers/ata/pata_platform.c -0f0dd54117c6e84edf00e05d7f83a03a linux-3.0/drivers/ata/pata_piccolo.c -5fc3dceace5c327ee1d5257ab1ea4300 linux-3.0/drivers/ata/pata_pdc202xx_old.c -93eed791fa6530a7f39d2a6541b44100 linux-3.0/drivers/ata/pata_pdc2027x.c -2a652c6acf9af104f8938f23d36d02ff linux-3.0/drivers/ata/pata_pcmcia.c -5dd7b5e64ed01d56e9924c47edf9242c linux-3.0/drivers/ata/pata_palmld.c -9440d072f0694f8c6f9e012d85306ff6 linux-3.0/drivers/ata/pata_optidma.c -bab52191248d951b8523ed702a679602 linux-3.0/drivers/ata/pata_opti.c -aa345155c17dfb9562c8ddf6245b2bf9 linux-3.0/drivers/ata/pata_oldpiix.c -de03a1a6ff7105f6416965a08cdc1791 linux-3.0/drivers/ata/pata_of_platform.c -e92f516edd8f00eb1ae0c20140639ffc linux-3.0/drivers/ata/pata_octeon_cf.c -b9ab4e4eb8f7db870e1c319a4cbbd1e6 linux-3.0/drivers/ata/pata_ns87415.c -73af63a4c081ee6f673edd4cbece1374 linux-3.0/drivers/ata/pata_ns87410.c -6039fc3b555399f187f1212417fa8db7 linux-3.0/drivers/ata/pata_ninja32.c -20859cca35babf4938a74f436e484708 linux-3.0/drivers/ata/pata_netcell.c -bda9884c91e29ef8dca37a9ee9c6688b linux-3.0/drivers/ata/pata_mpiix.c -ce1d982d61c3928ef9b06ad887ae0506 linux-3.0/drivers/ata/pata_mpc52xx.c -25804a10cb0752df06f2d8ed78ebb3c2 linux-3.0/drivers/ata/pata_marvell.c -53feb28218ac18c8f5ed024f7e584926 linux-3.0/drivers/ata/pata_macio.c -2509a8a4dab22b5d16e1872ec9def0f5 linux-3.0/drivers/ata/pata_legacy.c -0a73807756e4f06720431f941b999457 linux-3.0/drivers/ata/pata_jmicron.c -802dc11d390fc446c14194b72ecac9e8 linux-3.0/drivers/ata/pata_ixp4xx_cf.c -dd2f15e36114037a7923a3108ab30d33 linux-3.0/drivers/ata/pata_it821x.c -4c5a616ba93c21a5daf8ab32cdb25463 linux-3.0/drivers/ata/pata_it8213.c -b9a698b323be1e7dae942f3f2f097de8 linux-3.0/drivers/ata/pata_isapnp.c -950304afdfe6d1c809b210dcca5eaf82 linux-3.0/drivers/ata/pata_icside.c -da6ddd359001ad4f9d389f3073adba83 linux-3.0/drivers/ata/pata_hpt3x3.c -cf8bbcb4cdd3c691f0a7bbbbb853ab88 linux-3.0/drivers/ata/pata_hpt3x2n.c -30a1c68d9520c577f545dc14bc57acbe linux-3.0/drivers/ata/pata_hpt37x.c -18123c5f763c0751fa7ba70d0aa15054 linux-3.0/drivers/ata/pata_hpt366.c -a06cdb99c89bc6ba56dbf431c4024dee linux-3.0/drivers/ata/pata_efar.c -8a252d82d08f6f696432d2e359c67264 linux-3.0/drivers/ata/pata_cypress.c -afb6843a10c288cba53dde00f851a0f1 linux-3.0/drivers/ata/pata_cs5536.c -4a2c2be1a91ed82652e4f8c79c4d0a66 linux-3.0/drivers/ata/pata_cs5535.c -6f29338d3715295771d5aae2ae4c4fe0 linux-3.0/drivers/ata/pata_cs5530.c -c2863f4a0ed590a81355a845714c3182 linux-3.0/drivers/ata/pata_cs5520.c -e7df30637cf482bf1ceeff456054ec3c linux-3.0/drivers/ata/pata_cmd64x.c -24389df528a919631e43a9f958ecfad9 linux-3.0/drivers/ata/pata_cmd640.c -543c075b47f779c3338eea0efdb9f1aa linux-3.0/drivers/ata/pata_bf54x.c -ce670c8fb7beaae2156c96058b918799 linux-3.0/drivers/ata/pata_atp867x.c -f2e0da70c410563d6dd7440d9efaac6b linux-3.0/drivers/ata/pata_atiixp.c -35a4c0d7d9735d40a5210f0e18d84667 linux-3.0/drivers/ata/pata_at91.c -d6fb3383df09392e14b82fbdfa232e63 linux-3.0/drivers/ata/pata_at32.c -40d0bc42eb30f8dcd59d3906b563162d linux-3.0/drivers/ata/pata_artop.c -d365aea17dee6f8fabe544ef9e633fc8 linux-3.0/drivers/ata/pata_arasan_cf.c -6c5ad15d787af983b106deb2e1307778 linux-3.0/drivers/ata/pata_amd.c -07323889639a3a19fcf018e53a3cedd5 linux-3.0/drivers/ata/pata_ali.c -c874f430121eaf53cf3c46d474c901ec linux-3.0/drivers/ata/pata_acpi.c -f4fb40cd9767b7dd9d4d878e5d3861f3 linux-3.0/drivers/ata/libata.h -560c226b01e2f6940b3fe797cb7becd0 linux-3.0/drivers/ata/libata-transport.h -36050010b44b5b2edd836e6c2e7f8ea7 linux-3.0/drivers/ata/libata-transport.c -ed5d3b6b2f6d6accba1d30c47b90de8d linux-3.0/drivers/ata/libata-sff.c -e53079209a513a547e630066bc94ab35 linux-3.0/drivers/ata/libata-scsi.c -ad2bc13a2e59be9bab3af9c8a1ded07d linux-3.0/drivers/ata/libata-pmp.c -c85af1df205c6b75e9208334fe9d4ece linux-3.0/drivers/ata/libata-eh.c -6b0fc3362cdfc1f1d8634c4d307c0771 linux-3.0/drivers/ata/libata-core.c -c04b80b520f387753488287b1ba7e7e3 linux-3.0/drivers/ata/libata-acpi.c -331ef06b95e561c4e4b8550b4d67cc6f linux-3.0/drivers/ata/libahci.c -74caf2a429efa66b642942798e0006ad linux-3.0/drivers/ata/ata_piix.c -217c5454b0cc48a23958866cbb876044 linux-3.0/drivers/ata/ata_generic.c -421b11fec5c269ac350fdb8ee46f7c53 linux-3.0/drivers/ata/ahci_platform.c -0661cd335b96425d96910e6874a220fb linux-3.0/drivers/ata/ahci.h -80bbe3bfab391f8f95e2c12531976b26 linux-3.0/drivers/ata/ahci.c -59a970ade4c0ffef21c37b1cb9e1f710 linux-3.0/drivers/ata/acard-ahci.c -53b9e617a18f6f9a1fd6b93088cdc6bc linux-3.0/drivers/ata/Makefile -35cf76aa7f003617554384af184c9dcc linux-3.0/drivers/ata/Kconfig -a8f49c538be19e42ad9f70107fe2f1bf linux-3.0/drivers/amba/bus.c -a4706be43b711bb3d87ce3a1576b19d1 linux-3.0/drivers/amba/Makefile -fea7f7e29bf1c617985b4811479fa5bf linux-3.0/drivers/acpi/wakeup.c -c0e7b0dd91f3eed2c8057e4652876171 linux-3.0/drivers/acpi/video_detect.c -ac43b832a4b87283d647b8f1eb414228 linux-3.0/drivers/acpi/video.c -6b1a1ebf5535c14b58c4dd16d2a36722 linux-3.0/drivers/acpi/utils.c -90d007a34e8c5a2262b40118d55f59eb linux-3.0/drivers/acpi/thermal.c -d90768ffb36eb546929b5880a50baceb linux-3.0/drivers/acpi/tables.c -acfb98ac44675017a548450fb393e9e6 linux-3.0/drivers/acpi/sysfs.c -4771f508e1176ea160ce24171ae11d96 linux-3.0/drivers/acpi/sleep.h -16327f41f1c2e9bbffea5394f3e8b6c8 linux-3.0/drivers/acpi/sleep.c -9409f918ee737af778520f9c6993b658 linux-3.0/drivers/acpi/scan.c -cf2864e146da371ac8e5bae5d2d3eb46 linux-3.0/drivers/acpi/sbshc.h -8a9859aeb06aa0bc81ebf4cc561b45a4 linux-3.0/drivers/acpi/sbshc.c -e2d4542489a00e901e9acb8f6d4dad47 linux-3.0/drivers/acpi/sbs.c -c46044b499f22e9d1ef0a5cd89808c9b linux-3.0/drivers/acpi/reboot.c -babe3865b006ca76d270c7bf9b44330f linux-3.0/drivers/acpi/processor_throttling.c -651eb1c0e9726e94fa70c2c49206a426 linux-3.0/drivers/acpi/processor_thermal.c -7e439d570f120701265e294ac97f97e3 linux-3.0/drivers/acpi/processor_perflib.c -ddee9848e37f90ef67dcb6d69bf416fa linux-3.0/drivers/acpi/processor_idle.c -d3846c2247ad6b82c24a9f036d7bc49c linux-3.0/drivers/acpi/processor_driver.c -ffa57dc1a98d758d196d861e2bb4fed0 linux-3.0/drivers/acpi/processor_core.c -77ce1062262096c602a79906fe57790d linux-3.0/drivers/acpi/proc.c -9ff92298f9293fce42032d067a02c0d4 linux-3.0/drivers/acpi/power.c -ff8947211a26f87ef5a56cb1a2ac380a linux-3.0/drivers/acpi/pci_slot.c -6c274b86d479301a8274cb0818b8d793 linux-3.0/drivers/acpi/pci_root.c -280096c8052e5b6f1045d3719f4c1a04 linux-3.0/drivers/acpi/pci_link.c -134b5e54012ae741e1f7411cf10f3789 linux-3.0/drivers/acpi/pci_irq.c -838796804f0805dc9df7ad305f02de08 linux-3.0/drivers/acpi/pci_bind.c -024edba21486b1a80857751e0b0dded4 linux-3.0/drivers/acpi/osl.c -ba4e29b6ad11d430f9534bca1bada2d4 linux-3.0/drivers/acpi/nvs.c -75e23d628e530ff8c66b7d2bacf6bf55 linux-3.0/drivers/acpi/numa.c -052697e0068f0d375cdb9ad0ddd3dd52 linux-3.0/drivers/acpi/internal.h -6bf514ec4903aed8ac3e23697b0c8dd7 linux-3.0/drivers/acpi/hed.c -e9d36c6f020ba75af888a2822771b233 linux-3.0/drivers/acpi/glue.c -4ee2627663c0f9083fdb91c0c87399ea linux-3.0/drivers/acpi/fan.c -5a5eb1e461e1458fc23a68d3d4dd9240 linux-3.0/drivers/acpi/event.c -3028fdfeba66fe0075e9ac59995b5b81 linux-3.0/drivers/acpi/ec_sys.c -fd25409932b3816092c9a9a76321fce5 linux-3.0/drivers/acpi/ec.c -b0da0f2e489d7ef6f68a1d660ff8e55d linux-3.0/drivers/acpi/dock.c -08a6997ccd8ad33d52217618e0e7bc33 linux-3.0/drivers/acpi/debugfs.c -be0ba3a0596fac4022e36dce3b7c290d linux-3.0/drivers/acpi/custom_method.c -a12c72ce4276afc8d5fd291bd77ae876 linux-3.0/drivers/acpi/container.c -ac866c11ac70d910dddc1097e058cd13 linux-3.0/drivers/acpi/cm_sbs.c -ffc39792a0d41acd219b31144f5e2c46 linux-3.0/drivers/acpi/button.c -95816668be3ae38ffa32e81f3e450363 linux-3.0/drivers/acpi/bus.c -0a193fe47b2f67c24e7aa445d529bb67 linux-3.0/drivers/acpi/blacklist.c -4bca42fea6e5bd9141a39fc3e3743d4b linux-3.0/drivers/acpi/battery.c -c2df714535fcbd30bdd72e67bfe64d45 linux-3.0/drivers/acpi/atomicio.c -0fa615562212a63311a0978124b1ad43 linux-3.0/drivers/acpi/apei/hest.c -c2d164a323d831af7f44ebb163804030 linux-3.0/drivers/acpi/apei/ghes.c -41ac1fde20ebe5a16938af1844ef6dc4 linux-3.0/drivers/acpi/apei/erst.c -494c0cd6710983c3ffde43f5de1aef66 linux-3.0/drivers/acpi/apei/erst-dbg.c -b034799fe58e00901aad1bcaaffeea59 linux-3.0/drivers/acpi/apei/einj.c -fe2780481018d1b8d82d744fd0f21ce4 linux-3.0/drivers/acpi/apei/cper.c -5620cb50c0e1ff31d1faf982626c547d linux-3.0/drivers/acpi/apei/apei-internal.h -b953645dd28b9f7d77dcf30b520d9b86 linux-3.0/drivers/acpi/apei/apei-base.c -ca7f5c6024ad3205a0c202e10d7fa465 linux-3.0/drivers/acpi/apei/Makefile -07735bbb24d09c0c06f429f55784103b linux-3.0/drivers/acpi/apei/Kconfig -e653ed2e42999a7ceb4e4ebcc4b0808b linux-3.0/drivers/acpi/acpica/utxferror.c -2d2d6b5987358aaf65ed88dde543d9da linux-3.0/drivers/acpi/acpica/utxface.c -30aa39e53d623cd85aa99ed78f9e641d linux-3.0/drivers/acpi/acpica/utstate.c -08dd40af71c97fd1a682c4b0c3780756 linux-3.0/drivers/acpi/acpica/utresrc.c -d7420ddc3ba955626d1ca928e0dd5e91 linux-3.0/drivers/acpi/acpica/utosi.c -f9386546c3b99cd0d79c4f73e194a52f linux-3.0/drivers/acpi/acpica/utobject.c -ea85a5c68079c9582ae243e4108aa3d4 linux-3.0/drivers/acpi/acpica/utmutex.c -62aae541f64ce9ced5ae3e08e8902a2b linux-3.0/drivers/acpi/acpica/utmisc.c -61db22f530db8010a8f633656a006561 linux-3.0/drivers/acpi/acpica/utmath.c -b38eec6aae430c1210bbc7905a813668 linux-3.0/drivers/acpi/acpica/utlock.c -172a606d59cc0671e057df7ba2d2f0da linux-3.0/drivers/acpi/acpica/utinit.c -3ec93846c1c7c432f900a9f568664671 linux-3.0/drivers/acpi/acpica/utids.c -8813728b7acc37c4baa2ec16697162d2 linux-3.0/drivers/acpi/acpica/utglobal.c -0651b4eb2e17e24f975108e8574de51d linux-3.0/drivers/acpi/acpica/uteval.c -23eb4994c1207d6063f5d1daf50a5694 linux-3.0/drivers/acpi/acpica/utdelete.c -facec2386bdb0e57772eb0a71ab090b1 linux-3.0/drivers/acpi/acpica/utdecode.c -f52a969486648028d6ea2ce551d291b0 linux-3.0/drivers/acpi/acpica/utdebug.c -82bcd902046894fa2e5fcc43637fd6c8 linux-3.0/drivers/acpi/acpica/utcopy.c -118ce433ac8fe3588fd5ed118c200e5f linux-3.0/drivers/acpi/acpica/utalloc.c -a436249b99b5a4db4340d5a3343baa3d linux-3.0/drivers/acpi/acpica/tbxfroot.c -51a08dfcacb74735dc05ce5e1b1b5c1f linux-3.0/drivers/acpi/acpica/tbxface.c -5ce07372b05d1df483c41b2f6b92fb57 linux-3.0/drivers/acpi/acpica/tbutils.c -ca874488fa830fb395f064e93ea9df49 linux-3.0/drivers/acpi/acpica/tbinstal.c -59665d1076327076956b0cc1d97b84d1 linux-3.0/drivers/acpi/acpica/tbfind.c -38a150a81a8ad8b8b1380823f960a27f linux-3.0/drivers/acpi/acpica/tbfadt.c -218205dbf23cd4dcd18e898ff7aff360 linux-3.0/drivers/acpi/acpica/rsxface.c -3ac5257903c27f639a7c52b47aef850f linux-3.0/drivers/acpi/acpica/rsutils.c -bafb6b6cb77ad806d067b06b930b479e linux-3.0/drivers/acpi/acpica/rsmisc.c -c4ca669c49c5106d9dfe68a1a78f02f0 linux-3.0/drivers/acpi/acpica/rsmemory.c -0d9706f7061bc87311aea2e0cb234e41 linux-3.0/drivers/acpi/acpica/rslist.c -0895bf2b9865aba56d1365edb3bd6ea8 linux-3.0/drivers/acpi/acpica/rsirq.c -97fb898f80c49574842c7eacf5287018 linux-3.0/drivers/acpi/acpica/rsio.c -b8dcee51b80a9cefa60201a30af82868 linux-3.0/drivers/acpi/acpica/rsinfo.c -54cc7a574a02afe8388e7efcbcdaac5f linux-3.0/drivers/acpi/acpica/rsdump.c -db2cb2331887dfbb14a30080015257d0 linux-3.0/drivers/acpi/acpica/rscreate.c -16bac3e50de33764fcbf1ab346346be2 linux-3.0/drivers/acpi/acpica/rscalc.c -a4f25789039e6cd9542ce924d4f4d3f9 linux-3.0/drivers/acpi/acpica/rsaddr.c -516846532e6a8fb01023354dfa8435e0 linux-3.0/drivers/acpi/acpica/psxface.c -546abbdb2124dceea3f2d76dcdcd2a4b linux-3.0/drivers/acpi/acpica/pswalk.c -6ed8c4cd5cfcece3d307290f0c6e4e53 linux-3.0/drivers/acpi/acpica/psutils.c -59b5e93a1d7bc07b443498f7db579d42 linux-3.0/drivers/acpi/acpica/pstree.c -b03a20e8621ee10937960f92efc5a7ac linux-3.0/drivers/acpi/acpica/psscope.c -84c74404e0a7ea3079aa832cb6961760 linux-3.0/drivers/acpi/acpica/psparse.c -e706e3ecba317c71264070db4c89baba linux-3.0/drivers/acpi/acpica/psopcode.c -154f50ec64aaf83013f8c40d39ae8f78 linux-3.0/drivers/acpi/acpica/psloop.c -0c5c44fa178da84dade95fbe67fb0f4e linux-3.0/drivers/acpi/acpica/psargs.c -e9f3153189dbd5a9ffeef29ff788b198 linux-3.0/drivers/acpi/acpica/nsxfobj.c -1ec2ecd069a45e4321e891fb7c9fb838 linux-3.0/drivers/acpi/acpica/nsxfname.c -a8771f924d2ddf4f31f3eb1ad5947f86 linux-3.0/drivers/acpi/acpica/nsxfeval.c -52aa264ff563c4694ff71b97cd426c02 linux-3.0/drivers/acpi/acpica/nswalk.c -016f103c0c4609335c7ebf5c1b476024 linux-3.0/drivers/acpi/acpica/nsutils.c -ef5c7fa7e2febb1fd2db437e23e14cc1 linux-3.0/drivers/acpi/acpica/nssearch.c -b7c54f9cd10a4dc3e709e3b2125ff965 linux-3.0/drivers/acpi/acpica/nsrepair2.c -1c8d6e71125f4bc823cfc0fe77b35ea1 linux-3.0/drivers/acpi/acpica/nsrepair.c -01650c65f3824f9f3969cda289ca4abd linux-3.0/drivers/acpi/acpica/nspredef.c -5190757057933b78b2d0de2788a948e9 linux-3.0/drivers/acpi/acpica/nsparse.c -c3103d32baa8aee0942a4dea6f4aee51 linux-3.0/drivers/acpi/acpica/nsobject.c -b8920d566138b37193b5629a6b2207e0 linux-3.0/drivers/acpi/acpica/nsnames.c -29723ccee18e036f4037a39b12e482c1 linux-3.0/drivers/acpi/acpica/nsload.c -098e3c8bf932239aec115123be28d79b linux-3.0/drivers/acpi/acpica/nsinit.c -4e07e0c80e342d184b706ea31b68b0ef linux-3.0/drivers/acpi/acpica/nseval.c -1e5bd4b368c70844a77075fc8170e835 linux-3.0/drivers/acpi/acpica/nsdumpdv.c -6971bc04f1fc63915fb576fcb777a208 linux-3.0/drivers/acpi/acpica/nsdump.c -11f7a8c5749b603088d795494b0725e3 linux-3.0/drivers/acpi/acpica/nsalloc.c -ed4af5da54c08eaec15fd4e51afdf6b6 linux-3.0/drivers/acpi/acpica/nsaccess.c -8f1435bee3ceade396f20365c928a26d linux-3.0/drivers/acpi/acpica/hwxface.c -b4eb537701372a63761d72d0f80ced7d linux-3.0/drivers/acpi/acpica/hwvalid.c -fae2fda17680374abb3e3f7b10916a3d linux-3.0/drivers/acpi/acpica/hwtimer.c -b5e5fc4744cd331bbb299845889f9307 linux-3.0/drivers/acpi/acpica/hwsleep.c -1112943e35c5d4a1b8ca58c902199831 linux-3.0/drivers/acpi/acpica/hwregs.c -f40268bf0971f51afd38fcd7c2e6949c linux-3.0/drivers/acpi/acpica/hwpci.c -132d0e2a77c26f7e2fa3ffdb59455a4c linux-3.0/drivers/acpi/acpica/hwgpe.c -a82b5d321919e71adefa3749edb64c6b linux-3.0/drivers/acpi/acpica/hwacpi.c -cef5c131a20b30b37f9afa9731443752 linux-3.0/drivers/acpi/acpica/exutils.c -1e5926beaeaec439b6dabeb9b116b083 linux-3.0/drivers/acpi/acpica/exsystem.c -54b2514767323069c0a96a072e253caf linux-3.0/drivers/acpi/acpica/exstorob.c -bf72144051680dffec4fec9fecd2759e linux-3.0/drivers/acpi/acpica/exstoren.c -bda77d9d8f015835144ea2578c2053f9 linux-3.0/drivers/acpi/acpica/exstore.c -9b394cbe031a047af0fcf79e7efa6d8a linux-3.0/drivers/acpi/acpica/exresop.c -d2079b181687c857291e630ea4065790 linux-3.0/drivers/acpi/acpica/exresolv.c -d659fa81882e48c17cb26a5d0c2e2360 linux-3.0/drivers/acpi/acpica/exresnte.c -c6b44f7ac8bcf5be316112ea0deac15d linux-3.0/drivers/acpi/acpica/exregion.c -87f600ca08c4393e350b95a845e56901 linux-3.0/drivers/acpi/acpica/exprep.c -bb65097934aa6ef1918ab992b04bd833 linux-3.0/drivers/acpi/acpica/exoparg6.c -054a820027f025ec754676fdcfc9db6f linux-3.0/drivers/acpi/acpica/exoparg3.c -30664336a1c57c84704c6b3583feb844 linux-3.0/drivers/acpi/acpica/exoparg2.c -4f7ae70870ae7de5b0f97c2a6f58f204 linux-3.0/drivers/acpi/acpica/exoparg1.c -7ca8ff7d8f6e0441262efcc4218d2376 linux-3.0/drivers/acpi/acpica/exnames.c -65f5939bb886b8a9805efb7283438653 linux-3.0/drivers/acpi/acpica/exmutex.c -130882053e14dea5fff9fd3c00b98ac2 linux-3.0/drivers/acpi/acpica/exmisc.c -cfb2b54a838c46a31bef45dce5de724d linux-3.0/drivers/acpi/acpica/exfldio.c -ea2ace52b52468cfa24561ef12450a47 linux-3.0/drivers/acpi/acpica/exfield.c -a20a9f744e733906d56514687d4edc7b linux-3.0/drivers/acpi/acpica/exdump.c -f57a8226aa288eb8f801e50b1db48730 linux-3.0/drivers/acpi/acpica/exdebug.c -c9e1be9e70062f6d35869da78ce05f4f linux-3.0/drivers/acpi/acpica/excreate.c -c530078baefc5136ad07ff214b17f17a linux-3.0/drivers/acpi/acpica/exconvrt.c -6daec911792eea8e511d3365d446d824 linux-3.0/drivers/acpi/acpica/exconfig.c -c32ce08d85a6cc57d74ae3acbf6bf160 linux-3.0/drivers/acpi/acpica/evxfregn.c -fb4918b2db5a1d31260f0f81b2785ca4 linux-3.0/drivers/acpi/acpica/evxfgpe.c -acff91c8db53b7e19530fa4b27023d8c linux-3.0/drivers/acpi/acpica/evxfevnt.c -9ea5b01ccad50541f7d7435f07e26333 linux-3.0/drivers/acpi/acpica/evxface.c -60947e0601c7ca616a5920b8125499c1 linux-3.0/drivers/acpi/acpica/evsci.c -9e2c33c8a8d917ff9f0c2f6fc2c04c5e linux-3.0/drivers/acpi/acpica/evrgnini.c -82d3825cd5197ed52e6e617f2d75b082 linux-3.0/drivers/acpi/acpica/evregion.c -27505c9a2f023148396f788089398288 linux-3.0/drivers/acpi/acpica/evmisc.c -cca80ca3e7114f2a7d15a2ca89473d88 linux-3.0/drivers/acpi/acpica/evgpeutil.c -70c35bec30d72afed58050c8707b468d linux-3.0/drivers/acpi/acpica/evgpeinit.c -8bb16178ce74f6bb9db94a20dc582c51 linux-3.0/drivers/acpi/acpica/evgpeblk.c -7c866b7c448107305dde116c5a1b04b1 linux-3.0/drivers/acpi/acpica/evgpe.c -5b0fc030439ce31e8030950127fd571a linux-3.0/drivers/acpi/acpica/evglock.c -73136659f6e5a7dcaf0b2a115346bc0e linux-3.0/drivers/acpi/acpica/evevent.c -eabc197a30c4758172668d8ac140c97c linux-3.0/drivers/acpi/acpica/dswstate.c -bc16711c4dc6ab8f5c97c771d8e864c0 linux-3.0/drivers/acpi/acpica/dswscope.c -61cc2afa10c6596e5043ae9731b467d1 linux-3.0/drivers/acpi/acpica/dswload2.c -a5689f7f8251b961399d0a59050aed9a linux-3.0/drivers/acpi/acpica/dswload.c -4b0638fcd0cef167cfb3ee0651586a13 linux-3.0/drivers/acpi/acpica/dswexec.c -bd72ad3f6faf0050622d496029224713 linux-3.0/drivers/acpi/acpica/dsutils.c -de8638b3694c87d6648717fd0dd7436c linux-3.0/drivers/acpi/acpica/dsopcode.c -59357f595d75a5f0f04097c6162c6d9e linux-3.0/drivers/acpi/acpica/dsobject.c -ca86b8ce662c44ac3282cfe7366d1673 linux-3.0/drivers/acpi/acpica/dsmthdat.c -79d6f5b2ed03a73d3bb6164a9b147a0b linux-3.0/drivers/acpi/acpica/dsmethod.c -e5e55dfe9ad897725d7ab3e5c1291221 linux-3.0/drivers/acpi/acpica/dsinit.c -363da886dc26dad414e7ac3dd752ddd9 linux-3.0/drivers/acpi/acpica/dsfield.c -ca181af67a71b752558105a04a1ebcc1 linux-3.0/drivers/acpi/acpica/dscontrol.c -f0fe0b0278fef8f89f25f0feeda2b42e linux-3.0/drivers/acpi/acpica/dsargs.c -49f49bcc6bfd88bc585967d5b559c064 linux-3.0/drivers/acpi/acpica/amlresrc.h -4b7be6303336444a43ada3fb930ff48b linux-3.0/drivers/acpi/acpica/amlcode.h -fad4632eaca62b98f73b417820ef9a29 linux-3.0/drivers/acpi/acpica/acutils.h -fecdc946d05962ecaefae9fe942555c0 linux-3.0/drivers/acpi/acpica/actables.h -5a376932a4793e26b5031224787ed41a linux-3.0/drivers/acpi/acpica/acstruct.h -1f47bddd52908329651bbba8b962b72d linux-3.0/drivers/acpi/acpica/acresrc.h -f85cbc5a7f74f36700ad241f3ebcb1af linux-3.0/drivers/acpi/acpica/acpredef.h -0336f24304f1fa1f08a24cc8f685e8bb linux-3.0/drivers/acpi/acpica/acparser.h -d9d96d59d67953fa498373af375ef0a5 linux-3.0/drivers/acpi/acpica/acopcode.h -c522628d5c4cf7f0a461abe5dbd8c78c linux-3.0/drivers/acpi/acpica/acobject.h -585c8a213f016804944c46644e145f28 linux-3.0/drivers/acpi/acpica/acnamesp.h -c1a9cd397c602621d93699743d358f79 linux-3.0/drivers/acpi/acpica/acmacros.h -82f0fae9aa55cbeaedd3e27d93d823c9 linux-3.0/drivers/acpi/acpica/aclocal.h -fecdd56bc6578256c5d8e978f5433b0e linux-3.0/drivers/acpi/acpica/acinterp.h -85ae2b8dde2d39f7c7d1b39fc5b14680 linux-3.0/drivers/acpi/acpica/achware.h -0d92be476255a3e8daa6ce12705d8117 linux-3.0/drivers/acpi/acpica/acglobal.h -23445b3d4593c2955b872e8f67736bd4 linux-3.0/drivers/acpi/acpica/acevents.h -d031eabb5b1cc792320912a5946a3847 linux-3.0/drivers/acpi/acpica/acdispat.h -87fbf77bb274cc7e7ccbcc66de59d561 linux-3.0/drivers/acpi/acpica/acdebug.h -7e43c40d4016de1a169e2a3d92ff8039 linux-3.0/drivers/acpi/acpica/acconfig.h -a720bf86ac3f100baa5df70cc5dd9e5b linux-3.0/drivers/acpi/acpica/accommon.h -6913d9b5cc2263ab6f385db4b66687b7 linux-3.0/drivers/acpi/acpica/Makefile -93bda8262278d3930f1e4839d46b7750 linux-3.0/drivers/acpi/acpi_pad.c -eced4bfcf4511e56da666a71efeaf895 linux-3.0/drivers/acpi/acpi_memhotplug.c -3e66c33795ad4c2c6705d0698a4e564c linux-3.0/drivers/acpi/acpi_ipmi.c -3337a2ed2f26f0c0d298f46b64184363 linux-3.0/drivers/acpi/ac.c -774bb7d0979e3a228cc68191ad787c0f linux-3.0/drivers/acpi/Makefile -1bd391bb7b76c6e02569e5fc769c79ec linux-3.0/drivers/acpi/Kconfig -4dff7cf55479f16465b67451656e1fed linux-3.0/drivers/accessibility/braille/braille_console.c -3480b87ee50c00805dd17e75d18fe4ac linux-3.0/drivers/accessibility/braille/Makefile -30ce7cce087d7d08f370386580ba49e2 linux-3.0/drivers/accessibility/Makefile -af03bb8cb6c26f0c9cdd9bd872e143fc linux-3.0/drivers/accessibility/Kconfig -2b284cb2ba1870333f3f6569c2efb58a linux-3.0/drivers/Makefile -971cdc2ac50fc8a1f308254080708886 linux-3.0/drivers/Kconfig -3ff6c6c78e8790fd1a6652badd4942cc linux-3.0/crypto/zlib.c -43c9b00d201df8b945d57ac3dc0bd533 linux-3.0/crypto/xts.c -44f5d83e9cbdde43a06c53df00aa798a linux-3.0/crypto/xor.c -1990688db8073d3f18f0ab4d3a97c736 linux-3.0/crypto/xcbc.c -3826740eefd5f070cce0b63c9062934d linux-3.0/crypto/wp512.c -770609c3dfa4a2069db0c460128b4a0c linux-3.0/crypto/vmac.c -7aa70ee6fb9ba0c482330ed41c6ac858 linux-3.0/crypto/twofish_generic.c -f4e1dde6c607acb52381ffa225940b38 linux-3.0/crypto/twofish_common.c -57b67b7474eb7e545829d9013997029d linux-3.0/crypto/tgr192.c -bc5c531665c8b8b8a55a83098de0d0c5 linux-3.0/crypto/testmgr.h -c34a90f4bacf33123e7c940db9e5be3b linux-3.0/crypto/testmgr.c -8b1c02ad8b562ad35c6688a89e5b3ffc linux-3.0/crypto/tea.c -3aea34e60e3307bd5235f7b44b80649f linux-3.0/crypto/tcrypt.h -7bb88be4b97294bbd6a7943113498322 linux-3.0/crypto/tcrypt.c -9246c3644dd7693c87e2b5fb2458f5b1 linux-3.0/crypto/shash.c -48bdb7e1b458d17fcb9e441599acf230 linux-3.0/crypto/sha512_generic.c -b5d529b23259636225ac21460f0d8dcc linux-3.0/crypto/sha256_generic.c -b1c3458a0ce65c0c86b6a319f2fcfe97 linux-3.0/crypto/sha1_generic.c -41f27259e1fc2a7ffd3c0cdca4932aac linux-3.0/crypto/serpent.c -9c180c224878323b14adc23e39c7d2db linux-3.0/crypto/seqiv.c -a906dcbccba3363cce02349d6bb35c70 linux-3.0/crypto/seed.c -f36f0c750dd752e7d6ed711a9d1cb12c linux-3.0/crypto/scatterwalk.c -e2996c1e6aa30c671ddcc5d903d570c6 linux-3.0/crypto/salsa20_generic.c -4c83f6eed4e2b6904ff5f5ee3b6fdc57 linux-3.0/crypto/rng.c -132312ccc6ec9280170719dead0ed222 linux-3.0/crypto/rmd320.c -fdaf8c9d778cf8ad29d948be8523dedc linux-3.0/crypto/rmd256.c -4f8c27d066c6303db7f68f0e70115873 linux-3.0/crypto/rmd160.c -2053d49eefe6a667f6494158deec031b linux-3.0/crypto/rmd128.c -52d2340f1175baa9f7fbf9d0a2a02546 linux-3.0/crypto/ripemd.h -04dfb2ed8f905ad40e60500cdb8b3857 linux-3.0/crypto/proc.c -b55b322681197ebab84616cb7e018111 linux-3.0/crypto/pcrypt.c -43417efe500f46728643b153d6f9e7d5 linux-3.0/crypto/pcompress.c -42c52b9dcdb41ed13ad7efe346313030 linux-3.0/crypto/pcbc.c -b7e2addfb2a4a2e16b438428b8387be3 linux-3.0/crypto/michael_mic.c -70d815ca8eaf121e38faf3b56fd810e6 linux-3.0/crypto/md5.c -70911b695ef4a51304681d090ad9b5c7 linux-3.0/crypto/md4.c -3211ee2ddd460143f2c876463c1d6d94 linux-3.0/crypto/lzo.c -92e113401feeba80c5758a00f96e5795 linux-3.0/crypto/lrw.c -4b9df5cd55a8ee0c4456e33712c7d81f linux-3.0/crypto/krng.c -af50255ee10009f137388971596a848c linux-3.0/crypto/khazad.c -875dfbba6b935115b3a06cae84f6335b linux-3.0/crypto/internal.h -20c36ee0f73962a54d0691f0a71c996b linux-3.0/crypto/hmac.c -e9415d1db28a934dcff6b341e341e90c linux-3.0/crypto/ghash-generic.c -eee498f201fda3e86ed7cc7842ed600d linux-3.0/crypto/gf128mul.c -2523452cc9e60028e0d4aea289bd9adc linux-3.0/crypto/gcm.c -49a6f5423430ea1c7b1eade370e04f07 linux-3.0/crypto/fips.c -e1184b6edd905574ca2327ffd68940ed linux-3.0/crypto/fcrypt.c -9625584c13accd2e68a010ac8921f5d3 linux-3.0/crypto/eseqiv.c -a3e86b606c9b672e6a4dfa2202bfaa5b linux-3.0/crypto/ecb.c -bade053af723eb842f9d61f63bfd0b2a linux-3.0/crypto/des_generic.c -74d7af424a400c1cea357434a9ed072e linux-3.0/crypto/deflate.c -14b4ea40008ea1fd95ada55704c78a95 linux-3.0/crypto/cts.c -cc58ea49e5dca4f8e0ba7394629e4006 linux-3.0/crypto/ctr.c -fc827ca190f5f3ac6597358d675a53f3 linux-3.0/crypto/crypto_wq.c -a0a0e08c822b214766d917175c004939 linux-3.0/crypto/crypto_null.c -892651f8080c76b5e592cacd2483283a linux-3.0/crypto/cryptd.c -5203d2434edc71ec1d746a5043c84b4c linux-3.0/crypto/crc32c.c -c15e3cd3925e1958e492d1d7c4e038b8 linux-3.0/crypto/compress.c -8b47ee22aa13642a83bfa6c27776fbd1 linux-3.0/crypto/cipher.c -0b1a9639f3137b2d2e96c01f2592daeb linux-3.0/crypto/chainiv.c -ccbdcd0225473ab8979b6b246cb51d0b linux-3.0/crypto/ccm.c -e5378dfcc9fa8f593f937fb016a7df97 linux-3.0/crypto/cbc.c -857e1a51d13a4e3d3fc5a5c5339aefdd linux-3.0/crypto/cast6.c -943c50ff86934fb7226fb185f6b51474 linux-3.0/crypto/cast5.c -cf02ecf043b1c357efc868121e2fef8b linux-3.0/crypto/camellia.c -99749cba04f9d81024d205d63c0b05c8 linux-3.0/crypto/blowfish.c -30a6f6c5d80aab10be428353157298f3 linux-3.0/crypto/blkcipher.c -6b355571f6fa1296adaf2540485bea51 linux-3.0/crypto/authencesn.c -41cdd3743bac76c840b67cf4841a52b5 linux-3.0/crypto/authenc.c -e0fbdb9d04365b7efbd782bb573eb42e linux-3.0/crypto/async_tx/raid6test.c -d5632dcf822d9f5b672cd15c82383a54 linux-3.0/crypto/async_tx/async_xor.c -55663079e8be24956dab1b6b3118e63d linux-3.0/crypto/async_tx/async_tx.c -118ef8820074f68d3d8d3126deadda88 linux-3.0/crypto/async_tx/async_raid6_recov.c -aa491d4dc9a66cf16e3b587b1a2a63e0 linux-3.0/crypto/async_tx/async_pq.c -9f5ec4d22de11053e430a7f3ce4bc022 linux-3.0/crypto/async_tx/async_memset.c -70c0331e6080f14e257b1fd320998bbe linux-3.0/crypto/async_tx/async_memcpy.c -7709d059a7af033bdbc2378bc6f3c900 linux-3.0/crypto/async_tx/Makefile -7c5855d3183c047a3962de4737f3eec4 linux-3.0/crypto/async_tx/Kconfig -3acb1072b68fb7cbea56272774163d89 linux-3.0/crypto/arc4.c -b488fa967c83d13a689e8f41a6fd8e81 linux-3.0/crypto/api.c -58e9909c24c5be44d5297207ab4675ea linux-3.0/crypto/anubis.c -0acd1db45c8b525eb0c5fbb087571531 linux-3.0/crypto/ansi_cprng.c -43833ea9ae1624a3570777a7eb849bab linux-3.0/crypto/algif_skcipher.c -b410d0657ab73d0c53a2a22724894608 linux-3.0/crypto/algif_hash.c -6dc9b172ae7d77e36791ad8ee661e8df linux-3.0/crypto/algboss.c -767591e32e6f1544f34f80d3886a0440 linux-3.0/crypto/algapi.c -a2c66f1b5800387776d3dc0d97dabde9 linux-3.0/crypto/ahash.c -c0d2411eef204621bb2e7130b6bfd334 linux-3.0/crypto/af_alg.c -bf6771418c6d43de64fee501b7032e61 linux-3.0/crypto/aes_generic.c -2c9ad725208ddfc455e36619b7d1801d linux-3.0/crypto/aead.c -2148127b31ad9f227c6cdaf78416d7d3 linux-3.0/crypto/ablkcipher.c -8d3a11401cfdb115ca667b6f3f0f589e linux-3.0/crypto/Makefile -4d3ded6e6da20961de44bb3fc06277a1 linux-3.0/crypto/Kconfig -f08153ab39657587553ad25cfae0c64c linux-3.0/block/scsi_ioctl.c -067fb8272cc3b82aa073875a50cd27d7 linux-3.0/block/noop-iosched.c -a0c5a8b81b74c70279b1d53cb99535d0 linux-3.0/block/ioctl.c -10da2dbb83a3bc21919c4a02f51ea1e9 linux-3.0/block/genhd.c -350f347d5202caf740f56606126d07ca linux-3.0/block/elevator.c -de75345d320efe79cf1290b4e8b5b4ed linux-3.0/block/deadline-iosched.c -ca8eb3c047467e80b6ad418d86a8eac7 linux-3.0/block/compat_ioctl.c -9d4717c147cbb1c2e726bcd599df49d5 linux-3.0/block/cfq.h -74bdf05596ba7a33ae87634873b0709f linux-3.0/block/cfq-iosched.c -3cd1b2fd6ea7032e205c71ed8f87b113 linux-3.0/block/bsg.c -4c06dff8270a56fab008e67fd0521d1d linux-3.0/block/blk.h -820de9ae9e83848a80a1c59d474cdefc linux-3.0/block/blk-timeout.c -e994799e67ee64040746e080b929696f linux-3.0/block/blk-throttle.c -3f078a2dfe8029ddc1948d01560acedb linux-3.0/block/blk-tag.c -49edb2b86a26100888c0a88c2982d5b3 linux-3.0/block/blk-sysfs.c -9cfed41799c1b180f3a217677aed5ccb linux-3.0/block/blk-softirq.c -299a8483cf11439454eaa95324b065cc linux-3.0/block/blk-settings.c -ab14477aeb88c491610f1bbcac2ad165 linux-3.0/block/blk-merge.c -988a9a618c5f4e35ebd134a69f9d8bd0 linux-3.0/block/blk-map.c -60a03f2cb22bedf98b3c213c67fdb516 linux-3.0/block/blk-lib.c -e3dcde4d4950c2138deb9e222aa0fab9 linux-3.0/block/blk-iopoll.c -dd02cdbaac1a0e409deff2a6c3fd41d8 linux-3.0/block/blk-ioc.c -b2469bfc031b3fa8b172c98d53567e40 linux-3.0/block/blk-integrity.c -a82e28402b2507bc84692204101bcd9d linux-3.0/block/blk-flush.c -1ca2176124af92c0d0e5d97cb940829c linux-3.0/block/blk-exec.c -2bf7998e4c1109d00008390058a4c6b8 linux-3.0/block/blk-core.c -e285cc4ef00cbca1ace351c823e50a48 linux-3.0/block/blk-cgroup.h -bc7f7bc5829d707dbb3a14d5f0bbc09a linux-3.0/block/blk-cgroup.c -17684c7e7c497a6159da4b57dd6edf5f linux-3.0/block/Makefile -ee15d792573e1e424148d325c3116ab1 linux-3.0/block/Kconfig.iosched -baae074489b4424bd74d250cc53a83bb linux-3.0/block/Kconfig -2b624fa08d959b75c7c50a93e7cab363 linux-3.0/arch/xtensa/variants/s6000/irq.c -ebbf3940b2e6a641eb2e08f634ad759a linux-3.0/arch/xtensa/variants/s6000/include/variant/tie.h -d6c7940541dd47ab082091e5820e8240 linux-3.0/arch/xtensa/variants/s6000/include/variant/tie-asm.h -54d96e02f98cce3da4a293d58b888a62 linux-3.0/arch/xtensa/variants/s6000/include/variant/irq.h -b672f19919ad751cb2ffd6043d8bf718 linux-3.0/arch/xtensa/variants/s6000/include/variant/hardware.h -27ddf615910485cb1da69a1ae1aae7a0 linux-3.0/arch/xtensa/variants/s6000/include/variant/gpio.h -a6e8f8fc1c2001e1a2d5a63e815bc5eb linux-3.0/arch/xtensa/variants/s6000/include/variant/dmac.h -baad3cad2dbdb8dbfa016e5494b84329 linux-3.0/arch/xtensa/variants/s6000/include/variant/core.h -f195987525f5637796d2f432d1bdc6a7 linux-3.0/arch/xtensa/variants/s6000/gpio.c -45a0a93a87fa876db28b33d28e79ff39 linux-3.0/arch/xtensa/variants/s6000/dmac.c -18c8ab6ef9fca56120a4d30253054c02 linux-3.0/arch/xtensa/variants/s6000/delay.c -40d9910cb03000bfe57af903990e55a1 linux-3.0/arch/xtensa/variants/s6000/Makefile -2a3f644362474b66b7c37540a70ad640 linux-3.0/arch/xtensa/variants/fsf/include/variant/tie.h -b3b5ab86fa98e4c6885bd8be9146fb09 linux-3.0/arch/xtensa/variants/fsf/include/variant/tie-asm.h -a108ef9116ae5f59af633ac245bf160d linux-3.0/arch/xtensa/variants/fsf/include/variant/core.h -61135fac217d7bec87b8a14d716e8b8e linux-3.0/arch/xtensa/variants/dc232b/include/variant/tie.h -001a843886c1779ded3964402564eea7 linux-3.0/arch/xtensa/variants/dc232b/include/variant/tie-asm.h -56e30a2c7aa4a025b25c76dce308c49e linux-3.0/arch/xtensa/variants/dc232b/include/variant/core.h -d778f8b32c3c1aa0ece5d23f41d85f95 linux-3.0/arch/xtensa/platforms/xt2000/setup.c -51b72e9ad8c54954d11c0b2e983935e4 linux-3.0/arch/xtensa/platforms/xt2000/include/platform/serial.h -59bf9438c52194a8ed042b93184f765c linux-3.0/arch/xtensa/platforms/xt2000/include/platform/hardware.h -422bfce64ad866c220b7ebf7fa963a66 linux-3.0/arch/xtensa/platforms/xt2000/Makefile -7355263ae79bd8fe530a1f7f37111991 linux-3.0/arch/xtensa/platforms/s6105/setup.c -de5726195b00b6cfdef6499298f72110 linux-3.0/arch/xtensa/platforms/s6105/include/platform/serial.h -f544465102b8e5d1a3c1356a0ac55b37 linux-3.0/arch/xtensa/platforms/s6105/include/platform/hardware.h -2114fb2798ea79787be1826e97e4ef7f linux-3.0/arch/xtensa/platforms/s6105/include/platform/gpio.h -fd0d33d6e6c0a78d2ee708691267bff9 linux-3.0/arch/xtensa/platforms/s6105/device.c -64a02c005ca2c2bb98280381479bf7e8 linux-3.0/arch/xtensa/platforms/s6105/Makefile -46201015751dde804d45e05bdaa4699c linux-3.0/arch/xtensa/platforms/iss/setup.c -565548e5eaebea79e07c65b8330b440d linux-3.0/arch/xtensa/platforms/iss/network.c -42d01448ab54731a146fe6ae9f5fa91d linux-3.0/arch/xtensa/platforms/iss/io.c -955bf73b6b450e0024bb486487095eb8 linux-3.0/arch/xtensa/platforms/iss/include/platform/simcall.h -664dbf1f8757f34c5a96c2ba5592f3ad linux-3.0/arch/xtensa/platforms/iss/include/platform/hardware.h -08960ec40d0080de01d1f5a406d007a8 linux-3.0/arch/xtensa/platforms/iss/console.c -2d9e42faa63a2fa7d6e66d8ffe52d548 linux-3.0/arch/xtensa/platforms/iss/Makefile -5ca03bcda0be0c8b8e03004636fb32cc linux-3.0/arch/xtensa/mm/tlb.c -f51061e470bdd6f8ac097d854013b6d9 linux-3.0/arch/xtensa/mm/mmu.c -276ec56cd151d55a561882e501ccf9c2 linux-3.0/arch/xtensa/mm/misc.S -6e5130ad98cf0bb1604ec0ff2a5a976c linux-3.0/arch/xtensa/mm/init.c -6cebca14c2261429ef44320317b9285c linux-3.0/arch/xtensa/mm/fault.c -44a50556f7896668e87e69c74717e805 linux-3.0/arch/xtensa/mm/cache.c -09ca4c2c2d5abf3f3d73172583a53ff9 linux-3.0/arch/xtensa/mm/Makefile -824dc57f0279834e297cd70893801fbe linux-3.0/arch/xtensa/lib/usercopy.S -2bd8c62360950775e77e3b6969fb0974 linux-3.0/arch/xtensa/lib/strnlen_user.S -86b8783285aafe467ad4a21761cb0cff linux-3.0/arch/xtensa/lib/strncpy_user.S -ef60ff1d29c14e3780be88403028cf7b linux-3.0/arch/xtensa/lib/pci-auto.c -866ce79a21d7a0406155049707c2d9cd linux-3.0/arch/xtensa/lib/memset.S -aeeb26c717d6eadba0e75be2d6e1fb56 linux-3.0/arch/xtensa/lib/memcopy.S -62c89e995844a006a6866a66401f3fe9 linux-3.0/arch/xtensa/lib/checksum.S -f0b568dd16d6dcc4f60521aa7366ad81 linux-3.0/arch/xtensa/lib/Makefile -b25519cdeae798811858a16ece89a458 linux-3.0/arch/xtensa/kernel/xtensa_ksyms.c -7ca25baa7af9d510e889ab0437a91aba linux-3.0/arch/xtensa/kernel/vmlinux.lds.S -1217e7e3c09275f12c56cec728a0abdf linux-3.0/arch/xtensa/kernel/vectors.S -f7a09cccaa1f5be880b61a61a8797efe linux-3.0/arch/xtensa/kernel/traps.c -b4276f45feaf4a85548d78be542e8f83 linux-3.0/arch/xtensa/kernel/time.c -68ca188d4958aa0573d909a0d8f8473d linux-3.0/arch/xtensa/kernel/syscall.c -b06df2b240c010057d9a88e7de6a61e0 linux-3.0/arch/xtensa/kernel/signal.c -e25be0b36c68479876ce19073b9d1630 linux-3.0/arch/xtensa/kernel/setup.c -d80579995bf2011e3b66c60265320a41 linux-3.0/arch/xtensa/kernel/ptrace.c -adc5d8b6972eb8672e97c9784bbb5f1e linux-3.0/arch/xtensa/kernel/process.c -200d41582aa779613ca208dc81b8d3e0 linux-3.0/arch/xtensa/kernel/platform.c -6ef882aaea4cc25d35e3d5329f60bdda linux-3.0/arch/xtensa/kernel/pci.c -9c99628664f06b6370eaebed213d9753 linux-3.0/arch/xtensa/kernel/pci-dma.c -1a923bd0753a4bf1160ccd0abfecf410 linux-3.0/arch/xtensa/kernel/module.c -7c2e15cb4dbc7f20a54212b58e3e571d linux-3.0/arch/xtensa/kernel/irq.c -b5b03ea46dfde219ba238a17e48ca2a8 linux-3.0/arch/xtensa/kernel/io.c -dc10002914324839a7edec647ce4f25c linux-3.0/arch/xtensa/kernel/init_task.c -cee36da40084a8e48ad464358c742fb6 linux-3.0/arch/xtensa/kernel/head.S -31f5bd70d41113bfe7cc7dd29f14da79 linux-3.0/arch/xtensa/kernel/entry.S -f2e9805e5953c498bd011ce3bf36d5fb linux-3.0/arch/xtensa/kernel/coprocessor.S -de841f01f5f37aab4d13af38621dc6c1 linux-3.0/arch/xtensa/kernel/asm-offsets.c -46981ba092eee6b29650a045b115a83b linux-3.0/arch/xtensa/kernel/align.S -3a86206d1d2b7ee12cff0dab25a03287 linux-3.0/arch/xtensa/kernel/Makefile -1a590fb703a693e8b5476d6041e9b0be linux-3.0/arch/xtensa/include/asm/xor.h -0dcbbdb9eba98e878640ce83644dbae6 linux-3.0/arch/xtensa/include/asm/vga.h -e9c05b8eb550883b28b8eb9fde428fe5 linux-3.0/arch/xtensa/include/asm/user.h -2d2129c1731df4acf63ca58ff8317404 linux-3.0/arch/xtensa/include/asm/unistd.h -c32f095e875fdf82cb61f3a4465f3062 linux-3.0/arch/xtensa/include/asm/unaligned.h -0af048e11b97200c3d434b2c8724e4d0 linux-3.0/arch/xtensa/include/asm/ucontext.h -a388dcacca0f5e9a450e2e3d4b07f9c4 linux-3.0/arch/xtensa/include/asm/uaccess.h -73ea457034e36632b73402268e67ce03 linux-3.0/arch/xtensa/include/asm/types.h -3b899a1063d4e4299e26d25771c27548 linux-3.0/arch/xtensa/include/asm/topology.h -2603595651df89f32b01126699ab94bd linux-3.0/arch/xtensa/include/asm/tlbflush.h -9dcd73f4c05b3c03ca188335a15596ce linux-3.0/arch/xtensa/include/asm/tlb.h -f037f95ff3f02f44ea8a3aabb337662c linux-3.0/arch/xtensa/include/asm/timex.h -aae314a25ece1590740bc154ec761df8 linux-3.0/arch/xtensa/include/asm/thread_info.h -d6604439f6d5046afb75ac8726f4b84a linux-3.0/arch/xtensa/include/asm/termios.h -d742ce8d832d99c1ebf3e96838547773 linux-3.0/arch/xtensa/include/asm/termbits.h -4c616ae95cb513656b5648bbe0257f54 linux-3.0/arch/xtensa/include/asm/system.h -c80387d4594598ac1c5dd0b61018e268 linux-3.0/arch/xtensa/include/asm/syscall.h -1d99c68fd886fa71835b1d80a99dd2e2 linux-3.0/arch/xtensa/include/asm/swab.h -fd080583448043a4d82f8e6be2fe39b7 linux-3.0/arch/xtensa/include/asm/string.h -3a2c7cdaa715c4c35f8c5e47300ed2ba linux-3.0/arch/xtensa/include/asm/statfs.h -fa25c77cd6c8f465e5e04b958fae8fb8 linux-3.0/arch/xtensa/include/asm/stat.h -28038c8bda814f5076650e20fde7a70e linux-3.0/arch/xtensa/include/asm/spinlock.h -a784b11146da11617c19047418f082c5 linux-3.0/arch/xtensa/include/asm/sockios.h -55dad7e643d5d6720445f63f5928c34f linux-3.0/arch/xtensa/include/asm/socket.h -7caca510a49d264565273c9468433107 linux-3.0/arch/xtensa/include/asm/smp.h -f827c85898de90763b1f3069497bf1f7 linux-3.0/arch/xtensa/include/asm/signal.h -6b9cec0f3211b78dae9f1d773950825e linux-3.0/arch/xtensa/include/asm/siginfo.h -257ff1fb198711f2806ba6dff561e1e8 linux-3.0/arch/xtensa/include/asm/sigcontext.h -fdb9b352b4612ef6bf55da173b1cf804 linux-3.0/arch/xtensa/include/asm/shmparam.h -40a4503370ea4bca4ab0c81395e13854 linux-3.0/arch/xtensa/include/asm/shmbuf.h -eb2e2956a442bd91e00602c6e4da36d3 linux-3.0/arch/xtensa/include/asm/setup.h -339948314c0590318331713a57628715 linux-3.0/arch/xtensa/include/asm/serial.h -a91333a7f6ecac939424f1eb080da931 linux-3.0/arch/xtensa/include/asm/sembuf.h -b1abfbe8688cd673a8e28dcdc1c3f0d3 linux-3.0/arch/xtensa/include/asm/segment.h -e0daad9868e02038a06f390306730fa9 linux-3.0/arch/xtensa/include/asm/sections.h -e1e8c4ea791174003d5383bf2fa01d34 linux-3.0/arch/xtensa/include/asm/scatterlist.h -2f6e73f8cb4790ff7d7a69512c1d98ea linux-3.0/arch/xtensa/include/asm/rwsem.h -a291c7c090de6440996019ffa487ba02 linux-3.0/arch/xtensa/include/asm/rmap.h -36f8390e6c63c30f82f1ff5d7a4dcce8 linux-3.0/arch/xtensa/include/asm/resource.h -1136232ad0b8a68847c25b4622d1597e linux-3.0/arch/xtensa/include/asm/regs.h -6bf299bdac970a0d1baf0a7f2f113f62 linux-3.0/arch/xtensa/include/asm/ptrace.h -124a1c127b8f9baf33b67c56b64ff248 linux-3.0/arch/xtensa/include/asm/processor.h -7ae46121d9fa4d93cf1bc0fb43d0c36b linux-3.0/arch/xtensa/include/asm/posix_types.h -49f684c5e9a62b622ef2bc3554524230 linux-3.0/arch/xtensa/include/asm/poll.h -8d5b42a91f3ba66c2684bd7d0b497b26 linux-3.0/arch/xtensa/include/asm/platform.h -3ad85b2d76d862badf66f244009dd1ef linux-3.0/arch/xtensa/include/asm/pgtable.h -ca5233cfaa5fb846cf7ce53ec02315e0 linux-3.0/arch/xtensa/include/asm/pgalloc.h -76777613190595c57c28deffe9f47a58 linux-3.0/arch/xtensa/include/asm/percpu.h -b1088f1377f52ef33a46ea0d401261c4 linux-3.0/arch/xtensa/include/asm/pci.h -7d8eafa88ee879ec20a105e44e7936c3 linux-3.0/arch/xtensa/include/asm/pci-bridge.h -e266cff26f1146181a8a713e92f19a9a linux-3.0/arch/xtensa/include/asm/param.h -52eea736e743e56880e57b336fa58720 linux-3.0/arch/xtensa/include/asm/page.h -dc0552e8b2deb80c01b90decc18c86ab linux-3.0/arch/xtensa/include/asm/nommu_context.h -9b8f5329a210ce3c80be63df84665801 linux-3.0/arch/xtensa/include/asm/nommu.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/xtensa/include/asm/mutex.h -ddc4cfe0fd467db82348a4e83d65a85d linux-3.0/arch/xtensa/include/asm/msgbuf.h -08e4673488d87a6485f07655b71f48a0 linux-3.0/arch/xtensa/include/asm/module.h -16ba6c087dc6e7b6869e1dcfa964a95f linux-3.0/arch/xtensa/include/asm/mmu_context.h -cd2ef3730c90a0461da59cfe1cce1a84 linux-3.0/arch/xtensa/include/asm/mmu.h -8cbf796ac6a37439d3ee297172160225 linux-3.0/arch/xtensa/include/asm/mman.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/xtensa/include/asm/local64.h -6b267946d62ded7d038934a1320922bc linux-3.0/arch/xtensa/include/asm/local.h -86f453ea904bd0f8d2c4264cea83848a linux-3.0/arch/xtensa/include/asm/linkage.h -7b3d617579a98999107a9f09937fc5c6 linux-3.0/arch/xtensa/include/asm/kmap_types.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/xtensa/include/asm/kdebug.h -9fd6886ac65beb32c5e6f65c37c82093 linux-3.0/arch/xtensa/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/xtensa/include/asm/irq_regs.h -734d151079a8bfa909dad489884676e2 linux-3.0/arch/xtensa/include/asm/irq.h -07f25525f50b85170501fe6f581c1cd0 linux-3.0/arch/xtensa/include/asm/ipcbuf.h -dd2d6c8362ac4d35e9054cc85f3040f0 linux-3.0/arch/xtensa/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/xtensa/include/asm/ioctl.h -e0e648abf955731668920a9b62152db2 linux-3.0/arch/xtensa/include/asm/io.h -19c98439835355cf1737e00dad040239 linux-3.0/arch/xtensa/include/asm/hw_irq.h -b9d05683686e65ed484175a0bdb1ca20 linux-3.0/arch/xtensa/include/asm/highmem.h -5ad0468465fec8b61ebd355b872c4e44 linux-3.0/arch/xtensa/include/asm/hardirq.h -52214cfacf2683636503f732616f9ea8 linux-3.0/arch/xtensa/include/asm/gpio.h -4ef4a292c77e30456ab62e2bd9f186e9 linux-3.0/arch/xtensa/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/xtensa/include/asm/ftrace.h -4f5885240e7cbe9cd9f7018f2da27a92 linux-3.0/arch/xtensa/include/asm/flat.h -a598360d85106db07897c937209e63eb linux-3.0/arch/xtensa/include/asm/fcntl.h -5b6b31d728ed2ed0df73c56676fdc68f linux-3.0/arch/xtensa/include/asm/fb.h -5e0853eabd62eb08e810a778fe0022d1 linux-3.0/arch/xtensa/include/asm/errno.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/xtensa/include/asm/emergency-restart.h -486e56435ef3ec9ebd41406b792c547e linux-3.0/arch/xtensa/include/asm/elf.h -47caa907f3592cd265f0bec7937ef65b linux-3.0/arch/xtensa/include/asm/dma.h -12012d7ae1082bc40c60e0d9ab902d4b linux-3.0/arch/xtensa/include/asm/dma-mapping.h -511cff7b561a7d5b83b5026edb7ba96d linux-3.0/arch/xtensa/include/asm/div64.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/xtensa/include/asm/device.h -9cfdb5d2736ed44342524d285ce5229f linux-3.0/arch/xtensa/include/asm/delay.h -1b97f8ec0ed30d62e470a9920a96039e linux-3.0/arch/xtensa/include/asm/current.h -7a4f8f3d38b2987f5db65f9304c882ca linux-3.0/arch/xtensa/include/asm/cputime.h -cdd5c25cba32158fe8bfff744c87d587 linux-3.0/arch/xtensa/include/asm/cpumask.h -aa6a6c35297747593a0bc56e7fc214dd linux-3.0/arch/xtensa/include/asm/coprocessor.h -bf5d732b9057163dbc037108faf45c1a linux-3.0/arch/xtensa/include/asm/checksum.h -89074520a69741b404e909156985f816 linux-3.0/arch/xtensa/include/asm/cacheflush.h -91d452d5d77d531f951796b54ed4a761 linux-3.0/arch/xtensa/include/asm/cacheasm.h -c3d523f0b192498a110fc427ca1ec13e linux-3.0/arch/xtensa/include/asm/cache.h -39862f2d1fa9d7aecfb4fb30e2763d2b linux-3.0/arch/xtensa/include/asm/byteorder.h -892ba3ace56bdcf5cb1410ea307da901 linux-3.0/arch/xtensa/include/asm/bugs.h -9f3f1e475d3d06c545e2a02e89bb87c8 linux-3.0/arch/xtensa/include/asm/bug.h -18b691f20fd3e6afa6dad1bfa6b1dee9 linux-3.0/arch/xtensa/include/asm/bootparam.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/xtensa/include/asm/bitsperlong.h -11f8f6a3ce69e3928cf8d89080ebfc04 linux-3.0/arch/xtensa/include/asm/bitops.h -abde821034e205d8d31d748aa06ed1c4 linux-3.0/arch/xtensa/include/asm/auxvec.h -1d520628935e0caf1e10c0ccfa24a709 linux-3.0/arch/xtensa/include/asm/atomic.h -cdb4d45f09eafcbe070e79c245f67305 linux-3.0/arch/xtensa/include/asm/asmmacro.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/xtensa/include/asm/asm-offsets.h -0c015deadbcb4a30e97aff7c219e03bd linux-3.0/arch/xtensa/include/asm/Kbuild -f1b3c15e86a0c075660ee9a834dd8571 linux-3.0/arch/xtensa/configs/s6105_defconfig -d40c0f38a6a6a29dc740a6b0820c8368 linux-3.0/arch/xtensa/configs/iss_defconfig -a51481ee09267591ef092140a6dbf4eb linux-3.0/arch/xtensa/configs/common_defconfig -e371eb3dac04a4a2bd03dc63ba1a32a9 linux-3.0/arch/xtensa/boot/ramdisk/Makefile -e5dc2cca381b9c51971637abf3f99e07 linux-3.0/arch/xtensa/boot/lib/zmem.c -6ba213449f064ca0feffba8e264f4084 linux-3.0/arch/xtensa/boot/lib/Makefile -7bcb1bb4bb971863ab2fa1537254fd0b linux-3.0/arch/xtensa/boot/boot-redboot/bootstrap.S -eb7e21460b71a6a01d0bd03db5d64fe7 linux-3.0/arch/xtensa/boot/boot-redboot/boot.ld -d8c5302250ae0470ca6386f97def438e linux-3.0/arch/xtensa/boot/boot-redboot/Makefile -dae6c5eb5fd8060d194b5a2aa26209c0 linux-3.0/arch/xtensa/boot/boot-elf/bootstrap.S -b35e97e48d2a99774169be7175fbd686 linux-3.0/arch/xtensa/boot/boot-elf/boot.lds.S -6daa3c28c650e2ff4000c095436fd619 linux-3.0/arch/xtensa/boot/boot-elf/Makefile -b776bea277460983c9ad6b11add637e2 linux-3.0/arch/xtensa/boot/Makefile -4f1517c6f282edbde41e18440dfa5f46 linux-3.0/arch/xtensa/Makefile -22cba7b5049f9dc34fa757e3d842cca0 linux-3.0/arch/xtensa/Kconfig.debug -a2c84b32a06dabdc0089ee0e9f5c0099 linux-3.0/arch/xtensa/Kconfig -adcf101b28dbdc93224584ffba8a30f9 linux-3.0/arch/x86/xen/xen-ops.h -c1499aaddd90e86ca9c14f68a8c23bba linux-3.0/arch/x86/xen/xen-head.S -5574ea2714c4e8e10771857dc109fd5e linux-3.0/arch/x86/xen/xen-asm_64.S -3679b8fe787c9ad5f9f9839e21175a1a linux-3.0/arch/x86/xen/xen-asm_32.S -07ebe2fc099188a36415190e6eba5fea linux-3.0/arch/x86/xen/xen-asm.h -b39b223cf472110d6a98b504514731d9 linux-3.0/arch/x86/xen/xen-asm.S -91db77511a77570746aed37a5a183964 linux-3.0/arch/x86/xen/vdso.h -00d18fda04a9e7c07d1166f3acc72a7f linux-3.0/arch/x86/xen/time.c -9720e3f414aacbca33e4eb746f8f8a4e linux-3.0/arch/x86/xen/suspend.c -6c4a17619899d30f3e446c25d7a810b4 linux-3.0/arch/x86/xen/spinlock.c -c837bf62141b54cf691baf4d96d2750b linux-3.0/arch/x86/xen/smp.c -f4ed438b71521073dcc006f6359a7eaa linux-3.0/arch/x86/xen/setup.c -9f475110f685c8fb23d033333a74e3c1 linux-3.0/arch/x86/xen/platform-pci-unplug.c -14b26887d665f31bd318f9c36021083a linux-3.0/arch/x86/xen/pci-swiotlb-xen.c -7896a6496ad0361f2bd62413bf811010 linux-3.0/arch/x86/xen/p2m.c -c7cbc8295ea5f66eb82f745c70d1e331 linux-3.0/arch/x86/xen/multicalls.h -6684f9ac04d2b1aa6c0d2efc9e62ca03 linux-3.0/arch/x86/xen/multicalls.c -e626bbbf209a4b503e7d60c117079001 linux-3.0/arch/x86/xen/mmu.h -41144c30e5df3d5fad83b4822dfd3d7a linux-3.0/arch/x86/xen/mmu.c -f1cbcfae223ea9d27b7ba21b273a5560 linux-3.0/arch/x86/xen/irq.c -14a7247482264f277c082bc44c7c9e7e linux-3.0/arch/x86/xen/grant-table.c -a5968fed9df7cb16ed54e640cc635901 linux-3.0/arch/x86/xen/enlighten.c -d046677b06df7794275e41d6678014a7 linux-3.0/arch/x86/xen/debugfs.h -81fc8d811648e7ac0164d83c76134a23 linux-3.0/arch/x86/xen/debugfs.c -7a6d2c0f258b0283b22bdbf3a86ddd73 linux-3.0/arch/x86/xen/Makefile -8d9b9b65773a151ecca6d2530738020d linux-3.0/arch/x86/xen/Kconfig -4f189d9bd29322ebbbc66a7c1a26a7a1 linux-3.0/arch/x86/video/fbdev.c -4ccd28983589f46fb4bdd9ce6e085743 linux-3.0/arch/x86/video/Makefile -9e36bdaaaae1d16aaa04c9792b9da6af linux-3.0/arch/x86/vdso/vma.c -eb2837d68549cd0f51aab4ea80961cd0 linux-3.0/arch/x86/vdso/vgetcpu.c -4c9e7e0065d4c54929e70540da55635c linux-3.0/arch/x86/vdso/vdso32/vdso32.lds.S -1de3fc6babb124760ca07ea87fbd0579 linux-3.0/arch/x86/vdso/vdso32/sysenter.S -0137d7f2ea270de3f119325ee7d3da3c linux-3.0/arch/x86/vdso/vdso32/syscall.S -b1516bb5f9bbd8b990f6c01e1ad148f6 linux-3.0/arch/x86/vdso/vdso32/sigreturn.S -03391d1db601bc9a3a66bad426776091 linux-3.0/arch/x86/vdso/vdso32/note.S -09d093801a61041a105d6a0bdbb5a566 linux-3.0/arch/x86/vdso/vdso32/int80.S -83b3005eb7ddde19739f64ca79533ddd linux-3.0/arch/x86/vdso/vdso32/.gitignore -bad731496fedc8e48f6745e8643e11b8 linux-3.0/arch/x86/vdso/vdso32.S -d60a6a351fc564da9c8d0f3248aa934d linux-3.0/arch/x86/vdso/vdso32-setup.c -960c707db963a70ac546d98599f792e4 linux-3.0/arch/x86/vdso/vdso.lds.S -6927195cecfb3c2736dbc8b914192608 linux-3.0/arch/x86/vdso/vdso.S -34ea47c60598f102697b4476b742f873 linux-3.0/arch/x86/vdso/vdso-note.S -9a69589e638c1a326eed9627be5ba010 linux-3.0/arch/x86/vdso/vdso-layout.lds.S -7752ffa55cf78940d76f8b6778f9a137 linux-3.0/arch/x86/vdso/vclock_gettime.c -875287d67d3316cea6c9052c3af9ae18 linux-3.0/arch/x86/vdso/checkundef.sh -59c206eea7259028e951e66597dc6c61 linux-3.0/arch/x86/vdso/Makefile -23d9fb373cffe6def057f879c4b54dd3 linux-3.0/arch/x86/vdso/.gitignore -5bde22af5c8dbb9f58c4d90a287a5351 linux-3.0/arch/x86/tools/test_get_len.c -c0ac643f3c60dbb98fe25f742e3210d9 linux-3.0/arch/x86/tools/gen-insn-attr-x86.awk -e8c3c8042752d940d7f154cf197e49df linux-3.0/arch/x86/tools/distill.awk -4941c5a847a66f1b3b19c31c06928599 linux-3.0/arch/x86/tools/chkobjdump.awk -1716746c51e16baadf75a59b3f25e9a5 linux-3.0/arch/x86/tools/Makefile -98444b9e642668ab631839946ba54c71 linux-3.0/arch/x86/power/hibernate_asm_64.S -2787965cb750154b6364ec187321af3b linux-3.0/arch/x86/power/hibernate_asm_32.S -326f3bf61cf4f52ac663c03e1519c56f linux-3.0/arch/x86/power/hibernate_64.c -0f9b41a6950b46fc165b27bc1be3f8ed linux-3.0/arch/x86/power/hibernate_32.c -c860f3b7e5d04b294a21732243a2ea9a linux-3.0/arch/x86/power/cpu.c -4cff09401379bfaae0480a039b5867ab linux-3.0/arch/x86/power/Makefile -012ddfa79861cb8229c300fc13593c67 linux-3.0/arch/x86/platform/visws/visws_quirks.c -109919297274c5623cdfd24fdd36501e linux-3.0/arch/x86/platform/visws/Makefile -dc8f43e7c3dc737e71a7f3bc99b619b9 linux-3.0/arch/x86/platform/uv/uv_time.c -61f2729161adbd947c7cd50616d28dbc linux-3.0/arch/x86/platform/uv/uv_sysfs.c -fe8407294946665dbda4024831a4d641 linux-3.0/arch/x86/platform/uv/uv_irq.c -8f5ec118fe7547aeaa416409af2daba7 linux-3.0/arch/x86/platform/uv/tlb_uv.c -12b36747c32809a3bf54bb40257b525b linux-3.0/arch/x86/platform/uv/bios_uv.c -805c84ae789a32b55453f2934c29eec9 linux-3.0/arch/x86/platform/uv/Makefile -d209b432063792122702c17c67927757 linux-3.0/arch/x86/platform/sfi/sfi.c -edd8dab65d96276c4228953bc92b4d63 linux-3.0/arch/x86/platform/sfi/Makefile -cc414953ebd6bf80a710e1db6c61f882 linux-3.0/arch/x86/platform/scx200/scx200_32.c -9da66924d373ff842f099dd8fb828f88 linux-3.0/arch/x86/platform/scx200/Makefile -071e9ba00c4877764f7e787959f164df linux-3.0/arch/x86/platform/olpc/olpc_ofw.c -713f98a843ca12a0e5affdb34c3cc928 linux-3.0/arch/x86/platform/olpc/olpc_dt.c -997771cb97e929ba84a4070021205d98 linux-3.0/arch/x86/platform/olpc/olpc.c -71b153b8a739ed68f624df9182c08d31 linux-3.0/arch/x86/platform/olpc/olpc-xo1.c -ffb7c4f1030def00ce7649e34b932dff linux-3.0/arch/x86/platform/olpc/Makefile -b8a857cb4f45e5737a3986a0f96e8603 linux-3.0/arch/x86/platform/mrst/vrtc.c -d2acfed70da56423a5645ee14fc10456 linux-3.0/arch/x86/platform/mrst/mrst.c -0e373b12356997067206806ba012f253 linux-3.0/arch/x86/platform/mrst/early_printk_mrst.c -01a17df51e972267493565ebd55a0151 linux-3.0/arch/x86/platform/mrst/Makefile -9e34a23f3b9f8e356f4faa34433475e7 linux-3.0/arch/x86/platform/iris/iris.c -759f364d8842d5e8cfa85c0e239554b7 linux-3.0/arch/x86/platform/iris/Makefile -1eddb5779579189a0c7cb80a3506cd56 linux-3.0/arch/x86/platform/efi/efi_stub_64.S -478b1290e2345d6a57db08b7220b2d2d linux-3.0/arch/x86/platform/efi/efi_stub_32.S -3273f1f88c78524fb17be2fea929219b linux-3.0/arch/x86/platform/efi/efi_64.c -1f3c57727f77187dedc40a5c3cdd6487 linux-3.0/arch/x86/platform/efi/efi_32.c -b05d8083a0a4b77be03cba4dc96c1596 linux-3.0/arch/x86/platform/efi/efi.c -4f1b5323ad42917f7d49af2c358f9aa4 linux-3.0/arch/x86/platform/efi/Makefile -c7df003ff0faf73d39217beb575ae12f linux-3.0/arch/x86/platform/ce4100/falconfalls.dts -34812a2eb0ea8c547b58acf5140318b8 linux-3.0/arch/x86/platform/ce4100/ce4100.c -97f48686dc4b497f154db729b369458e linux-3.0/arch/x86/platform/ce4100/Makefile -2b3a74d55abd05eec4f97de6c8a350b4 linux-3.0/arch/x86/platform/Makefile -9d159f8f3d096a1cbb1ea98c1a54c54d linux-3.0/arch/x86/pci/xen.c -b786c70f92dc6eac5fef7be29ac213c3 linux-3.0/arch/x86/pci/visws.c -396d2c914393f9ee14485d69b33fcfd1 linux-3.0/arch/x86/pci/pcbios.c -415ee67af5fa6764d50e72206451fdf4 linux-3.0/arch/x86/pci/olpc.c -c63d98b546b281d8be08900f02cb6ccb linux-3.0/arch/x86/pci/numaq_32.c -65f98972e6493a6ee9ce594d4975c419 linux-3.0/arch/x86/pci/mrst.c -f574ff75321fa8518760e76867647362 linux-3.0/arch/x86/pci/mmconfig_64.c -410b3a8c40e29e54eb5220a4ab533e14 linux-3.0/arch/x86/pci/mmconfig_32.c -c692a4f1707929cf30400cd69e0ee610 linux-3.0/arch/x86/pci/mmconfig-shared.c -2e912e8680c8168bbb915646512c3aa9 linux-3.0/arch/x86/pci/legacy.c -4518a2434f25fea8816925fafefacbca linux-3.0/arch/x86/pci/irq.c -9fb9d2c77b2e1e39c93cc1e9a07a2ab1 linux-3.0/arch/x86/pci/init.c -6e5af130dab1b22a87e55f624375dcf6 linux-3.0/arch/x86/pci/i386.c -5647d6bc4af93af074335bf6dd00b8f9 linux-3.0/arch/x86/pci/fixup.c -42fed29d6917c16eef1609615402853f linux-3.0/arch/x86/pci/early.c -f625810090971910a96f738a4895379d linux-3.0/arch/x86/pci/direct.c -807b676625cc291047fdc53798fbdfc4 linux-3.0/arch/x86/pci/common.c -4f21f238a50f67918f03dfde745ef763 linux-3.0/arch/x86/pci/ce4100.c -39b960021dc6bd45a741c153deae164c linux-3.0/arch/x86/pci/bus_numa.h -6542347b6e9bce5a963e83ab87f9b8e2 linux-3.0/arch/x86/pci/bus_numa.c -6c034a798868bf28fd6dd4e468970a49 linux-3.0/arch/x86/pci/broadcom_bus.c -b924d8cf8180433564f66b86333e9c13 linux-3.0/arch/x86/pci/amd_bus.c -5cba5650bcf17bf1742f8f7cdddd6743 linux-3.0/arch/x86/pci/acpi.c -3716940e2dacdff9dcea1d214ccb6ffb linux-3.0/arch/x86/pci/Makefile -c5db1d4885bc3a594df83cb613b7bd16 linux-3.0/arch/x86/oprofile/op_x86_model.h -13a8a6832744f38ffc566dc9abd11726 linux-3.0/arch/x86/oprofile/op_model_ppro.c -dcdfab043efbd7e5fac9c75e4d8a264c linux-3.0/arch/x86/oprofile/op_model_p4.c -5cd7a80e7075c36ca5a43e77c6fb481d linux-3.0/arch/x86/oprofile/op_model_amd.c -cee65633ba98a53b7237e438b91503ce linux-3.0/arch/x86/oprofile/op_counter.h -ddaa9ddca3b34b9b27ba16bdc318acac linux-3.0/arch/x86/oprofile/nmi_timer_int.c -0b350d356956aa86dc01606e7290b817 linux-3.0/arch/x86/oprofile/nmi_int.c -6bc9e6d03097640f56f2b7cfb4c19025 linux-3.0/arch/x86/oprofile/init.c -857f188ccfd8f8805a06df2a5fbdaaac linux-3.0/arch/x86/oprofile/backtrace.c -92b3d970ce65a0bd9dd7e4019ca59b70 linux-3.0/arch/x86/oprofile/Makefile -f5223eed5e3512466be0c90506aa379f linux-3.0/arch/x86/net/bpf_jit_comp.c -2cfa66571618bc555f6fc0283d1fe0e8 linux-3.0/arch/x86/net/bpf_jit.S -c36edd9510d516750c2bbc23117259dd linux-3.0/arch/x86/net/Makefile -41664dbf515c6c3ec8fe14b1d6ee235d linux-3.0/arch/x86/mm/tlb.c -fd77a192a3bcdb68af06a582f03ca463 linux-3.0/arch/x86/mm/testmmiotrace.c -abdb351811f747b586640b7b4d2155a5 linux-3.0/arch/x86/mm/srat.c -383a48550f756020285d8f8b86008264 linux-3.0/arch/x86/mm/setup_nx.c -3debce1313c016ac93e66a0abf8624cc linux-3.0/arch/x86/mm/physaddr.h -4a799dff82f9ec9ff4acd5e9310079ea linux-3.0/arch/x86/mm/physaddr.c -5cf1ea2d8ece344ceb0df11c25c2573d linux-3.0/arch/x86/mm/pgtable_32.c -a7e9f7c0af26272ea3ff904c8f855b2e linux-3.0/arch/x86/mm/pgtable.c -921cee23c843283223a29ff0f92f4df9 linux-3.0/arch/x86/mm/pf_in.h -21dafedb64a9be6aa91e64376af40ac7 linux-3.0/arch/x86/mm/pf_in.c -830f4739519852928a3dfe85871de9da linux-3.0/arch/x86/mm/pat_rbtree.c -6c38470512fcbfacad331f99721b051e linux-3.0/arch/x86/mm/pat_internal.h -59c5034d4de70471936d1a21d4ecb3e4 linux-3.0/arch/x86/mm/pat.c -beab8edc3ab990b4909065e2cc0c609b linux-3.0/arch/x86/mm/pageattr.c -a2a2eaeac18e1c1272411a22ed9d05c6 linux-3.0/arch/x86/mm/pageattr-test.c -6e0061edefc195e700890518d21c0924 linux-3.0/arch/x86/mm/numa_internal.h -392c7f5fe03736899eec5da84f42b440 linux-3.0/arch/x86/mm/numa_emulation.c -ba0cc8e5f83cabb267b77cfcbed2730a linux-3.0/arch/x86/mm/numa_64.c -8283e236773e75875130ca80a22333be linux-3.0/arch/x86/mm/numa_32.c -376ff52a063745bf500d7a376308d1ea linux-3.0/arch/x86/mm/numa.c -9f02ece02ebd35e9d942975cad48e8a5 linux-3.0/arch/x86/mm/mmio-mod.c -d346a03342c4aa9f07cbc77c61b8cd56 linux-3.0/arch/x86/mm/mmap.c -a89f58b4fe09a2a4151ed940794cbf97 linux-3.0/arch/x86/mm/memtest.c -4c9abd17e795b62e8c9239c2b94dba88 linux-3.0/arch/x86/mm/memblock.c -fa0ed3d7bf84df44b874a4fe687bd374 linux-3.0/arch/x86/mm/kmmio.c -fafda1038df5270e01e51cf62ddc0482 linux-3.0/arch/x86/mm/kmemcheck/shadow.h -3477dc822d43201d520d01c78e6949c4 linux-3.0/arch/x86/mm/kmemcheck/shadow.c -1a19199e5ebcf393e983123f3a127c0e linux-3.0/arch/x86/mm/kmemcheck/selftest.h -5f43b6d4bf481e51b63301e994046df5 linux-3.0/arch/x86/mm/kmemcheck/selftest.c -c3f31260e5bdf3bb07f1fdb28a1a0e1f linux-3.0/arch/x86/mm/kmemcheck/pte.h -b4e8446c53b74426bd1e4ac4a8d32ce9 linux-3.0/arch/x86/mm/kmemcheck/pte.c -c0f056c81de6390dc58595e29e7df560 linux-3.0/arch/x86/mm/kmemcheck/opcode.h -97a35d74f0d4951c28357306e48261e5 linux-3.0/arch/x86/mm/kmemcheck/opcode.c -99a9071605cbc469de6daffe01cfbcbc linux-3.0/arch/x86/mm/kmemcheck/kmemcheck.c -e8d3bd56c5fbd59fe49628f02a325d68 linux-3.0/arch/x86/mm/kmemcheck/error.h -8dfff332674b3b7506977772a1d31c24 linux-3.0/arch/x86/mm/kmemcheck/error.c -49f24809b76f2d139d0d62b0f95b3e7a linux-3.0/arch/x86/mm/kmemcheck/Makefile -4e3377e69f6a06c0f81c8fb72455b7a4 linux-3.0/arch/x86/mm/ioremap.c -8c7e239aa31193262ede54578ee4d376 linux-3.0/arch/x86/mm/iomap_32.c -95e086b1e21e5b7c12f05fcfe24f22df linux-3.0/arch/x86/mm/init_64.c -ebaa4830e27bdcaedff265f3c8f14a77 linux-3.0/arch/x86/mm/init_32.c -76e6919340828f233c8894451297c824 linux-3.0/arch/x86/mm/init.c -b9d5739a34454435b5caf737b74acccc linux-3.0/arch/x86/mm/hugetlbpage.c -c08b53e071fbd59b74719d43810b64cc linux-3.0/arch/x86/mm/highmem_32.c -07567b3385e42bf4849c5709f91bc7e6 linux-3.0/arch/x86/mm/gup.c -42aaeb4e143017803356599969e01d8a linux-3.0/arch/x86/mm/fault.c -f4524751d4d5f4d78f6e584c731700b4 linux-3.0/arch/x86/mm/extable.c -fc072b9a6aba7d70cc21f0a43ba18ea1 linux-3.0/arch/x86/mm/dump_pagetables.c -893279a272fd5d69f700fcb317b6aac8 linux-3.0/arch/x86/mm/amdtopology.c -29b6cce32f6e4b7605a7a5bd35ade70f linux-3.0/arch/x86/mm/Makefile -a67bd9dc5b183ba371d3c4a0a4e0a13d linux-3.0/arch/x86/math-emu/wm_sqrt.S -be0a9d36be2169c293cedadaa2da1b66 linux-3.0/arch/x86/math-emu/wm_shrx.S -47876248b33e9927091a80b226c0ddbb linux-3.0/arch/x86/math-emu/version.h -c84958f3b1da08c18a21150b45e27e19 linux-3.0/arch/x86/math-emu/status_w.h -50546f2c4cd834b8d0212aa20c4052c7 linux-3.0/arch/x86/math-emu/shr_Xsig.S -72e236c6aa92dae59bc1f891089b1b51 linux-3.0/arch/x86/math-emu/round_Xsig.S -671dd3665baf0bb2be8b8efdac655a7e linux-3.0/arch/x86/math-emu/reg_u_sub.S -ee4408f6bf2e13acfdc8cfec57eabb72 linux-3.0/arch/x86/math-emu/reg_u_mul.S -3a162c73208de1b4853fa771b3718f94 linux-3.0/arch/x86/math-emu/reg_u_div.S -835c92bda54581cc43597e534f346a50 linux-3.0/arch/x86/math-emu/reg_u_add.S -0c635dc92a47b2786a66bf07afc18ad9 linux-3.0/arch/x86/math-emu/reg_round.S -c7a40627dcf63c5aa113821c9c153c39 linux-3.0/arch/x86/math-emu/reg_norm.S -1b691c0e8092f5dc825003cd65dbc80e linux-3.0/arch/x86/math-emu/reg_mul.c -474e8f43982760086a18a0d7a2e6ff5c linux-3.0/arch/x86/math-emu/reg_ld_str.c -4611fd0a2a070cc106f597069a45ff23 linux-3.0/arch/x86/math-emu/reg_divide.c -518c7643adca951283f75ddaf163c625 linux-3.0/arch/x86/math-emu/reg_convert.c -437792d0ccfde1826314746215f2cfc0 linux-3.0/arch/x86/math-emu/reg_constant.h -1a90e7489d55576620dea4e13675cdd0 linux-3.0/arch/x86/math-emu/reg_constant.c -03c337606d3043cce946379bc54336b7 linux-3.0/arch/x86/math-emu/reg_compare.c -a231d70a46bc19fd05859a27dfec1dd3 linux-3.0/arch/x86/math-emu/reg_add_sub.c -9ba6d435028f436e986d9da8172d3659 linux-3.0/arch/x86/math-emu/polynom_Xsig.S -ed500cddb6830bb64ff9c2c1cde9ca81 linux-3.0/arch/x86/math-emu/poly_tan.c -32e86e210d35054d7e3dac1147e35388 linux-3.0/arch/x86/math-emu/poly_sin.c -7b778ea1a3f796f418dc6fe073506450 linux-3.0/arch/x86/math-emu/poly_l2.c -4eda96fcecceaf8f7e8720061e4d2f63 linux-3.0/arch/x86/math-emu/poly_atan.c -e9072c4ec3f27e2e708fddbd1b28d298 linux-3.0/arch/x86/math-emu/poly_2xm1.c -55f610cab922f10e4728b22c76a6662a linux-3.0/arch/x86/math-emu/poly.h -6a6753760b69325b5348831fdcaf9258 linux-3.0/arch/x86/math-emu/mul_Xsig.S -5355308d0a5d1853edcbca5405ac83b2 linux-3.0/arch/x86/math-emu/load_store.c -d5054a963334a61d73b549d2db287a61 linux-3.0/arch/x86/math-emu/get_address.c -b3f6dd417d3ef4c2f94f0321cb342791 linux-3.0/arch/x86/math-emu/fpu_trig.c -160b7b2bef26280cc33287192e860a39 linux-3.0/arch/x86/math-emu/fpu_tags.c -417a5ef799456aabe0718e4cfa74d8f5 linux-3.0/arch/x86/math-emu/fpu_system.h -503e3143207b0e7a368c13edd3330067 linux-3.0/arch/x86/math-emu/fpu_proto.h -38d41ec1361bc7110ba25f03ab63a8b0 linux-3.0/arch/x86/math-emu/fpu_etc.c -7ad919af603a663e3dfe88dae1780545 linux-3.0/arch/x86/math-emu/fpu_entry.c -9c0144f3b99dba29c240f0fc7642a2ae linux-3.0/arch/x86/math-emu/fpu_emu.h -23be3aa0601f186eaee14f5adbf30cc7 linux-3.0/arch/x86/math-emu/fpu_aux.c -c3b4e2db9e0cbd5c9891df663731d003 linux-3.0/arch/x86/math-emu/fpu_asm.h -b8097d248b6be2fd532c38b4ec634424 linux-3.0/arch/x86/math-emu/fpu_arith.c -e0963e36eb84e7d747f299be362caad7 linux-3.0/arch/x86/math-emu/exception.h -02b909cbe9fa0a2f7e87140619f548c8 linux-3.0/arch/x86/math-emu/errors.c -88de28fe2b8118e7f15135c9238ca7e5 linux-3.0/arch/x86/math-emu/div_small.S -b02e9a34d30b72453a754181a208a68f linux-3.0/arch/x86/math-emu/div_Xsig.S -208bbee1b75b38e22001e45f1d4d926e linux-3.0/arch/x86/math-emu/control_w.h -6c7e4e14fa6fd9cf2ca65b0337f6b218 linux-3.0/arch/x86/math-emu/README -993f4b6f620fc98eeca0452d4d197ab3 linux-3.0/arch/x86/math-emu/Makefile -f075a4fc17a7aaa229c41c53920c0dae linux-3.0/arch/x86/lib/x86-opcode-map.txt -170a2ea5f5542b5e61f1709bcc9ff468 linux-3.0/arch/x86/lib/usercopy_64.c -fed9759ab43a909bac36c836f5a6721b linux-3.0/arch/x86/lib/usercopy_32.c -8de5f4a695d383c580ee97273fe1153e linux-3.0/arch/x86/lib/thunk_64.S -43eab24e57e986b1a441b9baa43f2ec5 linux-3.0/arch/x86/lib/thunk_32.S -9f5b6367c599d55eb4bb35df739428d7 linux-3.0/arch/x86/lib/strstr_32.c -398d8e3ba257aab7d388e9cf895d04b1 linux-3.0/arch/x86/lib/string_32.c -80779d220c673e5213e12954c9b6e4ae linux-3.0/arch/x86/lib/semaphore_32.S -7f0ff33bb926f12160d6950319483ccb linux-3.0/arch/x86/lib/rwsem_64.S -14950fdf000ac16b64551fb490d7d41a linux-3.0/arch/x86/lib/rwlock_64.S -ca1e2b4f65b8609eaedf0216dfaf9a5b linux-3.0/arch/x86/lib/putuser.S -a58b5237c57607d13f231de9320c6b82 linux-3.0/arch/x86/lib/msr.c -c8dae7854e0085945fedd9cdba34444d linux-3.0/arch/x86/lib/msr-smp.c -6358c5e5a67e543b84c9c12dea0eb00b linux-3.0/arch/x86/lib/msr-reg.S -90e37953d6966cad01446f5ed4f3d422 linux-3.0/arch/x86/lib/msr-reg-export.c -3dad79069f1dccbb237e33a7e6601155 linux-3.0/arch/x86/lib/mmx_32.c -e820b29828da65a5136487b40dda7e3b linux-3.0/arch/x86/lib/memset_64.S -bbcc6b9eefc4e1822e982b5c93f19499 linux-3.0/arch/x86/lib/memmove_64.S -0b8bfcb8bb75d888327e9192173a4631 linux-3.0/arch/x86/lib/memcpy_64.S -dd2bb4b37348d16c772565205144d035 linux-3.0/arch/x86/lib/memcpy_32.c -cde6ca0595208b789eeed577bad8ef77 linux-3.0/arch/x86/lib/iomap_copy_64.S -d32ed7dc43e337de24d6b0a7a0933658 linux-3.0/arch/x86/lib/insn.c -9284450c193fac56847584a2493cfda3 linux-3.0/arch/x86/lib/inat.c -57f43d7e29a7c0b3e776e1395ca27e57 linux-3.0/arch/x86/lib/getuser.S -a954d68922a89df025474573e454a858 linux-3.0/arch/x86/lib/delay.c -1fc0103d1e5673c36a1fbeca07139643 linux-3.0/arch/x86/lib/csum-wrappers_64.c -639aa8b3098d8edf5f1468d0cd6d139c linux-3.0/arch/x86/lib/csum-partial_64.c -d7932cc80facaf727a1717873d81e310 linux-3.0/arch/x86/lib/csum-copy_64.S -bc8e982c0ba7ffbea8ebd2c947109e7b linux-3.0/arch/x86/lib/copy_user_nocache_64.S -4aae2f1f40b70228079f0db9bdb1d988 linux-3.0/arch/x86/lib/copy_user_64.S -a2942edebf09d2c75559c125651ba647 linux-3.0/arch/x86/lib/copy_page_64.S -2cf73f8a36667ae33f76b41455c81ebb linux-3.0/arch/x86/lib/cmpxchg8b_emu.S -ce10dd55bc523ba3a93ae59a06d3a12b linux-3.0/arch/x86/lib/cmpxchg16b_emu.S -6ee783f951847ab9d077bcd37ed843a9 linux-3.0/arch/x86/lib/cmpxchg.c -8782c4ce42a9f497048d1bb79e97cab0 linux-3.0/arch/x86/lib/clear_page_64.S -099724bfa844364580ac1d69816cf2f3 linux-3.0/arch/x86/lib/checksum_32.S -00deee6c0e16d2cd02d2876aeecd649c linux-3.0/arch/x86/lib/cache-smp.c -680e45ef9106ce39320fa1d44282f618 linux-3.0/arch/x86/lib/atomic64_cx8_32.S -69c19ed843201510ecb608ae6546065e linux-3.0/arch/x86/lib/atomic64_386_32.S -ba994d9e460c1f06b98b1b21c95b2221 linux-3.0/arch/x86/lib/atomic64_32.c -b0ae47df56fb33d310edcc038fcd3227 linux-3.0/arch/x86/lib/Makefile -6d43d76b2395d3c34e95d40158a525fd linux-3.0/arch/x86/lib/.gitignore -16da92c4304695fa7989e58d2ee71bab linux-3.0/arch/x86/lguest/i386_head.S -a05c357e1c8c81caf10e71cbd095bc19 linux-3.0/arch/x86/lguest/boot.c -c83afb7b5e1349cef8f99569ea2b3f23 linux-3.0/arch/x86/lguest/Makefile -6429d69b4d0b43f3a2b92aa5ec1dc89f linux-3.0/arch/x86/lguest/Kconfig -e079d45d53da26399383fd236c3f9c9e linux-3.0/arch/x86/kvm/x86.h -b7c5c4bbc8beb8457a12ba6d9e0d9127 linux-3.0/arch/x86/kvm/x86.c -cc79fc94422f095651000d1c861727a8 linux-3.0/arch/x86/kvm/vmx.c -b0acdbf1ba7cf32c2b76571d06968d7d linux-3.0/arch/x86/kvm/tss.h -bac17e5f676cf3b36e4eeb13068a2808 linux-3.0/arch/x86/kvm/trace.h -b3daa003176706a9f2cc3b5fb58535fa linux-3.0/arch/x86/kvm/timer.c -bb888715328d8226423c3ca00bea932e linux-3.0/arch/x86/kvm/svm.c -cbaf8c2c0828717e7139e4a19aa27ace linux-3.0/arch/x86/kvm/paging_tmpl.h -3e7860b8a3b5038921e4bb10cb86393b linux-3.0/arch/x86/kvm/mmutrace.h -179bd1e8c3cc9289645b0fb129bc7898 linux-3.0/arch/x86/kvm/mmu_audit.c -044ab94e3e0974b395876e0bf2f61631 linux-3.0/arch/x86/kvm/mmu.h -e7f2723de71de782ba7fb97a498791dc linux-3.0/arch/x86/kvm/mmu.c -564aa8eb53136b9b0288c5c00ed3f2c9 linux-3.0/arch/x86/kvm/lapic.h -71fb2b99249036ccb250d5e56782d76c linux-3.0/arch/x86/kvm/lapic.c -f925070bd05cd6005f7ececdf9118645 linux-3.0/arch/x86/kvm/kvm_timer.h -9c0965a10c8822a7566c94ac2f8dfc6b linux-3.0/arch/x86/kvm/kvm_cache_regs.h -31de321a02d7e3eebcd8a428a7cf1288 linux-3.0/arch/x86/kvm/irq.h -cf3fb1091ff38554e8d24c97868e05c3 linux-3.0/arch/x86/kvm/irq.c -6fe2a943be13416c2d8539b2606afead linux-3.0/arch/x86/kvm/i8259.c -9c7505c4c4e77f8fd1ff381fdb89e5b1 linux-3.0/arch/x86/kvm/i8254.h -2bea251ff70573e6a6e7c2e53f297783 linux-3.0/arch/x86/kvm/i8254.c -a82a4394d9e470eb8651c8fa535ce462 linux-3.0/arch/x86/kvm/emulate.c -24e737cbf144321069f91e847b1f02e2 linux-3.0/arch/x86/kvm/Makefile -166a3f0dc9d93ab26e5c0e23f16486a7 linux-3.0/arch/x86/kvm/Kconfig -62ab70a7ced163121dc86b8bddfe30da linux-3.0/arch/x86/kernel/xsave.c -93e1207d7bac6bb0045219cfe3685e97 linux-3.0/arch/x86/kernel/x86_init.c -85b133b2edbe4d86d2a63a79b0cf7c36 linux-3.0/arch/x86/kernel/x8664_ksyms_64.c -fca6404b14d659a7908d41a3497c4888 linux-3.0/arch/x86/kernel/vsyscall_64.c -744aadf89437f5f8368b81394938e087 linux-3.0/arch/x86/kernel/vsmp_64.c -9a420391db0916aaf206eaa48732d1b5 linux-3.0/arch/x86/kernel/vread_tsc_64.c -084e320b9103bf3ceefaffbc6bb9f4cc linux-3.0/arch/x86/kernel/vmlinux.lds.S -a43a2f3b712988db7b3bbe3b2184f5f3 linux-3.0/arch/x86/kernel/vm86_32.c -b80439edc01ce54565ad6fa2b44001f4 linux-3.0/arch/x86/kernel/verify_cpu.S -9a1ae06fa05c641967af6467ad4272fa linux-3.0/arch/x86/kernel/tsc_sync.c -472601ea2c2992f1d76eedd2957a7f00 linux-3.0/arch/x86/kernel/tsc.c -81378790f7917082654a1d7a179f2327 linux-3.0/arch/x86/kernel/traps.c -62a34284e296a259e26540fd8cb40eb4 linux-3.0/arch/x86/kernel/trampoline_64.S -020af07413b7b032c8d99c14a6430b74 linux-3.0/arch/x86/kernel/trampoline_32.S -5341592265701ab80f436cf4f2db4cef linux-3.0/arch/x86/kernel/trampoline.c -8bea6d26223cf2c4958cff9ab871978c linux-3.0/arch/x86/kernel/topology.c -673cdf60a7ecef92f718735ce4655fb2 linux-3.0/arch/x86/kernel/tls.h -9457ed08817ce0b3a3194475f96b0b16 linux-3.0/arch/x86/kernel/tls.c -d5528212de8db0ae4da20cc11cc7962b linux-3.0/arch/x86/kernel/time.c -58b71f46acc75dafcd6d3021f0cfe43e linux-3.0/arch/x86/kernel/test_rodata.c -10e6b3daf09292b003ec9c474fa7f04f linux-3.0/arch/x86/kernel/test_nx.c -beda5f71f6bccd7afecc501fe7d1ea8d linux-3.0/arch/x86/kernel/tce_64.c -2a34d48d011520741d7b98175e5b8502 linux-3.0/arch/x86/kernel/tboot.c -54c6aca3d355143e9d9033b4a31238fe linux-3.0/arch/x86/kernel/syscall_table_32.S -d0856bcf9cd30ab1fcd8153b96c49756 linux-3.0/arch/x86/kernel/syscall_64.c -f807e81895e2c3edc0108c07f1e48301 linux-3.0/arch/x86/kernel/sys_x86_64.c -f97cce8e69c5e7262ea45c34de6f1daf linux-3.0/arch/x86/kernel/sys_i386_32.c -6bee4fe1283a7c8b14848d4b796f3647 linux-3.0/arch/x86/kernel/step.c -9cfca5996e413718d5500c748d77060b linux-3.0/arch/x86/kernel/stacktrace.c -f35dc022e014273bb805ee6238513cb2 linux-3.0/arch/x86/kernel/smpboot.c -238b81bb867c582a4acadc306f3b6c34 linux-3.0/arch/x86/kernel/smp.c -ec1dad6aa8a346bc61bc8c719d6bed47 linux-3.0/arch/x86/kernel/signal.c -fae96466d3d8d571d77ef53ba2d231c0 linux-3.0/arch/x86/kernel/setup_percpu.c -acb3073d5ccb9f861b885de089013eb0 linux-3.0/arch/x86/kernel/setup.c -929040644ca80113f988a5cc2d19e94e linux-3.0/arch/x86/kernel/rtc.c -38edda3e008a6d4555bac5092ab619c7 linux-3.0/arch/x86/kernel/resource.c -fac1b331cf8f9c70de16651e7ae66786 linux-3.0/arch/x86/kernel/relocate_kernel_64.S -29133b0f9c63d8104ce823fc9ae8205b linux-3.0/arch/x86/kernel/relocate_kernel_32.S -0f1729372c4b9f267536a18e72ca8a8a linux-3.0/arch/x86/kernel/reboot_fixups_32.c -1faced100123512104ba7ee8bc1b89a7 linux-3.0/arch/x86/kernel/reboot_32.S -d98211d3d68a235756e28990c52852f0 linux-3.0/arch/x86/kernel/reboot.c -a6506116880972d98c3fd2d1550db3ef linux-3.0/arch/x86/kernel/quirks.c -27fe5f10af50bd7377ed4b088e7ed8ed linux-3.0/arch/x86/kernel/pvclock.c -0d7293172fb8ba4aba752b70bbc9f0fe linux-3.0/arch/x86/kernel/ptrace.c -e13361ee89f07531a40a21bcbf458283 linux-3.0/arch/x86/kernel/process_64.c -005b66860150a321b9dca84cadfe6572 linux-3.0/arch/x86/kernel/process_32.c -3f33ac495c06489c55214931f9d6d3ac linux-3.0/arch/x86/kernel/process.c -16b5118c234531777e5fa0b2cc572552 linux-3.0/arch/x86/kernel/probe_roms.c -4d7b1ff891a41ed754f5b47252355e78 linux-3.0/arch/x86/kernel/pcspeaker.c -4ced5097da1ed9cff3372a60c532a72d linux-3.0/arch/x86/kernel/pci-swiotlb.c -8be028d868f18dda942f648a96013bf0 linux-3.0/arch/x86/kernel/pci-nommu.c -f70bfe1958604e0902f5a6a0ef63a7c7 linux-3.0/arch/x86/kernel/pci-iommu_table.c -4d3ad05fb688b21bb654412ebe19e05d linux-3.0/arch/x86/kernel/pci-dma.c -9a9b3f1496bcb72f7e291d27e4c17799 linux-3.0/arch/x86/kernel/pci-calgary_64.c -d6932eb98ebad7097ee23751d8c92e0f linux-3.0/arch/x86/kernel/paravirt_patch_64.c -b83e1411d0d5cdcdfad40637274d321d linux-3.0/arch/x86/kernel/paravirt_patch_32.c -cb57cb09c523e8aee8dfd834cdd80683 linux-3.0/arch/x86/kernel/paravirt.c -0d1a02e2340ed7670e7e563900338daf linux-3.0/arch/x86/kernel/paravirt-spinlocks.c -2bc2e6353d2747d68ca77765ac7e939c linux-3.0/arch/x86/kernel/msr.c -47ec44538aca8675cf79d24512c89da6 linux-3.0/arch/x86/kernel/mpparse.c -8ab8019be9f53a3682bcf2b1963b493f linux-3.0/arch/x86/kernel/module.c -178e27560e58ed6671458f508150c4a0 linux-3.0/arch/x86/kernel/mmconf-fam10h_64.c -f6a2326ae8759a9f5cc82880221480bd linux-3.0/arch/x86/kernel/microcode_intel.c -711f6bab5400d360601ace502f1d061a linux-3.0/arch/x86/kernel/microcode_core.c -baf7ed2ff7e3a39e7315b6cb3cc79ede linux-3.0/arch/x86/kernel/microcode_amd.c -639279f35cae8a8f4e9a1384ed71ec87 linux-3.0/arch/x86/kernel/mca_32.c -b7c656b3aa78803e80d0272194d329ee linux-3.0/arch/x86/kernel/machine_kexec_64.c -ee168d9ce3c47f30c41e2108ee91f1c2 linux-3.0/arch/x86/kernel/machine_kexec_32.c -0e06e6bb70b1e67884035cbbe7720b98 linux-3.0/arch/x86/kernel/ldt.c -bfc1d6387b928c41c41cf1a73f5a1e6d linux-3.0/arch/x86/kernel/kvmclock.c -079e93632f29c383c88c3a5e7fe64fee linux-3.0/arch/x86/kernel/kvm.c -fe9a704c3e1551080a362dc2924131ca linux-3.0/arch/x86/kernel/kprobes.c -98e862c51d3476b1401a63f451b21ff9 linux-3.0/arch/x86/kernel/kgdb.c -c0366128d9bec7ad99e14a063c407ad8 linux-3.0/arch/x86/kernel/kdebugfs.c -3581f6771d7ff9005491be586e993c85 linux-3.0/arch/x86/kernel/jump_label.c -3c05d4a82d75faa8fad48dac68709210 linux-3.0/arch/x86/kernel/irqinit.c -86577a644be96c4f95080be1a1cdae03 linux-3.0/arch/x86/kernel/irq_work.c -6736c186add2a27c77aac06c8413909d linux-3.0/arch/x86/kernel/irq_64.c -fbcb16a38c33901e93a9b82f77f520ef linux-3.0/arch/x86/kernel/irq_32.c -4cab031ec3e1a9d72243497143c235ca linux-3.0/arch/x86/kernel/irq.c -76b8a5c2058822517a1942c4b68faf7a linux-3.0/arch/x86/kernel/ioport.c -d4efee23052e63ce0365924beadb04f7 linux-3.0/arch/x86/kernel/io_delay.c -cc06d5f6f6a873fa1601e6ab75ccaaa9 linux-3.0/arch/x86/kernel/init_task.c -972dd4a4d2744085fc19a29faedf2356 linux-3.0/arch/x86/kernel/i8259.c -b6bff02d0e4e1cd1282953b7d886edf2 linux-3.0/arch/x86/kernel/i8253.c -8cda7f2761c4699302a595d6a298b11a linux-3.0/arch/x86/kernel/i8237.c -2b126d8418b727bdef2af4edf12d8a96 linux-3.0/arch/x86/kernel/i387.c -14563e2675acade6e1109a93ab7b62f7 linux-3.0/arch/x86/kernel/i386_ksyms_32.c -309f2a7c20241a5ab50d9bc830d1cccb linux-3.0/arch/x86/kernel/hw_breakpoint.c -0c5b1a0365d3919e348c8bec1e68258f linux-3.0/arch/x86/kernel/hpet.c -8fa5d5478f1f3c7811f2e96ef749c4f7 linux-3.0/arch/x86/kernel/head_64.S -c79e9678a5b3725b10d7a1f13d575da7 linux-3.0/arch/x86/kernel/head_32.S -9234576e8db670d1302bd0104cfef5e7 linux-3.0/arch/x86/kernel/head64.c -2df28746927306cda0609e5794b0d642 linux-3.0/arch/x86/kernel/head32.c -9b8676001480165b6a8b800207b46aae linux-3.0/arch/x86/kernel/head.c -45fb02ecbf2c94e16bf1563fa0da43e5 linux-3.0/arch/x86/kernel/ftrace.c -61635247d5a9536f46a9a24e3b7586ab linux-3.0/arch/x86/kernel/entry_64.S -b21be4fa2b16bb0d4c465f67654a4690 linux-3.0/arch/x86/kernel/entry_32.S -73ac7abc8d98a6051fdfd9c817c98d57 linux-3.0/arch/x86/kernel/early_printk.c -2cdda4b468e8d782724af9be74fac31c linux-3.0/arch/x86/kernel/early-quirks.c -864a9c6ec80f3f1e93af2d96c99a03e9 linux-3.0/arch/x86/kernel/e820.c -c06da54f08895f63bc949c3215be166e linux-3.0/arch/x86/kernel/dumpstack_64.c -ab534d525ad606038e082c2721ae1eee linux-3.0/arch/x86/kernel/dumpstack_32.c -b3e014315a24ea4da8f0987d23cc130a linux-3.0/arch/x86/kernel/dumpstack.c -c5c28f6cd1559a91c790acbe96cb7c8b linux-3.0/arch/x86/kernel/doublefault_32.c -f87f5ad22def28d8ce3aed5d8e0df9ec linux-3.0/arch/x86/kernel/devicetree.c -5fdf58656741391f658902cced16e087 linux-3.0/arch/x86/kernel/crash_dump_64.c -a2a20fda759cedeb48be5e2042149e4b linux-3.0/arch/x86/kernel/crash_dump_32.c -8d9f7fc702d2f1a4c810e2a63ae4ff61 linux-3.0/arch/x86/kernel/crash.c -f2a365d44fefe5ce3c94fad8c253a2d2 linux-3.0/arch/x86/kernel/cpuid.c -66bc03c0e6fa8b1dcad08c723b6f841d linux-3.0/arch/x86/kernel/cpu/vmware.c -4be4d48d6143746dce6a61b3f209c758 linux-3.0/arch/x86/kernel/cpu/umc.c -589f49332f01be7db369f929e6b054c1 linux-3.0/arch/x86/kernel/cpu/transmeta.c -b6eb44b285555ea7d769181bef67369b linux-3.0/arch/x86/kernel/cpu/topology.c -9319f2ebb3dc2d7bc44a001f4b4e665c linux-3.0/arch/x86/kernel/cpu/sched.c -a8696207c3bfb3525dcf5f5450438437 linux-3.0/arch/x86/kernel/cpu/scattered.c -17f94a58eeccbf1241c7619111276c3b linux-3.0/arch/x86/kernel/cpu/proc.c -35db389b72debd9b360408d3b858d1f5 linux-3.0/arch/x86/kernel/cpu/powerflags.c -38886b06d09864d1c005600254054141 linux-3.0/arch/x86/kernel/cpu/perfctr-watchdog.c -e8bd706bb36728c971345cf6daa649e2 linux-3.0/arch/x86/kernel/cpu/perf_event_p6.c -2aef7c42c0b72e8d005aa555608313d1 linux-3.0/arch/x86/kernel/cpu/perf_event_p4.c -5dcaf0ed30fafa05e6fc511fa1b6f806 linux-3.0/arch/x86/kernel/cpu/perf_event_intel_lbr.c -42fd8b76da9d7b072955cb355c864bed linux-3.0/arch/x86/kernel/cpu/perf_event_intel_ds.c -4e077bd038bd7dd39943eedf93d3b106 linux-3.0/arch/x86/kernel/cpu/perf_event_intel.c -93b2bab02ff4284439144936d55ff022 linux-3.0/arch/x86/kernel/cpu/perf_event_amd.c -25422382a0c97e11d9c25c47801e4c55 linux-3.0/arch/x86/kernel/cpu/perf_event.c -c4449b8571ffabe71bf07ed849ee777c linux-3.0/arch/x86/kernel/cpu/mtrr/mtrr.h -b03c74bc9d35a70d28ec6eaa24892215 linux-3.0/arch/x86/kernel/cpu/mtrr/main.c -30c91b4a2077c6452b3a7e35bb7c600c linux-3.0/arch/x86/kernel/cpu/mtrr/if.c -580efdc0c4470ceb5454370ca1bc2285 linux-3.0/arch/x86/kernel/cpu/mtrr/generic.c -03d3e816a1e281ff41c44d2ada588ae2 linux-3.0/arch/x86/kernel/cpu/mtrr/cyrix.c -8ce9f0524ca9f4b30e70f8ebfcea01f4 linux-3.0/arch/x86/kernel/cpu/mtrr/cleanup.c -bf5931bdf62c7b8d1848125670f4bc43 linux-3.0/arch/x86/kernel/cpu/mtrr/centaur.c -35936527a4e53a9e2fc8192f1104a1ea linux-3.0/arch/x86/kernel/cpu/mtrr/amd.c -743afa5f7180b9ecf0e7fabbb2355956 linux-3.0/arch/x86/kernel/cpu/mtrr/Makefile -a792bbb34d9e85df5077622f79394e38 linux-3.0/arch/x86/kernel/cpu/mshyperv.c -dea1ccd4f651e285d3fd8761e4ad9a6a linux-3.0/arch/x86/kernel/cpu/mkcapflags.pl -8cae4130056250c2081f992d6812377d linux-3.0/arch/x86/kernel/cpu/mcheck/winchip.c -29fb1d8039d68a0a3309fad2eaae08e4 linux-3.0/arch/x86/kernel/cpu/mcheck/threshold.c -1bdc6a9a584ad082045295d22f6f9302 linux-3.0/arch/x86/kernel/cpu/mcheck/therm_throt.c -ae37c5f7bb11a1d4b10d3f3e9c436c3c linux-3.0/arch/x86/kernel/cpu/mcheck/p5.c -f0faa6b91b1409b0eb7f61dc1aa7a2c5 linux-3.0/arch/x86/kernel/cpu/mcheck/mce_intel.c -ade85243c86a3bd8b3c5b592f8e60805 linux-3.0/arch/x86/kernel/cpu/mcheck/mce_amd.c -ce5c65cb883d2ab0ee77e727f94ec909 linux-3.0/arch/x86/kernel/cpu/mcheck/mce.c -6c40b1670b7af82ce11e65ce08449c13 linux-3.0/arch/x86/kernel/cpu/mcheck/mce-severity.c -2bcbcc4588b1da60889e94aa9cf54f3d linux-3.0/arch/x86/kernel/cpu/mcheck/mce-internal.h -a849a1afc18a2c2b9071599c5271fa2a linux-3.0/arch/x86/kernel/cpu/mcheck/mce-inject.c -e68b01b9843399775931ba76f3ae0b77 linux-3.0/arch/x86/kernel/cpu/mcheck/mce-apei.c -cff140ee7c3c80a1b4cc11cea8db21ac linux-3.0/arch/x86/kernel/cpu/mcheck/Makefile -7bb468c23a669cb9f0d6911b9fa8a2b1 linux-3.0/arch/x86/kernel/cpu/intel_cacheinfo.c -a1c55fab120f68867b44c5410ccf4e81 linux-3.0/arch/x86/kernel/cpu/intel.c -79e79d12d5550781cd50f81f3802f1d8 linux-3.0/arch/x86/kernel/cpu/hypervisor.c -3cbeec897decbe08f0e45108b576cb57 linux-3.0/arch/x86/kernel/cpu/cyrix.c -d3b6295653bc39cb97dd16dfa226e67c linux-3.0/arch/x86/kernel/cpu/cpu.h -461af9df71b66236297dda4d77075b82 linux-3.0/arch/x86/kernel/cpu/common.c -a880907b031724525dcd4d2d30f83f31 linux-3.0/arch/x86/kernel/cpu/centaur.c -e22519a7e9827b5737ce7912f581d7b5 linux-3.0/arch/x86/kernel/cpu/bugs_64.c -79952b4597ab5e5620c029cfc5247c14 linux-3.0/arch/x86/kernel/cpu/bugs.c -8cb0e0accf6df2b72d3e75322f17e591 linux-3.0/arch/x86/kernel/cpu/amd.c -ddebd07c6d0aa9477f58a7d0532c3e71 linux-3.0/arch/x86/kernel/cpu/Makefile -cf4186eea37085c6f7c4b0de8fe30e76 linux-3.0/arch/x86/kernel/cpu/.gitignore -79a0b93ac284d9b82f31e59d874d7bb0 linux-3.0/arch/x86/kernel/check.c -afb573cf63c3ab79823af8b0651e76b4 linux-3.0/arch/x86/kernel/bootflag.c -f86f1e40fc7b8b0b86115210863b0c20 linux-3.0/arch/x86/kernel/audit_64.c -d4b01d7176444af528d917714f79add8 linux-3.0/arch/x86/kernel/asm-offsets_64.c -7684e1c84b7a3b8fc596bd361144078f linux-3.0/arch/x86/kernel/asm-offsets_32.c -f5e3ba56f03c21baeeb5228f63d0fa74 linux-3.0/arch/x86/kernel/asm-offsets.c -b84523be43ace2df74d6a4f098f59c99 linux-3.0/arch/x86/kernel/apm_32.c -1e74338d47a6eb22debdab715ab1496f linux-3.0/arch/x86/kernel/apic/x2apic_uv_x.c -b6e1aa5703c5a551dfe7cfb65f9c3cd6 linux-3.0/arch/x86/kernel/apic/x2apic_phys.c -33197afd3f08af54283f5e4dbb79cc7f linux-3.0/arch/x86/kernel/apic/x2apic_cluster.c -9098ff0e9340ebdbe29bf9715a5036b8 linux-3.0/arch/x86/kernel/apic/summit_32.c -3a730b12f6316aea8c0d8a8af237b924 linux-3.0/arch/x86/kernel/apic/probe_64.c -3f9c9cd2b49b9c233dc2662141a8932a linux-3.0/arch/x86/kernel/apic/probe_32.c -71b7604d206b018fff8a7da353d23bc6 linux-3.0/arch/x86/kernel/apic/numaq_32.c -0fba5ac4bc4eb2edecb55a870d78da49 linux-3.0/arch/x86/kernel/apic/ipi.c -aa675aafe72d9bb0883080f91b0ea2c9 linux-3.0/arch/x86/kernel/apic/io_apic.c -733a9b24375eb4847166737e933d1cd6 linux-3.0/arch/x86/kernel/apic/hw_nmi.c -e43481fbeab6cc35dfb0538667bc9cb5 linux-3.0/arch/x86/kernel/apic/es7000_32.c -2c79f925d94cfe446723ca85795c725f linux-3.0/arch/x86/kernel/apic/bigsmp_32.c -1d7a59002aceb82e4fe1fc6406e4ff03 linux-3.0/arch/x86/kernel/apic/apic_noop.c -3d74cdf6562056a05b77c558004a1f2a linux-3.0/arch/x86/kernel/apic/apic_flat_64.c -fb88188c96d6cde636a82e2fe4613166 linux-3.0/arch/x86/kernel/apic/apic.c -2e0c9ae9a46d2862327291451befac38 linux-3.0/arch/x86/kernel/apic/Makefile -b7dd85a0dc2852388ba3e75432247dec linux-3.0/arch/x86/kernel/aperture_64.c -9bc88f730996aafdad95254f5c7c0909 linux-3.0/arch/x86/kernel/apb_timer.c -d1ac837c2dfa67b3df547e776aa6dcf0 linux-3.0/arch/x86/kernel/amd_nb.c -e258be94e382fc0e10e45d466a85cd9c linux-3.0/arch/x86/kernel/amd_iommu_init.c -e9321a832d03f229df0a65fba0fe1921 linux-3.0/arch/x86/kernel/amd_iommu.c -4608897b35ea973b943c580f0ba3eb4b linux-3.0/arch/x86/kernel/amd_gart_64.c -e895d0b9b6e66f52851ccac60a0edf95 linux-3.0/arch/x86/kernel/alternative.c -b837b42082068540b96e3275d935e151 linux-3.0/arch/x86/kernel/acpi/wakeup_rm.S -a99eab5802a24e9128beac134b1cfb3e linux-3.0/arch/x86/kernel/acpi/wakeup_64.S -937e7738b7ebd8d3447d1dd7b02f3348 linux-3.0/arch/x86/kernel/acpi/wakeup_32.S -acf3b9f8846ede956cc61045c2e47414 linux-3.0/arch/x86/kernel/acpi/sleep.h -b7774aa25e3a147d1e96183270ff0f4a linux-3.0/arch/x86/kernel/acpi/sleep.c -4e64b8b06af086e265b6d331b44582a6 linux-3.0/arch/x86/kernel/acpi/realmode/wakeup.lds.S -ce2dbe5fd96dcc02fe14dc94a0fe8987 linux-3.0/arch/x86/kernel/acpi/realmode/wakeup.h -486462d5244358a10148833a3b94f1d9 linux-3.0/arch/x86/kernel/acpi/realmode/wakeup.S -227c0288aa9f21061b0fc90f3c422e0f linux-3.0/arch/x86/kernel/acpi/realmode/wakemain.c -d3512c691bced1cd519eae69a16d87c6 linux-3.0/arch/x86/kernel/acpi/realmode/video-vga.c -ad685d5263323dada6e73f7235dc7e09 linux-3.0/arch/x86/kernel/acpi/realmode/video-vesa.c -eae3bc47c75ca6c2896a54ba01840bdb linux-3.0/arch/x86/kernel/acpi/realmode/video-mode.c -e825ee7d20c9ae8ada546ada1fbdb4d9 linux-3.0/arch/x86/kernel/acpi/realmode/video-bios.c -b897d06a401ceab75c57c2cd7c137ced linux-3.0/arch/x86/kernel/acpi/realmode/regs.c -d4351c4d1acff59501a7e433ce2d5efa linux-3.0/arch/x86/kernel/acpi/realmode/copy.S -6a0c87472b987ca670162bf8918802a8 linux-3.0/arch/x86/kernel/acpi/realmode/bioscall.S -8463a1343a03a0df3a7002437868d2ae linux-3.0/arch/x86/kernel/acpi/realmode/Makefile -1ca3b00ef9b10a747b8d5bc37226857d linux-3.0/arch/x86/kernel/acpi/realmode/.gitignore -37ddcb2ca00239a532adb2a6ba0b101c linux-3.0/arch/x86/kernel/acpi/cstate.c -03e17e2643cc5fe6277b04435e81616e linux-3.0/arch/x86/kernel/acpi/boot.c -a16d79cc63baaba0cb57e1f08e332ce3 linux-3.0/arch/x86/kernel/acpi/Makefile -1cd8e773546879ea33cd087e33feaff0 linux-3.0/arch/x86/kernel/Makefile -166346a58b79990d37b45afb7a1f4f98 linux-3.0/arch/x86/kernel/.gitignore -789fdffa0c3f8e4728a09e24323e32d5 linux-3.0/arch/x86/include/asm/xsave.h -7b3ad2ef19959a4fb59282e59fca95ee linux-3.0/arch/x86/include/asm/xor_64.h -a805232e634a56dde744b0ad744cf944 linux-3.0/arch/x86/include/asm/xor_32.h -bcb578090586d8872c38c677df881b9f linux-3.0/arch/x86/include/asm/xor.h -6d5b3a2b56d9ea4af3f90789dd78d0e5 linux-3.0/arch/x86/include/asm/xen/swiotlb-xen.h -f94676d1c890dc8807144fca29d6bfb5 linux-3.0/arch/x86/include/asm/xen/pci.h -8eae3fb1f4c589c4056b2adacb125ba4 linux-3.0/arch/x86/include/asm/xen/page.h -607c832d667b0a35bc09134409900b3f linux-3.0/arch/x86/include/asm/xen/interface_64.h -f217ece5b64904caa5bcd397386c5948 linux-3.0/arch/x86/include/asm/xen/interface_32.h -087ac9e4a30cf9f8e863617b7a075f7b linux-3.0/arch/x86/include/asm/xen/interface.h -2bb9de5a37f8381cf8f562525cba2826 linux-3.0/arch/x86/include/asm/xen/hypervisor.h -63477d3e9de039f7396c08eaa7b0f175 linux-3.0/arch/x86/include/asm/xen/hypercall.h -f624e65f919a124abc7d9bdb13271847 linux-3.0/arch/x86/include/asm/xen/grant_table.h -86348eb901c01c830e3bc19a37b59cbe linux-3.0/arch/x86/include/asm/xen/events.h -bbc449caa67e509b19b44733fe68e08a linux-3.0/arch/x86/include/asm/xcr.h -744eb05799bc121b81df646c665ec6e7 linux-3.0/arch/x86/include/asm/x86_init.h -8c3c85b7bd1fc9aa288d1e5c767cabb8 linux-3.0/arch/x86/include/asm/x2apic.h -131e90aafc94eb710cc7b38f56d5624c linux-3.0/arch/x86/include/asm/vvar.h -92b937bc3fe6a97b899ce53d501bbbef linux-3.0/arch/x86/include/asm/vsyscall.h -9132085aa655c3b730bb4f0d04f9c6fc linux-3.0/arch/x86/include/asm/vmx.h -6e78582df0c02469f6a7f76b683237a3 linux-3.0/arch/x86/include/asm/vm86.h -b2e26fdffe1d390ba073801a68ae8444 linux-3.0/arch/x86/include/asm/visws/sgivw.h -b2910fd105ff73072ac40e0fe694ce90 linux-3.0/arch/x86/include/asm/visws/piix4.h -10ee4d07fdf7980158978f599429d3ac linux-3.0/arch/x86/include/asm/visws/lithium.h -80886ae78a9968b61577485bc3e18447 linux-3.0/arch/x86/include/asm/visws/cobalt.h -62a3cd1f9b2421f9b3f3721a987fa8e5 linux-3.0/arch/x86/include/asm/virtext.h -bf50b5af7a38967fe7d61ff3b22f3a41 linux-3.0/arch/x86/include/asm/vgtod.h -29c968f8bbf1786708fca9d49135586e linux-3.0/arch/x86/include/asm/vga.h -ee8b2255b90b662569957a5b36352413 linux-3.0/arch/x86/include/asm/vdso.h -b33fd1792744b3a2f45895e64e6034b8 linux-3.0/arch/x86/include/asm/uv/uv_mmrs.h -d4e9becfa18c866501fcdeec3f3a0673 linux-3.0/arch/x86/include/asm/uv/uv_irq.h -140d01e54532c729cfdbd81d286b0b67 linux-3.0/arch/x86/include/asm/uv/uv_hub.h -329bf60db201ab53b9d8fbce8a3aa524 linux-3.0/arch/x86/include/asm/uv/uv_bau.h -0f241cf49250864f1ae75299d651eb39 linux-3.0/arch/x86/include/asm/uv/uv.h -f0f292349dd55d739decc9fad2f9b1d3 linux-3.0/arch/x86/include/asm/uv/bios.h -af3ce7bd6d91cb0d132a20dc1fa9ddb6 linux-3.0/arch/x86/include/asm/user_64.h -4e8ecfeb6ec54cce1eae06f2dc4e2ead linux-3.0/arch/x86/include/asm/user_32.h -e1f96680e0e5037057fc21e605fc9af9 linux-3.0/arch/x86/include/asm/user32.h -e38f9cb18e677fd3fa76d1806e6a888e linux-3.0/arch/x86/include/asm/user.h -37f1d231c5677584e243e8dc1f9b3c5e linux-3.0/arch/x86/include/asm/unistd_64.h -7c02bd389ad6cfdf7efe8328c693b721 linux-3.0/arch/x86/include/asm/unistd_32.h -3835e7cbdfc9d3d5403be3a72d8593d6 linux-3.0/arch/x86/include/asm/unistd.h -508e5789120bf0451e848b798d56c04f linux-3.0/arch/x86/include/asm/unaligned.h -5dd8521370e98a1b99c20fa128497805 linux-3.0/arch/x86/include/asm/ucontext.h -aba020cd1912907ebcfd8b4785631e1b linux-3.0/arch/x86/include/asm/uaccess_64.h -375e62565b6f9060b630c5298bb53100 linux-3.0/arch/x86/include/asm/uaccess_32.h -83355ea2be2b46960a86b61b1bc06398 linux-3.0/arch/x86/include/asm/uaccess.h -050084add41202c8d6e53115e0ff1e26 linux-3.0/arch/x86/include/asm/types.h -b4e233a54e932ba7c75a4ceadf605479 linux-3.0/arch/x86/include/asm/tsc.h -3ec585efab13fb4316d4d464c8e21e17 linux-3.0/arch/x86/include/asm/traps.h -847ce55431689d95642dc675bdc65559 linux-3.0/arch/x86/include/asm/trampoline.h -645bdd084c5712bc49e4e6af354822b5 linux-3.0/arch/x86/include/asm/topology.h -d12aefb2d1b3b1490d48eeb36b188662 linux-3.0/arch/x86/include/asm/tlbflush.h -0b7a3cefbe29cd83c656a81fb5673e64 linux-3.0/arch/x86/include/asm/tlb.h -e7663d4d07ed9f8d920d798b58e59ead linux-3.0/arch/x86/include/asm/timex.h -fa05e21273ac14a2c9b12d30cfcbb929 linux-3.0/arch/x86/include/asm/timer.h -09e1a4c0a5a4f7555a940ba48235ac47 linux-3.0/arch/x86/include/asm/time.h -72b4baf7c34ce1f40d59a53ed650cd56 linux-3.0/arch/x86/include/asm/thread_info.h -55f8ec5e3a7ee0e398b33d52b4d28e89 linux-3.0/arch/x86/include/asm/termios.h -9d9ec0d765b9eba91700fcb860f4b9ee linux-3.0/arch/x86/include/asm/termbits.h -cdf4b01ceaa462307b9ea91a7f348f62 linux-3.0/arch/x86/include/asm/tce.h -421c63af8ac15d1daa6cbef1d368594b linux-3.0/arch/x86/include/asm/system.h -88c734e91351889e67d3f70539670808 linux-3.0/arch/x86/include/asm/syscalls.h -744f57efa6977edbcc85e42da1e99478 linux-3.0/arch/x86/include/asm/syscall.h -edda0e0d6bc768c9b39967a4a1655176 linux-3.0/arch/x86/include/asm/sys_ia32.h -2ea5a8b1b3227ae51f7395ce364eb7ef linux-3.0/arch/x86/include/asm/sync_bitops.h -a5403f1b73d8cbf61c21cd75afe56db6 linux-3.0/arch/x86/include/asm/swiotlb.h -5b828a5254d87b72921942840bb5919d linux-3.0/arch/x86/include/asm/swab.h -6442d406b3f2f2308365645d9d1be367 linux-3.0/arch/x86/include/asm/svm.h -535c6413c5ca6a53a5e82a8bc509e8b5 linux-3.0/arch/x86/include/asm/suspend_64.h -ee68724e28d0d5bc8c706893b324fb80 linux-3.0/arch/x86/include/asm/suspend_32.h -aa9621c163bfca7fe4ce00f9de4e1bd1 linux-3.0/arch/x86/include/asm/suspend.h -2d022e77d2ae9fb71dbddfe00b6284c5 linux-3.0/arch/x86/include/asm/string_64.h -662b134b5adb0919ea23e95752a18290 linux-3.0/arch/x86/include/asm/string_32.h -c71e204a6402503158526fd585fab256 linux-3.0/arch/x86/include/asm/string.h -d1e4fbea49c14a180df4019e0e928ec8 linux-3.0/arch/x86/include/asm/statfs.h -0b959989a62d496faa75e3ac648f80a2 linux-3.0/arch/x86/include/asm/stat.h -57e12d9b1c6ea3ebaee2d80ddbbfbf2b linux-3.0/arch/x86/include/asm/stacktrace.h -45f1c6ffb893bb3a1d5caf5f44048891 linux-3.0/arch/x86/include/asm/stackprotector.h -b29b766a8c84bb8d76d0501db1993064 linux-3.0/arch/x86/include/asm/spinlock_types.h -549e0e43e65c886c6a1c991180dcd4f9 linux-3.0/arch/x86/include/asm/spinlock.h -8c75282f5410a18a2b99236fac429dc2 linux-3.0/arch/x86/include/asm/sparsemem.h -965625ab160bad6b06ffae41abf01378 linux-3.0/arch/x86/include/asm/sockios.h -892b575276515e01057bf49a9806fafc linux-3.0/arch/x86/include/asm/socket.h -163b43d8195a270bed6d92fbee713181 linux-3.0/arch/x86/include/asm/smpboot_hooks.h -dcda05866c159157d3b152cd6b197d06 linux-3.0/arch/x86/include/asm/smp.h -846b43ed6cc4a8f62e7c23da435c9f31 linux-3.0/arch/x86/include/asm/signal.h -2ac49c9f3ce8a4bfed00eaf7a4c7c1ce linux-3.0/arch/x86/include/asm/siginfo.h -70820be48bbf77ada399411e0a46f9f7 linux-3.0/arch/x86/include/asm/sigframe.h -2b410e57d2c55e0f29a7ec49d966f593 linux-3.0/arch/x86/include/asm/sigcontext32.h -4972770a3aeeb2f5f071a5c1cbfc22b7 linux-3.0/arch/x86/include/asm/sigcontext.h -4cfa8df270149eb23a9416c276c57c0f linux-3.0/arch/x86/include/asm/shmparam.h -c1f66b7faa2dfa17efdbdf1e416be250 linux-3.0/arch/x86/include/asm/shmbuf.h -4cb0ea6931e8853bc316025985192788 linux-3.0/arch/x86/include/asm/setup_arch.h -1310de616dded8419e955059bde339e8 linux-3.0/arch/x86/include/asm/setup.h -0363bc9e00d5ba0e763658d38f91b2b0 linux-3.0/arch/x86/include/asm/serial.h -23d122491e55605211f1899b40b925ac linux-3.0/arch/x86/include/asm/sembuf.h -18af479b9e046a4a134fe3152febcb29 linux-3.0/arch/x86/include/asm/segment.h -b2ac12c147143b84da5f16aa3d847e53 linux-3.0/arch/x86/include/asm/sections.h -bf8134c9f65a9f2404ce7b15b2332bfd linux-3.0/arch/x86/include/asm/seccomp_64.h -26494dc088957f0bdd33ed7d92f52c89 linux-3.0/arch/x86/include/asm/seccomp_32.h -ca57c1e67de09c01a6bf82eadfcf1826 linux-3.0/arch/x86/include/asm/seccomp.h -d64422b35f38e9de5953dccb9c2f3528 linux-3.0/arch/x86/include/asm/scatterlist.h -59a6c8fda6d1eb29b0b015d0bf3ca4c9 linux-3.0/arch/x86/include/asm/rwsem.h -fd11eefeeb2bdc76558c2c1f11c019b0 linux-3.0/arch/x86/include/asm/rwlock.h -291094026d4bf4b0341b414a2c71d961 linux-3.0/arch/x86/include/asm/rtc.h -1da41849a9761e05d2fa943c8393a438 linux-3.0/arch/x86/include/asm/rio.h -6ca66735691549e275035382b303a27f linux-3.0/arch/x86/include/asm/resume-trace.h -36eb2a82010cc2b8194bde001a28c7a5 linux-3.0/arch/x86/include/asm/resource.h -907e4e34a6e7ec571aaf34d3e647ee87 linux-3.0/arch/x86/include/asm/required-features.h -f5792c4483b622dec60893d0076de33c linux-3.0/arch/x86/include/asm/reboot_fixups.h -e6df4b51b282329363c4f8e4673e35cc linux-3.0/arch/x86/include/asm/reboot.h -f8518aa181f95defb25d2857826cf111 linux-3.0/arch/x86/include/asm/pvclock.h -fdce3e57c859e567b39824cf53f303dd linux-3.0/arch/x86/include/asm/pvclock-abi.h -19f60be51fedde96927ed5140d26af0d linux-3.0/arch/x86/include/asm/ptrace.h -f31e99926396d33936892f6904afd977 linux-3.0/arch/x86/include/asm/ptrace-abi.h -63e0d42d832f5076b1ec3a5f261c3195 linux-3.0/arch/x86/include/asm/proto.h -56cc262fa9c3598faf172cb31d858ce4 linux-3.0/arch/x86/include/asm/prom.h -2e054f37bbcbec49dc1ffe62d284c27a linux-3.0/arch/x86/include/asm/processor.h -bb59a064b9c2100d932766aefceda142 linux-3.0/arch/x86/include/asm/processor-flags.h -e1fb82d7cd7a4435772ff9232d9eb650 linux-3.0/arch/x86/include/asm/processor-cyrix.h -3327090b6d7b2dc558102ceeabf87362 linux-3.0/arch/x86/include/asm/probe_roms.h -6bea6ee018ceeb34b172781df32b1df4 linux-3.0/arch/x86/include/asm/prctl.h -5a2c442117d9f9c89979618672533168 linux-3.0/arch/x86/include/asm/posix_types_64.h -f685c07c5fbbc295eb44c267529a7beb linux-3.0/arch/x86/include/asm/posix_types_32.h -5caebd7b2d5c6cf762c9241695e63496 linux-3.0/arch/x86/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/x86/include/asm/poll.h -43b86622342656324d961fc76abf468e linux-3.0/arch/x86/include/asm/pgtable_types.h -56c8d5ed697eb58ed52c9be4c6032894 linux-3.0/arch/x86/include/asm/pgtable_64_types.h -c7c71c99ce0a51fce00beefdf2337b9c linux-3.0/arch/x86/include/asm/pgtable_64.h -f5d0ad818f1c04192f98dafa51f8aa97 linux-3.0/arch/x86/include/asm/pgtable_32_types.h -eba4fa59e686a216880a1ea62fc64b3e linux-3.0/arch/x86/include/asm/pgtable_32.h -3f59c38ef8a872766d5204e65e7ec08c linux-3.0/arch/x86/include/asm/pgtable.h -e95f7cfa4e137567f1d5066e8f0eaa6d linux-3.0/arch/x86/include/asm/pgtable-3level_types.h -989aa91fada4dc32a4aa06e8d2fa205b linux-3.0/arch/x86/include/asm/pgtable-3level.h -caac219ff969f4a43664bdd6c2db92f9 linux-3.0/arch/x86/include/asm/pgtable-2level_types.h -9c1163df80e2f2270f3f68f488d44030 linux-3.0/arch/x86/include/asm/pgtable-2level.h -aa858032a625dad1fa90bd842a25e4e7 linux-3.0/arch/x86/include/asm/pgalloc.h -0d21c594611a31472155d719089b092f linux-3.0/arch/x86/include/asm/perf_event_p4.h -852a0225b5e0900e3d628be0fd8aae29 linux-3.0/arch/x86/include/asm/perf_event.h -4cb54180be49b8452898379d5e73f43c linux-3.0/arch/x86/include/asm/percpu.h -5cb8f8d7c333e5ddbbe38de72234704c linux-3.0/arch/x86/include/asm/pci_x86.h -38cf1d9335ab2527d0ef653f803bcd13 linux-3.0/arch/x86/include/asm/pci_64.h -8f537e9b1b3253d2da235fa967cb093c linux-3.0/arch/x86/include/asm/pci.h -dc2975fe9855f19acdf4b86da8a3db51 linux-3.0/arch/x86/include/asm/pci-functions.h -d6f796245565af54792d7c9230c9700f linux-3.0/arch/x86/include/asm/pci-direct.h -5a0252d50e9a0d579136d5cc3a3a987e linux-3.0/arch/x86/include/asm/pat.h -566368f957d20cd6e26a058cee07156d linux-3.0/arch/x86/include/asm/parport.h -272d86a5ce3e80cd954f49573b437c27 linux-3.0/arch/x86/include/asm/paravirt_types.h -37d61b7f09a10065f5e7fc9e9be52be2 linux-3.0/arch/x86/include/asm/paravirt.h -29dbb685f25e0e09aa59624964e2b815 linux-3.0/arch/x86/include/asm/param.h -ac5fde6024a127046209693ce23dc852 linux-3.0/arch/x86/include/asm/page_types.h -c56f398388383dbe7066b0db59b1a8f0 linux-3.0/arch/x86/include/asm/page_64_types.h -611e4a936b9a40b4626bae19c730e96b linux-3.0/arch/x86/include/asm/page_64.h -f7274f148d74faa78086e022388aab3d linux-3.0/arch/x86/include/asm/page_32_types.h -3d33cfb242d3c48c7eae1c525728332e linux-3.0/arch/x86/include/asm/page_32.h -39db8266804fb630426fc3d4a6567b5c linux-3.0/arch/x86/include/asm/page.h -e7302898c4448bdec999243d33d6dd7e linux-3.0/arch/x86/include/asm/olpc_ofw.h -05365fd3776452a86b2fd71c68d2872f linux-3.0/arch/x86/include/asm/olpc.h -28bcb026d21b12d020b7bbb6724d4c5e linux-3.0/arch/x86/include/asm/numaq.h -31873da7a6736f7ceb567e9a0f9ca7cc linux-3.0/arch/x86/include/asm/numa_64.h -fe36da33994605e44d74bdbfd3f82f47 linux-3.0/arch/x86/include/asm/numa_32.h -b3aec731229e230918bdd4cb863a1aec linux-3.0/arch/x86/include/asm/numa.h -4d8a2a19c9931151656d285e605befc2 linux-3.0/arch/x86/include/asm/nops.h -a6e3d61409dedf4791ffe6c9cba4dab8 linux-3.0/arch/x86/include/asm/nmi.h -eab8cc777a75e320b7f1f50cbcaa78ef linux-3.0/arch/x86/include/asm/mwait.h -1c3d2693cdba70e39d878672254d3e9e linux-3.0/arch/x86/include/asm/mutex_64.h -aeab814a1305794542899ff9ef62eebb linux-3.0/arch/x86/include/asm/mutex_32.h -07741987a083b8132f20cb250c9627da linux-3.0/arch/x86/include/asm/mutex.h -31073d5eace5623f1dee473b6d9ebf5e linux-3.0/arch/x86/include/asm/mtrr.h -43cecccca4a03c8a232da84641c51e45 linux-3.0/arch/x86/include/asm/msr.h -f465afe29db556f8ac8bfd60645858d3 linux-3.0/arch/x86/include/asm/msr-index.h -9c461d573d0ba27ceda74fdd9a186b4d linux-3.0/arch/x86/include/asm/msidef.h -476993d4d9921dca83fb41955d076148 linux-3.0/arch/x86/include/asm/mshyperv.h -a8606cb7f0b36b7ffed407a409829c9d linux-3.0/arch/x86/include/asm/msgbuf.h -bdedf1a5898a5e7acf42dbe03d8131f7 linux-3.0/arch/x86/include/asm/mrst.h -4d79183874d1a868d70ae60c9ca67ca8 linux-3.0/arch/x86/include/asm/mrst-vrtc.h -600a3ed5c3c13338ecc3e9ee5b08c204 linux-3.0/arch/x86/include/asm/mpspec_def.h -987891c59b2146e40b8ba36f2afd242f linux-3.0/arch/x86/include/asm/mpspec.h -d207c44c2215ffb65ca9c416b92e0712 linux-3.0/arch/x86/include/asm/module.h -d29cabd1bd7336bc0579630d9b9d8aae linux-3.0/arch/x86/include/asm/mmzone_64.h -4abca397aff821d4aef7b5cb8e1430c8 linux-3.0/arch/x86/include/asm/mmzone_32.h -84febfdcddfafc0980356c323fb0b0ea linux-3.0/arch/x86/include/asm/mmzone.h -966feab933de408a48afbaa8dd671f60 linux-3.0/arch/x86/include/asm/mmx.h -8a703bfabdd2e0615da679a5219b1986 linux-3.0/arch/x86/include/asm/mmu_context.h -56eb173877249d0762ace0204df20a4e linux-3.0/arch/x86/include/asm/mmu.h -988c7df771aab2ba9fe021c4415cc5f3 linux-3.0/arch/x86/include/asm/mmconfig.h -a470ce5fac264fbe99401f4c4c44c92f linux-3.0/arch/x86/include/asm/mman.h -a56d2eead9f624c56f13b07f530eddd7 linux-3.0/arch/x86/include/asm/microcode.h -ca6bab04757419c58a7d089fe48d991a linux-3.0/arch/x86/include/asm/memblock.h -e55dfc74b0126b82a5d2e6beaccc01c2 linux-3.0/arch/x86/include/asm/mce.h -d8187ddfce30d543559920bc7086c165 linux-3.0/arch/x86/include/asm/mca_dma.h -275b94b82e14067f4e6aac32eeb3cf97 linux-3.0/arch/x86/include/asm/mca.h -fdff619b36e6f63ebf771da817834f23 linux-3.0/arch/x86/include/asm/mc146818rtc.h -0161236ee21da8c34aa36065f96dbc2d linux-3.0/arch/x86/include/asm/math_emu.h -721e5179449a5f4c147de81177d2778d linux-3.0/arch/x86/include/asm/mach_traps.h -c723bdd86dcebb1f66990b8ef601b1a0 linux-3.0/arch/x86/include/asm/mach_timer.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/x86/include/asm/local64.h -e5c6f01c8d4fae4689173907d6f53a2c linux-3.0/arch/x86/include/asm/local.h -f0da833dd0ed451d0650be79cdd2b632 linux-3.0/arch/x86/include/asm/linkage.h -fac8ed3a84692e66693ddc4b66cc65f9 linux-3.0/arch/x86/include/asm/lguest_hcall.h -2cd1a3a3332c063a8139f1d4af8ad4b8 linux-3.0/arch/x86/include/asm/lguest.h -c6bcdc4c3fc04a6658aa32827b2a1340 linux-3.0/arch/x86/include/asm/ldt.h -3138e97a692c00b7580ab8620075610f linux-3.0/arch/x86/include/asm/kvm_para.h -7d99c4c037aa9ab07d6aee0800f24866 linux-3.0/arch/x86/include/asm/kvm_host.h -ddcd0811069f27a2a670f4f9b0d08e4d linux-3.0/arch/x86/include/asm/kvm_emulate.h -3065c8d94818475ff754f8864edb2c21 linux-3.0/arch/x86/include/asm/kvm.h -0434c33ccf394d91f0503ead505179fa linux-3.0/arch/x86/include/asm/kprobes.h -5e914671340ce92d9ae4cf4a0dda4cd6 linux-3.0/arch/x86/include/asm/kmemcheck.h -e6e55a5797dd67640dd032e24d49583c linux-3.0/arch/x86/include/asm/kmap_types.h -da62736b302784a26e915ee8eff8e517 linux-3.0/arch/x86/include/asm/kgdb.h -dcd93981a7fd4190d45496e5803105c3 linux-3.0/arch/x86/include/asm/kexec.h -ebf604b590078497d35e5fb06cd4202f linux-3.0/arch/x86/include/asm/kdebug.h -3c3d9ee905eb1f3487cacc0b3e065a0c linux-3.0/arch/x86/include/asm/jump_label.h -84eba843046de07bc267f1704792b6eb linux-3.0/arch/x86/include/asm/ist.h -b1cd495d821a8d8ee84b39122514e5b6 linux-3.0/arch/x86/include/asm/irqflags.h -51a6dc3e2c7fa7604c63ccc948e8d560 linux-3.0/arch/x86/include/asm/irq_vectors.h -bde8475e4bad7e55e6211afce5b272f1 linux-3.0/arch/x86/include/asm/irq_remapping.h -c2356ee52ec5a16f685e2f782f6abb0b linux-3.0/arch/x86/include/asm/irq_regs.h -47558f5fee49fb26baf284c938b731e4 linux-3.0/arch/x86/include/asm/irq_controller.h -3f4d039e82045cafe5869f22630163a9 linux-3.0/arch/x86/include/asm/irq.h -d2719ef99ed6628340b74c09767c8fb7 linux-3.0/arch/x86/include/asm/ipi.h -a5cedbd444be7216303596ec4d505047 linux-3.0/arch/x86/include/asm/ipcbuf.h -d1ab447edba9e52118793ed31e8bdfb5 linux-3.0/arch/x86/include/asm/iommu_table.h -f90ec70241529f307a31869e7e6cfbe8 linux-3.0/arch/x86/include/asm/iommu.h -397d9c9de51fb74778baf5fa91dd7674 linux-3.0/arch/x86/include/asm/iomap.h -8fd83dc41ce32aadea0c9aa10b611a15 linux-3.0/arch/x86/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/x86/include/asm/ioctl.h -4e63acbcfd2d808b74eb163062a05811 linux-3.0/arch/x86/include/asm/io_apic.h -74ade992ab20390c1851a5946d977621 linux-3.0/arch/x86/include/asm/io.h -25cdcc3045bec3622419d7852d879c0b linux-3.0/arch/x86/include/asm/intel_scu_ipc.h -7bb8fc802096c3d3f5e6af8fda53636c linux-3.0/arch/x86/include/asm/inst.h -1f73a1ebed081b94dafe29ec6ac5f186 linux-3.0/arch/x86/include/asm/insn.h -e9a67bd76de1c1a3a2a2dc61ebe79340 linux-3.0/arch/x86/include/asm/init.h -58e12335e23136b3eaed2d0a6018bdaa linux-3.0/arch/x86/include/asm/inat_types.h -60296533bdcd816d8270f56a422da70e linux-3.0/arch/x86/include/asm/inat.h -fbbc851be9bfa09ebcabd94403ad84da linux-3.0/arch/x86/include/asm/idle.h -ce099491f29deb04e4157c9b763bb344 linux-3.0/arch/x86/include/asm/ia32_unistd.h -9667e7ab5034f5c39362f23a0b91358f linux-3.0/arch/x86/include/asm/ia32.h -262caba122d684f316925560fc7419cc linux-3.0/arch/x86/include/asm/i8259.h -bb7b34cee7caac5da53d96115884d6da linux-3.0/arch/x86/include/asm/i8253.h -fc31cdf8f61f49ceb66c64441e04d9c2 linux-3.0/arch/x86/include/asm/i387.h -917fc8a99ae675a8366bfe264ff9f592 linux-3.0/arch/x86/include/asm/hypervisor.h -fcbf0ac93160355df88a7c6f073f5a43 linux-3.0/arch/x86/include/asm/hyperv.h -7e3483ddae6211f29c2c348d7a50c18d linux-3.0/arch/x86/include/asm/hypertransport.h -ccb54edc638ef80696645163d3a43e3a linux-3.0/arch/x86/include/asm/hw_irq.h -7de2d813c8d384c7af5f1efb88b125ff linux-3.0/arch/x86/include/asm/hw_breakpoint.h -2fc18dbfb1de4b8edccf15d7554ae7ee linux-3.0/arch/x86/include/asm/hugetlb.h -b8f1130282e4a10ac399331aaa76e46e linux-3.0/arch/x86/include/asm/hpet.h -2d2907beb1891fd84793455a792db541 linux-3.0/arch/x86/include/asm/highmem.h -bb36919d3616a900b0b4ac375ea971f1 linux-3.0/arch/x86/include/asm/hardirq.h -b0a0f621f9f523f43bdb8899522655a9 linux-3.0/arch/x86/include/asm/gpio.h -2e098e6c32fd32002c9557079fa403b3 linux-3.0/arch/x86/include/asm/geode.h -f56cb561f4058d996736c0dae5b00697 linux-3.0/arch/x86/include/asm/genapic.h -a83a07e2c91a0aefb6e4f1479c3b74db linux-3.0/arch/x86/include/asm/gart.h -2ff4456b44a6f760bc2992e9effc1b4c linux-3.0/arch/x86/include/asm/futex.h -227e1cfad42878e5fdf1f0b7d66077f7 linux-3.0/arch/x86/include/asm/ftrace.h -67b8d1c06e1473fa9ef2c7bc321b307d linux-3.0/arch/x86/include/asm/frame.h -32b1a49069a30e9bb8e631c373eaf541 linux-3.0/arch/x86/include/asm/floppy.h -cdb8c5ea8cf24b094af63d8537b25762 linux-3.0/arch/x86/include/asm/fixmap.h -a598360d85106db07897c937209e63eb linux-3.0/arch/x86/include/asm/fcntl.h -27899320718a78fd852e1cbd36c3f526 linux-3.0/arch/x86/include/asm/fb.h -05366a204880e8cf1fcd3e61ef3cfa41 linux-3.0/arch/x86/include/asm/errno.h -e03426f0c3619bae55ceff6e5c36d4f7 linux-3.0/arch/x86/include/asm/entry_arch.h -79d8e557335bb5a87779902055182706 linux-3.0/arch/x86/include/asm/emergency-restart.h -279725cbde0084f9f6325314abd34120 linux-3.0/arch/x86/include/asm/elf.h -f2aad6d59d42106f35b4bc6e6d63be31 linux-3.0/arch/x86/include/asm/efi.h -d2318fdf9d64fd3bfefea5c041938e9a linux-3.0/arch/x86/include/asm/edac.h -bf0acbc6880f12d079ca0aba4ffc9d3e linux-3.0/arch/x86/include/asm/e820.h -af1c873de20c2b1ca11f49c01f491bc3 linux-3.0/arch/x86/include/asm/dwarf2.h -77521849776ac8106f676d0cbff18f4c linux-3.0/arch/x86/include/asm/dmi.h -bef9639f25018e1a23706cd0d812ed5a linux-3.0/arch/x86/include/asm/dma.h -c609a53cafa3ce1f055994a4f1274b72 linux-3.0/arch/x86/include/asm/dma-mapping.h -6ae31a96035fbd8cddba8d16851b6fd2 linux-3.0/arch/x86/include/asm/div64.h -881ea2b5e271afee06f6fab0788acdef linux-3.0/arch/x86/include/asm/device.h -3ea778983a285f6c7b9aa547c9b5e1f8 linux-3.0/arch/x86/include/asm/desc_defs.h -844154e21a871f42a2f1d52401fd58ec linux-3.0/arch/x86/include/asm/desc.h -ee826fba9d1566158a3d641b6d55ce40 linux-3.0/arch/x86/include/asm/delay.h -8793a23d83df868afba9e240d849b232 linux-3.0/arch/x86/include/asm/debugreg.h -0068fff98b69c79986a1b465fe28ec4a linux-3.0/arch/x86/include/asm/current.h -e07bb1fbce67b580c13b57c94d6eb580 linux-3.0/arch/x86/include/asm/cputime.h -e7c258acece61f59d5f93e4da74ba290 linux-3.0/arch/x86/include/asm/cpumask.h -704962aa1e5c888e9e0601fdd72e4b22 linux-3.0/arch/x86/include/asm/cpufeature.h -c9c08ca85382783f1bc748970c51ed1f linux-3.0/arch/x86/include/asm/cpu.h -2346215dc0e45f6f4ea5bafe697c8f1c linux-3.0/arch/x86/include/asm/compat.h -07843f99644b4bb949401eb880232f45 linux-3.0/arch/x86/include/asm/cmpxchg_64.h -7d924677ba4fa541e8affcc8a165e574 linux-3.0/arch/x86/include/asm/cmpxchg_32.h -acfcddfc9ecd34cfae379549a98c3f3c linux-3.0/arch/x86/include/asm/cmpxchg.h -b975bf1e4a276685a7c34453e2723a61 linux-3.0/arch/x86/include/asm/checksum_64.h -e45ccd99253192937ca7d1ffa4abbdb4 linux-3.0/arch/x86/include/asm/checksum_32.h -374ef6f73fb97e32c8ae76441468e492 linux-3.0/arch/x86/include/asm/checksum.h -caf9ab39e986661c84b6831490c6780e linux-3.0/arch/x86/include/asm/ce4100.h -fb4f788308d6848bf3d16461d1425c7f linux-3.0/arch/x86/include/asm/calling.h -acb0799d90c386832efd9de1238890b4 linux-3.0/arch/x86/include/asm/calgary.h -68065e47c81dc0d0b2f0811f5375656f linux-3.0/arch/x86/include/asm/cacheflush.h -0593263575033fa3db8073f6f6b8bfe1 linux-3.0/arch/x86/include/asm/cache.h -018cae3d3d22118ad8516b7c11cc732e linux-3.0/arch/x86/include/asm/byteorder.h -e2bea1ef147812ff0a7da5f37cbbc905 linux-3.0/arch/x86/include/asm/bugs.h -abfa40326746d58b9d886336197edd0d linux-3.0/arch/x86/include/asm/bug.h -e08200f436c572f5cddbb27cba15bff5 linux-3.0/arch/x86/include/asm/bootparam.h -de57dc7240e6a0449bb5c18f9b1b1e14 linux-3.0/arch/x86/include/asm/boot.h -138ce7f2e636f06539ca663c6d24344f linux-3.0/arch/x86/include/asm/bitsperlong.h -f02f4c8c302eb056e8cb5294cfcfd7e4 linux-3.0/arch/x86/include/asm/bitops.h -545235118dea483c95bd865ea29bfb49 linux-3.0/arch/x86/include/asm/bios_ebda.h -e27b12c19a6db33b7c93acfaf817f38d linux-3.0/arch/x86/include/asm/auxvec.h -808dd4e02296e2f3bd037f195080fa89 linux-3.0/arch/x86/include/asm/atomic64_64.h -cb189d25d7ccc684cd2356b0f93eef0b linux-3.0/arch/x86/include/asm/atomic64_32.h -10d07ecfab6dd1688bb801666d967025 linux-3.0/arch/x86/include/asm/atomic.h -df4ea6486064b257882883265775579e linux-3.0/arch/x86/include/asm/asm.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/x86/include/asm/asm-offsets.h -e61b30c0f853ca25a1f83d8bb52cc7a8 linux-3.0/arch/x86/include/asm/arch_hweight.h -f3e5ba2cfc0e203d44f8b596f9e77091 linux-3.0/arch/x86/include/asm/apm.h -230cfdae6e2f5069b4605b95c81aec0e linux-3.0/arch/x86/include/asm/apicdef.h -1bdb8c0d89c5879bd105b2cb9aeeb876 linux-3.0/arch/x86/include/asm/apic.h -96f9cab39583230f8aa2b9fbc4d461e5 linux-3.0/arch/x86/include/asm/apb_timer.h -78fd59d3a0c6f83dffa1e395c4b136b0 linux-3.0/arch/x86/include/asm/amd_nb.h -ab3bfa46bded188f60c4e75854ef6550 linux-3.0/arch/x86/include/asm/amd_iommu_types.h -ee5f8c12c4e9d9fd122cb015458b635e linux-3.0/arch/x86/include/asm/amd_iommu_proto.h -9a3e1172f1f526e3e872f5812f318b48 linux-3.0/arch/x86/include/asm/amd_iommu.h -baddb23acfde1576260741ef776f6180 linux-3.0/arch/x86/include/asm/alternative.h -9281faf1836fcbc745c6fb40468d1f5a linux-3.0/arch/x86/include/asm/alternative-asm.h -236c749ec8715d254f08b099340f40ea linux-3.0/arch/x86/include/asm/agp.h -b00605dcdfcb3764028a7774e4912e26 linux-3.0/arch/x86/include/asm/aes.h -b9c73785436ff4c5c82618cf17f4befd linux-3.0/arch/x86/include/asm/acpi.h -ee16803b9ad1623b7f643094bf24029b linux-3.0/arch/x86/include/asm/a.out.h -e27119c57a8a7a8593997da82ca324a6 linux-3.0/arch/x86/include/asm/a.out-core.h -5b7caa3905f216f6b1c3098e0901075d linux-3.0/arch/x86/include/asm/Kbuild -8d4f57b464a349d49246d35527b78915 linux-3.0/arch/x86/ia32/sys_ia32.c -6e6ff87e67c56d2f62b79280a6543df9 linux-3.0/arch/x86/ia32/ipc32.c -c0e7df61ee12cfe4bd7a2cd69f57fe8e linux-3.0/arch/x86/ia32/ia32entry.S -5f17b956c9dfc81d2b3fd39f286ca62c linux-3.0/arch/x86/ia32/ia32_signal.c -41835f18c55aee7acbff21e232646468 linux-3.0/arch/x86/ia32/ia32_aout.c -f61aa8c424f6f3b30d2542f89f847233 linux-3.0/arch/x86/ia32/audit.c -2ac91e5b80b42af9ae8222b232dbb5c8 linux-3.0/arch/x86/ia32/Makefile -2f0cb45587b74d825cae7cec21db3697 linux-3.0/arch/x86/crypto/twofish_glue.c -452cc853ef8b8f05bda7fe18dda60acf linux-3.0/arch/x86/crypto/twofish-x86_64-asm_64.S -8ae8e3f4b269900125af964ce5d8bb60 linux-3.0/arch/x86/crypto/twofish-i586-asm_32.S -2586b3b9b30a10469ff21d8b06129416 linux-3.0/arch/x86/crypto/salsa20_glue.c -0088817760f8c5ad29c5323839d45bf5 linux-3.0/arch/x86/crypto/salsa20-x86_64-asm_64.S -0da44ee4a06a2db7f9712c826c26bbb2 linux-3.0/arch/x86/crypto/salsa20-i586-asm_32.S -ebf2484377d4947983a7539f98df542c linux-3.0/arch/x86/crypto/ghash-clmulni-intel_glue.c -3abf6d779474c410ad18b52f9b4e9bba linux-3.0/arch/x86/crypto/ghash-clmulni-intel_asm.S -afd08ba24eed352873348d0f788043d0 linux-3.0/arch/x86/crypto/fpu.c -a553493229222822e3efd2c5904c3f6d linux-3.0/arch/x86/crypto/crc32c-intel.c -2c49ec60c9651673df712e591a3228e7 linux-3.0/arch/x86/crypto/aesni-intel_glue.c -5faff4ede04e5568668bc29102cb197c linux-3.0/arch/x86/crypto/aesni-intel_asm.S -916ce3bc2246ef79eda74734d231f652 linux-3.0/arch/x86/crypto/aes_glue.c -edf4a997b0c7e284327844678426d1a3 linux-3.0/arch/x86/crypto/aes-x86_64-asm_64.S -cedd27b9065e73d063c097f6d35c814c linux-3.0/arch/x86/crypto/aes-i586-asm_32.S -56ebaee5cc1db588c05a7d061995ba20 linux-3.0/arch/x86/crypto/Makefile -cf2569ff3a346d615a58b15d80afbf20 linux-3.0/arch/x86/configs/x86_64_defconfig -ee2394f74c17ef1245c45c86b1bd33be linux-3.0/arch/x86/configs/i386_defconfig -a6c71fd7c00edb4b85a21896c70f2b90 linux-3.0/arch/x86/boot/video.h -600de1d350167a7c0ba6902fde577b0b linux-3.0/arch/x86/boot/video.c -da0554b0e12ad65838dc536407b36988 linux-3.0/arch/x86/boot/video-vga.c -9f1cc881be204d5a9faa279964a48a1a linux-3.0/arch/x86/boot/video-vesa.c -023174517182aab418a986283c5af931 linux-3.0/arch/x86/boot/video-mode.c -85446b5a62dba7091f4c13097cc2aa72 linux-3.0/arch/x86/boot/video-bios.c -4550fc7b78fa93dd238d7eb66f45a6d2 linux-3.0/arch/x86/boot/vesa.h -7046bce9cb2d23dce4eee81f591a8efb linux-3.0/arch/x86/boot/version.c -df7d7c99c8ea9f8b064e15176095bc8b linux-3.0/arch/x86/boot/tty.c -5efc8b605981fd7ceb08c144fd7daf38 linux-3.0/arch/x86/boot/tools/build.c -5ab6fb8bc4e43974c6e06df8c90d3848 linux-3.0/arch/x86/boot/tools/.gitignore -1e309ee3c218f5d860f62b3d10067b1f linux-3.0/arch/x86/boot/string.c -2efaa144f20ec2eed43a16b3416785b0 linux-3.0/arch/x86/boot/setup.ld -017a59ec43cdff76b057f704273e9fcf linux-3.0/arch/x86/boot/regs.c -cdb6f947fe68a463e87009c24239fa5f linux-3.0/arch/x86/boot/printf.c -9bd2f84d57c1c8c07bdab6c2edaec8b2 linux-3.0/arch/x86/boot/pmjump.S -f2d8ddae98ab6bb4419f3bea1678a0f2 linux-3.0/arch/x86/boot/pm.c -0624f7c82cca6188298d5f9e2721233e linux-3.0/arch/x86/boot/mtools.conf.in -3c11e06c87e97602027234f03c4b4064 linux-3.0/arch/x86/boot/mkcpustr.c -a238ab4f0545eda75ea8a736eae85bc8 linux-3.0/arch/x86/boot/memory.c -6f175ba562746de458c4534c41ff19dd linux-3.0/arch/x86/boot/mca.c -b07e7bb6f1d1421fabea62d1af5d0789 linux-3.0/arch/x86/boot/main.c -a5aa05bd6593f64ee22f830ac525e9ec linux-3.0/arch/x86/boot/install.sh -5126365805227c5e579b94c67ea9a277 linux-3.0/arch/x86/boot/header.S -069b58ec4c8f991860815b0a89b894f2 linux-3.0/arch/x86/boot/edd.c -f3bfce344eaa76006713c327c46c5630 linux-3.0/arch/x86/boot/early_serial_console.c -69bc0215c6b44c4aa6b226b810394728 linux-3.0/arch/x86/boot/ctype.h -bba6b07aacf37410f6d444f366d74725 linux-3.0/arch/x86/boot/cpucheck.c -76f053429694c7da5226833333eaf220 linux-3.0/arch/x86/boot/cpu.c -7f5703d6a82225582d586b2ebfce0c8b linux-3.0/arch/x86/boot/copy.S -cb25d69c58633ea13abd90b0e946fd93 linux-3.0/arch/x86/boot/compressed/vmlinux.lds.S -31f3e3599a8fd476cbe2151106add05b linux-3.0/arch/x86/boot/compressed/string.c -7d3e1a4138f597459f69f0d7a7842083 linux-3.0/arch/x86/boot/compressed/relocs.c -9f83dc7ba0956bf84ace2ae7a7abe873 linux-3.0/arch/x86/boot/compressed/mkpiggy.c -879797b32cdcccb8000ccd7580b81b9a linux-3.0/arch/x86/boot/compressed/misc.h -b36a65faa77da4b015f2f59503ac58af linux-3.0/arch/x86/boot/compressed/misc.c -2a2daab1cd23c30dfe9c9b098902dc27 linux-3.0/arch/x86/boot/compressed/head_64.S -8beed29a980009cf31f8f0a40667cf37 linux-3.0/arch/x86/boot/compressed/head_32.S -02e3ba47f18e32a638f036366001cc7b linux-3.0/arch/x86/boot/compressed/early_serial_console.c -6b0e091ee9dda00491743c72ce5480c8 linux-3.0/arch/x86/boot/compressed/cmdline.c -1c82e57ef4411ffb594af2f0fa7a81a3 linux-3.0/arch/x86/boot/compressed/Makefile -95dc2aef9868890757bfcb447d76e457 linux-3.0/arch/x86/boot/compressed/.gitignore -c23571f5a12cbe8f64fb92a0d3dc55b4 linux-3.0/arch/x86/boot/code16gcc.h -8c0027754e6c83399c4d4927d9101ce7 linux-3.0/arch/x86/boot/cmdline.c -ded5a204393992f3952523ae6ada59a7 linux-3.0/arch/x86/boot/boot.h -b2717cce1d984a0b110b3ed01e94d5a1 linux-3.0/arch/x86/boot/bitops.h -7f5205623d1f1e06290fcb7415d02d98 linux-3.0/arch/x86/boot/bioscall.S -5d782ccdbc161b8331d5c4bc7288d24b linux-3.0/arch/x86/boot/apm.c -eb04857d4269a05e06a3cc18f6d80fdf linux-3.0/arch/x86/boot/a20.c -233d7d789260525ee9134a1d90e43471 linux-3.0/arch/x86/boot/Makefile -bab37cbd0a42872339f5aaae003e817f linux-3.0/arch/x86/boot/.gitignore -7d597aba2166adc54c8769a1fa7408f5 linux-3.0/arch/x86/Makefile_32.cpu -91223d7b52e05337ec7eab2761fdabe1 linux-3.0/arch/x86/Makefile -651f67cc9f12d40e1e6a9d583f16ced1 linux-3.0/arch/x86/Kconfig.debug -51b7ad641804d535dd263143738bd363 linux-3.0/arch/x86/Kconfig.cpu -0ddc496fa5831349d4bd9b7fc351356e linux-3.0/arch/x86/Kconfig -d58fa040a017d49ca7c41c62c2a4deff linux-3.0/arch/x86/Kbuild -3302c6a24e8849c04c0fd662aa13a93c linux-3.0/arch/x86/.gitignore -4bbaa0ee45a903278695d4c558a1c808 linux-3.0/arch/unicore32/mm/tlb-ucv2.S -e4db321392c4c54db0e8225823f0e908 linux-3.0/arch/unicore32/mm/proc-ucv2.S -ed567454de420ba83ef129c403e11093 linux-3.0/arch/unicore32/mm/proc-syms.c -ee24b6383f3d659f71bea63baa13ae0d linux-3.0/arch/unicore32/mm/proc-macros.S -257a1e1fe35ab9136cd1cb344145b299 linux-3.0/arch/unicore32/mm/pgd.c -621085e3bb764ca7c0d80c49a824ee8d linux-3.0/arch/unicore32/mm/mmu.c -6c0736e22e8173e08387ccb3088e78e0 linux-3.0/arch/unicore32/mm/mm.h -764a05d8be925ccef36832a87dd9cd1a linux-3.0/arch/unicore32/mm/ioremap.c -66c3f9164a89ce017c86d45051a776d6 linux-3.0/arch/unicore32/mm/init.c -617522b132e43918c76c2d26d1a5d014 linux-3.0/arch/unicore32/mm/flush.c -d2f597b0f49d1433ebce3a10d54d5a9e linux-3.0/arch/unicore32/mm/fault.c -8bd5228e5c9e8f96ef4605c27f506389 linux-3.0/arch/unicore32/mm/extable.c -05b7e48d288b88d874a978ad8a645060 linux-3.0/arch/unicore32/mm/dma-swiotlb.c -8f8386ae2dfabe14339a1329acc88790 linux-3.0/arch/unicore32/mm/cache-ucv2.S -83c7fef1b2246d01d5da7ade6eaeb34e linux-3.0/arch/unicore32/mm/alignment.c -07d85cb6c02d2080837cb46bbb2e6029 linux-3.0/arch/unicore32/mm/Makefile -57e91a60ff0e967e45873dcd695fc675 linux-3.0/arch/unicore32/mm/Kconfig -ea7326d491d6968546804a1a50525c81 linux-3.0/arch/unicore32/lib/strnlen_user.S -dba32da2b186405d4ac4aad7d5503be5 linux-3.0/arch/unicore32/lib/strncpy_from_user.S -13dd86ad3187ed9d02d748b6646739de linux-3.0/arch/unicore32/lib/findbit.S -0f6d77e019ab9e23fb22dfcb3075e363 linux-3.0/arch/unicore32/lib/delay.S -02ffb0a3c0c85540f75444e9a8c4c747 linux-3.0/arch/unicore32/lib/copy_to_user.S -33318f2cf3fb82290fdee9d09704a014 linux-3.0/arch/unicore32/lib/copy_template.S -12b8547a60ef247c2b80241bf3009861 linux-3.0/arch/unicore32/lib/copy_page.S -e012d105ef928e7f578961679519908e linux-3.0/arch/unicore32/lib/copy_from_user.S -6cc6708aa6041b4557894006f09408e2 linux-3.0/arch/unicore32/lib/clear_user.S -76adcb70d2cf648e42e31434202d62b4 linux-3.0/arch/unicore32/lib/backtrace.S -19ba776adea6f6c97d0b889643b888e9 linux-3.0/arch/unicore32/lib/Makefile -613fd638a1837a00958b8bcc70ab2b05 linux-3.0/arch/unicore32/kernel/vmlinux.lds.S -6f0490bee981f896548a29b4005c08c6 linux-3.0/arch/unicore32/kernel/traps.c -318fe7a5e6196d2bf50524b591d8a533 linux-3.0/arch/unicore32/kernel/time.c -3b156bc30db7a03ac33f8466975284d4 linux-3.0/arch/unicore32/kernel/sys.c -4204a5808acd9417fb689d665be4c30b linux-3.0/arch/unicore32/kernel/stacktrace.c -4e4150047db509c48cc939117f88cbb4 linux-3.0/arch/unicore32/kernel/sleep.S -676c8499ba5a6c7cea7f29227aca6c6b linux-3.0/arch/unicore32/kernel/signal.c -112d076e4ed01aebc38665fb567ff891 linux-3.0/arch/unicore32/kernel/setup.h -8a0f93a047d1e281f79b09b0f0a1e10a linux-3.0/arch/unicore32/kernel/setup.c -91dbf57538cbaaf3a32be48841bd5033 linux-3.0/arch/unicore32/kernel/pwm.c -73980dc90b98277b2c7d9525e22afbb6 linux-3.0/arch/unicore32/kernel/puv3-nb0916.c -29e1e7a5b7b526361057f83b4d7f32c5 linux-3.0/arch/unicore32/kernel/puv3-core.c -8f9bf7dd35dab1673b885900af2d8260 linux-3.0/arch/unicore32/kernel/ptrace.c -7d43d610bf43729210d81889a37e86a6 linux-3.0/arch/unicore32/kernel/process.c -01076c4d822e2b3a5708a9b53a9b6e32 linux-3.0/arch/unicore32/kernel/pm.c -1b00bb2f33bd5bcee9ed51a506931c00 linux-3.0/arch/unicore32/kernel/pci.c -5568f205a525e224acc3c435d681b2e1 linux-3.0/arch/unicore32/kernel/module.c -47a1607e5ec6d73ef7d6cfea94001ee3 linux-3.0/arch/unicore32/kernel/ksyms.h -d34e4c811da862c6e875eb61b2714aa1 linux-3.0/arch/unicore32/kernel/ksyms.c -236fa4a2494e54b3f9be3c9244183c43 linux-3.0/arch/unicore32/kernel/irq.c -18ccbb194db3a58947ef5e113e20520a linux-3.0/arch/unicore32/kernel/init_task.c -ab9157952f381c0b8e9cb1fa3c2b7b09 linux-3.0/arch/unicore32/kernel/hibernate_asm.S -559577813e5ffe57742829c9afe2c56b linux-3.0/arch/unicore32/kernel/hibernate.c -e9dd5355671d5ae850741849e800ceec linux-3.0/arch/unicore32/kernel/head.S -9740bdc330fa454ba983387588907422 linux-3.0/arch/unicore32/kernel/gpio.c -1507e49d13553d662bfd8f593529f9e0 linux-3.0/arch/unicore32/kernel/fpu-ucf64.c -cb0fcfffa8d92ca0917a5573dc3825d1 linux-3.0/arch/unicore32/kernel/entry.S -3238d66daaf51d4caf6ebc5603e5fa38 linux-3.0/arch/unicore32/kernel/elf.c -66149ad7ff8a03846381a8190afd6fec linux-3.0/arch/unicore32/kernel/early_printk.c -562fc2997f71d828778bf34753c078b8 linux-3.0/arch/unicore32/kernel/dma.c -3da80d7d6459fcebb53eec2833c949bb linux-3.0/arch/unicore32/kernel/debug.S -42d533b4460a707243640116ab98b8aa linux-3.0/arch/unicore32/kernel/debug-macro.S -c7c901112960977e9f13704be6a2d6dd linux-3.0/arch/unicore32/kernel/cpu-ucv2.c -0b31bc7d2dff68fd78994c2e194ded5c linux-3.0/arch/unicore32/kernel/clock.c -f810ffb8e9deb13cc524d97035dab16b linux-3.0/arch/unicore32/kernel/asm-offsets.c -3eaec09d6c06d70aa2ed95d3af43ac71 linux-3.0/arch/unicore32/kernel/Makefile -2737193089a341e24adbdf09f54a092d linux-3.0/arch/unicore32/include/mach/uncompress.h -d6fe71e91a784d7174df51f90b282b7b linux-3.0/arch/unicore32/include/mach/regs-unigfx.h -5a4bc80e8368e72e0f662f23d1854056 linux-3.0/arch/unicore32/include/mach/regs-umal.h -92a81604e9bc330fc4e8682c34c575b5 linux-3.0/arch/unicore32/include/mach/regs-uart.h -165e4282cbc9f46c19a2d44799b2f4f5 linux-3.0/arch/unicore32/include/mach/regs-spi.h -2925d364371be4f43bbf7da88b7ac429 linux-3.0/arch/unicore32/include/mach/regs-sdc.h -4795bb0e53089ed53861983a3b83a009 linux-3.0/arch/unicore32/include/mach/regs-rtc.h -e925650f1ecb90750b403b569aee1700 linux-3.0/arch/unicore32/include/mach/regs-resetc.h -6883be9701640924617596432fbf0a93 linux-3.0/arch/unicore32/include/mach/regs-ps2.h -fd6d32ac31e0247cb2de00b2e775fefe linux-3.0/arch/unicore32/include/mach/regs-pm.h -583a7589526d729f49cd0af04a57b5a8 linux-3.0/arch/unicore32/include/mach/regs-pci.h -873351d260ed1b4925b942bad8bda510 linux-3.0/arch/unicore32/include/mach/regs-ost.h -7e39d060630aafce462391794cc802c1 linux-3.0/arch/unicore32/include/mach/regs-nand.h -ebda28e513d3ba61d74e52bdb2e2eaeb linux-3.0/arch/unicore32/include/mach/regs-intc.h -bb266e9719f9818526accb6fb39d64a0 linux-3.0/arch/unicore32/include/mach/regs-i2c.h -98cfc619f0ba60d41c053ae664e931b9 linux-3.0/arch/unicore32/include/mach/regs-gpio.h -b65816f6687cd0695bb3885887c91208 linux-3.0/arch/unicore32/include/mach/regs-dmac.h -e6d5aaa98832dd48d16a3d655ed9a327 linux-3.0/arch/unicore32/include/mach/regs-ac97.h -64db8385a5a04a58433b3f342a27df95 linux-3.0/arch/unicore32/include/mach/pm.h -3ddd41093410e352413cb01f92827a26 linux-3.0/arch/unicore32/include/mach/ocd.h -e6a7a9d68c77de4b69de21d5faeb9c4b linux-3.0/arch/unicore32/include/mach/memory.h -39d8bfe5768e69cc3d822ea775a8a769 linux-3.0/arch/unicore32/include/mach/map.h -757b40b90270b364491bdafb039d54d7 linux-3.0/arch/unicore32/include/mach/hardware.h -e1f18abf656c23f75d2be1cec5270590 linux-3.0/arch/unicore32/include/mach/dma.h -014b7a8a5a87ea0f88441c62822cc3b6 linux-3.0/arch/unicore32/include/mach/bitfield.h -7fe220626f96ba3a391a29cfbcdb6a1b linux-3.0/arch/unicore32/include/mach/PKUnity.h -4cecdb2930df9f80b981d798b6dca40f linux-3.0/arch/unicore32/include/asm/unistd.h -59a0068a96e2665f54ac32ce488237ea linux-3.0/arch/unicore32/include/asm/uaccess.h -c7c5ea382822087c871f4e1cb961ca16 linux-3.0/arch/unicore32/include/asm/traps.h -1f0c5ca2443456c9ed71f02d61dd991d linux-3.0/arch/unicore32/include/asm/tlbflush.h -5b0fee9f2e168e59d496f1115a4ad30a linux-3.0/arch/unicore32/include/asm/tlb.h -6ba6429fe8b2d27f4341006a78aa7795 linux-3.0/arch/unicore32/include/asm/timex.h -ef55246a6811662b652731b8f947c6b3 linux-3.0/arch/unicore32/include/asm/thread_info.h -1a2d7e8a32081b04a6855e7486fa39f7 linux-3.0/arch/unicore32/include/asm/system.h -7ce9b72574a39c641432acd088059618 linux-3.0/arch/unicore32/include/asm/suspend.h -f011e782893531a0d20ad4e95d7605d1 linux-3.0/arch/unicore32/include/asm/string.h -9e51f1c0a326aec0a7b40e7d487976ed linux-3.0/arch/unicore32/include/asm/stacktrace.h -d98ab349a88e2204689a4b4ce9eb8d6f linux-3.0/arch/unicore32/include/asm/sigcontext.h -1cde15397b5a37e0589eacf01215196d linux-3.0/arch/unicore32/include/asm/ptrace.h -2267db8597fa2b3a9501565d2f1a9500 linux-3.0/arch/unicore32/include/asm/processor.h -1bfb8e520ea5ef6dcdf929133a1c2c34 linux-3.0/arch/unicore32/include/asm/pgtable.h -97767cd61187580596615b3fbc6748ce linux-3.0/arch/unicore32/include/asm/pgtable-hwdef.h -11da12e6833874099c2661e5e4e6c005 linux-3.0/arch/unicore32/include/asm/pgalloc.h -d69bb515710c37ee320bb39fe00f18b5 linux-3.0/arch/unicore32/include/asm/pci.h -826a6e366c633e4ec89e82a37a408cdb linux-3.0/arch/unicore32/include/asm/page.h -8f742369b927a448b8e01a74d340b440 linux-3.0/arch/unicore32/include/asm/mutex.h -805441740d9513cbe91a14b382828a70 linux-3.0/arch/unicore32/include/asm/mmu_context.h -6272aab8b86afb00ee7dddcfed2c7daf linux-3.0/arch/unicore32/include/asm/mmu.h -3fe0b805ffec948c6f85692309ff2b28 linux-3.0/arch/unicore32/include/asm/memory.h -de30379ae2cb6d9bbce224d3024fcfbc linux-3.0/arch/unicore32/include/asm/memblock.h -f659946d677cfb4b8de268e0f314167d linux-3.0/arch/unicore32/include/asm/linkage.h -017b93c12a694748470a12bdf8ee67db linux-3.0/arch/unicore32/include/asm/irqflags.h -a8ce48b2cf074f8d45126be15dda7c43 linux-3.0/arch/unicore32/include/asm/irq.h -b726d11c4a8cf653f7fee34ba9a96de0 linux-3.0/arch/unicore32/include/asm/io.h -a09c8145ffe041b34a3eb4b356628b29 linux-3.0/arch/unicore32/include/asm/hwcap.h -68dfe9f3fef99ed6b6f99b59d2bfb7f3 linux-3.0/arch/unicore32/include/asm/gpio.h -cebe909a3c39bb1e43ffff6a482116b5 linux-3.0/arch/unicore32/include/asm/fpu-ucf64.h -6bf5dd5205937881479d8bbb13718973 linux-3.0/arch/unicore32/include/asm/fpstate.h -6b1994571ce6b3687d61c627f8ec96af linux-3.0/arch/unicore32/include/asm/elf.h -4525e6f1530f86ce9c1c68a855302aa9 linux-3.0/arch/unicore32/include/asm/dma.h -e47f6654b127fea68114d0aa757d9c6a linux-3.0/arch/unicore32/include/asm/dma-mapping.h -eb5fea0473815536514f00cc48cb8797 linux-3.0/arch/unicore32/include/asm/delay.h -71563b0486f00bb7bc402442b11194f8 linux-3.0/arch/unicore32/include/asm/cputype.h -f1416ce2d265b3be4236675950f9cff2 linux-3.0/arch/unicore32/include/asm/cpu-single.h -54d2b27b34e0c658004f520cc61d1733 linux-3.0/arch/unicore32/include/asm/checksum.h -db6a4f26949ab3f94e2a8ce0dd0aa5c2 linux-3.0/arch/unicore32/include/asm/cacheflush.h -3383f9e02e26e5c1078fe92e97de0c63 linux-3.0/arch/unicore32/include/asm/cache.h -e5405d0f4a043d68177ebf56d53c88f2 linux-3.0/arch/unicore32/include/asm/byteorder.h -4b32ec75d6817872c0903004ad106cd0 linux-3.0/arch/unicore32/include/asm/bitops.h -5ef215a3986424a91a89553d71ae25ec linux-3.0/arch/unicore32/include/asm/assembler.h -0c02e2680c59a5320ebc569e264d7781 linux-3.0/arch/unicore32/include/asm/Kbuild -4d6fe4485ccb82b3c1caf30099451429 linux-3.0/arch/unicore32/configs/unicore32_defconfig -21e7df3a1ae83fc894f557f71277e247 linux-3.0/arch/unicore32/boot/compressed/vmlinux.lds.in -4e27265aa400cfea16e9fc77d147a4b3 linux-3.0/arch/unicore32/boot/compressed/piggy.S.in -1bca3143b73ed72d82c57d41dcede157 linux-3.0/arch/unicore32/boot/compressed/misc.c -8f37d90f2236c0b15cb724a39ae9ce5f linux-3.0/arch/unicore32/boot/compressed/head.S -f1cf1dc6074ca68d95a83ecff0f092f6 linux-3.0/arch/unicore32/boot/compressed/Makefile -90d377e4ea5e1219a1824184b7cdabe2 linux-3.0/arch/unicore32/boot/Makefile -67057ba2f2f6085f2fff6232aa164f0d linux-3.0/arch/unicore32/Makefile -af0169087441a41a98e55b3b64eb5db0 linux-3.0/arch/unicore32/Kconfig.debug -5f5efd07eaf234677a9c984b2aec60b9 linux-3.0/arch/unicore32/Kconfig -7d24713ee0dcf0ee3770ce2bb54f9b98 linux-3.0/arch/unicore32/.gitignore -cb83b089be03e2526c91f7f332e534f2 linux-3.0/arch/um/sys-x86_64/user-offsets.c -fe93b65e618a75eb18cfbcb1b0dd4d7d linux-3.0/arch/um/sys-x86_64/tls.c -72523d7df809da0188c4283b57b1dd2e linux-3.0/arch/um/sys-x86_64/sysrq.c -ae5093a3328ed7ca81d374fb1c98c02b linux-3.0/arch/um/sys-x86_64/syscalls.c -b3c6efe2ea53c43e355790c2f9997f79 linux-3.0/arch/um/sys-x86_64/syscall_table.c -6256ec9a97a1c0b0623dc666f33553ab linux-3.0/arch/um/sys-x86_64/stub_segv.c -b710997d9c087f4eebd245c60f583083 linux-3.0/arch/um/sys-x86_64/stub.S -4d2ab18862ad2dbbef3b9a6b7bd3ae9c linux-3.0/arch/um/sys-x86_64/signal.c -6abd54e0b3bd8239a5f49a0c9c48bfb1 linux-3.0/arch/um/sys-x86_64/shared/sysdep/vm-flags.h -ec23d0955d649ed37799168cce9f680f linux-3.0/arch/um/sys-x86_64/shared/sysdep/tls.h -bb42f79d1ae7ac0f4061cabd86367bae linux-3.0/arch/um/sys-x86_64/shared/sysdep/system.h -38914a900f47d85fe91ea85d47545f12 linux-3.0/arch/um/sys-x86_64/shared/sysdep/syscalls.h -b34467457757325c24574d406611975e linux-3.0/arch/um/sys-x86_64/shared/sysdep/stub.h -ebb0fc370847a7e5486d981e94451064 linux-3.0/arch/um/sys-x86_64/shared/sysdep/skas_ptrace.h -d98fef165e5e40b789ee63481f0781cd linux-3.0/arch/um/sys-x86_64/shared/sysdep/sigcontext.h -60ec6a9cd545e863acd746797f2e6632 linux-3.0/arch/um/sys-x86_64/shared/sysdep/sc.h -9c8d7ae67f4d0dccb34b28657f9e621e linux-3.0/arch/um/sys-x86_64/shared/sysdep/ptrace_user.h -e568754ee981e631c2b6c28179242ec1 linux-3.0/arch/um/sys-x86_64/shared/sysdep/ptrace.h -c310fead6ac262dfc7d177e1055488ff linux-3.0/arch/um/sys-x86_64/shared/sysdep/kernel-offsets.h -d873c2a61cc4e28026aa32ec6c3f0e1a linux-3.0/arch/um/sys-x86_64/shared/sysdep/host_ldt.h -350ebecb0af6b0f8aff3f0fefdc99e31 linux-3.0/arch/um/sys-x86_64/shared/sysdep/faultinfo.h -b9de4b278648fef60d8b7cb5038bac1f linux-3.0/arch/um/sys-x86_64/shared/sysdep/checksum.h -e7b004a01538f2ee90d32fb360d9e7f0 linux-3.0/arch/um/sys-x86_64/shared/sysdep/barrier.h -5dc9c37075459d2ed40c8f69788140bd linux-3.0/arch/um/sys-x86_64/shared/sysdep/archsetjmp.h -85c4ddf789b4a106125f11c8c17166e8 linux-3.0/arch/um/sys-x86_64/setjmp.S -2794f211b50050a1b9e9c390acb379f8 linux-3.0/arch/um/sys-x86_64/ptrace_user.c -b2740775b31f934ccca052465b35e96c linux-3.0/arch/um/sys-x86_64/ptrace.c -d371c7d38bb9140225a3ee22254a2e46 linux-3.0/arch/um/sys-x86_64/mem.c -c193a4439310ad09a5c2f347bd1de878 linux-3.0/arch/um/sys-x86_64/ksyms.c -289275750367aea519e26a088c0e4bdc linux-3.0/arch/um/sys-x86_64/fault.c -a962c6d74d565b2231747ca5ff764e88 linux-3.0/arch/um/sys-x86_64/delay.c -8d2984475d11ee6dc13371aaf1592a97 linux-3.0/arch/um/sys-x86_64/bugs.c -9dcfd0584cc517dbd18933904af37b10 linux-3.0/arch/um/sys-x86_64/bug.c -8884cb1ecad1059552b947d7a9d5449e linux-3.0/arch/um/sys-x86_64/asm/ptrace.h -f1b7dcc746a7fb0e434207da864bfd3f linux-3.0/arch/um/sys-x86_64/asm/processor.h -780756d3e9d9238704815e0050ec998d linux-3.0/arch/um/sys-x86_64/asm/module.h -3b2f5dd12771076a2471afe962a1c0f0 linux-3.0/arch/um/sys-x86_64/asm/elf.h -8981f3eedcaffe338a01131efb99cc67 linux-3.0/arch/um/sys-x86_64/asm/archparam.h -46d30d370b26b21261b74513a0d2f99d linux-3.0/arch/um/sys-x86_64/Makefile -4ba17ff032095ef1b55f11639485469a linux-3.0/arch/um/sys-ppc/sysrq.c -5e7af1560d55aaace4f121725c3e25af linux-3.0/arch/um/sys-ppc/sigcontext.c -1c3f8e95d01dfb3fa3c289b7e875ccfb linux-3.0/arch/um/sys-ppc/shared/sysdep/syscalls.h -91f539d9681f78141cc27ea38d0a2de7 linux-3.0/arch/um/sys-ppc/shared/sysdep/skas_ptrace.h -62deab9fb2fe6b4f2142bb73eba50d5f linux-3.0/arch/um/sys-ppc/shared/sysdep/sigcontext.h -9684004824f83d28c5ef37509da38084 linux-3.0/arch/um/sys-ppc/shared/sysdep/ptrace.h -510481f53512044924ccdf5c71e7c943 linux-3.0/arch/um/sys-ppc/ptrace_user.c -ae6e58407df63b289033d6ee48c99015 linux-3.0/arch/um/sys-ppc/ptrace.c -ff5f375690549ded3c9a38a545781af0 linux-3.0/arch/um/sys-ppc/miscthings.c -d3da725555aeb211baee3571d61ad639 linux-3.0/arch/um/sys-ppc/misc.S -1ff3f44ec2dc8e341037ebf5467d48cc linux-3.0/arch/um/sys-ppc/asm/processor.h -6406f33db66f7e3f793e75b0336a7524 linux-3.0/arch/um/sys-ppc/asm/elf.h -7e62bdb181d4e1d2ac5022da668ffc1a linux-3.0/arch/um/sys-ppc/asm/archparam.h -2cfd91f6036a8f147bf055d3fa9635c1 linux-3.0/arch/um/sys-ppc/Makefile -f12c69a5db593f15bb9cf186ed49d13a linux-3.0/arch/um/sys-ia64/sysdep/syscalls.h -e232b8c8d1e2d78b3df54e89b82f4025 linux-3.0/arch/um/sys-ia64/sysdep/skas_ptrace.h -e6563ea684496f6e2a031265c86ae964 linux-3.0/arch/um/sys-ia64/sysdep/sigcontext.h -bdf3a4560756ceee64106a77b1a796bf linux-3.0/arch/um/sys-ia64/sysdep/ptrace.h -00cb1ad8099dd2a8bbcd9b33e02f3a71 linux-3.0/arch/um/sys-ia64/Makefile -7153292db04207be288da0c459f09704 linux-3.0/arch/um/sys-i386/user-offsets.c -8f0b4858488dc1779e77ac84fad8a460 linux-3.0/arch/um/sys-i386/tls.c -9a2bf29728f9b374b1c7a162cb8cae08 linux-3.0/arch/um/sys-i386/sysrq.c -39e20524e584648502212ae19262d130 linux-3.0/arch/um/sys-i386/syscalls.c -7618d14fe08d96977838056acf62fcb8 linux-3.0/arch/um/sys-i386/sys_call_table.S -cb551e182349ee7d7094c04f6be8ae50 linux-3.0/arch/um/sys-i386/stub_segv.c -297d754df84444b5d555b34ef31bd9e4 linux-3.0/arch/um/sys-i386/stub.S -1124bd9688d2a89e41fe8f8871744158 linux-3.0/arch/um/sys-i386/signal.c -6691021ab2dba7e906c92494bbc57276 linux-3.0/arch/um/sys-i386/shared/sysdep/vm-flags.h -05607524dd638b1a7ae56dce4e7c43c2 linux-3.0/arch/um/sys-i386/shared/sysdep/tls.h -bb42f79d1ae7ac0f4061cabd86367bae linux-3.0/arch/um/sys-i386/shared/sysdep/system.h -533e9a9d8d959a044a20936cc0e58050 linux-3.0/arch/um/sys-i386/shared/sysdep/syscalls.h -b222d973ae218ff3de83945ade881d4e linux-3.0/arch/um/sys-i386/shared/sysdep/stub.h -10e6def8809ddf1788fa6d29e379302b linux-3.0/arch/um/sys-i386/shared/sysdep/skas_ptrace.h -23adc158b7a7f5ac364a36d15c2aba01 linux-3.0/arch/um/sys-i386/shared/sysdep/sigcontext.h -67cc15f35524901eb2d4ef73494e71bf linux-3.0/arch/um/sys-i386/shared/sysdep/sc.h -cccea7eaf204a5d0d13aa1cbd6540fb2 linux-3.0/arch/um/sys-i386/shared/sysdep/ptrace_user.h -0435f397f5e8eb18e83f42bbeed8738c linux-3.0/arch/um/sys-i386/shared/sysdep/ptrace.h -be14052da3b01762db0805f70501d488 linux-3.0/arch/um/sys-i386/shared/sysdep/kernel-offsets.h -abacd59a31bcd9d653d2d795b62755bc linux-3.0/arch/um/sys-i386/shared/sysdep/host_ldt.h -d9d3b3871c731c4c2fe991b302b8cc26 linux-3.0/arch/um/sys-i386/shared/sysdep/faultinfo.h -396e4959b82c42e4d522bcf51e046a84 linux-3.0/arch/um/sys-i386/shared/sysdep/checksum.h -abd316f38538ea29e00a9fa6e6775c81 linux-3.0/arch/um/sys-i386/shared/sysdep/barrier.h -2bc6c690784dbd14b0009cb70d68a970 linux-3.0/arch/um/sys-i386/shared/sysdep/archsetjmp.h -7775757ff2e4f1bee0c2ab43088dbc43 linux-3.0/arch/um/sys-i386/setjmp.S -ac37fcd8d88a5ebbad662c0d353cdb08 linux-3.0/arch/um/sys-i386/ptrace_user.c -94355f1f44801968435d13582cbcc1bb linux-3.0/arch/um/sys-i386/ptrace.c -de4edc0c579e0ea74222559ee2ae53a5 linux-3.0/arch/um/sys-i386/ldt.c -5dcc0bc3077c00ab53657f0cf9172f9a linux-3.0/arch/um/sys-i386/ksyms.c -eedd34c1454538a23d6c487270061b99 linux-3.0/arch/um/sys-i386/fault.c -d5293420403495a0e53c1338c69bba18 linux-3.0/arch/um/sys-i386/elfcore.c -fb41c7edc2bd9ba8400d9e68577b4b70 linux-3.0/arch/um/sys-i386/delay.c -f0205b743ca1c54a808e9e3b44f6a723 linux-3.0/arch/um/sys-i386/checksum.S -b79694675e68af098f62b7c5757be72e linux-3.0/arch/um/sys-i386/bugs.c -ca9e3b8b5b3935f3a02d1f2280757b18 linux-3.0/arch/um/sys-i386/bug.c -68d9875604d3ea645f0184961fa6b16c linux-3.0/arch/um/sys-i386/atomic64_cx8_32.S -8c1efc4eba74b4643e50913fd83ab4d9 linux-3.0/arch/um/sys-i386/asm/ptrace.h -15858642a794d85527cbc9df72ba2b5f linux-3.0/arch/um/sys-i386/asm/processor.h -b800a655ec0f924520bc8a51863fa042 linux-3.0/arch/um/sys-i386/asm/module.h -650c9d88a7a31a4af963a4c0cc4cd9e5 linux-3.0/arch/um/sys-i386/asm/elf.h -f47d0dc6af9044a76567e073bd8f00ff linux-3.0/arch/um/sys-i386/asm/archparam.h -f08ad5a804c893bf075c643ef2dc2e89 linux-3.0/arch/um/sys-i386/Makefile -2783c4c6949892c1e9951eeea38a9ad3 linux-3.0/arch/um/scripts/Makefile.rules -059d0aeed3f66acdb39f1bdfe104158e linux-3.0/arch/um/os-Linux/util.c -23bfc2326a8e4f381de04f8fe1906940 linux-3.0/arch/um/os-Linux/user_syms.c -d3a8084a125d5cebc911b46ca049dc5e linux-3.0/arch/um/os-Linux/umid.c -c554d49e894e2cb8030617b3c89fd1cf linux-3.0/arch/um/os-Linux/uaccess.c -fb16252e27ec22be4fa7f6278dad5034 linux-3.0/arch/um/os-Linux/tty.c -9a5638267f2552fd8dca175d29a1f969 linux-3.0/arch/um/os-Linux/tls.c -4be72878bea935971f3b13d5088116c3 linux-3.0/arch/um/os-Linux/time.c -5bfa62de2c08f19dad9cdd12b86abd08 linux-3.0/arch/um/os-Linux/sys-x86_64/task_size.c -55fb194e16955ba7ebc03a01b429d949 linux-3.0/arch/um/os-Linux/sys-x86_64/signal.c -bb921b4bfc120617a47fdf4ed5002ccf linux-3.0/arch/um/os-Linux/sys-x86_64/registers.c -fca4e6ca7f2d2d8c334cc178d37a9dac linux-3.0/arch/um/os-Linux/sys-x86_64/prctl.c -567406c40dfe0fcb6dee0c14c8cb7a5b linux-3.0/arch/um/os-Linux/sys-x86_64/Makefile -d2230df0e4862d4ed728503f86474121 linux-3.0/arch/um/os-Linux/sys-i386/tls.c -48f7d385664895a3737658be51f289ce linux-3.0/arch/um/os-Linux/sys-i386/task_size.c -32f653691cc0c70e51a94e883502ea71 linux-3.0/arch/um/os-Linux/sys-i386/signal.c -e8141b649414ac700c2632eda04cdbd0 linux-3.0/arch/um/os-Linux/sys-i386/registers.c -c620a77e84b59538406fe75e31c0c4b5 linux-3.0/arch/um/os-Linux/sys-i386/Makefile -99ba071503f38f24ad9c7de4a8fa2453 linux-3.0/arch/um/os-Linux/start_up.c -f97ae5a70a5780682288b3401dcfd3fe linux-3.0/arch/um/os-Linux/skas/process.c -182590f82fad3d5726ed2750c22d6612 linux-3.0/arch/um/os-Linux/skas/mem.c -5c448ff62fb157eef948bcd863a61f0a linux-3.0/arch/um/os-Linux/skas/Makefile -5fc13f5e33aa50c295aac5d9f7be1532 linux-3.0/arch/um/os-Linux/signal.c -0a0eec49b18dd2f9c63632bbf8e25b63 linux-3.0/arch/um/os-Linux/sigio.c -16666524ba090868d25759eb1a187f54 linux-3.0/arch/um/os-Linux/registers.c -e3916e0eec14f6241455ace3d80d10f0 linux-3.0/arch/um/os-Linux/process.c -f46ac30fe1a0d63251a3af9802977037 linux-3.0/arch/um/os-Linux/mem.c -395da073af76e1a66f1be1bd998ec2c9 linux-3.0/arch/um/os-Linux/main.c -b397fdd82a5946cf10d7023e2a009778 linux-3.0/arch/um/os-Linux/irq.c -fe642157eb1a78065e3d5c9f5a1380fe linux-3.0/arch/um/os-Linux/helper.c -2d654abd3f5b1f228e7687f66689353c linux-3.0/arch/um/os-Linux/file.c -bf064d80a96e1f3dc75266ae358e3fdb linux-3.0/arch/um/os-Linux/execvp.c -29a8deecbf5afbc52915cf247d451e38 linux-3.0/arch/um/os-Linux/elf_aux.c -dbc94ebdf05e1897f2f06f52b9a71a60 linux-3.0/arch/um/os-Linux/drivers/tuntap_user.c -a05a0f75e68e5467635bdc550c6d874a linux-3.0/arch/um/os-Linux/drivers/tuntap_kern.c -ba7a3cb61bad952b9245cf7cfe1f005b linux-3.0/arch/um/os-Linux/drivers/tuntap.h -dd10262878a1083b0ea1ec33426e0173 linux-3.0/arch/um/os-Linux/drivers/ethertap_user.c -fc0c65f54b407edf5fac8fed845959b0 linux-3.0/arch/um/os-Linux/drivers/ethertap_kern.c -a8d7a65e5c6c300991e11af549077180 linux-3.0/arch/um/os-Linux/drivers/etap.h -1a43f91f09758a6081b6f4cdef3c22e8 linux-3.0/arch/um/os-Linux/drivers/Makefile -c40fb91f1bac3983f07d94edfe64af07 linux-3.0/arch/um/os-Linux/aio.c -54b0209fa942ddb95e987925d644ad14 linux-3.0/arch/um/os-Linux/Makefile -ebdd03df11c7181f5bd7d0566355aa69 linux-3.0/arch/um/kernel/vmlinux.lds.S -5ba6ce07c38a6a9956347635aba01b63 linux-3.0/arch/um/kernel/uml.lds.S -2834ff041999f2ad9603b09b7f2fc0b3 linux-3.0/arch/um/kernel/umid.c -65bab1d56c023a8a9ea0658052ada898 linux-3.0/arch/um/kernel/um_arch.c -b3bbcc2fa65902e4e6fc0205f7642ef0 linux-3.0/arch/um/kernel/uaccess.c -76c4fb3ab7d918cd431a0b0962652b1d linux-3.0/arch/um/kernel/trap.c -0e8617327282a302616240b47bf8f8fa linux-3.0/arch/um/kernel/tlb.c -5b98264b6a85c8a6fbe5e6df357704b5 linux-3.0/arch/um/kernel/time.c -80616f5a43de27176a473d9700ec6dd7 linux-3.0/arch/um/kernel/sysrq.c -9e419579f610e81c8161b76967725629 linux-3.0/arch/um/kernel/syscall.c -3882befa57b9a291e1634813aac5c36b linux-3.0/arch/um/kernel/smp.c -1856fc6c156bb01a4dd65da20f99724b linux-3.0/arch/um/kernel/skas/uaccess.c -f7123f539153c2d2af0beea0accbac73 linux-3.0/arch/um/kernel/skas/syscall.c -a50d20d67769d8ede4671878af5c645e linux-3.0/arch/um/kernel/skas/process.c -20799029a90668f9b69c526989275ff4 linux-3.0/arch/um/kernel/skas/mmu.c -dcde8db13cd0c5d3c35875a6423ea6d8 linux-3.0/arch/um/kernel/skas/clone.c -26d78bf700355436134b2864f2a80230 linux-3.0/arch/um/kernel/skas/Makefile -f873eb3b81d4f5dd4444840a9cd8147b linux-3.0/arch/um/kernel/signal.c -a1c550d764c9c60de1ae9bce8292f4cb linux-3.0/arch/um/kernel/sigio.c -ac3f3ea2d448cd7b4c0e78a392314bcc linux-3.0/arch/um/kernel/reboot.c -efadb738a3147b5218b0988b1521e767 linux-3.0/arch/um/kernel/ptrace.c -91bf01c72783baa87af3737740546dac linux-3.0/arch/um/kernel/process.c -5a8a432de4e97495fa791a9ac5ee63f4 linux-3.0/arch/um/kernel/physmem.c -b1c72384d3de74a268e400a0aea5f519 linux-3.0/arch/um/kernel/mem.c -97c77d014811d8c3e0b7105836797a8e linux-3.0/arch/um/kernel/ksyms.c -29b992b704dfb6d03d3b68f11ccf7941 linux-3.0/arch/um/kernel/irq.c -21eb9226651c1d862fd9280dba34a6c8 linux-3.0/arch/um/kernel/internal.h -ff4026bae6a4812ce8944dcebfd5fa77 linux-3.0/arch/um/kernel/initrd.c -8fede65f12dfbe3cbc6fe18da06638fe linux-3.0/arch/um/kernel/init_task.c -2549949b8ea1abfe09a53e391da5fe06 linux-3.0/arch/um/kernel/gprof_syms.c -19b4c4d6ca5bef2e30593410caf85a1a linux-3.0/arch/um/kernel/gmon_syms.c -7a41d10e67af40c41dd38b4f801689ca linux-3.0/arch/um/kernel/exitcode.c -3bebe06c17ee24935193cb81610eb12f linux-3.0/arch/um/kernel/exec.c -09cb2735ba34f453dded603e0f528aea linux-3.0/arch/um/kernel/early_printk.c -68abb1ed9ef6f7b8d27d7b7ed39cf277 linux-3.0/arch/um/kernel/dyn.lds.S -89bbf5e34810446dcefd86b2153e8baf linux-3.0/arch/um/kernel/config.c.in -9da9c04f71637a39c1d490cfea54a2ef linux-3.0/arch/um/kernel/asm-offsets.c -28826ebc9b333bd8b7a86a5b6ad92e73 linux-3.0/arch/um/kernel/Makefile -ecb697aee1533fded0a6482d89556992 linux-3.0/arch/um/include/shared/user.h -991437b920ebd22230eba447ba502bed linux-3.0/arch/um/include/shared/um_uaccess.h -6d59a16d76dbe36e24496d463748efcb linux-3.0/arch/um/include/shared/um_mmu.h -dc8893a742cf9e602339ef634e5e6afe linux-3.0/arch/um/include/shared/um_malloc.h -59e3551e5e0a6e242082b3ab95752d4c linux-3.0/arch/um/include/shared/ubd_user.h -c0d5dc1e6511b2c7c7abe1194cbd3d0e linux-3.0/arch/um/include/shared/tlb.h -ceea0878ae30bb2e4bc0b444c80f9278 linux-3.0/arch/um/include/shared/task.h -487caf1991d06986822e812c2ee109fd linux-3.0/arch/um/include/shared/sysrq.h -72843e85f68ed82a6bdb4342892e7bcc linux-3.0/arch/um/include/shared/syscall.h -3be0a1a792967e96dfaae2ce36de7f29 linux-3.0/arch/um/include/shared/skas_ptregs.h -5c747277cfcb3114b0021fac572c1b55 linux-3.0/arch/um/include/shared/skas_ptrace.h -eeb2b47b405c75484b1c1fc9055cca9e linux-3.0/arch/um/include/shared/skas/stub-data.h -9fc4220fc0ad67f42b6625078e1e8dc9 linux-3.0/arch/um/include/shared/skas/skas.h -00b4fb13447ffc729641675fb73a8216 linux-3.0/arch/um/include/shared/skas/proc_mm.h -085c9e1f3fe31b06e2710dda0c783a1a linux-3.0/arch/um/include/shared/skas/mm_id.h -76e0046ebf4a5c6bd041fc092e77632f linux-3.0/arch/um/include/shared/sigio.h -4ea5bd0be4189d9d233bb0f979f472a8 linux-3.0/arch/um/include/shared/registers.h -d15be9de0b35bb2f8bf4c0dc2f9e1664 linux-3.0/arch/um/include/shared/ptrace_user.h -5e9f022ba0be8a422791fcd589c07650 linux-3.0/arch/um/include/shared/process.h -1dc44a6faf89969f7aa525b076d2b99a linux-3.0/arch/um/include/shared/os.h -a61f4fa5cfe2ed10001f46126bebe84e linux-3.0/arch/um/include/shared/net_user.h -21e5fc90c9cc161cdd31a9ebfd14cd74 linux-3.0/arch/um/include/shared/net_kern.h -897e8413216656a965ae680e66918b66 linux-3.0/arch/um/include/shared/mem_user.h -1e0c7d29fb167c9cad3594a6f9973c89 linux-3.0/arch/um/include/shared/mem_kern.h -5091ec09329f0eeb8329e16325c98e48 linux-3.0/arch/um/include/shared/mem.h -75c83067b6efe768a8baeffbea48ef9f linux-3.0/arch/um/include/shared/mconsole_kern.h -2ddaabbb5db9297acb70f9b1b1154440 linux-3.0/arch/um/include/shared/mconsole.h -691ffe086f7a218d8e9459f794ce5af1 linux-3.0/arch/um/include/shared/longjmp.h -6637e97033c7cdf9a60b1ed0317d6f74 linux-3.0/arch/um/include/shared/line.h -f775d8e766e90031b5ea7b55144f228d linux-3.0/arch/um/include/shared/ldt.h -f5b4b0028e6db7072d9ed34f72dd4047 linux-3.0/arch/um/include/shared/kern_util.h -2424b47150e4035aac24d42b58ebc0fb linux-3.0/arch/um/include/shared/kern.h -bec5212d64ef6202be5e57cab059cb2d linux-3.0/arch/um/include/shared/irq_user.h -7a43ec77cc154d73620ee22ea6091371 linux-3.0/arch/um/include/shared/irq_kern.h -3d448903efe1076127252268134d034c linux-3.0/arch/um/include/shared/initrd.h -a73722671b098b19755033eb6972fbcb linux-3.0/arch/um/include/shared/init.h -0f55cb93403e50575391258d011a38fc linux-3.0/arch/um/include/shared/frame_kern.h -52609b64a4b4cb15da7bd00f4f78746c linux-3.0/arch/um/include/shared/elf_user.h -3fb997661fa2aca84831c631ebcc507d linux-3.0/arch/um/include/shared/common-offsets.h -b42e48902a9afc483ed249185064ffdb linux-3.0/arch/um/include/shared/chan_user.h -c0daa0e1b847c7bb453d489da663b50c linux-3.0/arch/um/include/shared/chan_kern.h -c57872650275971038e9a379cbc875de linux-3.0/arch/um/include/shared/as-layout.h -406f613ab4692c0afea06a551b394992 linux-3.0/arch/um/include/shared/arch.h -112a8fdb50059d4a17f06659f665a110 linux-3.0/arch/um/include/shared/aio.h -25d752a59061682ec907f7d46883edd9 linux-3.0/arch/um/include/asm/xor.h -5817cce3c050a3167bebd30960708c25 linux-3.0/arch/um/include/asm/uaccess.h -4a3e4aa320fbd76fc4363601fa96270a linux-3.0/arch/um/include/asm/topology.h -d31b3954ed143ac4d68fc726327ae8a8 linux-3.0/arch/um/include/asm/tlbflush.h -9e613f9a19ca143b4e749b4e6a8271e8 linux-3.0/arch/um/include/asm/tlb.h -9b5bf64377de763b15736ba0e61a926b linux-3.0/arch/um/include/asm/timex.h -ce8dc4fe4b758ec035ba0539e2672b56 linux-3.0/arch/um/include/asm/thread_info.h -2e1e3e897063182ed9159b3e2da8ec2d linux-3.0/arch/um/include/asm/system.h -6f5fa6e35618f7288dbbaac0430e1ec2 linux-3.0/arch/um/include/asm/smp.h -051ed8ec545458cd05c0ee2677603ed6 linux-3.0/arch/um/include/asm/setup.h -65a81164062323ba835e28c37877378e linux-3.0/arch/um/include/asm/segment.h -381515fc62a55fcaed2ed15bb1a495d3 linux-3.0/arch/um/include/asm/sections.h -58cb94a6857bffafc8ef88e1b2a56cc4 linux-3.0/arch/um/include/asm/required-features.h -718a97b51c74c0ba6f40e901f9424d21 linux-3.0/arch/um/include/asm/ptrace-generic.h -26a0d4889081ab48234a314acc47e649 linux-3.0/arch/um/include/asm/processor-generic.h -7ff29b1269868b5fdec0987c97e86fc9 linux-3.0/arch/um/include/asm/pgtable.h -6d255f3d66a1f78aced19c573aef9546 linux-3.0/arch/um/include/asm/pgtable-3level.h -0b0aeba8561cd9c7fdcc0987a628bf9d linux-3.0/arch/um/include/asm/pgtable-2level.h -e7776b65298d935ec2abf2278e0418b3 linux-3.0/arch/um/include/asm/pgalloc.h -ad8d963af78ec0182c6bee76446df614 linux-3.0/arch/um/include/asm/percpu.h -d40a01646f5fc6498cb96a4dea1c39e8 linux-3.0/arch/um/include/asm/pda.h -d433dfc7d014937e73eb08d474387b46 linux-3.0/arch/um/include/asm/pci.h -8e402a2a9a30470430a2277e157a1b11 linux-3.0/arch/um/include/asm/param.h -5b77e0bae4baf6d50095cadb33a76c61 linux-3.0/arch/um/include/asm/page_offset.h -25f0eacfccaf3b20716c22ee6ba203ef linux-3.0/arch/um/include/asm/page.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/um/include/asm/mutex.h -5d95af418dcf77ff8652d2aef8334840 linux-3.0/arch/um/include/asm/mmu_context.h -8f7f358ff7c566861629155164d9e696 linux-3.0/arch/um/include/asm/mmu.h -1df8ff2a1bb4820928420e3172ab6072 linux-3.0/arch/um/include/asm/kmap_types.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/um/include/asm/kdebug.h -2ee33dd6ec1201e562d3ff7f8580e62f linux-3.0/arch/um/include/asm/irqflags.h -4bdf5590a18ce73eb1d9ef64d0f6662d linux-3.0/arch/um/include/asm/irq_vectors.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/um/include/asm/irq_regs.h -2b4daa023756c2e5312837126d56df5a linux-3.0/arch/um/include/asm/irq.h -1276d3a13ea2d09134b8af5cefe0b254 linux-3.0/arch/um/include/asm/io.h -9badfabe34bb7fe8daf30bdae6ad39b6 linux-3.0/arch/um/include/asm/hw_irq.h -cef23086fd8bde14632f3f5cf3220ff1 linux-3.0/arch/um/include/asm/hardirq.h -228b42e1213f6ee69a59695b054ab093 linux-3.0/arch/um/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/um/include/asm/ftrace.h -c3f437086b5e9c21fdb2bbebbd372853 linux-3.0/arch/um/include/asm/fixmap.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/um/include/asm/emergency-restart.h -88c3c419455cd4e69d4777311dad76ce linux-3.0/arch/um/include/asm/dma.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/um/include/asm/device.h -d76ecfef0a023ae3ddfb14e7732a3320 linux-3.0/arch/um/include/asm/desc.h -70d7f6a9a38683748400d2f0cc21c013 linux-3.0/arch/um/include/asm/delay.h -2699952fb4d72b788c6297dfde77e604 linux-3.0/arch/um/include/asm/current.h -6d19d6c80e5cca4cf6c5050d63f57b75 linux-3.0/arch/um/include/asm/cputime.h -08f15f434ad7a60e201899c63b88b7fb linux-3.0/arch/um/include/asm/common.lds.S -8240894dc0c35b757d7d12eb09c8efac linux-3.0/arch/um/include/asm/checksum.h -90811ba1dee99bd759f10525a1036c4e linux-3.0/arch/um/include/asm/cache.h -e5994b1445c7e8732e6b3880035bcd6d linux-3.0/arch/um/include/asm/bugs.h -7430a306ffd602debac52aaf38043dcc linux-3.0/arch/um/include/asm/bug.h -62fceb2da97860810ddf95d2dda2e233 linux-3.0/arch/um/include/asm/auxvec.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/um/include/asm/asm-offsets.h -7b93f3fd93f08227a372d639d84ff2de linux-3.0/arch/um/include/asm/arch_hweight.h -8c9656462635cd2de4ee32589a68d149 linux-3.0/arch/um/include/asm/apic.h -1a42b010dd6927cef8fa2a70fd8c6e25 linux-3.0/arch/um/include/asm/a.out-core.h -10e060ae1d666abc58caccc6cc3a9606 linux-3.0/arch/um/drivers/xterm_kern.c -f2f586ffee5b64ddee2d6e8d057faf9b linux-3.0/arch/um/drivers/xterm.h -9cd8639d3fa07d57e763fc5fa7963393 linux-3.0/arch/um/drivers/xterm.c -714a4b01b34090b4a8bf37eea00ad0ab linux-3.0/arch/um/drivers/vde_user.c -1b350edc4db5a164481e9b385d883f5a linux-3.0/arch/um/drivers/vde_kern.c -733092212cf118e4d60b2d56ccd84ca6 linux-3.0/arch/um/drivers/vde.h -603054efb2154971dc070d00582e4cfc linux-3.0/arch/um/drivers/umcast_user.c -6e98acd603e466a98feea776a1b9425b linux-3.0/arch/um/drivers/umcast_kern.c -01d078d0a3c709c50240a6f70f19329e linux-3.0/arch/um/drivers/umcast.h -77401ba72aae06243d22d3d0a36ae8c8 linux-3.0/arch/um/drivers/ubd_user.c -0cd6e852515edd8c97392cdcb6ac63e7 linux-3.0/arch/um/drivers/ubd_kern.c -986d0d95e958d19683c0c66a47c9a4de linux-3.0/arch/um/drivers/tty.c -7706e4aa146fdbcffcff8964437ddd05 linux-3.0/arch/um/drivers/stdio_console.h -fd28cc6e9bbb9bfc03b3b34f042b5acd linux-3.0/arch/um/drivers/stdio_console.c -06a73dd58509adacb879c314fc58103b linux-3.0/arch/um/drivers/stderr_console.c -26bdd651f2ca64a2529567bbc31df125 linux-3.0/arch/um/drivers/ssl.h -1ff3856f6a932cc09ed4502c3d985136 linux-3.0/arch/um/drivers/ssl.c -272e43b0c13d3ec88aacecec408ffbcd linux-3.0/arch/um/drivers/slirp_user.c -3004ee9ec028e38b6e527220b5fbfc58 linux-3.0/arch/um/drivers/slirp_kern.c -49546f37d34a9e818e19f67bddb30ce4 linux-3.0/arch/um/drivers/slirp.h -8876a854a03b3e69bf12baa99d249c5d linux-3.0/arch/um/drivers/slip_user.c -5ef3d0f8da6e305646a6d96e4d99bdc8 linux-3.0/arch/um/drivers/slip_kern.c -f32c2bf0d635e8d4389d094376d602ec linux-3.0/arch/um/drivers/slip_common.h -fbce2375e36f69a90a6e1e8172ef771b linux-3.0/arch/um/drivers/slip_common.c -56e298be0e005fc50e720280c3556404 linux-3.0/arch/um/drivers/slip.h -e5f95208db7fb44928ac303fb5d359c9 linux-3.0/arch/um/drivers/random.c -48ca98646d0961e803611ebb9e0e72b2 linux-3.0/arch/um/drivers/pty.c -8aa9e2ccc43f9a8fa4fd659891bfcde6 linux-3.0/arch/um/drivers/port_user.c -3346083cafe12e652ffc51e351161113 linux-3.0/arch/um/drivers/port_kern.c -d8a3a8d81a967b43583d482f79d8f75a linux-3.0/arch/um/drivers/port.h -04a9dccf4e21cdb8ca9862bb7780b31f linux-3.0/arch/um/drivers/pcap_user.h -9b99bc3fd113706aac94f0cecd71d689 linux-3.0/arch/um/drivers/pcap_user.c -418217597c2a9db5c997518b3d1f56b9 linux-3.0/arch/um/drivers/pcap_kern.c -0f2041afd4587dd2b71aaf915e05ae4a linux-3.0/arch/um/drivers/null.c -c11e172d1b277039771d76660542ebdf linux-3.0/arch/um/drivers/net_user.c -d4650fa9c71e31d5621589bd1016600e linux-3.0/arch/um/drivers/net_kern.c -729e6e416a2240a2e0c49182e8f51e00 linux-3.0/arch/um/drivers/mmapper_kern.c -0e4a8996e1d33e75934ffa71b5c5408c linux-3.0/arch/um/drivers/mconsole_user.c -eaeb7e2553440bb4fe461e069f6a4227 linux-3.0/arch/um/drivers/mconsole_kern.c -dc424e7cf2f5480d04730d2a56412530 linux-3.0/arch/um/drivers/line.c -992b6deb594796e6baa260a816a6c6c9 linux-3.0/arch/um/drivers/hostaudio_kern.c -42700ef3bf64f4e34017805940d05566 linux-3.0/arch/um/drivers/harddog_user.c -c0812574f5f6aae70cf1e316c3b502fc linux-3.0/arch/um/drivers/harddog_kern.c -c2de66543ec3fdade9caf6e87507f08f linux-3.0/arch/um/drivers/fd.c -4c50528707901cabdede1e6ea20078ae linux-3.0/arch/um/drivers/daemon_user.c -2095a8ba9ede65964f4ea7bb44407bae linux-3.0/arch/um/drivers/daemon_kern.c -6b1b9804ec8b7f1b56f5cbb9382e008e linux-3.0/arch/um/drivers/daemon.h -16a3dc1c95c83af9aaa00967c1ef535b linux-3.0/arch/um/drivers/cow_user.c -ef639db699b3fbbc4a7d99bc97440678 linux-3.0/arch/um/drivers/cow_sys.h -c69cf384d37e14c1deb0a5f20c94fc7c linux-3.0/arch/um/drivers/cow.h -3902d356196fd8bd3dcc4a88df6e9280 linux-3.0/arch/um/drivers/chan_user.c -21a00b0ca54905a19683ab9da29dfb45 linux-3.0/arch/um/drivers/chan_kern.c -e5829a96a8fefc0f10d66f6b03b1ea8e linux-3.0/arch/um/drivers/Makefile -bdc516cde0188ebe268dd440aa691d23 linux-3.0/arch/um/defconfig -0db9acc4109d322991d1cb5bb19e48d5 linux-3.0/arch/um/Makefile-x86_64 -23be66965fe2698e58778d0caffe8c33 linux-3.0/arch/um/Makefile-skas -bb7bb42bea2eb64749b94789741b9d7b linux-3.0/arch/um/Makefile-ppc -a8b523ed51a30eb1953d392e8524a098 linux-3.0/arch/um/Makefile-os-Linux -fe3baf771ed79b237b62961d8d85f462 linux-3.0/arch/um/Makefile-ia64 -97a916c49765fe43235f7f710d921202 linux-3.0/arch/um/Makefile-i386 -6b543f7a0b917e5e09d19854934db60a linux-3.0/arch/um/Makefile -bac1ce8105f4ed257dc87518defc2d3e linux-3.0/arch/um/Kconfig.x86 -dd31a98cd040f6accf4feea35f6f8d24 linux-3.0/arch/um/Kconfig.um -517e33ea97d18f45a25bd31a8c5b50b3 linux-3.0/arch/um/Kconfig.rest -0dfc855727e5042851ac8fadcdaa6eda linux-3.0/arch/um/Kconfig.net -f181ad53161034e50784d6ba09da5b2b linux-3.0/arch/um/Kconfig.debug -c73fccda08c4fb222758e931cf36e043 linux-3.0/arch/um/Kconfig.common -6aa8543c2e785533427bbe99e30991f7 linux-3.0/arch/um/Kconfig.char -73279380a7c242059cd8c41b457b9e30 linux-3.0/arch/um/.gitignore -b03ff4ce8043f419c4a4727af8a32fb6 linux-3.0/arch/tile/mm/pgtable.c -40ada3d51908d62e8bba545285bfc376 linux-3.0/arch/tile/mm/mmap.c -2b560630c29ef531f95ffc958785026b linux-3.0/arch/tile/mm/migrate_64.S -a0345511e62407964384e15b7e40e5ea linux-3.0/arch/tile/mm/migrate_32.S -25c994e9165da17d00ae38778dbc9a40 linux-3.0/arch/tile/mm/migrate.h -d8911f2b93030b0d6bbf4a5bbce2cb08 linux-3.0/arch/tile/mm/init.c -24e59743dd41a6805454d135503256bb linux-3.0/arch/tile/mm/hugetlbpage.c -4fbcb34389ec692bce1fb897b7c1b1f1 linux-3.0/arch/tile/mm/homecache.c -c6bbe16f9be070c20a4ffc039f25171f linux-3.0/arch/tile/mm/highmem.c -3a6b63f3b07b44e64d0cb7ff00a9d546 linux-3.0/arch/tile/mm/fault.c -682beaa563910380908552b05d1fda32 linux-3.0/arch/tile/mm/extable.c -afdfca79e0333576dc31f65dac2dc555 linux-3.0/arch/tile/mm/elf.c -9cdee369e074f9a7eaa95eb35108bef5 linux-3.0/arch/tile/mm/Makefile -7fe6975289d08d6ef1d0c8f9bec2d242 linux-3.0/arch/tile/lib/usercopy_64.S -dc90289b0dc991bd1b34a4a68056bf35 linux-3.0/arch/tile/lib/usercopy_32.S -ecb78f6076b82926a597e395cdea7e2c linux-3.0/arch/tile/lib/uaccess.c -27f2d380ec9d026e9787f009481975e8 linux-3.0/arch/tile/lib/strlen_64.c -8f862259274b06553e33e360276143fe linux-3.0/arch/tile/lib/strlen_32.c -12a6889c9e0bb5ddab49d0cb94f2c756 linux-3.0/arch/tile/lib/strchr_64.c -fd1a2ad6beea3a64070806ba55b38d12 linux-3.0/arch/tile/lib/strchr_32.c -8b9e5ec1f636a5d86947dcb0341e3b95 linux-3.0/arch/tile/lib/spinlock_common.h -af96b5f4a41645d03abf148ef7ce8c9f linux-3.0/arch/tile/lib/spinlock_64.c -1c5e90f2f23910e3a6754a935b918b26 linux-3.0/arch/tile/lib/spinlock_32.c -62da19ed7b7f0e53fcd76ae14c3e85b5 linux-3.0/arch/tile/lib/memset_64.c -0615d35119c1bce721fa58d09a0ba16c linux-3.0/arch/tile/lib/memset_32.c -f3df895ff9975742a91af2ecf7ba56b0 linux-3.0/arch/tile/lib/memmove.c -9761a637a77e3c758a0c6d679786c615 linux-3.0/arch/tile/lib/memcpy_user_64.c -af6f5c1733704ff15d0b2216bc4b0117 linux-3.0/arch/tile/lib/memcpy_tile64.c -10308052f66373a0f14f7aea56f21eed linux-3.0/arch/tile/lib/memcpy_64.c -2100b215e861fd22c73c49623be4eb4d linux-3.0/arch/tile/lib/memcpy_32.S -706e33d6ab45f4ad95668e46f1db2f65 linux-3.0/arch/tile/lib/memchr_64.c -803ae8e8ed75281c8fff01a3899aca26 linux-3.0/arch/tile/lib/memchr_32.c -eeff0d3b6ba7c0f504f9726a4dae2f6a linux-3.0/arch/tile/lib/exports.c -b96a74eada80d0b8b12bd339393e610e linux-3.0/arch/tile/lib/delay.c -fbc2ee0f630d0177194a2485bcf813d2 linux-3.0/arch/tile/lib/cpumask.c -c243ce4184f21fab92cec0e07b405852 linux-3.0/arch/tile/lib/checksum.c -4faaaaf368e86ed666181f3ff9c12499 linux-3.0/arch/tile/lib/cacheflush.c -8332050744a5b3f712943bdb452eb1d5 linux-3.0/arch/tile/lib/atomic_asm_32.S -b4f61c195f3ddcc6c430a3c1b0732867 linux-3.0/arch/tile/lib/atomic_32.c -899ea58ec4872964cbcf18b6f2355444 linux-3.0/arch/tile/lib/Makefile -ffac170e55a92c75d808d074e2af1562 linux-3.0/arch/tile/kvm/Kconfig -6ecf0f8fd784de3762b8c8b2bd7beb7d linux-3.0/arch/tile/kernel/vmlinux.lds.S -88d2edf11929e468d5e5e4c6b69bb54e linux-3.0/arch/tile/kernel/traps.c -de9d6162748c91bc6ea389e2514fa9be linux-3.0/arch/tile/kernel/tlb.c -e9a366360809b750f45cfae7989cb52f linux-3.0/arch/tile/kernel/time.c -14a8b41997ccda45aa032da753d2c1d3 linux-3.0/arch/tile/kernel/tile-desc_64.c -2f6ab1858a412b5aaee2f81f35546d80 linux-3.0/arch/tile/kernel/tile-desc_32.c -99f741ebb6e6a261ef7de7d2ff277ea4 linux-3.0/arch/tile/kernel/sysfs.c -f5a6d875e1cc4dcdc7c60859c2694442 linux-3.0/arch/tile/kernel/sys.c -bf26bb5b32260596d93b89bd1d192f78 linux-3.0/arch/tile/kernel/stack.c -3007f18a81e7630f7219ae1780a54be2 linux-3.0/arch/tile/kernel/smpboot.c -caa92b6607c4dae8d853c9578cd6d03b linux-3.0/arch/tile/kernel/smp.c -6749d13917183521f33c321ab9c9b27c linux-3.0/arch/tile/kernel/single_step.c -98c9efdfd274f12bc754ea1bd7772239 linux-3.0/arch/tile/kernel/signal.c -b7eb88c01ce937a5ac8292d2800154dc linux-3.0/arch/tile/kernel/setup.c -9fdc961040419d4ec9748a3aab49ed25 linux-3.0/arch/tile/kernel/relocate_kernel.S -5a2d5de71c84998d1b336656a0635ce0 linux-3.0/arch/tile/kernel/regs_64.S -79688581b8f3e930ae2a730aece2a70b linux-3.0/arch/tile/kernel/regs_32.S -10a3620aedd76fc78ea2b6800dffbb2b linux-3.0/arch/tile/kernel/reboot.c -0368b2b96a6760c2d37a23ad4f7cf6a6 linux-3.0/arch/tile/kernel/ptrace.c -5a608182c00ded8b04ec68c582c4d418 linux-3.0/arch/tile/kernel/process.c -a34b829d6f58230bb7553a6419513b64 linux-3.0/arch/tile/kernel/proc.c -5177d16354c7f94be279fbe7482c9476 linux-3.0/arch/tile/kernel/pci.c -d8618703bf04c784bad1ee9e4d2702a4 linux-3.0/arch/tile/kernel/pci-dma.c -f9d2f85de101256b8555907cfcba28a9 linux-3.0/arch/tile/kernel/module.c -2d543a297ca6b94125dcd162617f1d89 linux-3.0/arch/tile/kernel/messaging.c -4ff2f1098ac6d31325183137e97b8aa3 linux-3.0/arch/tile/kernel/machine_kexec.c -068f6f1d5c1cf2bf2e0f9a840ba925dc linux-3.0/arch/tile/kernel/irq.c -6da68118fc1f426bcb209c51f11af249 linux-3.0/arch/tile/kernel/intvec_64.S -544d18f1856056b4449fb1b454cb76ce linux-3.0/arch/tile/kernel/intvec_32.S -737b0e2aeaf86c926db9769cf85ca2be linux-3.0/arch/tile/kernel/init_task.c -c37753b3ff0308e021a9d78f9510115f linux-3.0/arch/tile/kernel/hvglue.lds -dafb9b3e8696788a4267385432855581 linux-3.0/arch/tile/kernel/head_64.S -12b0b48ad8c2f85a7cad80dabacdbfbc linux-3.0/arch/tile/kernel/head_32.S -d604a26b27af3b08397ab14860a98144 linux-3.0/arch/tile/kernel/hardwall.c -55c5bb34d7622218d226d2251d000dc6 linux-3.0/arch/tile/kernel/futex_64.S -f561157ae866ab1c5f3db17d828f081d linux-3.0/arch/tile/kernel/entry.S -5555040727cae936920a8f481360024d linux-3.0/arch/tile/kernel/early_printk.c -58a13663e0e9ffab9de4fe7a3ee819d5 linux-3.0/arch/tile/kernel/compat_signal.c -e48e0657fcd47ef0bc7a18d3d3afbdc1 linux-3.0/arch/tile/kernel/compat.c -04eed12eb77f1867a717768881a323b5 linux-3.0/arch/tile/kernel/backtrace.c -9c9bcd686a57a2511af9572d564c989c linux-3.0/arch/tile/kernel/asm-offsets.c -56da26ba295cef044a1f8e86ee8967a9 linux-3.0/arch/tile/kernel/Makefile -76ec1230fc9b67c4695776ba32b24f68 linux-3.0/arch/tile/include/hv/syscall_public.h -e7e8f04970abbc1d03ddb711cb620e99 linux-3.0/arch/tile/include/hv/netio_intf.h -ca937f4c2e347dc653e05f38040fe71d linux-3.0/arch/tile/include/hv/netio_errors.h -345e5799eb0436c016f4731020f09799 linux-3.0/arch/tile/include/hv/hypervisor.h -ff263a703b4f020d8cf3898ad3e9faa4 linux-3.0/arch/tile/include/hv/drv_xgbe_intf.h -d352c364409402ca6593a01ec1e90039 linux-3.0/arch/tile/include/hv/drv_xgbe_impl.h -077c4fb8af8c17ef99e0c3dc2a4619e3 linux-3.0/arch/tile/include/hv/drv_pcie_rc_intf.h -70a965e54ec0f714a95886c2bed95bfe linux-3.0/arch/tile/include/hv/drv_mshim_intf.h -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/tile/include/asm/xor.h -f43b21e84876a6f8d268b1ca52f64390 linux-3.0/arch/tile/include/asm/vga.h -eda04fa43d665e2ae00611e5b052c11d linux-3.0/arch/tile/include/asm/user.h -3e1a7b090ec3d16d969e552d1d700bd6 linux-3.0/arch/tile/include/asm/unistd.h -1866773a69a25752a1929bb23896653c linux-3.0/arch/tile/include/asm/unaligned.h -54ef8b4281a8709709fd75155efac8f2 linux-3.0/arch/tile/include/asm/ucontext.h -6d53040e31a7d6eeced7130b4b990645 linux-3.0/arch/tile/include/asm/uaccess.h -b71092c914ac20c4f96e66104cbbafba linux-3.0/arch/tile/include/asm/types.h -4151a2c1f56d82c0c0fc277619bb59ea linux-3.0/arch/tile/include/asm/traps.h -2ea3393f4840409009ed82a7faaaec37 linux-3.0/arch/tile/include/asm/topology.h -8eff093cc9a41464bf2490d590206db2 linux-3.0/arch/tile/include/asm/tlbflush.h -98587bd00accf3891f4fc4afdb817122 linux-3.0/arch/tile/include/asm/tlb.h -7c7acc3029f9b71b0a764a34812cf5a7 linux-3.0/arch/tile/include/asm/timex.h -93b0b8c23badcf3b34e67f652c38a3d5 linux-3.0/arch/tile/include/asm/thread_info.h -55f8ec5e3a7ee0e398b33d52b4d28e89 linux-3.0/arch/tile/include/asm/termios.h -9d9ec0d765b9eba91700fcb860f4b9ee linux-3.0/arch/tile/include/asm/termbits.h -1832260d2f33f09e87b5235d87d6dca7 linux-3.0/arch/tile/include/asm/system.h -51d715ec8c6424bdc7ff9c2489e930c0 linux-3.0/arch/tile/include/asm/syscalls.h -e61d2686251ec9f742f38c1bf2129c01 linux-3.0/arch/tile/include/asm/syscall.h -97ef5ebf498ab4f53df4dfb1fd5696fa linux-3.0/arch/tile/include/asm/swab.h -484ecd26e9f72135de76224f90e72bce linux-3.0/arch/tile/include/asm/string.h -4b9103b93197bd194432f9b1415d31dd linux-3.0/arch/tile/include/asm/statfs.h -594525fcc6821e4dc3e7b6098abf324b linux-3.0/arch/tile/include/asm/stat.h -14bf9ac7727a5e5c8b575f350a936d62 linux-3.0/arch/tile/include/asm/stack.h -1625a6d98f0566530ba451f748e7e301 linux-3.0/arch/tile/include/asm/spinlock_types.h -94e553257c9cee1a72b3f9889f5a8802 linux-3.0/arch/tile/include/asm/spinlock_64.h -f7a1224c38cf31b5511f8da9c5ca5e7e linux-3.0/arch/tile/include/asm/spinlock_32.h -99e6922af9f52b43f1f0a471f68d4a58 linux-3.0/arch/tile/include/asm/spinlock.h -965625ab160bad6b06ffae41abf01378 linux-3.0/arch/tile/include/asm/sockios.h -892b575276515e01057bf49a9806fafc linux-3.0/arch/tile/include/asm/socket.h -f66694791a00c09d1ddbdb0b837d5337 linux-3.0/arch/tile/include/asm/smp.h -921dac9762e0cc59ab13b8ae8314a7bc linux-3.0/arch/tile/include/asm/signal.h -c8d00ee9c7108148ac6b26df66f40922 linux-3.0/arch/tile/include/asm/siginfo.h -a4a3792c8f96f9ba6386a88f20690428 linux-3.0/arch/tile/include/asm/sigframe.h -8fd959041fa0baf63d472d647851fc13 linux-3.0/arch/tile/include/asm/sigcontext.h -99c40bee77ebb536b422523c91382c95 linux-3.0/arch/tile/include/asm/shmparam.h -c1f66b7faa2dfa17efdbdf1e416be250 linux-3.0/arch/tile/include/asm/shmbuf.h -48e0eed37821936811d94ce97ede78cd linux-3.0/arch/tile/include/asm/setup.h -b7fdb5c8ffc0fcea37c954a24e7e1777 linux-3.0/arch/tile/include/asm/serial.h -54b0fb0eed0916e7b2e6918f2bd8e3c3 linux-3.0/arch/tile/include/asm/sembuf.h -238810cab995c3422706838c03da232a linux-3.0/arch/tile/include/asm/sections.h -965fa9b6105548b21768e79c657be36a linux-3.0/arch/tile/include/asm/scatterlist.h -36eb2a82010cc2b8194bde001a28c7a5 linux-3.0/arch/tile/include/asm/resource.h -838e11ba634bb77fd10b52c8bce5fecd linux-3.0/arch/tile/include/asm/ptrace.h -4a36de565a921ee2d76a622ccd62dab8 linux-3.0/arch/tile/include/asm/processor.h -b0cb90ca371b637492e853ed84410b75 linux-3.0/arch/tile/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/tile/include/asm/poll.h -f250af6d4c971f9f433900da08099a94 linux-3.0/arch/tile/include/asm/pgtable_64.h -c5cfd9ff6eb3edf21fe29a7b1972a2ab linux-3.0/arch/tile/include/asm/pgtable_32.h -dc76d11e52b4b67e54fa2782fc6c34c1 linux-3.0/arch/tile/include/asm/pgtable.h -c1d331beed116b0ce6c5eb02513b1bc8 linux-3.0/arch/tile/include/asm/pgalloc.h -1803ded82de9ddfc2041b2e7e043441b linux-3.0/arch/tile/include/asm/percpu.h -0d8de3ad941be984877b9d618a294c99 linux-3.0/arch/tile/include/asm/pci.h -419018600d2e2fc52e024d83ed2e460c linux-3.0/arch/tile/include/asm/parport.h -29dbb685f25e0e09aa59624964e2b815 linux-3.0/arch/tile/include/asm/param.h -55ef1db375a11ff602d7b2b00ba912a7 linux-3.0/arch/tile/include/asm/page.h -e49d6426eb7a61b699fee80daa7f7a70 linux-3.0/arch/tile/include/asm/opcode_constants_64.h -41b2691a648ce17ac00313fd619f3e5b linux-3.0/arch/tile/include/asm/opcode_constants_32.h -79a4ebf885be8bb87bd99d6f6c3e140b linux-3.0/arch/tile/include/asm/opcode_constants.h -d165b8df107fd90ecb0679a6ee10a485 linux-3.0/arch/tile/include/asm/opcode-tile_64.h -85825646f191fc7e23877106704dd38a linux-3.0/arch/tile/include/asm/opcode-tile_32.h -d73f60f6b025c4dd6a9d582f5e521061 linux-3.0/arch/tile/include/asm/opcode-tile.h -7c98219c1cb99aa129d5c3baa7ed0f90 linux-3.0/arch/tile/include/asm/mutex.h -a8606cb7f0b36b7ffed407a409829c9d linux-3.0/arch/tile/include/asm/msgbuf.h -2a4859f2c2a0882f19c3640957372ecc linux-3.0/arch/tile/include/asm/module.h -b2e5eee8167fb190d71b9a62530b4150 linux-3.0/arch/tile/include/asm/mmzone.h -679bd2da0f6d7c512228a44ef882c42e linux-3.0/arch/tile/include/asm/mmu_context.h -5aea0b7ecea43bf0faa5b1e1443fd279 linux-3.0/arch/tile/include/asm/mmu.h -c1f41d3f66e614f630effdeadaf5b4b1 linux-3.0/arch/tile/include/asm/mman.h -de3972c9eaac12f7d95a0473ce56f2ca linux-3.0/arch/tile/include/asm/memprof.h -dd5c2452f777c57e923e1b3de9ac2c14 linux-3.0/arch/tile/include/asm/local.h -3ef8ea4a4acb99a7675f92efabb0968e linux-3.0/arch/tile/include/asm/linkage.h -cbe8c9c007ebfbbe3eaa994cb6cd9206 linux-3.0/arch/tile/include/asm/kmap_types.h -c79e3b70ec5c0206aa9177a45953dc55 linux-3.0/arch/tile/include/asm/kexec.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/tile/include/asm/kdebug.h -faec38b71087dba78380eef15b956cd4 linux-3.0/arch/tile/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/tile/include/asm/irq_regs.h -3b0f01867ce86a86ab1cfc0b766a345c linux-3.0/arch/tile/include/asm/irq.h -a5cedbd444be7216303596ec4d505047 linux-3.0/arch/tile/include/asm/ipcbuf.h -4a2a5d77d3d265e0d54eec802e16e1f0 linux-3.0/arch/tile/include/asm/ipc.h -8fd83dc41ce32aadea0c9aa10b611a15 linux-3.0/arch/tile/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/tile/include/asm/ioctl.h -53da7f2fe26d81a08c758de2c814f05f linux-3.0/arch/tile/include/asm/io.h -991c8b86cd7ca82f7725cb5570747cff linux-3.0/arch/tile/include/asm/ide.h -290530fb72a891337814ce637c6cfc0d linux-3.0/arch/tile/include/asm/hw_irq.h -838730851f2ae28a03e6b48bdcab9804 linux-3.0/arch/tile/include/asm/hv_driver.h -d478b52a1cc1763f883118872cd1911e linux-3.0/arch/tile/include/asm/hugetlb.h -46c0d4a659740406e075c206f916bb25 linux-3.0/arch/tile/include/asm/homecache.h -c273f4b1bcf9b1f60f918e7491ed4a6b linux-3.0/arch/tile/include/asm/highmem.h -5017da18a6c71f068f4df5bbe6be2c49 linux-3.0/arch/tile/include/asm/hardwall.h -e02c0e59d85aa838dde82b4f9c0e1df3 linux-3.0/arch/tile/include/asm/hardirq.h -d461cf289e65bf9f84f6b0366b50c5c4 linux-3.0/arch/tile/include/asm/futex.h -e56cbaec17a601708b030a3b811fe87f linux-3.0/arch/tile/include/asm/ftrace.h -868e34097b344ea1c140f79ac43733eb linux-3.0/arch/tile/include/asm/fixmap.h -a598360d85106db07897c937209e63eb linux-3.0/arch/tile/include/asm/fcntl.h -6992ca0c4939de26e55488ce729fc0a4 linux-3.0/arch/tile/include/asm/fb.h -05366a204880e8cf1fcd3e61ef3cfa41 linux-3.0/arch/tile/include/asm/errno.h -6df22cf6584ec54da208b4a77ec955d6 linux-3.0/arch/tile/include/asm/emergency-restart.h -38660a6d776d08f72d49cc75e1530b9c linux-3.0/arch/tile/include/asm/elf.h -f2cab87b2f92d3d6331495855217bf90 linux-3.0/arch/tile/include/asm/edac.h -5962acf917eded859d1d6457c4355e2e linux-3.0/arch/tile/include/asm/dma.h -0038cd14cf0f3f525ed924039724846f linux-3.0/arch/tile/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/tile/include/asm/div64.h -06bb9d0bae4c999b6739f1102f01d44f linux-3.0/arch/tile/include/asm/device.h -465b8e1b657b55999731dc70833caa1a linux-3.0/arch/tile/include/asm/delay.h -83504618d20aa511f4ee05ccb0e224cc linux-3.0/arch/tile/include/asm/current.h -e07bb1fbce67b580c13b57c94d6eb580 linux-3.0/arch/tile/include/asm/cputime.h -4ea9dfceeb8b94b45c4058efdfd30a6c linux-3.0/arch/tile/include/asm/compat.h -12905a7ed71a7807285b14fd5f8463b1 linux-3.0/arch/tile/include/asm/checksum.h -7e69a8d791f3db179891b995d075e67e linux-3.0/arch/tile/include/asm/cacheflush.h -0e6cdcccc3748a9261bde778b470b747 linux-3.0/arch/tile/include/asm/cache.h -f782ff9eddd52937917e576bdb70eb18 linux-3.0/arch/tile/include/asm/byteorder.h -8032b078e81a3a2126cb50c13e36ebd7 linux-3.0/arch/tile/include/asm/bugs.h -91b29c47b82f09205c8b86b58314bf7f linux-3.0/arch/tile/include/asm/bug.h -ada032972cb21b79d09a27042f124866 linux-3.0/arch/tile/include/asm/bitsperlong.h -66df99d71519e77d26b9be4d6cea7f00 linux-3.0/arch/tile/include/asm/bitops_64.h -481b522aabfd9ea949e2483dbcfa8112 linux-3.0/arch/tile/include/asm/bitops_32.h -e7b774ef0173886cabbe18444f56f17d linux-3.0/arch/tile/include/asm/bitops.h -b126ee96ac45c64cb4f750e7f2dbc134 linux-3.0/arch/tile/include/asm/backtrace.h -d89fdd90dcbf5cf70c6f5afbf135b108 linux-3.0/arch/tile/include/asm/auxvec.h -20f486eaee20b1170278a5d6c40cd29f linux-3.0/arch/tile/include/asm/atomic_64.h -4ca46d519c30489ed678f3415999442a linux-3.0/arch/tile/include/asm/atomic_32.h -88d355b431d47c423c89fdfb01ea0063 linux-3.0/arch/tile/include/asm/atomic.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/tile/include/asm/asm-offsets.h -b04309b94281c731db9bd38c915ce8b7 linux-3.0/arch/tile/include/asm/Kbuild -44c4996540f319d4334a4d72e70006da linux-3.0/arch/tile/include/arch/spr_def_64.h -6a7f82f715057f46f9f5fce28b3768b4 linux-3.0/arch/tile/include/arch/spr_def_32.h -f3e641a8ba2866e42462512bde3b5112 linux-3.0/arch/tile/include/arch/spr_def.h -2a37fac704c7f1d829caa74d846db8b6 linux-3.0/arch/tile/include/arch/sim_def.h -42ed144b8aa0c20fd9b62c17cd979029 linux-3.0/arch/tile/include/arch/sim.h -3a11a7cb8a844bbf9ad1fe01aca1411b linux-3.0/arch/tile/include/arch/interrupts_64.h -0636bf2ad3700c0212ac83ea75162299 linux-3.0/arch/tile/include/arch/interrupts_32.h -77a282e27272f4e5940209fffec919bd linux-3.0/arch/tile/include/arch/interrupts.h -a14eb4a53acb122198ac3cf2072d0adc linux-3.0/arch/tile/include/arch/icache.h -9852f5430fc37d6955c3482debb9391c linux-3.0/arch/tile/include/arch/chip_tilepro.h -e74f0deae88c282e8ce51a3ac9278c7f linux-3.0/arch/tile/include/arch/chip_tilegx.h -7c246f378e5fbf9c3688a3aafc40777c linux-3.0/arch/tile/include/arch/chip_tile64.h -faf4f5d19a42c53840fd5dd4ed81e4b0 linux-3.0/arch/tile/include/arch/chip.h -377c323332711938871adc69aa7619ed linux-3.0/arch/tile/include/arch/abi.h -e4e932da1e002d2decc0991b8d9989de linux-3.0/arch/tile/configs/tilepro_defconfig -9a1ff63351679763178aee692569b51d linux-3.0/arch/tile/configs/tilegx_defconfig -c7a61341c5505199aaf4518827b172d3 linux-3.0/arch/tile/Makefile -68a4f799d24561c7d661ed9f48fb20fb linux-3.0/arch/tile/Kconfig.debug -86ba272ef56f1e569eba8cabe70a1c6b linux-3.0/arch/tile/Kconfig -81eb3282dd34a0f5060ead52c072e6f8 linux-3.0/arch/tile/Kbuild -e5181d44ad948e19dbe1e286fdaf755d linux-3.0/arch/sparc/prom/tree_64.c -61dd5593527c0a7c5566f1c00cbd4c8d linux-3.0/arch/sparc/prom/tree_32.c -a797bd97122ec9819235044a23692bd9 linux-3.0/arch/sparc/prom/segment.c -91f27562d436a2a83d140ba2736b842b linux-3.0/arch/sparc/prom/ranges.c -c448bd4e566478697d6f9846590eb976 linux-3.0/arch/sparc/prom/printf.c -0b6f34e81e521ceb677d993801ed17ba linux-3.0/arch/sparc/prom/p1275.c -6775f61c8eddef420ca2c4095e4ffbd6 linux-3.0/arch/sparc/prom/mp.c -e289e93b0ca09467117140a371a20477 linux-3.0/arch/sparc/prom/misc_64.c -8efa54d7ddcebbf43f1cbe6bb486f40b linux-3.0/arch/sparc/prom/misc_32.c -beefca41b7521119efe0dcbd4b8b9a23 linux-3.0/arch/sparc/prom/memory.c -25aadcd8b271f2fe2430a145865718d9 linux-3.0/arch/sparc/prom/init_64.c -44a8371e6d7ddd9312efa1b6fc3be6c9 linux-3.0/arch/sparc/prom/init_32.c -4c813a7d9b67447aa974b7318c4b18da linux-3.0/arch/sparc/prom/console_64.c -6ab7317c76f357b26bdee76a426cb1f1 linux-3.0/arch/sparc/prom/console_32.c -b9222c8cd01ffef8f510eed304cdd478 linux-3.0/arch/sparc/prom/cif.S -1b7b635cdc5426797feb811b02368348 linux-3.0/arch/sparc/prom/bootstr_64.c -bb012dfc14d7e4b3f55d2258c8665d7b linux-3.0/arch/sparc/prom/bootstr_32.c -c6216ec32d685708e4526ad01274173c linux-3.0/arch/sparc/prom/Makefile -ad78b479aa29180fc8ad22e606c14f0e linux-3.0/arch/sparc/oprofile/init.c -b908d1ed9671fa0c2dda6ded887f8dd2 linux-3.0/arch/sparc/oprofile/Makefile -23ee35d6024552bf073753d5cfe5abd5 linux-3.0/arch/sparc/mm/viking.S -301a80bd7d93ba79395680bda5c616db linux-3.0/arch/sparc/mm/ultra.S -e3b8024070af98dde4969bbb1b4ad2c8 linux-3.0/arch/sparc/mm/tsunami.S -a4b4782910c0b005d514c5c3bfba4ff8 linux-3.0/arch/sparc/mm/tsb.c -33dd737b6aa284fc1ba552add644c0b7 linux-3.0/arch/sparc/mm/tlb.c -337f289346f549dba1027dbbefcb2ad6 linux-3.0/arch/sparc/mm/swift.S -85bbe7265e0a735c557fdf1813a2cfbf linux-3.0/arch/sparc/mm/sun4c.c -e6ae98a0f14e6f88c3451cf73a2f63f9 linux-3.0/arch/sparc/mm/srmmu.c -787593b767ae00f1cd1f746ff708533c linux-3.0/arch/sparc/mm/nosun4c.c -d686ee0c37c56f08e12e4acbabb8d2ab linux-3.0/arch/sparc/mm/loadmmu.c -ca568e37525b5ac4ea0174aa5585846f linux-3.0/arch/sparc/mm/leon_mm.c -1594b2df48f26bea981a22444d6a8b60 linux-3.0/arch/sparc/mm/iommu.c -17363842c108d17c12c64e433e1cb3f5 linux-3.0/arch/sparc/mm/io-unit.c -72f1e91801734790e7ffa7e604eaa2d8 linux-3.0/arch/sparc/mm/init_64.h -043a624c8ce24db820e0fe109c53f315 linux-3.0/arch/sparc/mm/init_64.c -806536236ffa29cec4e1b0121c8c90a3 linux-3.0/arch/sparc/mm/init_32.c -e0a93a5066ff6874ddbf5c120c9442a8 linux-3.0/arch/sparc/mm/hypersparc.S -acb19eff0c3713251fa032ddde2f6485 linux-3.0/arch/sparc/mm/hugetlbpage.c -bd943d7ab4983595e30254b7be283cbc linux-3.0/arch/sparc/mm/highmem.c -417bb7d738c64289c86342682df55dc0 linux-3.0/arch/sparc/mm/generic_64.c -a4c270878139aa0c5f1ae0fb6120ba7c linux-3.0/arch/sparc/mm/generic_32.c -3ce841f63e81992c1a42aa473c6f1b05 linux-3.0/arch/sparc/mm/fault_64.c -733df547920c968cb262695aaf4ac853 linux-3.0/arch/sparc/mm/fault_32.c -05144e6a2cae32ca028ab5ac6cec90ae linux-3.0/arch/sparc/mm/extable.c -2989cdddf901ea148441f2f4f7ab21a9 linux-3.0/arch/sparc/mm/btfixup.c -0a6c58356ba8ba3d1e242ed56f3d1401 linux-3.0/arch/sparc/mm/Makefile -b5dcfb958e3c79ac5754ac6d4512bbeb linux-3.0/arch/sparc/math-emu/sfp-util_64.h -8769ba4e6c32e9a3e874641f3c136153 linux-3.0/arch/sparc/math-emu/sfp-util_32.h -45dd8c8197511df4b5380412d2b8dc5b linux-3.0/arch/sparc/math-emu/math_64.c -8208d8fd1a85e23d39aab841e2d7f4e5 linux-3.0/arch/sparc/math-emu/math_32.c -0a85465714f626617d9db7204c4e222a linux-3.0/arch/sparc/math-emu/Makefile -3d6038f66cfa92e4618d399b29656f6c linux-3.0/arch/sparc/lib/xor.S -8bcc1f1c7524b9cf0211aec090f14c1b linux-3.0/arch/sparc/lib/usercopy.c -ccdee2352a8fc56a75d9bf95b5e8002d linux-3.0/arch/sparc/lib/user_fixup.c -45db2351134431255e07fee94c194424 linux-3.0/arch/sparc/lib/urem.S -ec4b965436e76041fff863c79feba0c1 linux-3.0/arch/sparc/lib/umul.S -4c86257dac4e0f6672a460ff2a85f658 linux-3.0/arch/sparc/lib/udivdi3.S -049e8544b13d8f76f757a98a09c39fcb linux-3.0/arch/sparc/lib/udiv.S -5eb300e70fdaf1da032ef42a9c7e56d5 linux-3.0/arch/sparc/lib/strncpy_from_user_64.S -e4835e4d45e6f6549c0501897da5b0e4 linux-3.0/arch/sparc/lib/strncpy_from_user_32.S -d296916b82f1f09e74f1c0c5a25e03e3 linux-3.0/arch/sparc/lib/strncmp_64.S -cdd1c60ffe3c85802f1d2caea58fbb85 linux-3.0/arch/sparc/lib/strncmp_32.S -a24387677af8f2bdcc2ee1b68bdce728 linux-3.0/arch/sparc/lib/strlen_user_64.S -27c0858e37174da865df4a78bb2b5968 linux-3.0/arch/sparc/lib/strlen_user_32.S -4b47e86c422d93510b31fcca2cf59eb9 linux-3.0/arch/sparc/lib/strlen.S -f77563ca913cc2086471da3cfb7c99de linux-3.0/arch/sparc/lib/sdiv.S -fc557208c4c2509cd5e3a86679e05bc6 linux-3.0/arch/sparc/lib/rem.S -7c3028c27032bf5c74c32fd32577e2ff linux-3.0/arch/sparc/lib/muldi3.S -3c3a0e84e04a27bee1bed653a4c37f28 linux-3.0/arch/sparc/lib/mul.S -fc5e2d3f9b328bb20748889961c0dd47 linux-3.0/arch/sparc/lib/memset.S -a159ee75880ead98f7f8f33f9c56bd9e linux-3.0/arch/sparc/lib/memscan_64.S -b5a232c49201a53f2d2c384b17f035b3 linux-3.0/arch/sparc/lib/memscan_32.S -7c51ec8131f700248f2e70dd9ae93c41 linux-3.0/arch/sparc/lib/memmove.S -4a40725da4f0ac623f1637ae2e6ec63d linux-3.0/arch/sparc/lib/memcpy.S -a0c298075ed3ed635727a417a7de7d3d linux-3.0/arch/sparc/lib/memcmp.S -0a3d58a2e0ed4b8ca2c7d96b696c753f linux-3.0/arch/sparc/lib/mcount.S -195a60915059853864f07ea82f8d92d4 linux-3.0/arch/sparc/lib/lshrdi3.S -966fa1bec7d7528207faa3704f5a7442 linux-3.0/arch/sparc/lib/locks.S -7c5bcf20ad9c795a8e3b50b4c96b25eb linux-3.0/arch/sparc/lib/libgcc.h -7764fe773b4aa185a5e0d90b68469dbb linux-3.0/arch/sparc/lib/ksyms.c -2aeb500b0094d2022191411b745dd963 linux-3.0/arch/sparc/lib/ipcsum.S -722abe67628a8c6f9c73fba61593b423 linux-3.0/arch/sparc/lib/iomap.c -2112d28059cdedae3e240bea65ac6017 linux-3.0/arch/sparc/lib/divdi3.S -6a46d8815a3351b1c522c7c51363fe21 linux-3.0/arch/sparc/lib/csum_copy_to_user.S -57cee6e4d88a5cb56fbf0ba618d84af4 linux-3.0/arch/sparc/lib/csum_copy_from_user.S -d1445407fa830ed68380798ccc6c210a linux-3.0/arch/sparc/lib/csum_copy.S -a7a676d146efc32a347f577652bf4e68 linux-3.0/arch/sparc/lib/copy_user.S -903b4868dc6b81319901b81c373ba38a linux-3.0/arch/sparc/lib/copy_page.S -e569a7be247a8af562d30ac574079729 linux-3.0/arch/sparc/lib/copy_in_user.S -71ec5bd99f660f0d0071efeeb4f4ed4b linux-3.0/arch/sparc/lib/cmpdi2.c -783e40ab6d41281f2c731cf638be3052 linux-3.0/arch/sparc/lib/clear_page.S -3e5462d83c8292b49310409747028bf7 linux-3.0/arch/sparc/lib/checksum_64.S -0cdc8ae42c13fbd0b5982e9999ebe9e7 linux-3.0/arch/sparc/lib/checksum_32.S -38af4e75289792e31a2c86b350e4bc87 linux-3.0/arch/sparc/lib/bzero.S -41b9855c034be02aa9d39fae8d3b6a54 linux-3.0/arch/sparc/lib/blockops.S -a8d922c182f4d01c8cc74ce7d9d93ec4 linux-3.0/arch/sparc/lib/bitops.S -d074cbaea1775ecc025702ae3328e918 linux-3.0/arch/sparc/lib/bitext.c -4c74d256a6a853c5f6b9ff68996d2742 linux-3.0/arch/sparc/lib/atomic_64.S -a53d8e566935cf6ea5a271a0c9f597a8 linux-3.0/arch/sparc/lib/atomic_32.S -5ee3987a3d6a24f2314b679ebd43f0c1 linux-3.0/arch/sparc/lib/atomic32.c -b5436ae48605ff969866599045cd993b linux-3.0/arch/sparc/lib/ashrdi3.S -4bbd5aa105f8f1d9f1519fdeb7d34b6f linux-3.0/arch/sparc/lib/ashldi3.S -43ee1f840d9030f3f6a36ba54ff89174 linux-3.0/arch/sparc/lib/VISsave.S -198351c10553472c4f7dcbf63af6e91f linux-3.0/arch/sparc/lib/U3patch.S -26c85ef6a42add0c84fb406b2ece42de linux-3.0/arch/sparc/lib/U3memcpy.S -62778a8bfa9764974e2a73ecd0cddd00 linux-3.0/arch/sparc/lib/U3copy_to_user.S -8bc08a88d52944aeb370d9810812516e linux-3.0/arch/sparc/lib/U3copy_from_user.S -6b923511280f8b9263036e285422e580 linux-3.0/arch/sparc/lib/U1memcpy.S -5036e374e286c2e8124b3273dc1bb1bf linux-3.0/arch/sparc/lib/U1copy_to_user.S -bafe6bcbf161c6e90e26b89b6b19c7da linux-3.0/arch/sparc/lib/U1copy_from_user.S -c7ea5d56fe1f73c62f76f22bc52c991c linux-3.0/arch/sparc/lib/PeeCeeI.c -aceedb7675f36addfda6a80fcb1b7e52 linux-3.0/arch/sparc/lib/NGpatch.S -55ec9fec52e8c9df6809c8b7d41c0d19 linux-3.0/arch/sparc/lib/NGpage.S -c5fb0c5de2dbec26734037930a5343c6 linux-3.0/arch/sparc/lib/NGmemcpy.S -69f4c2523d805aca4f271077f264669a linux-3.0/arch/sparc/lib/NGcopy_to_user.S -77c214bf5a52cfa90a72aa469e63daa5 linux-3.0/arch/sparc/lib/NGcopy_from_user.S -60705c8e99f5d27529745b983d0a719e linux-3.0/arch/sparc/lib/NGbzero.S -acb1c55bce58ceedea7d0d2085fc81c3 linux-3.0/arch/sparc/lib/NG2patch.S -029fac9cbba3f2a7f59106ca28057e23 linux-3.0/arch/sparc/lib/NG2page.S -941ab699a21bc1ed653e50ce654754b6 linux-3.0/arch/sparc/lib/NG2memcpy.S -370bb8d71acdf504a93999e1f748909e linux-3.0/arch/sparc/lib/NG2copy_to_user.S -f7c0eb773e4ad4d763f161fb9e508dfe linux-3.0/arch/sparc/lib/NG2copy_from_user.S -1d64f11e395825b4e677210b34df4105 linux-3.0/arch/sparc/lib/Makefile -f46d6f13aab48a54a1e68e6fe843d50c linux-3.0/arch/sparc/lib/GENpatch.S -8373a08c3ee9b0eb82c0749c561a56e5 linux-3.0/arch/sparc/lib/GENpage.S -bf0880cf20ea7f2ca600d5e24d39a0e3 linux-3.0/arch/sparc/lib/GENmemcpy.S -2a18d0d464012c31fe5f7430ea926d4b linux-3.0/arch/sparc/lib/GENcopy_to_user.S -e1805c99b5e6fffa04d335370391cc7e linux-3.0/arch/sparc/lib/GENcopy_from_user.S -21c7a3aad94fbf8ca5537f22f5a162ef linux-3.0/arch/sparc/lib/GENbzero.S -55ca817ccb7d5b5b66355690e9abc605 linux-3.0/arch/sparc/lib/COPYING.LIB -01512f2d4bb44f337b435557e05d3557 linux-3.0/arch/sparc/kernel/wuf.S -2e0d0d2f48df6687d161c877bb910508 linux-3.0/arch/sparc/kernel/wof.S -49e3b7cf87c39db04e29481b338bb6d8 linux-3.0/arch/sparc/kernel/winfixup.S -6002116477c3efc9e5a63cd23b2eb561 linux-3.0/arch/sparc/kernel/windows.c -60a213cebb18f18b3731b45e35a7338f linux-3.0/arch/sparc/kernel/vmlinux.lds.S -9f46038a2407ca8113b1e2c58e6ac3f9 linux-3.0/arch/sparc/kernel/visemul.c -44426e037e3363fc2477e591f7150d2a linux-3.0/arch/sparc/kernel/viohs.c -7f5681371860977dce2bc9a6e7035e4a linux-3.0/arch/sparc/kernel/vio.c -ecab10cd4f30db628e6ed63e6a26d52e linux-3.0/arch/sparc/kernel/utrap.S -a58aedf2497480a91937a502dfc531cf linux-3.0/arch/sparc/kernel/us3_cpufreq.c -fc41dd5963639d14ae1abc50a036d96c linux-3.0/arch/sparc/kernel/us2e_cpufreq.c -fb5b5773f1c02b62da8c63431a83b942 linux-3.0/arch/sparc/kernel/unaligned_64.c -4748c3edda0098c5653a3a73d37db6fc linux-3.0/arch/sparc/kernel/unaligned_32.c -c67b1c11621b08016b9663fceb183af1 linux-3.0/arch/sparc/kernel/una_asm_64.S -6facf6a481bd839b987e00971cfa01ca linux-3.0/arch/sparc/kernel/una_asm_32.S -47c5e9d5604d3743a1a8c3282a5c48d7 linux-3.0/arch/sparc/kernel/ttable.S -c6fcd5eb7f004a871962ffebc1d454e0 linux-3.0/arch/sparc/kernel/tsb.S -dc932fc34145c3d2e9d2652e7f835762 linux-3.0/arch/sparc/kernel/traps_64.c -23e50b30e63781178b33e5ca61c10001 linux-3.0/arch/sparc/kernel/traps_32.c -e53eb1b8a695c1dae05801a6c254b2ca linux-3.0/arch/sparc/kernel/trampoline_64.S -30b80101e88d936ef1f4f4ed3f74021b linux-3.0/arch/sparc/kernel/trampoline_32.S -7f6e6a2ba896eda45e90bed24846ef79 linux-3.0/arch/sparc/kernel/time_64.c -648a518528f1073cad3f54736138874b linux-3.0/arch/sparc/kernel/time_32.c -7622b93dd3fa8661efbca4fe5408c527 linux-3.0/arch/sparc/kernel/tadpole.c -5889d63761dc3c56e9ea5baa4df444a3 linux-3.0/arch/sparc/kernel/systbls_64.S -ba927e452696515330e5b37168b62e71 linux-3.0/arch/sparc/kernel/systbls_32.S -6723b3e388edff128ce146af4ae9488e linux-3.0/arch/sparc/kernel/systbls.h -b0117f6a3064ad1200d2207768443c65 linux-3.0/arch/sparc/kernel/sysfs.c -6a64f61cc412e7d74a234c7386202dd5 linux-3.0/arch/sparc/kernel/syscalls.S -61f1ee688a5f04e26d70acb2cb4477a4 linux-3.0/arch/sparc/kernel/sys_sparc_64.c -faa902103384196f3f2016f5d4443752 linux-3.0/arch/sparc/kernel/sys_sparc_32.c -f66c1e32f9ec795c494e9a8146fc2234 linux-3.0/arch/sparc/kernel/sys_sparc32.c -f5731e44e26a6cec51a8a367e70216e1 linux-3.0/arch/sparc/kernel/sys32.S -a73a31a4a3096f39596acb85653faa6e linux-3.0/arch/sparc/kernel/sun4v_tlb_miss.S -1cd948cd7156385ba5aeac1c78e7b659 linux-3.0/arch/sparc/kernel/sun4v_ivec.S -b4c15f947cb7c51c323e18bfba8865c0 linux-3.0/arch/sparc/kernel/sun4m_smp.c -da755cf5ce42a6ff7705bb4c9231e628 linux-3.0/arch/sparc/kernel/sun4m_irq.c -e548c828bcdf5eb0b2c855e5bad542a7 linux-3.0/arch/sparc/kernel/sun4d_smp.c -119e687567b563983203f9cdadc10cec linux-3.0/arch/sparc/kernel/sun4d_irq.c -18b1cf28214db27d0143000771506760 linux-3.0/arch/sparc/kernel/sun4c_irq.c -2007a30119312d6b2f4735888d86bf6c linux-3.0/arch/sparc/kernel/starfire.c -ff0243797d120c80b94593ffe9dabc12 linux-3.0/arch/sparc/kernel/stacktrace.c -a9d3e837e3587cfdb3f55f527a6915c8 linux-3.0/arch/sparc/kernel/sstate.c -1a815d59526b08d0760e38dbe2f70be0 linux-3.0/arch/sparc/kernel/spiterrs.S -0d8f5122f3059dba835398be1dbab540 linux-3.0/arch/sparc/kernel/sparc_ksyms_64.c -029e3f8f4846beaf1854de44baca1062 linux-3.0/arch/sparc/kernel/sparc_ksyms_32.c -b18409be0f5f3e8474f6e1d26197c852 linux-3.0/arch/sparc/kernel/smp_64.c -f87423b083c574c9424877e21a5c2bee linux-3.0/arch/sparc/kernel/smp_32.c -769b8ecf0a2eefe4617590e15ceee501 linux-3.0/arch/sparc/kernel/signal_64.c -8276877a1a4f5e91f6d62d5d33f3692c linux-3.0/arch/sparc/kernel/signal_32.c -718b7e35ada687fb68e17ad26a1f3837 linux-3.0/arch/sparc/kernel/signal32.c -82d3f1dd32b3cd4986957b2dcb60c029 linux-3.0/arch/sparc/kernel/setup_64.c -83d5408ad66de3bfc0225bd6be40ff34 linux-3.0/arch/sparc/kernel/setup_32.c -bd62b75a632039c17a081fb51fec15a5 linux-3.0/arch/sparc/kernel/sbus.c -66f3595f902a22b6dc9831608669d14e linux-3.0/arch/sparc/kernel/rtrap_64.S -79e13aed9707ce8a1c0dd814bb9f9613 linux-3.0/arch/sparc/kernel/rtrap_32.S -b66ef45fd8ae503513939e318058e9b4 linux-3.0/arch/sparc/kernel/reboot.c -321b6a0ada582622dbd7777db2021db5 linux-3.0/arch/sparc/kernel/ptrace_64.c -16b416223b2f7c6cd9664b0a1fe6b19f linux-3.0/arch/sparc/kernel/ptrace_32.c -415e4a8fc44510cae53803f89eaf6613 linux-3.0/arch/sparc/kernel/psycho_common.h -eca199aa6bbe8010d973b32806b243a3 linux-3.0/arch/sparc/kernel/psycho_common.c -27c64ed8295e48a3d36fac54d641152f linux-3.0/arch/sparc/kernel/prom_irqtrans.c -5a1b3109d9b5c33610730bbf25c77487 linux-3.0/arch/sparc/kernel/prom_common.c -24df54b20db0edbdfa3dc48cd9a7ed01 linux-3.0/arch/sparc/kernel/prom_64.c -ced434a7b065b9ff785a0ced38f0ad46 linux-3.0/arch/sparc/kernel/prom_32.c -ad70577bdd955d60106f48c9cb0d9a08 linux-3.0/arch/sparc/kernel/prom.h -8fb92b66975c73528e3cd04c755fd3ce linux-3.0/arch/sparc/kernel/process_64.c -741f72292af8ba3fe6bef20bdab45c9d linux-3.0/arch/sparc/kernel/process_32.c -9bd990bf4680b56365f7bd4d41facbf0 linux-3.0/arch/sparc/kernel/power.c -057334204c4fec0ee45aed93a58818e9 linux-3.0/arch/sparc/kernel/pmc.c -0201326c86c1f9d900d70ae47b325654 linux-3.0/arch/sparc/kernel/perf_event.c -ef80f869c0ec8bc1d14863b20e7aca89 linux-3.0/arch/sparc/kernel/pcr.c -3f37215a9d746a12ee7e688523dc1f4b linux-3.0/arch/sparc/kernel/pcic.c -567ea7167bab279a9eda34defaf273b1 linux-3.0/arch/sparc/kernel/pci_sun4v_asm.S -2d0d24ccf8c16c3734335422053e211e linux-3.0/arch/sparc/kernel/pci_sun4v.h -49558fb902f7aef0ea9d6ce758e05d8d linux-3.0/arch/sparc/kernel/pci_sun4v.c -8686644a8f30a5124d253ca86e2f06b7 linux-3.0/arch/sparc/kernel/pci_schizo.c -df28e746bb06e5c355b0a401e61b4bd5 linux-3.0/arch/sparc/kernel/pci_sabre.c -9e0248496f342f2cf4f566c8b1fc5e05 linux-3.0/arch/sparc/kernel/pci_psycho.c -e9687760be499ebba50b42323db93067 linux-3.0/arch/sparc/kernel/pci_msi.c -5f67700399ed18dd6c8cfc53d9848edf linux-3.0/arch/sparc/kernel/pci_impl.h -20166776705c3099d1752d47a5a6671d linux-3.0/arch/sparc/kernel/pci_fire.c -174cd7a420e4e231feb3f62fc4df37a7 linux-3.0/arch/sparc/kernel/pci_common.c -2efaa936b0e4d14c5e5b82359ed17714 linux-3.0/arch/sparc/kernel/pci.c -83435f9b6742f180cabdaefd113031ab linux-3.0/arch/sparc/kernel/of_device_common.h -3b498e96d3df99e04d794e1a63e8af7a linux-3.0/arch/sparc/kernel/of_device_common.c -9cf2c412d21276fcd97797722091e899 linux-3.0/arch/sparc/kernel/of_device_64.c -dee3ae59ea09af10a744ca80a1c0383c linux-3.0/arch/sparc/kernel/of_device_32.c -13fd6b066d7eecdd33b936ad3190176d linux-3.0/arch/sparc/kernel/nmi.c -f1dfc86e2c7f953fbceaa13736887a1e linux-3.0/arch/sparc/kernel/muldiv.c -77f0ae83c8a1cd3dd0483e01b3823211 linux-3.0/arch/sparc/kernel/module.c -fbd9a56de9da5f52309a79735cdef3dc linux-3.0/arch/sparc/kernel/misctrap.S -49154c9b720c4b5244d2a5b9649f3aea linux-3.0/arch/sparc/kernel/mdesc.c -08c80993f57b8cd84c8df936d5ab5721 linux-3.0/arch/sparc/kernel/leon_smp.c -081f5ed90938ad799d806bd5a79f477e linux-3.0/arch/sparc/kernel/leon_pmc.c -86725a3dd9944688ecacf855f8c3930f linux-3.0/arch/sparc/kernel/leon_pci_grpci2.c -062d5164cbc99a935c54cb4a069427c9 linux-3.0/arch/sparc/kernel/leon_pci.c -5905414780ac101d7b4c733830448eda linux-3.0/arch/sparc/kernel/leon_kernel.c -12fdae9e7b5de0947292968398b81ab6 linux-3.0/arch/sparc/kernel/led.c -a604f30c22bd90f7b3373ec660eeba32 linux-3.0/arch/sparc/kernel/ldc.c -87781e1b8ba6e851bb68a10cc38c9201 linux-3.0/arch/sparc/kernel/ktlb.S -7dd2453a792315847da8a2aa453b7aa5 linux-3.0/arch/sparc/kernel/kstack.h -73f04155b6fbebcb98ab942ad437508c linux-3.0/arch/sparc/kernel/kprobes.c -0e7dc3fa43b7a14bed1fbfae6141a087 linux-3.0/arch/sparc/kernel/kgdb_64.c -ca2bbad2696b14f356537f8485240718 linux-3.0/arch/sparc/kernel/kgdb_32.c -ccea3e452ae2b762a0aeb720d71d19c5 linux-3.0/arch/sparc/kernel/kernel.h -2ccfa6505cb028b7dad4ebb221abd524 linux-3.0/arch/sparc/kernel/jump_label.c -cd33a30cc8c90fb5a75671b637b8b040 linux-3.0/arch/sparc/kernel/ivec.S -a981392ddad4a828411ef6e54bd595ad linux-3.0/arch/sparc/kernel/itlb_miss.S -0d5c5e6c9d02e2bc3354f6cd5c537802 linux-3.0/arch/sparc/kernel/irq_64.c -0176da2b7a56e157fd8ee8bd9413b37f linux-3.0/arch/sparc/kernel/irq_32.c -eb286f934364364e1be1de7257301199 linux-3.0/arch/sparc/kernel/irq.h -bf9b44aff17f3ad1f9284a46e2a6c7c1 linux-3.0/arch/sparc/kernel/ioport.c -21f5ef7ad3da36e063c58d21a540a71a linux-3.0/arch/sparc/kernel/iommu_common.h -1511570240f5616d3da71fd3e588b03f linux-3.0/arch/sparc/kernel/iommu.c -8ab45720345a34983d99b586dba90e1f linux-3.0/arch/sparc/kernel/init_task.c -9b4936a80115cf9081e287088769ab0f linux-3.0/arch/sparc/kernel/idprom.c -53c79114172d91678f8c09afa10609a1 linux-3.0/arch/sparc/kernel/hvtramp.S -74f14117e40303feb7cbcd471f064981 linux-3.0/arch/sparc/kernel/hvcalls.S -9bae699a12a7294c8a282e25169e0bc9 linux-3.0/arch/sparc/kernel/hvapi.c -c2e40f7d3d5e6fa59033d8071f8d948f linux-3.0/arch/sparc/kernel/helpers.S -17142fcd1b45502f04af58b301873e3e linux-3.0/arch/sparc/kernel/head_64.S -265aa059681baf77219df37953299251 linux-3.0/arch/sparc/kernel/head_32.S -4163b8013a5e0fafdb774178716e9a01 linux-3.0/arch/sparc/kernel/getsetcc.S -69dc354022c3c036002bc8b0e633c2af linux-3.0/arch/sparc/kernel/ftrace.c -cbcf3582f249eec9406115fafbd7af16 linux-3.0/arch/sparc/kernel/fpu_traps.S -9e44b481e5f2a0ba1c10ca6997928e26 linux-3.0/arch/sparc/kernel/etrap_64.S -a44bcc0458a63a29b1940445ce460a1f linux-3.0/arch/sparc/kernel/etrap_32.S -4cb15d86be4d38cc21b0477e21537a0a linux-3.0/arch/sparc/kernel/entry.h -ba885983b53c4ccce34937923da4c9c8 linux-3.0/arch/sparc/kernel/entry.S -d4ed95447ce61d8634ec5361189701c2 linux-3.0/arch/sparc/kernel/ebus.c -3340ce217dff1b0f74623a0b3a44b3e7 linux-3.0/arch/sparc/kernel/dtlb_prot.S -69ee5e920ef146893dcd4046b4fe0810 linux-3.0/arch/sparc/kernel/dtlb_miss.S -ee96f72271b259e9d920a76939f25474 linux-3.0/arch/sparc/kernel/ds.c -19afcb99a0103330372b303c2c24178e linux-3.0/arch/sparc/kernel/dma.c -1d4415dc14a19e5b769ebe7af366f15c linux-3.0/arch/sparc/kernel/devices.c -e80bd83424f26e34823f63c2bf5030f2 linux-3.0/arch/sparc/kernel/cpumap.h -68a25a47337cffbda5523ed797920d96 linux-3.0/arch/sparc/kernel/cpumap.c -045823dc75f858409c39c016d568cf1f linux-3.0/arch/sparc/kernel/cpu.c -9cc2423342b5a896cb300c5fc2b67b3a linux-3.0/arch/sparc/kernel/compat_audit.c -1cc3218cd34f1119474adfb191b2acc4 linux-3.0/arch/sparc/kernel/chmc.c -fa566894b10b7466c050284444aba8ec linux-3.0/arch/sparc/kernel/cherrs.S -1a514b931b8681f68052075568a6664f linux-3.0/arch/sparc/kernel/central.c -28dd6ec8983e6d10e14db45624e0efaf linux-3.0/arch/sparc/kernel/btext.c -08c784c5026736c8a163a479cfd24b13 linux-3.0/arch/sparc/kernel/auxio_64.c -9efab591ef9f36c471347bccdf261326 linux-3.0/arch/sparc/kernel/auxio_32.c -ad0dcb1e706034d4408d82b06f734bd0 linux-3.0/arch/sparc/kernel/audit.c -e01ddb70d226de69116e10fa545b00ca linux-3.0/arch/sparc/kernel/asm-offsets.c -7626dddd36d340e88bc564b88381d12e linux-3.0/arch/sparc/kernel/apc.c -807e861f7a78b431f66bd729c7f01be8 linux-3.0/arch/sparc/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/sparc/kernel/.gitignore -ef8a8385613801d18cf08a26b4c23081 linux-3.0/arch/sparc/include/asm/xor_64.h -c8417ec9183aae07da2dd882711a6958 linux-3.0/arch/sparc/include/asm/xor_32.h -4e79364c26ffa39086d6ddc0de1d8687 linux-3.0/arch/sparc/include/asm/xor.h -9406a3bc22f2ef23473eb6cab82c5ba2 linux-3.0/arch/sparc/include/asm/winmacro.h -c240cf6556d7f6731c5046a9345bab4d linux-3.0/arch/sparc/include/asm/watchdog.h -070a2d831a529783c3b88ee9608e98bf linux-3.0/arch/sparc/include/asm/visasm.h -3e6e3d0d0f6149da682091494dc76619 linux-3.0/arch/sparc/include/asm/vio.h -3dec3b2660cd9a14c718d3fc8fcf1fa7 linux-3.0/arch/sparc/include/asm/viking.h -036543a76d4c899af1d06de5d0ce6d58 linux-3.0/arch/sparc/include/asm/vga.h -aa5de323a582426d6b73b80e5fcd6ba2 linux-3.0/arch/sparc/include/asm/vaddrs.h -6963cd21848846083d77df42b048ae1d linux-3.0/arch/sparc/include/asm/vac-ops.h -ea25dfd6fb4eaf001028fc49f69b8d76 linux-3.0/arch/sparc/include/asm/utrap.h -5e3bdba6fc8a09d354d8383f219d2ac8 linux-3.0/arch/sparc/include/asm/user.h -ad2b863dc476d483e8560be0ad193f90 linux-3.0/arch/sparc/include/asm/upa.h -06acc488f20dfcdaa4b47d4b9a9a1beb linux-3.0/arch/sparc/include/asm/unistd.h -9f3082885891fdfe2c32d4b92e34b57d linux-3.0/arch/sparc/include/asm/unaligned.h -c7a07fd4771fa0cb1a9f47d56bb69409 linux-3.0/arch/sparc/include/asm/uctx.h -9e82a104260cfe41984171b9602a03b1 linux-3.0/arch/sparc/include/asm/uaccess_64.h -26be5997eb1be5793e5a4d254954a2db linux-3.0/arch/sparc/include/asm/uaccess_32.h -8e5df1cff7743586d3febed0b721ee22 linux-3.0/arch/sparc/include/asm/uaccess.h -92df0b3825cf3b6e4b1f22dcedc4d158 linux-3.0/arch/sparc/include/asm/types.h -e88aaa503429b7ca7af381ddc892b242 linux-3.0/arch/sparc/include/asm/turbosparc.h -c497262c0b52d2b4b5edac2b33f76c07 linux-3.0/arch/sparc/include/asm/ttable.h -bfb9f2da4d54cd7623e29578010cc00a linux-3.0/arch/sparc/include/asm/tsunami.h -6def19d966160a17aba73368e4795356 linux-3.0/arch/sparc/include/asm/tsb.h -a2f81444c3b1344263ba86c4f1774eab linux-3.0/arch/sparc/include/asm/traps.h -10fa8793c6ebff80cbc4f9524205bab6 linux-3.0/arch/sparc/include/asm/trap_block.h -9f33e0ef256f11efbc9dec77c58e1c47 linux-3.0/arch/sparc/include/asm/topology_64.h -0b8fbcc23a5efe063ec3d27954e73558 linux-3.0/arch/sparc/include/asm/topology_32.h -19c08e7d8d0cd292f8c6facee03dc444 linux-3.0/arch/sparc/include/asm/topology.h -792bd43a410e99d2fea9a1670f0430d6 linux-3.0/arch/sparc/include/asm/tlbflush_64.h -6097f09daa6c1200dcb5fe04cdc4c59b linux-3.0/arch/sparc/include/asm/tlbflush_32.h -dc0f3a784a9cc7c0c034c2f5d954da76 linux-3.0/arch/sparc/include/asm/tlbflush.h -98c770c2661e3413089c95e2a79ae045 linux-3.0/arch/sparc/include/asm/tlb_64.h -2bf983cf9b295f70dabc1e1c5f593a9c linux-3.0/arch/sparc/include/asm/tlb_32.h -36ff8ddc4bd3d41cb51ea38764925934 linux-3.0/arch/sparc/include/asm/tlb.h -e99be45ee7ea8451fddc19f182d27e27 linux-3.0/arch/sparc/include/asm/timex_64.h -7f43195bfb5ee2ed99669d43420c7ee9 linux-3.0/arch/sparc/include/asm/timex_32.h -01f1735b6b1b13cfafef6e8b612f8acc linux-3.0/arch/sparc/include/asm/timex.h -6656f079b53574bb694e1cd2e85f9d9f linux-3.0/arch/sparc/include/asm/timer_64.h -36af9a0e1af67edfda9924429f94ecb4 linux-3.0/arch/sparc/include/asm/timer_32.h -630d9321580e670aa026dc9fb1e8693f linux-3.0/arch/sparc/include/asm/timer.h -73fb2c8bbf789ab56152c3ae933cfdb8 linux-3.0/arch/sparc/include/asm/thread_info_64.h -e79fe7c98181049b3a348e02b74236a1 linux-3.0/arch/sparc/include/asm/thread_info_32.h -574f67d5ab76b2febea2eef383028c83 linux-3.0/arch/sparc/include/asm/thread_info.h -79af697942792fb9a1bb9c42ccd62ec6 linux-3.0/arch/sparc/include/asm/termios.h -2ad1a4e27a2ce2fe0a9a6f94aa0cc4dd linux-3.0/arch/sparc/include/asm/termbits.h -e4413e066107e389f250f0731cb4167e linux-3.0/arch/sparc/include/asm/system_64.h -856971c2b041a26c59c672aabf24e737 linux-3.0/arch/sparc/include/asm/system_32.h -9ca2096b2b3d41db9f2e39caed3b319e linux-3.0/arch/sparc/include/asm/system.h -0d5a723a4a8b9ccff68800ad29ada0b1 linux-3.0/arch/sparc/include/asm/sysen.h -dd5c738444fdfc6161d5d470b96a0312 linux-3.0/arch/sparc/include/asm/syscalls.h -88b5c1f8b856b14c843cb34ad185b643 linux-3.0/arch/sparc/include/asm/syscall.h -45e12671dc2ab380a9cb64577c4c0a0f linux-3.0/arch/sparc/include/asm/swift.h -1114fce3eed880d5d7cc67037335a73c linux-3.0/arch/sparc/include/asm/swab.h -ba616f82a54888984dae48f5a9a9350f linux-3.0/arch/sparc/include/asm/sunbpp.h -35d379a0abdffef84e89e0004fe90d3b linux-3.0/arch/sparc/include/asm/string_64.h -0b454751be9105818485c5ae7a622e33 linux-3.0/arch/sparc/include/asm/string_32.h -6bcab4efb4c8b92ecf20c7cae92b31a2 linux-3.0/arch/sparc/include/asm/string.h -54819e758a99d94863df9f606966bf22 linux-3.0/arch/sparc/include/asm/statfs.h -eaf62fab304ace80c260c4f25329855d linux-3.0/arch/sparc/include/asm/stat.h -880aa5ccf287981805b2b16e3d6cdd51 linux-3.0/arch/sparc/include/asm/starfire.h -c0ee81e518a334aed398d99586297edb linux-3.0/arch/sparc/include/asm/stacktrace.h -6863c6dfe460b358d77898433d25b306 linux-3.0/arch/sparc/include/asm/spitfire.h -4121116e269b267c9044c5c3776ec59b linux-3.0/arch/sparc/include/asm/spinlock_types.h -ee50348eb9e02c061a7524750698baa8 linux-3.0/arch/sparc/include/asm/spinlock_64.h -1db0af490f401d22252ca2a7d715f491 linux-3.0/arch/sparc/include/asm/spinlock_32.h -ecba34d503205389a5b468e31ab8f138 linux-3.0/arch/sparc/include/asm/spinlock.h -67e5b9d263380318444ef85cdbe4f4a3 linux-3.0/arch/sparc/include/asm/sparsemem.h -ea5344d1dc9c5a72306c19e860b22bb7 linux-3.0/arch/sparc/include/asm/sockios.h -54906f819161ed119370711546105311 linux-3.0/arch/sparc/include/asm/socket.h -0cf66a4cf6a6e399b11834eebb438e2b linux-3.0/arch/sparc/include/asm/smpprim.h -e9155de9e7b12d758c89829bd483b47f linux-3.0/arch/sparc/include/asm/smp_64.h -298c68c3cee70cd5c33030600a33023b linux-3.0/arch/sparc/include/asm/smp_32.h -4f24750d7c33721587e33d4560b428b7 linux-3.0/arch/sparc/include/asm/smp.h -259d0f860274f8df31fd536264c0270e linux-3.0/arch/sparc/include/asm/signal.h -366e76c651f4cc0cc257d5602f4c0d5b linux-3.0/arch/sparc/include/asm/siginfo.h -929fc3961f27a40a539d945661a6417d linux-3.0/arch/sparc/include/asm/sigcontext.h -ccd17583bd8e1d7cb79bc6d458ffe551 linux-3.0/arch/sparc/include/asm/shmparam_64.h -914a247a94460ab404a114aff4fc2ee8 linux-3.0/arch/sparc/include/asm/shmparam_32.h -983a07ca5b505fe35a0782806cadd9ea linux-3.0/arch/sparc/include/asm/shmparam.h -25d372adb8d48bedc697049092a95b9c linux-3.0/arch/sparc/include/asm/shmbuf.h -df2ba5ae04d13e80a3568a9dd11c45aa linux-3.0/arch/sparc/include/asm/sfp-machine_64.h -2517fde8062f0985aeca61a0bec3b29a linux-3.0/arch/sparc/include/asm/sfp-machine_32.h -557913c69d93e03573e32b2195041231 linux-3.0/arch/sparc/include/asm/sfp-machine.h -78152c3d01d8994e56b6f762c85985b2 linux-3.0/arch/sparc/include/asm/sfafsr.h -49dc279e940927154731199e95140f2d linux-3.0/arch/sparc/include/asm/setup.h -86370ba98208ab7beeef371824b81368 linux-3.0/arch/sparc/include/asm/serial.h -d2b28c8e35ba832e300a455df912a1c1 linux-3.0/arch/sparc/include/asm/sembuf.h -3f9a72908bc7d3d841650d140a2b37cd linux-3.0/arch/sparc/include/asm/sections.h -dbbc7788a0f03c4bbb7e83e0f1eb6240 linux-3.0/arch/sparc/include/asm/seccomp.h -4b1375b536db306363400694cea55ac5 linux-3.0/arch/sparc/include/asm/scratchpad.h -b67e4db8326a32e893dd694e88496a1d linux-3.0/arch/sparc/include/asm/scatterlist.h -f8f4a67c9121ea72c0e8090ebec54bf1 linux-3.0/arch/sparc/include/asm/sbi.h -45c1e76abc12cea474e94ce3e8e14dd1 linux-3.0/arch/sparc/include/asm/rwsem.h -a817a3132d221650c93dcd9cb4f423d9 linux-3.0/arch/sparc/include/asm/ross.h -32b265e3325115cb29833a7f021c736a linux-3.0/arch/sparc/include/asm/resource.h -4a20fd8bda64f5e0ca67d55ebcdaf828 linux-3.0/arch/sparc/include/asm/ptrace.h -41afc18c61409865c7fa3b0962fa58e0 linux-3.0/arch/sparc/include/asm/pstate.h -2b7b9ccdf6adea36db1c9b1d1949b0e8 linux-3.0/arch/sparc/include/asm/psrcompat.h -fcf7e05d26dc7ae2e4455393ba16c202 linux-3.0/arch/sparc/include/asm/psr.h -2663385988c58ef51944ecdcdbac9bf2 linux-3.0/arch/sparc/include/asm/prom.h -d60eb9e248e003f7695a4e26e3558bde linux-3.0/arch/sparc/include/asm/processor_64.h -041708a59f85d7ed7125b0c6b305db95 linux-3.0/arch/sparc/include/asm/processor_32.h -40b4ded82607882839fb9c317c2f650b linux-3.0/arch/sparc/include/asm/processor.h -ec1b3dd97dfb62c0647af46aa88cec29 linux-3.0/arch/sparc/include/asm/posix_types.h -e68777eaa4c09fddff48a3a931eee489 linux-3.0/arch/sparc/include/asm/poll.h -4914b3e33e7e5894553ec52beaafd55f linux-3.0/arch/sparc/include/asm/pil.h -d0c609158b70a524bc370449ef875a8b linux-3.0/arch/sparc/include/asm/pgtsun4c.h -5a15202ee81a02fcbc6bde4aad78aa9e linux-3.0/arch/sparc/include/asm/pgtsun4.h -63cc7615bda6a664c092e050cb2e8baf linux-3.0/arch/sparc/include/asm/pgtsrmmu.h -91bd7cc6501d409dd638da4db5b60a93 linux-3.0/arch/sparc/include/asm/pgtable_64.h -6f38f251812dd3db23ccd9fca6c0939d linux-3.0/arch/sparc/include/asm/pgtable_32.h -19e05c88ddb80de65df59f1da64b3b66 linux-3.0/arch/sparc/include/asm/pgtable.h -eb6e6f98023976f7a711f6dc39c21696 linux-3.0/arch/sparc/include/asm/pgalloc_64.h -8de6e83c459eecc7ee2a3bf97ea0633d linux-3.0/arch/sparc/include/asm/pgalloc_32.h -fdc53e104db442b54763004f1200a761 linux-3.0/arch/sparc/include/asm/pgalloc.h -44f16cf5dbf24ceab4d0de202d7c4e1a linux-3.0/arch/sparc/include/asm/perfctr.h -e42f03954367773b1835da60edc889b3 linux-3.0/arch/sparc/include/asm/perf_event.h -a9be8e39806e21e1de7a8aa6e9b71818 linux-3.0/arch/sparc/include/asm/percpu_64.h -d7c94d8d044211fdc36a3a95639e1222 linux-3.0/arch/sparc/include/asm/percpu_32.h -00b5056195f665adcbe3bf71749d076a linux-3.0/arch/sparc/include/asm/percpu.h -af030232e44e89ab7dd3e66cece46be2 linux-3.0/arch/sparc/include/asm/pcr.h -50de904a02b49d96629f211134d9540b linux-3.0/arch/sparc/include/asm/pcic.h -16ae3876cc8d179bf4e163b937a11947 linux-3.0/arch/sparc/include/asm/pci_64.h -1546292bf12432fbbf64d19de069fd0a linux-3.0/arch/sparc/include/asm/pci_32.h -9b97d69585b52d89e92e0d65e14f41d8 linux-3.0/arch/sparc/include/asm/pci.h -c97fefe374c4cd88ed70d1756b17ab94 linux-3.0/arch/sparc/include/asm/pbm.h -7f044bd64d26b3bd70c3bc06df036119 linux-3.0/arch/sparc/include/asm/parport.h -413e7629368b6c944f22fbb1a99962db linux-3.0/arch/sparc/include/asm/param.h -42c16ecc15467330496da299780ade4b linux-3.0/arch/sparc/include/asm/page_64.h -1b6c3d5cb2fe8e2078ff0cbb7672b9c5 linux-3.0/arch/sparc/include/asm/page_32.h -62c0362d38a7ca724ba118ff7a8456f8 linux-3.0/arch/sparc/include/asm/page.h -286a6eebf2cd00682daf6eac529f4ee9 linux-3.0/arch/sparc/include/asm/oplib_64.h -6c43d67e5c53fb663357dec25445d2c0 linux-3.0/arch/sparc/include/asm/oplib_32.h -0b98a786c51899675ffd67453c55efb6 linux-3.0/arch/sparc/include/asm/oplib.h -6fe2a831308d1df3c552393b5d84c450 linux-3.0/arch/sparc/include/asm/openpromio.h -58b01be6e63f63874ca81fdcf7c8a7aa linux-3.0/arch/sparc/include/asm/openprom.h -1b0ad3ebbe792270c368f6483ed03da5 linux-3.0/arch/sparc/include/asm/obio.h -bc0e1f89734cd9f358ae31df5b116dd0 linux-3.0/arch/sparc/include/asm/ns87303.h -ef825826ec3ae6ca3698ee8d46f9bd04 linux-3.0/arch/sparc/include/asm/nmi.h -b5bc84660e69e9e18e67ae11d6ff05ba linux-3.0/arch/sparc/include/asm/mxcc.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/sparc/include/asm/mutex.h -b395e406f07d308e4d8b299a6469ca06 linux-3.0/arch/sparc/include/asm/msi.h -fc758b0c00c3bfa35183b36f3e44e98d linux-3.0/arch/sparc/include/asm/msgbuf.h -f7a79ec301c5f3d0670665161bce11e3 linux-3.0/arch/sparc/include/asm/mpmbox.h -a85b0f4508cc46321177180bb332a21f linux-3.0/arch/sparc/include/asm/module.h -e5fd54d6f8c6e0c2d1ffea81ca973016 linux-3.0/arch/sparc/include/asm/mmzone.h -3c8c3773c093c73fe9bfcdb157ecf6b6 linux-3.0/arch/sparc/include/asm/mmu_context_64.h -c5bf350722c061d7c1496a1cd049feaf linux-3.0/arch/sparc/include/asm/mmu_context_32.h -ba6abe3fe5dbd9e39b66ec92b5dd2bbc linux-3.0/arch/sparc/include/asm/mmu_context.h -cb13adc5fe5f7c118d5a07b6ea010da7 linux-3.0/arch/sparc/include/asm/mmu_64.h -2dba0f9fb944b2e3def57ba21003033a linux-3.0/arch/sparc/include/asm/mmu_32.h -ad98b6020918c39319ea44f3b42ffb62 linux-3.0/arch/sparc/include/asm/mmu.h -7f49f191166feeb14affabcc00935e79 linux-3.0/arch/sparc/include/asm/mman.h -fa4aa7677b4974ef591d253ce703df62 linux-3.0/arch/sparc/include/asm/memreg.h -3579f00252202f6e3557843b63264ed4 linux-3.0/arch/sparc/include/asm/memctrl.h -c00b105143e9ed67c33cf08fab46afd7 linux-3.0/arch/sparc/include/asm/memblock.h -b3d07a5d824adbb5c8cde4e6ec9323f7 linux-3.0/arch/sparc/include/asm/mdesc.h -8666c03172de0124437dbc7bc239018d linux-3.0/arch/sparc/include/asm/mc146818rtc_64.h -25eea8e7fd4590ee6bc35d0af335b5b4 linux-3.0/arch/sparc/include/asm/mc146818rtc_32.h -c3fc9d198828af9dc61420edab58a94e linux-3.0/arch/sparc/include/asm/mc146818rtc.h -3a756601c869688a65891c8bdf738756 linux-3.0/arch/sparc/include/asm/mbus.h -896dd4510a188679759f7b7c67a2c3d5 linux-3.0/arch/sparc/include/asm/machines.h -534523455c70b894a82764942ac5b5b4 linux-3.0/arch/sparc/include/asm/lsu.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/sparc/include/asm/local64.h -7e7555b7f16b096cfd61806c469f13ed linux-3.0/arch/sparc/include/asm/local.h -3443b0ccb592b373fb6ef22d665f9836 linux-3.0/arch/sparc/include/asm/linkage.h -63fb7b8122fff2c14eb15231c384bf9f linux-3.0/arch/sparc/include/asm/leon_pci.h -428c95ea21250bff6e987d9e6dcd9d5c linux-3.0/arch/sparc/include/asm/leon_amba.h -f9cbb3ba3915810e6d31c325aed0a50f linux-3.0/arch/sparc/include/asm/leon.h -883f56ce8108b47264869f05a9dd832e linux-3.0/arch/sparc/include/asm/ldc.h -5cf5edfd4448f6e1593b355c827eb0f9 linux-3.0/arch/sparc/include/asm/kprobes.h -2b76c39c75b589470b49300be29c2c2b linux-3.0/arch/sparc/include/asm/kmap_types.h -8bea0c50afd47b868daf7431413b9b52 linux-3.0/arch/sparc/include/asm/kgdb.h -5a98ed4e11cc2ab7ee64eadebcb5523b linux-3.0/arch/sparc/include/asm/kdebug_64.h -8c0cfd014a27bb2c57107e43015405ab linux-3.0/arch/sparc/include/asm/kdebug_32.h -99d68f891e68afe1358179af01351257 linux-3.0/arch/sparc/include/asm/kdebug.h -7c7d6c985cea2d8abce4173fa83b6ab2 linux-3.0/arch/sparc/include/asm/jump_label.h -32446fcd7275d55a3ea5445fa682cdb6 linux-3.0/arch/sparc/include/asm/jsflash.h -19337e484b1f4d0db39e641368103593 linux-3.0/arch/sparc/include/asm/irqflags_64.h -a574631bfbf52c47adf18f7957860e80 linux-3.0/arch/sparc/include/asm/irqflags_32.h -2084e6af9d940f610dac38781d5fb716 linux-3.0/arch/sparc/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/sparc/include/asm/irq_regs.h -2ceb1baf302da4ed0351075a65a327e5 linux-3.0/arch/sparc/include/asm/irq_64.h -476f5b40da2ace75f2673b6ab63e0d9d linux-3.0/arch/sparc/include/asm/irq_32.h -6530028911c00f1a723e00d37c99541c linux-3.0/arch/sparc/include/asm/irq.h -b918e3a23765bbdface0c8f0e309f10f linux-3.0/arch/sparc/include/asm/ipcbuf.h -a64fafdcaba27f1c0cdb8ec331f9ec75 linux-3.0/arch/sparc/include/asm/iommu_64.h -fbb85e5ae28bc0ab3521437700c07023 linux-3.0/arch/sparc/include/asm/iommu_32.h -0f1e48a0c09842354dd9adf67733b8a6 linux-3.0/arch/sparc/include/asm/iommu.h -f366309e6a844be6b1803977b3453e1d linux-3.0/arch/sparc/include/asm/ioctls.h -309ffe6b5a3a776bf10a37310dc69f07 linux-3.0/arch/sparc/include/asm/ioctl.h -250069235e795d3c06a51e138064cdf1 linux-3.0/arch/sparc/include/asm/io_64.h -81db9894bb04270381f86492264e6651 linux-3.0/arch/sparc/include/asm/io_32.h -6dd47afefd202d14b7af19ff6ed94686 linux-3.0/arch/sparc/include/asm/io.h -c455d1363967103d68d43f82afe9bf7f linux-3.0/arch/sparc/include/asm/io-unit.h -941af7f96326a21788f9fc80ac2c0df4 linux-3.0/arch/sparc/include/asm/intr_queue.h -7afe2006132329900749c84f0f5b823f linux-3.0/arch/sparc/include/asm/idprom.h -2e49fc8b6396fcd820fa2e6a0f1968d5 linux-3.0/arch/sparc/include/asm/ide.h -7147e09628894c0d32992a02bd29b776 linux-3.0/arch/sparc/include/asm/hypervisor.h -71cf1959219e336c520ab18fc7ed9249 linux-3.0/arch/sparc/include/asm/hw_irq.h -49b43657a9d0a0eb55c64131811c58c5 linux-3.0/arch/sparc/include/asm/hvtramp.h -88bd50f59979c3b6dd599d2a659e2ff4 linux-3.0/arch/sparc/include/asm/hugetlb.h -a8959b5683c023aa485fafbe0d193f83 linux-3.0/arch/sparc/include/asm/highmem.h -cc2f0691ded3ab0e77ba7e7464b24128 linux-3.0/arch/sparc/include/asm/head_64.h -1a24520d367b34fb74cf1651924e01f6 linux-3.0/arch/sparc/include/asm/head_32.h -5dde9734d4e77001bffbcea42a5b84b0 linux-3.0/arch/sparc/include/asm/head.h -22bd88a8d7648c7cbf629d062586b87a linux-3.0/arch/sparc/include/asm/hardirq_64.h -c31b305aef1c6849c5b371cf882fb75c linux-3.0/arch/sparc/include/asm/hardirq_32.h -71b728c0c28b2b52cf076a87bcffbf2c linux-3.0/arch/sparc/include/asm/hardirq.h -f54ff2adbe941749717dfb81dbc7f90f linux-3.0/arch/sparc/include/asm/gpio.h -0c527b72dc9bf12afac6266cce4bf41a linux-3.0/arch/sparc/include/asm/futex_64.h -228b42e1213f6ee69a59695b054ab093 linux-3.0/arch/sparc/include/asm/futex_32.h -f2cb8fd2276535ceec52ba2d15cabb8d linux-3.0/arch/sparc/include/asm/futex.h -185ba8d6cdac4372370defa0c48ee38c linux-3.0/arch/sparc/include/asm/ftrace.h -a7b03f81de17d9da0f4b4bf46c002794 linux-3.0/arch/sparc/include/asm/fpumacro.h -bc868a302ad5a99d047026dc660debdf linux-3.0/arch/sparc/include/asm/floppy_64.h -b49c00d66bed91cc9e440970ea3f8f48 linux-3.0/arch/sparc/include/asm/floppy_32.h -41c70f3c0d6c57e44cd53f5d8f34799b linux-3.0/arch/sparc/include/asm/floppy.h -b6dfe9227b2e743d1caba71a176b7a66 linux-3.0/arch/sparc/include/asm/fixmap.h -16da45aee435c582b4acfa415e8101d8 linux-3.0/arch/sparc/include/asm/fhc.h -f349e689826b75f0766da37b9761b347 linux-3.0/arch/sparc/include/asm/fcntl.h -fa1c45304bdcd8f2b7d21f8c73409a43 linux-3.0/arch/sparc/include/asm/fbio.h -148f5fe964e3cf391abe6c0cca73b847 linux-3.0/arch/sparc/include/asm/fb.h -dc24be47842489ebff7a2bb825ac438f linux-3.0/arch/sparc/include/asm/estate.h -897fc3e741da960e61b1dda4a528457e linux-3.0/arch/sparc/include/asm/errno.h -d282998ab192417ff41a177ce0e0b892 linux-3.0/arch/sparc/include/asm/envctrl.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/sparc/include/asm/emergency-restart.h -b07121754b82c9016ae67988e93a86ed linux-3.0/arch/sparc/include/asm/elf_64.h -1c553b3861482494114a84c4b61e1404 linux-3.0/arch/sparc/include/asm/elf_32.h -05636e2aecc14d75b72c2686debb68fe linux-3.0/arch/sparc/include/asm/elf.h -7485efeeff2ac2db10290751310e0af9 linux-3.0/arch/sparc/include/asm/eeprom.h -df750080d48dc284cabf81632761d7d4 linux-3.0/arch/sparc/include/asm/ecc.h -e9094c6b4f5001f09d245ebdb0a962fa linux-3.0/arch/sparc/include/asm/ebus_dma.h -5b225de200f3cef7f971b117b4ee0e33 linux-3.0/arch/sparc/include/asm/dma.h -14771e563af55e0dc21dca8d3c107251 linux-3.0/arch/sparc/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/sparc/include/asm/div64.h -e6e67202e43710d071f0066225eeb903 linux-3.0/arch/sparc/include/asm/display7seg.h -e5f630bddcb8da663b85b77942393120 linux-3.0/arch/sparc/include/asm/device.h -d70600355b920c7ca5b129d4264d9353 linux-3.0/arch/sparc/include/asm/delay_64.h -a516435b069b222416096286e2ca5c37 linux-3.0/arch/sparc/include/asm/delay_32.h -79dfddfd726058a9920a813321bf7148 linux-3.0/arch/sparc/include/asm/delay.h -db3bc6d9dbae904db2249c1763f70aab linux-3.0/arch/sparc/include/asm/dcu.h -344ad295baad3a27d30806daaf865959 linux-3.0/arch/sparc/include/asm/dcr.h -bb4f106a87b2cf0c5a31fbfcdd0ce1c9 linux-3.0/arch/sparc/include/asm/cypress.h -5d4a6de9a68caccd9436481ad9b1e930 linux-3.0/arch/sparc/include/asm/current.h -7a173b7d5f7022647af891ba904ef848 linux-3.0/arch/sparc/include/asm/cputime.h -30194fc54939b4869384b2bd974b4230 linux-3.0/arch/sparc/include/asm/cpudata_64.h -02aa61b4b747f57477ef03c69a45d515 linux-3.0/arch/sparc/include/asm/cpudata_32.h -4e2953b8d5c9bf44ed15f019a7d5a551 linux-3.0/arch/sparc/include/asm/cpudata.h -487db0d7a792b234890b80dddc764d83 linux-3.0/arch/sparc/include/asm/contregs.h -9799b632b2be924ce2b034d09f3efdd0 linux-3.0/arch/sparc/include/asm/compat_signal.h -ddd98fce3a7b01b1a3176ae493ba8a83 linux-3.0/arch/sparc/include/asm/compat.h -0098bb84886610a5360a6a8672875c93 linux-3.0/arch/sparc/include/asm/cmt.h -abfefae96026b5309d4777d382b315b4 linux-3.0/arch/sparc/include/asm/clock.h -7d057797bb0c464d3246dd676cd2d2e6 linux-3.0/arch/sparc/include/asm/chmctrl.h -17f91c754c2d9a48a96d411248ff1396 linux-3.0/arch/sparc/include/asm/checksum_64.h -7870fc1f9e1223552046c2d59179e197 linux-3.0/arch/sparc/include/asm/checksum_32.h -047661c3719dccc310ce42cb622e0219 linux-3.0/arch/sparc/include/asm/checksum.h -cb6618f20e23d560e7fce01af5feb6ce linux-3.0/arch/sparc/include/asm/chafsr.h -2eb9e52e7797144445eca1c22af63384 linux-3.0/arch/sparc/include/asm/cacheflush_64.h -ed1caabc76ab018553ed543dddae6133 linux-3.0/arch/sparc/include/asm/cacheflush_32.h -62d23fef09d89f6a339f59d33f6d8fac linux-3.0/arch/sparc/include/asm/cacheflush.h -4602b4354bc2dc0a15cd37ac961274ba linux-3.0/arch/sparc/include/asm/cache.h -85105c0805012d105a68f1764a9f2da5 linux-3.0/arch/sparc/include/asm/byteorder.h -7229d6f808afa470476996760829718a linux-3.0/arch/sparc/include/asm/bugs.h -9d69e5fdc83aa73092df90c40ab1669e linux-3.0/arch/sparc/include/asm/bug.h -a3bfbdf5fcef4bf5887fc378f3edf7e7 linux-3.0/arch/sparc/include/asm/btfixup.h -aa0e582db237363a50de40ea12c3d45d linux-3.0/arch/sparc/include/asm/btext.h -5ecabd15e9ea83d487a3261e6c5b90db linux-3.0/arch/sparc/include/asm/bitsperlong.h -2f1db5c31f48f76750a291fa34679c7a linux-3.0/arch/sparc/include/asm/bitops_64.h -6febdcd5e331224f9cde404f9fa98881 linux-3.0/arch/sparc/include/asm/bitops_32.h -2cfe6240ef2ce3de0801dd9fa1a26bc0 linux-3.0/arch/sparc/include/asm/bitops.h -4dff95afde53be5e7f725088cb34cada linux-3.0/arch/sparc/include/asm/bitext.h -e31c063d5b7456dc215d5ed3db79f7b5 linux-3.0/arch/sparc/include/asm/bbc.h -91d950e8671f726e3e82fcadefd8e2a5 linux-3.0/arch/sparc/include/asm/backoff.h -d6cf2f6db129a6ceeed0e4cb18ed421b linux-3.0/arch/sparc/include/asm/auxvec.h -97a95e1e0904ae8ba8cf364c151f84a7 linux-3.0/arch/sparc/include/asm/auxio_64.h -e372f586e381092a6d8cb3faa4e07449 linux-3.0/arch/sparc/include/asm/auxio_32.h -59ea673a8acce1dc2fd4e54605c2fdab linux-3.0/arch/sparc/include/asm/auxio.h -92a749e0a109588d8276e00b2091f02e linux-3.0/arch/sparc/include/asm/atomic_64.h -fcf20ddcba8508c6890bd24970887435 linux-3.0/arch/sparc/include/asm/atomic_32.h -212095bd3309525ce9121a01612f40c0 linux-3.0/arch/sparc/include/asm/atomic.h -139513cd4ebe024832135f697e064c48 linux-3.0/arch/sparc/include/asm/asmmacro.h -4b07d4039ade85c3364a91b11df75023 linux-3.0/arch/sparc/include/asm/asm.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/sparc/include/asm/asm-offsets.h -ac87298e2c80a7cb6a71cc2da6d315bf linux-3.0/arch/sparc/include/asm/asi.h -76a5a8072f20baf5ed61f59d99408e43 linux-3.0/arch/sparc/include/asm/apc.h -444c500ea13095771d75b166c200e266 linux-3.0/arch/sparc/include/asm/apb.h -973c667b5d421b7a477bd09f5788c067 linux-3.0/arch/sparc/include/asm/agp.h -b836cb1043cc9981b869d6cd62739a89 linux-3.0/arch/sparc/include/asm/Kbuild -af6bd585ceae1b8c9429658a5b1117ff linux-3.0/arch/sparc/configs/sparc64_defconfig -74ddc74a344b174eedc16b91ed3519be linux-3.0/arch/sparc/configs/sparc32_defconfig -afd5b929797376017f162e88e50e5518 linux-3.0/arch/sparc/boot/piggyback.c -69bbb37173f557ff8fd2e5ef3b545297 linux-3.0/arch/sparc/boot/btfixupprep.c -7cd2f40c8e2375f01e3908c4d1d0143c linux-3.0/arch/sparc/boot/Makefile -d3cb8759efbd096208b4970da8eaf4b6 linux-3.0/arch/sparc/boot/.gitignore -3bc8f8d03f45f299d3cd8acc1ec9633b linux-3.0/arch/sparc/Makefile -489caf218aa78bb1e5d8aac4700f1da4 linux-3.0/arch/sparc/Kconfig.debug -227e632ec83e7250e39db6751397222a linux-3.0/arch/sparc/Kconfig -32c84ce13667d64797a6384ee44db747 linux-3.0/arch/sh/tools/mach-types -587afdda15d967adc2c0bcb552debf69 linux-3.0/arch/sh/tools/gen-mach-types -c88520609b2c2927f8e0e9191df9e8ea linux-3.0/arch/sh/tools/Makefile -546f5667150f73ca420a23f579f27a03 linux-3.0/arch/sh/oprofile/common.c -c36fadaf946f7961d1abec37c29ca80a linux-3.0/arch/sh/oprofile/backtrace.c -3b84ea43af1bf074c669f2164171c0f5 linux-3.0/arch/sh/oprofile/Makefile -33244571691a2813046b147664df3df2 linux-3.0/arch/sh/mm/uncached.c -18e9e5d2fa0fcbaf6cf9d4649526140a linux-3.0/arch/sh/mm/tlbflush_64.c -a62a115bbaf45e5f76248ded7cbe933c linux-3.0/arch/sh/mm/tlbflush_32.c -d3425638364d7fd1a30315d9c51656c3 linux-3.0/arch/sh/mm/tlb-urb.c -389d8ea95ba0a1afea4820f24b3b4ef6 linux-3.0/arch/sh/mm/tlb-sh5.c -962978e0c57e34e4cced6dfbc8a134a4 linux-3.0/arch/sh/mm/tlb-sh4.c -c0578abd419712115a234a624c95ccc5 linux-3.0/arch/sh/mm/tlb-sh3.c -77efdfb15cc8a064f5605470014cf677 linux-3.0/arch/sh/mm/tlb-pteaex.c -f52660d222bf631bb740ba56bdc5560a linux-3.0/arch/sh/mm/tlb-debugfs.c -8b1b36d85b26e473d6356267a77bbb0c linux-3.0/arch/sh/mm/sram.c -89c87d79c4a0dbe6f5d0d90fb4367a09 linux-3.0/arch/sh/mm/pmb.c -5e36cb3a1aa47be05f70a532a579d896 linux-3.0/arch/sh/mm/pgtable.c -fa1067d980e0d9f042c1b1c89b777ae9 linux-3.0/arch/sh/mm/numa.c -99b93ea2a9900dcc70447242f71be3a3 linux-3.0/arch/sh/mm/nommu.c -f08dead802d44ca3a3c14ac21343dd53 linux-3.0/arch/sh/mm/mmap.c -d781bb0896ddffc82b01b25c5aa4f0f0 linux-3.0/arch/sh/mm/kmap.c -4f70b20e723319cbea564558a80a3bda linux-3.0/arch/sh/mm/ioremap_fixed.c -4f85f7272cd6f65db19181602fa0e131 linux-3.0/arch/sh/mm/ioremap.c -0c1e5534de2ce03fbb7979476ffbc40e linux-3.0/arch/sh/mm/init.c -54c49e88c04d61a43b74ea9e57fc5930 linux-3.0/arch/sh/mm/hugetlbpage.c -63895557bb8e7f80f492774a721e582f linux-3.0/arch/sh/mm/gup.c -aaa4aa770a89306ed6354bee9bea9dc1 linux-3.0/arch/sh/mm/flush-sh4.c -a4a777d6e0908aabeae3ba82e3294909 linux-3.0/arch/sh/mm/fault_64.c -c1cf4fda9a4bf6051b125ae06d6739f9 linux-3.0/arch/sh/mm/fault_32.c -34705488e5aeed04816a5105274ff1a5 linux-3.0/arch/sh/mm/extable_64.c -d61ac2b0039f713b6303f763f64d4774 linux-3.0/arch/sh/mm/extable_32.c -791fcb93b187e5f1ac3df17b00daef16 linux-3.0/arch/sh/mm/consistent.c -b207bc692c29acf20c43b0c26f677940 linux-3.0/arch/sh/mm/cache.c -9cd79f30df10f5fed5aa028c17ab0895 linux-3.0/arch/sh/mm/cache-shx3.c -aea189b769bfd15e787479c48bf181c7 linux-3.0/arch/sh/mm/cache-sh7705.c -3021978c3b1710852098062bc8a99622 linux-3.0/arch/sh/mm/cache-sh5.c -881da80b2544605246e1c2c5c9ad46fd linux-3.0/arch/sh/mm/cache-sh4.c -71544100b6528cbfc6c29b5a1e4295ec linux-3.0/arch/sh/mm/cache-sh3.c -8d22f0304a48b6e86aeda39e140a1b45 linux-3.0/arch/sh/mm/cache-sh2a.c -887eac5cadbf7a8263070003f9e4eccf linux-3.0/arch/sh/mm/cache-sh2.c -73c6e03ca33e1dff74c6fd438f854f90 linux-3.0/arch/sh/mm/cache-debugfs.c -975f1b9663a7b29f00dd9f9cfb4b703a linux-3.0/arch/sh/mm/asids-debugfs.c -58c83faefe6be37efe3586c2035e0959 linux-3.0/arch/sh/mm/alignment.c -a7afb32de60199a49b90c2fe54a828d5 linux-3.0/arch/sh/mm/Makefile -1705c270aeb868a0e080b46d1d9281bb linux-3.0/arch/sh/mm/Kconfig -8ec5f23c96b932365095c3a7dc608138 linux-3.0/arch/sh/math-emu/sfp-util.h -ea15a09cdd3085efc8fcaa14ed0f869d linux-3.0/arch/sh/math-emu/math.c -7d11b549994c25070a454aa12b478cfc linux-3.0/arch/sh/math-emu/Makefile -ca7edf1a13fe030fb9330a1d5b510044 linux-3.0/arch/sh/lib64/udivsi3.S -67a09568fc93f2d485e0ade863a9737c linux-3.0/arch/sh/lib64/udivdi3.S -8f8ebd8ea455b6cc4af41168960b5b24 linux-3.0/arch/sh/lib64/udelay.c -210df6f3a44e31668e0ca5e14cde2083 linux-3.0/arch/sh/lib64/strlen.S -45b499c87a3d784f7c52ab76229ebb1f linux-3.0/arch/sh/lib64/strcpy.S -5d9827efe56e4216dcaa8ab5931b62ba linux-3.0/arch/sh/lib64/sdivsi3.S -d1f1936eb05688fad3b78b20d09cc61d linux-3.0/arch/sh/lib64/panic.c -57a379c8947f673fdc2e4347772c5242 linux-3.0/arch/sh/lib64/memset.S -28ea7dceb295357fc88c51bde5c6b497 linux-3.0/arch/sh/lib64/memcpy.S -5ebd974fa13053e1a82c461b62f73183 linux-3.0/arch/sh/lib64/dbg.c -c3f27144da0a1674a68b8d13a004dbe7 linux-3.0/arch/sh/lib64/copy_user_memcpy.S -cff0f658a94a33368dcbd07c39dff940 linux-3.0/arch/sh/lib64/copy_page.S -06715c4849b1ef95ed44001d50ce3ed5 linux-3.0/arch/sh/lib64/Makefile -d27c8d60cf4e11ef62d2b5009458e9f0 linux-3.0/arch/sh/lib/udivsi3_i4i.S -21e0daa6462a2d0afb534eb04264bf16 linux-3.0/arch/sh/lib/udivsi3_i4i-Os.S -28103f60c87ed13f91c7c948a8688021 linux-3.0/arch/sh/lib/udivsi3.S -268f3c4930674dc04306c8be6b4f02ca linux-3.0/arch/sh/lib/udiv_qrnnd.S -286bfb4f0b1f7785532d7b20a28f4836 linux-3.0/arch/sh/lib/strlen.S -a2cda6824ea2eba6080e578e53dbc7ad linux-3.0/arch/sh/lib/movmem.S -7b1b05877504bb051d685f0ec136f096 linux-3.0/arch/sh/lib/memset.S -4668cace3e9607c93a7cf2b989392358 linux-3.0/arch/sh/lib/memset-sh4.S -a5029fddae2f78338f66f46f6e2cf721 linux-3.0/arch/sh/lib/memmove.S -26d46dc2765e318de43f4a647012256c linux-3.0/arch/sh/lib/memcpy.S -6a937f997a0004a2f220003550d4db95 linux-3.0/arch/sh/lib/memcpy-sh4.S -bf60c1190421e96a776a5b48e8995b58 linux-3.0/arch/sh/lib/memchr.S -b7c654f220cfde27fb79fff4447f0f5c linux-3.0/arch/sh/lib/mcount.S -8c0d38242d487e6bb89cea779ca99c8e linux-3.0/arch/sh/lib/lshrsi3.S -9e1fef8838254580c29c854c2c845398 linux-3.0/arch/sh/lib/lshrdi3.c -7156c3bbacc169c7626b1637aa115084 linux-3.0/arch/sh/lib/libgcc.h -5bbcf9babd958a892f5432f0c68af23d linux-3.0/arch/sh/lib/io.c -ebd5cdef605b1fe09d3fc093640717bc linux-3.0/arch/sh/lib/div64.S -8b45815aef400caead8bac46659bfc58 linux-3.0/arch/sh/lib/div64-generic.c -738e25296332750107491d9c611b76bb linux-3.0/arch/sh/lib/delay.c -57d3eb9808752aa8746f843183fc3023 linux-3.0/arch/sh/lib/copy_page.S -b8a161acfd068404e371edc4430ef190 linux-3.0/arch/sh/lib/checksum.S -da3be86423cd2929a9caf09ec4e9cfff linux-3.0/arch/sh/lib/ashrsi3.S -8b36e391d219e3efd3b989347fdaed78 linux-3.0/arch/sh/lib/ashrdi3.c -3911eb85c337c3623fcecdaab17f72ec linux-3.0/arch/sh/lib/ashlsi3.S -868931944b6c6a3100afd8a7e4bc4e43 linux-3.0/arch/sh/lib/ashldi3.c -ccf2710db0ba9fd6ed24b933dc85f168 linux-3.0/arch/sh/lib/ashiftrt.S -aed94cca9068412acd4cb4c305f2bb38 linux-3.0/arch/sh/lib/__clear_user.S -4f76b328ae76a3c6f48c5f8eb6b5933f linux-3.0/arch/sh/lib/Makefile -79205ce93663761aa936e24ae527b7ac linux-3.0/arch/sh/kernel/vsyscall/vsyscall.lds.S -3162f5482b3563b7728c0373cb0f941e linux-3.0/arch/sh/kernel/vsyscall/vsyscall.c -0587d16eb4850c1e69cc239cac87e82e linux-3.0/arch/sh/kernel/vsyscall/vsyscall-trapa.S -15e7912b568430cbf873c3786d918d22 linux-3.0/arch/sh/kernel/vsyscall/vsyscall-syscall.S -ac7098ffa7f3f2465fc001cafd77e499 linux-3.0/arch/sh/kernel/vsyscall/vsyscall-sigreturn.S -5ad65ddbff077efdecd76c02396dcc17 linux-3.0/arch/sh/kernel/vsyscall/vsyscall-note.S -dd0b66604f48e0458da33ac3bb3b9213 linux-3.0/arch/sh/kernel/vsyscall/Makefile -09c4109833f36a5c4e9d45d24f9a7eca linux-3.0/arch/sh/kernel/vsyscall/.gitignore -788b1db18ed8b6cc426021d789ff4ccb linux-3.0/arch/sh/kernel/vmlinux.lds.S -98834c3fcd0b33e16a03e3aa468afb85 linux-3.0/arch/sh/kernel/unwinder.c -78b7ad4bc74b0a59e5b1eaed6fedbf29 linux-3.0/arch/sh/kernel/traps_64.c -43e47ef2452be03d3153b3a2a3558288 linux-3.0/arch/sh/kernel/traps_32.c -4059cebc369831adebde2c6ec31e145d linux-3.0/arch/sh/kernel/traps.c -099aeabe40a857b3cd67d1b96e292b51 linux-3.0/arch/sh/kernel/topology.c -f65c3bbc4893bcc0493e82944f0fec62 linux-3.0/arch/sh/kernel/time.c -e2cc8612bb4511f09d3451a97db644b6 linux-3.0/arch/sh/kernel/syscalls_64.S -152766157d969de8a0be614412a0db05 linux-3.0/arch/sh/kernel/syscalls_32.S -3f9eb33d0faa0d660e8f700cce4912e0 linux-3.0/arch/sh/kernel/sys_sh64.c -82a1bfea2b897aebaab2e375edbf845e linux-3.0/arch/sh/kernel/sys_sh32.c -d2ac8398322430a7c47361b6beb850a3 linux-3.0/arch/sh/kernel/sys_sh.c -4568f3568e00ae4dc3b21224a9c72b98 linux-3.0/arch/sh/kernel/swsusp.c -5911121cdd72272747d0451b852369d5 linux-3.0/arch/sh/kernel/stacktrace.c -b88cbdd12749ce42230c4a08d5082b5c linux-3.0/arch/sh/kernel/smp.c -b08c88ac96a270eef6f75841164f23be linux-3.0/arch/sh/kernel/signal_64.c -545fd992842c635f3d050aa7f8e59a9b linux-3.0/arch/sh/kernel/signal_32.c -aa91681afc5e5e888b39883a3f01b35f linux-3.0/arch/sh/kernel/sh_ksyms_64.c -88b0106da3afec5a50360c539b868969 linux-3.0/arch/sh/kernel/sh_ksyms_32.c -b67c831ac4430b9d91817a72e05d7179 linux-3.0/arch/sh/kernel/sh_bios.c -d6fb311c354b483e62caa80aa4aebda1 linux-3.0/arch/sh/kernel/setup.c -5e896f33c7c08ac21b7cf6676a61051c linux-3.0/arch/sh/kernel/return_address.c -01ec5af2e9c8a7fd50a70b45dbdf2be2 linux-3.0/arch/sh/kernel/relocate_kernel.S -74f906d75cc5d72905e4757003db0c70 linux-3.0/arch/sh/kernel/reboot.c -651b5d4a8528353f9f4cfd03b2de2070 linux-3.0/arch/sh/kernel/ptrace_64.c -bc52109d7430283bef80c72cf7767b59 linux-3.0/arch/sh/kernel/ptrace_32.c -bb74c8d0eedd295c6605ff89294ada21 linux-3.0/arch/sh/kernel/ptrace.c -516d864f1a9e5e61c06bd368e8563d35 linux-3.0/arch/sh/kernel/process_64.c -acad383b1cdf58689a5e53f6cbf0ebfc linux-3.0/arch/sh/kernel/process_32.c -4a7ca012659a2867890ec78baa2a9bdf linux-3.0/arch/sh/kernel/process.c -209cdd66cebe6707c7b329cba964afc0 linux-3.0/arch/sh/kernel/perf_event.c -6684f759b3444145880b0063346563ba linux-3.0/arch/sh/kernel/perf_callchain.c -97cd36e1f1985a0f4e7feb0b548cc997 linux-3.0/arch/sh/kernel/nmi_debug.c -43c0cae787bad84f88ca334d5c4492cc linux-3.0/arch/sh/kernel/module.c -935462e56148e99808018755759acd4b linux-3.0/arch/sh/kernel/machvec.c -8fdce348d0f9ba83946194d1755bfea4 linux-3.0/arch/sh/kernel/machine_kexec.c -9d0e8c3160af7a0531694d50a05d1078 linux-3.0/arch/sh/kernel/localtimer.c -23444e5981d347ea64a7f91ad7c2a5b5 linux-3.0/arch/sh/kernel/kprobes.c -7af491b63f87cafdccf539ab9cf035cd linux-3.0/arch/sh/kernel/kgdb.c -0ebdd1b2b9d473db03b919ec283769f4 linux-3.0/arch/sh/kernel/kdebugfs.c -f919ae884ed74d6097355e02b2b5059d linux-3.0/arch/sh/kernel/irq_64.c -e7aa44885d1d2a51c2590d33d2555762 linux-3.0/arch/sh/kernel/irq_32.c -3473695b868d7eb50610449d85a5b5fb linux-3.0/arch/sh/kernel/irq.c -4d2c6f516dcbb929d811196b5f30611a linux-3.0/arch/sh/kernel/ioport.c -0204fd9e769c6da915426311a766f656 linux-3.0/arch/sh/kernel/iomap.c -eb039ebe6fabfe9ff02fbdef9cbe6181 linux-3.0/arch/sh/kernel/io_trapped.c -08e0997f299a8bd791ace5164a83c344 linux-3.0/arch/sh/kernel/io.c -4ddfba8a3a861e54af5ec4c6497fc179 linux-3.0/arch/sh/kernel/init_task.c -e1ec04eafdfbb20a4bbd6547aac9be29 linux-3.0/arch/sh/kernel/idle.c -f55ec018fe6a6f64e900e69a61432028 linux-3.0/arch/sh/kernel/hw_breakpoint.c -bc0a91fa2d60bec5b847afbde3077a76 linux-3.0/arch/sh/kernel/head_64.S -4a4fe6731e680221cad71bc326ce32c6 linux-3.0/arch/sh/kernel/head_32.S -fa57641d898c263c0b33acce2b77813c linux-3.0/arch/sh/kernel/ftrace.c -cc94d2372198eac9783384015e2044fc linux-3.0/arch/sh/kernel/entry-common.S -1eed0af38252cbcac08eb512a535fcaf linux-3.0/arch/sh/kernel/dwarf.c -900af929ab10903194434efda584fb93 linux-3.0/arch/sh/kernel/dumpstack.c -5535385dd5e25350c8c468cabb2649c8 linux-3.0/arch/sh/kernel/dma-nommu.c -8b92e92dacf24ab8bd3a9f64041a4c41 linux-3.0/arch/sh/kernel/disassemble.c -b2302cd3328cf1e810369dc8bebfce84 linux-3.0/arch/sh/kernel/debugtraps.S -8e5e1b8a8dbe8b732afa4c8001976021 linux-3.0/arch/sh/kernel/crash_dump.c -3e4097b688c25f624cca5d36e58af103 linux-3.0/arch/sh/kernel/cpufreq.c -f4c14e70cb20713cae2f8a8f16d67d6e linux-3.0/arch/sh/kernel/cpu/shmobile/sleep.S -7003d4239d27a62f331a04fe59828be0 linux-3.0/arch/sh/kernel/cpu/shmobile/pm_runtime.c -e3cb30be3e55310afecf84ad2de7f35e linux-3.0/arch/sh/kernel/cpu/shmobile/pm.c -8c1fb725a497d94ac3e7de476af46f84 linux-3.0/arch/sh/kernel/cpu/shmobile/cpuidle.c -730b9dd3b5788c8af28e7164daa03aaf linux-3.0/arch/sh/kernel/cpu/shmobile/Makefile -8449b50f923fd0ffff5217889b7545f4 linux-3.0/arch/sh/kernel/cpu/sh5/unwind.c -549f8e76d82bbb4fe7c2a9d583c5f9db linux-3.0/arch/sh/kernel/cpu/sh5/switchto.S -bc4835fffee1e44895b11226ed500c10 linux-3.0/arch/sh/kernel/cpu/sh5/setup-sh5.c -ae7c9e227bf7b70a4cdf7c554f94ea7b linux-3.0/arch/sh/kernel/cpu/sh5/probe.c -24d9105e64bddf17b3c578b548bff6fd linux-3.0/arch/sh/kernel/cpu/sh5/fpu.c -254d968d7c48ada03bd99ac8d6106628 linux-3.0/arch/sh/kernel/cpu/sh5/entry.S -474ab047c24c8feb77a99b3b0e978b1c linux-3.0/arch/sh/kernel/cpu/sh5/clock-sh5.c -489b3a917b716a0416f54be1fb27c48f linux-3.0/arch/sh/kernel/cpu/sh5/Makefile -b6db2c88f2bbd023a4ec3b64e3d8c32c linux-3.0/arch/sh/kernel/cpu/sh4a/ubc.c -df2b33b9b96e84bf21598fa5611be6fb linux-3.0/arch/sh/kernel/cpu/sh4a/smp-shx3.c -b7ad4fe0d5ede7168825347c54673076 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-shx3.c -559a453421ad8be0cf9bb68a8aa452e4 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7786.c -2345070626443e20ecba491bbe8c1254 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7785.c -ddfa89573b56be9f3f1bb6a7161fda19 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7780.c -bf108fea0c3e902ea68cc195890b6007 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7770.c -638db93cc410e20d3c6356fa5350ab22 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7763.c -6b30b32c13ed1965804676fdd987520a linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7757.c -ef36fe947a9d2e3cdc3f2eb049d53180 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7724.c -adc756565130fffc3c94e676830ab652 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7723.c -824067c92d7e159e3c60987784fecf14 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7722.c -29421bed7af3ae66cc9b3bb345764639 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7366.c -21ffc749ad65d3b800a953c71bc25658 linux-3.0/arch/sh/kernel/cpu/sh4a/setup-sh7343.c -2f8bf4951d93603eb3753038fef1374b linux-3.0/arch/sh/kernel/cpu/sh4a/pinmux-shx3.c -7aa55103d155c7237509f991b9223ff0 linux-3.0/arch/sh/kernel/cpu/sh4a/pinmux-sh7786.c -8f6dcd74fa28a82769d697f3302d3a78 linux-3.0/arch/sh/kernel/cpu/sh4a/pinmux-sh7785.c -bff08589dcd9c2ff905c77ac7fb23529 linux-3.0/arch/sh/kernel/cpu/sh4a/pinmux-sh7757.c -0ede16131ffa9c1d33405f7a2883bfb1 linux-3.0/arch/sh/kernel/cpu/sh4a/pinmux-sh7724.c -c22b2d7bdb7422f12fbfef9e618c78de linux-3.0/arch/sh/kernel/cpu/sh4a/pinmux-sh7723.c -6d8432e3a553f01668bb341b5daf3540 linux-3.0/arch/sh/kernel/cpu/sh4a/pinmux-sh7722.c -7bc0b8611ed202e0b619617e8d87dc64 linux-3.0/arch/sh/kernel/cpu/sh4a/perf_event.c -1631f99c79ffe77e354ed224491d33c5 linux-3.0/arch/sh/kernel/cpu/sh4a/intc-shx3.c -661ab9f543d558ba914b47ebabc86479 linux-3.0/arch/sh/kernel/cpu/sh4a/hwblk-sh7724.c -75e25126cc53b0936a9dd4dbe1f3781e linux-3.0/arch/sh/kernel/cpu/sh4a/hwblk-sh7723.c -1775630b7ad0980db99b8df870a9a2e6 linux-3.0/arch/sh/kernel/cpu/sh4a/hwblk-sh7722.c -0f7a13ced012a899eb4426cf6cd3714c linux-3.0/arch/sh/kernel/cpu/sh4a/clock-shx3.c -ee95105e840f1e67f6d063d95959ca54 linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7786.c -281af7816cd2d6bd75838c072cf64e30 linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7785.c -2774f05966fc441fd4e686d55d2eaea6 linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7780.c -501a08d22a113a328e110c5b38fb1378 linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7770.c -642a4bec55524fe2769d0d90a617998d linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7763.c -6a4890c651695b7a63790fce12b2f341 linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7757.c -fe39fb59af1df905af2a63490dc18ab1 linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7724.c -7236d7c7c3bfb16fb57135a308e3368a linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7723.c -447ec0229805297c8e35a5678ae6444d linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7722.c -7d6f8f2e4f5c05e8f20e38dacaff4448 linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7366.c -bfed3b4152089041daa7406b14ccf4d7 linux-3.0/arch/sh/kernel/cpu/sh4a/clock-sh7343.c -25d877bb7df895933b26cb31a08f63d7 linux-3.0/arch/sh/kernel/cpu/sh4a/Makefile -1d8744ae71f00f0e6dafa1743705b0eb linux-3.0/arch/sh/kernel/cpu/sh4/sq.c -a7991a0a695c0e5786429befdca11b99 linux-3.0/arch/sh/kernel/cpu/sh4/softfloat.c -461b3bfad8e74155294e03200dfb5cfa linux-3.0/arch/sh/kernel/cpu/sh4/setup-sh7760.c -5d1037e658276f427d8980bbb6e60ba6 linux-3.0/arch/sh/kernel/cpu/sh4/setup-sh7750.c -030059c8621ff2373264d338166a0958 linux-3.0/arch/sh/kernel/cpu/sh4/setup-sh4-202.c -2d0e8245ad3aa34350e29477c25fd689 linux-3.0/arch/sh/kernel/cpu/sh4/probe.c -5c677c72eee574efb75cd1a80770d945 linux-3.0/arch/sh/kernel/cpu/sh4/perf_event.c -a90c4d48cce7ab4f13df52e7866df4d8 linux-3.0/arch/sh/kernel/cpu/sh4/fpu.c -7283ff8943dbf12076c7036a3c3d1a45 linux-3.0/arch/sh/kernel/cpu/sh4/clock-sh4.c -89ba9a74e56a60440d303fd0290d50cc linux-3.0/arch/sh/kernel/cpu/sh4/clock-sh4-202.c -8d5d2fb31a95e797b47aa6aed22ad034 linux-3.0/arch/sh/kernel/cpu/sh4/Makefile -2a116c61410dce05b9b3de5cdc55d4e7 linux-3.0/arch/sh/kernel/cpu/sh3/swsusp.S -d7b6b2d1ccb796d86da56d0e576fe271 linux-3.0/arch/sh/kernel/cpu/sh3/setup-sh7720.c -f3b82f34f3d6a4ab6f1d9a3e6eb9d319 linux-3.0/arch/sh/kernel/cpu/sh3/setup-sh7710.c -dd786c6cec8e2560282cb6c00a1b81a8 linux-3.0/arch/sh/kernel/cpu/sh3/setup-sh770x.c -a658d07bf8900bcd1014fa3ec619aee6 linux-3.0/arch/sh/kernel/cpu/sh3/setup-sh7705.c -2d429627643621bb4ab2756084c1b4ca linux-3.0/arch/sh/kernel/cpu/sh3/setup-sh3.c -02394188a2d64124297d4e1acd3568b2 linux-3.0/arch/sh/kernel/cpu/sh3/probe.c -f8ed20c41a5444d7beb7637708383e12 linux-3.0/arch/sh/kernel/cpu/sh3/pinmux-sh7720.c -6d5ee96b0206b3ce90a6763540570365 linux-3.0/arch/sh/kernel/cpu/sh3/ex.S -b555459dcf59c12eb853f8945a73e440 linux-3.0/arch/sh/kernel/cpu/sh3/entry.S -99a79eb3287f9954e0044d1343d58e21 linux-3.0/arch/sh/kernel/cpu/sh3/clock-sh7712.c -7584b2faa5739c82e4f783522591ae0a linux-3.0/arch/sh/kernel/cpu/sh3/clock-sh7710.c -993326b29c42cc866150c78190911570 linux-3.0/arch/sh/kernel/cpu/sh3/clock-sh7709.c -ba91412cb8e416ea874a8ea822cf34bb linux-3.0/arch/sh/kernel/cpu/sh3/clock-sh7706.c -79086b0874a517dfbb5f9b6349e5302a linux-3.0/arch/sh/kernel/cpu/sh3/clock-sh7705.c -7f6252bd41c09af7993234320ba06a14 linux-3.0/arch/sh/kernel/cpu/sh3/clock-sh3.c -49e2df46edec8c15757032fbcb496cfc linux-3.0/arch/sh/kernel/cpu/sh3/Makefile -e9a3201e8bbe78f3d1afe36ab4af7147 linux-3.0/arch/sh/kernel/cpu/sh2a/setup-sh7206.c -c7437e15543ce8879c267a6b7b7ecd72 linux-3.0/arch/sh/kernel/cpu/sh2a/setup-sh7203.c -d4c035f049cb6b4b19e18425fc2dd4f6 linux-3.0/arch/sh/kernel/cpu/sh2a/setup-sh7201.c -e48e9f9fd2d5a6c365924341b56338bf linux-3.0/arch/sh/kernel/cpu/sh2a/setup-mxg.c -179034fb3551d00a5085641159046c98 linux-3.0/arch/sh/kernel/cpu/sh2a/probe.c -434dad371a13278e8cbcd80ab4d2cd7f linux-3.0/arch/sh/kernel/cpu/sh2a/pinmux-sh7203.c -2421f50c2bfac078cdee06b891b778d7 linux-3.0/arch/sh/kernel/cpu/sh2a/opcode_helper.c -0be58d1fe86e14a3cb28c92ef67f86c1 linux-3.0/arch/sh/kernel/cpu/sh2a/fpu.c -9cd87a77e893eeff4d91a37f77e48f8d linux-3.0/arch/sh/kernel/cpu/sh2a/ex.S -f2a98ac46d9ffc146d6828c009ee4f23 linux-3.0/arch/sh/kernel/cpu/sh2a/entry.S -65fce24d29972db2fb5872cd93e208bf linux-3.0/arch/sh/kernel/cpu/sh2a/clock-sh7206.c -0e0197bc689edb8b1be8c7fc01d947bb linux-3.0/arch/sh/kernel/cpu/sh2a/clock-sh7203.c -ac8e41e6875b28aee9ec2b780e8df3d1 linux-3.0/arch/sh/kernel/cpu/sh2a/clock-sh7201.c -7f84d71842034c8bff33040778529c84 linux-3.0/arch/sh/kernel/cpu/sh2a/Makefile -de124eb28edb91156c436347384f093b linux-3.0/arch/sh/kernel/cpu/sh2/setup-sh7619.c -6912ff6b0d00b92c87e1df36860edfd0 linux-3.0/arch/sh/kernel/cpu/sh2/probe.c -d3c55bfb3ecf09ff9388c4980709fcb0 linux-3.0/arch/sh/kernel/cpu/sh2/ex.S -bf8779e02da87760ced211ebbff4d3e8 linux-3.0/arch/sh/kernel/cpu/sh2/entry.S -f809223c1a55a24efc80d5d7bae87498 linux-3.0/arch/sh/kernel/cpu/sh2/clock-sh7619.c -32f0389b55f8c71c5ce8c9e69ddfcb85 linux-3.0/arch/sh/kernel/cpu/sh2/Makefile -596332cec5bafa6bca89d7f371d9aa80 linux-3.0/arch/sh/kernel/cpu/proc.c -d663e978defa51887b66816ae326d08f linux-3.0/arch/sh/kernel/cpu/irq/ipr.c -b492d6c98cefc642e3620711a124e6c2 linux-3.0/arch/sh/kernel/cpu/irq/intc-sh5.c -7cc477767af4a54b5a822a77679e17c2 linux-3.0/arch/sh/kernel/cpu/irq/imask.c -d4e788998efd9afdbf309bf572f6536a linux-3.0/arch/sh/kernel/cpu/irq/Makefile -0fae4b0735d0ec2256e1c1a93a54e0f9 linux-3.0/arch/sh/kernel/cpu/init.c -c357d4553cb45a1487cfaba7d4383d85 linux-3.0/arch/sh/kernel/cpu/hwblk.c -7c0a41489dc7fa0657a6d84a21ccecb1 linux-3.0/arch/sh/kernel/cpu/fpu.c -84c6bb72807033acc9c680e76aa1e1dd linux-3.0/arch/sh/kernel/cpu/clock.c -af66f14ce1308ea441ea04880044108a linux-3.0/arch/sh/kernel/cpu/clock-cpg.c -ec84374eea2e32618488359a094fb633 linux-3.0/arch/sh/kernel/cpu/adc.c -05001549f9d0fcb9640d7e3ae9a8f1bb linux-3.0/arch/sh/kernel/cpu/Makefile -a4f270b7e5f435a48814238ae6b796bc linux-3.0/arch/sh/kernel/asm-offsets.c -06a59deb203db9591c1ef8d78fd053ef linux-3.0/arch/sh/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/sh/kernel/.gitignore -25d40817f3a8bf2e9e28c07fb34ffca1 linux-3.0/arch/sh/include/mach-x3proto/mach/ilsel.h -5b6fbb0c83bac10bfd42a11934485d5a linux-3.0/arch/sh/include/mach-x3proto/mach/hardware.h -a883d0f5ed75a448da373a75907fe82b linux-3.0/arch/sh/include/mach-sh03/mach/sh03.h -4bee36bdaba986f7cf718fd0c0035182 linux-3.0/arch/sh/include/mach-sh03/mach/io.h -092696be2dcc7b023e778cc7b4236fa2 linux-3.0/arch/sh/include/mach-se/mach/se7780.h -d33f9d3e81b61d293d115bf039956e98 linux-3.0/arch/sh/include/mach-se/mach/se7751.h -d4e610d92d673416c9ad503fd477426e linux-3.0/arch/sh/include/mach-se/mach/se7724.h -52294393847584880382973e5ba047df linux-3.0/arch/sh/include/mach-se/mach/se7722.h -2f8348600371140f940634a9b804a7e3 linux-3.0/arch/sh/include/mach-se/mach/se7721.h -1294d367f2f72b3c8f2c7bfdb2ea2084 linux-3.0/arch/sh/include/mach-se/mach/se7343.h -3ba58ccb5cd0be67bd7070263a965211 linux-3.0/arch/sh/include/mach-se/mach/se7206.h -94c786a83ee3d25cc0e3ce1d5f907154 linux-3.0/arch/sh/include/mach-se/mach/se.h -a61edef3fc47ef7f969109914ab1dd2e linux-3.0/arch/sh/include/mach-se/mach/mrshpc.h -707eac28a01deaeeb0a32ea07b2bbcc7 linux-3.0/arch/sh/include/mach-sdk7786/mach/irq.h -f8d177e62d9bd36546d72db724a46543 linux-3.0/arch/sh/include/mach-sdk7786/mach/fpga.h -0101f4569ef4318ab80900b373efba51 linux-3.0/arch/sh/include/mach-migor/mach/migor.h -f1d67c6580e6667c0cbbcfc3990a2104 linux-3.0/arch/sh/include/mach-landisk/mach/iodata_landisk.h -530bca3cd94a086b6e584ad1a3bb72fb linux-3.0/arch/sh/include/mach-landisk/mach/gio.h -e8e69de78dd5bb42cdfff7137b445c8c linux-3.0/arch/sh/include/mach-kfr2r09/mach/romimage.h -fb6c7c30703a66486bae83ad46220894 linux-3.0/arch/sh/include/mach-kfr2r09/mach/partner-jet-setup.txt -8d56da25117b1dfa62cda1e6ee49d715 linux-3.0/arch/sh/include/mach-kfr2r09/mach/kfr2r09.h -798490ac923da432f78e095ba4baee61 linux-3.0/arch/sh/include/mach-ecovec24/mach/romimage.h -62d2fa5fd36b3153b909b61a1f56db72 linux-3.0/arch/sh/include/mach-ecovec24/mach/partner-jet-setup.txt -cb68526c700c606354f016924eca025c linux-3.0/arch/sh/include/mach-dreamcast/mach/sysasic.h -d7a71a9aa28c29ca9c96248c81c7889b linux-3.0/arch/sh/include/mach-dreamcast/mach/pci.h -442ee631a792bea6a049fe909ff5250d linux-3.0/arch/sh/include/mach-dreamcast/mach/maple.h -12caa2e10150a43537bc18171130a958 linux-3.0/arch/sh/include/mach-dreamcast/mach/dma.h -bf3507e020b6fe9571fd3d98c28af466 linux-3.0/arch/sh/include/mach-common/mach/urquell.h -23437dc2abdf689b8492d782b2c32806 linux-3.0/arch/sh/include/mach-common/mach/titan.h -54c4b3b1490c7ffe11f2c322013e4eae linux-3.0/arch/sh/include/mach-common/mach/shmin.h -29be930e1461e0ec4e31bacd3f454df8 linux-3.0/arch/sh/include/mach-common/mach/sh7785lcr.h -d6035f07888f27385f6f0ca81c6c1469 linux-3.0/arch/sh/include/mach-common/mach/sh7763rdp.h -e2e3b347ee28947c5e0c9aa92d11c6b7 linux-3.0/arch/sh/include/mach-common/mach/sh2007.h -101e4ecd509683653fd6d71d26e52ed1 linux-3.0/arch/sh/include/mach-common/mach/secureedge5410.h -50a0b8ee1d2bbdb8619b7e1fef8076fe linux-3.0/arch/sh/include/mach-common/mach/sdk7780.h -c5417d8d0550f32c3cb5d8fdeb3664a6 linux-3.0/arch/sh/include/mach-common/mach/romimage.h -2481ee35cbc4e01a4242a3f41ed53c6c linux-3.0/arch/sh/include/mach-common/mach/r2d.h -7ac781a5994306149799f4ee86332e21 linux-3.0/arch/sh/include/mach-common/mach/microdev.h -8c83b44ec5980cf9de3e6d13b176429e linux-3.0/arch/sh/include/mach-common/mach/magicpanelr2.h -93536b5fd8b286807a70d5c0ad237ccb linux-3.0/arch/sh/include/mach-common/mach/lboxre2.h -6929445a2a38c8fc1c449b3a9335ff9e linux-3.0/arch/sh/include/mach-common/mach/hp6xx.h -b35ac6b5205650929a19f6cbd774812a linux-3.0/arch/sh/include/mach-common/mach/highlander.h -001db31be8242e7c03e00db5a8a43858 linux-3.0/arch/sh/include/cpu-sh5/cpu/rtc.h -b54a908c6cad81603783da6c6a0e4b71 linux-3.0/arch/sh/include/cpu-sh5/cpu/registers.h -4f80af982bb243a381b29cd295133c8f linux-3.0/arch/sh/include/cpu-sh5/cpu/mmu_context.h -8c2bbc8fa769f892432810ed5844c23c linux-3.0/arch/sh/include/cpu-sh5/cpu/irq.h -80576b31bf91be6c02dcde70a9cdb0aa linux-3.0/arch/sh/include/cpu-sh5/cpu/dma.h -c37ab1a56c9e590a9490f7ff9c752edf linux-3.0/arch/sh/include/cpu-sh5/cpu/cache.h -1b9ef15b5cb36566c38f7a86cbfb7764 linux-3.0/arch/sh/include/cpu-sh5/cpu/addrspace.h -28bfbf41215b0f2c11d2e762bb761c89 linux-3.0/arch/sh/include/cpu-sh4/cpu/watchdog.h -c9002686d15af026d88213b63f692720 linux-3.0/arch/sh/include/cpu-sh4/cpu/sq.h -b1dd39e8098091a3d8a3a880cc93d2ec linux-3.0/arch/sh/include/cpu-sh4/cpu/sigcontext.h -97e6e63ed6cbf2600bc21003996a8d10 linux-3.0/arch/sh/include/cpu-sh4/cpu/shx3.h -e1c610690f5af25a49de4bd554d54b16 linux-3.0/arch/sh/include/cpu-sh4/cpu/sh7786.h -96eabd3fbfcdafd44beda5c21ea1a0d3 linux-3.0/arch/sh/include/cpu-sh4/cpu/sh7785.h -ebac3697607419d2c779cdd618213eba linux-3.0/arch/sh/include/cpu-sh4/cpu/sh7757.h -caf209920807b3551bdc5ac3e85bed75 linux-3.0/arch/sh/include/cpu-sh4/cpu/sh7724.h -54896399bc948ed2a0a23f4fdbe5a4bb linux-3.0/arch/sh/include/cpu-sh4/cpu/sh7723.h -d5357db0a6abb57eb47d76bd5e8dc108 linux-3.0/arch/sh/include/cpu-sh4/cpu/sh7722.h -910cc711d3c17d3e81db326086f44fc9 linux-3.0/arch/sh/include/cpu-sh4/cpu/rtc.h -bde4390d22996a77d2e46832ebb3aaad linux-3.0/arch/sh/include/cpu-sh4/cpu/mmu_context.h -f6677622d555e980de6dcf5c2f1fc271 linux-3.0/arch/sh/include/cpu-sh4/cpu/freq.h -78a7863156ec5cfd78176e1742754bc0 linux-3.0/arch/sh/include/cpu-sh4/cpu/fpu.h -356dfb8ced5ee4665ed85d820bcfc727 linux-3.0/arch/sh/include/cpu-sh4/cpu/dma.h -f59d952e6923c82dd8692e082e30f759 linux-3.0/arch/sh/include/cpu-sh4/cpu/dma-sh4a.h -1b9879898ecbf7c2bdc07f5d8d6946f4 linux-3.0/arch/sh/include/cpu-sh4/cpu/dma-register.h -26022bc43afe2c1f6012d6f1d068c4b5 linux-3.0/arch/sh/include/cpu-sh4/cpu/cache.h -868c620a78a289d13c86ecd9977f370d linux-3.0/arch/sh/include/cpu-sh4/cpu/addrspace.h -0ae0809aef435d670125a769bb17e2ce linux-3.0/arch/sh/include/cpu-sh3/cpu/watchdog.h -1bbde5ef064cf454b23141190c23fde4 linux-3.0/arch/sh/include/cpu-sh3/cpu/sh7720.h -0e4d41b870a3188132be7cadb5259c6c linux-3.0/arch/sh/include/cpu-sh3/cpu/mmu_context.h -05be00b51b302f7778a2b45465bde82f linux-3.0/arch/sh/include/cpu-sh3/cpu/gpio.h -47283e98df09f60dc0056b9321f5fd4a linux-3.0/arch/sh/include/cpu-sh3/cpu/freq.h -0a859463cb4b0edf37cc117414458029 linux-3.0/arch/sh/include/cpu-sh3/cpu/dma.h -8d95f7e1edcdd56a5478cc5fead1258c linux-3.0/arch/sh/include/cpu-sh3/cpu/dma-register.h -794c2118f1e820971143cc70b3dd3a2d linux-3.0/arch/sh/include/cpu-sh3/cpu/dac.h -c6dcf6be62639fb5e088be4f840cc1dd linux-3.0/arch/sh/include/cpu-sh3/cpu/cache.h -676b9c41fb70a4d3ab438649fffa6919 linux-3.0/arch/sh/include/cpu-sh3/cpu/adc.h -c8aeadb9de5f1a94ebd580f9a99e0f79 linux-3.0/arch/sh/include/cpu-sh2a/cpu/watchdog.h -5b3edc69d458f958f98625015f544465 linux-3.0/arch/sh/include/cpu-sh2a/cpu/ubc.h -148c2cddf1e04b0f720ff86b4feafcd7 linux-3.0/arch/sh/include/cpu-sh2a/cpu/sh7203.h -a891812c553f6a8bb26358fbede90c41 linux-3.0/arch/sh/include/cpu-sh2a/cpu/rtc.h -2fe57175263548202e6f62068a9d1704 linux-3.0/arch/sh/include/cpu-sh2a/cpu/freq.h -85540678a15fed69bfabe55caed2ae8f linux-3.0/arch/sh/include/cpu-sh2a/cpu/dma.h -70ad9543ff8620ab8e85d63bade7409f linux-3.0/arch/sh/include/cpu-sh2a/cpu/cache.h -cc7c33c886448139f366a0015c0ff0ba linux-3.0/arch/sh/include/cpu-sh2a/cpu/addrspace.h -cfd44f3b7b18d4d1b8c31d00cbde68d9 linux-3.0/arch/sh/include/cpu-sh2/cpu/watchdog.h -7b0b2023aef49b0909a7cd5713eaa56f linux-3.0/arch/sh/include/cpu-sh2/cpu/freq.h -f43bbb8afb83da0afe5d12851401dc18 linux-3.0/arch/sh/include/cpu-sh2/cpu/dma.h -7c9203b5a49bde34eb6bba44a913fedc linux-3.0/arch/sh/include/cpu-sh2/cpu/cache.h -b43ce958ac7932ed1cf6fc3b0ee6b7db linux-3.0/arch/sh/include/cpu-common/cpu/timer.h -1f327ef0f9b0585d17dabd480495baad linux-3.0/arch/sh/include/cpu-common/cpu/sigcontext.h -bec39bd021f5f0f057e88956e0ba9ec7 linux-3.0/arch/sh/include/cpu-common/cpu/rtc.h -4222a31fb7003e31f4a9fd199ddb6b02 linux-3.0/arch/sh/include/cpu-common/cpu/mmu_context.h -7d870547664f44dbeff2464d96673db2 linux-3.0/arch/sh/include/cpu-common/cpu/addrspace.h -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/sh/include/asm/xor.h -6bc6eb91cbaf4923b89361e644bcf039 linux-3.0/arch/sh/include/asm/watchdog.h -fd39ec18b4e043647c3212fe1ee85418 linux-3.0/arch/sh/include/asm/vmlinux.lds.h -7163d7646416b285b13212210c1aa3c6 linux-3.0/arch/sh/include/asm/vga.h -a35578248076618c3fabbacb02aafc4c linux-3.0/arch/sh/include/asm/user.h -fe61302722460caf29aef376974d3221 linux-3.0/arch/sh/include/asm/unwinder.h -763f04ed83e4b7b150a5c9d0300f3d6f linux-3.0/arch/sh/include/asm/unistd_64.h -993e872ce3314d13f7db9c123f36264e linux-3.0/arch/sh/include/asm/unistd_32.h -4a326cd594a2b29d75f89e2de701df3c linux-3.0/arch/sh/include/asm/unistd.h -dd41049dc07b8bc5f149679aff0dbc42 linux-3.0/arch/sh/include/asm/uncached.h -9d169d31e24052ec78f7e4946203d078 linux-3.0/arch/sh/include/asm/unaligned.h -ca8046c30970a44710ab1284cbdd8403 linux-3.0/arch/sh/include/asm/unaligned-sh4a.h -54ef8b4281a8709709fd75155efac8f2 linux-3.0/arch/sh/include/asm/ucontext.h -28d7c1fdd78eacccccaed266907e97ad linux-3.0/arch/sh/include/asm/uaccess_64.h -c76383db7e04ca121d8c2dbde7d37821 linux-3.0/arch/sh/include/asm/uaccess_32.h -a3f706fc575748c2fdd991e942ef0be2 linux-3.0/arch/sh/include/asm/uaccess.h -12951c9259f02f5cc32ca15322f3e349 linux-3.0/arch/sh/include/asm/types.h -2e6ba691123f0a53afecf000e44f21e5 linux-3.0/arch/sh/include/asm/topology.h -1e0bd7bad399f5ea7becd2920b8025eb linux-3.0/arch/sh/include/asm/tlbflush.h -49622044151bb17becc4ed3e9826458f linux-3.0/arch/sh/include/asm/tlb_64.h -ec1ca6e969694907d9b917371a8d71a6 linux-3.0/arch/sh/include/asm/tlb.h -81d7029dd5fa62fa53f75eb1559a4d9e linux-3.0/arch/sh/include/asm/timex.h -915e2d81a761abc742aa213b7afd2268 linux-3.0/arch/sh/include/asm/thread_info.h -55f8ec5e3a7ee0e398b33d52b4d28e89 linux-3.0/arch/sh/include/asm/termios.h -9d9ec0d765b9eba91700fcb860f4b9ee linux-3.0/arch/sh/include/asm/termbits.h -3baf23f91e9d7f2d9f132d5453cbc302 linux-3.0/arch/sh/include/asm/system_64.h -c0fb3cf8bbbffb5a83605863b7e8ab31 linux-3.0/arch/sh/include/asm/system_32.h -1eb683490d512773c632c5013ae75ba3 linux-3.0/arch/sh/include/asm/system.h -85f36ffcf19ac1be5d5b0e26e30c3274 linux-3.0/arch/sh/include/asm/syscalls_64.h -4e3456e18e29e6df43bd38bdac02a517 linux-3.0/arch/sh/include/asm/syscalls_32.h -ebc13c534bb231c1ea1abf20d3878440 linux-3.0/arch/sh/include/asm/syscalls.h -dfbc069bb8925590fc54aa845467ec31 linux-3.0/arch/sh/include/asm/syscall_64.h -3592bc80012edf24d0ac32336b713f6d linux-3.0/arch/sh/include/asm/syscall_32.h -88a03ada7a11cd1929242139d72cb0ca linux-3.0/arch/sh/include/asm/syscall.h -505ea87fdc6fd136c76e56370a61088d linux-3.0/arch/sh/include/asm/swab.h -12b47e91ce098120824941609a48cfc8 linux-3.0/arch/sh/include/asm/suspend.h -aab401e0cb0a1063d34b634119d931a8 linux-3.0/arch/sh/include/asm/string_64.h -6dfddc0714d77c734d7d0f10bc09ed1a linux-3.0/arch/sh/include/asm/string_32.h -58982e841ac29235cc877d924e1febd1 linux-3.0/arch/sh/include/asm/string.h -489ae18aadaf4332f5d94f6a163c8e11 linux-3.0/arch/sh/include/asm/statfs.h -945654d1e10032a0016e1e532eefd0c8 linux-3.0/arch/sh/include/asm/stat.h -9253a308fb55f85a5e09b3a26c288d1b linux-3.0/arch/sh/include/asm/stacktrace.h -5e5ad2d1ea1b859324785438affe6f73 linux-3.0/arch/sh/include/asm/sram.h -ca5c556413500d73123e3f8e82ce7b0b linux-3.0/arch/sh/include/asm/spinlock_types.h -fa5697a36b309418238aa8e0aef3d874 linux-3.0/arch/sh/include/asm/spinlock.h -f3bdcfdb39cab5e39dcfd8dd9b617c2f linux-3.0/arch/sh/include/asm/spi.h -e6534e5dbddfb2ed908172dd49fd2808 linux-3.0/arch/sh/include/asm/sparsemem.h -31136ac71cc75f2aee63a75b099573d6 linux-3.0/arch/sh/include/asm/sockios.h -892b575276515e01057bf49a9806fafc linux-3.0/arch/sh/include/asm/socket.h -f8521d503d6d9b560cd5ec96f5f71a84 linux-3.0/arch/sh/include/asm/smp.h -4332d070703f8108d6bbd5484232044d linux-3.0/arch/sh/include/asm/smp-ops.h -ddf426578c0d27de179d5545a06c59b8 linux-3.0/arch/sh/include/asm/smc37c93x.h -c7cd2e17bfb7378fe4d2cded84b3c5d3 linux-3.0/arch/sh/include/asm/sizes.h -3c68cc002030ff736c23e10b92d37d51 linux-3.0/arch/sh/include/asm/siu.h -57bfab1edba9a924efadb543bcb8b5d1 linux-3.0/arch/sh/include/asm/signal.h -f832ad954bc49f1c05d3f3b7de30bf05 linux-3.0/arch/sh/include/asm/siginfo.h -2a1bfdd8c64104f21af03d06e2966c15 linux-3.0/arch/sh/include/asm/sigcontext.h -629cfba57579ed68a6b58bd96030904d linux-3.0/arch/sh/include/asm/shmparam.h -c1f66b7faa2dfa17efdbdf1e416be250 linux-3.0/arch/sh/include/asm/shmbuf.h -76f1613eb648eae7f05db206998652e9 linux-3.0/arch/sh/include/asm/sh_eth.h -36d7f93102166990847a93d693c42cba linux-3.0/arch/sh/include/asm/sh_bios.h -824ee7f936b37a7e4d096889dad1dc5b linux-3.0/arch/sh/include/asm/sh7760fb.h -5705a1afb3b4cb6ecd23177552e6abde linux-3.0/arch/sh/include/asm/sfp-machine.h -ad490941f9b2d66d11dd24f7f0e54503 linux-3.0/arch/sh/include/asm/setup.h -b7fdb5c8ffc0fcea37c954a24e7e1777 linux-3.0/arch/sh/include/asm/serial.h -54b0fb0eed0916e7b2e6918f2bd8e3c3 linux-3.0/arch/sh/include/asm/sembuf.h -754f98fb24ad45b4cf9e6f0a2d6894e0 linux-3.0/arch/sh/include/asm/segment.h -c72335d7be51fff2e26ae40bfc46e4c9 linux-3.0/arch/sh/include/asm/sections.h -4a86fb4787fadec05690d5e9f4219eaf linux-3.0/arch/sh/include/asm/seccomp.h -b5c8f5ad6b65f0a26ba2d19b164bcbf6 linux-3.0/arch/sh/include/asm/scatterlist.h -e61fa33aa2e37c38b0a2de63896f8b9f linux-3.0/arch/sh/include/asm/rwsem.h -27b75e3013b7c3b47b3f2eeab34960a8 linux-3.0/arch/sh/include/asm/rtc.h -4357eef880bdcf166bc1cddce6a0888b linux-3.0/arch/sh/include/asm/romimage-macros.h -00d3672244fc9b76f7e0f21e986e061e linux-3.0/arch/sh/include/asm/resource.h -dd4c1692678c8b27528646491f58b3c2 linux-3.0/arch/sh/include/asm/reboot.h -766b29c538dfd178f92383e54559d560 linux-3.0/arch/sh/include/asm/push-switch.h -9903b9044f79bc535944e8b0c558b638 linux-3.0/arch/sh/include/asm/ptrace_64.h -a1aa41516b3807177ac5d51a9a2ed380 linux-3.0/arch/sh/include/asm/ptrace_32.h -0b94f7998315538213d4a30f19835544 linux-3.0/arch/sh/include/asm/ptrace.h -5a6b1ee63c8627375a9aa4a2a7717858 linux-3.0/arch/sh/include/asm/processor_64.h -f8a18a4adc13808d470b2e6c7a72c167 linux-3.0/arch/sh/include/asm/processor_32.h -6ba7739dfa41e7ee3659b58dbb2a8d55 linux-3.0/arch/sh/include/asm/processor.h -4072c2db94593a4faba09faa05923344 linux-3.0/arch/sh/include/asm/posix_types_64.h -fa64090801bd8077f5f0448f7883b3ae linux-3.0/arch/sh/include/asm/posix_types_32.h -892a2195874fdc912bfaf155ac575ac5 linux-3.0/arch/sh/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/sh/include/asm/poll.h -aa8482852360f473c26c484ec7484605 linux-3.0/arch/sh/include/asm/pgtable_64.h -a7b1a1a74f430a9601c6e361e8cfc7ed linux-3.0/arch/sh/include/asm/pgtable_32.h -b19574ed8397d5836614e128d02850c6 linux-3.0/arch/sh/include/asm/pgtable.h -7ea09544cea0dba419be2062f13c54c0 linux-3.0/arch/sh/include/asm/pgtable-3level.h -ee8de6ec9b9be20167972f611ea9a3a2 linux-3.0/arch/sh/include/asm/pgtable-2level.h -7b57ef8d3fd395596228c995f83b8d99 linux-3.0/arch/sh/include/asm/pgalloc.h -ca8c75719debdfb57e62cd00fe13fa92 linux-3.0/arch/sh/include/asm/perf_event.h -a4dbda3ffd9c5906c26b27c1a36b9488 linux-3.0/arch/sh/include/asm/percpu.h -9fe7fd9840914272bac502f7ace3c152 linux-3.0/arch/sh/include/asm/pci.h -419018600d2e2fc52e024d83ed2e460c linux-3.0/arch/sh/include/asm/parport.h -29dbb685f25e0e09aa59624964e2b815 linux-3.0/arch/sh/include/asm/param.h -33b1e5a5e5283359367edcede950a5c4 linux-3.0/arch/sh/include/asm/page.h -96394de32c64786a797e94287b378890 linux-3.0/arch/sh/include/asm/mutex.h -0a8b38b89cdf5fab9b90462e12fed4b1 linux-3.0/arch/sh/include/asm/mutex-llsc.h -a8606cb7f0b36b7ffed407a409829c9d linux-3.0/arch/sh/include/asm/msgbuf.h -c9645f9f323380ad4c2a006d28d32172 linux-3.0/arch/sh/include/asm/module.h -31c7b5c8b02a12ccaa4ae9f113a3914e linux-3.0/arch/sh/include/asm/mmzone.h -f4fdda64fc19dfd3d10046e459786d00 linux-3.0/arch/sh/include/asm/mmu_context_64.h -5e2be1ff6704c5eb7e2b3cfe65d1680e linux-3.0/arch/sh/include/asm/mmu_context_32.h -074c6f71e8aac134aab58722a0ff6569 linux-3.0/arch/sh/include/asm/mmu_context.h -cc38a6716298de36e884bfcedf7ce7f5 linux-3.0/arch/sh/include/asm/mmu.h -c10dfdbe274b25756fe8f9900e428096 linux-3.0/arch/sh/include/asm/mman.h -fbdaf8316312d9b305bfefc1b318a3d1 linux-3.0/arch/sh/include/asm/memblock.h -93f748681839d673da648deca828e99c linux-3.0/arch/sh/include/asm/mc146818rtc.h -0895ffc0ab9313496a702ce1fbcb351a linux-3.0/arch/sh/include/asm/machvec.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/sh/include/asm/local64.h -19564bedd4b3cf364358e7dd9ab594ac linux-3.0/arch/sh/include/asm/local.h -ba883b8ee28bfbb6d4e2a1ff819b8ea9 linux-3.0/arch/sh/include/asm/linkage.h -0733c18cdfeaa993bedcd7f9e7ca76de linux-3.0/arch/sh/include/asm/kprobes.h -53182f6afffcd87b9e0662118ae5ddd7 linux-3.0/arch/sh/include/asm/kmap_types.h -825cc5be4f1e53433b0d80ba980521f1 linux-3.0/arch/sh/include/asm/kgdb.h -7aa0129209f28c80154ad1c3cb2d793a linux-3.0/arch/sh/include/asm/kexec.h -ab97a6bab2e3fc5fc24ae888b7d1e9b2 linux-3.0/arch/sh/include/asm/kdebug.h -9f0ef630eb215d5377c81f65117a5493 linux-3.0/arch/sh/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/sh/include/asm/irq_regs.h -0a5711e5dbdeb8cc1763550d1d3517dd linux-3.0/arch/sh/include/asm/irq.h -a5cedbd444be7216303596ec4d505047 linux-3.0/arch/sh/include/asm/ipcbuf.h -109e26cdbd88c71598f38d8c16f9538b linux-3.0/arch/sh/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/sh/include/asm/ioctl.h -9293104244de7fada7edc078ee07ec38 linux-3.0/arch/sh/include/asm/io_trapped.h -695c467137f966a80f49a4829a903e20 linux-3.0/arch/sh/include/asm/io_generic.h -14717ee067c86631652db0a2d13043e6 linux-3.0/arch/sh/include/asm/io.h -4248571dc2d30e4e402d297fc1d40bf9 linux-3.0/arch/sh/include/asm/i2c-sh7760.h -bacd9d460a4802cc1df247105dfddada linux-3.0/arch/sh/include/asm/hwblk.h -0e0681cab6e611d6765fcda2024e4ff7 linux-3.0/arch/sh/include/asm/hw_irq.h -c05117b089559f7a1f06d160dbe4e61c linux-3.0/arch/sh/include/asm/hw_breakpoint.h -7d305137281d8f4a0b9b97cd78bd749d linux-3.0/arch/sh/include/asm/hugetlb.h -ecbf6856db01d4e824f6564feddbd6e4 linux-3.0/arch/sh/include/asm/heartbeat.h -8f81eadf9d6066646f7462e64a2a7f8f linux-3.0/arch/sh/include/asm/hd64461.h -3f0830b09f470b4349c2f00ec4d10974 linux-3.0/arch/sh/include/asm/hardirq.h -8264e577ff19e711b19012b724df1a68 linux-3.0/arch/sh/include/asm/gpio.h -bf391932538d04bc78a7aad164fa3894 linux-3.0/arch/sh/include/asm/futex.h -de9c3be976f7d6cc7cb8e5d183668053 linux-3.0/arch/sh/include/asm/futex-irq.h -d87d33eb3c827de9667fd9d1294c686f linux-3.0/arch/sh/include/asm/ftrace.h -16041c807629a5bed16c410fe526a241 linux-3.0/arch/sh/include/asm/freq.h -c681f6ce28787e88415508a928303b59 linux-3.0/arch/sh/include/asm/fpu.h -94ffbf692a7a784cc3d825e556af9ace linux-3.0/arch/sh/include/asm/flat.h -d582dc8bd438ab6e1d07b18b9a028f3f linux-3.0/arch/sh/include/asm/fixmap.h -a598360d85106db07897c937209e63eb linux-3.0/arch/sh/include/asm/fcntl.h -e31d052cbba4f417ba2158a41b0d8709 linux-3.0/arch/sh/include/asm/fb.h -4839c19afc03070e09b30ed180bdf962 linux-3.0/arch/sh/include/asm/errno.h -6ed9fc877056083e08a07079140b3641 linux-3.0/arch/sh/include/asm/entry-macros.S -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/sh/include/asm/emergency-restart.h -895ba721005c0657b9854f3587e650cf linux-3.0/arch/sh/include/asm/elf.h -0975ddb6353966d36e08a10c67447167 linux-3.0/arch/sh/include/asm/dwarf.h -1ee30ba27e71abeccfb38f4859680c90 linux-3.0/arch/sh/include/asm/dmabrg.h -3a5d7afed7aeda29c11786e37211fed1 linux-3.0/arch/sh/include/asm/dma.h -ea61febaffed9cf19778d41925c9e22a linux-3.0/arch/sh/include/asm/dma-sh.h -dd93dfd6f06d5d1de1b7fc3b2088a1b3 linux-3.0/arch/sh/include/asm/dma-register.h -9222eff079f2da6a7012bde8235bacda linux-3.0/arch/sh/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/sh/include/asm/div64.h -5f2971679f44b378235bdd45fc33c58a linux-3.0/arch/sh/include/asm/device.h -5da3aaea515bf5870e4009f6ce257408 linux-3.0/arch/sh/include/asm/delay.h -13273a00e1c43d5fb9c31339028bf8af linux-3.0/arch/sh/include/asm/current.h -640d6a00384b72b924906d1a0f18d30d linux-3.0/arch/sh/include/asm/cputime.h -e032eff42a9ff2b9d9bb93f6d332d4c6 linux-3.0/arch/sh/include/asm/cpu-features.h -d9a7733e9dd79396680a7357aa2631f0 linux-3.0/arch/sh/include/asm/cmpxchg-llsc.h -ceab42eb8ce763aad6ea943f3b59f7e8 linux-3.0/arch/sh/include/asm/cmpxchg-irq.h -95e08d328c0793a81f0346b6de65df01 linux-3.0/arch/sh/include/asm/cmpxchg-grb.h -7f512a13b64d1639c9bab2bf7c60b3b4 linux-3.0/arch/sh/include/asm/clock.h -4bcfd1a1bf8abc67c8b0c2fd20b1ca74 linux-3.0/arch/sh/include/asm/clkdev.h -0b16a752561ac43ae75eefe93560967e linux-3.0/arch/sh/include/asm/checksum_32.h -a05d1f9552147a0cd9090b1c61bf3ce0 linux-3.0/arch/sh/include/asm/checksum.h -17a9fcb484ba2216771f9d576dd7fc25 linux-3.0/arch/sh/include/asm/cacheflush.h -add29ff69baac607a70c7e73760a99b3 linux-3.0/arch/sh/include/asm/cachectl.h -88b196fab7882b12b3efc41641e6d985 linux-3.0/arch/sh/include/asm/cache.h -3d3fa9dc53639433e1e4096f65dfbfb4 linux-3.0/arch/sh/include/asm/byteorder.h -381b0675e450309acea6e45d0c2e92d7 linux-3.0/arch/sh/include/asm/bugs.h -a6fcfa3ec67493879a0793aa5a21a86f linux-3.0/arch/sh/include/asm/bug.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/sh/include/asm/bitsperlong.h -08c77d01e033b8ccad687547bbbd9abe linux-3.0/arch/sh/include/asm/bitops.h -73c42b84f95467bb7e9da8f6b5db4f3d linux-3.0/arch/sh/include/asm/bitops-op32.h -2661c277d07903a81f1317529ebabde0 linux-3.0/arch/sh/include/asm/bitops-llsc.h -431b49168fe90a6ee1a90546fda3944f linux-3.0/arch/sh/include/asm/bitops-grb.h -b658d60b45f32416b78e86382be8084e linux-3.0/arch/sh/include/asm/auxvec.h -99d07ebea7a9b713d9b96b7440653089 linux-3.0/arch/sh/include/asm/atomic.h -d0ebd1b1397a8bc161caebd7e845367a linux-3.0/arch/sh/include/asm/atomic-llsc.h -5e1e3e62108f7cfd965cfc52791d21b3 linux-3.0/arch/sh/include/asm/atomic-irq.h -ed8371c1d45b24bdd882c018fe5be3c4 linux-3.0/arch/sh/include/asm/atomic-grb.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/sh/include/asm/asm-offsets.h -7978761f4b2f0263f0eb7e03731a658c linux-3.0/arch/sh/include/asm/alignment.h -05d65d624a264f5706e41c376755ba83 linux-3.0/arch/sh/include/asm/addrspace.h -c7a5f9970c1f8e652788249e14aedd5d linux-3.0/arch/sh/include/asm/adc.h -ba1bf598bbc43e57724ce4054f9b8574 linux-3.0/arch/sh/include/asm/Kbuild -60387cf6630585047e77329f53bc0f27 linux-3.0/arch/sh/drivers/superhyway/ops-sh4-202.c -d407681155b80f106e5054b1366dade2 linux-3.0/arch/sh/drivers/superhyway/Makefile -7940a3f64982a8372fc15c1d6f34d26d linux-3.0/arch/sh/drivers/push-switch.c -0304852199697255c181653f806f71cb linux-3.0/arch/sh/drivers/pci/pcie-sh7786.h -9205c0d4575c78586429a9101215c251 linux-3.0/arch/sh/drivers/pci/pcie-sh7786.c -f7992c4af821d6e63613fcadff2db566 linux-3.0/arch/sh/drivers/pci/pci.c -1852094104fbcd6689e60f4b8352a62a linux-3.0/arch/sh/drivers/pci/pci-sh7780.h -ff08148743cfd42bed2cf8c62a8f225a linux-3.0/arch/sh/drivers/pci/pci-sh7780.c -e5487449fe2c44467a876d58fb352f98 linux-3.0/arch/sh/drivers/pci/pci-sh7751.h -0058232c0e4621997a0748f1f93fd0c5 linux-3.0/arch/sh/drivers/pci/pci-sh7751.c -1a0ffc071462466a76adaa3c9a9387eb linux-3.0/arch/sh/drivers/pci/pci-sh5.h -d7adc8c852b0d1134bda5f351183a253 linux-3.0/arch/sh/drivers/pci/pci-sh5.c -93c2b602a942af1f41a22dcd2dae991c linux-3.0/arch/sh/drivers/pci/pci-sh4.h -53dd05388cec2f2c96e9055227028746 linux-3.0/arch/sh/drivers/pci/pci-dreamcast.c -f161d4c3a0bfc8008e1428e15e5774e3 linux-3.0/arch/sh/drivers/pci/ops-sh7786.c -c95f46eb91b3dd81e70a71dde7a3ac4d linux-3.0/arch/sh/drivers/pci/ops-sh5.c -35055ea0c0b5bff9561931f84457c948 linux-3.0/arch/sh/drivers/pci/ops-sh4.c -b03b8f33fc28608065b9b6915c3a836d linux-3.0/arch/sh/drivers/pci/ops-dreamcast.c -955da31581577d3ac3e0be6cce97a88a linux-3.0/arch/sh/drivers/pci/fixups-titan.c -2a9aa66ea37334f9483a0456c371930a linux-3.0/arch/sh/drivers/pci/fixups-snapgear.c -d94491f490a839c7e2461e4f5404fcfc linux-3.0/arch/sh/drivers/pci/fixups-sh03.c -d08bdb728e9b428b2b8c556149cbe37a linux-3.0/arch/sh/drivers/pci/fixups-se7751.c -21e05a60b4c06ddaab47021c89cebda8 linux-3.0/arch/sh/drivers/pci/fixups-sdk7786.c -1faa1ad7d7807be235851db5855066cf linux-3.0/arch/sh/drivers/pci/fixups-sdk7780.c -43beca09296b354c661d3224d43c25a4 linux-3.0/arch/sh/drivers/pci/fixups-rts7751r2d.c -a443b964d573bfc7516736c0b240c8e9 linux-3.0/arch/sh/drivers/pci/fixups-r7780rp.c -72ab755b9eec64d85a0bc89f9aba3d88 linux-3.0/arch/sh/drivers/pci/fixups-landisk.c -1e2a938a7bc00847f708b9c3f81e7a81 linux-3.0/arch/sh/drivers/pci/fixups-dreamcast.c -b9e5bccbd790fc27d8f7b0b940bece71 linux-3.0/arch/sh/drivers/pci/fixups-cayman.c -4138dc1e9e49f07f44bc075eef6763db linux-3.0/arch/sh/drivers/pci/common.c -a99d454ba2227e89857339478a8c753b linux-3.0/arch/sh/drivers/pci/Makefile -4029fd9e83b3f39dcd73e9a0cc0dbc30 linux-3.0/arch/sh/drivers/heartbeat.c -b70011be382cc6e5368e7f352e73f2c2 linux-3.0/arch/sh/drivers/dma/dmabrg.c -3c0f38f038106305206d63d8697c812c linux-3.0/arch/sh/drivers/dma/dma-sysfs.c -bffca8f53afa2eb126d3190ecf4d6ea7 linux-3.0/arch/sh/drivers/dma/dma-sh.c -0479396ed5ab3dd67f673e1d9202eb0f linux-3.0/arch/sh/drivers/dma/dma-pvr2.c -9d03708fbe91a02c713ec9afe32da0a8 linux-3.0/arch/sh/drivers/dma/dma-g2.c -a013217751b06b1b87eb8459f54084e0 linux-3.0/arch/sh/drivers/dma/dma-api.c -0a6a2407b2460b7e76aa86f5fa3920e7 linux-3.0/arch/sh/drivers/dma/Makefile -6b28494f6579dd5bd5efe934a605b02f linux-3.0/arch/sh/drivers/dma/Kconfig -a43e9246655fe7bc35a8f5aef180e7ff linux-3.0/arch/sh/drivers/Makefile -59d93a9b104535c3ae2bf9c195ff5fcc linux-3.0/arch/sh/drivers/Kconfig -e804ad6ea222274d7ea11046148be307 linux-3.0/arch/sh/configs/urquell_defconfig -90ca20275871d0e1d43ee0b70acaf59d linux-3.0/arch/sh/configs/ul2_defconfig -abc8f3bfced973994ac6bbaee31d3e77 linux-3.0/arch/sh/configs/titan_defconfig -6566dae7ff47d8e90c8807e3061a8483 linux-3.0/arch/sh/configs/shx3_defconfig -cad2c30240e1567fb816a15fef828a2d linux-3.0/arch/sh/configs/shmin_defconfig -aeedf8a6670c010760dcfcadcf419c44 linux-3.0/arch/sh/configs/sh7785lcr_defconfig -5daabb71b2685d4ec3ab0dd7d040d49b linux-3.0/arch/sh/configs/sh7785lcr_32bit_defconfig -788c869b9f342506a3b9f0893948a13b linux-3.0/arch/sh/configs/sh7770_generic_defconfig -7d532d2e4847d87ddb52281b054cc6a0 linux-3.0/arch/sh/configs/sh7763rdp_defconfig -2cea5e607e5af5ff98fa66347df57ed8 linux-3.0/arch/sh/configs/sh7757lcr_defconfig -3de95304623646c2dd41a69bd9afc346 linux-3.0/arch/sh/configs/sh7724_generic_defconfig -d6e790ff9788692169b0c77b1e70f437 linux-3.0/arch/sh/configs/sh7710voipgw_defconfig -b9fd08561c7400948a887b5d67d29022 linux-3.0/arch/sh/configs/sh2007_defconfig -23ae0933e17abb369951d0ecb6ac7d60 linux-3.0/arch/sh/configs/sh03_defconfig -469fd5d87d4defb900ad032965c4ad3d linux-3.0/arch/sh/configs/secureedge5410_defconfig -7421a2b85be443706b85d077b628f6d2 linux-3.0/arch/sh/configs/se7780_defconfig -af97ae69814bd2efb7c1de118718c4ff linux-3.0/arch/sh/configs/se7751_defconfig -a209ae1d2dac6235d7601c6ee474ef15 linux-3.0/arch/sh/configs/se7750_defconfig -2f92a800bf3a9115920dba9eae8d0105 linux-3.0/arch/sh/configs/se7724_defconfig -134a9defa1308c738a2633c59500ac6c linux-3.0/arch/sh/configs/se7722_defconfig -4a33dd96d0a09e6133220bf7c468f943 linux-3.0/arch/sh/configs/se7721_defconfig -5ddfb5dd401b224efd3ac81f3d07cd90 linux-3.0/arch/sh/configs/se7712_defconfig -ff19bf5acd568c0948a5a4831c59db8c linux-3.0/arch/sh/configs/se7705_defconfig -05051ee36b2ae767cfe2bbe34be6fc97 linux-3.0/arch/sh/configs/se7619_defconfig -35f8878f3a6dc630f63999cf537c8325 linux-3.0/arch/sh/configs/se7343_defconfig -67c9b6bdb714e020e1459b71bdacd65e linux-3.0/arch/sh/configs/se7206_defconfig -033248b098511f508eb3167a95d321cc linux-3.0/arch/sh/configs/sdk7786_defconfig -e733b83c1f680266da3a26afba162859 linux-3.0/arch/sh/configs/sdk7780_defconfig -31b07b9ab907d0c32ce6be8b098cd2e4 linux-3.0/arch/sh/configs/rts7751r2dplus_defconfig -3f7c7f9ec23b661101e76ca669a387b5 linux-3.0/arch/sh/configs/rts7751r2d1_defconfig -f6c3668edeebdfe6753d5222a1599ff5 linux-3.0/arch/sh/configs/rsk7203_defconfig -dfe1a1fbdd2f1f1d3ad3849477d8c370 linux-3.0/arch/sh/configs/rsk7201_defconfig -d51ad659ccebe21e7ee88c31a486e4a4 linux-3.0/arch/sh/configs/r7785rp_defconfig -f01f9d864b4fc9165c37f897f16248b1 linux-3.0/arch/sh/configs/r7780mp_defconfig -29326c5b08a257b127cdef9aaf10009a linux-3.0/arch/sh/configs/polaris_defconfig -3a17d9f29515b1403d13747ca75ef1d8 linux-3.0/arch/sh/configs/migor_defconfig -9a91dfe044f517647262299a2d2fcedb linux-3.0/arch/sh/configs/microdev_defconfig -24de8f05e90373866217c3554f780918 linux-3.0/arch/sh/configs/magicpanelr2_defconfig -e4b97ac4a498a63e82a03155419f949c linux-3.0/arch/sh/configs/lboxre2_defconfig -dabcd961fdfac9b21d71e2e921730946 linux-3.0/arch/sh/configs/landisk_defconfig -9f37cd9eb06b00b267bea7b8eac392e8 linux-3.0/arch/sh/configs/kfr2r09_defconfig -1fcdca71e19f8b1e631131bb1562aa84 linux-3.0/arch/sh/configs/kfr2r09-romimage_defconfig -c388492a22c9f129da67485ad9a178aa linux-3.0/arch/sh/configs/hp6xx_defconfig -c612dad899a527a01aae397bc78c12ae linux-3.0/arch/sh/configs/espt_defconfig -74a7416656d39ecaab8197ba003b57ca linux-3.0/arch/sh/configs/edosk7760_defconfig -f99f638caa9d0f25a5e48bef29a28bf0 linux-3.0/arch/sh/configs/edosk7705_defconfig -e332507e56700b06c8cf82af4dbd3e19 linux-3.0/arch/sh/configs/ecovec24_defconfig -3400be6171df2efd731a89599649cb19 linux-3.0/arch/sh/configs/ecovec24-romimage_defconfig -06242b2606dececbe5cd16d0d8367ce6 linux-3.0/arch/sh/configs/dreamcast_defconfig -0b8a89fdc21dfa2e781da22d48c00b53 linux-3.0/arch/sh/configs/cayman_defconfig -1f298db4a3fd5238734a4f6cd86ee4c8 linux-3.0/arch/sh/configs/apsh4ad0a_defconfig -8069e9ebb0d5efecc5910166e82dec37 linux-3.0/arch/sh/configs/apsh4a3a_defconfig -9d71d493e765310768ec5923debd85e1 linux-3.0/arch/sh/configs/ap325rxa_defconfig -7a7f63f014ea33e12737a88f85a7199c linux-3.0/arch/sh/cchips/hd6446x/hd64461.c -d0b4e7ed3621984371db94d6b2ffd29c linux-3.0/arch/sh/cchips/hd6446x/Makefile -254616e1a109407b2286288d8d8130c0 linux-3.0/arch/sh/cchips/Kconfig -d1760218c85872163895848efa7a30c8 linux-3.0/arch/sh/boot/romimage/vmlinux.scr -c7cfb734c497454af027d49c2d7dc3c4 linux-3.0/arch/sh/boot/romimage/mmcif-sh7724.c -935050531d5476d95abb394e65ead8cc linux-3.0/arch/sh/boot/romimage/head.S -abcd4b0bb5964ab14086789fec9f47bb linux-3.0/arch/sh/boot/romimage/Makefile -500da1b84f3f319687870069fac34564 linux-3.0/arch/sh/boot/compressed/vmlinux.scr -167ee36857dbcfc11a59fb23f6d99fba linux-3.0/arch/sh/boot/compressed/misc.c -e7c1fe57781f01b4dd65bc822e6e1b2c linux-3.0/arch/sh/boot/compressed/install.sh -fae80058300b4c10dfa14886d4561ca2 linux-3.0/arch/sh/boot/compressed/head_64.S -98ac47123abaf386098b8b362aeecbee linux-3.0/arch/sh/boot/compressed/head_32.S -3289b5866c5e109036ccdb7241c787a7 linux-3.0/arch/sh/boot/compressed/cache.c -6845c17ad63aa683a7a6ccc279e14a1e linux-3.0/arch/sh/boot/compressed/Makefile -7242bc40c9d913d60419d28ca4b83634 linux-3.0/arch/sh/boot/compressed/.gitignore -e6a2b8a1aa838dbadf0727c2811fca02 linux-3.0/arch/sh/boot/Makefile -9f993b66a00a856e840f38a3bb52ca3d linux-3.0/arch/sh/boot/.gitignore -0207aeeda84b596ef9fb3c87506b5d3e linux-3.0/arch/sh/boards/mach-x3proto/setup.c -cfb5bef5ffec4d014985099c1b3e655c linux-3.0/arch/sh/boards/mach-x3proto/ilsel.c -980e0980e4ecce073575318caeaab811 linux-3.0/arch/sh/boards/mach-x3proto/gpio.c -ecc216a1d7362914480951a668b1be62 linux-3.0/arch/sh/boards/mach-x3proto/Makefile -fbc6f21ac91f9310c3af08656a995377 linux-3.0/arch/sh/boards/mach-sh7763rdp/setup.c -48556f49d2b69f585db3d3b9ee3d71eb linux-3.0/arch/sh/boards/mach-sh7763rdp/irq.c -e09dd17cd2de78d3c455549f99e82f66 linux-3.0/arch/sh/boards/mach-sh7763rdp/Makefile -058cd4282c16bc1813d849e7923af65f linux-3.0/arch/sh/boards/mach-sh03/setup.c -1471c312f2761d3c5eca631e5488c194 linux-3.0/arch/sh/boards/mach-sh03/rtc.c -f3eba79315d100b70a8cd7454e0828ed linux-3.0/arch/sh/boards/mach-sh03/Makefile -2caec6fa6921b5d92ca9bd6b28f19f7b linux-3.0/arch/sh/boards/mach-se/board-se7619.c -aff76507d647f638ba00fd746c0e4ba2 linux-3.0/arch/sh/boards/mach-se/Makefile -146457691039c6071b1de3754b5da341 linux-3.0/arch/sh/boards/mach-se/7780/setup.c -002ee5751427dec070d4057ded252fe9 linux-3.0/arch/sh/boards/mach-se/7780/irq.c -39224bbab271b5685775b0624be88f66 linux-3.0/arch/sh/boards/mach-se/7780/Makefile -a4988ab3fc2ed27c06505865fd9eabc7 linux-3.0/arch/sh/boards/mach-se/7751/setup.c -33e7c6351b4f5a5a545d130db36bbd19 linux-3.0/arch/sh/boards/mach-se/7751/irq.c -47a93b5d3d175b473dddef3279d80327 linux-3.0/arch/sh/boards/mach-se/7751/Makefile -93ca7f78567794f6ac4873bf9e8aa540 linux-3.0/arch/sh/boards/mach-se/7724/setup.c -cbaf5de99570e8f6a41d7da0e3cd9701 linux-3.0/arch/sh/boards/mach-se/7724/sdram.S -563406c222688073124a7fdc43fcb5e0 linux-3.0/arch/sh/boards/mach-se/7724/irq.c -767374fd9a13ebea89d3e4244229cfe1 linux-3.0/arch/sh/boards/mach-se/7724/Makefile -6d8aec73203723c818befff0931d2f8d linux-3.0/arch/sh/boards/mach-se/7722/setup.c -04bc7cf381510938497d722036bd47a4 linux-3.0/arch/sh/boards/mach-se/7722/irq.c -5a663ed38f2a4319cbc77b63c4959954 linux-3.0/arch/sh/boards/mach-se/7722/Makefile -37b160cfb9fc76239c70a9d722c88c10 linux-3.0/arch/sh/boards/mach-se/7721/setup.c -40a5db3fc757a0b5a8a2e5118df4639c linux-3.0/arch/sh/boards/mach-se/7721/irq.c -53232e923268b0d430a3dd60b5f5bc9a linux-3.0/arch/sh/boards/mach-se/7721/Makefile -973b07c9f00bcbab1e5a2fd29695f1f7 linux-3.0/arch/sh/boards/mach-se/770x/setup.c -63a81f8ff684bde653db77801ef444a2 linux-3.0/arch/sh/boards/mach-se/770x/irq.c -63558b5fe2c91e9c2d8e9a1fd0548c5f linux-3.0/arch/sh/boards/mach-se/770x/Makefile -7d60108f386c93dacbb203c4d5213946 linux-3.0/arch/sh/boards/mach-se/7343/setup.c -7b8b41dacd611e7c3e9665d3b8190524 linux-3.0/arch/sh/boards/mach-se/7343/irq.c -ddcc4ad7e6862a68123f7f0f40c97a02 linux-3.0/arch/sh/boards/mach-se/7343/Makefile -b9993d4c9d2a5de19dc95d6ff51737ba linux-3.0/arch/sh/boards/mach-se/7206/setup.c -6bee382d923bd4c0a6a602872443920d linux-3.0/arch/sh/boards/mach-se/7206/irq.c -c294782afb153d7e98a3e9f193b7c338 linux-3.0/arch/sh/boards/mach-se/7206/Makefile -02dfec59cf43c1eb747e70fc06400c2e linux-3.0/arch/sh/boards/mach-sdk7786/sram.c -68a2c788ce5b2bbf90b13f937aa69b7b linux-3.0/arch/sh/boards/mach-sdk7786/setup.c -2fe095c52df7c9ebde609ae4ca8fdc53 linux-3.0/arch/sh/boards/mach-sdk7786/nmi.c -7afd5566091b142737d6b5f1c6da0ad1 linux-3.0/arch/sh/boards/mach-sdk7786/irq.c -46c56f7fdbe2d51abc0f87e62dd6f4a0 linux-3.0/arch/sh/boards/mach-sdk7786/gpio.c -6e5bd9f1b024d12fe0be7cec1e48b9fb linux-3.0/arch/sh/boards/mach-sdk7786/fpga.c -4221f34a8e5c18781f13703055ec2015 linux-3.0/arch/sh/boards/mach-sdk7786/Makefile -1a824e3aded6aac8190a6c3bfe10dc75 linux-3.0/arch/sh/boards/mach-sdk7780/setup.c -8b6ea3fb142d34c9c151bc45c915ad1b linux-3.0/arch/sh/boards/mach-sdk7780/irq.c -28b1630a1b4d8812f0015fdfc7ce3a5d linux-3.0/arch/sh/boards/mach-sdk7780/Makefile -df5470fbeccaf1ee4501badf5ec082f9 linux-3.0/arch/sh/boards/mach-sdk7780/Kconfig -b08cef2b426344790385280e98c0389a linux-3.0/arch/sh/boards/mach-rsk/setup.c -10b3f2a2fb633fba289f5218bc7af369 linux-3.0/arch/sh/boards/mach-rsk/devices-rsk7203.c -8584fa4bfdc95ec2564c5fb73e088e7a linux-3.0/arch/sh/boards/mach-rsk/Makefile -8d3677ad3452f6e2e0e1f9403fcbd2dc linux-3.0/arch/sh/boards/mach-rsk/Kconfig -25ddd5c9ebfa86a916c3bb8077b9d4eb linux-3.0/arch/sh/boards/mach-r2d/setup.c -4126beca7fd4f8eb219c3acc2e9aa4ff linux-3.0/arch/sh/boards/mach-r2d/irq.c -63a4b438803f9ba00cf09d431a08eca0 linux-3.0/arch/sh/boards/mach-r2d/Makefile -226f549821a226e7a180c663dbcb9512 linux-3.0/arch/sh/boards/mach-r2d/Kconfig -81bb96eb4617da56b50ac3fb8f250060 linux-3.0/arch/sh/boards/mach-migor/setup.c -416a4ad46914c6c92bfcf0cff899e47d linux-3.0/arch/sh/boards/mach-migor/sdram.S -772b6be3f6df80dd95e9f92df16b4d9d linux-3.0/arch/sh/boards/mach-migor/lcd_qvga.c -ca5c0a0aa002e588bde4a6aec61d3df0 linux-3.0/arch/sh/boards/mach-migor/Makefile -34e3346abeb88765a72a7ea5170e0d9b linux-3.0/arch/sh/boards/mach-migor/Kconfig -a95ce7209f0ccd442d432aaf35f2b4a7 linux-3.0/arch/sh/boards/mach-microdev/setup.c -02b94d5aa941fa079c338a157391103d linux-3.0/arch/sh/boards/mach-microdev/irq.c -e8b0c7ace9a10275ff1f1852c585eb50 linux-3.0/arch/sh/boards/mach-microdev/io.c -295c7e3024afcad07fa6f18d944983e9 linux-3.0/arch/sh/boards/mach-microdev/fdc37c93xapm.c -c8b6a06ef027dd6b653e8fa726d20cd9 linux-3.0/arch/sh/boards/mach-microdev/Makefile -03b9d49f06d1aa2f83135b71ef0895b9 linux-3.0/arch/sh/boards/mach-lboxre2/setup.c -878ea7163c8af64bdd2821d211d471e2 linux-3.0/arch/sh/boards/mach-lboxre2/irq.c -4edf6e536aa1d1ba53792551e22f891a linux-3.0/arch/sh/boards/mach-lboxre2/Makefile -c798a22000d95f8e325f363d4930690c linux-3.0/arch/sh/boards/mach-landisk/setup.c -084a9e7e4186d4af1b37197ebcc3c703 linux-3.0/arch/sh/boards/mach-landisk/psw.c -b27b783a365905629b25d62a278e97d6 linux-3.0/arch/sh/boards/mach-landisk/irq.c -3739ddcb966decd80df3911327b255c8 linux-3.0/arch/sh/boards/mach-landisk/gio.c -063c56a99f23f80767179d34b3dd99f9 linux-3.0/arch/sh/boards/mach-landisk/Makefile -42a5fc49e2ed729ff13ab0e1549e8f0c linux-3.0/arch/sh/boards/mach-kfr2r09/setup.c -ffbe8bb4672398c6b37fc6feea463755 linux-3.0/arch/sh/boards/mach-kfr2r09/sdram.S -d12cc52d1bc7e511f754709a19276ee7 linux-3.0/arch/sh/boards/mach-kfr2r09/lcd_wqvga.c -5663b302f77f731da676c9c907fc180c linux-3.0/arch/sh/boards/mach-kfr2r09/Makefile -f49441e1aaa74f4cdca3d20ad6a69da8 linux-3.0/arch/sh/boards/mach-hp6xx/setup.c -5aa4133997d1c7e3683e607c5c21ec70 linux-3.0/arch/sh/boards/mach-hp6xx/pm_wakeup.S -3c08ea2b28a1aba4e0ec35086c41ec08 linux-3.0/arch/sh/boards/mach-hp6xx/pm.c -b339048f955c54f0669b8dffe82ed8e5 linux-3.0/arch/sh/boards/mach-hp6xx/hp6xx_apm.c -b8787e75d31e654ab2a5c9e0286e8238 linux-3.0/arch/sh/boards/mach-hp6xx/Makefile -755bec28317f7fa3f8c9f7c5fe702c5c linux-3.0/arch/sh/boards/mach-highlander/setup.c -74f7e79c84ca61c0131680e3f848ca96 linux-3.0/arch/sh/boards/mach-highlander/psw.c -14e42d950293800f368030b5e7f3ce81 linux-3.0/arch/sh/boards/mach-highlander/pinmux-r7785rp.c -7fa3360da81d662b48c2de6ae324dc1b linux-3.0/arch/sh/boards/mach-highlander/irq-r7785rp.c -7b5672e1ebab3bef3c140c49b3748a9d linux-3.0/arch/sh/boards/mach-highlander/irq-r7780rp.c -781a9ee41422e74428f68b0d6cbe7155 linux-3.0/arch/sh/boards/mach-highlander/irq-r7780mp.c -3536c5c6f883e48878a7a9b7f0b195f4 linux-3.0/arch/sh/boards/mach-highlander/Makefile -89b66fdfc0d3235cc900430ce5d9b0cc linux-3.0/arch/sh/boards/mach-highlander/Kconfig -48fb574c2d74139349de153f5a4b7292 linux-3.0/arch/sh/boards/mach-ecovec24/setup.c -1e797560119da8a39ef829c37f720c13 linux-3.0/arch/sh/boards/mach-ecovec24/sdram.S -27baab3b3d2ac17d0b3c59b2f2e30441 linux-3.0/arch/sh/boards/mach-ecovec24/Makefile -18c50b1c7a8ea1fce96d80e1f4a9517e linux-3.0/arch/sh/boards/mach-dreamcast/setup.c -bfe2e68b2cbc73f9ef35ecd908b808ba linux-3.0/arch/sh/boards/mach-dreamcast/rtc.c -a280c9669d0f13fd3badae2c0a5495a6 linux-3.0/arch/sh/boards/mach-dreamcast/irq.c -564e1b69e0fc7d418a04e55527cef883 linux-3.0/arch/sh/boards/mach-dreamcast/Makefile -d6ac01788acdae13bb253119a7c0c9d9 linux-3.0/arch/sh/boards/mach-cayman/setup.c -c3390311f164ea65da27ebd543951cbe linux-3.0/arch/sh/boards/mach-cayman/panic.c -acaa686ee62f27ac2f7ef1a6313c899c linux-3.0/arch/sh/boards/mach-cayman/irq.c -9ae26d6cc6faf8e1b1b30cd910f64fe0 linux-3.0/arch/sh/boards/mach-cayman/Makefile -ed95f26a0d9794cd78a54b91d0db54e6 linux-3.0/arch/sh/boards/mach-ap325rxa/setup.c -2252caefc38417ff854bd83b0ca5e945 linux-3.0/arch/sh/boards/mach-ap325rxa/sdram.S -3c913d4c2ded515dd69a77c7318abd01 linux-3.0/arch/sh/boards/mach-ap325rxa/Makefile -28f8343b82a538dfa6d188a3745ba3f5 linux-3.0/arch/sh/boards/board-urquell.c -f8bfb652412dc0114d284b8d987b17ad linux-3.0/arch/sh/boards/board-titan.c -44dc578e9717e110c44cff008f0505fa linux-3.0/arch/sh/boards/board-shmin.c -d3a16d9c8eb610c3a4f9249d44f6cc1a linux-3.0/arch/sh/boards/board-sh7785lcr.c -c01a6f80e60504029624a7f87ef0497e linux-3.0/arch/sh/boards/board-sh7757lcr.c -a597375f0a4f4f5c1fc2a8bb2d764c4f linux-3.0/arch/sh/boards/board-sh2007.c -b2900545fec6d0bc9785749b49024fb9 linux-3.0/arch/sh/boards/board-secureedge5410.c -dbde40b1bec46a5c2fd16ea710a6f2a2 linux-3.0/arch/sh/boards/board-polaris.c -4e1a4df302186f9e8fc4c74a6a6e158b linux-3.0/arch/sh/boards/board-magicpanelr2.c -ccfd72aec22abe5c14a0b25ecd36375c linux-3.0/arch/sh/boards/board-espt.c -2b2ace26e80588f3629da63610f5a9f1 linux-3.0/arch/sh/boards/board-edosk7760.c -487749a3d7f19d854bb57f8b66208e5b linux-3.0/arch/sh/boards/board-edosk7705.c -2f8a3a99500bb41de34739571c5bbd10 linux-3.0/arch/sh/boards/board-apsh4ad0a.c -f465e7b70035bd90572e07df6ec4e47d linux-3.0/arch/sh/boards/board-apsh4a3a.c -a4b41e790e4960a8b275a115b3f35623 linux-3.0/arch/sh/boards/Makefile -49ec1eff99a21bc9876c535b9fa8c8bd linux-3.0/arch/sh/boards/Kconfig -bd7196b31ef950523a050dfed00a168a linux-3.0/arch/sh/Makefile -792579274998e4d0ca0c9c0c35eeeea7 linux-3.0/arch/sh/Kconfig.debug -969d3011f73ebded762c1cf16649da53 linux-3.0/arch/sh/Kconfig.cpu -55ad4ed61cd1c708e34dad4ddcb76919 linux-3.0/arch/sh/Kconfig -ce440dbcc8c083720ba1e2576fd4045a linux-3.0/arch/score/mm/tlb-score.c -ee1ba5423e33e07e5aec05ec1372b8d2 linux-3.0/arch/score/mm/tlb-miss.S -3b498cf3438f0b39aaee470692373f49 linux-3.0/arch/score/mm/pgtable.c -70eee367b1f64c0d422a844b2a89de68 linux-3.0/arch/score/mm/init.c -c07213cf5ea61df0bb7229ac48e2a055 linux-3.0/arch/score/mm/fault.c -abae1f8d5825400e1c61abc1c8faf922 linux-3.0/arch/score/mm/extable.c -bb011fb733e2f7d41767c52dc2eb3c7a linux-3.0/arch/score/mm/cache.c -9e01c11a3ccab8253951ad40af9e4ad7 linux-3.0/arch/score/mm/Makefile -d0fe6edffe468e80eb7a74e5267f2aa9 linux-3.0/arch/score/lib/ucmpdi2.c -3d66b7e5b904a03a3d0bbc16a2321ace linux-3.0/arch/score/lib/string.S -07525ea490c6b7497e020172da637c1e linux-3.0/arch/score/lib/lshrdi3.c -b72c3c31669456d7a2c818a23f488211 linux-3.0/arch/score/lib/libgcc.h -ade005e8a27c3e37f3776fe4b59ad33b linux-3.0/arch/score/lib/cmpdi2.c -cb13b53f2a5f36fa77f3e1c1f1ce3e5a linux-3.0/arch/score/lib/checksum_copy.c -f5ba7332f9809163f65141f4a17c283b linux-3.0/arch/score/lib/checksum.S -af7ad427dd4e5fd6718d73bd6d78f71a linux-3.0/arch/score/lib/ashrdi3.c -69eaac1fd3a2a54b1c1f0d549b5b4e22 linux-3.0/arch/score/lib/ashldi3.c -92d37ce2c87a0daada696384b671aff5 linux-3.0/arch/score/lib/Makefile -65f70c7d8c14a54f3baa27b02ea15e69 linux-3.0/arch/score/kernel/vmlinux.lds.S -e15747897140c6bdc654c2cecc5aaf70 linux-3.0/arch/score/kernel/traps.c -ab1b2afbbbfe8bae991ea5b879c4ae05 linux-3.0/arch/score/kernel/time.c -71e76dbc5e84aeae39bec83a9761c3b4 linux-3.0/arch/score/kernel/sys_score.c -04844e3b5fe01c4bd7ef24f168704bc7 linux-3.0/arch/score/kernel/sys_call_table.c -5e5a23a118c95f9beffdea49c4fee288 linux-3.0/arch/score/kernel/signal.c -77cf3d8071d8e3f4b49b8e85718176fd linux-3.0/arch/score/kernel/setup.c -7ed7a216524d85f7d581109efd57876c linux-3.0/arch/score/kernel/ptrace.c -9f8f0df284301cef2cd1fff474c4c118 linux-3.0/arch/score/kernel/process.c -41f776199b67c3b604f66e02ff4e39f5 linux-3.0/arch/score/kernel/module.c -8c99704386134e75469b828d6c90964d linux-3.0/arch/score/kernel/irq.c -d6ce69baafcb0234c8119b0f4e04effa linux-3.0/arch/score/kernel/init_task.c -ad371ce215d6468a7a2db429371db790 linux-3.0/arch/score/kernel/head.S -5d7c4d61bca7123bd7c3d01a8d43d827 linux-3.0/arch/score/kernel/entry.S -ed0c89b51b9080b18ed58be5a95da95d linux-3.0/arch/score/kernel/asm-offsets.c -4a5b99ddb399a699e13684bd6fafcb52 linux-3.0/arch/score/kernel/Makefile -dea91fbb7817a424fe518dd9085b5342 linux-3.0/arch/score/include/asm/user.h -25d36dfd0c6f79f0c18b4b0a32c7a334 linux-3.0/arch/score/include/asm/unistd.h -3b3968d964aa1f2d8164a905b5481ae8 linux-3.0/arch/score/include/asm/unaligned.h -54ef8b4281a8709709fd75155efac8f2 linux-3.0/arch/score/include/asm/ucontext.h -be378cca8ec44d643af96704d4d0b8ff linux-3.0/arch/score/include/asm/uaccess.h -67eed4db98441b5f66afda86a2fed760 linux-3.0/arch/score/include/asm/types.h -36c168409a8abe944be5fd208d04425b linux-3.0/arch/score/include/asm/topology.h -548eb2fc4d3076e438d489f1d1d106b0 linux-3.0/arch/score/include/asm/tlbflush.h -ffdf166e1cc2d384314c58314e54e01a linux-3.0/arch/score/include/asm/tlb.h -556c51ab9d7f1526548c056743575693 linux-3.0/arch/score/include/asm/timex.h -612b788a84e8efc32b9098f61689ec87 linux-3.0/arch/score/include/asm/thread_info.h -4943b0ac0dd9a78396a6ecde64c526c9 linux-3.0/arch/score/include/asm/termios.h -0b7d65c4394b8a20553a1b35792c5d4b linux-3.0/arch/score/include/asm/termbits.h -43f9ff1340d89b7b71a8a31905b20ba2 linux-3.0/arch/score/include/asm/system.h -3ff161b9cb931af36ae33cc8b7497296 linux-3.0/arch/score/include/asm/syscalls.h -6849e163fe79bef7f81e396d1e0500c5 linux-3.0/arch/score/include/asm/swab.h -270907ceac6396cba0cf0fdc6e2c49e3 linux-3.0/arch/score/include/asm/string.h -6a43e4f076e8d3481b26904ecde693c2 linux-3.0/arch/score/include/asm/statfs.h -b2c2a3bc7a8323337edf550e03e10931 linux-3.0/arch/score/include/asm/stat.h -15b54583935a55d9174e5bb01d3f1b9b linux-3.0/arch/score/include/asm/sockios.h -10305abbf08fc899409e1db759710b47 linux-3.0/arch/score/include/asm/socket.h -8c486b9c2482c107b15ae740d251ac6d linux-3.0/arch/score/include/asm/signal.h -d75f6faf05fd7f50408dcdeb95ee9731 linux-3.0/arch/score/include/asm/siginfo.h -eda955824a4178e02e2d7d54e4dccd35 linux-3.0/arch/score/include/asm/sigcontext.h -a15a1e6b7fd03c86a40c6026b764eafe linux-3.0/arch/score/include/asm/shmparam.h -b372975f6925494b3539b562a1addce8 linux-3.0/arch/score/include/asm/shmbuf.h -e6b9a206f3f436f1f6bc8a68bd90aade linux-3.0/arch/score/include/asm/setup.h -a3f2658e5d29fc7f52516c5edf0defe0 linux-3.0/arch/score/include/asm/sembuf.h -3526a96eedad7a0143b752f0b4f34a8d linux-3.0/arch/score/include/asm/segment.h -3e169754f96fe956e180c9f5a246fe63 linux-3.0/arch/score/include/asm/sections.h -d0910f0bbdcfa66ca487041d3fbc88b8 linux-3.0/arch/score/include/asm/scoreregs.h -1fb011b1da7ac5a8472d222a2bececf6 linux-3.0/arch/score/include/asm/scatterlist.h -d2fc2a8e01bc81441f5df6af10ecc006 linux-3.0/arch/score/include/asm/resource.h -8549f19783f0b8049140e3d555e0db80 linux-3.0/arch/score/include/asm/ptrace.h -74cf3a85eda3dafc791ab7d87e4dd8cb linux-3.0/arch/score/include/asm/processor.h -edde8a12c16b2201961bed8dbfa84c54 linux-3.0/arch/score/include/asm/posix_types.h -337c62f9538d35cd5046e034691a2c8c linux-3.0/arch/score/include/asm/poll.h -772e3e6a0e6bfbeb128e8f079700fe99 linux-3.0/arch/score/include/asm/pgtable.h -9b2483d057fb36fc3cab0a7c0bb5e015 linux-3.0/arch/score/include/asm/pgtable-bits.h -04b1a1ecf01e96a22177bf88ded34f84 linux-3.0/arch/score/include/asm/pgalloc.h -7e82c9b3486664562646d46c4a8120ca linux-3.0/arch/score/include/asm/percpu.h -30c71f7a28797a9d147e5ab57c497435 linux-3.0/arch/score/include/asm/pci.h -22742134795b050c78b679d5bfb48651 linux-3.0/arch/score/include/asm/param.h -16dbae065c727a5739efee752ee9aa1d linux-3.0/arch/score/include/asm/page.h -a98889f3975c099cf0f544ab035bb89d linux-3.0/arch/score/include/asm/mutex.h -466ecc2a2eb04881aac54a476019be15 linux-3.0/arch/score/include/asm/msgbuf.h -2c9d11a5a47332a1adb99e90d98efc82 linux-3.0/arch/score/include/asm/module.h -28dcb1e1d0f723bc77d88830d47dab93 linux-3.0/arch/score/include/asm/mmu_context.h -4fbbe05c4f31c74de858360b6879abe6 linux-3.0/arch/score/include/asm/mmu.h -4cbbbe395fdc8efe31825aa9d187a689 linux-3.0/arch/score/include/asm/mman.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/score/include/asm/local64.h -d8cd7751cf94f5307cc94b80762b8815 linux-3.0/arch/score/include/asm/local.h -bd585ea4d592a5bc05f69f7d64f40e1a linux-3.0/arch/score/include/asm/linkage.h -883224e6009c94808ad4072b3ea15799 linux-3.0/arch/score/include/asm/kmap_types.h -a93bd812c7ad887cdc169596c20752d4 linux-3.0/arch/score/include/asm/kdebug.h -cef495e17e532a6ef8382babc7e65b3a linux-3.0/arch/score/include/asm/irqflags.h -13950dc00a3fbee8d9afa432b513a2f5 linux-3.0/arch/score/include/asm/irq_regs.h -b413151a575029fad9910e055f9e5ba6 linux-3.0/arch/score/include/asm/irq.h -9981503459caa3f257bc5edbc8ac0cb2 linux-3.0/arch/score/include/asm/ipcbuf.h -1c0e03df72606c8ec5354cf3bdd7265d linux-3.0/arch/score/include/asm/ioctls.h -a02318fe0b3b60fdf105b2beeac9c92a linux-3.0/arch/score/include/asm/ioctl.h -92449ccb0be71c61d0512a46557499b0 linux-3.0/arch/score/include/asm/io.h -122d745a3f2e34ae249024e4fd8090c8 linux-3.0/arch/score/include/asm/hw_irq.h -4a08ec243f247ff9009d11208665ca09 linux-3.0/arch/score/include/asm/hardirq.h -93cf9b3800921765e68b1d1dd7df6eb8 linux-3.0/arch/score/include/asm/futex.h -3923f90afbb7b4e5311c2a64e93a753f linux-3.0/arch/score/include/asm/ftrace.h -23374ecb546ab04e253c9e8d5e45c935 linux-3.0/arch/score/include/asm/fixmap.h -cc4adc36e2001c03edb665dc6937248f linux-3.0/arch/score/include/asm/fcntl.h -f83cd4ed29a673bb9ea6e74fce46e4d7 linux-3.0/arch/score/include/asm/errno.h -bb4046f91578a8aca9624027447530cb linux-3.0/arch/score/include/asm/emergency-restart.h -179d5535ad3cfc8790640c3252f3e844 linux-3.0/arch/score/include/asm/elf.h -1eef7d41817f242ac9948459e7833331 linux-3.0/arch/score/include/asm/dma.h -94d9c5d6a35cfc8f6d2e7544c26b5362 linux-3.0/arch/score/include/asm/dma-mapping.h -b5e11dc7d9c5ceaf5d8091802b26c491 linux-3.0/arch/score/include/asm/div64.h -a508b7cb5454a8508ed497cc391f300d linux-3.0/arch/score/include/asm/device.h -6d9eb0beb2fafbd52805a16e32a56ddb linux-3.0/arch/score/include/asm/delay.h -3fcf1d6b777ef14a03eb32f2ecfbba7b linux-3.0/arch/score/include/asm/current.h -1212c36010522f1c4d01cc20fe2949ea linux-3.0/arch/score/include/asm/cputime.h -0c1b6fb63610e26581e873d94f8097e7 linux-3.0/arch/score/include/asm/checksum.h -6253cc64237cb5eb4e5714f5754ac762 linux-3.0/arch/score/include/asm/cacheflush.h -13a855495831683f206a28a28e815dee linux-3.0/arch/score/include/asm/cache.h -b40e19dcc5b122c9170250be0ade38f3 linux-3.0/arch/score/include/asm/byteorder.h -5bc473f6ea26e01cad502e7dc2edc9f8 linux-3.0/arch/score/include/asm/bugs.h -b65990d3a6eaf7070349c2a3c520d71e linux-3.0/arch/score/include/asm/bug.h -01adc3bace4de2f2645113be9febf85b linux-3.0/arch/score/include/asm/bitsperlong.h -011c1af65643bd15f9bde1d9c514219b linux-3.0/arch/score/include/asm/bitops.h -88c34ab505d23e925f98cbc9c5023a79 linux-3.0/arch/score/include/asm/auxvec.h -758d7d735a24c7df48f08e39fc9f1dc8 linux-3.0/arch/score/include/asm/atomic.h -f59c75eb398a31601ca8c3fcaaf3793f linux-3.0/arch/score/include/asm/asmmacro.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/score/include/asm/asm-offsets.h -707b007c77c01662f7e1743817a7a40d linux-3.0/arch/score/include/asm/Kbuild -9e98d1d0676ae747a7917cbc721f08dd linux-3.0/arch/score/configs/spct6600_defconfig -0d6be0e37354c0db2d7ef14623c6bdfe linux-3.0/arch/score/boot/Makefile -444340cc362ee21c8a05ee24d692be72 linux-3.0/arch/score/Makefile -943fb3eec032c682e3cb237b8c7daf80 linux-3.0/arch/score/Kconfig.debug -ac880b7371273d32050a4be997f97ad2 linux-3.0/arch/score/Kconfig -9ce51a0b1ad12b0d6095bf03305c8a1d linux-3.0/arch/s390/oprofile/init.c -b3b8b09980fd0fbcec0ec93f0ffa8d34 linux-3.0/arch/s390/oprofile/hwsampler.h -a4d61430d06228b553c821cd0eab86a2 linux-3.0/arch/s390/oprofile/hwsampler.c -5b329bfd1dc587a9fde9161e758f43c2 linux-3.0/arch/s390/oprofile/backtrace.c -a64ec2170d7e6cce6452f52312467e3d linux-3.0/arch/s390/oprofile/Makefile -5814c677ab214d9edee9db45f0a0d52b linux-3.0/arch/s390/mm/vmem.c -2860605b4a6900cd7077ecdfc418efca linux-3.0/arch/s390/mm/pgtable.c -83090108f4d9fa9e28c934ca8ca0a5e8 linux-3.0/arch/s390/mm/pageattr.c -ec72589a87cb3a0b735cb79f90d38c9f linux-3.0/arch/s390/mm/page-states.c -cd94db49ca3a39f5e08dc0f48dd2fdf8 linux-3.0/arch/s390/mm/mmap.c -85d7b265a2740be8435a199921d8eb50 linux-3.0/arch/s390/mm/maccess.c -a8a04c448a78e96b2687f2997e2734a2 linux-3.0/arch/s390/mm/init.c -b6cae39ca000e2daede909dea6d501bc linux-3.0/arch/s390/mm/hugetlbpage.c -70965cc6c4d5ee9867445b8207ecfc0d linux-3.0/arch/s390/mm/gup.c -ca5699432776181c91aff8e2b8268f55 linux-3.0/arch/s390/mm/fault.c -530aa3959a4ace5b1a2c5c79dc9ba708 linux-3.0/arch/s390/mm/extmem.c -dee42bc665cfa712458ed439a5da98b4 linux-3.0/arch/s390/mm/cmm.c -48eeeeaecacfcc128404163984714bb7 linux-3.0/arch/s390/mm/Makefile -3ae818ef227ef2352fae07eac18130f8 linux-3.0/arch/s390/math-emu/math.c -9264abfd89e8cab44f5b7d9934ac4e68 linux-3.0/arch/s390/math-emu/Makefile -8bcc1f1c7524b9cf0211aec090f14c1b linux-3.0/arch/s390/lib/usercopy.c -71b0c1822a5c56b95d0a9255f1798e73 linux-3.0/arch/s390/lib/ucmpdi2.c -5abfa8dff69b9621dadd90fb53355cc4 linux-3.0/arch/s390/lib/uaccess_std.c -c37912b9a8e9d9c7fb8c68ed66ccdd52 linux-3.0/arch/s390/lib/uaccess_pt.c -52dca8c8814e7b97b6bedd38888ac760 linux-3.0/arch/s390/lib/uaccess_mvcos.c -0f9434873fed1d1edb6d24106a499b68 linux-3.0/arch/s390/lib/uaccess.h -20b9313e2c45537806bb173ca9c9eff8 linux-3.0/arch/s390/lib/string.c -db4909d7b29e104126db9d0929ecc8e3 linux-3.0/arch/s390/lib/spinlock.c -db97b345359c8a7d371a46e665943e18 linux-3.0/arch/s390/lib/qrnnd.S -b44edb3306ce81e81d397cee1102eedf linux-3.0/arch/s390/lib/div64.c -785e99a894aded8c78edc1d2633754d9 linux-3.0/arch/s390/lib/delay.c -140a4b56b2897f48a080ceeaaddf5eea linux-3.0/arch/s390/lib/Makefile -490ac845f88c6fa44865b34d2787d45d linux-3.0/arch/s390/kvm/sigp.c -e1006d387c456859784ca06ecbf1a9d9 linux-3.0/arch/s390/kvm/sie64a.S -3be0f7e9c581d2bee715300e44bad6c5 linux-3.0/arch/s390/kvm/priv.c -fe69bf350a9f8e05f4349fda6fdf77c4 linux-3.0/arch/s390/kvm/kvm-s390.h -5cf9079d9add1fadb7400e00546a6b28 linux-3.0/arch/s390/kvm/kvm-s390.c -7348fd036792c1ea30418561d92f3108 linux-3.0/arch/s390/kvm/interrupt.c -2825db9f864c775b0ac33e68263b729a linux-3.0/arch/s390/kvm/intercept.c -a9ddd220d9a814279f54ac7899328f45 linux-3.0/arch/s390/kvm/gaccess.h -8d0ce9a3b55757b21fdf34e05b8e5633 linux-3.0/arch/s390/kvm/diag.c -1a61fca2dc94636bb4cb31b06fddd308 linux-3.0/arch/s390/kvm/Makefile -2bc790cca9eb8d369a728789c619f95f linux-3.0/arch/s390/kvm/Kconfig -23bbaec3f20de1362dad23dbf20c62dc linux-3.0/arch/s390/kernel/vtime.c -7ec95d8331b08dde22e345a9b927ff23 linux-3.0/arch/s390/kernel/vmlinux.lds.S -0f56e822bb753c54ad4d02cb3fcb014a linux-3.0/arch/s390/kernel/vdso64/vdso64_wrapper.S -5875118a6769d7a903bbf1c4353b0feb linux-3.0/arch/s390/kernel/vdso64/vdso64.lds.S -34ea47c60598f102697b4476b742f873 linux-3.0/arch/s390/kernel/vdso64/note.S -757efe933a24e617f1b25d64ad152666 linux-3.0/arch/s390/kernel/vdso64/gettimeofday.S -712360f2f5b865ddc3f95db9aebfc3de linux-3.0/arch/s390/kernel/vdso64/clock_gettime.S -66ed06e2045af5cf4ed297bdf3eac326 linux-3.0/arch/s390/kernel/vdso64/clock_getres.S -27fc1b0e1e17d6aab41377de0db91227 linux-3.0/arch/s390/kernel/vdso64/Makefile -c70a0001ba7ad62182db81293a3101b4 linux-3.0/arch/s390/kernel/vdso32/vdso32_wrapper.S -1301315d78f1e3cdf39ee26ed3c9a2f0 linux-3.0/arch/s390/kernel/vdso32/vdso32.lds.S -34ea47c60598f102697b4476b742f873 linux-3.0/arch/s390/kernel/vdso32/note.S -acf4786f2ef21d3b3052a13d8c33050f linux-3.0/arch/s390/kernel/vdso32/gettimeofday.S -fcbee71e4b0a2a3c1cea31ef2f465d1a linux-3.0/arch/s390/kernel/vdso32/clock_gettime.S -c912f0743bf2cdf82342d966b15c3f34 linux-3.0/arch/s390/kernel/vdso32/clock_getres.S -c447bf069d178dd23b9991680a873898 linux-3.0/arch/s390/kernel/vdso32/Makefile -9426275fca23360cc49325dd02dce3ff linux-3.0/arch/s390/kernel/vdso.c -47199eac537b9d0a8b8b4b0cd904ab7f linux-3.0/arch/s390/kernel/traps.c -e76dd74e6261c21a3fc720e49ded1071 linux-3.0/arch/s390/kernel/topology.c -44274939b743239eacbc28b6d2f2fde3 linux-3.0/arch/s390/kernel/time.c -91578f1ff9c1cc3a99a03a9ca2d75921 linux-3.0/arch/s390/kernel/sysinfo.c -19885891d5abf9e6c04baa46e62b92ac linux-3.0/arch/s390/kernel/syscalls.S -346e2b715af45bf9959d52b72887cc89 linux-3.0/arch/s390/kernel/sys_s390.c -03056e9733dfbb9c37c33dbb81245557 linux-3.0/arch/s390/kernel/swsusp_asm64.S -d29270051909057b74189316879e5f1f linux-3.0/arch/s390/kernel/switch_cpu64.S -9209a4f3821050843768940e1d0c89a2 linux-3.0/arch/s390/kernel/switch_cpu.S -382932fc2e05760211cf6dda1faff2a4 linux-3.0/arch/s390/kernel/suspend.c -cc407126ed3d89a33cf7de65dfd143fb linux-3.0/arch/s390/kernel/stacktrace.c -b671982489f40b5c44ea4ec68ab84238 linux-3.0/arch/s390/kernel/smp.c -f0b9baad12560afc9df4cce5bf05b499 linux-3.0/arch/s390/kernel/signal.c -2eb91827f8ee362d82ff21369f6c495c linux-3.0/arch/s390/kernel/setup.c -b626b7b1fd55011ace807ab62efa1288 linux-3.0/arch/s390/kernel/sclp.S -fa0f89824ffe0d4befbe4602958db4d2 linux-3.0/arch/s390/kernel/s390_ksyms.c -7e3772342fe4cc660dde7ff1e8afd2c7 linux-3.0/arch/s390/kernel/relocate_kernel64.S -834d4bc8e8318dc6a2468cdc6c242f96 linux-3.0/arch/s390/kernel/relocate_kernel.S -710c94ebe86670c09d2bed8e22039888 linux-3.0/arch/s390/kernel/reipl64.S -51de5e91724388d2295b73eaa37fa399 linux-3.0/arch/s390/kernel/reipl.S -9d47f05b301061090040001e9f1ff5c3 linux-3.0/arch/s390/kernel/ptrace.c -2d58fa243e0cafca4f1262e556b79d7f linux-3.0/arch/s390/kernel/processor.c -fec2610b4e563bda0f3bf8adc2f950fe linux-3.0/arch/s390/kernel/process.c -8d976c3364409bbc29922e001f721eb4 linux-3.0/arch/s390/kernel/nmi.c -4ca3438249e20368155d429999219da0 linux-3.0/arch/s390/kernel/module.c -97ee949871e2f6633eda7be6a6f41cdf linux-3.0/arch/s390/kernel/mem_detect.c -49ec3fe93888f6b26d996680c15ecd63 linux-3.0/arch/s390/kernel/mcount64.S -c7ed8e13b30fbf910255b251cac5397f linux-3.0/arch/s390/kernel/mcount.S -5b8954c241e25ff28bc70b6d528af09f linux-3.0/arch/s390/kernel/machine_kexec.c -b0fa60be87023fbb96d8fd5b116b457b linux-3.0/arch/s390/kernel/kprobes.c -7681b83b0e51f4b4a7c527c0fb933be9 linux-3.0/arch/s390/kernel/jump_label.c -3c0a807b4c0fb4fe72ef4249946f6134 linux-3.0/arch/s390/kernel/irq.c -247a1fdeeb5b59c540a53ba16512e9c7 linux-3.0/arch/s390/kernel/ipl.c -0f0e209060bf9ddfacbd9726fb7ced98 linux-3.0/arch/s390/kernel/init_task.c -2214657da619740ccbac169fffba30f6 linux-3.0/arch/s390/kernel/head64.S -4320baa3d6c8b5af8cbbe2d3f4d712ba linux-3.0/arch/s390/kernel/head31.S -02f716b011e2c210483f3967c1d554bc linux-3.0/arch/s390/kernel/head.S -55916e926c9207af8a26f6bde9a5cc5a linux-3.0/arch/s390/kernel/ftrace.c -657e1216165f8ef3f3eb432e5fec2d8f linux-3.0/arch/s390/kernel/entry64.S -051992568233f4e0ec3f2eec942707a9 linux-3.0/arch/s390/kernel/entry.h -d34ae341d29a637304b298e9302dd4c7 linux-3.0/arch/s390/kernel/entry.S -565a8c47a01291e71f964b708352b6ff linux-3.0/arch/s390/kernel/ebcdic.c -412420880dd1d174a721b74c98e3671e linux-3.0/arch/s390/kernel/early.c -a26f32836cb575a77d4c559aeaeea7b2 linux-3.0/arch/s390/kernel/dis.c -2ea57dc7deab448b9a6de8c54687e320 linux-3.0/arch/s390/kernel/diag.c -6f55b5576a01b57de166116abcd3f55f linux-3.0/arch/s390/kernel/debug.c -da601f6819fa6e91502394cc7e2d93de linux-3.0/arch/s390/kernel/crash.c -e0c2a4eec50121390cbb7fe82a92ffa6 linux-3.0/arch/s390/kernel/cpcmd.c -77f6685d8c9d7b3cd60f710a46fdafb5 linux-3.0/arch/s390/kernel/compat_wrapper.S -5f32c06075abda1cd5a18da52f6b5308 linux-3.0/arch/s390/kernel/compat_signal.c -c2af7c9872842db529b12c2168ebdba5 linux-3.0/arch/s390/kernel/compat_ptrace.h -bee097959b3d6a62a1a90d17024cc795 linux-3.0/arch/s390/kernel/compat_linux.h -17b46db9c521270a5ae7a68a5d0a8914 linux-3.0/arch/s390/kernel/compat_linux.c -f735e0ddac8d47b34fa81fbd56ce8c6a linux-3.0/arch/s390/kernel/compat_exec_domain.c -cdfaf7f8fa998224ac7fb49fc46ca701 linux-3.0/arch/s390/kernel/compat_audit.c -842b50b6c94fd1bb24c285b4c7e1b43b linux-3.0/arch/s390/kernel/bitmap.c -e90bd79133d0347df55fe26f4a5c66d3 linux-3.0/arch/s390/kernel/base.S -cf12e7bbbd9ccac6f842c6423ecc98f2 linux-3.0/arch/s390/kernel/audit.h -5c77483e6b42564c4577b9e045f11198 linux-3.0/arch/s390/kernel/audit.c -59866fdc732a8caec19370a87011090b linux-3.0/arch/s390/kernel/asm-offsets.c -d26b05d8a828cce5995d634f9dc818ce linux-3.0/arch/s390/kernel/Makefile -faf1fe5519c04a4d5f7f85416325b4a6 linux-3.0/arch/s390/include/asm/zcrypt.h -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/s390/include/asm/xor.h -cabee9a6e63703f781fbfdda84dbfa76 linux-3.0/arch/s390/include/asm/vtoc.h -ed06d991b17d300d1a5dcdb497ce5b5b linux-3.0/arch/s390/include/asm/vdso.h -c07359c8576e8585206427677ee18f75 linux-3.0/arch/s390/include/asm/user.h -8e033441156213d3cf26aa3297b2feab linux-3.0/arch/s390/include/asm/unistd.h -7c6a7a145c87c678f3846b20772a6edf linux-3.0/arch/s390/include/asm/unaligned.h -d9c43388d1d334714359ee5155e9d3df linux-3.0/arch/s390/include/asm/ucontext.h -a8a9a2c5c2451ddecb5a04cf5ce1851f linux-3.0/arch/s390/include/asm/uaccess.h -25a06b7eec2318cd731497b63911e54d linux-3.0/arch/s390/include/asm/types.h -a99ea22ed018780ba0a7270e3faef0c8 linux-3.0/arch/s390/include/asm/topology.h -6577d6d3256f5b36005c413d55d67cc2 linux-3.0/arch/s390/include/asm/tlbflush.h -32870bdbd9c0a11a478180e311edb028 linux-3.0/arch/s390/include/asm/tlb.h -6422bc52ec5c890196f1b35a019ad343 linux-3.0/arch/s390/include/asm/timex.h -7d4ac231bb16387e67ae3056667ae825 linux-3.0/arch/s390/include/asm/timer.h -ee3e9a4939392e34bba5653eaade7a18 linux-3.0/arch/s390/include/asm/thread_info.h -cf8b8df376d45c05853eacd6e3604ef0 linux-3.0/arch/s390/include/asm/termios.h -f18ee8bca930fa6e11e116c584f52584 linux-3.0/arch/s390/include/asm/termbits.h -614503617cb4ff8013390981102e7c30 linux-3.0/arch/s390/include/asm/tape390.h -92fb75bcc806f15b0c006615c1a9da44 linux-3.0/arch/s390/include/asm/system.h -dab79a650624fb6f75e4b75b0a8d7990 linux-3.0/arch/s390/include/asm/sysinfo.h -b68354f7e82b9a194dd56e22127a2faf linux-3.0/arch/s390/include/asm/syscall.h -34a7b2e166fe607d4bec8296c31e0dcb linux-3.0/arch/s390/include/asm/swab.h -0c2bf97c4419d46bc1970c8f7f13d107 linux-3.0/arch/s390/include/asm/string.h -fa50c1bdee0f957246474ec58a0aa31c linux-3.0/arch/s390/include/asm/statfs.h -f7a0375f1e9a9312159c73eae390bbf6 linux-3.0/arch/s390/include/asm/stat.h -99e132fa5dc10316c7b4503d06607081 linux-3.0/arch/s390/include/asm/spinlock_types.h -785e88578c1fcbf8b8450a2142312308 linux-3.0/arch/s390/include/asm/spinlock.h -c605de62aa5551eb1d7a068ff982d5a4 linux-3.0/arch/s390/include/asm/sparsemem.h -51bcee10d9b3c6dca9b9f822e3bd0108 linux-3.0/arch/s390/include/asm/sockios.h -2acf595579f52eeef5469f270f2ee9d5 linux-3.0/arch/s390/include/asm/socket.h -348165171a058d3e43d2744c1de950de linux-3.0/arch/s390/include/asm/smp.h -ef0ccc920cf715a318ac936ab0dd4524 linux-3.0/arch/s390/include/asm/sigp.h -5df4fce657fa2c0569b503a3eb2b4018 linux-3.0/arch/s390/include/asm/signal.h -f9ef515247d52f3f691ccff252709f5f linux-3.0/arch/s390/include/asm/siginfo.h -2c1a2f110128ec9bdfbf45727a6e20bd linux-3.0/arch/s390/include/asm/sigcontext.h -34695da7c6e7a1983b8bec072a03d1ba linux-3.0/arch/s390/include/asm/shmparam.h -ae39e29d0a9e07a4fad95621fecf76b4 linux-3.0/arch/s390/include/asm/shmbuf.h -26b2ec1d29b2d8ff6c17f901e6d2724d linux-3.0/arch/s390/include/asm/sfp-util.h -2d7f7484449b243a53adcec02ace7625 linux-3.0/arch/s390/include/asm/sfp-machine.h -5236e8b97938e6e7fd52218cbc7caa9a linux-3.0/arch/s390/include/asm/setup.h -35f99dab5a04e0b6da5514a021d06cc5 linux-3.0/arch/s390/include/asm/sembuf.h -71090413245ae91c1835deb17ec89eea linux-3.0/arch/s390/include/asm/segment.h -f07a3122bebedff2dcd690a565deb9a1 linux-3.0/arch/s390/include/asm/sections.h -f49b2de0184f17304c40920ba2a75b4c linux-3.0/arch/s390/include/asm/seccomp.h -a1fbe0d6deddce87ec4d399faea451df linux-3.0/arch/s390/include/asm/scsw.h -6cebcaccae5ae2729415931a2a6b79cb linux-3.0/arch/s390/include/asm/sclp.h -b7e91d0f781078efb132d14474aab906 linux-3.0/arch/s390/include/asm/schid.h -47903d0e8adc802c2eea909fd8648c7c linux-3.0/arch/s390/include/asm/scatterlist.h -37918b07ddab6b2133dc16f15c17e0ba linux-3.0/arch/s390/include/asm/rwsem.h -6ab2d2a3fcc6f33012e4aa85bb3f3f5a linux-3.0/arch/s390/include/asm/resource.h -dc3fe848443ddead7a0a069f9a7131ab linux-3.0/arch/s390/include/asm/reset.h -8744fb17e45d2b28a53a4297d63bbabd linux-3.0/arch/s390/include/asm/qeth.h -bd5c3a2b11fd320578b38fc7005aa2c1 linux-3.0/arch/s390/include/asm/qdio.h -9fe941a93aa90e31c7f20a7808c52a21 linux-3.0/arch/s390/include/asm/ptrace.h -f4543ccb097e68119a1f6456a119e009 linux-3.0/arch/s390/include/asm/processor.h -fefcc454455899dfe59375704ccb5f41 linux-3.0/arch/s390/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/s390/include/asm/poll.h -62ff38210dd0f027a3dce9fe51f4c57c linux-3.0/arch/s390/include/asm/pgtable.h -0b36c68bd01eba69a158059cbb87476c linux-3.0/arch/s390/include/asm/pgalloc.h -f4d39287d0a0dcc637130e13a812dcd0 linux-3.0/arch/s390/include/asm/perf_event.h -6fb24b21d76d3094fcd46d00fff58e12 linux-3.0/arch/s390/include/asm/percpu.h -17a90a9beb1d08b32f866efe5fffaa32 linux-3.0/arch/s390/include/asm/pci.h -6f2af62cb5c8ca5636b9794a18db32fb linux-3.0/arch/s390/include/asm/param.h -8bd3216c9f76f59df491891fcf339f06 linux-3.0/arch/s390/include/asm/page.h -1007690faa04ce5472990ce490090033 linux-3.0/arch/s390/include/asm/nmi.h -b7defa12914d6e8bfe5cfb8a868e7fe1 linux-3.0/arch/s390/include/asm/mutex.h -21387cd5ba968ce543404cbea5b755c5 linux-3.0/arch/s390/include/asm/msgbuf.h -50113356b6244be6d303f2bc9f0b00cb linux-3.0/arch/s390/include/asm/monwriter.h -07038057464afb04b915838270dc3df5 linux-3.0/arch/s390/include/asm/module.h -84aaac8117771036c4960d07a66bfc9c linux-3.0/arch/s390/include/asm/mmu_context.h -6c6b02760bdf8de9692f79dd84eb94b6 linux-3.0/arch/s390/include/asm/mmu.h -c94c240a395504eea5de4ca42adc881a linux-3.0/arch/s390/include/asm/mman.h -7419e3d3619c6e3077299283b64b77b6 linux-3.0/arch/s390/include/asm/mathemu.h -9765f638e3a16a5d04ae6dc567f99cbb linux-3.0/arch/s390/include/asm/lowcore.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/s390/include/asm/local64.h -dd5c2452f777c57e923e1b3de9ac2c14 linux-3.0/arch/s390/include/asm/local.h -3443b0ccb592b373fb6ef22d665f9836 linux-3.0/arch/s390/include/asm/linkage.h -1ad22d24fc0adc06b224da0f30457b08 linux-3.0/arch/s390/include/asm/kvm_virtio.h -aa92a08945ab639e8d186f9bbf0fdbe4 linux-3.0/arch/s390/include/asm/kvm_para.h -fff92567f581b4d45621cde4b6329b13 linux-3.0/arch/s390/include/asm/kvm_host.h -ff8d92444f14037c6a45b8e6af4a0209 linux-3.0/arch/s390/include/asm/kvm.h -b84703aa31c60d0900152d445f7c08a2 linux-3.0/arch/s390/include/asm/kprobes.h -2e06a15a2067674b9be99171c95f9681 linux-3.0/arch/s390/include/asm/kmap_types.h -dfbfc63bd8a0cc2c3c5fd191621ea0d8 linux-3.0/arch/s390/include/asm/kexec.h -52cfdfef79d872d5e29ee0eae4a88bda linux-3.0/arch/s390/include/asm/kdebug.h -432a0086b835d12aa28c201555e7a618 linux-3.0/arch/s390/include/asm/jump_label.h -6ee2b6fa708bce006e1834b048569eb8 linux-3.0/arch/s390/include/asm/itcw.h -e5ded2859bb42dda22b84cd535f2265f linux-3.0/arch/s390/include/asm/isc.h -b9f5baa60e9eb6b006d00639b3c6b42f linux-3.0/arch/s390/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/s390/include/asm/irq_regs.h -8a81c3337f8b449b9cd8b1f6086a1592 linux-3.0/arch/s390/include/asm/irq.h -a6d4d453d62d3d186b1df2fa46fa9cd2 linux-3.0/arch/s390/include/asm/ipl.h -269e742dbc4eb249b3b7227318526b9a linux-3.0/arch/s390/include/asm/ipcbuf.h -20c9b2172892d6c3de4659f1755a35fd linux-3.0/arch/s390/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/s390/include/asm/ioctl.h -97ccc3d211dd98a74bb672b98ce612d5 linux-3.0/arch/s390/include/asm/io.h -5e56491fe12c0591da6bb0ae43d17088 linux-3.0/arch/s390/include/asm/idals.h -1a98c1c674fba316fbb68be71401c16f linux-3.0/arch/s390/include/asm/hugetlb.h -ed0bf7852dcb7e545689acd51f28eab4 linux-3.0/arch/s390/include/asm/hardirq.h -d22c9cd0aacc06e9ee804351d235db95 linux-3.0/arch/s390/include/asm/futex.h -f4f72ebdd9064d70c7fd6a5050894fc3 linux-3.0/arch/s390/include/asm/ftrace.h -b573e8f75fcf0fbb37ef8a3863c2829c linux-3.0/arch/s390/include/asm/fcx.h -a598360d85106db07897c937209e63eb linux-3.0/arch/s390/include/asm/fcntl.h -5b6b31d728ed2ed0df73c56676fdc68f linux-3.0/arch/s390/include/asm/fb.h -cedff49b4c65bfbef1faf63df7cf64b2 linux-3.0/arch/s390/include/asm/extmem.h -6e3a411a48d4de508dfeacd09f61f77d linux-3.0/arch/s390/include/asm/etr.h -3907382c2fd907d787e074d1d926cf12 linux-3.0/arch/s390/include/asm/errno.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/s390/include/asm/emergency-restart.h -be370899703f9594287b7551a93aab39 linux-3.0/arch/s390/include/asm/elf.h -e1ae02414664ee3a45dd73c92453d760 linux-3.0/arch/s390/include/asm/ebcdic.h -0958080e51c71abe5f08c5a1d889ef2b linux-3.0/arch/s390/include/asm/dma.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/s390/include/asm/div64.h -2da713bb1c9bc684c6f5e509d92e81e3 linux-3.0/arch/s390/include/asm/diag.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/s390/include/asm/device.h -07f7e165287e1959f6c54bb3e2093eb1 linux-3.0/arch/s390/include/asm/delay.h -0194e76b2197335e57774b0b8f261b42 linux-3.0/arch/s390/include/asm/debug.h -8957b803c4a2ffa01047144c2390bc41 linux-3.0/arch/s390/include/asm/dasd.h -919cbbf8245da15f1a821e987d3aebb8 linux-3.0/arch/s390/include/asm/current.h -5d7ad617344dbca85128e4dd3d9a670d linux-3.0/arch/s390/include/asm/crw.h -1b5dc3a3f13bd23951ade42cd98de4a8 linux-3.0/arch/s390/include/asm/cputime.h -daf2015b3167586dfbe691f1feab6add linux-3.0/arch/s390/include/asm/cpu.h -4b640adcaeac5cc538f16fb60cf4a675 linux-3.0/arch/s390/include/asm/cpcmd.h -5beb6a86f8c2d5f19cdf5fea1e98fa5a linux-3.0/arch/s390/include/asm/compat.h -972d1c43ffe14eb5a08b670131db1dfe linux-3.0/arch/s390/include/asm/cmpxchg.h -0338ef098214b07d030748a2dd83eb48 linux-3.0/arch/s390/include/asm/cmb.h -2c16954012ac3308584788f4dd09d45b linux-3.0/arch/s390/include/asm/cio.h -4bf96bb8c48daf77ecc8fdfda643c9c1 linux-3.0/arch/s390/include/asm/chsc.h -0ca2e968de6f1b9645c2020b9e9602f1 linux-3.0/arch/s390/include/asm/chpid.h -3bf0d7559f375067a23a0bb03b4368cd linux-3.0/arch/s390/include/asm/checksum.h -a73ec44d40ea1f2064fc39ca6f6472df linux-3.0/arch/s390/include/asm/ccwgroup.h -07aef496178ca5dba75f374d4aae50a4 linux-3.0/arch/s390/include/asm/ccwdev.h -e1820b252d0074ea829ed83bab2ebc76 linux-3.0/arch/s390/include/asm/cacheflush.h -bb39b8026dceb1fd7b3005147ef4d91a linux-3.0/arch/s390/include/asm/cache.h -20ca290e80be77e6e238b23575ea83ef linux-3.0/arch/s390/include/asm/byteorder.h -0a1036e65963ecddfd8970fc3c33855a linux-3.0/arch/s390/include/asm/bugs.h -afe88b5c810c4b887363353e11c735b9 linux-3.0/arch/s390/include/asm/bug.h -fe0759c663f6e15e8be412101aa67c6a linux-3.0/arch/s390/include/asm/bitsperlong.h -85e49b72a83c6afe0f0b882606ca2b24 linux-3.0/arch/s390/include/asm/bitops.h -96c71f111d579de00b5f909129f2b629 linux-3.0/arch/s390/include/asm/auxvec.h -ddb5d8cc27e0d510c99c0437adf71dc7 linux-3.0/arch/s390/include/asm/atomic.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/s390/include/asm/asm-offsets.h -11274d739b6f9c7c7afa313bf16fdce4 linux-3.0/arch/s390/include/asm/appldata.h -7f0db5fae1eaf01b7575f274f1f5e3af linux-3.0/arch/s390/include/asm/airq.h -f3d316ac2b412730a2158e12baa9216b linux-3.0/arch/s390/include/asm/Kbuild -bec8c1b7e281e1f59f47220129676db9 linux-3.0/arch/s390/hypfs/inode.c -63d649a326d2b7ac143db7b0040636e5 linux-3.0/arch/s390/hypfs/hypfs_vm.c -fda2acf1b2fb17fb51506320afce9b6e linux-3.0/arch/s390/hypfs/hypfs_diag.c -dba3a272839ab7ca2a4425f675d239db linux-3.0/arch/s390/hypfs/hypfs_dbfs.c -d74b07a61d1a8426870d2060f2e34378 linux-3.0/arch/s390/hypfs/hypfs.h -36d74dfe545a11ec266105313816c8f0 linux-3.0/arch/s390/hypfs/Makefile -148495a8554787207433691a632c739d linux-3.0/arch/s390/defconfig -8243cf4802230d16aec5ee6fb151fbd5 linux-3.0/arch/s390/crypto/sha_common.c -5c3fd78aa0dbd48da5b5df0c89ba815d linux-3.0/arch/s390/crypto/sha512_s390.c -d8e3ab6de1264280ddd3377e7dd8f84f linux-3.0/arch/s390/crypto/sha256_s390.c -3d6ffa43f13b59c09305e43d7b509df5 linux-3.0/arch/s390/crypto/sha1_s390.c -da1f34cb792f77c672f7554817e04984 linux-3.0/arch/s390/crypto/sha.h -422c4b551b4c6da2152e28ab3406a1b9 linux-3.0/arch/s390/crypto/prng.c -ab48e9de95cbd2d56264dfdd566164ee linux-3.0/arch/s390/crypto/ghash_s390.c -1774e8f994bd9176feaba5764e3a87c2 linux-3.0/arch/s390/crypto/des_s390.c -5c96777105e499264e333c43a71d5ad6 linux-3.0/arch/s390/crypto/crypto_des.h -e58429d15ca7beae4549b0bcd88e9a68 linux-3.0/arch/s390/crypto/crypt_s390.h -901cd251c735560f657f735ac8c4b529 linux-3.0/arch/s390/crypto/aes_s390.c -1c1fe8749e615504aa5b9865c610701d linux-3.0/arch/s390/crypto/Makefile -c7dc3c1f6e038c8e46a779c1ee381f74 linux-3.0/arch/s390/boot/install.sh -724f803a38a7f74180b1f252deb4c006 linux-3.0/arch/s390/boot/compressed/vmlinux.scr -f5d10f918db1e54f1254b4ba9cfd2774 linux-3.0/arch/s390/boot/compressed/vmlinux.lds.S -ef88a8b37d391785f1b95707b19b9a20 linux-3.0/arch/s390/boot/compressed/misc.c -033419cfeffbac0340821ece73aa7006 linux-3.0/arch/s390/boot/compressed/head64.S -17a02b99ee3f0f63faa36bbdda032bb7 linux-3.0/arch/s390/boot/compressed/head31.S -87580d2fea73e7cd6a6f1d523c3e609e linux-3.0/arch/s390/boot/compressed/Makefile -c5cc1430d27913f9d386f570163347af linux-3.0/arch/s390/boot/Makefile -5d9b473e5ae16ede4003b1c42d9b551f linux-3.0/arch/s390/appldata/appldata_os.c -83b8f0246f3ee62d228d6c9055959ff1 linux-3.0/arch/s390/appldata/appldata_net_sum.c -4a70c9cb695fdb01b7901a2af63c9f3a linux-3.0/arch/s390/appldata/appldata_mem.c -5ee7e56f0ae747bb536f051e50a99b18 linux-3.0/arch/s390/appldata/appldata_base.c -549815aadf57bf09e835ac927a531b0b linux-3.0/arch/s390/appldata/appldata.h -b7de796da04d7de3b8ff8080bf0811cb linux-3.0/arch/s390/appldata/Makefile -d63109a94832311b960e64a1988806d1 linux-3.0/arch/s390/Makefile -f5470ea25c3becb744ae9f12d2cabd03 linux-3.0/arch/s390/Kconfig.debug -6d0beb6ad89966b88433dbf900198dcf linux-3.0/arch/s390/Kconfig -16d06fc43f43858fc55867a323358a52 linux-3.0/arch/s390/Kbuild -6b0270df095421bcc392a283dbcce45c linux-3.0/arch/powerpc/xmon/xmon.c -2817df4c6456087d4f30c0bc135b080a linux-3.0/arch/powerpc/xmon/start.c -a11f94491dce1f5cb7d268b04de52607 linux-3.0/arch/powerpc/xmon/spu.h -c6dd7aad7c485288dc559c8660d2d0f2 linux-3.0/arch/powerpc/xmon/spu-opc.c -395402f1a3eccfa3def7e51df714cef0 linux-3.0/arch/powerpc/xmon/spu-insns.h -b043f676312054f2410c186d958a9af2 linux-3.0/arch/powerpc/xmon/spu-dis.c -572b4954d99055315409837637fc65f6 linux-3.0/arch/powerpc/xmon/ppc.h -29ea41b9484498da9c1c5f4da55eddc6 linux-3.0/arch/powerpc/xmon/ppc-opc.c -9e7ca81cff7f7beac0423f0a83b7eeab linux-3.0/arch/powerpc/xmon/ppc-dis.c -7e65c1483fcd0c610c4fd4ef143c03f1 linux-3.0/arch/powerpc/xmon/nonstdio.h -cbc8eb48109053fe17b6b34ae6f7e0fc linux-3.0/arch/powerpc/xmon/nonstdio.c -a2536d1776bfb02d0dc5300f1d6453cd linux-3.0/arch/powerpc/xmon/dis-asm.h -46fa1fd1d1dce48a531ed21c81e0f14e linux-3.0/arch/powerpc/xmon/ansidecl.h -7a6ea39b32a70a84aee77f26054d84c8 linux-3.0/arch/powerpc/xmon/Makefile -38030fec16cc1fbfd4ab439551783973 linux-3.0/arch/powerpc/sysdev/xilinx_pci.c -ad2879f1ecaff35f46756fd7a289afaf linux-3.0/arch/powerpc/sysdev/xilinx_intc.c -290ce67e4ab41f5b6078238ac267628c linux-3.0/arch/powerpc/sysdev/xics/xics-common.c -536d83e3b3ab85cff64cef3a2168aac7 linux-3.0/arch/powerpc/sysdev/xics/ics-rtas.c -f5b72097ca6af71e57a691f306118299 linux-3.0/arch/powerpc/sysdev/xics/icp-native.c -e236f825fb1872bac1b31c9bc3f0029a linux-3.0/arch/powerpc/sysdev/xics/icp-hv.c -b4e6a9f5f3d53751f8beb4e46003db9a linux-3.0/arch/powerpc/sysdev/xics/Makefile -cf43e0065bd43e60f7eecade130f14db linux-3.0/arch/powerpc/sysdev/xics/Kconfig -a418563da843d841ac3d3c203bfdc3cd linux-3.0/arch/powerpc/sysdev/uic.c -d79091761f8681d1e5ba7b8463afd3e5 linux-3.0/arch/powerpc/sysdev/tsi108_pci.c -508c40315cd913207b212f9d694cbc0b linux-3.0/arch/powerpc/sysdev/tsi108_dev.c -22f964c1abeac89aa8fb2cc9fd7bb3de linux-3.0/arch/powerpc/sysdev/simple_gpio.h -f84b9c8d27c75045c26c52dcb59bc81a linux-3.0/arch/powerpc/sysdev/simple_gpio.c -b250e0e5ec8cfe253adb66461dbfc989 linux-3.0/arch/powerpc/sysdev/scom.c -64132008549246a0bf345a4dd87b29c8 linux-3.0/arch/powerpc/sysdev/rtc_cmos_setup.c -b02922571be26633eec1284b44d9b630 linux-3.0/arch/powerpc/sysdev/qe_lib/usb.c -8dbd87d1ee08ddbd8bd2eb2298722f6f linux-3.0/arch/powerpc/sysdev/qe_lib/ucc_slow.c -74fdf2d478f7dc34676d4811f1776940 linux-3.0/arch/powerpc/sysdev/qe_lib/ucc_fast.c -f2928c472b8f91a299370f5433b66144 linux-3.0/arch/powerpc/sysdev/qe_lib/ucc.c -750a30744aef674ac2b3a56768fc93d1 linux-3.0/arch/powerpc/sysdev/qe_lib/qe_io.c -9a70122ddc8e2175ebee97e011a2b8db linux-3.0/arch/powerpc/sysdev/qe_lib/qe_ic.h -23d6a7935119c09aef020355b6482532 linux-3.0/arch/powerpc/sysdev/qe_lib/qe_ic.c -046868ced28de6a6e6a01024c42dabe5 linux-3.0/arch/powerpc/sysdev/qe_lib/qe.c -626f87fc0737d1e36d4dc4c3a7480689 linux-3.0/arch/powerpc/sysdev/qe_lib/gpio.c -f673327b9c44582070fd9ee7d4df81ad linux-3.0/arch/powerpc/sysdev/qe_lib/Makefile -9f646955877bdf5c70dad0da6423cb12 linux-3.0/arch/powerpc/sysdev/qe_lib/Kconfig -da3b429edb2beb3ee663f46f068d71cb linux-3.0/arch/powerpc/sysdev/ppc4xx_soc.c -8d09ae0621335b935f07b6cf17b547d8 linux-3.0/arch/powerpc/sysdev/ppc4xx_pci.h -19a5e596806cc5f80183b8143dbe6daf linux-3.0/arch/powerpc/sysdev/ppc4xx_pci.c -b3343e08fd3cd8c93a12194d96cfd2c3 linux-3.0/arch/powerpc/sysdev/ppc4xx_msi.c -13f111fe7a47ca5ac0495de0068e17ab linux-3.0/arch/powerpc/sysdev/ppc4xx_gpio.c -cc772f1df30c78a3958654b4a15093f5 linux-3.0/arch/powerpc/sysdev/ppc4xx_cpm.c -2f6bc23aeebf3788d0048a5af466ad18 linux-3.0/arch/powerpc/sysdev/pmi.c -de5bbab26bfd91ba4def6eefd383929e linux-3.0/arch/powerpc/sysdev/of_rtc.c -8675a43c70bddfab9251b1d1942669cf linux-3.0/arch/powerpc/sysdev/mv64x60_udbg.c -41fe8df9ae668fd52cd8eee090fc67e0 linux-3.0/arch/powerpc/sysdev/mv64x60_pic.c -5b7f52ba86c479358b8e0a6a8e6d9602 linux-3.0/arch/powerpc/sysdev/mv64x60_pci.c -9c152c7a1b0ab1b6071c60c7d198c81e linux-3.0/arch/powerpc/sysdev/mv64x60_dev.c -bfd498c7bd9f35105e503dfb43e4d6da linux-3.0/arch/powerpc/sysdev/mv64x60.h -1ccc4ed84db69fd2f43e140cd8be1f0d linux-3.0/arch/powerpc/sysdev/msi_bitmap.c -269b5090e0db6de3c0f9294010343818 linux-3.0/arch/powerpc/sysdev/mpic_u3msi.c -3886c58f9ff97f741f145be24444cbe7 linux-3.0/arch/powerpc/sysdev/mpic_pasemi_msi.c -095423f41ba43456b2db2a37a35cf532 linux-3.0/arch/powerpc/sysdev/mpic_msi.c -e65d8f22a1fda4fddd2b2a07582fa6ac linux-3.0/arch/powerpc/sysdev/mpic.h -c41e1ddc6ad9ec205bf5723d638bdf5e linux-3.0/arch/powerpc/sysdev/mpic.c -d7383a432cf260be9413789fc08408b7 linux-3.0/arch/powerpc/sysdev/mpc8xxx_gpio.c -9de5f718d5eb9702dad7dcf9f8dfbc5a linux-3.0/arch/powerpc/sysdev/mpc8xx_pic.h -07e457de26b5a7c458683041a96bb2b5 linux-3.0/arch/powerpc/sysdev/mpc8xx_pic.c -b21ccc83a544d84bd21ab4ef23512487 linux-3.0/arch/powerpc/sysdev/mpc5xxx_clocks.c -4dbf99db025dcacd506c451980fbd09a linux-3.0/arch/powerpc/sysdev/mmio_nvram.c -acccddae89540e01ff2df29520ad782c linux-3.0/arch/powerpc/sysdev/micropatch.c -000e90a958ec9476ecb2125e724dc5f1 linux-3.0/arch/powerpc/sysdev/ipic.h -58729968ab671d918814f209061f1b1e linux-3.0/arch/powerpc/sysdev/ipic.c -2f6a93ae84a287191e2d54ad6dde35e1 linux-3.0/arch/powerpc/sysdev/indirect_pci.c -1c41f66e062d944ae217743150e98a3d linux-3.0/arch/powerpc/sysdev/i8259.c -5cce8e3c9ee09f0bb57ce4fe8b2bdd9c linux-3.0/arch/powerpc/sysdev/grackle.c -a9694c6c6ce0696d2a5de3459ad7b7b9 linux-3.0/arch/powerpc/sysdev/fsl_soc.h -c22154407b8f7c26aac2ac36f2d3a56c linux-3.0/arch/powerpc/sysdev/fsl_soc.c -fbd1ab19b15292575242264ed61746ea linux-3.0/arch/powerpc/sysdev/fsl_rio.c -85361e266c235c9e28c840891bb600b7 linux-3.0/arch/powerpc/sysdev/fsl_pmc.c -d4e2a27abb4ed4ce7da0f9b86e700f23 linux-3.0/arch/powerpc/sysdev/fsl_pci.h -6461b8c6c7bb12980adece56d84c3315 linux-3.0/arch/powerpc/sysdev/fsl_pci.c -a8ac3e9563b8ac1ea8b12ce98e00916a linux-3.0/arch/powerpc/sysdev/fsl_msi.h -251d5173d68ff4520b50a4aabef9b3d1 linux-3.0/arch/powerpc/sysdev/fsl_msi.c -b4b023a0e9b991cb87b4ca8962ed15f0 linux-3.0/arch/powerpc/sysdev/fsl_lbc.c -01135120b5f5fa963c2a9a0fbd50aa9e linux-3.0/arch/powerpc/sysdev/fsl_gtm.c -185fd6c7f1af8066ac087f52d1bdd327 linux-3.0/arch/powerpc/sysdev/fsl_85xx_l2ctlr.c -439cdc510a8db73b80707077162511e7 linux-3.0/arch/powerpc/sysdev/fsl_85xx_cache_sram.c -76c5b8f479635bc5f20aeb24d7de1d3e linux-3.0/arch/powerpc/sysdev/fsl_85xx_cache_ctlr.h -b4cf489f84b8e2ca191b28276cd186f0 linux-3.0/arch/powerpc/sysdev/dcr.c -9e846edca8ffd0a071cdffeb265e4d0a linux-3.0/arch/powerpc/sysdev/dcr-low.S -978dc6f7c36507587122d67ab5636c80 linux-3.0/arch/powerpc/sysdev/dart_iommu.c -a6d434433c6af88e0e5c19c1c2af9ad4 linux-3.0/arch/powerpc/sysdev/dart.h -cbebe288daf8b970241e6df8544432a7 linux-3.0/arch/powerpc/sysdev/cpm_common.c -4598fdb2faf95786a72b145b1ee9c21e linux-3.0/arch/powerpc/sysdev/cpm2_pic.h -4259679eb2d4f5c314d8492fe159a079 linux-3.0/arch/powerpc/sysdev/cpm2_pic.c -15f7e616b224f4185a968cfb7f3cc975 linux-3.0/arch/powerpc/sysdev/cpm2.c -1bcf0d455e7ea61d35686b457b06440c linux-3.0/arch/powerpc/sysdev/cpm1.c -e7a7f92b9dc8bf4b1b8f143e9c915193 linux-3.0/arch/powerpc/sysdev/bestcomm/sram.h -d0ebe9f466ddd6834a271d2ec4a7c840 linux-3.0/arch/powerpc/sysdev/bestcomm/sram.c -0f00b2eda17a2f16025a2c4c7bc6dee9 linux-3.0/arch/powerpc/sysdev/bestcomm/gen_bd.h -576ed8895fec06ba90f770ecaded2b78 linux-3.0/arch/powerpc/sysdev/bestcomm/gen_bd.c -bdf852cbf9d126380ac1f4e09d44d829 linux-3.0/arch/powerpc/sysdev/bestcomm/fec.h -f3974f18c65136b286c682df8f72b6c7 linux-3.0/arch/powerpc/sysdev/bestcomm/fec.c -15f55e8ef2d8d7a21a47b2f78ae77c13 linux-3.0/arch/powerpc/sysdev/bestcomm/bestcomm_priv.h -63db2e819d4d49437dd0b9a5d2e607bd linux-3.0/arch/powerpc/sysdev/bestcomm/bestcomm.h -86c8de62c74d87c0a1fc493c732fe140 linux-3.0/arch/powerpc/sysdev/bestcomm/bestcomm.c -6a111561e079b48633d9e63cd495cb31 linux-3.0/arch/powerpc/sysdev/bestcomm/bcom_gen_bd_tx_task.c -164d672966d4dcb842bc789974d77d71 linux-3.0/arch/powerpc/sysdev/bestcomm/bcom_gen_bd_rx_task.c -ea130873f37d75762409924785d6684d linux-3.0/arch/powerpc/sysdev/bestcomm/bcom_fec_tx_task.c -ddb238686499c771e3e53b65f6be1d7e linux-3.0/arch/powerpc/sysdev/bestcomm/bcom_fec_rx_task.c -2d733e67bad18cc0c37a528f42a2e683 linux-3.0/arch/powerpc/sysdev/bestcomm/bcom_ata_task.c -74d4539ce73a9f922d9289fcee94994f linux-3.0/arch/powerpc/sysdev/bestcomm/ata.h -f28b566054208753f95e964ae753fbd6 linux-3.0/arch/powerpc/sysdev/bestcomm/ata.c -d8c8dc725078d299a987ab17d2a31b7d linux-3.0/arch/powerpc/sysdev/bestcomm/Makefile -aa9f4621508db4d143bdd3b7d092448a linux-3.0/arch/powerpc/sysdev/bestcomm/Kconfig -54d8fd96d5a44a16203c366e753c958e linux-3.0/arch/powerpc/sysdev/axonram.c -0abc4b7fd2d7c4c2e7d27078090186af linux-3.0/arch/powerpc/sysdev/Makefile -c0cf412fb8c42330b4d39e074183b82d linux-3.0/arch/powerpc/sysdev/Kconfig -0793516c3de3b8e5cc0ed52fd34abd4f linux-3.0/arch/powerpc/sysdev/6xx-suspend.S -237ea6c1bf5e85ec7dcd7f1990f7a6c0 linux-3.0/arch/powerpc/relocs_check.pl -7cc39a5c6087e0d7da2da0175d054400 linux-3.0/arch/powerpc/platforms/wsp/wsp.h -d7c8a390eb8385011c8fd53610ddeb31 linux-3.0/arch/powerpc/platforms/wsp/smp.c -1279910b73b01eb484f4aa1174ab3933 linux-3.0/arch/powerpc/platforms/wsp/setup.c -bdfc0c6cd2532be0b58c6b8006f2d580 linux-3.0/arch/powerpc/platforms/wsp/scom_wsp.c -84ed962928cf8064890a2758874d3ce5 linux-3.0/arch/powerpc/platforms/wsp/scom_smp.c -4e0b80197ee118fb1438a4eb26d2c111 linux-3.0/arch/powerpc/platforms/wsp/psr2.c -14af2ce3d3f4a411c3a7df97718f0240 linux-3.0/arch/powerpc/platforms/wsp/opb_pic.c -0eb851bcd090606c71cb4bda81382b6f linux-3.0/arch/powerpc/platforms/wsp/ics.h -b07061fbaaa0393dd805bacf9f4190ab linux-3.0/arch/powerpc/platforms/wsp/ics.c -3169af664e0ca24291a7ebf267e29d2b linux-3.0/arch/powerpc/platforms/wsp/Makefile -d8b78cae0bc19d6bc54a06cda27a338f linux-3.0/arch/powerpc/platforms/wsp/Kconfig -9915065e31b28325136aaa78764f9ce3 linux-3.0/arch/powerpc/platforms/pseries/suspend.c -0fa1168f79931138659f3d5aab5ba8e3 linux-3.0/arch/powerpc/platforms/pseries/smp.c -a778eab9e363be00ba7da232dc6f1126 linux-3.0/arch/powerpc/platforms/pseries/setup.c -ffd6e9c21b2d06ee5eeace8f5fc5abb1 linux-3.0/arch/powerpc/platforms/pseries/scanlog.c -539dcf3792093f207571e6c679982d2d linux-3.0/arch/powerpc/platforms/pseries/reconfig.c -e4ff29c16ec213579f750ac2b2d4d642 linux-3.0/arch/powerpc/platforms/pseries/ras.c -0baf657a283ebeaaf687d05675a02e1b linux-3.0/arch/powerpc/platforms/pseries/pseries_energy.c -f3df6059d0a6ae861cbcaf99ed42faeb linux-3.0/arch/powerpc/platforms/pseries/pseries.h -39357f32e64ee5704846567120c60266 linux-3.0/arch/powerpc/platforms/pseries/power.c -2d24d053b7b1a60751e0079f4e2b28d7 linux-3.0/arch/powerpc/platforms/pseries/plpar_wrappers.h -14d2233120bfaf98f8e0e78be132e806 linux-3.0/arch/powerpc/platforms/pseries/phyp_dump.c -b75784b16f05c37105e6dd0ae0c09341 linux-3.0/arch/powerpc/platforms/pseries/pci_dlpar.c -de68fbfccfb84bb33235262159d15663 linux-3.0/arch/powerpc/platforms/pseries/pci.c -4a8a929b1f3194442aa043f1e3daaf41 linux-3.0/arch/powerpc/platforms/pseries/offline_states.h -b6a042397036034d401b547b1af9ae28 linux-3.0/arch/powerpc/platforms/pseries/nvram.c -c21db49602e607880070f98a7a88a75c linux-3.0/arch/powerpc/platforms/pseries/msi.c -39cc43f17bbada71f5db5b3733ec6d6f linux-3.0/arch/powerpc/platforms/pseries/mobility.c -e9b6fa856e015d444d381da7caf51653 linux-3.0/arch/powerpc/platforms/pseries/lpar.c -4321c9dc58e1756d196b012e7df118c4 linux-3.0/arch/powerpc/platforms/pseries/kexec.c -b3cd18397d65f861bc78d44e2da299d5 linux-3.0/arch/powerpc/platforms/pseries/iommu.c -9ae8ac2ce857fc52fbbce09415a75568 linux-3.0/arch/powerpc/platforms/pseries/io_event_irq.c -164203b38413b52dbdd546253f6bead5 linux-3.0/arch/powerpc/platforms/pseries/hvcserver.c -ae1f7f8af1134ad5d794b736aa3c434c linux-3.0/arch/powerpc/platforms/pseries/hvconsole.c -9735ddc444f54ad3afc7ced0373beab7 linux-3.0/arch/powerpc/platforms/pseries/hvCall_inst.c -ba20ed67f7b8e4ff70e09dc767cee20d linux-3.0/arch/powerpc/platforms/pseries/hvCall.S -2615b9fead4ce787871cecdd540c6bc3 linux-3.0/arch/powerpc/platforms/pseries/hotplug-memory.c -f43efd88a9ebbb5ebdfc98920993567d linux-3.0/arch/powerpc/platforms/pseries/hotplug-cpu.c -64da780c5e1b05db9ba353441111d310 linux-3.0/arch/powerpc/platforms/pseries/firmware.c -2a184cadf12457e1df016fdf366e01d7 linux-3.0/arch/powerpc/platforms/pseries/event_sources.c -92f94fe16eb89b474eaede4f5ff66e1b linux-3.0/arch/powerpc/platforms/pseries/eeh_sysfs.c -6700c94cee816a8119123438d3245c51 linux-3.0/arch/powerpc/platforms/pseries/eeh_event.c -d950758fef0eb97469fd5dd05aaad7f5 linux-3.0/arch/powerpc/platforms/pseries/eeh_driver.c -eabe3d3add2199556ed965a13f459478 linux-3.0/arch/powerpc/platforms/pseries/eeh_cache.c -cbca2aeb1def23bf473029024f2cd4c1 linux-3.0/arch/powerpc/platforms/pseries/eeh.c -3c781ff816fb8193cb698979b727a6a0 linux-3.0/arch/powerpc/platforms/pseries/dtl.c -b917b5e4edd49dd06347a30f9f686f49 linux-3.0/arch/powerpc/platforms/pseries/dlpar.c -3bd2c048ec357d0b544f8f8b126cbada linux-3.0/arch/powerpc/platforms/pseries/cmm.c -b77afb2c1f1613c327780834cd5d1265 linux-3.0/arch/powerpc/platforms/pseries/Makefile -07c3d291af0146d96e0f0b3f3fddd316 linux-3.0/arch/powerpc/platforms/pseries/Kconfig -e1346d15fa672481bdd5a61d70a4f712 linux-3.0/arch/powerpc/platforms/ps3/time.c -9815c3d55597eb33cd3f25f16c37281b linux-3.0/arch/powerpc/platforms/ps3/system-bus.c -89b124158cebcfa1508802c4462ebf53 linux-3.0/arch/powerpc/platforms/ps3/spu.c -4cd65b5aced97280151730b45d219d26 linux-3.0/arch/powerpc/platforms/ps3/smp.c -8335f77fd9cb775d10aa462e7fd7511e linux-3.0/arch/powerpc/platforms/ps3/setup.c -6b73a963f4c682969b4b999eca534c4a linux-3.0/arch/powerpc/platforms/ps3/repository.c -a37b4e9f883107316ab45275259cfdab linux-3.0/arch/powerpc/platforms/ps3/platform.h -b0793fd8b9dba197e3e4a88adb5d9be0 linux-3.0/arch/powerpc/platforms/ps3/os-area.c -d8ad9d3ccb0f2c736da4c1f4559f9fc0 linux-3.0/arch/powerpc/platforms/ps3/mm.c -548241d822dd5123e9e623096bd94cba linux-3.0/arch/powerpc/platforms/ps3/interrupt.c -7927747bb6b61cd4501781be6f2e57af linux-3.0/arch/powerpc/platforms/ps3/hvcall.S -a7e5be0e97df0b98ffd7e64ee57bac34 linux-3.0/arch/powerpc/platforms/ps3/htab.c -ed9cdcd5a0a46f7aec6423d34ee6fed5 linux-3.0/arch/powerpc/platforms/ps3/exports.c -208392bfa43f0f635f95563dfe37f8d8 linux-3.0/arch/powerpc/platforms/ps3/device-init.c -705e11fbc8a1a3de632a6bd698924869 linux-3.0/arch/powerpc/platforms/ps3/Makefile -300ff8875384b60103dba01e0006c709 linux-3.0/arch/powerpc/platforms/ps3/Kconfig -891aba2ca5e6aa088f50968faeef3abb linux-3.0/arch/powerpc/platforms/prep/Kconfig -b45162091d01523630f6f2f00bf2a2a0 linux-3.0/arch/powerpc/platforms/powermac/udbg_scc.c -c60cc1926e9854971892b7bc7099dc61 linux-3.0/arch/powerpc/platforms/powermac/udbg_adb.c -c60ba1d7f8cee858c61d8cf08bcd2050 linux-3.0/arch/powerpc/platforms/powermac/time.c -39583d97c3fa095a36eaed79aa531338 linux-3.0/arch/powerpc/platforms/powermac/smp.c -963d347643e3e9e4f4c876fd24090c99 linux-3.0/arch/powerpc/platforms/powermac/sleep.S -4424aab01aa98a304bf44bdd9f06d503 linux-3.0/arch/powerpc/platforms/powermac/setup.c -fb17b2be46a604f35eabbf37a1e225c4 linux-3.0/arch/powerpc/platforms/powermac/pmac.h -4f3417165296f02811660922d50afa5a linux-3.0/arch/powerpc/platforms/powermac/pic.c -42f5e944016967463c41857c57f88242 linux-3.0/arch/powerpc/platforms/powermac/pfunc_core.c -865aeb51b7af588147ec22a0d881bf63 linux-3.0/arch/powerpc/platforms/powermac/pfunc_base.c -65d37a2e23e0fd3d1005e0b5f84265f0 linux-3.0/arch/powerpc/platforms/powermac/pci.c -edce57cb7f1612890fce1c65a31a58c3 linux-3.0/arch/powerpc/platforms/powermac/nvram.c -7841ca427e7d1513797bef6da527d49e linux-3.0/arch/powerpc/platforms/powermac/low_i2c.c -724db8bd21d901764be3a02d425a2996 linux-3.0/arch/powerpc/platforms/powermac/feature.c -748b5bd2d0e55931e8b3b2ae6569d0c6 linux-3.0/arch/powerpc/platforms/powermac/cpufreq_64.c -e6db6153d22b15338026e5bfd99abe26 linux-3.0/arch/powerpc/platforms/powermac/cpufreq_32.c -4fb99ec20eef299fea5be349bc966cfe linux-3.0/arch/powerpc/platforms/powermac/cache.S -c0b3e17700ec594f20c4fc624c224fb7 linux-3.0/arch/powerpc/platforms/powermac/bootx_init.c -20ab8b75e812f6f405a5289bda2a8314 linux-3.0/arch/powerpc/platforms/powermac/backlight.c -585d2d92336a8088e3200cb4af27de5b linux-3.0/arch/powerpc/platforms/powermac/Makefile -c53bb9a1fa609c22509a63de6d1a141b linux-3.0/arch/powerpc/platforms/powermac/Kconfig -b3387bbaa65a87eee7b94928c68db702 linux-3.0/arch/powerpc/platforms/pasemi/time.c -c4bfb846f48064e090eb1442c26ccb49 linux-3.0/arch/powerpc/platforms/pasemi/setup.c -c485c198389a0fcb477b748a7618e2da linux-3.0/arch/powerpc/platforms/pasemi/powersave.S -fae21471ad8dca80c66a61716a928aaa linux-3.0/arch/powerpc/platforms/pasemi/pci.c -3f50355665c2217d2f77922ac7d248b0 linux-3.0/arch/powerpc/platforms/pasemi/pasemi.h -4b1e9deded99f90d7fec44bc0bf1019d linux-3.0/arch/powerpc/platforms/pasemi/misc.c -558fa2b29993f4080c40d89ef2227dfc linux-3.0/arch/powerpc/platforms/pasemi/iommu.c -126f7890e7c1a80b280c3c04c44b9b62 linux-3.0/arch/powerpc/platforms/pasemi/idle.c -748570ab0084f73a714bb412c64a1647 linux-3.0/arch/powerpc/platforms/pasemi/gpio_mdio.c -dbeb01e5a2441b796df1698897c82b93 linux-3.0/arch/powerpc/platforms/pasemi/dma_lib.c -74c7c2b3c3b16fcbf87dff980078312c linux-3.0/arch/powerpc/platforms/pasemi/cpufreq.c -35dfc8461740a0a60e501d4883dd3a1a linux-3.0/arch/powerpc/platforms/pasemi/Makefile -8e1abb6558a57db816fa9e2d4cd3f913 linux-3.0/arch/powerpc/platforms/pasemi/Kconfig -972972c926d6b3af6d2821725e043df6 linux-3.0/arch/powerpc/platforms/maple/time.c -2a967106473e54658f95e3a3ef486b05 linux-3.0/arch/powerpc/platforms/maple/setup.c -08b19d137b3d6f248a3b735cc1fcb239 linux-3.0/arch/powerpc/platforms/maple/pci.c -84def25a60fc39e41ba038fc26d6ef3a linux-3.0/arch/powerpc/platforms/maple/maple.h -4c97007f603adfc0b8e8cb7e7e398eb9 linux-3.0/arch/powerpc/platforms/maple/Makefile -e26b01b4331f3d044460b28ca54a4b46 linux-3.0/arch/powerpc/platforms/maple/Kconfig -a13dc1646e6aeb4bebfb1396d005c278 linux-3.0/arch/powerpc/platforms/iseries/vpd_areas.h -c1d6131940b38a5cd6aace1068559e92 linux-3.0/arch/powerpc/platforms/iseries/viopath.c -635ec384b2e448a9f6e9899fed3d5406 linux-3.0/arch/powerpc/platforms/iseries/vio.c -97fd8dc9511082d203de7b6a1e9b16a6 linux-3.0/arch/powerpc/platforms/iseries/spcomm_area.h -af94660f0e42c28fc4154b6a2338dea7 linux-3.0/arch/powerpc/platforms/iseries/smp.c -eb3a9b2f882594c787716329f3658764 linux-3.0/arch/powerpc/platforms/iseries/setup.h -7b22db7151b1d165b79a1c1478f410f8 linux-3.0/arch/powerpc/platforms/iseries/setup.c -f0c86fcd38b390ad98759db11e4ddc4f linux-3.0/arch/powerpc/platforms/iseries/release_data.h -ade9e1b2ee9479f18fcfdb83ef05b0a7 linux-3.0/arch/powerpc/platforms/iseries/processor_vpd.h -09dad22cfa71ece89158c4ebb1ccb986 linux-3.0/arch/powerpc/platforms/iseries/proc.c -6ced83c7379cb4ba571f954efdd75f26 linux-3.0/arch/powerpc/platforms/iseries/pci.h -6c175c8bc14fd004be4f573dcfd740a9 linux-3.0/arch/powerpc/platforms/iseries/pci.c -4fd6bab309108652368b6b0d38edeaa8 linux-3.0/arch/powerpc/platforms/iseries/naca.h -1a68c7e1ca9a08a0225a4325a20ea06c linux-3.0/arch/powerpc/platforms/iseries/misc.S -db9fb0b38cdfd67693b97c4c5f7258b5 linux-3.0/arch/powerpc/platforms/iseries/mf.c -648205f9d12ee80ef91c7e90fa81a6a7 linux-3.0/arch/powerpc/platforms/iseries/main_store.h -14cec1f58146b243009280817dc20e8c linux-3.0/arch/powerpc/platforms/iseries/lpevents.c -aa63a3a31e2c90c18f32dd7f9ba73498 linux-3.0/arch/powerpc/platforms/iseries/lpardata.c -936df85c68054b8484490a83d4841a26 linux-3.0/arch/powerpc/platforms/iseries/ksyms.c -c31b7de6b2d19d48c4a33fc7df4f3b09 linux-3.0/arch/powerpc/platforms/iseries/it_lp_naca.h -0ffca6e7017ad4fdfff8f69e731add6a linux-3.0/arch/powerpc/platforms/iseries/it_exp_vpd_panel.h -00639c282149f02c5bea98f663fa4ca3 linux-3.0/arch/powerpc/platforms/iseries/irq.h -545ac3ce7bbabde643c539c3b81d3a8e linux-3.0/arch/powerpc/platforms/iseries/irq.c -4a67567dee89a8a4917ebcdb509ae7da linux-3.0/arch/powerpc/platforms/iseries/ipl_parms.h -a85fa803cb7cf737ce210f67098e26b6 linux-3.0/arch/powerpc/platforms/iseries/iommu.c -1f741fb7ab8dc1a3c19d39e55d0b8759 linux-3.0/arch/powerpc/platforms/iseries/hvlpconfig.c -4dbac1f267fa69b6feb3ec4ee9f2be1c linux-3.0/arch/powerpc/platforms/iseries/hvlog.c -c536d47f4ebee1fd7963fc88fc29b56b linux-3.0/arch/powerpc/platforms/iseries/hvcall.S -ef6245df5b692d9e1cf982b767a338b3 linux-3.0/arch/powerpc/platforms/iseries/htab.c -aa02e31e7de1b3c6aa6cf246ddc6f5bd linux-3.0/arch/powerpc/platforms/iseries/exception.h -e0575e77d97a97046764b19f6e65329e linux-3.0/arch/powerpc/platforms/iseries/exception.S -29de08cda0b4243d64929c4a4e916d72 linux-3.0/arch/powerpc/platforms/iseries/dt.c -fa551cdbb0d0484a809a6dae1410cb6e linux-3.0/arch/powerpc/platforms/iseries/call_sm.h -3abe81a67e10df97518789ebc5e0fab8 linux-3.0/arch/powerpc/platforms/iseries/call_pci.h -dbeadbc3372caa7251a3688de52829da linux-3.0/arch/powerpc/platforms/iseries/call_hpt.h -1a0952e895494d089cb1ebd6bdd159a8 linux-3.0/arch/powerpc/platforms/iseries/Makefile -61d0eed464e799abbf32e8d3827d8643 linux-3.0/arch/powerpc/platforms/iseries/Kconfig -2e426e5d4d4d27a5f9e924e9a59bfc07 linux-3.0/arch/powerpc/platforms/fsl_uli1575.c -b5a4bd1ae91958ac8dc1c9a5e834bba5 linux-3.0/arch/powerpc/platforms/embedded6xx/wii.c -387d98b7111b2de4696b3313719f7327 linux-3.0/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.h -f81ef77846fd4e20c0b03fb79512d178 linux-3.0/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c -98b3e2986b0bf15af5a64c48b2453e08 linux-3.0/arch/powerpc/platforms/embedded6xx/storcenter.c -9351250ebf7928cbe231962ec9fdf287 linux-3.0/arch/powerpc/platforms/embedded6xx/prpmc2800.c -488250b3e80db60be92870f234c9b251 linux-3.0/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c -0eba87e5f88720940ca3f3f5ac49893f linux-3.0/arch/powerpc/platforms/embedded6xx/mpc10x.h -0e6ef89db2e43b7cbf374d836ea106a7 linux-3.0/arch/powerpc/platforms/embedded6xx/ls_uart.c -01d5fdb37d77b63d06f4d8091bf5efd6 linux-3.0/arch/powerpc/platforms/embedded6xx/linkstation.c -8f78267ea3ba8b27e1d64222024b0745 linux-3.0/arch/powerpc/platforms/embedded6xx/holly.c -6be0658e9f64718e3122500633c88bbe linux-3.0/arch/powerpc/platforms/embedded6xx/hlwd-pic.h -eaeabe8ec4c50b4e761f2a0e161daaa5 linux-3.0/arch/powerpc/platforms/embedded6xx/hlwd-pic.c -c5be2762bfacac30846a0042d846945c linux-3.0/arch/powerpc/platforms/embedded6xx/gamecube.c -f079fd533051b000bd8b24120c6610a8 linux-3.0/arch/powerpc/platforms/embedded6xx/flipper-pic.h -27283250df19a9990cd1fd23169c8bec linux-3.0/arch/powerpc/platforms/embedded6xx/flipper-pic.c -940c49c5e6a3566d55ba181466a69f18 linux-3.0/arch/powerpc/platforms/embedded6xx/c2k.c -3e4e1d7219ebb16093ef667fb5031935 linux-3.0/arch/powerpc/platforms/embedded6xx/Makefile -63fda99e64a9853e3ac0f723a1e1076b linux-3.0/arch/powerpc/platforms/embedded6xx/Kconfig -79cbef781015c38a020f4360dfabf001 linux-3.0/arch/powerpc/platforms/chrp/time.c -37bf59e119405b5f2313740545e3304c linux-3.0/arch/powerpc/platforms/chrp/smp.c -aca2624efb00a66d6e4376ad9ab5b0b0 linux-3.0/arch/powerpc/platforms/chrp/setup.c -29ea70eb7b6afb76f58bf77a36812193 linux-3.0/arch/powerpc/platforms/chrp/pegasos_eth.c -1cdfdd4f8badf8d700b53e18ac991663 linux-3.0/arch/powerpc/platforms/chrp/pci.c -950b8417f1ac2a90e43c75a3b1fe9369 linux-3.0/arch/powerpc/platforms/chrp/nvram.c -6ef95b962be9f266095593b40990daaa linux-3.0/arch/powerpc/platforms/chrp/gg2.h -eab6e3d095178d33d6a351594f067e01 linux-3.0/arch/powerpc/platforms/chrp/chrp.h -8299efc9e18c1eeb4976a1003249f43e linux-3.0/arch/powerpc/platforms/chrp/Makefile -6a48861c64dceab2020937d65d3430b9 linux-3.0/arch/powerpc/platforms/chrp/Kconfig -84c0c764701fc61c2775cc3829c23de8 linux-3.0/arch/powerpc/platforms/cell/spufs/syscalls.c -d79e7455f6c049acd794797803db636b linux-3.0/arch/powerpc/platforms/cell/spufs/switch.c -87f9c1261c7479202c836b9b523896a1 linux-3.0/arch/powerpc/platforms/cell/spufs/sputrace.h -85b3758710f9ca73075c62da3e7e3f84 linux-3.0/arch/powerpc/platforms/cell/spufs/spufs.h -d54002c45cf0059d75a7b3f653740c7d linux-3.0/arch/powerpc/platforms/cell/spufs/spu_utils.h -cd301b74ed918ca0e8d20667f8b47c67 linux-3.0/arch/powerpc/platforms/cell/spufs/spu_save_dump.h_shipped -d0529a56390d0dbc273b95e2b20ea41a linux-3.0/arch/powerpc/platforms/cell/spufs/spu_save_crt0.S -f963fc61282fbba44c0519d82c21a002 linux-3.0/arch/powerpc/platforms/cell/spufs/spu_save.c -b761375723e1e7dcdc6eddad5d31c313 linux-3.0/arch/powerpc/platforms/cell/spufs/spu_restore_dump.h_shipped -4c2d090014d02e6439d75a8947f34125 linux-3.0/arch/powerpc/platforms/cell/spufs/spu_restore_crt0.S -103ed2b1bda5c823c9754f7ccd8d4b0c linux-3.0/arch/powerpc/platforms/cell/spufs/spu_restore.c -bbb087b22f13e9543af098435585cdba linux-3.0/arch/powerpc/platforms/cell/spufs/sched.c -d39e68f4f0a05d0c7ed5d577d4c030b9 linux-3.0/arch/powerpc/platforms/cell/spufs/run.c -62a009ecde0ed731769d6041abcd9db4 linux-3.0/arch/powerpc/platforms/cell/spufs/lscsa_alloc.c -439cdba25c56e37f682ad0e73e267349 linux-3.0/arch/powerpc/platforms/cell/spufs/inode.c -50eb11c5ef4403e88e9d05b6a0fe7148 linux-3.0/arch/powerpc/platforms/cell/spufs/hw_ops.c -335170a8d5b564415f90faab229f3c9e linux-3.0/arch/powerpc/platforms/cell/spufs/gang.c -03891958119c477cfccdc8274d7e83eb linux-3.0/arch/powerpc/platforms/cell/spufs/file.c -665ac224e7ad6e7c04ab77565aa81ea1 linux-3.0/arch/powerpc/platforms/cell/spufs/fault.c -0399d14e7fba65531f86a4fdbc5bb3e8 linux-3.0/arch/powerpc/platforms/cell/spufs/coredump.c -4790f37672e685db214951b0550b58a0 linux-3.0/arch/powerpc/platforms/cell/spufs/context.c -3179139c892b3dc75079af20bab471e4 linux-3.0/arch/powerpc/platforms/cell/spufs/backing_ops.c -8e8dc557cc592324be5970478095e036 linux-3.0/arch/powerpc/platforms/cell/spufs/Makefile -37ba2e075a68c4f321805dbe5773f0e1 linux-3.0/arch/powerpc/platforms/cell/spufs/.gitignore -53e3af877fcdbc46568231d2de56e76f linux-3.0/arch/powerpc/platforms/cell/spu_syscalls.c -bebde4010eb80d5590edf427d0e05881 linux-3.0/arch/powerpc/platforms/cell/spu_priv1_mmio.h -876288d283efd81488c0ee1ab5bc4bdd linux-3.0/arch/powerpc/platforms/cell/spu_priv1_mmio.c -998389bbf94f9547c778ad6316338cf7 linux-3.0/arch/powerpc/platforms/cell/spu_notify.c -80b101e7c432d746273dfa5588f2e314 linux-3.0/arch/powerpc/platforms/cell/spu_manage.c -1d66665437fed2a1abf625be81e8c760 linux-3.0/arch/powerpc/platforms/cell/spu_fault.c -a284c01b87f0cf17059c8ecbda24b527 linux-3.0/arch/powerpc/platforms/cell/spu_callbacks.c -b1ec53bfb65e6aab69c17352f6a398b6 linux-3.0/arch/powerpc/platforms/cell/spu_base.c -68d640f070d29125bfd75fae6736a70f linux-3.0/arch/powerpc/platforms/cell/spider-pic.c -d0951151194b5b2610ae08efbc1510f5 linux-3.0/arch/powerpc/platforms/cell/spider-pci.c -3e7b2311b3da670140ab8090d80b8fe9 linux-3.0/arch/powerpc/platforms/cell/smp.c -e4e281979c168bae70918b99b1d77191 linux-3.0/arch/powerpc/platforms/cell/setup.c -0c5ed5f6216f1cf319c9fd20b5a27bb3 linux-3.0/arch/powerpc/platforms/cell/ras.h -5c463a9d4fa48e946871e13f6d3df31e linux-3.0/arch/powerpc/platforms/cell/ras.c -bb0aacce5ae7d7294b25c90dee3c57ce linux-3.0/arch/powerpc/platforms/cell/qpace_setup.c -21ad06d5a1e1a2f7d1a37b360009e5c5 linux-3.0/arch/powerpc/platforms/cell/pmu.c -a080202e792e0c794edb8c968ca42d8d linux-3.0/arch/powerpc/platforms/cell/pervasive.h -ce8f0e8f0916b1b9e001136c30573b96 linux-3.0/arch/powerpc/platforms/cell/pervasive.c -a0819a6410c4edb247ebbd2d3787c174 linux-3.0/arch/powerpc/platforms/cell/iommu.c -f1301d9b12e7f327a5cebe01b058f1f7 linux-3.0/arch/powerpc/platforms/cell/interrupt.h -7cd685cdb797a56730e1cdad14b4ade4 linux-3.0/arch/powerpc/platforms/cell/interrupt.c -9ec9df52e7819ab77e65271b064d702f linux-3.0/arch/powerpc/platforms/cell/cpufreq_spudemand.c -50d215cb1db0933fdaba5706444813ff linux-3.0/arch/powerpc/platforms/cell/celleb_setup.c -9b2edabcdb6176c1c30a38d5b117daac linux-3.0/arch/powerpc/platforms/cell/celleb_scc_uhc.c -42ad4b70eed67df09d3a283d1699cbc2 linux-3.0/arch/powerpc/platforms/cell/celleb_scc_sio.c -a503fb477c72f1ff1e5c57a2136317d7 linux-3.0/arch/powerpc/platforms/cell/celleb_scc_pciex.c -3d1442d5dfc1a84be8366ef0c5bd7530 linux-3.0/arch/powerpc/platforms/cell/celleb_scc_epci.c -0cd939806299aa7a564c3d36ab7b0ddc linux-3.0/arch/powerpc/platforms/cell/celleb_scc.h -081580d490e8f4e366dab0a5ba9629a6 linux-3.0/arch/powerpc/platforms/cell/celleb_pci.h -15cbbaabefd22ac63d62b51ca0bdc9af linux-3.0/arch/powerpc/platforms/cell/celleb_pci.c -c1f274b89322a77d231c3dd691c695c6 linux-3.0/arch/powerpc/platforms/cell/cbe_thermal.c -f5e9809d967a04d3b91025a0c37df938 linux-3.0/arch/powerpc/platforms/cell/cbe_regs.c -c6dfad09eadba4f1a27793b6af2d92a9 linux-3.0/arch/powerpc/platforms/cell/cbe_powerbutton.c -319da1e058f7383bce3a0e034f652b1d linux-3.0/arch/powerpc/platforms/cell/cbe_cpufreq_pmi.c -2a7958cb7223e54798d4c4490e06e592 linux-3.0/arch/powerpc/platforms/cell/cbe_cpufreq_pervasive.c -97e7bbc920aab41f1689e600fc212598 linux-3.0/arch/powerpc/platforms/cell/cbe_cpufreq.h -3a421f4609b66bec5cd3c5606821e98b linux-3.0/arch/powerpc/platforms/cell/cbe_cpufreq.c -7a7fe6ee72b822c81090d02e70b4f826 linux-3.0/arch/powerpc/platforms/cell/beat_wrapper.h -3ebbd5a0f0b68d4d74712229335cc855 linux-3.0/arch/powerpc/platforms/cell/beat_udbg.c -34980e6d744fecc787ab8e18985ad796 linux-3.0/arch/powerpc/platforms/cell/beat_syscall.h -47209c632bc014e2d1b040804020e9f9 linux-3.0/arch/powerpc/platforms/cell/beat_spu_priv1.c -00a3876bf9eb04482c0dcc44e788b212 linux-3.0/arch/powerpc/platforms/cell/beat_iommu.c -e8fa4aecc79fac88be009a9564fcff93 linux-3.0/arch/powerpc/platforms/cell/beat_interrupt.h -8768f1fb45bb21186881da2c971281ab linux-3.0/arch/powerpc/platforms/cell/beat_interrupt.c -8cf63b3e154dc3d3b08051241bdf0045 linux-3.0/arch/powerpc/platforms/cell/beat_hvCall.S -6ff742b83da7db1a078657d13ab96d30 linux-3.0/arch/powerpc/platforms/cell/beat_htab.c -bf70cdf16ef177298b24e8920ca379c2 linux-3.0/arch/powerpc/platforms/cell/beat.h -46a34585a55d087c391d798fbb7059dc linux-3.0/arch/powerpc/platforms/cell/beat.c -8061639677dad49dc2519f029439b91a linux-3.0/arch/powerpc/platforms/cell/axon_msi.c -b96b8b09e8d2ae9b0ae37182bbaa2608 linux-3.0/arch/powerpc/platforms/cell/Makefile -b912898dbbc3b31276865232c066b856 linux-3.0/arch/powerpc/platforms/cell/Kconfig -6693fd1929be7096627c9a14ac26075c linux-3.0/arch/powerpc/platforms/amigaone/setup.c -eafa1291634aedc9c36463938ffb3b92 linux-3.0/arch/powerpc/platforms/amigaone/Makefile -38c071b2cdc27c9b128f2288ea328c88 linux-3.0/arch/powerpc/platforms/amigaone/Kconfig -f3367a31abbe0831cf019b38f0c587ac linux-3.0/arch/powerpc/platforms/Makefile -2cde75f59bafd7633ec39c67e21a2891 linux-3.0/arch/powerpc/platforms/Kconfig.cputype -c15aebff0e4306b56419f1c7f25b24fa linux-3.0/arch/powerpc/platforms/Kconfig -274351146cc485aa2825f097e31ee6fd linux-3.0/arch/powerpc/platforms/8xx/tqm8xx_setup.c -fa0635f12bb62b3ea78059e74c58e70f linux-3.0/arch/powerpc/platforms/8xx/mpc8xx.h -b547e3e94f159487af6d850fe494ef92 linux-3.0/arch/powerpc/platforms/8xx/mpc885ads_setup.c -3c7472389849aaedbb6c4e1bec5cf3da linux-3.0/arch/powerpc/platforms/8xx/mpc885ads.h -4368d07b65d4353010ea24d027a16773 linux-3.0/arch/powerpc/platforms/8xx/mpc86xads_setup.c -1093a1dbd5a73122a44e821b421a4eb8 linux-3.0/arch/powerpc/platforms/8xx/mpc86xads.h -87d2774e72ad61cb45adce1a21c58bf7 linux-3.0/arch/powerpc/platforms/8xx/m8xx_setup.c -83954ad4afd869164597c21bc4143def linux-3.0/arch/powerpc/platforms/8xx/ep88xc.c -769a5643aec1b3c3a0ae84e92641bc8c linux-3.0/arch/powerpc/platforms/8xx/adder875.c -ba1d885f4bcd2f4c36689bdccbb0bfc6 linux-3.0/arch/powerpc/platforms/8xx/Makefile -8d80a60b181b4cf8155ab16f6205b81f linux-3.0/arch/powerpc/platforms/8xx/Kconfig -53e953ad4d2239a5d015ef65c847f5c9 linux-3.0/arch/powerpc/platforms/86xx/sbc8641d.c -47624afc894853ee1d6cff377c28069a linux-3.0/arch/powerpc/platforms/86xx/pic.c -f4df9c2be0286d00023b74fb58c86907 linux-3.0/arch/powerpc/platforms/86xx/mpc86xx_smp.c -b34615e68f6e086388e24e2a474e4389 linux-3.0/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c -b522a0068649dc37d5a1ff6c8dbe9799 linux-3.0/arch/powerpc/platforms/86xx/mpc86xx.h -70e4ca3e1cfbefaf4e5c10ddd7b70f94 linux-3.0/arch/powerpc/platforms/86xx/mpc8610_hpcd.c -861f26f9eaf1e038ab5dfd2f4f2c5121 linux-3.0/arch/powerpc/platforms/86xx/gef_sbc610.c -14207478750b809fa99a4e607027e903 linux-3.0/arch/powerpc/platforms/86xx/gef_sbc310.c -fb752256688cbdce3b409c681688bc54 linux-3.0/arch/powerpc/platforms/86xx/gef_ppc9a.c -ddad2d5759318642600567690794a322 linux-3.0/arch/powerpc/platforms/86xx/gef_pic.h -20e4266217461e45f0451226f59060d1 linux-3.0/arch/powerpc/platforms/86xx/gef_pic.c -60941d7b60771fdb34fb46aa757ffa79 linux-3.0/arch/powerpc/platforms/86xx/gef_gpio.c -2cf70f152059ceec91534ea8828f7488 linux-3.0/arch/powerpc/platforms/86xx/Makefile -80edce7222204dfa8e772cb75af641fc linux-3.0/arch/powerpc/platforms/86xx/Kconfig -235e9dbef8c0970bf0b3514a8f873ba7 linux-3.0/arch/powerpc/platforms/85xx/xes_mpc85xx.c -28b93d6a71e05eadf8d3b70d6f484c48 linux-3.0/arch/powerpc/platforms/85xx/tqm85xx.c -cce21e5ce9f0080c4d99b29da3bd95e5 linux-3.0/arch/powerpc/platforms/85xx/stx_gp3.c -2c7e928461e20e6991c881d238d8f73a linux-3.0/arch/powerpc/platforms/85xx/socrates_fpga_pic.h -97e36a8819202c6ee03ba997734111bf linux-3.0/arch/powerpc/platforms/85xx/socrates_fpga_pic.c -e6daab874882b9cc268783718f30ccd5 linux-3.0/arch/powerpc/platforms/85xx/socrates.c -aa085576d77428f73d77b8594d454d52 linux-3.0/arch/powerpc/platforms/85xx/smp.c -bac0e6e02733329563ff029904ab7957 linux-3.0/arch/powerpc/platforms/85xx/sbc8560.c -ca2677867d7644684d57ab1e21261d56 linux-3.0/arch/powerpc/platforms/85xx/sbc8548.c -e9cf0e0f746ecf2f12ce4f1726e5d902 linux-3.0/arch/powerpc/platforms/85xx/p5020_ds.c -2c9b64f0fb15d89c992e6feabb19b1c5 linux-3.0/arch/powerpc/platforms/85xx/p4080_ds.c -ceb260203dd7fde491b74086a0410f8d linux-3.0/arch/powerpc/platforms/85xx/p3041_ds.c -8cc7d1c0f8a7f29a0e2801cab4db7a62 linux-3.0/arch/powerpc/platforms/85xx/p1022_ds.c -740d542b9f75b3acc49a37f3c65cb2cd linux-3.0/arch/powerpc/platforms/85xx/mpc85xx_rdb.c -09bf9c66ac77f16f68df05f2941c223d linux-3.0/arch/powerpc/platforms/85xx/mpc85xx_mds.c -471c7b2d0865b212d31056419d0eaae5 linux-3.0/arch/powerpc/platforms/85xx/mpc85xx_ds.c -3606025448174dff21a20b71c59aa7cb linux-3.0/arch/powerpc/platforms/85xx/mpc85xx_cds.c -cc16d60cacd8a29ed9e0cba0cd09c761 linux-3.0/arch/powerpc/platforms/85xx/mpc85xx_ads.c -311e4daf6fb5d50af8d58cb22e2de332 linux-3.0/arch/powerpc/platforms/85xx/mpc8536_ds.c -59e0496132c3dcd6e8d514af2741f196 linux-3.0/arch/powerpc/platforms/85xx/ksi8560.c -8ecd0ae1cccf6a23a8142cf6bf219adb linux-3.0/arch/powerpc/platforms/85xx/corenet_ds.h -ff3a80779895fe26f804697105e3f5d8 linux-3.0/arch/powerpc/platforms/85xx/corenet_ds.c -368bc95036d220376442ff631426ea3d linux-3.0/arch/powerpc/platforms/85xx/Makefile -3f3c0480991f69e6bae71293e315f1f1 linux-3.0/arch/powerpc/platforms/85xx/Kconfig -3bf127b15931513981bc4fd473577278 linux-3.0/arch/powerpc/platforms/83xx/usb.c -7683aca375c04a22d5f6b47fa5f75bab linux-3.0/arch/powerpc/platforms/83xx/suspend.c -3748dd5e92532a09f846cd9ef4e83bbe linux-3.0/arch/powerpc/platforms/83xx/suspend-asm.S -e9f70854f32fafa11bf81e18a2e104ac linux-3.0/arch/powerpc/platforms/83xx/sbc834x.c -71a5673fc9eacc92d9c8f839160c2113 linux-3.0/arch/powerpc/platforms/83xx/mpc83xx.h -fe81c9080860dc2368117cefdf23ad7e linux-3.0/arch/powerpc/platforms/83xx/mpc837x_rdb.c -825c8a3bbf9c3f18fafaf365e27029da linux-3.0/arch/powerpc/platforms/83xx/mpc837x_mds.c -f648d034801add79320d8ec98e0ba7fe linux-3.0/arch/powerpc/platforms/83xx/mpc836x_rdk.c -deededb7120e1eb78dcc2e734d557ac5 linux-3.0/arch/powerpc/platforms/83xx/mpc836x_mds.c -2c2556606123e33de1801a9095f0c899 linux-3.0/arch/powerpc/platforms/83xx/mpc834x_mds.c -ad8af4fc35ddcc1babd7a824283cd33c linux-3.0/arch/powerpc/platforms/83xx/mpc834x_itx.c -c7847ef957f6bdd150ce4f72df62c8dc linux-3.0/arch/powerpc/platforms/83xx/mpc832x_rdb.c -faa80bf65a9351654fef51069e05cc42 linux-3.0/arch/powerpc/platforms/83xx/mpc832x_mds.c -37ab1bb8803ed02dea951dd16c1abd38 linux-3.0/arch/powerpc/platforms/83xx/mpc831x_rdb.c -f3287053fe14f18a818d292d4c8e62ea linux-3.0/arch/powerpc/platforms/83xx/mpc830x_rdb.c -83131e3289c62b7d09244c828f866192 linux-3.0/arch/powerpc/platforms/83xx/misc.c -f29aacdc0ab2330351e214133a947ba6 linux-3.0/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c -fb6f57771f33d087f38f8249b033c435 linux-3.0/arch/powerpc/platforms/83xx/km83xx.c -36953f92273ff2f2cc8a3f22241e97da linux-3.0/arch/powerpc/platforms/83xx/asp834x.c -e8b7831c390216a5a17d163c859ab497 linux-3.0/arch/powerpc/platforms/83xx/Makefile -65e77ce526be066ddb912aa3a771d4f6 linux-3.0/arch/powerpc/platforms/83xx/Kconfig -6eafebcf75229efcbca4f848493ded23 linux-3.0/arch/powerpc/platforms/82xx/pq2fads.c -cba8a2ff9d248d74f0692210155835c4 linux-3.0/arch/powerpc/platforms/82xx/pq2ads.h -ea5661a9cf834bb37b9871188a8663ed linux-3.0/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c -fcfcff33f57377deeff89b70af3d3698 linux-3.0/arch/powerpc/platforms/82xx/pq2.h -46482a66ba32f99b909e10d58b32e69b linux-3.0/arch/powerpc/platforms/82xx/pq2.c -d2ad5710a93eb537a4a677a4d28c4e13 linux-3.0/arch/powerpc/platforms/82xx/mpc8272_ads.c -c8fbe69b72b01f66b6c98bc67be01dfe linux-3.0/arch/powerpc/platforms/82xx/m82xx_pci.h -5c2d5f040e548f273dcf9fcae5e10f76 linux-3.0/arch/powerpc/platforms/82xx/km82xx.c -dae9e9fc5dbbbd6f8df7e637ee5ffb3e linux-3.0/arch/powerpc/platforms/82xx/ep8248e.c -e2563107b5061cf5667c100451a1d200 linux-3.0/arch/powerpc/platforms/82xx/Makefile -ca0cd7c05ab42a703df31d09a03b144a linux-3.0/arch/powerpc/platforms/82xx/Kconfig -d2e3ab2f1eb42aad53f285a8cff5e81c linux-3.0/arch/powerpc/platforms/52xx/mpc52xx_sleep.S -85f3e3ad42cd4277fd71499f7db7041f linux-3.0/arch/powerpc/platforms/52xx/mpc52xx_pm.c -1607021fbef9fb5ca27608816e72ffff linux-3.0/arch/powerpc/platforms/52xx/mpc52xx_pic.c -5a7ed6689be2c802063114d62309c664 linux-3.0/arch/powerpc/platforms/52xx/mpc52xx_pci.c -844081654d97fb109937853ac9534290 linux-3.0/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c -c4b7ca0168184646dde164d53fff6eb0 linux-3.0/arch/powerpc/platforms/52xx/mpc52xx_gpt.c -0e9632644606b17bbcb347f341725e48 linux-3.0/arch/powerpc/platforms/52xx/mpc52xx_gpio.c -90322ecb8147d6aae4461d2d32cf346f linux-3.0/arch/powerpc/platforms/52xx/mpc52xx_common.c -b2aab3184757a0f2b85da16735a797b6 linux-3.0/arch/powerpc/platforms/52xx/mpc5200_simple.c -2f53f49e8355b1c266cd0c257d5a7b27 linux-3.0/arch/powerpc/platforms/52xx/media5200.c -cdc4865a93f61df1f4f7168dfc15eefd linux-3.0/arch/powerpc/platforms/52xx/lite5200_sleep.S -9b1ef70e182745a605bdc1ee1cfb9dc7 linux-3.0/arch/powerpc/platforms/52xx/lite5200_pm.c -940df54307d42b972cb5c2d26b473fdc linux-3.0/arch/powerpc/platforms/52xx/lite5200.c -d02beb950705992d126100fd9cbab18c linux-3.0/arch/powerpc/platforms/52xx/efika.c -314ad88f5f8388b5db674ff4eb8769f3 linux-3.0/arch/powerpc/platforms/52xx/Makefile -bd7e365a6398f467b33409dc914f34e0 linux-3.0/arch/powerpc/platforms/52xx/Kconfig -578fd9c0656294028daf4616545ee289 linux-3.0/arch/powerpc/platforms/512x/pdm360ng.c -6a2df04117d225053f5bd7371a4f4e8a linux-3.0/arch/powerpc/platforms/512x/mpc512x_shared.c -3f27e572ec7d78bb2ecc34e5324e9924 linux-3.0/arch/powerpc/platforms/512x/mpc512x.h -4f1b6e7eebfc7f1f6933923c400ef4a0 linux-3.0/arch/powerpc/platforms/512x/mpc5121_generic.c -6872d1ba957986e6d513a113984723ca linux-3.0/arch/powerpc/platforms/512x/mpc5121_ads_cpld.c -6ad014ec5f157d6e45dca70b7ddf7ab8 linux-3.0/arch/powerpc/platforms/512x/mpc5121_ads.h -175836b6b66638f7353ba86569e68be1 linux-3.0/arch/powerpc/platforms/512x/mpc5121_ads.c -ad4e0bbedef7734b5c1be3fbc8d3c5c8 linux-3.0/arch/powerpc/platforms/512x/clock.c -fd4c6507ba231dfeeabb2c25639a4171 linux-3.0/arch/powerpc/platforms/512x/Makefile -64c7d1505c31b81308a9f1398c79992d linux-3.0/arch/powerpc/platforms/512x/Kconfig -9f5d3d1e65204575b18a6de33d05aea2 linux-3.0/arch/powerpc/platforms/44x/warp.c -a37514e51acafdbe663d38b58d62586d linux-3.0/arch/powerpc/platforms/44x/virtex_ml510.c -6783c6fc614e54de82c4ad5d4779b201 linux-3.0/arch/powerpc/platforms/44x/virtex.c -e5a174377a1ff58fc738d3df6dcb53c2 linux-3.0/arch/powerpc/platforms/44x/sam440ep.c -0a10e6d849cdaaf26736ceb6e30fd0b9 linux-3.0/arch/powerpc/platforms/44x/ppc44x_simple.c -f91ba90495e99e1473f48e6aaf735ba7 linux-3.0/arch/powerpc/platforms/44x/misc_44x.S -b69fd777639b3736d9a140e15ccd8f25 linux-3.0/arch/powerpc/platforms/44x/iss4xx.c -d3053532c4736b1be4496f255c8ddb7f linux-3.0/arch/powerpc/platforms/44x/idle.c -7c19ffb1a7794036ef875246db86d694 linux-3.0/arch/powerpc/platforms/44x/ebony.c -d01c638884c7d2f26532fed3a90fde52 linux-3.0/arch/powerpc/platforms/44x/canyonlands.c -bdb229151979497539aa043e9525aab7 linux-3.0/arch/powerpc/platforms/44x/Makefile -a6ccfd1df604162240769b73da619bea linux-3.0/arch/powerpc/platforms/44x/Kconfig -9f367d03ee1c1c26120ff12c61e04da9 linux-3.0/arch/powerpc/platforms/44x/44x.h -d14a2d234a0757e623217531f624d132 linux-3.0/arch/powerpc/platforms/40x/walnut.c -6fe1dc96b3737c1bb280cbb23445ae83 linux-3.0/arch/powerpc/platforms/40x/virtex.c -954fc6dd65684a5ce21e92d7599b4e31 linux-3.0/arch/powerpc/platforms/40x/ppc40x_simple.c -2c4fc986468d94d6ba8c6fab2e2eed5c linux-3.0/arch/powerpc/platforms/40x/hcu4.c -908852423b93ace1488738561383a2e2 linux-3.0/arch/powerpc/platforms/40x/ep405.c -7377d355db149459fa9c937106af31ca linux-3.0/arch/powerpc/platforms/40x/Makefile -8cd804448ba4a7bb4deb6252c26db0d0 linux-3.0/arch/powerpc/platforms/40x/Kconfig -fe48fc9e66451a8b7055ea6678a9805d linux-3.0/arch/powerpc/oprofile/op_model_rs64.c -0f1b953ea0cb2a70c8dd02254fa17b8b linux-3.0/arch/powerpc/oprofile/op_model_power4.c -037500fe46e4e1a2493c4ec704ffb81d linux-3.0/arch/powerpc/oprofile/op_model_pa6t.c -dea5a53391e2a16053603bec84635a95 linux-3.0/arch/powerpc/oprofile/op_model_fsl_emb.c -7efd2fe299f409cf41006939ef047d24 linux-3.0/arch/powerpc/oprofile/op_model_cell.c -436dbda972ece1bfa06bb684f30d4693 linux-3.0/arch/powerpc/oprofile/op_model_7450.c -d47ebe1c7a554fbeb0e7be7e124559e5 linux-3.0/arch/powerpc/oprofile/common.c -05a751fd84e87afbd7050201e2bd473d linux-3.0/arch/powerpc/oprofile/cell/vma_map.c -90dc8ca7acb39f68ed12ea930ea5bdc5 linux-3.0/arch/powerpc/oprofile/cell/spu_task_sync.c -0787dd2168c7ad53e3d08e6d54dcd50b linux-3.0/arch/powerpc/oprofile/cell/spu_profiler.c -00bf514d85955ca02ddd731fa196e2d7 linux-3.0/arch/powerpc/oprofile/cell/pr_util.h -515accee561c101566b05bd4357884eb linux-3.0/arch/powerpc/oprofile/backtrace.c -a706010772133cf6c5c956884791d052 linux-3.0/arch/powerpc/oprofile/Makefile -36809883900138f499ae60a024fa7747 linux-3.0/arch/powerpc/mm/tlb_nohash_low.S -a9c1e9384eccde2904653e37bcd04232 linux-3.0/arch/powerpc/mm/tlb_nohash.c -f9831bbc67da0d2094be5b9a109dac96 linux-3.0/arch/powerpc/mm/tlb_low_64e.S -da4f9a1d1d79e15f1f8a952aaf50b481 linux-3.0/arch/powerpc/mm/tlb_hash64.c -b950e7779e18b9a943f028984efa3439 linux-3.0/arch/powerpc/mm/tlb_hash32.c -71abdf6fcfcc352d3faee5e08b214a7e linux-3.0/arch/powerpc/mm/subpage-prot.c -454ea9c6480a0ce1548a47ba7776a3a7 linux-3.0/arch/powerpc/mm/stab.c -b78314dbe5de82f6fb1ff31f29ce3d2c linux-3.0/arch/powerpc/mm/slice.c -0ef9dc25c28105dc038baa9bdd0cf6e6 linux-3.0/arch/powerpc/mm/slb_low.S -c12eb23dabf8ccd0d6ea17456705f91a linux-3.0/arch/powerpc/mm/slb.c -cb7f120261536cb5e72e0e85f75ba378 linux-3.0/arch/powerpc/mm/ppc_mmu_32.c -eea1db1e652a21724ca2370abec9695e linux-3.0/arch/powerpc/mm/pgtable_64.c -7846763fb3cd26e7facfd7d1e0e2922a linux-3.0/arch/powerpc/mm/pgtable_32.c -34507e8ffe4db80a69111faea12348bf linux-3.0/arch/powerpc/mm/pgtable.c -340e744b55efd7428c5d408635e28ca2 linux-3.0/arch/powerpc/mm/numa.c -2af8042cf285dedf71ede6f76b7bbf9a linux-3.0/arch/powerpc/mm/mmu_decl.h -bce289db82a73d3ac660c50cd3624c90 linux-3.0/arch/powerpc/mm/mmu_context_nohash.c -1fcdc274b676a04523ffdd87a2ab0d70 linux-3.0/arch/powerpc/mm/mmu_context_hash64.c -205173dbf7d89be170d5d8fd7fd7c275 linux-3.0/arch/powerpc/mm/mmu_context_hash32.c -8f847a073c1bb3fdf088fc2c523da157 linux-3.0/arch/powerpc/mm/mmap_64.c -d34d5948f31e75fe754a5b8f29b7c019 linux-3.0/arch/powerpc/mm/mem.c -5b99c14ef1ec55d463a7151f2d23b938 linux-3.0/arch/powerpc/mm/init_64.c -03e591ee0b4e4ec805eebab77c447463 linux-3.0/arch/powerpc/mm/init_32.c -0b80098e682e2f29737c5a8953e9bbf3 linux-3.0/arch/powerpc/mm/hugetlbpage.c -5969890951fe443d95e2524bc2e8bcfa linux-3.0/arch/powerpc/mm/hugetlbpage-hash64.c -fff26e9ae5959b1e987ffd123fe43f64 linux-3.0/arch/powerpc/mm/highmem.c -b62e67c19601ef2634aa58f974aab6b4 linux-3.0/arch/powerpc/mm/hash_utils_64.c -be3d084a721b22f14493ae9cb5b392a2 linux-3.0/arch/powerpc/mm/hash_native_64.c -4dacfa96d341479038c473e7e4c4b8e0 linux-3.0/arch/powerpc/mm/hash_low_64.S -a28c09da44134ef5e305fb18c1af3919 linux-3.0/arch/powerpc/mm/hash_low_32.S -dff46973fd9afe07d4c745a31a225d0d linux-3.0/arch/powerpc/mm/gup.c -2cbeb1c17b0f8d1a605515c173a4a5fc linux-3.0/arch/powerpc/mm/fsl_booke_mmu.c -da714bf47626dc15c313489c59579da7 linux-3.0/arch/powerpc/mm/fault.c -a42097646187a156c47ef352a029001c linux-3.0/arch/powerpc/mm/dma-noncoherent.c -98f1334dc857c2408f7dca83489b929e linux-3.0/arch/powerpc/mm/Makefile -1351f874fd47d461417350ec5368296f linux-3.0/arch/powerpc/mm/44x_mmu.c -215a49b59fdb492913f3e747c77ccb1e linux-3.0/arch/powerpc/mm/40x_mmu.c -c5afda60e7f8c699c0d293d326a3664e linux-3.0/arch/powerpc/math-emu/udivmodti4.c -5729ad1b6c5db42945b345677b912c08 linux-3.0/arch/powerpc/math-emu/stfs.c -2500209fc3e568aa2096e4f0280585b6 linux-3.0/arch/powerpc/math-emu/stfiwx.c -be77d12b0f67320cac5ad55b2554b88d linux-3.0/arch/powerpc/math-emu/stfd.c -fd05fdd1f2abcb4d92f379ae0a6ea602 linux-3.0/arch/powerpc/math-emu/mtfsfi.c -699dc34fef9bbba071569df9739df7e8 linux-3.0/arch/powerpc/math-emu/mtfsf.c -6841d27090bbe8ca1c1c01717ac0b024 linux-3.0/arch/powerpc/math-emu/mtfsb1.c -a6a55f5dc89f0821c942acc04bce678d linux-3.0/arch/powerpc/math-emu/mtfsb0.c -988cd30d8a957179f78b84ed9260033c linux-3.0/arch/powerpc/math-emu/mffs.c -2dcb2132a99559e3846168e9a1af6ef1 linux-3.0/arch/powerpc/math-emu/mcrfs.c -c3486814d611e76ac5c5cf36edd09707 linux-3.0/arch/powerpc/math-emu/math_efp.c -a52ef75a223e7a21ce77fa0886850c4d linux-3.0/arch/powerpc/math-emu/math.c -8418b3dccf9f57eac539df410dc4a7e6 linux-3.0/arch/powerpc/math-emu/lfs.c -aa3c28314ab4be0319a54f095a5ace25 linux-3.0/arch/powerpc/math-emu/lfd.c -78b1509ec339df36e3413b9779a9052f linux-3.0/arch/powerpc/math-emu/fsubs.c -3ed57ddb4f12c34a0e0bfa21ed76a989 linux-3.0/arch/powerpc/math-emu/fsub.c -ba27c5de5f4b816caeead7e60030d3a0 linux-3.0/arch/powerpc/math-emu/fsqrts.c -ec566f798691f8abb959d72011579af6 linux-3.0/arch/powerpc/math-emu/fsqrt.c -a1d9359b24d0fb1f7367b85baca94486 linux-3.0/arch/powerpc/math-emu/fsel.c -f3346cd5a92164b51e9258edb6df20e5 linux-3.0/arch/powerpc/math-emu/frsqrte.c -e37ec8f69cc99805e27e8c865fb01f53 linux-3.0/arch/powerpc/math-emu/frsp.c -5aef5f1ead2dd6844187526de373fa00 linux-3.0/arch/powerpc/math-emu/fres.c -ee87eb2a01669c535260488a1716df67 linux-3.0/arch/powerpc/math-emu/fnmsubs.c -537f0e0b745a268fc9cf2042accda11b linux-3.0/arch/powerpc/math-emu/fnmsub.c -b40562a79485a304268abb93d77bdc76 linux-3.0/arch/powerpc/math-emu/fnmadds.c -b3197f8145c716f31cff1fb4641d6f28 linux-3.0/arch/powerpc/math-emu/fnmadd.c -1a8ea1bb6ff52405ae898cdc03d21bbd linux-3.0/arch/powerpc/math-emu/fneg.c -5268b1f414cbdbe3493313cc576aaeb4 linux-3.0/arch/powerpc/math-emu/fnabs.c -26bd7c5bd61d66aae03630a89e3caac7 linux-3.0/arch/powerpc/math-emu/fmuls.c -297444aab59ccdeaeb1052bcba2dcd25 linux-3.0/arch/powerpc/math-emu/fmul.c -c2283f302ec1396175b4e99b88c8bfff linux-3.0/arch/powerpc/math-emu/fmsubs.c -1e534848a835535fdb0c1090ef3411f7 linux-3.0/arch/powerpc/math-emu/fmsub.c -5c29b350210451ca9aede8650e0e8f4e linux-3.0/arch/powerpc/math-emu/fmr.c -1cca1702899a4a29040d44179f32c9ed linux-3.0/arch/powerpc/math-emu/fmadds.c -97f9e871c4d2f4981c28ed01893a93e0 linux-3.0/arch/powerpc/math-emu/fmadd.c -2e0d0bca33bf6df9b4d28823b15e2b7b linux-3.0/arch/powerpc/math-emu/fdivs.c -b58837172a6d6980ebb1ae4d24419e89 linux-3.0/arch/powerpc/math-emu/fdiv.c -d07fccdeaf03394daf3d8c111220aae4 linux-3.0/arch/powerpc/math-emu/fctiwz.c -b0239cd275e401bced8d85e58eff25db linux-3.0/arch/powerpc/math-emu/fctiw.c -47fed399a4f3266b6b12a3978b070a55 linux-3.0/arch/powerpc/math-emu/fcmpu.c -5b9cb199153f8ae76267533627725c57 linux-3.0/arch/powerpc/math-emu/fcmpo.c -fcb02cd0354da203e56882dcdfea3fff linux-3.0/arch/powerpc/math-emu/fadds.c -556d858c2c7776a0bd45c446bb944855 linux-3.0/arch/powerpc/math-emu/fadd.c -87392966b30853cb0e41506f6f2f9b9f linux-3.0/arch/powerpc/math-emu/fabs.c -abc25d2c85d31c7a0c96fd1dbe409c4b linux-3.0/arch/powerpc/math-emu/Makefile -53fb89159918040a60dbcc9e22a13bc2 linux-3.0/arch/powerpc/lib/usercopy_64.c -d7b2770fc6ea96f79e9f72bc8a5dd307 linux-3.0/arch/powerpc/lib/string.S -06e117ac5bfd923eb0a12dc09b2b735c linux-3.0/arch/powerpc/lib/sstep.c -7b100f68293d319c100f1e482932f1eb linux-3.0/arch/powerpc/lib/rheap.c -15a56a5bf09f3439dd5b87642f90fe11 linux-3.0/arch/powerpc/lib/memcpy_64.S -541a86b28f99e251a0fb25f941041cee linux-3.0/arch/powerpc/lib/mem_64.S -f688971257c4d25dbc766c8ad3c12613 linux-3.0/arch/powerpc/lib/locks.c -387463ba108227400ba604f4c605d78a linux-3.0/arch/powerpc/lib/ldstfp.S -ec267cf7f5b4c8450111877d679034bf linux-3.0/arch/powerpc/lib/hweight_64.S -8d49c6e618e55e87b7aaca607e69081f linux-3.0/arch/powerpc/lib/feature-fixups.c -c3328307044788ce0c2122ebe2e75203 linux-3.0/arch/powerpc/lib/feature-fixups-test.S -1ab7ec53334b8e898471f061ca169a54 linux-3.0/arch/powerpc/lib/div64.S -54eed59dc5610a75d4c43662c1d4a5fe linux-3.0/arch/powerpc/lib/devres.c -fead1f32bd78721dc89d493c16154cbc linux-3.0/arch/powerpc/lib/crtsavres.S -287fc1ea4fb589f2dd7316390ed26afb linux-3.0/arch/powerpc/lib/copyuser_64.S -5479ddfa94c96f1bdc9826fa6658a102 linux-3.0/arch/powerpc/lib/copypage_64.S -1a00d3d1339e1e5e933cb572c45f88bb linux-3.0/arch/powerpc/lib/copy_32.S -aad669c4e98908af022cb645c787f665 linux-3.0/arch/powerpc/lib/code-patching.c -eb282d71c552c9649264c8f68c70c31e linux-3.0/arch/powerpc/lib/checksum_wrappers_64.c -3b130704a634cc30a06b6cf641ef080f linux-3.0/arch/powerpc/lib/checksum_64.S -5f77d3312226c315de080959758ad5b4 linux-3.0/arch/powerpc/lib/checksum_32.S -cc449bd35b0676edac61702988f8391f linux-3.0/arch/powerpc/lib/alloc.c -62c8621f57dbdf7469c02e2403a0d3f8 linux-3.0/arch/powerpc/lib/Makefile -6f58fd5eecc35da6d0387033b6a6c019 linux-3.0/arch/powerpc/kvm/trace.h -60904ee98cede5ea601f9fc1b772adb2 linux-3.0/arch/powerpc/kvm/timing.h -11d9e9dd1062d20e0b2de97fff62456b linux-3.0/arch/powerpc/kvm/timing.c -a4be107601ec1b6f69bf765b52c744d1 linux-3.0/arch/powerpc/kvm/powerpc.c -4d68b0d20e30adb7ff9a98895f2ad928 linux-3.0/arch/powerpc/kvm/fpu.S -fbebba15b805b0664efc3107552a0990 linux-3.0/arch/powerpc/kvm/emulate.c -96ea40be5a5f92bb5cb13aca6438af94 linux-3.0/arch/powerpc/kvm/e500_tlb.h -5d73d14c5201e77fa62675b9de297390 linux-3.0/arch/powerpc/kvm/e500_tlb.c -a8909b9646426d75cf1e7a89f6dd8e0e linux-3.0/arch/powerpc/kvm/e500_emulate.c -fa5ee037887804a2e3ff33a4d6d3222c linux-3.0/arch/powerpc/kvm/e500.c -2b9da8fa1db796934e4db7c286898f25 linux-3.0/arch/powerpc/kvm/booke_interrupts.S -c01b30f16aad5b49b088aa91c1534e26 linux-3.0/arch/powerpc/kvm/booke_emulate.c -119a645dac8acefff963150b896f8653 linux-3.0/arch/powerpc/kvm/booke.h -4516bd3b1ed20fcb3d4530a1bbe88fd7 linux-3.0/arch/powerpc/kvm/booke.c -0ddb851d31da0f3e19d032993af0be07 linux-3.0/arch/powerpc/kvm/book3s_segment.S -8c05f3142d9b9b9970950d1f5cf132e1 linux-3.0/arch/powerpc/kvm/book3s_rmhandlers.S -3c3c6cdd6b8e593824f65c2332cb92d7 linux-3.0/arch/powerpc/kvm/book3s_paired_singles.c -e970e1a87b4276e7622769e9f7192264 linux-3.0/arch/powerpc/kvm/book3s_mmu_hpte.c -2436e11e7d9e680faa429dbf27f93ddc linux-3.0/arch/powerpc/kvm/book3s_interrupts.S -285aa3597b54c7b076f232a0770528ca linux-3.0/arch/powerpc/kvm/book3s_exports.c -eb2129b71b2c298795175697dfd2e402 linux-3.0/arch/powerpc/kvm/book3s_emulate.c -e12bcbd6ddb36182951edd62c02f0361 linux-3.0/arch/powerpc/kvm/book3s_64_slb.S -71c2c0518655dd72a252afdeb865da15 linux-3.0/arch/powerpc/kvm/book3s_64_mmu_host.c -aae2722d6a80998fa9e506472a1eaccb linux-3.0/arch/powerpc/kvm/book3s_64_mmu.c -2dec91c4f99041f8615d8366a102951f linux-3.0/arch/powerpc/kvm/book3s_32_sr.S -00dbf23f5c305b6ce898ad61c3ac8c26 linux-3.0/arch/powerpc/kvm/book3s_32_mmu_host.c -9a0ba2f33fb1d43fbebc3d217ce37ace linux-3.0/arch/powerpc/kvm/book3s_32_mmu.c -ad3dd7e77ae6e4cbf4722e6f86376134 linux-3.0/arch/powerpc/kvm/book3s.c -6c46bd03f27b5e182fb6117890a54733 linux-3.0/arch/powerpc/kvm/Makefile -6b0f0905ade40c4f6eb621747b833fe9 linux-3.0/arch/powerpc/kvm/Kconfig -171233e984bd2ff99188fedfddfad7fd linux-3.0/arch/powerpc/kvm/44x_tlb.h -46c440d0ae1e859817e62737eeddef56 linux-3.0/arch/powerpc/kvm/44x_tlb.c -9d162378d6e737232f6f74234639c440 linux-3.0/arch/powerpc/kvm/44x_emulate.c -325d7916591d7dc316c1fd213f402e76 linux-3.0/arch/powerpc/kvm/44x.c -34728e9b8d6f16947df6f911dd09fb2a linux-3.0/arch/powerpc/kernel/vmlinux.lds.S -e0e3ffe2b13cc0c7ea4592fad5b5c3ff linux-3.0/arch/powerpc/kernel/vio.c -78656464cf1a8cdcdf54ae5f20bd4886 linux-3.0/arch/powerpc/kernel/vector.S -b0aaa468ee9aaaf40618e41fb70f9c1a linux-3.0/arch/powerpc/kernel/vecemu.c -3e7832936dde5cfb4b104c7ee0a64b05 linux-3.0/arch/powerpc/kernel/vdso64/vdso64_wrapper.S -47a8e5c296def40cdd85c14f2854e133 linux-3.0/arch/powerpc/kernel/vdso64/vdso64.lds.S -4e8d2ebba3aefb84034f4d62c3fa52e1 linux-3.0/arch/powerpc/kernel/vdso64/sigtramp.S -83ca3396cf6f71999e9b31720541661f linux-3.0/arch/powerpc/kernel/vdso64/note.S -b5064996dfadcac526c41967e921ab53 linux-3.0/arch/powerpc/kernel/vdso64/gettimeofday.S -89a301893714a0c9aaf9163c50b26117 linux-3.0/arch/powerpc/kernel/vdso64/datapage.S -b4e5a8ac8d4c1042a179a13a507aefb9 linux-3.0/arch/powerpc/kernel/vdso64/cacheflush.S -8d2dbad678536bd863b1604138539fa3 linux-3.0/arch/powerpc/kernel/vdso64/Makefile -93c0118afe4d7d4f80d2fded79dd9176 linux-3.0/arch/powerpc/kernel/vdso64/.gitignore -eed939a3bf6edfe29af21458b21e144e linux-3.0/arch/powerpc/kernel/vdso32/vdso32_wrapper.S -f967c72706fce5abf3d08d9e0a7b864f linux-3.0/arch/powerpc/kernel/vdso32/vdso32.lds.S -026c8bc2147068de628148b37c3e93ae linux-3.0/arch/powerpc/kernel/vdso32/sigtramp.S -5ad65ddbff077efdecd76c02396dcc17 linux-3.0/arch/powerpc/kernel/vdso32/note.S -d429c847a8646bc8626303efd9efb58f linux-3.0/arch/powerpc/kernel/vdso32/gettimeofday.S -6450c673bd7d7617e0ec0cb20417916f linux-3.0/arch/powerpc/kernel/vdso32/datapage.S -b92bdb2212a776351f0820089703bb78 linux-3.0/arch/powerpc/kernel/vdso32/cacheflush.S -f87d11157fe8cee4f358d7862fe60b35 linux-3.0/arch/powerpc/kernel/vdso32/Makefile -31e0df3935fcce9f0545503343e24059 linux-3.0/arch/powerpc/kernel/vdso32/.gitignore -3fddc602e07ed7174e6aa3c4367d343c linux-3.0/arch/powerpc/kernel/vdso.c -4ce0199df5f066f856f70b5e8ccdf9bd linux-3.0/arch/powerpc/kernel/udbg_16550.c -f1907ef1061f4f2c459a056fa38c2373 linux-3.0/arch/powerpc/kernel/udbg.c -c0ab85363981f0444ab18ebebd50cbe3 linux-3.0/arch/powerpc/kernel/traps.c -df8ffcf70233d45936d6b1bbb10aad6e linux-3.0/arch/powerpc/kernel/time.c -34fdf6813e60c10add91692143abcf0d linux-3.0/arch/powerpc/kernel/tau_6xx.c -4e27e9f9c611b5488331a7f7bcdf885a linux-3.0/arch/powerpc/kernel/systbl_chk.sh -fffcf83fc739c875326bc08e2d90a019 linux-3.0/arch/powerpc/kernel/systbl_chk.c -3b05947745ee45e78bbf1b52717e2626 linux-3.0/arch/powerpc/kernel/systbl.S -02c63621f154c05d50a5176868a3ed94 linux-3.0/arch/powerpc/kernel/sysfs.c -22defa62328967ad2075d8be49ed3076 linux-3.0/arch/powerpc/kernel/syscalls.c -9496d85e73efec2e91e9c20b1c4ad56c linux-3.0/arch/powerpc/kernel/sys_ppc32.c -3d4a598d25a4eca625b44bce6f4ea9b2 linux-3.0/arch/powerpc/kernel/swsusp_booke.S -a86c034a778107443bf9db2d58772b67 linux-3.0/arch/powerpc/kernel/swsusp_asm64.S -c24c5b87fa850a9446f33fc9624892c8 linux-3.0/arch/powerpc/kernel/swsusp_64.c -2fd710c2fab7a806daa2c16f4f804bf7 linux-3.0/arch/powerpc/kernel/swsusp_32.S -3550c6e54eecb45e3fe3e2476d3142df linux-3.0/arch/powerpc/kernel/swsusp.c -3576fc574198bad4efd7c941b6327481 linux-3.0/arch/powerpc/kernel/suspend.c -a7e5366f11d004b8339b93aad47d4318 linux-3.0/arch/powerpc/kernel/stacktrace.c -75d9a69380104121f3627e59644ca30b linux-3.0/arch/powerpc/kernel/softemu8xx.c -ab598c86791504542ee8bdd3c727983a linux-3.0/arch/powerpc/kernel/smp.c -6d5dc922073b992454ac7a7bce7da8fb linux-3.0/arch/powerpc/kernel/smp-tbsync.c -f2de9a8fc8f5a6a6e00342d7f0c9d7e2 linux-3.0/arch/powerpc/kernel/signal_64.c -bfaf478acc701fe501860f9f73950cf9 linux-3.0/arch/powerpc/kernel/signal_32.c -4290178b8f07ed9f148ec528be67aeef linux-3.0/arch/powerpc/kernel/signal.h -88df470895fbaae1fbba84b6308ae179 linux-3.0/arch/powerpc/kernel/signal.c -18f8a73f89161087aea8bacc3e77a4b2 linux-3.0/arch/powerpc/kernel/setup_64.c -5ca76bbb4ad208ae9769d47e73478f5d linux-3.0/arch/powerpc/kernel/setup_32.c -cea33e86cc9251610b65ed5d068f5c30 linux-3.0/arch/powerpc/kernel/setup.h -4a7a2e84c900cca2a6034015dd96aecb linux-3.0/arch/powerpc/kernel/setup-common.c -2238b4f3fa998ae01a6e657840324597 linux-3.0/arch/powerpc/kernel/rtasd.c -1b41c0b4ace69ba0ed614b3f1023ec7e linux-3.0/arch/powerpc/kernel/rtas_pci.c -4ef3b00897b03cc0cae57a3ddf65c382 linux-3.0/arch/powerpc/kernel/rtas_flash.c -4133d103e5cc1dd098d265b312f1eb13 linux-3.0/arch/powerpc/kernel/rtas.c -2778f2a685f88d8d631821c887441222 linux-3.0/arch/powerpc/kernel/rtas-rtc.c -8d87a8db9d63cd60fb8e4b82160cc76d linux-3.0/arch/powerpc/kernel/rtas-proc.c -7d735563fadaaa9fe76ba56764a0d4c2 linux-3.0/arch/powerpc/kernel/reloc_64.S -4affbb927ca4b38e274009b8fd1c23e0 linux-3.0/arch/powerpc/kernel/ptrace32.c -465496be50e753276737140b68af3aa3 linux-3.0/arch/powerpc/kernel/ptrace.c -ca163173d9ec151a26c06dd78f732850 linux-3.0/arch/powerpc/kernel/prom_parse.c -fc21bdbea8a9b73952bafb7a18ee9d6d linux-3.0/arch/powerpc/kernel/prom_init_check.sh -089cc26af789c1f4482e891c75801144 linux-3.0/arch/powerpc/kernel/prom_init.c -20bdd38f2afeaab53e3d3e1861750ec7 linux-3.0/arch/powerpc/kernel/prom.c -c683dd793bd94dcdf0b4d8fe4b56d802 linux-3.0/arch/powerpc/kernel/process.c -3f30745094b493ce5bc428b40a4e80bd linux-3.0/arch/powerpc/kernel/proc_powerpc.c -42357da9a8883e13b90c62042d6b0783 linux-3.0/arch/powerpc/kernel/ppc_save_regs.S -854ebf30e205da0cb2ade6a49478a512 linux-3.0/arch/powerpc/kernel/ppc_ksyms.c -5286ccbbe37437b8f3ba07c2f0c2fdfb linux-3.0/arch/powerpc/kernel/ppc970-pmu.c -914ee541d68f19c8551a97c51d68b66c linux-3.0/arch/powerpc/kernel/ppc32.h -e63e5b5ce7e420bb53826c5ef5548c28 linux-3.0/arch/powerpc/kernel/power7-pmu.c -50822ba5071ccd8ac6d995dd5e62eaa4 linux-3.0/arch/powerpc/kernel/power6-pmu.c -c7364bd5528dcce35e8eef4a5f5054eb linux-3.0/arch/powerpc/kernel/power5-pmu.c -dc3b9f545c30ef3a890cc137a42dbbbe linux-3.0/arch/powerpc/kernel/power5+-pmu.c -bcbd56dc75bb183fa1c9b22aeba77c85 linux-3.0/arch/powerpc/kernel/power4-pmu.c -5ae686f742098bb7171b58e04685bff3 linux-3.0/arch/powerpc/kernel/pmc.c -8435706021b85e432b7ea413d7043ad4 linux-3.0/arch/powerpc/kernel/perf_event_fsl_emb.c -6b6be22ae9dca7fe367889ca8e1253df linux-3.0/arch/powerpc/kernel/perf_event.c -bbf8065eebcc657f6b3222a94a0dee59 linux-3.0/arch/powerpc/kernel/perf_callchain.c -7b97807f3d707f58701afffe84ad902f linux-3.0/arch/powerpc/kernel/pci_of_scan.c -f0289964da9aa318e96a209741d746ed linux-3.0/arch/powerpc/kernel/pci_dn.c -00393ba92def3639d051c5af9cd8a410 linux-3.0/arch/powerpc/kernel/pci_64.c -105440503db20635df344e58832ccfac linux-3.0/arch/powerpc/kernel/pci_32.c -af3afc7661ddb1d6200314fbc3416db0 linux-3.0/arch/powerpc/kernel/pci-common.c -23bb32e4fe25a522c383eee1077d9250 linux-3.0/arch/powerpc/kernel/paca.c -5a718b9fb6a1d5f1a49d1460e224ea6d linux-3.0/arch/powerpc/kernel/of_platform.c -344724d42238cd7b517a707b61cbbd3e linux-3.0/arch/powerpc/kernel/nvram_64.c -01c7d22c2be162eb096be4c5f48b8726 linux-3.0/arch/powerpc/kernel/msi.c -be841b0c7b64731a58f8fc8c9ed210b4 linux-3.0/arch/powerpc/kernel/mpc7450-pmu.c -e25adbb2c9f45cc5c7dfdb599199113f linux-3.0/arch/powerpc/kernel/module_64.c -ffbd2cd1ad473007f00aaa5985ab687f linux-3.0/arch/powerpc/kernel/module_32.c -cd9150802567ca0771005a8f18a9bd8a linux-3.0/arch/powerpc/kernel/module.c -355dead80845ed409eacdb3d1b6ad9ec linux-3.0/arch/powerpc/kernel/misc_64.S -3238117490eb6c68588005ee898c2b44 linux-3.0/arch/powerpc/kernel/misc_32.S -74d75a2ca41457fcf373c3de1dcd47fa linux-3.0/arch/powerpc/kernel/misc.S -d300254408220e1ce50d1019b8d075c6 linux-3.0/arch/powerpc/kernel/machine_kexec_64.c -b3fd9de78fda3ef610126f7ecf892ffa linux-3.0/arch/powerpc/kernel/machine_kexec_32.c -011325d1b598c5cb87f77ed98d69ee69 linux-3.0/arch/powerpc/kernel/machine_kexec.c -080e70946507b594f0edccea3b0929ee linux-3.0/arch/powerpc/kernel/lparcfg.c -91af2a9a738e5c6e5fcd56f883af1442 linux-3.0/arch/powerpc/kernel/legacy_serial.c -b4bf1334ec6a79c8615d887e19000df6 linux-3.0/arch/powerpc/kernel/l2cr_6xx.S -5ab9519e391e76ecdb17204bfa6d28f8 linux-3.0/arch/powerpc/kernel/kvm_emul.S -1a85f8850f3b92bb5d57ed879008767a linux-3.0/arch/powerpc/kernel/kvm.c -6241cca14bdae51f9cee9930129f5c15 linux-3.0/arch/powerpc/kernel/kprobes.c -91852869c8e090235797a484544dbb52 linux-3.0/arch/powerpc/kernel/kgdb.c -622acca934d66b28de122b554e681cee linux-3.0/arch/powerpc/kernel/isa-bridge.c -5cc5814e8b6e81bf2665b7391a5ebc05 linux-3.0/arch/powerpc/kernel/irq.c -01240b34a29b85abc322b251f5adc923 linux-3.0/arch/powerpc/kernel/iommu.c -97fe2de837532e3e15038d3e0cbbe4b8 linux-3.0/arch/powerpc/kernel/iomap.c -1fca3699023b5bc90138119e72172f60 linux-3.0/arch/powerpc/kernel/io.c -21e533fbebe2a431687f6e4caa52ca99 linux-3.0/arch/powerpc/kernel/io-workarounds.c -ce2bb283da0748930955cdbf45039531 linux-3.0/arch/powerpc/kernel/init_task.c -0724f9d39f8585c704b2bc61a298506e linux-3.0/arch/powerpc/kernel/idle_power7.S -813e27882c4ed730b74722c5c785bc18 linux-3.0/arch/powerpc/kernel/idle_power4.S -42c3aabe8be39041f62b30ae723cf352 linux-3.0/arch/powerpc/kernel/idle_e500.S -8d656992797751e7ddcdb35a6b9b8f37 linux-3.0/arch/powerpc/kernel/idle_book3e.S -22414cad5b5ff82dfd309e92d7129422 linux-3.0/arch/powerpc/kernel/idle_6xx.S -56977a7b70f2964d0d8bed55b1222c50 linux-3.0/arch/powerpc/kernel/idle.c -a11800e35fcbb1cd29951faddb8dea5e linux-3.0/arch/powerpc/kernel/ibmebus.c -e150d8d4164f88a0c2a3802bfedc7957 linux-3.0/arch/powerpc/kernel/hw_breakpoint.c -daa254e80a46fd125658190fe3bc3347 linux-3.0/arch/powerpc/kernel/head_fsl_booke.S -7eaa79f2df868e0ab0b5b7c594d379e4 linux-3.0/arch/powerpc/kernel/head_booke.h -662dbe095b81e58f8f9af56a0f1b0545 linux-3.0/arch/powerpc/kernel/head_8xx.S -d5c3d16b2c06e1a59c913c22ce6a20c5 linux-3.0/arch/powerpc/kernel/head_64.S -108c2f3c401b5c9cbaa1cfa2d559926b linux-3.0/arch/powerpc/kernel/head_44x.S -5ebaacaa3497aa189fd6769ffb689e87 linux-3.0/arch/powerpc/kernel/head_40x.S -29ee5c92768afb2f98f8d2c7a2ac44a6 linux-3.0/arch/powerpc/kernel/head_32.S -24a2578eb106f1095e9fb096d8c869c9 linux-3.0/arch/powerpc/kernel/ftrace.c -5c922913629bc20facf8661091f47183 linux-3.0/arch/powerpc/kernel/fsl_booke_entry_mapping.S -b11a14699dbc400c12b48cff60459791 linux-3.0/arch/powerpc/kernel/fpu.S -0bbfaa5deb498c8fe2176fb88e768ff8 linux-3.0/arch/powerpc/kernel/firmware.c -127e3c179dfc6b6fb7c8e21b2a9246fa linux-3.0/arch/powerpc/kernel/exceptions-64s.S -d10246e1c812b5298ee9c407471d98a3 linux-3.0/arch/powerpc/kernel/exceptions-64e.S -dca9652e5a6bd8a746965de84d72aef7 linux-3.0/arch/powerpc/kernel/entry_64.S -f05f197c93390c5415bc963ef409bece linux-3.0/arch/powerpc/kernel/entry_32.S -196ccc8815bcbde295b9781b2c049d97 linux-3.0/arch/powerpc/kernel/e500-pmu.c -bd444088b21bfd3f842a9de5dc92c184 linux-3.0/arch/powerpc/kernel/dma.c -c8b9d005217d92d02b1912ec941c4e87 linux-3.0/arch/powerpc/kernel/dma-swiotlb.c -4cf721c4cd1147a465d9777f26af3903 linux-3.0/arch/powerpc/kernel/dma-iommu.c -e54edf4755b6653ae2f0554ee284e7ef linux-3.0/arch/powerpc/kernel/dbell.c -55b7cfc557b00215742256c56f19bc6c linux-3.0/arch/powerpc/kernel/crash_dump.c -7ed0f6398c9c1cfb8771cdd29f5165fb linux-3.0/arch/powerpc/kernel/crash.c -c7a55bf3553d19a7113e32f220b70feb linux-3.0/arch/powerpc/kernel/cputable.c -bc32ea3afefd9f525313aca54f9ba6c2 linux-3.0/arch/powerpc/kernel/cpu_setup_ppc970.S -e76e4efabaa5c61a38398382103cc261 linux-3.0/arch/powerpc/kernel/cpu_setup_power7.S -ec98862f7e88e8ab0308411196bfb6a0 linux-3.0/arch/powerpc/kernel/cpu_setup_pa6t.S -aba7388c539f719c753e5a363b9ac052 linux-3.0/arch/powerpc/kernel/cpu_setup_fsl_booke.S -7d77c138fd30f110f8463dbffc3d27d8 linux-3.0/arch/powerpc/kernel/cpu_setup_a2.S -4222ad017e68a3a054fa2a6fd947b4e4 linux-3.0/arch/powerpc/kernel/cpu_setup_6xx.S -a1f64681fd2e832122723778ae5d4fb8 linux-3.0/arch/powerpc/kernel/cpu_setup_44x.S -7d896ac949316f95c65285f3616d1c2d linux-3.0/arch/powerpc/kernel/compat_audit.c -85ebfcc647c14bcc26bb07375ffbe752 linux-3.0/arch/powerpc/kernel/clock.c -47ca3e8b8ef77582f9ebcf9727caac13 linux-3.0/arch/powerpc/kernel/cacheinfo.h -6e79057d3bc8e70f65c168b5012bac50 linux-3.0/arch/powerpc/kernel/cacheinfo.c -1c00550806c79e4202dd1bfd0c8f6cda linux-3.0/arch/powerpc/kernel/btext.c -88cdc18c3d0875d7e897ad2e7d92e1e9 linux-3.0/arch/powerpc/kernel/audit.c -e62b2663ad7c96c707d19667f5ea69b3 linux-3.0/arch/powerpc/kernel/asm-offsets.c -f7d710650632f1ddd5408159db8844c7 linux-3.0/arch/powerpc/kernel/align.c -3a461aa1d5346c867e704bd4ccdd9e1b linux-3.0/arch/powerpc/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/powerpc/kernel/.gitignore -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/powerpc/include/asm/xor.h -7e04a5608b299165916951de6b863626 linux-3.0/arch/powerpc/include/asm/xmon.h -ec15a897bb3902320dee0a42ec1b56e7 linux-3.0/arch/powerpc/include/asm/xilinx_pci.h -9e594ce042a0c54c40970d3e57cf67df linux-3.0/arch/powerpc/include/asm/xilinx_intc.h -6edd771a8a0c06c62812bb85ced8c8c6 linux-3.0/arch/powerpc/include/asm/xics.h -1e8db4951137c187f4d30c2b6651d30b linux-3.0/arch/powerpc/include/asm/wsp.h -718b731efc0f9ea80b90d0a382c54ec4 linux-3.0/arch/powerpc/include/asm/vio.h -c76a4310f04e928988d7191421fbed66 linux-3.0/arch/powerpc/include/asm/vga.h -51da431c5709774781be80632423e5b4 linux-3.0/arch/powerpc/include/asm/vdso_datapage.h -1077423c1ee29c8c140278681087e55f linux-3.0/arch/powerpc/include/asm/vdso.h -040ed2006beecc75e62a96d3d009b068 linux-3.0/arch/powerpc/include/asm/user.h -f7de0579e708c644ff42fe0ab157b533 linux-3.0/arch/powerpc/include/asm/unistd.h -13fea35e7bafd2b9efb82c73a307f659 linux-3.0/arch/powerpc/include/asm/uninorth.h -bc0d508fe24c11355a544bdd9edc1ee6 linux-3.0/arch/powerpc/include/asm/unaligned.h -33abf6b6c62b453a09e27bde33511036 linux-3.0/arch/powerpc/include/asm/uic.h -2eb75c342a2e6870d837ca2f76b01715 linux-3.0/arch/powerpc/include/asm/udbg.h -6f4e2fc0a0099c56f33da31ed18d6df1 linux-3.0/arch/powerpc/include/asm/ucontext.h -52492a8c8f1d348d5d4cabd12b629032 linux-3.0/arch/powerpc/include/asm/ucc_slow.h -4dbc647ef83fc63920367e0d190df9a2 linux-3.0/arch/powerpc/include/asm/ucc_fast.h -fd31a1979e27f332a488945371f009ad linux-3.0/arch/powerpc/include/asm/ucc.h -61bbb020e4d31c27633885d8a7262151 linux-3.0/arch/powerpc/include/asm/uaccess.h -0c9fba7b5c69670029df374e9926b4c1 linux-3.0/arch/powerpc/include/asm/types.h -9f96e1b9b9c49eb2789c657b0edc1f4f linux-3.0/arch/powerpc/include/asm/tsi108_pci.h -cfedd8fbc638de80785a0c67dc334371 linux-3.0/arch/powerpc/include/asm/tsi108_irq.h -2a0e9a01a36c3058b6e8ae8104a7b74e linux-3.0/arch/powerpc/include/asm/tsi108.h -d8f08d14cc584ffdaf7ba2a7feabfcec linux-3.0/arch/powerpc/include/asm/trace.h -9439eeeaf157017ede87f8cd98ca44d0 linux-3.0/arch/powerpc/include/asm/topology.h -10d0e5003c38ef291d8e94e99c939669 linux-3.0/arch/powerpc/include/asm/tlbflush.h -fc5eadd801309a2860aa05395b3b43cd linux-3.0/arch/powerpc/include/asm/tlb.h -24f7dd2dbaff4281556809a05f1ec9d0 linux-3.0/arch/powerpc/include/asm/timex.h -05e5fdb60333c07ab52ca0ad09743c90 linux-3.0/arch/powerpc/include/asm/time.h -6a4f68161f87950a5c92616d456a372a linux-3.0/arch/powerpc/include/asm/thread_info.h -decd51f9c68e980bd977448277de04ce linux-3.0/arch/powerpc/include/asm/termios.h -3b39c99caa897936509044bff33b3b15 linux-3.0/arch/powerpc/include/asm/termbits.h -1226e322b33c79c38ae7b74ef881af98 linux-3.0/arch/powerpc/include/asm/tce.h -59370a7084c9f823765748713719ba31 linux-3.0/arch/powerpc/include/asm/system.h -71bbbe915ef53798fe9e331e431a3026 linux-3.0/arch/powerpc/include/asm/systbl.h -5f466f94141200447bf4867789dec503 linux-3.0/arch/powerpc/include/asm/syscalls.h -f76a7eab8357426b099e3d2bf5f24bb6 linux-3.0/arch/powerpc/include/asm/syscall.h -8bfc1248ebac67048485418e54275232 linux-3.0/arch/powerpc/include/asm/synch.h -03eccb826f380d95d5c53bf78b138744 linux-3.0/arch/powerpc/include/asm/swiotlb.h -fd01ac84cf1dc01c9d76be38b0a7a315 linux-3.0/arch/powerpc/include/asm/swab.h -482ddf06b8d0cff32df26ce8a8e30e1f linux-3.0/arch/powerpc/include/asm/string.h -7c0937139fd692851c5beed0e15b9b5c linux-3.0/arch/powerpc/include/asm/statfs.h -c530b3125af71b59a7b86b8e16aae51d linux-3.0/arch/powerpc/include/asm/stat.h -a4f8ac5d8c41d40e7f757350dbf5fc45 linux-3.0/arch/powerpc/include/asm/sstep.h -8263d84146a98ad83f681b455b8a1c68 linux-3.0/arch/powerpc/include/asm/spu_priv1.h -1deb8470579ab0d8ef6ad696c713dff4 linux-3.0/arch/powerpc/include/asm/spu_info.h -a7ad27b48eb0a211a8c8ca67581484c6 linux-3.0/arch/powerpc/include/asm/spu_csa.h -acce0df9182314afd8cdb2a0a97ff961 linux-3.0/arch/powerpc/include/asm/spu.h -e66612a67784933ea37dc6c36b1aea84 linux-3.0/arch/powerpc/include/asm/spinlock_types.h -dad61b291238da0709bd3fbee40a38f4 linux-3.0/arch/powerpc/include/asm/spinlock.h -5a05fc9353157e935f4f9fa2f5eecd67 linux-3.0/arch/powerpc/include/asm/sparsemem.h -d4b6a3fd9c57402c6893f8f30f5a1f8b linux-3.0/arch/powerpc/include/asm/sockios.h -be767af3b5e29a91455495fa35d43cfe linux-3.0/arch/powerpc/include/asm/socket.h -df784ba531f7a7ce4e212f77afb9492c linux-3.0/arch/powerpc/include/asm/smu.h -5450589981f0aee14f244e44d8426390 linux-3.0/arch/powerpc/include/asm/smp.h -10d4750a379ccc75d796994dc827bef4 linux-3.0/arch/powerpc/include/asm/signal.h -950267ec0a4c8e0eb9ee27854b0ed0d3 linux-3.0/arch/powerpc/include/asm/siginfo.h -44f930bf0f05435a582ea561efeffd6b linux-3.0/arch/powerpc/include/asm/sigcontext.h -385f199d67fa84075042533fdcb31f19 linux-3.0/arch/powerpc/include/asm/shmparam.h -395bb9e479a912f19b7cfa347a097392 linux-3.0/arch/powerpc/include/asm/shmbuf.h -63efe8c5ab4bb2f0843457f7ee234762 linux-3.0/arch/powerpc/include/asm/sfp-machine.h -e9cab58ad2f7244fbf92e1f865849e61 linux-3.0/arch/powerpc/include/asm/setup.h -426b784e4844e34f9c2488833d95bb82 linux-3.0/arch/powerpc/include/asm/setjmp.h -bf196768ca57dc153d465dbc05084ea4 linux-3.0/arch/powerpc/include/asm/serial.h -721b265e6425328880466fd5427dfe00 linux-3.0/arch/powerpc/include/asm/sembuf.h -e8796f536da09e07d25416a81a8ffe54 linux-3.0/arch/powerpc/include/asm/sections.h -8cc91ea38820cbcd48838f74128f3878 linux-3.0/arch/powerpc/include/asm/seccomp.h -9cf436159ead7051265502ba63f030be linux-3.0/arch/powerpc/include/asm/scom.h -6a40392201389f963d4cdfaddb180f7d linux-3.0/arch/powerpc/include/asm/scatterlist.h -1765b4a861d85e77842c4428dfb4418c linux-3.0/arch/powerpc/include/asm/rwsem.h -246ad2c268ca145ddfc383e7bb671763 linux-3.0/arch/powerpc/include/asm/rtc.h -2b24158360a07b71a947b29c1f81e89a linux-3.0/arch/powerpc/include/asm/rtas.h -7dc04fbffeeebb61f3e912f04c76695f linux-3.0/arch/powerpc/include/asm/rio.h -03f743ee4996d02bc6c9ef310464e881 linux-3.0/arch/powerpc/include/asm/rheap.h -36eb2a82010cc2b8194bde001a28c7a5 linux-3.0/arch/powerpc/include/asm/resource.h -8f5478194bd3d4a5ea5a8d2c3014bb3e linux-3.0/arch/powerpc/include/asm/reg_fsl_emb.h -f66f3332c0e95c5a75b1fdb825f6039e linux-3.0/arch/powerpc/include/asm/reg_booke.h -64ff696979484785db51556bb9aa5fb0 linux-3.0/arch/powerpc/include/asm/reg_a2.h -548ec18388154858603939e805d3f18a linux-3.0/arch/powerpc/include/asm/reg_8xx.h -03c5ec7627e1ee5e7aba6b3104de28c5 linux-3.0/arch/powerpc/include/asm/reg.h -646a723fc59c94c618d79fbeedfb8dd1 linux-3.0/arch/powerpc/include/asm/qe_ic.h -e519d36ec5c20014aed890033a946ce3 linux-3.0/arch/powerpc/include/asm/qe.h -604fee0c0ae4881fddf4454077e15ef3 linux-3.0/arch/powerpc/include/asm/ptrace.h -ccfa1d32957ab61f229178cf4869a2f7 linux-3.0/arch/powerpc/include/asm/pte-hash64.h -5f3c9d27b2a78c07465d4112224ab725 linux-3.0/arch/powerpc/include/asm/pte-hash64-64k.h -bc86c812472e3e941d134b125fce643b linux-3.0/arch/powerpc/include/asm/pte-hash64-4k.h -c2187e5931b2fb387ec8c82aee15d4a0 linux-3.0/arch/powerpc/include/asm/pte-hash32.h -aac33ec97ccf679633e9c34887290d66 linux-3.0/arch/powerpc/include/asm/pte-fsl-booke.h -db4f67e1acfd87f9ba90073a8559f999 linux-3.0/arch/powerpc/include/asm/pte-common.h -803f77bb0b2d3209e913ba89ddd445c3 linux-3.0/arch/powerpc/include/asm/pte-book3e.h -3c0746e70aa5d55598345a652f5a4bea linux-3.0/arch/powerpc/include/asm/pte-8xx.h -dee4bf76f5fbf2fb793e184d9c3265b5 linux-3.0/arch/powerpc/include/asm/pte-44x.h -5ad28383da518b0979c83e71d493b5cc linux-3.0/arch/powerpc/include/asm/pte-40x.h -b11a431f9275419913aea361b97f1c49 linux-3.0/arch/powerpc/include/asm/ps3stor.h -af8c8c663f9f8e93d277a143f426026a linux-3.0/arch/powerpc/include/asm/ps3gpu.h -80c5ca3797f2c2e7908e240979588177 linux-3.0/arch/powerpc/include/asm/ps3fb.h -b4dbd0d021ec84f0842708abc9c7252f linux-3.0/arch/powerpc/include/asm/ps3av.h -7c2ff874eeb60e2fedbde70782367629 linux-3.0/arch/powerpc/include/asm/ps3.h -c3ce1e5d66a6df79dd0d48649c68d939 linux-3.0/arch/powerpc/include/asm/prom.h -4cac65b88222fff5a3fb53f1d2a05bb8 linux-3.0/arch/powerpc/include/asm/processor.h -1ab7016705fdc44e794320b959d24c31 linux-3.0/arch/powerpc/include/asm/ppc_asm.h -d72ba683777992ea5003452b946be4fd linux-3.0/arch/powerpc/include/asm/ppc4xx.h -b228441c17a954a6191c236a9a84a5a5 linux-3.0/arch/powerpc/include/asm/ppc-pci.h -8916b46232f0e905c2e5bfb97f40fa3f linux-3.0/arch/powerpc/include/asm/ppc-opcode.h -1bc827e258456c881dae20bf5508559c linux-3.0/arch/powerpc/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/powerpc/include/asm/poll.h -f0e73c3b7cca704e267960bf7ebd3d0f linux-3.0/arch/powerpc/include/asm/pmi.h -7ad1c1ec26b31d7ae0f4f195e22a2202 linux-3.0/arch/powerpc/include/asm/pmc.h -e9b63f4d8664991f91104e2c398722b4 linux-3.0/arch/powerpc/include/asm/pmac_pfunc.h -5a14aee715cb39d60279e2c7afeb3bbc linux-3.0/arch/powerpc/include/asm/pmac_low_i2c.h -6bc114313db37baa9e2a7abf118e5498 linux-3.0/arch/powerpc/include/asm/pmac_feature.h -33bff37bf1a6ab8267c40d31afaef16e linux-3.0/arch/powerpc/include/asm/phyp_dump.h -388dae0e2740aa3e40806f32705998e6 linux-3.0/arch/powerpc/include/asm/pgtable.h -d45de485aaf89ef6f09a124edc2414a0 linux-3.0/arch/powerpc/include/asm/pgtable-ppc64.h -afe0b9aa78a82e53baa93faee1340419 linux-3.0/arch/powerpc/include/asm/pgtable-ppc64-64k.h -ce90155863d61e29ed50c6777b048f1d linux-3.0/arch/powerpc/include/asm/pgtable-ppc64-4k.h -cef489004ad347ecbde25d70b4ca8832 linux-3.0/arch/powerpc/include/asm/pgtable-ppc32.h -8156488a617697ec88c5740ebb1bf031 linux-3.0/arch/powerpc/include/asm/pgalloc.h -5247f76f777452121e3ee0181fdbb603 linux-3.0/arch/powerpc/include/asm/pgalloc-64.h -7d05852b186aea5e291534d240d5536c linux-3.0/arch/powerpc/include/asm/pgalloc-32.h -679dea10d4148e14bdfd3482cc7810ff linux-3.0/arch/powerpc/include/asm/perf_event_server.h -7b0cf6a78b61c0eb8cabe54cea1a4b18 linux-3.0/arch/powerpc/include/asm/perf_event_fsl_emb.h -df8b90822b9a87751a0a687fea47e0d1 linux-3.0/arch/powerpc/include/asm/perf_event.h -6745986fcec5fab18c7584d42f35bb2b linux-3.0/arch/powerpc/include/asm/percpu.h -5cf4b1ce13c75f9a1486c686adabc24e linux-3.0/arch/powerpc/include/asm/pci.h -5b04b33f6bed0302de40ecfdd8137e7b linux-3.0/arch/powerpc/include/asm/pci-bridge.h -62a8ea1085b1c38553b001ff356edc9d linux-3.0/arch/powerpc/include/asm/pasemi_dma.h -280cec17247fc0eb1d99cf184e8e29af linux-3.0/arch/powerpc/include/asm/parport.h -29dbb685f25e0e09aa59624964e2b815 linux-3.0/arch/powerpc/include/asm/param.h -7e744cfe42cd1989328504ca0b2a11b6 linux-3.0/arch/powerpc/include/asm/page_64.h -f6c2912dd9fb2059a748434a5225edd7 linux-3.0/arch/powerpc/include/asm/page_32.h -de01969fff0d4d1d568902d98e14aaa3 linux-3.0/arch/powerpc/include/asm/page.h -fced2fbf327177fd1139930bc1cc8c33 linux-3.0/arch/powerpc/include/asm/paca.h -12c0e5c7daf39948c1bb3b8bd96ec4bc linux-3.0/arch/powerpc/include/asm/pSeries_reconfig.h -3312f86386b078d90634d38be27ad873 linux-3.0/arch/powerpc/include/asm/oprofile_impl.h -76e9bdf2260c75b1d3eb60f4d1d9bc79 linux-3.0/arch/powerpc/include/asm/ohare.h -008c9d15ec80cd4ef69ee567a5cec51a linux-3.0/arch/powerpc/include/asm/nvram.h -e2a18502df41d66c03ae4e609666d293 linux-3.0/arch/powerpc/include/asm/mutex.h -d7e05a211e52cb19d03adf9458d2b2a3 linux-3.0/arch/powerpc/include/asm/msi_bitmap.h -a86f050d19a0a471d9e68a3bd2585611 linux-3.0/arch/powerpc/include/asm/msgbuf.h -e7ae5deb62f80f6653174fff639706f9 linux-3.0/arch/powerpc/include/asm/mpic.h -f0d7c57364f613cea32e55e212cb66c5 linux-3.0/arch/powerpc/include/asm/mpc8xx.h -ec04c36e6c07105c4661ba774023391b linux-3.0/arch/powerpc/include/asm/mpc8260.h -f8d6663c86ba04f9c508ed90dbc0f33e linux-3.0/arch/powerpc/include/asm/mpc6xx.h -ee14bfd77ed902c0ccc678e764fa4083 linux-3.0/arch/powerpc/include/asm/mpc5xxx.h -285b393a7ff91b94aff1346efb626eb7 linux-3.0/arch/powerpc/include/asm/mpc52xx_psc.h -e7d45a6c13e5cadd4769c37e0326dab6 linux-3.0/arch/powerpc/include/asm/mpc52xx.h -98f40af3f1ab05749aa47ed3e8738670 linux-3.0/arch/powerpc/include/asm/mpc5121.h -7108f66169e48174759c8d111cea06e5 linux-3.0/arch/powerpc/include/asm/module.h -8be4734eb72f94b191c1d811917dcdc4 linux-3.0/arch/powerpc/include/asm/mmzone.h -8bc7f89ea6a4b9d0c51d6d4db10cf9ee linux-3.0/arch/powerpc/include/asm/mmu_context.h -02c5dfc92b345bdaa60dad5fd5f15b63 linux-3.0/arch/powerpc/include/asm/mmu.h -30a62c36bb5db5db5fca25504b59de93 linux-3.0/arch/powerpc/include/asm/mmu-hash64.h -29265a5e25977c348586a869dd633786 linux-3.0/arch/powerpc/include/asm/mmu-hash32.h -ae7056f9485ff5364cdaff7c7bd383d4 linux-3.0/arch/powerpc/include/asm/mmu-book3e.h -f8062c7b0a778488c42ab9d644b86dac linux-3.0/arch/powerpc/include/asm/mmu-8xx.h -f6388fc154810ceb29177f2a566e1fe9 linux-3.0/arch/powerpc/include/asm/mmu-44x.h -3e3f88ce3c6c8db2f0bbb9e27928f6a0 linux-3.0/arch/powerpc/include/asm/mmu-40x.h -1ed28a61aa3efa82dc8f53cffff7865f linux-3.0/arch/powerpc/include/asm/mman.h -f02f4611facc5ef43eb9fb820053d6de linux-3.0/arch/powerpc/include/asm/memblock.h -3198c56ce638f804c84d13ea80a8b34d linux-3.0/arch/powerpc/include/asm/mediabay.h -69bf4bcfecc13947cced2774f22c3649 linux-3.0/arch/powerpc/include/asm/mc146818rtc.h -62c6612e87785d54b92ab8fe0bbe8639 linux-3.0/arch/powerpc/include/asm/macio.h -636ace325e8dcddc122377a2c2f43759 linux-3.0/arch/powerpc/include/asm/machdep.h -60a067e3219c5cdab52c4ac0b03cac7c linux-3.0/arch/powerpc/include/asm/lv1call.h -ea1f02b8020e03c3c0a8eef843924828 linux-3.0/arch/powerpc/include/asm/lppaca.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/powerpc/include/asm/local64.h -982a88c4d17d8c33b741e7eecb4930d3 linux-3.0/arch/powerpc/include/asm/local.h -38282a540800c74f5f6d74948bf6b2e6 linux-3.0/arch/powerpc/include/asm/linkage.h -1bbe30fe032515d088f70051688147b8 linux-3.0/arch/powerpc/include/asm/libata-portmap.h -38372d8ea7bc5d965492234c40057b58 linux-3.0/arch/powerpc/include/asm/kvm_ppc.h -52e68983490f4c5fb59b13e1d87801c8 linux-3.0/arch/powerpc/include/asm/kvm_para.h -3ae2976eb9698710bbb8861ee75c2a9f linux-3.0/arch/powerpc/include/asm/kvm_host.h -28f9f662ec94bc8a00519251fc54d148 linux-3.0/arch/powerpc/include/asm/kvm_fpu.h -4653cba8535080551026024c86dbf2e0 linux-3.0/arch/powerpc/include/asm/kvm_e500.h -a0461fc70e761e4aaefa38c040367a73 linux-3.0/arch/powerpc/include/asm/kvm_booke.h -2395d17bdd6c5f09520ac76733b642db linux-3.0/arch/powerpc/include/asm/kvm_book3s_asm.h -d1b3bb1f0ab1cfd62dbc3f7897ec2052 linux-3.0/arch/powerpc/include/asm/kvm_book3s_64.h -a2ba521429e4b1539cb1530177639fe5 linux-3.0/arch/powerpc/include/asm/kvm_book3s_32.h -d6bcef50bd8133676fc23f2b8021ed54 linux-3.0/arch/powerpc/include/asm/kvm_book3s.h -563039106b8875b1549218b3f7b3c53d linux-3.0/arch/powerpc/include/asm/kvm_asm.h -42e059053ef99a340a809def430e4b98 linux-3.0/arch/powerpc/include/asm/kvm_44x.h -0ed2eda226a117da70506b3df179893d linux-3.0/arch/powerpc/include/asm/kvm.h -4dad86759268dc7ac419d3d6560f4b3d linux-3.0/arch/powerpc/include/asm/kprobes.h -ad9765e35b92ebdad3e56087d2019664 linux-3.0/arch/powerpc/include/asm/kmap_types.h -fd9848603bee1d0804d00b027462b0ed linux-3.0/arch/powerpc/include/asm/kgdb.h -42e256c195bc9ec53bf0b5c18ff85ab3 linux-3.0/arch/powerpc/include/asm/keylargo.h -35ae346860bcb1cf0d7e87b4c15f3cee linux-3.0/arch/powerpc/include/asm/kexec.h -b8a9df7ce1b6694cb1c1b8da35c7b2df linux-3.0/arch/powerpc/include/asm/kdump.h -a59708afa5559635939d746dc08723fe linux-3.0/arch/powerpc/include/asm/kdebug.h -1a105d70c273507d0c7763add2bd1cdc linux-3.0/arch/powerpc/include/asm/iseries/vio.h -e527632b968039cd136d058319f16c1b linux-3.0/arch/powerpc/include/asm/iseries/mf.h -934ee0cf2567dc618bfa3094482a7728 linux-3.0/arch/powerpc/include/asm/iseries/lpar_map.h -a9749495596ae30566ce77ff4ee7b0e8 linux-3.0/arch/powerpc/include/asm/iseries/it_lp_queue.h -b70ff7763d5eceda4c0e22c652b82cac linux-3.0/arch/powerpc/include/asm/iseries/iommu.h -637f93dfd1ae62b2acbb9e7ad66c3e82 linux-3.0/arch/powerpc/include/asm/iseries/hv_types.h -cf16379c613cc95c102edbe6fe6c5a61 linux-3.0/arch/powerpc/include/asm/iseries/hv_lp_event.h -ada939117f976a3f60061db3cee7c68f linux-3.0/arch/powerpc/include/asm/iseries/hv_lp_config.h -93326a72c47b9ae80e2db7af99fd590c linux-3.0/arch/powerpc/include/asm/iseries/hv_call_xm.h -3f923cb8dc8851eb31f0be72cca39fd3 linux-3.0/arch/powerpc/include/asm/iseries/hv_call_sc.h -d83777c3f04e23a5b586327f3e9a8f04 linux-3.0/arch/powerpc/include/asm/iseries/hv_call_event.h -72151ff0678e4edec49dd5114377f403 linux-3.0/arch/powerpc/include/asm/iseries/hv_call.h -d67348560ae56d9980578a55b07308fb linux-3.0/arch/powerpc/include/asm/iseries/alpaca.h -b8ba9e54024feb9eb18f742bdea4da52 linux-3.0/arch/powerpc/include/asm/irqflags.h -b7ccb7a012577f7def51287fd8bf9dd3 linux-3.0/arch/powerpc/include/asm/irq_regs.h -96c44676be1882b31f4709b8571099c9 linux-3.0/arch/powerpc/include/asm/irq.h -f3a1444b5be8a99b919ecb6a5f4843c0 linux-3.0/arch/powerpc/include/asm/ipic.h -eab2d10493e5ad9e0edabb8281feb5d0 linux-3.0/arch/powerpc/include/asm/ipcbuf.h -08629f463a8b8b483a6e6041163d8715 linux-3.0/arch/powerpc/include/asm/iommu.h -ce9e59c6ed4d2ac05b3619303c2e598a linux-3.0/arch/powerpc/include/asm/ioctls.h -6112116538305be2e56aa85cab6b8184 linux-3.0/arch/powerpc/include/asm/ioctl.h -8a8887b60fc5abc1997f2c5ff2676362 linux-3.0/arch/powerpc/include/asm/io_event_irq.h -c293ac9eacd817752df1f9e29a9e18e3 linux-3.0/arch/powerpc/include/asm/io.h -e2c24ca38da73b999e23acc6686f7dde linux-3.0/arch/powerpc/include/asm/io-workarounds.h -a702c44d8b44de85eede982b03edaf60 linux-3.0/arch/powerpc/include/asm/io-defs.h -842533cc091553e617377f7e3c63431a linux-3.0/arch/powerpc/include/asm/immap_qe.h -b147f8c791536a3bbfcdded5dff491a8 linux-3.0/arch/powerpc/include/asm/immap_cpm2.h -9768db22bafbb3cb137e93ee6e6c188c linux-3.0/arch/powerpc/include/asm/ide.h -cbc6ed5eb207d82c3773abb18e20ea91 linux-3.0/arch/powerpc/include/asm/ibmebus.h -7f0e03314b6fe383b69bd2c9f284ddb3 linux-3.0/arch/powerpc/include/asm/i8259.h -b822fd456a9f03d0009af3ac49ba71d3 linux-3.0/arch/powerpc/include/asm/hydra.h -2dccb72d500db277fde2097fb6797908 linux-3.0/arch/powerpc/include/asm/hw_irq.h -1c2be7e4f26d0cb192a0d65314680a9c linux-3.0/arch/powerpc/include/asm/hw_breakpoint.h -9a491aaadcd61a19eb4e4c1df4438f08 linux-3.0/arch/powerpc/include/asm/hvcserver.h -e5b91b8a58bbdc49930dcb760726b758 linux-3.0/arch/powerpc/include/asm/hvconsole.h -fecb48c2585e2b68e28c57a1224f9c42 linux-3.0/arch/powerpc/include/asm/hvcall.h -4d79573c15d7d6936f0e204d1db30e74 linux-3.0/arch/powerpc/include/asm/hugetlb.h -32dd1c913e89a0ec3f0358c9710880b3 linux-3.0/arch/powerpc/include/asm/highmem.h -202ee90308561fc431b3881ab4efae42 linux-3.0/arch/powerpc/include/asm/heathrow.h -5de84dc63017f62285747e3c08baf8d6 linux-3.0/arch/powerpc/include/asm/hardirq.h -bbcc676d4cb89aacf49555d35b2005e4 linux-3.0/arch/powerpc/include/asm/grackle.h -b24ba6284f9c6edfbecd78f1509a7823 linux-3.0/arch/powerpc/include/asm/gpio.h -21e03ec6bb421bc1e5886ce322b4d746 linux-3.0/arch/powerpc/include/asm/futex.h -e9ab61f65dbc14ab205eaf32997d30b1 linux-3.0/arch/powerpc/include/asm/ftrace.h -6a360c96e2220aef014c9b975ae97bbb linux-3.0/arch/powerpc/include/asm/fsl_lbc.h -dd56919648ca26ea3b0be6cf386948d9 linux-3.0/arch/powerpc/include/asm/fsl_guts.h -0123f0a4bbaa21aff58ea791a9932f06 linux-3.0/arch/powerpc/include/asm/fsl_gtm.h -a848135daa0673075befd6628e92c7fe linux-3.0/arch/powerpc/include/asm/fsl_85xx_cache_sram.h -c906b89a67ace9fa5acaedd46fbeb89e linux-3.0/arch/powerpc/include/asm/fs_pd.h -df5cce7da23a49a6994d3457f13cbedd linux-3.0/arch/powerpc/include/asm/floppy.h -8fb75dd611e70e3b3e4d7f78a55c27b2 linux-3.0/arch/powerpc/include/asm/fixmap.h -8ef3356fc397a0444cc9f49829113032 linux-3.0/arch/powerpc/include/asm/firmware.h -b5acd5b76601c2e7918aa57041cdccc6 linux-3.0/arch/powerpc/include/asm/feature-fixups.h -c465811258900463572cd702693495de linux-3.0/arch/powerpc/include/asm/fcntl.h -273602fa5c8c8c9bf004153f733dd7bc linux-3.0/arch/powerpc/include/asm/fb.h -d37098da03918fe972a2af2e21934396 linux-3.0/arch/powerpc/include/asm/exception-64s.h -989ccaa4ee41cb1a59b1d572890a2e28 linux-3.0/arch/powerpc/include/asm/exception-64e.h -f1e9ffef2e24d9291541dff1b4c2e3e7 linux-3.0/arch/powerpc/include/asm/errno.h -b669940f9f4d8675682b0c71b51f3cc9 linux-3.0/arch/powerpc/include/asm/emulated_ops.h -6df22cf6584ec54da208b4a77ec955d6 linux-3.0/arch/powerpc/include/asm/emergency-restart.h -a0100ca603c6a2b031be387db3cb97e6 linux-3.0/arch/powerpc/include/asm/elf.h -727a51a78aa6f6187c171645dd9360ca linux-3.0/arch/powerpc/include/asm/eeh_event.h -81ae787b6ca8530a5a32e2c7465405ab linux-3.0/arch/powerpc/include/asm/eeh.h -48c3374eeceb7f0304b455d1e2763ba5 linux-3.0/arch/powerpc/include/asm/edac.h -4598277c6358d6e9fcaafe72e34505e5 linux-3.0/arch/powerpc/include/asm/dma.h -78f9e2386444cf0449433b40efc3abc6 linux-3.0/arch/powerpc/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/powerpc/include/asm/div64.h -c2daa8929d22179e6d582140ff76053b linux-3.0/arch/powerpc/include/asm/disassemble.h -765f864700f4c70cbd2f7ca6d3804491 linux-3.0/arch/powerpc/include/asm/device.h -57f037ce2dbfaeb5613af711e6c89a86 linux-3.0/arch/powerpc/include/asm/delay.h -542b302f9a9673d7ef4256ccde526893 linux-3.0/arch/powerpc/include/asm/dcr.h -9311dc023cc63968118e73aa26044c21 linux-3.0/arch/powerpc/include/asm/dcr-regs.h -f9b574c9d21975b0406cbdab28e43b3c linux-3.0/arch/powerpc/include/asm/dcr-native.h -224d6598ce2c876b8b0bf773670b409e linux-3.0/arch/powerpc/include/asm/dcr-mmio.h -3d13c5d01142903edcd4de6ea42df929 linux-3.0/arch/powerpc/include/asm/dcr-generic.h -8fd77019325b2df0ea93e06af721a319 linux-3.0/arch/powerpc/include/asm/dbell.h -3ec56d3a39e530146014f2d5b61530c4 linux-3.0/arch/powerpc/include/asm/dbdma.h -c3bede4bdf5ad8084ae3011bacc92039 linux-3.0/arch/powerpc/include/asm/current.h -6e53a5dca53579b954d539205eab2427 linux-3.0/arch/powerpc/include/asm/cputime.h -f4ca9a8ec3bb1f4d936a18efdda1b743 linux-3.0/arch/powerpc/include/asm/cputhreads.h -071c225325d40577ea1103f8dec4627e linux-3.0/arch/powerpc/include/asm/cputable.h -71761e5db7560d558843a7bfc0df4e46 linux-3.0/arch/powerpc/include/asm/cpm2.h -92a887aac4c37d7a623fbd3e601f81b1 linux-3.0/arch/powerpc/include/asm/cpm1.h -1ea900db3947030b2760d747ab204819 linux-3.0/arch/powerpc/include/asm/cpm.h -d0462e5439a24386764980514b4f5436 linux-3.0/arch/powerpc/include/asm/compat.h -f34e59d96b7bc9be8e2a8925ce709cff linux-3.0/arch/powerpc/include/asm/code-patching.h -3768947431b0e5dca8bf7f2e2277ff3f linux-3.0/arch/powerpc/include/asm/clk_interface.h -c3afd8acbe4ea9b420741f65fb0d4221 linux-3.0/arch/powerpc/include/asm/checksum.h -ad11e5eea71c7afda17020fe53001c57 linux-3.0/arch/powerpc/include/asm/cell-regs.h -aa4e44c0531ae44fb5abc9845d44340d linux-3.0/arch/powerpc/include/asm/cell-pmu.h -307cc6269f29729ad4a0aeb6cb84c7e2 linux-3.0/arch/powerpc/include/asm/cacheflush.h -9229e3d105468ad7d9e98a527b2a7356 linux-3.0/arch/powerpc/include/asm/cache.h -ef1edeb0cbb37308304b2e709e4b1751 linux-3.0/arch/powerpc/include/asm/byteorder.h -89e8832fd17491052d0f900952298854 linux-3.0/arch/powerpc/include/asm/bugs.h -93143e1d9f41208e6223ce9192133e05 linux-3.0/arch/powerpc/include/asm/bug.h -09f2bc439ce57d6961f76b15262a9462 linux-3.0/arch/powerpc/include/asm/btext.h -68bbc03e440ac524ee0e67a167f3d0c1 linux-3.0/arch/powerpc/include/asm/bootx.h -7e7c146db1bbf9dcaa53c51bda81bdbe linux-3.0/arch/powerpc/include/asm/bitsperlong.h -a5efc435da6602b9edb42f6e97c4989e linux-3.0/arch/powerpc/include/asm/bitops.h -e5ba72658372d193397c34d7674c1f74 linux-3.0/arch/powerpc/include/asm/backlight.h -5201166c7c273967c16aa7b285155da5 linux-3.0/arch/powerpc/include/asm/auxvec.h -189f6233a65c2bbe285a13977d5cb528 linux-3.0/arch/powerpc/include/asm/atomic.h -4c634c51f5e062e71d1d3fbedde66c7e linux-3.0/arch/powerpc/include/asm/async_tx.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/powerpc/include/asm/asm-offsets.h -9e520283c9fc99b320dcd23025b3c0d6 linux-3.0/arch/powerpc/include/asm/asm-compat.h -ae4ff86af21c3710d599fec512f0ef1e linux-3.0/arch/powerpc/include/asm/agp.h -de7b719e354981686d0750815d127114 linux-3.0/arch/powerpc/include/asm/abs_addr.h -d57c024a5b5949ea37800cd2b481973d linux-3.0/arch/powerpc/include/asm/Kbuild -050b26f86d65fc34215a5bdc908c6f47 linux-3.0/arch/powerpc/include/asm/8xx_immap.h -d6354aff4d0e67f93b2441b779f747cf linux-3.0/arch/powerpc/include/asm/8253pit.h -b088b0a626c19392c2bd6f2cc34c0444 linux-3.0/arch/powerpc/configs/wii_defconfig -9ed88259bf9059bcff864a89dc11eae6 linux-3.0/arch/powerpc/configs/tqm8xx_defconfig -ffe9ff3c802290c4103462560aaa126c linux-3.0/arch/powerpc/configs/storcenter_defconfig -874c2f9069b07f57d334f01599d28ae4 linux-3.0/arch/powerpc/configs/pseries_defconfig -be1178b9840b0c08dd5dd22e924c9dac linux-3.0/arch/powerpc/configs/ps3_defconfig -5cba06c47c23dc4ee5fcc31e3b6a4f0b linux-3.0/arch/powerpc/configs/prpmc2800_defconfig -262fe41af33f80d35d2d754c6dff6153 linux-3.0/arch/powerpc/configs/pq2fads_defconfig -3ac8a7f7ed2c4c8f9dcc006bcb217685 linux-3.0/arch/powerpc/configs/ppc6xx_defconfig -2cdbc150adf71d0aaad7aa0b15fceda3 linux-3.0/arch/powerpc/configs/ppc64e_defconfig -545a903d464fc01b16ba9a00f942ac88 linux-3.0/arch/powerpc/configs/ppc64_defconfig -4c0a89442d4ff8c98419c938c0e734f6 linux-3.0/arch/powerpc/configs/ppc44x_defconfig -96e654d0a6e339894b14569454c2f2b9 linux-3.0/arch/powerpc/configs/ppc40x_defconfig -83f5967f5c8c3f446784d68ed086227e linux-3.0/arch/powerpc/configs/pmac32_defconfig -37d6a79c1d8f83d97fc6450edfa3b41c linux-3.0/arch/powerpc/configs/pasemi_defconfig -15d2144c18bf3f8ab78fce47b40d7993 linux-3.0/arch/powerpc/configs/mpc885_ads_defconfig -7fe5f1db5eb2523035e51c50875bead2 linux-3.0/arch/powerpc/configs/mpc86xx_defconfig -d4fbd434b25091f6aa47f59fe55b3e72 linux-3.0/arch/powerpc/configs/mpc866_ads_defconfig -fdf1c0cd0dfd176b35800cbd4bd0c31a linux-3.0/arch/powerpc/configs/mpc85xx_smp_defconfig -a55ee06309856e6ca249880d287b349e linux-3.0/arch/powerpc/configs/mpc85xx_defconfig -cfbd0f153b6c82c31f0aac2dfbf36a58 linux-3.0/arch/powerpc/configs/mpc83xx_defconfig -4393b08cb6c92f515304eeb5f3658bdf linux-3.0/arch/powerpc/configs/mpc8272_ads_defconfig -06eecffd26b135b6ffa8972881169522 linux-3.0/arch/powerpc/configs/mpc7448_hpc2_defconfig -699346b22f425689f0fb37cf56132d40 linux-3.0/arch/powerpc/configs/mpc5200_defconfig -111df3157411f169af3bd8d5a9deb51c linux-3.0/arch/powerpc/configs/mpc512x_defconfig -730632fe847bf9f94459f405e19dfdc3 linux-3.0/arch/powerpc/configs/mgcoge_defconfig -31306b045d9bb51b53b3343af6068794 linux-3.0/arch/powerpc/configs/maple_defconfig -f773231e548523ceeade18f9f9bc7e8e linux-3.0/arch/powerpc/configs/linkstation_defconfig -7b6180f46efc819a2e1ee3584755f206 linux-3.0/arch/powerpc/configs/iseries_defconfig -00c1bac78fe3c67b5d8a3a0bd2d0ba27 linux-3.0/arch/powerpc/configs/holly_defconfig -35b7f348ff6ee0daf1b05bb57a19a3e6 linux-3.0/arch/powerpc/configs/gamecube_defconfig -58f4b4b6763d9827ecc3d21d3ead8fb2 linux-3.0/arch/powerpc/configs/g5_defconfig -896a96dfb350816e52059a9c27c9685f linux-3.0/arch/powerpc/configs/ep88xc_defconfig -dcbc231eee7b427f1df66b2c2a63602b linux-3.0/arch/powerpc/configs/ep8248e_defconfig -b03a4e810693e956caa7de5b1d4e22a0 linux-3.0/arch/powerpc/configs/e55xx_smp_defconfig -078e16c3f8015218da35f68e0648fb7e linux-3.0/arch/powerpc/configs/chrp32_defconfig -7a84a7c0ced1890bb0d6a8d3cad8b044 linux-3.0/arch/powerpc/configs/celleb_defconfig -6fc86ffb920573a1b8662cd9d7bccda4 linux-3.0/arch/powerpc/configs/cell_defconfig -8aff5a219c1029fbde3019efb6df8de4 linux-3.0/arch/powerpc/configs/c2k_defconfig -f79c92370b40c9194e208f0678d9d0f7 linux-3.0/arch/powerpc/configs/amigaone_defconfig -6be00bd956bf15feba84fca56f8d61a7 linux-3.0/arch/powerpc/configs/adder875_defconfig -973dedf38337803ffd5b5b72780984fb linux-3.0/arch/powerpc/configs/86xx/sbc8641d_defconfig -ec8863ec934c3539db6a0d7af8ba0210 linux-3.0/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig -291a312af5dc98e20ada7d24f1176b0f linux-3.0/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig -88c4cfd1e4124296db030f3341ea8722 linux-3.0/arch/powerpc/configs/86xx/gef_sbc610_defconfig -b2d2166f4a6f1572734f7e79bcbc912b linux-3.0/arch/powerpc/configs/86xx/gef_sbc310_defconfig -0d8874ee8543755a9282345be07d2c84 linux-3.0/arch/powerpc/configs/86xx/gef_ppc9a_defconfig -d0e10c2a4d222c02ae36a3a519612657 linux-3.0/arch/powerpc/configs/85xx/xes_mpc85xx_defconfig -fc2b20aec42239801055122a99bb06d3 linux-3.0/arch/powerpc/configs/85xx/tqm8560_defconfig -0928cd0a45f0e33b9dde2c9dd5ee98f3 linux-3.0/arch/powerpc/configs/85xx/tqm8555_defconfig -2bd2e5ef83fb5b038535369e555bdd86 linux-3.0/arch/powerpc/configs/85xx/tqm8548_defconfig -9a911960f5867f30ce15cff7dcaa7bbd linux-3.0/arch/powerpc/configs/85xx/tqm8541_defconfig -7c0d4150342fb5f1e117fcb9ac7e348d linux-3.0/arch/powerpc/configs/85xx/tqm8540_defconfig -bbc5680852410f864c2195d8d8f080d2 linux-3.0/arch/powerpc/configs/85xx/stx_gp3_defconfig -7b0a17ece92d9d338ebe7ebc55cfd453 linux-3.0/arch/powerpc/configs/85xx/socrates_defconfig -6eb17fa422b4d46fa22cfade777aa9b3 linux-3.0/arch/powerpc/configs/85xx/sbc8560_defconfig -beb5d51f154924c1a8bb147873d0b205 linux-3.0/arch/powerpc/configs/85xx/sbc8548_defconfig -67fb7bef110d668fcefe0caa7ccbd555 linux-3.0/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig -3f3f6815b067d278a2220f928c2fca06 linux-3.0/arch/powerpc/configs/85xx/mpc8560_ads_defconfig -ed4fa4acd050663c5a414aa550ccacc9 linux-3.0/arch/powerpc/configs/85xx/mpc8540_ads_defconfig -4dbf969c79aea4eddb8807b2e7b08e03 linux-3.0/arch/powerpc/configs/85xx/ksi8560_defconfig -2f3bc0e014e667a4b4e546e195f3fec9 linux-3.0/arch/powerpc/configs/83xx/sbc834x_defconfig -e7f9f8a43c0bb63c9a338489454d888a linux-3.0/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig -546502e3d19a92857b7b61f3970ca3fd linux-3.0/arch/powerpc/configs/83xx/mpc837x_mds_defconfig -fa23e64981eb1e056c987ed253a593d9 linux-3.0/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig -e982778028a955efd195d239a63f60be linux-3.0/arch/powerpc/configs/83xx/mpc836x_mds_defconfig -a1e341deeea906d27a6e8cd1eccae182 linux-3.0/arch/powerpc/configs/83xx/mpc834x_mds_defconfig -23c26b540a41a3369a9f51032b2cd9cd linux-3.0/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig -0c08a75bb6524cef998d6a324976a545 linux-3.0/arch/powerpc/configs/83xx/mpc834x_itx_defconfig -6a6e41d5a28b4152e004844099f9b0b1 linux-3.0/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig -6140da3bc3b5034e1645eec8c2635688 linux-3.0/arch/powerpc/configs/83xx/mpc832x_mds_defconfig -9c644208cfdf0192f5896a9c9bb38c47 linux-3.0/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig -e9c8d3cfd751bfa5d9a8a508c8624329 linux-3.0/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig -9715be14d2896e72eaea79924e356454 linux-3.0/arch/powerpc/configs/83xx/kmeter1_defconfig -6b44b46d17d91019886a0b9a33b04d7c linux-3.0/arch/powerpc/configs/83xx/asp8347_defconfig -2187e65bfce0066718da48db81486520 linux-3.0/arch/powerpc/configs/52xx/tqm5200_defconfig -427ed650a81b9c8abde5f5833fedad5e linux-3.0/arch/powerpc/configs/52xx/pcm030_defconfig -04d999983fb6b2e422622a65d9aa26b7 linux-3.0/arch/powerpc/configs/52xx/motionpro_defconfig -8f051dd46a85f776ba829c5afa654ec7 linux-3.0/arch/powerpc/configs/52xx/lite5200b_defconfig -a9f488fd829816f56e07cc6d6e6fd95b linux-3.0/arch/powerpc/configs/52xx/cm5200_defconfig -5c7ae3370896369a0f7263c60ebb2816 linux-3.0/arch/powerpc/configs/44x/warp_defconfig -5ea5e44546d54560b0bf38767d292d7e linux-3.0/arch/powerpc/configs/44x/virtex5_defconfig -73e8e851c49df6c10951f919344ade92 linux-3.0/arch/powerpc/configs/44x/taishan_defconfig -26459d4e3e3a7a3f85ce227d4696dc87 linux-3.0/arch/powerpc/configs/44x/sequoia_defconfig -29032b811b4380efbf6cb3db070b286a linux-3.0/arch/powerpc/configs/44x/sam440ep_defconfig -21416933f576088bf828dc166706a216 linux-3.0/arch/powerpc/configs/44x/redwood_defconfig -c3454feb46ee624a628c924253fb139f linux-3.0/arch/powerpc/configs/44x/rainier_defconfig -f7da2fcaa641f3e31632ec2c5b7cd8a4 linux-3.0/arch/powerpc/configs/44x/katmai_defconfig -5d1ef8e372ef6ff0b6c10ca1f284efd5 linux-3.0/arch/powerpc/configs/44x/iss476-smp_defconfig -40eae89994a9c3f27773ad38d83dcc73 linux-3.0/arch/powerpc/configs/44x/icon_defconfig -fab2fe4a1b0c1afc701e57a707d76bd4 linux-3.0/arch/powerpc/configs/44x/eiger_defconfig -ffc1b041a732464e91fefce70633e18b linux-3.0/arch/powerpc/configs/44x/ebony_defconfig -b5f57297f9b70968e879d5bc1aa1703b linux-3.0/arch/powerpc/configs/44x/canyonlands_defconfig -07b835cd5cc2694551ed2394b9b9795c linux-3.0/arch/powerpc/configs/44x/bluestone_defconfig -7a6b8a930be98f069dd371b6e9f7313c linux-3.0/arch/powerpc/configs/44x/bamboo_defconfig -ad9edcdf2f762bf4ab4d89c456121237 linux-3.0/arch/powerpc/configs/44x/arches_defconfig -f1570d17158b0d17b8051638e37be242 linux-3.0/arch/powerpc/configs/40x/walnut_defconfig -2b54151aa4bf649e6be95480a948efcb linux-3.0/arch/powerpc/configs/40x/virtex_defconfig -eb7c43ee126676eddb32c621a274f9cc linux-3.0/arch/powerpc/configs/40x/makalu_defconfig -408233499f0e583bfb8cf37417bd07fb linux-3.0/arch/powerpc/configs/40x/kilauea_defconfig -8385623722eb020afb1b37dadece111e linux-3.0/arch/powerpc/configs/40x/hcu4_defconfig -38aa50757df6567ed686022442b2ded7 linux-3.0/arch/powerpc/configs/40x/ep405_defconfig -216f73c3f55a2ccb74b00e63ce836900 linux-3.0/arch/powerpc/configs/40x/acadia_defconfig -3e92f3c784e0c703c179496d60b1349d linux-3.0/arch/powerpc/boot/zImage.ps3.lds.S -3b41b42969e69609e8e72d19a546cc77 linux-3.0/arch/powerpc/boot/zImage.lds.S -5288525e7b2805eb98c39dfb874c7b39 linux-3.0/arch/powerpc/boot/zImage.coff.lds.S -0b247c5c7fc261a547a69b60d9c93581 linux-3.0/arch/powerpc/boot/wrapper -9b0a4e158a7fcfe45b98177d7de87a43 linux-3.0/arch/powerpc/boot/wii.c -8c1893ce8bd3d0afb53e7bc838a2be89 linux-3.0/arch/powerpc/boot/wii-head.S -8f27de6b856119594c82efc34b1bc569 linux-3.0/arch/powerpc/boot/virtex405-head.S -ebf4e63f90efaa3bdf64f32051b45c0c linux-3.0/arch/powerpc/boot/virtex.c -c9a916825d3f5720333bd6e00c103788 linux-3.0/arch/powerpc/boot/util.S -6dca00b591a4d49487dcaef6860d2506 linux-3.0/arch/powerpc/boot/ugecon.h -f9f74887cd51076da09073f12aa06a69 linux-3.0/arch/powerpc/boot/ugecon.c -df94a02133eeae2030dff8224ad66437 linux-3.0/arch/powerpc/boot/uartlite.c -7b68d4487ba26a7a29fffa0a85fad90b linux-3.0/arch/powerpc/boot/types.h -ca47eac69b9fb54b9c131e6288ad994b linux-3.0/arch/powerpc/boot/treeboot-walnut.c -070f12847d60adc58a6f60fa4da2bffb linux-3.0/arch/powerpc/boot/treeboot-iss4xx.c -eb7f9f1907cf2565e1f5a0a5dbbb3fdf linux-3.0/arch/powerpc/boot/treeboot-ebony.c -b52e705b59f70b291b2b6e778360e6ca linux-3.0/arch/powerpc/boot/treeboot-bamboo.c -efabf9b76c038bac95b8a6ee98bccc60 linux-3.0/arch/powerpc/boot/string.h -f1e0b457e55cc70f36da637edc6d340e linux-3.0/arch/powerpc/boot/string.S -cd30a8ee9aa836d8d3322420cdf013ee linux-3.0/arch/powerpc/boot/stdlib.h -b1501aa69547a730e5b9c3726416e463 linux-3.0/arch/powerpc/boot/stdlib.c -d36db924ea856f586be2a3b5fbda1b43 linux-3.0/arch/powerpc/boot/stdio.h -29c56c5786d467d3aedee1d399e97713 linux-3.0/arch/powerpc/boot/stdio.c -c5977fc3e668dac6054d89e23ed165f3 linux-3.0/arch/powerpc/boot/simpleboot.c -63bf5304eabb45cefdcbe228f38a4b97 linux-3.0/arch/powerpc/boot/simple_alloc.c -e21e33888acb867ce8bfd2c481ecf6c5 linux-3.0/arch/powerpc/boot/serial.c -c08b7cbe44b0fc01715c0bc804d519f5 linux-3.0/arch/powerpc/boot/rs6000.h -3c08b638805ea69121a31769d2e0e289 linux-3.0/arch/powerpc/boot/reg.h -c992e952a3ec0dad07a21a36caf187d0 linux-3.0/arch/powerpc/boot/redboot.h -5ecfe202ce96cdf31b0a78cdc791896b linux-3.0/arch/powerpc/boot/redboot-8xx.c -144d7630819de81a6afe4efb5f42d17d linux-3.0/arch/powerpc/boot/redboot-83xx.c -954e8cf800db216ebd37e9b2e5d6ab8b linux-3.0/arch/powerpc/boot/ps3.c -b930c6c2dcb530f450b7ebaa58f96858 linux-3.0/arch/powerpc/boot/ps3-hvcall.S -e5452a75c44dca9239d96530c4669458 linux-3.0/arch/powerpc/boot/ps3-head.S -143525e944cff845eeb5d3f2fb97d874 linux-3.0/arch/powerpc/boot/prpmc2800.c -ffa52ec3d878ca35c32322872d8d18c7 linux-3.0/arch/powerpc/boot/pq2.h -a7bb6dce3b0236026e84d7f5c853f56f linux-3.0/arch/powerpc/boot/pq2.c -fdb2d308f5dd1233e4e754265fbadf26 linux-3.0/arch/powerpc/boot/ppcboot.h -c18cee3031833faa56832c88e6838d61 linux-3.0/arch/powerpc/boot/ppcboot-hotfoot.h -11f6f4fe824f590324420fb8d34bf647 linux-3.0/arch/powerpc/boot/ppc_asm.h -2051018e0caf3962706d9cda06a9012a linux-3.0/arch/powerpc/boot/planetcore.h -464b62009139f4bb3f6f83c194c69a8c linux-3.0/arch/powerpc/boot/planetcore.c -72e5bfad8f4c08716486377b2f146569 linux-3.0/arch/powerpc/boot/page.h -8d9810712c09283203713e5bf918b0e2 linux-3.0/arch/powerpc/boot/ops.h -883d8efe1df4caee605f4aeb96955e2a linux-3.0/arch/powerpc/boot/oflib.c -7551e31a730abcaae90322e3c513c4e0 linux-3.0/arch/powerpc/boot/ofconsole.c -336d1d9fe40a5620f516baded1913ab8 linux-3.0/arch/powerpc/boot/of.h -e567a89f311762c2d0490ecb97110df1 linux-3.0/arch/powerpc/boot/of.c -6ff1994757df2dbd6172a2aa29684507 linux-3.0/arch/powerpc/boot/ns16550.c -79943539094954840db60a15cf859562 linux-3.0/arch/powerpc/boot/mv64x60_i2c.c -99f0c4fa0fd0444bb9557f0204fee101 linux-3.0/arch/powerpc/boot/mv64x60.h -078309bc52150504895c51d827e76ae3 linux-3.0/arch/powerpc/boot/mv64x60.c -13155f229fa8e45134c6482a6419d6ab linux-3.0/arch/powerpc/boot/mpsc.c -760e1f756c4ed4c3a56c1b17192f6afb linux-3.0/arch/powerpc/boot/mpc8xx.h -38d53c1482918b3d893e85e0c6ac48a8 linux-3.0/arch/powerpc/boot/mpc8xx.c -e4d3c3765b25c1289301550b78670d6f linux-3.0/arch/powerpc/boot/mpc52xx-psc.c -469e2ab1062de872702721d07de7bd1e linux-3.0/arch/powerpc/boot/mktree.c -2350a9cac82957d24f5fe39a756a96cb linux-3.0/arch/powerpc/boot/main.c -9a66295a38cace331b26a875c1e49647 linux-3.0/arch/powerpc/boot/libfdt_env.h -1a65a3f34ad72a8fa95cc411b53e7d33 linux-3.0/arch/powerpc/boot/libfdt-wrapper.c -e924a8bb40fa93d182284224a35c004a linux-3.0/arch/powerpc/boot/io.h -328bbd1c0aff0043b4fbad73ed42bf9f linux-3.0/arch/powerpc/boot/install.sh -0b96f89b5003c15865f6fb352ce3ca65 linux-3.0/arch/powerpc/boot/holly.c -59b834b4376fc152f133f511583fbda6 linux-3.0/arch/powerpc/boot/hack-coff.c -b23e1781a6c309444a2f50f4d602b8a7 linux-3.0/arch/powerpc/boot/gunzip_util.h -7e8b40fe0b4ea03e3ea0b27aed5580da linux-3.0/arch/powerpc/boot/gunzip_util.c -78318ec8e522865d73d3e63b9e46de4e linux-3.0/arch/powerpc/boot/gamecube.c -cf2d18c8ea727079e73ad4b8163e33c7 linux-3.0/arch/powerpc/boot/gamecube-head.S -48e354ca540720c61966c7c8402a0f48 linux-3.0/arch/powerpc/boot/fsl-soc.h -34ba4d14d5d6ce0bdecc897f3f5421a7 linux-3.0/arch/powerpc/boot/fsl-soc.c -51c0f101977048e181148fd9c4a09146 linux-3.0/arch/powerpc/boot/flatdevtree_env.h -51bc0e41c42b1f8f51278dd55220fab8 linux-3.0/arch/powerpc/boot/fixed-head.S -963f9d21ef924efd7f2d55629fccccd1 linux-3.0/arch/powerpc/boot/epapr.c -9827e3b4b13dee1a3056de0a912c7250 linux-3.0/arch/powerpc/boot/ep88xc.c -b66a13dd6bc52ce224de3fa17b6e7ed9 linux-3.0/arch/powerpc/boot/ep8248e.c -9810fcc38d82009d239ce39c3d7fef04 linux-3.0/arch/powerpc/boot/ep405.c -92f5aef8bc0eddf537fa397f5e5bcb75 linux-3.0/arch/powerpc/boot/elf_util.c -3f1b46a71a6b6703c1e85a3c621ddd6f linux-3.0/arch/powerpc/boot/elf.h -0497596090367809947cac1331e28815 linux-3.0/arch/powerpc/boot/ebony.c -67213abd3ece33e9459639fd20adbec1 linux-3.0/arch/powerpc/boot/dummy.c -8be02d7f47477a0d9333d039489c1094 linux-3.0/arch/powerpc/boot/dts/yosemite.dts -38a71a563864f0ce9c7a3139e6c2fb6c linux-3.0/arch/powerpc/boot/dts/xpedite5370.dts -76b3ec24c71b1e8a3f22d44259930636 linux-3.0/arch/powerpc/boot/dts/xpedite5330.dts -0a8cd2a8ddb8097c95597b3ad95dae8c linux-3.0/arch/powerpc/boot/dts/xpedite5301.dts -41f7fe0aa6ac416b0a7a3c53dabd4a54 linux-3.0/arch/powerpc/boot/dts/xpedite5200_xmon.dts -ecb0eb898fcff4f3813d60b0d2eed34d linux-3.0/arch/powerpc/boot/dts/xpedite5200.dts -39b5ec434d5ec8e6bf373f33628a217f linux-3.0/arch/powerpc/boot/dts/xcalibur1501.dts -ef6ad1c5e31767ae90d06c5ed2938f59 linux-3.0/arch/powerpc/boot/dts/wii.dts -26ad7cf9b3e0afbb9173c342ae9a0048 linux-3.0/arch/powerpc/boot/dts/warp.dts -dff04d002af53fbabebef29862a1c1dd linux-3.0/arch/powerpc/boot/dts/walnut.dts -c3e0adae6868cd488730e48dd83305ac linux-3.0/arch/powerpc/boot/dts/virtex440-ml510.dts -2018d3c269121a8054a25ef7ded9ded4 linux-3.0/arch/powerpc/boot/dts/virtex440-ml507.dts -64d200b236c1cc5fa466d85702b79360 linux-3.0/arch/powerpc/boot/dts/uc101.dts -c63b77c3bb263dad6a316649c825356d linux-3.0/arch/powerpc/boot/dts/tqm8xx.dts -d52b4a352fef3f79c261c0378be8ca04 linux-3.0/arch/powerpc/boot/dts/tqm8560.dts -df0324a100e5974c21ffc6448675ae3c linux-3.0/arch/powerpc/boot/dts/tqm8555.dts -4cdca94f122842e2fee26d5b573d55ec linux-3.0/arch/powerpc/boot/dts/tqm8548.dts -e29749628d3680f15dc747be0f123085 linux-3.0/arch/powerpc/boot/dts/tqm8548-bigflash.dts -6495c9d448501e3542c99b226f12223e linux-3.0/arch/powerpc/boot/dts/tqm8541.dts -dae2f24cc68c8af68454985b8c466c85 linux-3.0/arch/powerpc/boot/dts/tqm8540.dts -e3243d3804ac66b857cf76b059022d32 linux-3.0/arch/powerpc/boot/dts/tqm5200.dts -bdc3049b8e0acb02ec76e183cc3a4e20 linux-3.0/arch/powerpc/boot/dts/taishan.dts -5f69d7d998f8f4678b100461da74c6ed linux-3.0/arch/powerpc/boot/dts/stxssa8555.dts -2d8f552701f6df40d63482cf82e56e63 linux-3.0/arch/powerpc/boot/dts/stx_gp3_8560.dts -6a90ef054f0df223b5f3232138dc81f2 linux-3.0/arch/powerpc/boot/dts/storcenter.dts -427ab60cf9731ebbdd4fa7fe14d2f115 linux-3.0/arch/powerpc/boot/dts/socrates.dts -947f704b9806bfb4d851e33fcfaf0110 linux-3.0/arch/powerpc/boot/dts/sequoia.dts -1ebc795e83c16b84010099bd42e60603 linux-3.0/arch/powerpc/boot/dts/sbc8641d.dts -1640ca0acada68ea980296f4a3fe7401 linux-3.0/arch/powerpc/boot/dts/sbc8560.dts -5a3840f54c6b4ffa28577a2c0b8afba4 linux-3.0/arch/powerpc/boot/dts/sbc8548.dts -b3e2f228a923674afd16058d6f593f63 linux-3.0/arch/powerpc/boot/dts/sbc8349.dts -923f7e7317f20262301832932c01164b linux-3.0/arch/powerpc/boot/dts/sam440ep.dts -d23942df81f773f630235fc54fa14fbe linux-3.0/arch/powerpc/boot/dts/redwood.dts -75facd9bb9597b2c1079189ddc5a3bd1 linux-3.0/arch/powerpc/boot/dts/rainier.dts -3bfc6c6c2be7c8197965d3057d5507b9 linux-3.0/arch/powerpc/boot/dts/ps3.dts -d82dfd3b1a57cc52f0d5747aba2597b0 linux-3.0/arch/powerpc/boot/dts/prpmc2800.dts -1d1395e34ae3c5a7d87ddcd71ffe6dc1 linux-3.0/arch/powerpc/boot/dts/pq2fads.dts -68d28aa536300b33b41e704099b5a60a linux-3.0/arch/powerpc/boot/dts/pdm360ng.dts -8f51069fddbeac8e6777943d70b6d1c9 linux-3.0/arch/powerpc/boot/dts/pcm032.dts -9fa4cd9a5c6bee59fd7e2946e65deac1 linux-3.0/arch/powerpc/boot/dts/pcm030.dts -7be13ccc3eca35f32262328739bae269 linux-3.0/arch/powerpc/boot/dts/p4080ds.dts -88928440ce1052177419ce1e5612be9a linux-3.0/arch/powerpc/boot/dts/p2020si.dtsi -650ed39fd7dc1ecf103f79637150c2f4 linux-3.0/arch/powerpc/boot/dts/p2020rdb_camp_core1.dts -54629f819f86aaeab23c8a7f75a38081 linux-3.0/arch/powerpc/boot/dts/p2020rdb_camp_core0.dts -c5e66d99590cd688728404affe106df3 linux-3.0/arch/powerpc/boot/dts/p2020rdb.dts -259163ca1f2494a7b6ce2a6eb0ac322e linux-3.0/arch/powerpc/boot/dts/p2020ds.dts -4bf96970139e03a412007dd9a3ab8ab1 linux-3.0/arch/powerpc/boot/dts/p1022ds.dts -8991de4839a06796bf16af14cca39728 linux-3.0/arch/powerpc/boot/dts/p1021mds.dts -e62954ed25477405b9662f24e55cf04d linux-3.0/arch/powerpc/boot/dts/p1020si.dtsi -c43e2ef7601daf271ce71f571b461345 linux-3.0/arch/powerpc/boot/dts/p1020rdb_camp_core1.dts -7308c5d0c212940732b34d3031e79cfa linux-3.0/arch/powerpc/boot/dts/p1020rdb_camp_core0.dts -3d09d9fa09489443c3501b52693385a6 linux-3.0/arch/powerpc/boot/dts/p1020rdb.dts -bae31056d24d00057927a2fe4841cec3 linux-3.0/arch/powerpc/boot/dts/mucmc52.dts -1367b6bd76eba2ffed1c0ce950554f95 linux-3.0/arch/powerpc/boot/dts/mpc885ads.dts -7f90c4e0cada79ac5f9df6164fd15397 linux-3.0/arch/powerpc/boot/dts/mpc866ads.dts -72e160a0238a972a175aaaba10608a51 linux-3.0/arch/powerpc/boot/dts/mpc8641_hpcn_36b.dts -28c2e0f0002f5d7c68cf3fa9fc4e89e4 linux-3.0/arch/powerpc/boot/dts/mpc8641_hpcn.dts -2fd0bd61f5967bc4686e7b2fda9e58ca linux-3.0/arch/powerpc/boot/dts/mpc8610_hpcd.dts -0852eb6db74e7a7432e215bd5f93aee9 linux-3.0/arch/powerpc/boot/dts/mpc8572ds_camp_core1.dts -c221e9c0b62675fd2abc3473bae76a4a linux-3.0/arch/powerpc/boot/dts/mpc8572ds_camp_core0.dts -f819e652dc729b3f42a330361dabe273 linux-3.0/arch/powerpc/boot/dts/mpc8572ds_36b.dts -fad78511dbec28dc0d32b5a88e9527fc linux-3.0/arch/powerpc/boot/dts/mpc8572ds.dts -c0cdae220900d3579abde71df69840aa linux-3.0/arch/powerpc/boot/dts/mpc8569mds.dts -d5745e03569ddf4ffa4fcf159155fa14 linux-3.0/arch/powerpc/boot/dts/mpc8568mds.dts -20842a7b2ad17914f49a2e5b6b9a89f0 linux-3.0/arch/powerpc/boot/dts/mpc8560ads.dts -03c4eeb23fd777524560691db20c082b linux-3.0/arch/powerpc/boot/dts/mpc8555cds.dts -2a1d7632775c502444319480f355cabc linux-3.0/arch/powerpc/boot/dts/mpc8548cds.dts -a49c2af7bd1fa5928833b13cf227e318 linux-3.0/arch/powerpc/boot/dts/mpc8544ds.dts -0195707224d5e07e287f87f57d91fc45 linux-3.0/arch/powerpc/boot/dts/mpc8541cds.dts -3f50121c48ecbb4383aa2f54918cd0c0 linux-3.0/arch/powerpc/boot/dts/mpc8540ads.dts -fdfc18b59b6087106f3d53eb4abe5067 linux-3.0/arch/powerpc/boot/dts/mpc8536ds_36b.dts -84a5ccad3661210c7c967fbb142116ce linux-3.0/arch/powerpc/boot/dts/mpc8536ds.dts -f641562ffbc672462c755d4d92daee17 linux-3.0/arch/powerpc/boot/dts/mpc8379_rdb.dts -dfc3fc2fb23d77c838dfb60bdb533d28 linux-3.0/arch/powerpc/boot/dts/mpc8379_mds.dts -921005d3ea6bce719681ffa9809c34c6 linux-3.0/arch/powerpc/boot/dts/mpc8378_rdb.dts -116e7627071e92443b8b39a1eb585053 linux-3.0/arch/powerpc/boot/dts/mpc8378_mds.dts -8e2343684860b60a9f8ec7342c43e57c linux-3.0/arch/powerpc/boot/dts/mpc8377_wlan.dts -b0be0e434bddb5b7d8165d512d223f43 linux-3.0/arch/powerpc/boot/dts/mpc8377_rdb.dts -2c75555ca60cd83e29ac5d79a29c1cfe linux-3.0/arch/powerpc/boot/dts/mpc8377_mds.dts -d934b5201354377791c59c1e71cf9b2c linux-3.0/arch/powerpc/boot/dts/mpc836x_rdk.dts -63681f3acf9233911c0212d31894a2e5 linux-3.0/arch/powerpc/boot/dts/mpc836x_mds.dts -3b308edd9685943205168e4493100214 linux-3.0/arch/powerpc/boot/dts/mpc834x_mds.dts -b210d529df827c651690c712ca6d7de3 linux-3.0/arch/powerpc/boot/dts/mpc8349emitxgp.dts -a633199ab0a6a0a23817e5a9354d094a linux-3.0/arch/powerpc/boot/dts/mpc8349emitx.dts -f4f3f0c4a40bb7bf35634198be381a99 linux-3.0/arch/powerpc/boot/dts/mpc832x_rdb.dts -fa46719c3cc346e1ac654ecbed98977e linux-3.0/arch/powerpc/boot/dts/mpc832x_mds.dts -96780774ea758f4ed7157d67c0e9d399 linux-3.0/arch/powerpc/boot/dts/mpc8315erdb.dts -4cc1d5bdeb1e7ed61720d33d545fb8df linux-3.0/arch/powerpc/boot/dts/mpc8313erdb.dts -6951ff3cc4fa63bbc1e03dc18bb409fe linux-3.0/arch/powerpc/boot/dts/mpc8308rdb.dts -5ef9b5c5e7a51d911463989f9f493b5d linux-3.0/arch/powerpc/boot/dts/mpc8308_p1m.dts -35ef3810578c4820a958195cfe19980d linux-3.0/arch/powerpc/boot/dts/mpc8272ads.dts -e76c0387917b3e30d8304808214a69de linux-3.0/arch/powerpc/boot/dts/mpc7448hpc2.dts -7187b67ae8e93422d14c90362080684e linux-3.0/arch/powerpc/boot/dts/mpc5200b.dtsi -55faeef1917c2cf829a364b5ca90fec6 linux-3.0/arch/powerpc/boot/dts/mpc5121ads.dts -cf48943961c2a34d09125dcad3773fe6 linux-3.0/arch/powerpc/boot/dts/motionpro.dts -630c05e309b9fdab8669fe753e12c133 linux-3.0/arch/powerpc/boot/dts/mgcoge.dts -ac5f31070df9fed379438a182fd09b75 linux-3.0/arch/powerpc/boot/dts/media5200.dts -6e60b84dbb4290f25f6d34e12e037780 linux-3.0/arch/powerpc/boot/dts/makalu.dts -1b1612cdbc4c50c455a88065e496f481 linux-3.0/arch/powerpc/boot/dts/lite5200b.dts -15ded0cd535340e91670e59d6990a478 linux-3.0/arch/powerpc/boot/dts/lite5200.dts -4946f60a51bb8ef582b8adf4b847c67b linux-3.0/arch/powerpc/boot/dts/kuroboxHG.dts -411e5d9e42a8799c72cbde414f396d1e linux-3.0/arch/powerpc/boot/dts/kuroboxHD.dts -f33f8582aadf091025a6d547b77e2085 linux-3.0/arch/powerpc/boot/dts/ksi8560.dts -4ad0fd52f55f7c842a0858b994f377ba linux-3.0/arch/powerpc/boot/dts/kmeter1.dts -947fbe0b3e1d65e56535e9f969db3ad5 linux-3.0/arch/powerpc/boot/dts/kilauea.dts -002474573c4a583354b168c0b339414b linux-3.0/arch/powerpc/boot/dts/katmai.dts -0806df45858029e5d6fee0fbd6f4b761 linux-3.0/arch/powerpc/boot/dts/iss4xx.dts -be964f931c8ed7b71fbee2b0f4ce1769 linux-3.0/arch/powerpc/boot/dts/iss4xx-mpic.dts -f24817f8b2d34999a03dbbd37c1cc365 linux-3.0/arch/powerpc/boot/dts/icon.dts -e35235328caa976f81adaa8a783eb0c2 linux-3.0/arch/powerpc/boot/dts/hotfoot.dts -991e647663b1c5ecaeefe79ea42bccde linux-3.0/arch/powerpc/boot/dts/holly.dts -236cf68c4fb3b0affc8c537984ed6c88 linux-3.0/arch/powerpc/boot/dts/hcu4.dts -2ed365b851fc552e0e8a266c0f2f4d7e linux-3.0/arch/powerpc/boot/dts/haleakala.dts -e83d27e3a5da467524e6c472b82c37cb linux-3.0/arch/powerpc/boot/dts/glacier.dts -0f390cbb9b04db5269d78772911b9b09 linux-3.0/arch/powerpc/boot/dts/gef_sbc610.dts -5ea859ed2df3545e562d14a4d30bcbdf linux-3.0/arch/powerpc/boot/dts/gef_sbc310.dts -8f4b6fe43589433c089a1ba7214b7e96 linux-3.0/arch/powerpc/boot/dts/gef_ppc9a.dts -67b8eefcf26ed9fd2e3b9b5054251120 linux-3.0/arch/powerpc/boot/dts/gamecube.dts -dc04978ec28c91ecedd8c9e5ccb61ac0 linux-3.0/arch/powerpc/boot/dts/ep88xc.dts -d57bb20e294c2b0dbe97efa527f8e3cc linux-3.0/arch/powerpc/boot/dts/ep8248e.dts -1043a9336466519c8a39f1851d099a7b linux-3.0/arch/powerpc/boot/dts/ep405.dts -8ec3dc88829f301ab99b49909c7e4756 linux-3.0/arch/powerpc/boot/dts/eiger.dts -6f2b057e7742dc219faf4b4bd035d930 linux-3.0/arch/powerpc/boot/dts/ebony.dts -e86bcac6e634ce163f71482074a3bdf3 linux-3.0/arch/powerpc/boot/dts/digsy_mtc.dts -897a7a173a9793676ca2dee9c89ec0aa linux-3.0/arch/powerpc/boot/dts/cm5200.dts -83cf3989f5c98fbd68edf63fc1a82324 linux-3.0/arch/powerpc/boot/dts/canyonlands.dts -b4156239dcbff659c0fc12483a00333a linux-3.0/arch/powerpc/boot/dts/c2k.dts -95764f0def5c3a9464ac0cbdb1309caa linux-3.0/arch/powerpc/boot/dts/bluestone.dts -ed1aabddda4e159136cb60be9e7c45f4 linux-3.0/arch/powerpc/boot/dts/bamboo.dts -6d829378f80cfff095fb8dd51417d02b linux-3.0/arch/powerpc/boot/dts/asp834x-redboot.dts -6b017ab2390e437b72837d9bb02e4b74 linux-3.0/arch/powerpc/boot/dts/arches.dts -154a595c710c2b5b3d3f21d6726c191f linux-3.0/arch/powerpc/boot/dts/amigaone.dts -c57a362599c730e5bddd1266ad183425 linux-3.0/arch/powerpc/boot/dts/adder875-uboot.dts -820b93e1cbe7a4b5c97c19b837a74973 linux-3.0/arch/powerpc/boot/dts/adder875-redboot.dts -adb9206949490f156e22d0353767fe4a linux-3.0/arch/powerpc/boot/dts/acadia.dts -60b5679f788e342728dd5a5fab7e10e3 linux-3.0/arch/powerpc/boot/div64.S -1c63fe06c07fdd7ca3818faf2370cba5 linux-3.0/arch/powerpc/boot/devtree.c -da51f72900d05ddb979c2f9224921579 linux-3.0/arch/powerpc/boot/dcr.h -d4b007177ca1bebc830ef50d872e22e2 linux-3.0/arch/powerpc/boot/cuboot.h -66e93743b06504e482c881ed2795bf38 linux-3.0/arch/powerpc/boot/cuboot.c -5449309dfb842e20e7aafe2d9e602b78 linux-3.0/arch/powerpc/boot/cuboot-yosemite.c -d4b4fe99b188ab8885d5aa044806cf5e linux-3.0/arch/powerpc/boot/cuboot-warp.c -0c8faaec62a40c18f993a5c028f48195 linux-3.0/arch/powerpc/boot/cuboot-taishan.c -79ec43bb27a54ab77ff9e4ac4832abb5 linux-3.0/arch/powerpc/boot/cuboot-sequoia.c -e5cfcfe07e16d36fb0da0823fda79730 linux-3.0/arch/powerpc/boot/cuboot-sam440ep.c -fd3a7f37d844bb5eda062aa849df96ab linux-3.0/arch/powerpc/boot/cuboot-rainier.c -951bf72152bfc154c54b10db5e76facb linux-3.0/arch/powerpc/boot/cuboot-pq2.c -52cbd7f4565f2090cfc5ef89c8494076 linux-3.0/arch/powerpc/boot/cuboot-mpc7448hpc2.c -de576984627b28e13ad9627fa0de04bb linux-3.0/arch/powerpc/boot/cuboot-kilauea.c -316cab134cd557ecb4fcfab9c73fda8b linux-3.0/arch/powerpc/boot/cuboot-katmai.c -b4886c82b9e46f0310e8dc5fbc898911 linux-3.0/arch/powerpc/boot/cuboot-hotfoot.c -50bdca7a26506a51f6d250e15330233a linux-3.0/arch/powerpc/boot/cuboot-ebony.c -26d21972d4285e4a12a5711bd8a15448 linux-3.0/arch/powerpc/boot/cuboot-c2k.c -e5bed9fe349f8a64c59680c2b2ca9446 linux-3.0/arch/powerpc/boot/cuboot-bamboo.c -fd9d2b8ff2bd0a29a62dd6c620f9ea16 linux-3.0/arch/powerpc/boot/cuboot-amigaone.c -0f79a3c57f8f128cf45f4c4516b8644f linux-3.0/arch/powerpc/boot/cuboot-acadia.c -1e695711381a63d9e2c7dc769673a713 linux-3.0/arch/powerpc/boot/cuboot-8xx.c -66e289855ed49cebdb98fc1a8c212cdb linux-3.0/arch/powerpc/boot/cuboot-85xx.c -c3e97299641cc5c880ae2591516bc05e linux-3.0/arch/powerpc/boot/cuboot-85xx-cpm2.c -5a6209d960a7dc8bb6cfc4cf34a8fef9 linux-3.0/arch/powerpc/boot/cuboot-83xx.c -c8c1d92fd3a33e80017192aaec70dd02 linux-3.0/arch/powerpc/boot/cuboot-824x.c -e5f0d3361c48200edafaf527f21fe435 linux-3.0/arch/powerpc/boot/cuboot-52xx.c -d5e68abaf419975f2a8a5dbb7f2a07a0 linux-3.0/arch/powerpc/boot/crtsavres.S -6ae30a2e113d3b2001ea1f8cdc3c7a0c linux-3.0/arch/powerpc/boot/crt0.S -81b79e0612b316a926d31aeebef099de linux-3.0/arch/powerpc/boot/cpm-serial.c -77cce01bb6d003906c2dcb2ba706fc38 linux-3.0/arch/powerpc/boot/bamboo.c -926ffd8b48310b8b7f4e24948d968771 linux-3.0/arch/powerpc/boot/addnote.c -85f8d03ecbea304d8484372510dac39e linux-3.0/arch/powerpc/boot/README -cc64e26ad9626919622a08f025fdcf34 linux-3.0/arch/powerpc/boot/Makefile -69720e41138cedcfb282ea622a667564 linux-3.0/arch/powerpc/boot/4xx.h -d92b7d4958be5f541acc8243b26a27c1 linux-3.0/arch/powerpc/boot/4xx.c -4c8e843d2ea009eb3bee8475bf7b7b5c linux-3.0/arch/powerpc/boot/44x.h -582e6be57cac96e9d58de6c43ab2d68e linux-3.0/arch/powerpc/boot/.gitignore -dfed6914941c05abff9b2bac9a32c59e linux-3.0/arch/powerpc/Makefile -03a6be3e8a0e711e68a71ed6e6d72e1d linux-3.0/arch/powerpc/Kconfig.debug -63c651250784b271973dfc363e18b8c3 linux-3.0/arch/powerpc/Kconfig -294564dc3c9e2cbcf532b5d98d3db142 linux-3.0/arch/parisc/oprofile/init.c -b908d1ed9671fa0c2dda6ded887f8dd2 linux-3.0/arch/parisc/oprofile/Makefile -609dfdae242a610c837c011b26a8b6af linux-3.0/arch/parisc/nm -76a8c73bac69162aca9ee315821b147c linux-3.0/arch/parisc/mm/ioremap.c -7dbb8bc915a20d7de46ff5e88a6fc65d linux-3.0/arch/parisc/mm/init.c -4f6b7511f311ea62e39267d01647de9f linux-3.0/arch/parisc/mm/fault.c -6409196eba4752c3a56bead2e397a391 linux-3.0/arch/parisc/mm/Makefile -0b939e0f3ec9daa37d1f01420b8e8c5a linux-3.0/arch/parisc/math-emu/sgl_float.h -00a7366c26806e4e5fe46333c2907f70 linux-3.0/arch/parisc/math-emu/sfsub.c -5c34939c8ad85ac0e77e1f8507b147ca linux-3.0/arch/parisc/math-emu/sfsqrt.c -d3b85df6c02da1019fb95ef2ab24c8d5 linux-3.0/arch/parisc/math-emu/sfrem.c -5da6068b2aed9d8af937d41db706bb39 linux-3.0/arch/parisc/math-emu/sfmpy.c -2442d3d858c4ec202293c2261cb4181d linux-3.0/arch/parisc/math-emu/sfdiv.c -11a5a7bb3047e01188c708163dc6d5d6 linux-3.0/arch/parisc/math-emu/sfcmp.c -7229ce3f62d01d50c1380743a0daa622 linux-3.0/arch/parisc/math-emu/sfadd.c -87933ee2a46d3c45864e87fd0374aa82 linux-3.0/arch/parisc/math-emu/math-emu.h -826b5704ec82e5f2afaf4895ff19ad63 linux-3.0/arch/parisc/math-emu/hppa.h -caf6df2ad0cfad9943096ce1fa3cb9eb linux-3.0/arch/parisc/math-emu/frnd.c -c8a6d59785b2199b45b9379682df1711 linux-3.0/arch/parisc/math-emu/fpudispatch.c -6583853abf5dd0510a67ced2658113d1 linux-3.0/arch/parisc/math-emu/fpu.h -ea8e79c513738baa9b193a2b35940439 linux-3.0/arch/parisc/math-emu/fpbits.h -16bc0374929dafeeb0fa809178e0a18d linux-3.0/arch/parisc/math-emu/fmpyfadd.c -f65fe247b8ca9263ccae8af581fd0f73 linux-3.0/arch/parisc/math-emu/float.h -26c74e93ecfbe6cc416183a8cefcd38b linux-3.0/arch/parisc/math-emu/fcnvxf.c -1d2875b45160fdfc6dd14f1b45caad64 linux-3.0/arch/parisc/math-emu/fcnvuf.c -bbbc2f55d62adfda674cf195c583eadd linux-3.0/arch/parisc/math-emu/fcnvfxt.c -7b7fcdc472d2ca7e3c3732a6129ea05c linux-3.0/arch/parisc/math-emu/fcnvfx.c -bfa488d8f4fc8f4d2ebb79c7f018ca00 linux-3.0/arch/parisc/math-emu/fcnvfut.c -9e7bfb0ce27c0927010528242e001086 linux-3.0/arch/parisc/math-emu/fcnvfu.c -0ffdfb4a6cf608d0a5df2b03c3630c3c linux-3.0/arch/parisc/math-emu/fcnvff.c -edc9feb7930fee290779e24b91ad80cb linux-3.0/arch/parisc/math-emu/driver.c -f1088df64a4a49ab277dc02b94d72107 linux-3.0/arch/parisc/math-emu/dfsub.c -fa06233b2bfbc614bcb270eafde5f709 linux-3.0/arch/parisc/math-emu/dfsqrt.c -3f748efc3c2abe1e256169e91e6a0d82 linux-3.0/arch/parisc/math-emu/dfrem.c -81d1d312d03156431c7b4fa406124806 linux-3.0/arch/parisc/math-emu/dfmpy.c -38d4f599202309b33676ef665629bc0d linux-3.0/arch/parisc/math-emu/dfdiv.c -5e06c5e13716517845216ef9f5f3f497 linux-3.0/arch/parisc/math-emu/dfcmp.c -4c8963783eb47ae57e1c6aa6f6d3fc89 linux-3.0/arch/parisc/math-emu/dfadd.c -24fe78b8730e4868cdaad780076ea8d6 linux-3.0/arch/parisc/math-emu/denormal.c -34933e7d5ee40da3bd5b9ed4c5e3d371 linux-3.0/arch/parisc/math-emu/decode_exc.c -57f2909df64b9bdb285bb4309763a6d3 linux-3.0/arch/parisc/math-emu/dbl_float.h -273eb2a34e2d1aa1f9da87eecb072be3 linux-3.0/arch/parisc/math-emu/cnv_float.h -36ac66030428a8c3fc6a7e7afd7fda6a linux-3.0/arch/parisc/math-emu/README -453812650a550e943f3896778058a213 linux-3.0/arch/parisc/math-emu/Makefile -e8068eac81722e0f7ba8086f37b22f1e linux-3.0/arch/parisc/lib/memset.c -c68e3ad1efdf6efcaa5f7089e0a02b68 linux-3.0/arch/parisc/lib/memcpy.c -7a80e6d66d13ad12ade3d3a7d0a96ceb linux-3.0/arch/parisc/lib/lusercopy.S -dcb3e62ac8b1e1452c0b2886aa2f9961 linux-3.0/arch/parisc/lib/iomap.c -5863eb34c8cdbd3da1765ac288d5225d linux-3.0/arch/parisc/lib/io.c -6c202d6bcc28b700b297781a251ee35c linux-3.0/arch/parisc/lib/fixup.S -f988b6817a155e2dc2d17c9885d364e0 linux-3.0/arch/parisc/lib/checksum.c -979544818d4921f260394e93a7c97828 linux-3.0/arch/parisc/lib/bitops.c -d1acf44327681d6f73bc48f4b656914b linux-3.0/arch/parisc/lib/Makefile -3e38adc821c22cb8421b951ea6443e07 linux-3.0/arch/parisc/kernel/vmlinux.lds.S -87744ff8738195ef0b325a327b8719d1 linux-3.0/arch/parisc/kernel/unwind.c -b54c8c2cc309f069d85572de60c48afc linux-3.0/arch/parisc/kernel/unaligned.c -9adfe893ee9ae922a937f0cae9ea1aa7 linux-3.0/arch/parisc/kernel/traps.c -4c3e64ea6a846b57914d4a8e73d355b4 linux-3.0/arch/parisc/kernel/topology.c -cb22b4b15267584793a45884aae48a0b linux-3.0/arch/parisc/kernel/time.c -7ad40bc14ad29cceaf2aecc36049f6cb linux-3.0/arch/parisc/kernel/syscall_table.S -30a77da5e962e0c912fc13014f7284c1 linux-3.0/arch/parisc/kernel/syscall.S -85add099ccfc9fe7598169dd2cb7924d linux-3.0/arch/parisc/kernel/sys_parisc32.c -b65e94011128fd1ff66ba6e70af46172 linux-3.0/arch/parisc/kernel/sys_parisc.c -0051ff0fa27b1de472302e45c7ddbe43 linux-3.0/arch/parisc/kernel/sys32.h -f2da988bff4cb7c0fe2f89687a2e3f4f linux-3.0/arch/parisc/kernel/stacktrace.c -66c948c4e6eb5e9516d29dbe22b0aa58 linux-3.0/arch/parisc/kernel/smp.c -6f0ba6bb5093367872df8d61d83232fc linux-3.0/arch/parisc/kernel/signal32.h -2aea9f464f8731ef7616f3fbf3dbb203 linux-3.0/arch/parisc/kernel/signal32.c -fbbf7e81165e1d7523abe93391fe7d2f linux-3.0/arch/parisc/kernel/signal.c -c1d152c2da1bc75bbf6896a8c0d04450 linux-3.0/arch/parisc/kernel/setup.c -ff2a437858c21ca2e02020ac3fb12b55 linux-3.0/arch/parisc/kernel/real2.S -d7cd78f1f9067a8e65c36a1f4d14ecfa linux-3.0/arch/parisc/kernel/ptrace.c -07fe0a63c6ab8ea2599cf0fe7cd1aaba linux-3.0/arch/parisc/kernel/processor.c -6df635a7906594b3497d6c89b6a48d70 linux-3.0/arch/parisc/kernel/process.c -7fb708fbc5d169d924b8ceca65be71df linux-3.0/arch/parisc/kernel/perf_images.h -b1ec45d7bc18bb8f054b5b1bf9dca158 linux-3.0/arch/parisc/kernel/perf_asm.S -4a19c82d6fd3a6dd155ec89bac0020a2 linux-3.0/arch/parisc/kernel/perf.c -2dec1433dcc75874eec02090880d12f9 linux-3.0/arch/parisc/kernel/pdc_cons.c -286bfb11e312792f2b53e2d1c235bf02 linux-3.0/arch/parisc/kernel/pdc_chassis.c -b029478c9ada8eb599636958bed1e550 linux-3.0/arch/parisc/kernel/pci.c -2e70731dbe3d8564a11a581f0ae75e34 linux-3.0/arch/parisc/kernel/pci-dma.c -3bb962a1a3072bf16d3a0ab2520e72e2 linux-3.0/arch/parisc/kernel/parisc_ksyms.c -7d0be62cc5e1011ddceb0ea70b15ebd7 linux-3.0/arch/parisc/kernel/pacache.S -5906242c3e3dd86f2167de8418f83364 linux-3.0/arch/parisc/kernel/pa7300lc.c -53abb519b14ced267dcd795966e133eb linux-3.0/arch/parisc/kernel/module.c -770ff1a7b22aa5dbe7c63db8c0ab2a0b linux-3.0/arch/parisc/kernel/irq.c -f381b48f283c6e8c436fe19d6294f7a4 linux-3.0/arch/parisc/kernel/inventory.c -b44238c9e18cf8039835b1f1bfe2a21d linux-3.0/arch/parisc/kernel/init_task.c -ad82ef174fb5837569bf6a56f61d849c linux-3.0/arch/parisc/kernel/hpmc.S -5106fbe8c09403fe1605213690dc3ef9 linux-3.0/arch/parisc/kernel/head.S -b340ff448082acb7962821a9b43e3c4e linux-3.0/arch/parisc/kernel/hardware.c -7eaba66a58869cdf157b25b7e5099a6c linux-3.0/arch/parisc/kernel/ftrace.c -0080449d520fc9220269b1275b47a8e3 linux-3.0/arch/parisc/kernel/firmware.c -4cf65885aa2ca2b9d821d940155a132c linux-3.0/arch/parisc/kernel/entry.S -5d66218339b452270e82f62df2041da4 linux-3.0/arch/parisc/kernel/drivers.c -7c48b7f227132c1815526f2a139c8d2b linux-3.0/arch/parisc/kernel/cache.c -c65d22edecc682253acc7a32b4e9e5bd linux-3.0/arch/parisc/kernel/binfmt_elf32.c -faef184a13322ce373332c9a0b53448d linux-3.0/arch/parisc/kernel/asm-offsets.c -9441b5195bfa57dc0f3fbaf971d98002 linux-3.0/arch/parisc/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/parisc/kernel/.gitignore -01352f1f14672296074fa04cbdf7630f linux-3.0/arch/parisc/install.sh -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/parisc/include/asm/xor.h -01bc0b072529093d99bca3564ad306c4 linux-3.0/arch/parisc/include/asm/vga.h -4cc187facee45410e27aead102513b9e linux-3.0/arch/parisc/include/asm/user.h -1d18cb7badc1ed257cae2d679b5b0f3a linux-3.0/arch/parisc/include/asm/unwind.h -2fa666c3a320a76c50018d364a522410 linux-3.0/arch/parisc/include/asm/unistd.h -ad6da399f1d38b27d71410a13a5227ab linux-3.0/arch/parisc/include/asm/unaligned.h -536a88f69e0aa875ea427fbe2b677510 linux-3.0/arch/parisc/include/asm/ucontext.h -254734bf9a05833993ce5994c1363ad7 linux-3.0/arch/parisc/include/asm/uaccess.h -c8a9d20ca2e00643d427397d727d1d5e linux-3.0/arch/parisc/include/asm/types.h -3d76f79a2c13f03ed10d489a35caab1c linux-3.0/arch/parisc/include/asm/traps.h -772c9cc4bc5476c27c5fae085090ec49 linux-3.0/arch/parisc/include/asm/topology.h -ab90cb4cbbd1f2c059f95e38f10fecf0 linux-3.0/arch/parisc/include/asm/tlbflush.h -ca027aeba1a2122273c19ac6414c4f10 linux-3.0/arch/parisc/include/asm/tlb.h -e55a0afff422d09dcc6b1529e44f8fbc linux-3.0/arch/parisc/include/asm/timex.h -88ba03d3e360d80f2b55a67458384783 linux-3.0/arch/parisc/include/asm/thread_info.h -9240bd7074d12ce3d146b7c13d3c7293 linux-3.0/arch/parisc/include/asm/termios.h -abca043b8c3b12f7b484e61847d7859a linux-3.0/arch/parisc/include/asm/termbits.h -b2fee4ef86f6340c2b3be8f69deee091 linux-3.0/arch/parisc/include/asm/system.h -906d2ff766ea2451f56f748b65c2df62 linux-3.0/arch/parisc/include/asm/syscall.h -e3375491ece36f73e11a49962bfd9f49 linux-3.0/arch/parisc/include/asm/swab.h -26e4b9d7a4226165da46a605eae0de29 linux-3.0/arch/parisc/include/asm/superio.h -42863a38478308a561818e38aa65f3a2 linux-3.0/arch/parisc/include/asm/string.h -6fd6aaa1657e7b05c4375c7959a431f0 linux-3.0/arch/parisc/include/asm/statfs.h -29554f8db0415e133223af8b6a4ec492 linux-3.0/arch/parisc/include/asm/stat.h -5f7f51feea3f4e69cc868efc437bd14b linux-3.0/arch/parisc/include/asm/spinlock_types.h -a15bd7f090f63c37c89da19851b7fb3c linux-3.0/arch/parisc/include/asm/spinlock.h -dfb6bec6a7be9b9e171858e6da187dd5 linux-3.0/arch/parisc/include/asm/sockios.h -a50182f200d255bbe3708b9054a96cfb linux-3.0/arch/parisc/include/asm/socket.h -d4e20ca30683566ff45d2a74064fca32 linux-3.0/arch/parisc/include/asm/smp.h -1aed368e86f65216ba76e0a29d6b3cba linux-3.0/arch/parisc/include/asm/signal.h -39a94e3acaf07cb269b4e287e2fc0a3e linux-3.0/arch/parisc/include/asm/siginfo.h -f2123fd419e02721413c927a56a23c60 linux-3.0/arch/parisc/include/asm/sigcontext.h -647db415178b4a660c102d4a65ae8ca2 linux-3.0/arch/parisc/include/asm/shmparam.h -cad956e04d2b8365bee54d4565dd8143 linux-3.0/arch/parisc/include/asm/shmbuf.h -f4fe90812cf4885d06138b4d7654d957 linux-3.0/arch/parisc/include/asm/setup.h -eb8e2054110ef53800a60483301fb596 linux-3.0/arch/parisc/include/asm/serial.h -0c86a93e23350da25fe547b6e4f469d1 linux-3.0/arch/parisc/include/asm/sembuf.h -b4eb7cd4e3d632799774eeeaeb7b8063 linux-3.0/arch/parisc/include/asm/segment.h -124c98e40aea35e7cd574f5824bbe15a linux-3.0/arch/parisc/include/asm/sections.h -e581dcf957add58efb00495fb549c33d linux-3.0/arch/parisc/include/asm/scatterlist.h -804a5c0f70b5a921cc1b2e3722718a7d linux-3.0/arch/parisc/include/asm/runway.h -072e783a6c379d736929c56188c5ffc5 linux-3.0/arch/parisc/include/asm/rtc.h -ef34cd31b68897fe8d945b9599549daa linux-3.0/arch/parisc/include/asm/rt_sigframe.h -c4f42dd24e513eac2ebae72bcf404ed8 linux-3.0/arch/parisc/include/asm/ropes.h -7759b8811d8a3c03ba57523a62cdac98 linux-3.0/arch/parisc/include/asm/resource.h -6451c9bcd547ad57f358a6b7bb800e3d linux-3.0/arch/parisc/include/asm/real.h -75d2ed789596b55556d4ec8066d13812 linux-3.0/arch/parisc/include/asm/ptrace.h -d6a298c5d197022246f4d10fb6222722 linux-3.0/arch/parisc/include/asm/psw.h -04c991f18b6b17418d9265d451f87a8c linux-3.0/arch/parisc/include/asm/processor.h -fa5bbce0ebc5a6ff2840bbbf02618e80 linux-3.0/arch/parisc/include/asm/prefetch.h -e888cdc074887ea850ee90a789366bc4 linux-3.0/arch/parisc/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/parisc/include/asm/poll.h -bbffd1d0d79ecc928d41b9cbd719687f linux-3.0/arch/parisc/include/asm/pgtable.h -7b683a6ed07d15f75b9ec2a24474ba9b linux-3.0/arch/parisc/include/asm/pgalloc.h -d065991c7c3ff84a0d817ef5ce03008e linux-3.0/arch/parisc/include/asm/perf_event.h -485b05773f53c635e556a756dfc822d4 linux-3.0/arch/parisc/include/asm/perf.h -6d169d8ba1e9158aca7979fbada17b34 linux-3.0/arch/parisc/include/asm/percpu.h -b73e7862dca324b3d08c7969ca5fc61c linux-3.0/arch/parisc/include/asm/pdcpat.h -b017e4b715824a0d48f464f911728ced linux-3.0/arch/parisc/include/asm/pdc_chassis.h -877f19dd74d5bc219c533d130c528515 linux-3.0/arch/parisc/include/asm/pdc.h -5dd4827fec04fe1016b3726959f6bf3d linux-3.0/arch/parisc/include/asm/pci.h -1cbee7929fb0a532e9efd8eeecb649a9 linux-3.0/arch/parisc/include/asm/parport.h -45315c803126c26d00fdd3704b05033d linux-3.0/arch/parisc/include/asm/parisc-device.h -29dbb685f25e0e09aa59624964e2b815 linux-3.0/arch/parisc/include/asm/param.h -224d7483a8d39b87f487e549ba3099af linux-3.0/arch/parisc/include/asm/page.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/parisc/include/asm/mutex.h -5d87bc377e5008d4396cdef7d2ed4d65 linux-3.0/arch/parisc/include/asm/msgbuf.h -ce2a225b1e39451da649c2d8dfb6bd94 linux-3.0/arch/parisc/include/asm/module.h -3b23ea7b8f83c7317adc2af0ce14f971 linux-3.0/arch/parisc/include/asm/mmzone.h -475fbac443dd20a5fffb0edd99d48398 linux-3.0/arch/parisc/include/asm/mmu_context.h -d4ae2e16427742f65db60f0196bf0939 linux-3.0/arch/parisc/include/asm/mmu.h -eef92c5cf1e4d75703c2597ff23b0990 linux-3.0/arch/parisc/include/asm/mman.h -3a6565e3f936b5095ea23d5657a8543e linux-3.0/arch/parisc/include/asm/mckinley.h -da5aa94f9f978c89d44faf954c41a48d linux-3.0/arch/parisc/include/asm/mc146818rtc.h -f184812283ab819aee7e9e51680677d7 linux-3.0/arch/parisc/include/asm/machdep.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/parisc/include/asm/local64.h -dd5c2452f777c57e923e1b3de9ac2c14 linux-3.0/arch/parisc/include/asm/local.h -dd102c1496784807a8c6dab2de9010f5 linux-3.0/arch/parisc/include/asm/linkage.h -7117ccb0b09c9cac0142d52dbaa2c667 linux-3.0/arch/parisc/include/asm/led.h -cda6d18fc09fe88c1e86088a6ca217da linux-3.0/arch/parisc/include/asm/kmap_types.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/parisc/include/asm/kdebug.h -4f50412a1dbfeb90735e15ea227c28df linux-3.0/arch/parisc/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/parisc/include/asm/irq_regs.h -57cbfb3b591dd39c5fe34e1ba2865d93 linux-3.0/arch/parisc/include/asm/irq.h -cff642aa56abaceda0198bc8681af419 linux-3.0/arch/parisc/include/asm/ipcbuf.h -2f080db28212e94ec1fd228fb105ade4 linux-3.0/arch/parisc/include/asm/ioctls.h -90a6b253ccb96b765669fb9ccbf90f63 linux-3.0/arch/parisc/include/asm/ioctl.h -152819186fe790278fc470460a12a77c linux-3.0/arch/parisc/include/asm/io.h -b789ac5a3501145c11c29e0b06031a3d linux-3.0/arch/parisc/include/asm/ide.h -a400dcf28aabaf188a42f8d5852b6aa0 linux-3.0/arch/parisc/include/asm/hw_irq.h -53566aefd51ac818d126f5dc3621c851 linux-3.0/arch/parisc/include/asm/hardware.h -b1f0ccf77fad1bc698b8333c43f496e6 linux-3.0/arch/parisc/include/asm/hardirq.h -06d5c2501cd5e33086e9b49730e465d4 linux-3.0/arch/parisc/include/asm/grfioctl.h -b7970b921e3cc1604a57fdaf309a5cc0 linux-3.0/arch/parisc/include/asm/futex.h -dea283acb0fe4ee1853a3475a5397104 linux-3.0/arch/parisc/include/asm/ftrace.h -2f68ff1d08a83838fe7752a26d8fffa6 linux-3.0/arch/parisc/include/asm/floppy.h -69a770dc4395b5ebfedf91ce0f2bee37 linux-3.0/arch/parisc/include/asm/fixmap.h -5185bce65015a6146f4bfa5795814971 linux-3.0/arch/parisc/include/asm/fcntl.h -4e3d603824ac6d0cea85be20ab946e1e linux-3.0/arch/parisc/include/asm/fb.h -94e847564720533301de11353b2edbd0 linux-3.0/arch/parisc/include/asm/errno.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/parisc/include/asm/emergency-restart.h -7433149a829833cdb454dcd559ef9cd2 linux-3.0/arch/parisc/include/asm/elf.h -fec3065c24d73e11c0ad1fd927eef01b linux-3.0/arch/parisc/include/asm/eisa_eeprom.h -dd6918ee039e1e3fafcdd58968328c33 linux-3.0/arch/parisc/include/asm/eisa_bus.h -1c54899e81953a997f62ee99278c447f linux-3.0/arch/parisc/include/asm/dma.h -982089a9b36ca032f66076fe0791200a linux-3.0/arch/parisc/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/parisc/include/asm/div64.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/parisc/include/asm/device.h -219d9ba2e742020fcbb24a683670aade linux-3.0/arch/parisc/include/asm/delay.h -0138687f0f83cc12d13e66889b96affd linux-3.0/arch/parisc/include/asm/current.h -fd5a7c7b8ebec102ff7ba279c29669c8 linux-3.0/arch/parisc/include/asm/cputime.h -80f8c41b6dd1cb5f1692fbd204300e2c linux-3.0/arch/parisc/include/asm/compat_ucontext.h -334f73fe5e752faae5a83587d45e5f27 linux-3.0/arch/parisc/include/asm/compat_signal.h -73c341338a9e4614374b739233adc0cf linux-3.0/arch/parisc/include/asm/compat_rt_sigframe.h -c275923cdffeed4f01d192533f5f38e3 linux-3.0/arch/parisc/include/asm/compat.h -daf5e407365e18c1146b60454df31514 linux-3.0/arch/parisc/include/asm/checksum.h -624ac16689378564f22775b029e8efe1 linux-3.0/arch/parisc/include/asm/cacheflush.h -768980b825d2df7d2ecc16150c5f6a36 linux-3.0/arch/parisc/include/asm/cache.h -93d558ff475ba8eb4a5679de52d27fc1 linux-3.0/arch/parisc/include/asm/byteorder.h -b6348abb184ed9b551f6a2c8248e3ca3 linux-3.0/arch/parisc/include/asm/bugs.h -a88051590b6a099d0de16aaf165a7a47 linux-3.0/arch/parisc/include/asm/bug.h -9d995ca230f4a45d27308400d29afbfb linux-3.0/arch/parisc/include/asm/bitsperlong.h -666f7d8f54dbdac31c1b30ac4961db54 linux-3.0/arch/parisc/include/asm/bitops.h -46b5d8d391a5c3c5952248ebee2ca4e1 linux-3.0/arch/parisc/include/asm/auxvec.h -9eeb1dd5a853894e7f2b4a8335e95e28 linux-3.0/arch/parisc/include/asm/atomic.h -10204941b67622d4161472988faf0ea6 linux-3.0/arch/parisc/include/asm/assembly.h -259795f31f8b60698d0e91cf26c06706 linux-3.0/arch/parisc/include/asm/asmregs.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/parisc/include/asm/asm-offsets.h -fc6bfae986d2b956000e292f940609da linux-3.0/arch/parisc/include/asm/agp.h -13e72c16b013dbe8996e4c34f5984c7c linux-3.0/arch/parisc/include/asm/Kbuild -b306dc568cafeca00f32299072ece3d3 linux-3.0/arch/parisc/hpux/wrappers.S -51c3a6b45f71fa7bb5c725a33c2b3543 linux-3.0/arch/parisc/hpux/sys_hpux.c -4250456c68cfee3885cb62b1c5c0946e linux-3.0/arch/parisc/hpux/ioctl.c -683342919cc4011ce17bcdf1f7f1f250 linux-3.0/arch/parisc/hpux/gate.S -8d8fcc3fca265b2bd167fc1db1651870 linux-3.0/arch/parisc/hpux/fs.c -7cd06297ebf7d6a009a787bdd44cde18 linux-3.0/arch/parisc/hpux/entry_hpux.S -ffabc536dc8252eb4d4c404769bf9de0 linux-3.0/arch/parisc/hpux/Makefile -4c426f5649e5ba30f25bbcfc7dafe39e linux-3.0/arch/parisc/defpalo.conf -5f9b7505f254b94e8ad771d52d5b3ef9 linux-3.0/arch/parisc/configs/default_defconfig -3a3ab0d9f8b874060319a91ef7846748 linux-3.0/arch/parisc/configs/c3000_defconfig -7b242da68703c4be63e577da0036d40d linux-3.0/arch/parisc/configs/b180_defconfig -66a428cf336a567e1edff7adf1787913 linux-3.0/arch/parisc/configs/a500_defconfig -18c4c6a5a74aad1c062000d63af18aee linux-3.0/arch/parisc/configs/712_defconfig -89bd21ad992d78dd8a73953740a54cd3 linux-3.0/arch/parisc/Makefile -20a497d04588823743aec47e2dd3646b linux-3.0/arch/parisc/Kconfig.debug -af65c38fda40979eafe29878fffc553b linux-3.0/arch/parisc/Kconfig -4261e3ebdbb27ade197e1b4b786e0c88 linux-3.0/arch/mn10300/unit-asb2364/unit-init.c -e1c12289d780fa79e85da2ee4001542b linux-3.0/arch/mn10300/unit-asb2364/smsc911x.c -de8d41efb9e718adfcec5e6e2251957a linux-3.0/arch/mn10300/unit-asb2364/leds.c -b904a026606ce6109019babee7180ce8 linux-3.0/arch/mn10300/unit-asb2364/irq-fpga.c -4b9ac27a0fa29a28732306618417d84a linux-3.0/arch/mn10300/unit-asb2364/include/unit/timex.h -dc40294d468d62adbfd84a15792b28ec linux-3.0/arch/mn10300/unit-asb2364/include/unit/smsc911x.h -b98e7e9f2abd0837414dcc2206a46ca0 linux-3.0/arch/mn10300/unit-asb2364/include/unit/serial.h -bbaa4584f22fc2e53fda4de65dea36cc linux-3.0/arch/mn10300/unit-asb2364/include/unit/leds.h -23b64dd2e6acec882455908f9130bcda linux-3.0/arch/mn10300/unit-asb2364/include/unit/irq.h -7811d47c24344ed38574cff349de7e47 linux-3.0/arch/mn10300/unit-asb2364/include/unit/fpga-regs.h -1307c0ec5b865c35e6e3505694b7f667 linux-3.0/arch/mn10300/unit-asb2364/include/unit/clock.h -9d2a49f3ca09dc25dc83e9c039672f84 linux-3.0/arch/mn10300/unit-asb2364/Makefile -7d18d89a05f683e0f08d4c092ee449a1 linux-3.0/arch/mn10300/unit-asb2305/unit-init.c -5e33fca54421b0b0ce432f25a0c9cc93 linux-3.0/arch/mn10300/unit-asb2305/pci.c -ea43bb368d90f609c57f94114b5f61a3 linux-3.0/arch/mn10300/unit-asb2305/pci-irq.c -4a8a5f54299e180c2a839c46aadae0a5 linux-3.0/arch/mn10300/unit-asb2305/pci-iomap.c -f5679af30e04b55a2050b790a20fa43f linux-3.0/arch/mn10300/unit-asb2305/pci-asb2305.h -9a7ee1d8bb4f1c18d13f4b96b4fab99b linux-3.0/arch/mn10300/unit-asb2305/pci-asb2305.c -45199dc63ac776ebd1109e7099a481d0 linux-3.0/arch/mn10300/unit-asb2305/leds.c -e6910f889777b1b1ffcf7619a1894070 linux-3.0/arch/mn10300/unit-asb2305/include/unit/timex.h -25f611ec9ce3f30cc87a9b2965022d07 linux-3.0/arch/mn10300/unit-asb2305/include/unit/serial.h -c402e8b6847600dc91049ab024fa4ca1 linux-3.0/arch/mn10300/unit-asb2305/include/unit/leds.h -8d8cb1a89c8dd5cd9c9958501fb36462 linux-3.0/arch/mn10300/unit-asb2305/include/unit/clock.h -1e45e4b69e2b6709535860ff6e201216 linux-3.0/arch/mn10300/unit-asb2305/Makefile -655db21fae0f93367b22a4cb1092accf linux-3.0/arch/mn10300/unit-asb2303/unit-init.c -a23925ba5cf40c5e23a63e1b4969f967 linux-3.0/arch/mn10300/unit-asb2303/smc91111.c -0589709d22f59a681ab72ceda65e2f93 linux-3.0/arch/mn10300/unit-asb2303/leds.c -43da69ac7434c569d6951b3de1a69d39 linux-3.0/arch/mn10300/unit-asb2303/include/unit/timex.h -37f0f27a66df5497ac14e6f3f3eb25d8 linux-3.0/arch/mn10300/unit-asb2303/include/unit/smc91111.h -c132eb561ed230b20e83269ff883411b linux-3.0/arch/mn10300/unit-asb2303/include/unit/serial.h -3706c800d5794a808ac5a477c5d05f7b linux-3.0/arch/mn10300/unit-asb2303/include/unit/leds.h -d8ddd4e439d909afe233cb9ff3f25778 linux-3.0/arch/mn10300/unit-asb2303/include/unit/clock.h -8329a4a2c345861f41eed13c5e5107b9 linux-3.0/arch/mn10300/unit-asb2303/flash.c -43a5906df7da2eeb89869d869d69891f linux-3.0/arch/mn10300/unit-asb2303/Makefile -eeb8394ec7a2e157b15c10a052b76688 linux-3.0/arch/mn10300/proc-mn2ws0050/proc-init.c -97660d9202a9a744d561febd3ac3a1ee linux-3.0/arch/mn10300/proc-mn2ws0050/include/proc/smp-regs.h -f15a1ca0c9e0e22a017a8462e8965cd7 linux-3.0/arch/mn10300/proc-mn2ws0050/include/proc/proc.h -bd61c098fe9e51dbdcc501869ffabeda linux-3.0/arch/mn10300/proc-mn2ws0050/include/proc/nand-regs.h -0f1c82eec83ac188a2b3740f6df65a7f linux-3.0/arch/mn10300/proc-mn2ws0050/include/proc/irq.h -4e9d8d9e0227dee28fa8c3aa9a314909 linux-3.0/arch/mn10300/proc-mn2ws0050/include/proc/intctl-regs.h -cfe462091c580dfce78198618cd18bd3 linux-3.0/arch/mn10300/proc-mn2ws0050/include/proc/dmactl-regs.h -eb6a3daf83ba188a59d74c9e0322cb1f linux-3.0/arch/mn10300/proc-mn2ws0050/include/proc/clock.h -3ce3d8eda4d8c520706ce2b6df6fe8d8 linux-3.0/arch/mn10300/proc-mn2ws0050/include/proc/cache.h -0e5e50e22a6050a44e4048f9c9840a13 linux-3.0/arch/mn10300/proc-mn2ws0050/Makefile -aa237c127f9dc43736aef286768d13c2 linux-3.0/arch/mn10300/proc-mn103e010/proc-init.c -31a70c6c3d491f1db8eb74e48e9e33a5 linux-3.0/arch/mn10300/proc-mn103e010/include/proc/proc.h -c1b66e7a15cd60d29d5a7ec26d635161 linux-3.0/arch/mn10300/proc-mn103e010/include/proc/irq.h -34a4c0495f4cf7132237e081521f9fff linux-3.0/arch/mn10300/proc-mn103e010/include/proc/intctl-regs.h -efcc78e0003890751d0487bfa5cbaba5 linux-3.0/arch/mn10300/proc-mn103e010/include/proc/dmactl-regs.h -3692fd0d6290e83e2aa0bfce71955531 linux-3.0/arch/mn10300/proc-mn103e010/include/proc/clock.h -33b9a05c247ef19305d15facb82106a2 linux-3.0/arch/mn10300/proc-mn103e010/include/proc/cache.h -869190d07159701e8bdc5041e403e185 linux-3.0/arch/mn10300/proc-mn103e010/Makefile -840fa35325fd0351b5e850fb41c8123f linux-3.0/arch/mn10300/oprofile/op_model_null.c -4911fe8919fd09f43ff5847fa7cef213 linux-3.0/arch/mn10300/oprofile/Makefile -01d9d42fa3a67b5e4eaca68bb7d1a1a6 linux-3.0/arch/mn10300/mm/tlb-smp.c -575043bfdc87254e2a5a2243c1bbe429 linux-3.0/arch/mn10300/mm/tlb-mn10300.S -06b8be9ef1858d02aad39d354a5852ce linux-3.0/arch/mn10300/mm/pgtable.c -7d00738dde61116030cda2a2d106fb2b linux-3.0/arch/mn10300/mm/mmu-context.c -964896849a6f068660393af487f80d7c linux-3.0/arch/mn10300/mm/misalignment.c -b8ab137712db244ffb37f0ddd91ff2dc linux-3.0/arch/mn10300/mm/init.c -5ec247d7cc1863c7fb08d326e16d5fd9 linux-3.0/arch/mn10300/mm/fault.c -c3afd72f280f2ac7c1c1621e5b972715 linux-3.0/arch/mn10300/mm/extable.c -9bd185be52459ea996a4a2908b78d9eb linux-3.0/arch/mn10300/mm/dma-alloc.c -6592130b2210e4af372b224b08f7ea24 linux-3.0/arch/mn10300/mm/cache.inc -1d667ad3dc5807c60cc9a9a6da7d7ad0 linux-3.0/arch/mn10300/mm/cache.c -984025b9bf36add7e579358c587139c0 linux-3.0/arch/mn10300/mm/cache-smp.h -8d0b838fda526015c8066b9cb21041a7 linux-3.0/arch/mn10300/mm/cache-smp.c -395c74ad509472c099093bce2ed91cee linux-3.0/arch/mn10300/mm/cache-smp-inv.c -9d7930e5e393badea83e4b6ca736c5d7 linux-3.0/arch/mn10300/mm/cache-smp-flush.c -5e429a02148a4ba037b76a5ff07783b7 linux-3.0/arch/mn10300/mm/cache-inv-icache.c -894abdae7f37ccc51c45a40918422140 linux-3.0/arch/mn10300/mm/cache-inv-by-tag.S -37b1d806a403309738465ab23553b359 linux-3.0/arch/mn10300/mm/cache-inv-by-reg.S -ad90242f040475d4ff26d328aea1b867 linux-3.0/arch/mn10300/mm/cache-flush-icache.c -814342e081b86f3dc5c48f43c34f8e88 linux-3.0/arch/mn10300/mm/cache-flush-by-tag.S -9e92b1db219b4531326188351373e535 linux-3.0/arch/mn10300/mm/cache-flush-by-reg.S -2eeb66ac4cb68de5a789a6ee9c7492f9 linux-3.0/arch/mn10300/mm/cache-disabled.c -c25cb70466b4cbe08c36165838c7c7ec linux-3.0/arch/mn10300/mm/cache-dbg-inv.S -c3dde40d6958b20f1c6c5ed7a809efd0 linux-3.0/arch/mn10300/mm/cache-dbg-inv-by-tag.S -157016ac6fae44a6d7bdb61534e15064 linux-3.0/arch/mn10300/mm/cache-dbg-inv-by-reg.S -6ee9b37c6851e48fbafcc86cfc327559 linux-3.0/arch/mn10300/mm/cache-dbg-flush-by-tag.S -730a7d23ee2ce50ada81ede1e12a4edc linux-3.0/arch/mn10300/mm/cache-dbg-flush-by-reg.S -61a9d206cd1afacd0f38f2eecde3623a linux-3.0/arch/mn10300/mm/Makefile -4cc96819691b800040b86230e3704e9e linux-3.0/arch/mn10300/mm/Kconfig.cache -434c917f55bedf3f0205fd8924abb8fa linux-3.0/arch/mn10300/lib/usercopy.c -0a24288c7ed5aba15beba9ffc3ac377a linux-3.0/arch/mn10300/lib/negdi2.c -ad7cf6b06474a7e779b5e315030f603c linux-3.0/arch/mn10300/lib/memset.S -6b01c53d98b1168e3a7bc2e6b217300c linux-3.0/arch/mn10300/lib/memmove.S -bfe93db00709508ead69fb1b26882e9e linux-3.0/arch/mn10300/lib/memcpy.S -05904c0afd9bfbaed07162a1f6c71ee6 linux-3.0/arch/mn10300/lib/lshrdi3.c -2044b88dc78fae2b2699206403b65fbc linux-3.0/arch/mn10300/lib/internal.h -ab7d59446e581e6706a9f72ca4e1d128 linux-3.0/arch/mn10300/lib/do_csum.S -b6d8b1dd67beb529ca0b74c3923e5afc linux-3.0/arch/mn10300/lib/delay.c -93a1011522a1e48fbfb140a0b3ea29a7 linux-3.0/arch/mn10300/lib/checksum.c -c20addbdd46746da34a93a04371b5d88 linux-3.0/arch/mn10300/lib/bitops.c -5e2ee78d17e305790e7f6091b67d7e72 linux-3.0/arch/mn10300/lib/ashrdi3.c -eb621f03309784fddedf965986f58302 linux-3.0/arch/mn10300/lib/__ucmpdi2.S -2ca39c7b15d2ede4609a9908b01bc2af linux-3.0/arch/mn10300/lib/__lshrdi3.S -f90c2eefd4abb3ffba97dc764b7e028d linux-3.0/arch/mn10300/lib/__ashrdi3.S -a9a54f08cabdfcfb98cb4060b930b2a4 linux-3.0/arch/mn10300/lib/__ashldi3.S -e636948dad212ccde3786e79bf14c021 linux-3.0/arch/mn10300/lib/Makefile -e4821690689865e7bde15a301ca308ea linux-3.0/arch/mn10300/kernel/vmlinux.lds.S -637b6d61e83f4649675baef64b39fbc6 linux-3.0/arch/mn10300/kernel/traps.c -d8b34c9c892e7bd3abeada25a9184beb linux-3.0/arch/mn10300/kernel/time.c -641913039dd14d0abb75ca08fe7843ef linux-3.0/arch/mn10300/kernel/sys_mn10300.c -57bef4f40082f04916db33bf871aa517 linux-3.0/arch/mn10300/kernel/switch_to.S -256adee684334b08747d30cfc6fab906 linux-3.0/arch/mn10300/kernel/smp.c -a32c35724687c3d586bc06625deee33b linux-3.0/arch/mn10300/kernel/smp-low.S -4c6d58163a84f03d878389515a020da3 linux-3.0/arch/mn10300/kernel/signal.c -c990b86a2b152cb0bd5959d05681b1ea linux-3.0/arch/mn10300/kernel/sigframe.h -67656ab8b1e1e7b8bb6894f4b150541a linux-3.0/arch/mn10300/kernel/setup.c -2cae4c2302abe62ee6d74ad595ed329c linux-3.0/arch/mn10300/kernel/rtc.c -83d2cb1db34d7a68e0203bd5a00d00d4 linux-3.0/arch/mn10300/kernel/ptrace.c -95c76be90b800893400020cfde9d33bf linux-3.0/arch/mn10300/kernel/profile.c -5cd08028074d5b64e0336c16bf099545 linux-3.0/arch/mn10300/kernel/profile-low.S -a55508b8b1797c1b1a9dbd8f5b8ffed7 linux-3.0/arch/mn10300/kernel/process.c -7fdde5dd76e7c91261c99cbda9fd29e5 linux-3.0/arch/mn10300/kernel/module.c -ab99f76255a04ed3d3bef5ea1193757f linux-3.0/arch/mn10300/kernel/mn10300_ksyms.c -029dea34d93f5cecaef2a1310342361e linux-3.0/arch/mn10300/kernel/mn10300-watchdog.c -a3586bd8128d60452f5dc438b0ad9290 linux-3.0/arch/mn10300/kernel/mn10300-watchdog-low.S -988474eaf8066c47bf644181fc7f57a8 linux-3.0/arch/mn10300/kernel/mn10300-serial.h -aacc0be186ffdff3d894ae9459d4c4ff linux-3.0/arch/mn10300/kernel/mn10300-serial.c -f756f1e22f7f28c232c54f52a6aa68c4 linux-3.0/arch/mn10300/kernel/mn10300-serial-low.S -52e376e9408a602b677a1ffa296a4674 linux-3.0/arch/mn10300/kernel/mn10300-debug.c -81cdc7158ebff5f51282f0752d9ab54c linux-3.0/arch/mn10300/kernel/kthread.S -35f0dbb68308742599412eecd55d819d linux-3.0/arch/mn10300/kernel/kprobes.c -fd4fad17e0de8ec290d2ca05081dd43e linux-3.0/arch/mn10300/kernel/kgdb.c -2e00d919d36e64bd07aebfc59cf510a9 linux-3.0/arch/mn10300/kernel/kernel_execve.S -5350f38441e521ed37b3c6d4f40e172f linux-3.0/arch/mn10300/kernel/irq.c -01a88b2400ec5f6e5dc98f7af19763a1 linux-3.0/arch/mn10300/kernel/io.c -b85e61624192bb01a164cecea1d2e9d9 linux-3.0/arch/mn10300/kernel/internal.h -545abf983684442f18f91b7596aff8ae linux-3.0/arch/mn10300/kernel/init_task.c -efc93e3a43b728ce64d8f3eb18f7e49c linux-3.0/arch/mn10300/kernel/head.S -6606eb7ccaa32165b3c2de87a0b705e1 linux-3.0/arch/mn10300/kernel/gdb-stub.c -d09e25e458a0d287f428bd339ac3a603 linux-3.0/arch/mn10300/kernel/gdb-low.S -dab3b71b8655beda0a255ad2847362a1 linux-3.0/arch/mn10300/kernel/gdb-io-ttysm.c -10a6085096fdf12170cbd160c58ab10c linux-3.0/arch/mn10300/kernel/gdb-io-ttysm-low.S -7c2a45fa70744431f8575d69e0dc4e2c linux-3.0/arch/mn10300/kernel/gdb-io-serial.c -580bc807e3076d7fc237f8a9d94376f6 linux-3.0/arch/mn10300/kernel/gdb-io-serial-low.S -6333f4030e81d0b7958cb593b015ed0a linux-3.0/arch/mn10300/kernel/fpu.c -c086afcfbf77e5d51089ea989872aca3 linux-3.0/arch/mn10300/kernel/fpu-nofpu.c -27d0b6b96528cc50b0c73c3257deaf89 linux-3.0/arch/mn10300/kernel/fpu-nofpu-low.S -5f6927564c2db6cd65197b3331b12e7c linux-3.0/arch/mn10300/kernel/fpu-low.S -bb322567643b493f50b437cc992d3b61 linux-3.0/arch/mn10300/kernel/entry.S -1b87db7868302a2db2a04784856a8b2d linux-3.0/arch/mn10300/kernel/csrc-mn10300.c -bf8dfff01fd18cf9d8a770b8a2a11769 linux-3.0/arch/mn10300/kernel/cevt-mn10300.c -140e0efa56dc00daa435478016d42680 linux-3.0/arch/mn10300/kernel/asm-offsets.c -c030fddd1eeec049245b52adb50d221f linux-3.0/arch/mn10300/kernel/Makefile -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/mn10300/include/asm/xor.h -c2819121848e26460a48b20cabf4ee4c linux-3.0/arch/mn10300/include/asm/vga.h -cb01e4b7c8ca2baa27fd4f5761721b33 linux-3.0/arch/mn10300/include/asm/user.h -b63c58eea1e792b01c1ca1d28a8b189b linux-3.0/arch/mn10300/include/asm/unistd.h -65d2ab6934fa9b691fbba93c5997c3aa linux-3.0/arch/mn10300/include/asm/unaligned.h -9c57ced0e40678b572f84100695340ea linux-3.0/arch/mn10300/include/asm/ucontext.h -a48f772178fbae0e249da73359306bbc linux-3.0/arch/mn10300/include/asm/uaccess.h -8b6a0bb11ce7466e1bac1e239d675285 linux-3.0/arch/mn10300/include/asm/types.h -dd5e1564a7aba8918049ff3c36a9729e linux-3.0/arch/mn10300/include/asm/topology.h -39c9b130805eafe097af13f3bd115846 linux-3.0/arch/mn10300/include/asm/tlbflush.h -b008fe0f2308323d0d74c6f805ffccd0 linux-3.0/arch/mn10300/include/asm/tlb.h -17be17fa095e4c009b1ffe0ae60a9094 linux-3.0/arch/mn10300/include/asm/timex.h -da4a8951c9e3a72985441e0302f25764 linux-3.0/arch/mn10300/include/asm/timer-regs.h -f0c5885d2b8583a2bb09c62f6bf35631 linux-3.0/arch/mn10300/include/asm/thread_info.h -919e4d2c4ce7cafc6f651abad344fb3f linux-3.0/arch/mn10300/include/asm/termios.h -9bb22bb64cc3743bbe57342ecb191d79 linux-3.0/arch/mn10300/include/asm/termbits.h -4982735830334e3bdfa551e1b82631d1 linux-3.0/arch/mn10300/include/asm/system.h -e256fbd45831da6db47b22c43eeb27c9 linux-3.0/arch/mn10300/include/asm/syscall.h -a5066091509e202f97b388eef9822bbb linux-3.0/arch/mn10300/include/asm/swab.h -e531a26527d87e0aa9f392e9d21408b6 linux-3.0/arch/mn10300/include/asm/string.h -4b9103b93197bd194432f9b1415d31dd linux-3.0/arch/mn10300/include/asm/statfs.h -d50a8fb50e7c424fffd8b7733d2e8a67 linux-3.0/arch/mn10300/include/asm/stat.h -dbb7aa5586e10f8fc21bc56a220481c5 linux-3.0/arch/mn10300/include/asm/spinlock_types.h -4499edcf00bc673393f81faea605bf33 linux-3.0/arch/mn10300/include/asm/spinlock.h -20da27df576ae4b284a5bb4e9e7fc6de linux-3.0/arch/mn10300/include/asm/sockios.h -54a11e8f2d8e154d2282ee6f27ec8a8e linux-3.0/arch/mn10300/include/asm/socket.h -14895fa938f607e29a051a16754ee278 linux-3.0/arch/mn10300/include/asm/smsc911x.h -bdb7610b5a6c850824250f88ff3af93c linux-3.0/arch/mn10300/include/asm/smp.h -18f9c4f2fa61a5097ff788ea76274a28 linux-3.0/arch/mn10300/include/asm/signal.h -f9872b768e941b1daab4835e75467ef3 linux-3.0/arch/mn10300/include/asm/siginfo.h -81ee036d0ffd7191f64efb7d1f1138a6 linux-3.0/arch/mn10300/include/asm/sigcontext.h -6f97302bde7f94612d43196457e1ec25 linux-3.0/arch/mn10300/include/asm/shmparam.h -f9fa3c3d97e7dc5f6a5f1ac1695b0499 linux-3.0/arch/mn10300/include/asm/shmbuf.h -a67bdabfd102d14cb487de275a007e7c linux-3.0/arch/mn10300/include/asm/setup.h -2bc391a88e1ac8f9a462ae562557317c linux-3.0/arch/mn10300/include/asm/serial.h -4518309e001b1558742fa867185f75b8 linux-3.0/arch/mn10300/include/asm/serial-regs.h -6b9815d4cd493a60ff89b5c6bba0741c linux-3.0/arch/mn10300/include/asm/sembuf.h -b54e28489546e6c97063c2fc9eb080a0 linux-3.0/arch/mn10300/include/asm/sections.h -b1c083713782cc19d2c6f3f6ebeea3d0 linux-3.0/arch/mn10300/include/asm/scatterlist.h -5e72b59e0b8ca37b92dfcc700c3dda31 linux-3.0/arch/mn10300/include/asm/rwlock.h -a47dcd57b9133da1c0e53b7565f048b6 linux-3.0/arch/mn10300/include/asm/rtc.h -a0e6ecf71b33c8d08d854e1401bd4085 linux-3.0/arch/mn10300/include/asm/rtc-regs.h -36eb2a82010cc2b8194bde001a28c7a5 linux-3.0/arch/mn10300/include/asm/resource.h -d91913bdea5f03081a0baaad18970f4c linux-3.0/arch/mn10300/include/asm/reset-regs.h -a4f906d4d0bddd50563cfe40ca608c82 linux-3.0/arch/mn10300/include/asm/ptrace.h -e66ec08afd5734aa64da6ca725671f2b linux-3.0/arch/mn10300/include/asm/processor.h -20be8f188ddfb4401526b03689ebe611 linux-3.0/arch/mn10300/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/mn10300/include/asm/poll.h -09ec9442e4fc9d10f381c8e9cee81ea1 linux-3.0/arch/mn10300/include/asm/pio-regs.h -789382022b0f8f6e93ff02e259f469c7 linux-3.0/arch/mn10300/include/asm/pgtable.h -99f38051f68b093dc85423b4fa71beae linux-3.0/arch/mn10300/include/asm/pgalloc.h -1d5304b635d1f0e5cb6f2cd68524105c linux-3.0/arch/mn10300/include/asm/percpu.h -2992340466d87adb967d58fc0a46f856 linux-3.0/arch/mn10300/include/asm/pci.h -1a065cb6f9932e40e64122fcdc29610c linux-3.0/arch/mn10300/include/asm/param.h -c8bed4800c1577ae9af090eab40c9ff1 linux-3.0/arch/mn10300/include/asm/page_offset.h -24ffc2add79ae50fc6aabc8385bfdf1b linux-3.0/arch/mn10300/include/asm/page.h -b2324ed82006baf784b80b9d5a6a5ba1 linux-3.0/arch/mn10300/include/asm/nmi.h -0112f52ff8150bf285c26defebd68915 linux-3.0/arch/mn10300/include/asm/mutex.h -80e3374161797e580ea727051cfcbaa7 linux-3.0/arch/mn10300/include/asm/msgbuf.h -31afdc75e256a051328f2a078626746b linux-3.0/arch/mn10300/include/asm/module.h -a9dfd640ed69143613b563eba52b7659 linux-3.0/arch/mn10300/include/asm/mmu_context.h -83ae0acb9839550a94f05aef97f13b8d linux-3.0/arch/mn10300/include/asm/mmu.h -fd09a209a6b4cfe0dd8b13e1718a84d2 linux-3.0/arch/mn10300/include/asm/mman.h -c637472098dc3b88108ce661e6615abb linux-3.0/arch/mn10300/include/asm/mc146818rtc.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/mn10300/include/asm/local64.h -dd5c2452f777c57e923e1b3de9ac2c14 linux-3.0/arch/mn10300/include/asm/local.h -8e0431b7c38725d74a83605f6014272b linux-3.0/arch/mn10300/include/asm/linkage.h -2070cdee64a1e771650a3f8599a7f75d linux-3.0/arch/mn10300/include/asm/kprobes.h -26d2eef29a109504415fb7082b3997ab linux-3.0/arch/mn10300/include/asm/kmap_types.h -497c8e44268bfa2e5ccf68d13e49084a linux-3.0/arch/mn10300/include/asm/kgdb.h -f42da86ce905edefdbbb049d7e3b63bd linux-3.0/arch/mn10300/include/asm/kdebug.h -c77eda4c8a75c179d0c3ce75bf1cd687 linux-3.0/arch/mn10300/include/asm/irqflags.h -aaf99661b0fdec1afed8c0e3837719c8 linux-3.0/arch/mn10300/include/asm/irq_regs.h -12918a874961f54e1917b34cb7f528c9 linux-3.0/arch/mn10300/include/asm/irq.h -171a52f75f39cbe559bf951f23f1ffca linux-3.0/arch/mn10300/include/asm/ipcbuf.h -4a2a5d77d3d265e0d54eec802e16e1f0 linux-3.0/arch/mn10300/include/asm/ipc.h -84b20705a4adf318922dff1aa9f74af2 linux-3.0/arch/mn10300/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/mn10300/include/asm/ioctl.h -bc249b73784c3e3849490b09d8adab9e linux-3.0/arch/mn10300/include/asm/io.h -a8450ea9e492b9b88a78cfba9d7aefa4 linux-3.0/arch/mn10300/include/asm/intctl-regs.h -5fc5b3f080cec9ae95dadd25cfa84450 linux-3.0/arch/mn10300/include/asm/hw_irq.h -eabea0136e834b3074c4a29ddf535f52 linux-3.0/arch/mn10300/include/asm/highmem.h -4d020edfa89f530ecfe9ffc76680ad5e linux-3.0/arch/mn10300/include/asm/hardirq.h -6aac428681d146a59c74dbb2ba6eeb4e linux-3.0/arch/mn10300/include/asm/gdb-stub.h -4ef4a292c77e30456ab62e2bd9f186e9 linux-3.0/arch/mn10300/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/mn10300/include/asm/ftrace.h -559f014c4b27df971342634f89f2b13e linux-3.0/arch/mn10300/include/asm/frame.inc -0aee00fb159c46d7da6d60db224aa2c4 linux-3.0/arch/mn10300/include/asm/fpu.h -a598360d85106db07897c937209e63eb linux-3.0/arch/mn10300/include/asm/fcntl.h -fecbb94da0de3028b1037aab2b3403d2 linux-3.0/arch/mn10300/include/asm/fb.h -5545ac97ebfb286ef0bc7a1c2a51e0e8 linux-3.0/arch/mn10300/include/asm/exceptions.h -05366a204880e8cf1fcd3e61ef3cfa41 linux-3.0/arch/mn10300/include/asm/errno.h -6df22cf6584ec54da208b4a77ec955d6 linux-3.0/arch/mn10300/include/asm/emergency-restart.h -584f69845d4e655e569b8fb911594600 linux-3.0/arch/mn10300/include/asm/elf.h -dbbe5809fa0cd675ab8fc858559081f2 linux-3.0/arch/mn10300/include/asm/dmactl-regs.h -8c5603410c3909d88497caa5b6232a01 linux-3.0/arch/mn10300/include/asm/dma.h -cb4ecc2e669e4939af5adf4b21b3807b linux-3.0/arch/mn10300/include/asm/dma-mapping.h -110376c35acb021c1f17047db9c30fb9 linux-3.0/arch/mn10300/include/asm/div64.h -06bb9d0bae4c999b6739f1102f01d44f linux-3.0/arch/mn10300/include/asm/device.h -13fc6d90ddc59415c9772d7156f35b83 linux-3.0/arch/mn10300/include/asm/delay.h -c8f87fb04827031e880e06506f69b0b2 linux-3.0/arch/mn10300/include/asm/debugger.h -7e6d59e6ec2ea279aae6f63365c7b4cd linux-3.0/arch/mn10300/include/asm/current.h -e07bb1fbce67b580c13b57c94d6eb580 linux-3.0/arch/mn10300/include/asm/cputime.h -3b541f794db19e654847b5d27a215e5f linux-3.0/arch/mn10300/include/asm/cpu-regs.h -4b2e9c931759517c6e3f1bdb1b7d93cf linux-3.0/arch/mn10300/include/asm/checksum.h -471bd329ca219590159f258ab718fbe5 linux-3.0/arch/mn10300/include/asm/cacheflush.h -84de72d9ae873de684008eed39fc9512 linux-3.0/arch/mn10300/include/asm/cache.h -38c19650198622c25a89ef7b22dbf242 linux-3.0/arch/mn10300/include/asm/byteorder.h -a63e0414b2c80099449c73670c512b59 linux-3.0/arch/mn10300/include/asm/busctl-regs.h -c522914cf1db76339e0f927701d1e628 linux-3.0/arch/mn10300/include/asm/bugs.h -aecc02603816134d84f13f91639f26d8 linux-3.0/arch/mn10300/include/asm/bug.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/mn10300/include/asm/bitsperlong.h -8e1582b19a334d6c6beac89ba99e6a97 linux-3.0/arch/mn10300/include/asm/bitops.h -670d4e8d7331f53cf46056c848d1315c linux-3.0/arch/mn10300/include/asm/auxvec.h -4d3816a9d14c822efd069e4a0a70c084 linux-3.0/arch/mn10300/include/asm/atomic.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/mn10300/include/asm/asm-offsets.h -0c015deadbcb4a30e97aff7c219e03bd linux-3.0/arch/mn10300/include/asm/Kbuild -18288cd2111d61f8aa9864419a88fb39 linux-3.0/arch/mn10300/configs/asb2364_defconfig -5cb7d5cd6561c1322bf2f9c43ba97d6a linux-3.0/arch/mn10300/configs/asb2303_defconfig -e306609774073f75cde1e0896b116e16 linux-3.0/arch/mn10300/boot/tools/build.c -6b2e1c0a87c29d06d9e6258c9bae69fd linux-3.0/arch/mn10300/boot/install.sh -dc9ad1f80296822a56afff9550f3e019 linux-3.0/arch/mn10300/boot/compressed/vmlinux.lds -679a2e7b6cb27a9d549157d1b52c95bf linux-3.0/arch/mn10300/boot/compressed/misc.h -9d85afe5f3db344d64cfa0ae34b3cba9 linux-3.0/arch/mn10300/boot/compressed/misc.c -3b7063a48b8507e99942f2e0472c4ed3 linux-3.0/arch/mn10300/boot/compressed/head.S -82070a0a0214059934b3e55564ab779b linux-3.0/arch/mn10300/boot/compressed/Makefile -e596d1f8a90a31553fc401f85aa2a176 linux-3.0/arch/mn10300/boot/Makefile -0556833773c33801f55f6fea3d0e5407 linux-3.0/arch/mn10300/boot/.gitignore -120cf40aba0febe902a41e3f99abc00f linux-3.0/arch/mn10300/Makefile -a893f9b4a660ee4b37aafc08a57eb28a linux-3.0/arch/mn10300/Kconfig.debug -69047a589a79808f88ddebf125d51e41 linux-3.0/arch/mn10300/Kconfig -9be37fd39fe150722158c4050f0615e6 linux-3.0/arch/mips/wrppmc/time.c -62074820cc4f090adf062fc9f5407597 linux-3.0/arch/mips/wrppmc/setup.c -eebc989c232bd696f982e280445c0f17 linux-3.0/arch/mips/wrppmc/serial.c -e6267e27bd61ca565b8ee3fb7ef1e3f1 linux-3.0/arch/mips/wrppmc/reset.c -c513c0a2c21612053efbe37959323183 linux-3.0/arch/mips/wrppmc/pci.c -f23187b8d70a576a1378a53536f13bfc linux-3.0/arch/mips/wrppmc/irq.c -fdfdc0e29d180faf4ac67e6e5d72bc32 linux-3.0/arch/mips/wrppmc/Platform -398ff11911382d0c5a68a3d32b553496 linux-3.0/arch/mips/wrppmc/Makefile -128442935a88b964d420b9273aad3ec5 linux-3.0/arch/mips/vr41xx/ibm-workpad/setup.c -d8c8ace2976faee3ef0d54f727b5b783 linux-3.0/arch/mips/vr41xx/ibm-workpad/Makefile -02921ddf8014d381abeda84f889b07b5 linux-3.0/arch/mips/vr41xx/common/type.c -62b4372e177d357f8639d965a9203958 linux-3.0/arch/mips/vr41xx/common/siu.c -8eaa70f54c738a64b890d09ea9aa3c20 linux-3.0/arch/mips/vr41xx/common/rtc.c -6d7dd2af094bb6222dea525e3fa36810 linux-3.0/arch/mips/vr41xx/common/pmu.c -cbc08bb1b8f4e1bc215f2d5e98765cfc linux-3.0/arch/mips/vr41xx/common/irq.c -c98cd90d591f2274d1536ee675cb156f linux-3.0/arch/mips/vr41xx/common/init.c -4b19130562e87fd3298dda15f824d7ca linux-3.0/arch/mips/vr41xx/common/icu.c -a61b3778900b9e5d63a900f43491aec5 linux-3.0/arch/mips/vr41xx/common/giu.c -4ae10fd59c1c182946e910a88be5453e linux-3.0/arch/mips/vr41xx/common/cmu.c -6fb318db4710c627715548b29d67a154 linux-3.0/arch/mips/vr41xx/common/bcu.c -c8fea4084a47600e01c981b4a3a1ef00 linux-3.0/arch/mips/vr41xx/common/Makefile -af573696db0fc836d63ffb6750eec4b1 linux-3.0/arch/mips/vr41xx/casio-e55/setup.c -5911c57371559cb8e6c7adfc11f410c9 linux-3.0/arch/mips/vr41xx/casio-e55/Makefile -79e54c2a3a63ad680a31064c6969aa0c linux-3.0/arch/mips/vr41xx/Platform -9836597c875af6ef55f5929404f11558 linux-3.0/arch/mips/vr41xx/Kconfig -41acb2627b9ea1e9ac82f47e1f9d8be3 linux-3.0/arch/mips/txx9/rbtx4939/setup.c -92900753db63a6783991118cb7a4093c linux-3.0/arch/mips/txx9/rbtx4939/prom.c -42436fd35162d12588abed8649d69536 linux-3.0/arch/mips/txx9/rbtx4939/irq.c -fdd5b2a438bd06e739bd5737f6eb745a linux-3.0/arch/mips/txx9/rbtx4939/Makefile -b72ef55711c4759755ad2f33bb2e141c linux-3.0/arch/mips/txx9/rbtx4938/setup.c -44a8555ebd1cdb9229dd413235c1d700 linux-3.0/arch/mips/txx9/rbtx4938/prom.c -beebcd37a87073bc34c432761cec3440 linux-3.0/arch/mips/txx9/rbtx4938/irq.c -65cf9756c59560f53608957a08585f9c linux-3.0/arch/mips/txx9/rbtx4938/Makefile -fec6bc1eb3224f2b22d16c21e294cce2 linux-3.0/arch/mips/txx9/rbtx4927/setup.c -12f762c545e7c0324f160e5f11128ce7 linux-3.0/arch/mips/txx9/rbtx4927/prom.c -1bdfbf664495a230f7285e24e71b9056 linux-3.0/arch/mips/txx9/rbtx4927/irq.c -65cf9756c59560f53608957a08585f9c linux-3.0/arch/mips/txx9/rbtx4927/Makefile -dcbc3df4a1eef453b0bdda01d238d2fd linux-3.0/arch/mips/txx9/jmr3927/setup.c -7c938bd1c95f4c73f4eca2219a432112 linux-3.0/arch/mips/txx9/jmr3927/prom.c -df156f4440844785ce3f2f41acb1b150 linux-3.0/arch/mips/txx9/jmr3927/irq.c -041906d4367ee49edcb7d84df8afdc0c linux-3.0/arch/mips/txx9/jmr3927/Makefile -9df7f0751d299320f3a8cc0694ab93fe linux-3.0/arch/mips/txx9/generic/spi_eeprom.c -5213cf85a267bf18e055deaa4bf6db85 linux-3.0/arch/mips/txx9/generic/smsc_fdc37m81x.c -4c5229c21f6b63cf1fc571d2f7316f71 linux-3.0/arch/mips/txx9/generic/setup_tx4939.c -9504dcee9c121dd5e45391fa4d9572b7 linux-3.0/arch/mips/txx9/generic/setup_tx4938.c -e2a8eeefa60c37b6a8a6a9d83795d830 linux-3.0/arch/mips/txx9/generic/setup_tx4927.c -c58944ba006894c2764535d351f51d4d linux-3.0/arch/mips/txx9/generic/setup_tx3927.c -f8b78bf6b3722728f6d1dd51dbb20123 linux-3.0/arch/mips/txx9/generic/setup.c -e448ae683c8e75cf60821ad757a22280 linux-3.0/arch/mips/txx9/generic/pci.c -d2e4f5cd82d2a08f2187800aa9864a27 linux-3.0/arch/mips/txx9/generic/mem_tx4927.c -4c18df4cfe0ac0a952b0ee6b9bea5bde linux-3.0/arch/mips/txx9/generic/irq_tx4939.c -ad796317007e41cc4ff945d756ced45a linux-3.0/arch/mips/txx9/generic/irq_tx4938.c -9d68402038dd4ca99202c881bf6d17cd linux-3.0/arch/mips/txx9/generic/irq_tx4927.c -d2817901f49ed405aa406300bec90675 linux-3.0/arch/mips/txx9/generic/irq_tx3927.c -6b886d0fecb33c510a5d370912b440f8 linux-3.0/arch/mips/txx9/generic/Makefile -8ddb3a5154a782a66ad6c31a37d22fbe linux-3.0/arch/mips/txx9/generic/7segled.c -46ce8156e7f05d8f85ba936591697760 linux-3.0/arch/mips/txx9/Platform -76ed645046c92c6da6e9d53b2796fcba linux-3.0/arch/mips/txx9/Makefile -5bb842e51fa84292107f24b8a40b28a5 linux-3.0/arch/mips/txx9/Kconfig -7c81b45595ca710b4821af1ce5192c25 linux-3.0/arch/mips/sni/time.c -6b35317e4380a9929065a91007176ad7 linux-3.0/arch/mips/sni/setup.c -6dd6bc61084122dd56d23e0c50e110cb linux-3.0/arch/mips/sni/rm200.c -cd0471536ae145385d73cd28d0c52373 linux-3.0/arch/mips/sni/reset.c -e9b86f147248562a5d9d72632e3ba56b linux-3.0/arch/mips/sni/pcit.c -c6096d508258597dc8051268f27ff928 linux-3.0/arch/mips/sni/pcimt.c -daa92e3ad4a3b15c5afd248f80019e83 linux-3.0/arch/mips/sni/irq.c -a046caa10c72640dd3af96d3125e3112 linux-3.0/arch/mips/sni/eisa.c -af1ec17283adad72e4a8e8aca0900125 linux-3.0/arch/mips/sni/a20r.c -0a7f99048ab6cd2c034afec4c30263a0 linux-3.0/arch/mips/sni/Platform -1c3d2088c5b64b4fe8f834307ca57633 linux-3.0/arch/mips/sni/Makefile -2470cbccbce52b8d1914e22d8aee4205 linux-3.0/arch/mips/sibyte/swarm/swarm-i2c.c -e2a020b5cd471f0eb46f4fd5b00d0581 linux-3.0/arch/mips/sibyte/swarm/setup.c -3a02d21ca6338300cf65aa75e185d058 linux-3.0/arch/mips/sibyte/swarm/rtc_xicor1241.c -d22dd9d499ae24fdbdb65a3ad632875d linux-3.0/arch/mips/sibyte/swarm/rtc_m41t81.c -990b5d81cab3da01fa27cb7ebb709ff9 linux-3.0/arch/mips/sibyte/swarm/platform.c -5e288050e18d8ed4f92821b4545111f7 linux-3.0/arch/mips/sibyte/swarm/Makefile -4e921fbe17fa6bd2ad7e503a390bbdb4 linux-3.0/arch/mips/sibyte/sb1250/time.c -2eb1d915fa26efc12914977ee016a4e0 linux-3.0/arch/mips/sibyte/sb1250/smp.c -b644efdd240849090be13e3063c11ca5 linux-3.0/arch/mips/sibyte/sb1250/setup.c -838b3dee7a39f588a4eeefc46ef430aa linux-3.0/arch/mips/sibyte/sb1250/irq.c -a8d09fe45eee8b7001544547e0e3eade linux-3.0/arch/mips/sibyte/sb1250/bus_watcher.c -f93d7f28484fc8b028a2d6b8d5a77d94 linux-3.0/arch/mips/sibyte/sb1250/Makefile -ac7e9267bfc03247a205d931e7151ff3 linux-3.0/arch/mips/sibyte/common/sb_tbprof.c -0e6eae6efb489c89383a528dd445c5fd linux-3.0/arch/mips/sibyte/common/cfe_console.c -dd0f059ae7897da62211896d192382f3 linux-3.0/arch/mips/sibyte/common/cfe.c -743c69e113796aafc8fc094945b80ac7 linux-3.0/arch/mips/sibyte/common/Makefile -6e6512ba10e58250931261bdca740ab4 linux-3.0/arch/mips/sibyte/bcm1480/time.c -e379074a6058d00d9810cdd32431aa76 linux-3.0/arch/mips/sibyte/bcm1480/smp.c -7b93487dcb25d29280a81eb77464c2a3 linux-3.0/arch/mips/sibyte/bcm1480/setup.c -d5456806a29abcc82e040b1f42580fb4 linux-3.0/arch/mips/sibyte/bcm1480/irq.c -c364b5690ffd5f622b5ff62d114d4108 linux-3.0/arch/mips/sibyte/bcm1480/Makefile -b4bc683c915662b868b8569d9eeddfb2 linux-3.0/arch/mips/sibyte/Platform -fe08fc7157daa0e19b207eedeb5ff107 linux-3.0/arch/mips/sibyte/Makefile -eef61db6bc5cae3a40c9aadbdc539bf2 linux-3.0/arch/mips/sibyte/Kconfig -0a0d3bff4c1711580950dbd6a61f9c90 linux-3.0/arch/mips/sgi-ip32/ip32-setup.c -b769e3708eaa99bbfbfd69425883a436 linux-3.0/arch/mips/sgi-ip32/ip32-reset.c -f8c3d4ed714c0bf9a83164bac05edb18 linux-3.0/arch/mips/sgi-ip32/ip32-platform.c -e6abfd6649706bdad1466c9417d94734 linux-3.0/arch/mips/sgi-ip32/ip32-memory.c -b69df94df10ae10b81d8a06cedb85bce linux-3.0/arch/mips/sgi-ip32/ip32-irq.c -2f685f9346baccfdd5fb1de9be572baa linux-3.0/arch/mips/sgi-ip32/ip32-berr.c -2990fdf3a4a8580df902442cba469e1b linux-3.0/arch/mips/sgi-ip32/crime.c -449c20751daa8bc5fcf0dbcf28dfd490 linux-3.0/arch/mips/sgi-ip32/Platform -26295d3ac5439fd80c14dca600a174e9 linux-3.0/arch/mips/sgi-ip32/Makefile -2a90042fdb17b5f4f5d2c285fe41adc1 linux-3.0/arch/mips/sgi-ip27/ip27-xtalk.c -b4841a33e1e670e9ff6283231b2dd49c linux-3.0/arch/mips/sgi-ip27/ip27-timer.c -a706517ff44dfbb04fe2c3fc694294a6 linux-3.0/arch/mips/sgi-ip27/ip27-smp.c -6b6f1a7c84584297a5446d55ec451dc3 linux-3.0/arch/mips/sgi-ip27/ip27-reset.c -232d4b2e09ef76770523230fbc44ead1 linux-3.0/arch/mips/sgi-ip27/ip27-nmi.c -3264ed9832f230b7d4b103038057279e linux-3.0/arch/mips/sgi-ip27/ip27-memory.c -b0c6fcd893c764d750abe2193420bb1e linux-3.0/arch/mips/sgi-ip27/ip27-klnuma.c -000ebef2503451420971667d0e397ac7 linux-3.0/arch/mips/sgi-ip27/ip27-klconfig.c -e54905fd9c45cc1629454d985a726f81 linux-3.0/arch/mips/sgi-ip27/ip27-irq.c -b27a505eb30e5d89611ec289f12018ed linux-3.0/arch/mips/sgi-ip27/ip27-init.c -4d808c469e0569e104a2ee9fa377f3df linux-3.0/arch/mips/sgi-ip27/ip27-hubio.c -0737784fd42afde7921164357149d5a8 linux-3.0/arch/mips/sgi-ip27/ip27-console.c -b9a903da83b68ca4d1fb40e2c2b23948 linux-3.0/arch/mips/sgi-ip27/ip27-berr.c -4b8b3db4423a717bf67c4b408e1f40a5 linux-3.0/arch/mips/sgi-ip27/TODO -6eb33bb3cc661a2609385204c132b883 linux-3.0/arch/mips/sgi-ip27/Platform -120e436c7817184062e1087869680d9a linux-3.0/arch/mips/sgi-ip27/Makefile -574d4f70c18e0d7468af6c2acea6a55c linux-3.0/arch/mips/sgi-ip27/Kconfig -c892743e78a0453c96d41bef4bef013d linux-3.0/arch/mips/sgi-ip22/ip28-berr.c -92c787ac03708782b2c34a1b07a647b2 linux-3.0/arch/mips/sgi-ip22/ip22-time.c -b29876a3cdae7b451b103e4ece2896da linux-3.0/arch/mips/sgi-ip22/ip22-setup.c -a3f1289537b51c70cda66ae9ab42d1dd linux-3.0/arch/mips/sgi-ip22/ip22-reset.c -564271882b4cbb9602910214bde196c6 linux-3.0/arch/mips/sgi-ip22/ip22-platform.c -50a00a2a3ac3013183a3174b95801c39 linux-3.0/arch/mips/sgi-ip22/ip22-nvram.c -ce550662a80c5824840471a7a4512ba0 linux-3.0/arch/mips/sgi-ip22/ip22-mc.c -4a4bc6367309114cb3be0e34d326849e linux-3.0/arch/mips/sgi-ip22/ip22-int.c -6dbeb301a92030f395f93b720a101c0c linux-3.0/arch/mips/sgi-ip22/ip22-hpc.c -c88006d4eee69aa08f726c0c7576c595 linux-3.0/arch/mips/sgi-ip22/ip22-eisa.c -547352c9f82d8fc86a5cb5c9d17a7dc4 linux-3.0/arch/mips/sgi-ip22/ip22-berr.c -6cc3660c6ede079a7de2d27e6a155e80 linux-3.0/arch/mips/sgi-ip22/Platform -4e1f5e02db1a7b333f0ac9eeb26cc3f4 linux-3.0/arch/mips/sgi-ip22/Makefile -1ade0ccccc4cad4af83015d5114e39fc linux-3.0/arch/mips/rb532/time.c -5d3579628fdffbf1ce340e9abb2547bd linux-3.0/arch/mips/rb532/setup.c -03248df044491e6aadf09d1132673009 linux-3.0/arch/mips/rb532/serial.c -48337afddb69e5a06dcd599d61c56cbf linux-3.0/arch/mips/rb532/prom.c -caf78aaec56ee26f241fb335dc9c9a51 linux-3.0/arch/mips/rb532/irq.c -3b8bd14162b83e36bbbcadb6349912c5 linux-3.0/arch/mips/rb532/gpio.c -373f661b9db454876350668142e73052 linux-3.0/arch/mips/rb532/devices.c -5004e2cf59d3d8cafa0526a9f3a22e1a linux-3.0/arch/mips/rb532/Platform -d62f538efbb83378d29c50bb5b1d2125 linux-3.0/arch/mips/rb532/Makefile -80610f3942390c2f18617c0f7a72fe4e linux-3.0/arch/mips/powertv/time.c -71b021eef4f7f67a0de91d3e984dcdf4 linux-3.0/arch/mips/powertv/reset.h -41279c1c1d433f47b5c839273b3c161f linux-3.0/arch/mips/powertv/reset.c -ec68c11f346388c73ab72952a4b6253e linux-3.0/arch/mips/powertv/powertv_setup.c -a191ea6dcc3c4783dcf0ca52cd701721 linux-3.0/arch/mips/powertv/powertv-usb.c -eceed8a6673d076870052fdb51a1ef76 linux-3.0/arch/mips/powertv/powertv-clock.h -423a02dafeda99e9c7b3692ed52aafcb linux-3.0/arch/mips/powertv/pci/powertv-pci.h -1a357cc079a418f1efe62259c14f675d linux-3.0/arch/mips/powertv/pci/fixup-powertv.c -5ed5290f56e51427669a8c9b15f61956 linux-3.0/arch/mips/powertv/pci/Makefile -2ea76241060e134cda02625e358f1d5e linux-3.0/arch/mips/powertv/memory.c -338227663ed4990f9bad493362b0b58a linux-3.0/arch/mips/powertv/ioremap.c -dc33bf0563aa7b0201d2a343a34d24e2 linux-3.0/arch/mips/powertv/init.h -25878da85accc5e9d39d60800cc05413 linux-3.0/arch/mips/powertv/init.c -ea6626a7b4e558cb097db911743e2543 linux-3.0/arch/mips/powertv/asic/prealloc.h -b94ebdbeb7b5b75e06a0e26813182ca6 linux-3.0/arch/mips/powertv/asic/prealloc-zeus.c -bd3bbd22f2f5d53423680800b938b29f linux-3.0/arch/mips/powertv/asic/prealloc-gaia.c -bf9cc6080aa65e0adc09774b2b25d610 linux-3.0/arch/mips/powertv/asic/prealloc-cronuslite.c -d812bddc4a255240a874a2d30b659796 linux-3.0/arch/mips/powertv/asic/prealloc-cronus.c -5fe038a62d350de347e66d740775d41c linux-3.0/arch/mips/powertv/asic/prealloc-calliope.c -43468a3ee76a63206483a113b1086434 linux-3.0/arch/mips/powertv/asic/irq_asic.c -4794035639e88051122dfd6b2b3f10d7 linux-3.0/arch/mips/powertv/asic/asic_int.c -aff3f7c957a65ad59526020f52275587 linux-3.0/arch/mips/powertv/asic/asic_devices.c -7ab436d3f5f1e8981060b49be5c640d5 linux-3.0/arch/mips/powertv/asic/asic-zeus.c -9c622ccdf14171b7d54e1868f2610450 linux-3.0/arch/mips/powertv/asic/asic-gaia.c -2db7fe6419ee8cdbf26146514ab3d78c linux-3.0/arch/mips/powertv/asic/asic-cronus.c -9b795c7cf490f1976089adc22ee216cb linux-3.0/arch/mips/powertv/asic/asic-calliope.c -949744f20cfd32cc8458acf1c13324ef linux-3.0/arch/mips/powertv/asic/Makefile -cb6c7ce293e81896522a3efddf837d55 linux-3.0/arch/mips/powertv/asic/Kconfig -c4dfbdca3aa704f211f115386647d9fa linux-3.0/arch/mips/powertv/Platform -2f41a68b5038737f64d525e7b265bef9 linux-3.0/arch/mips/powertv/Makefile -225baa44b9f712c512cbf11104508f70 linux-3.0/arch/mips/powertv/Kconfig -57c49ab47b473f4eb39638f02a4bff81 linux-3.0/arch/mips/power/hibernate.S -0d948511c0a2018284bc32812fdc9bcd linux-3.0/arch/mips/power/cpu.c -d5a3c394ad8dc7ed28daece0815289e8 linux-3.0/arch/mips/power/Makefile -388962349adacdbd6cedfd5eaa1c84e2 linux-3.0/arch/mips/pnx8550/stb810/prom_init.c -81eb0467892c0a636c4c7c798a3c8672 linux-3.0/arch/mips/pnx8550/stb810/irqmap.c -4d9a7616afa0dc867edae3f1e28bbea7 linux-3.0/arch/mips/pnx8550/stb810/board_setup.c -edb9480b7bd0f3793a2c242429480084 linux-3.0/arch/mips/pnx8550/stb810/Makefile -7137f07052d9f063270cfae5ddb2f119 linux-3.0/arch/mips/pnx8550/jbs/irqmap.c -c0f1d8eb8f10b5d3b1b6580731301f47 linux-3.0/arch/mips/pnx8550/jbs/init.c -adf3a1c7a95a09e1930c5a75f19f1f51 linux-3.0/arch/mips/pnx8550/jbs/board_setup.c -72bb7943dfe38c02266fd0e269fe8184 linux-3.0/arch/mips/pnx8550/jbs/Makefile -e9f40c3da4a3b3422c67faee32b5f179 linux-3.0/arch/mips/pnx8550/common/time.c -9117461cafe113ba020a83993fbb6eed linux-3.0/arch/mips/pnx8550/common/setup.c -d61d0c7c5f860e8e2174226b0e8c8a7a linux-3.0/arch/mips/pnx8550/common/reset.c -ad46a4e554870579565877ee22258e59 linux-3.0/arch/mips/pnx8550/common/prom.c -0c7727efce6a8c0d79e43de1af78238c linux-3.0/arch/mips/pnx8550/common/proc.c -81dd442776cebaada7cf5d7d17664a65 linux-3.0/arch/mips/pnx8550/common/platform.c -ccdfe53c62fd3d1d700b488506d0acd6 linux-3.0/arch/mips/pnx8550/common/pci.c -e4a95739e2cec2915d72db289a98fc46 linux-3.0/arch/mips/pnx8550/common/int.c -0a357c1e9f42c800439c01af4a7e78fb linux-3.0/arch/mips/pnx8550/common/Makefile -4a3ec694858bd175249b4b55d6842293 linux-3.0/arch/mips/pnx8550/Platform -68f4fd30e242e4ea64c0d8fa0706b1de linux-3.0/arch/mips/pnx8550/Makefile -b4dac941051f5f432ab4a0398042a1d0 linux-3.0/arch/mips/pnx833x/stb22x/board.c -97d91081e236478990b64ff7e387b091 linux-3.0/arch/mips/pnx833x/stb22x/Makefile -42c08fae60746d1924d919b4bae5bea8 linux-3.0/arch/mips/pnx833x/common/setup.c -6a036b3bd606d8d611b966e0c6596d84 linux-3.0/arch/mips/pnx833x/common/reset.c -322a2065a76297354d47b1372273cdab linux-3.0/arch/mips/pnx833x/common/prom.c -0af415d2a9c75ca85bc69add2c2bb887 linux-3.0/arch/mips/pnx833x/common/platform.c -28ed3ff31ceccf94c5b49dfe9a75959d linux-3.0/arch/mips/pnx833x/common/interrupts.c -1a01c1d1977a2f080fc384a3dc3a7e52 linux-3.0/arch/mips/pnx833x/common/Makefile -19091afced59b7adff709b250c4a0a82 linux-3.0/arch/mips/pnx833x/Platform -60de8a70e1bf3468fdd077a56df06f13 linux-3.0/arch/mips/pnx833x/Makefile -f0b0b595de746ea52a937e8a2ceb3645 linux-3.0/arch/mips/pmc-sierra/yosemite/smp.c -84f7e4c6a22a137edf6f0f94f91f357b linux-3.0/arch/mips/pmc-sierra/yosemite/setup.h -c7e3232785d7d87c6b5bbe43207d640d linux-3.0/arch/mips/pmc-sierra/yosemite/setup.c -399177cd0d05e641c1583b6308166c91 linux-3.0/arch/mips/pmc-sierra/yosemite/py-console.c -3dd283ec96a5b1e0f82ca4432487efb8 linux-3.0/arch/mips/pmc-sierra/yosemite/prom.c -d8f06bf5d5c348cc3ade5770dc085eb3 linux-3.0/arch/mips/pmc-sierra/yosemite/irq.c -c13f8273ddd2c4b570ccfd6102c41421 linux-3.0/arch/mips/pmc-sierra/yosemite/ht.c -ecef8eb38965eb2e79e1d71d97e1334d linux-3.0/arch/mips/pmc-sierra/yosemite/ht-irq.c -c6cee5a6725b809f5282b3c461d300b2 linux-3.0/arch/mips/pmc-sierra/yosemite/atmel_read_eeprom.h -1f75fc38ee597c4c8e3f4fb6c062d135 linux-3.0/arch/mips/pmc-sierra/yosemite/atmel_read_eeprom.c -a4bbf8832764662a2d1da17af1ae424f linux-3.0/arch/mips/pmc-sierra/yosemite/Makefile -5838477ea1369e9db895e8d81e7de9b7 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_usb.c -49cfa3d77744059fd28db4e2a5ee6521 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_time.c -6e9f91f4f0baef2dde5a09cd3cb88139 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_smtc.c -410276b5fdbbfa05365dc6e96f9d7bb3 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_smp.c -b7d16fcbf7ce51f17f70e87433722b82 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_setup.c -ed5020e32c67409b14891dba4ecac862 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_serial.c -b11b42ab25b8079f381ccf3d6a61b5ed linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_prom.c -803a88e744e53ae9c5e00c048ddb1bd0 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_pci.c -c4d528b77399c404348efb75a112ae58 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_irq_slp.c -a70c93c65be7e2d4122719c44c067128 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_irq_per.c -57fc0e641a1e0525e03d3c9324aada82 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_irq_cic.c -b2a1d19d8caa8caa47bdbc895a2e584d linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_irq.c -b2956dede016ff771a40ca759be56460 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c -2387b5db41980cf3184bcd87a3d25ed2 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_eth.c -6cedc14acf6f178bb707f1bff1da4c42 linux-3.0/arch/mips/pmc-sierra/msp71xx/msp_elb.c -a4ff44a1bc46d5bae6492d4e0efa084c linux-3.0/arch/mips/pmc-sierra/msp71xx/gpio_extended.c -21ec78efdef3a52e31ce3d08ceaed5c2 linux-3.0/arch/mips/pmc-sierra/msp71xx/gpio.c -811d62c74f44f118f7724392f343c615 linux-3.0/arch/mips/pmc-sierra/msp71xx/Makefile -ee6684b39f820ee5f104bff3f124064d linux-3.0/arch/mips/pmc-sierra/Platform -d1e2523a4dc3baf181d2285059e63f28 linux-3.0/arch/mips/pmc-sierra/Kconfig -e0020518216dfd27a67faafb7369ce3a linux-3.0/arch/mips/pci/pcie-octeon.c -f9175662d93698f226a749e9c2ea384a linux-3.0/arch/mips/pci/pci.c -7fd322a59ead05fdb806682b940f5d39 linux-3.0/arch/mips/pci/pci-yosemite.c -bc7dda2ea68ae27ab114a7c344bbe5b2 linux-3.0/arch/mips/pci/pci-xlr.c -8c216fb1ba0ac5c0aa289ae06157a593 linux-3.0/arch/mips/pci/pci-vr41xx.h -3d5295403e5808b35a920a5a0a32692a linux-3.0/arch/mips/pci/pci-vr41xx.c -a9314b3646b9976f82fed04937c8acce linux-3.0/arch/mips/pci/pci-tx4939.c -3cde06d166c21e79f35961bf363adcf4 linux-3.0/arch/mips/pci/pci-tx4938.c -8ea12021139219017488c340f27b83e3 linux-3.0/arch/mips/pci/pci-tx4927.c -d79b25a32921f820999ae70cc6f44793 linux-3.0/arch/mips/pci/pci-sb1250.c -ce66db13f034d7ef8fd9af42a4b17367 linux-3.0/arch/mips/pci/pci-rc32434.c -ab1c865e36466629260cd7dee6718b8e linux-3.0/arch/mips/pci/pci-octeon.c -08e6438915599d522649e77d9c788152 linux-3.0/arch/mips/pci/pci-lasat.c -2512c827a4c6c91e64418ea2aaa2d1f8 linux-3.0/arch/mips/pci/pci-lantiq.h -a223a323d946023100cca4814cfd41ab linux-3.0/arch/mips/pci/pci-lantiq.c -0c5213b07717157efd67835412c52d1e linux-3.0/arch/mips/pci/pci-ip32.c -5cfb58e6445198db64fe5c987906c74b linux-3.0/arch/mips/pci/pci-ip27.c -d6190ba225d7a1ba12ce9a6b7e16a501 linux-3.0/arch/mips/pci/pci-emma2rh.c -15a8ad324ab31927a5287148b35832e5 linux-3.0/arch/mips/pci/pci-bcm63xx.h -d27ca28df4857a4167bb0ef8f240a0e3 linux-3.0/arch/mips/pci/pci-bcm63xx.c -c035179440df7ca02e36adca39769bd9 linux-3.0/arch/mips/pci/pci-bcm47xx.c -7622c1cd3fd2ae63fb71bf490b001dbe linux-3.0/arch/mips/pci/pci-bcm1480ht.c -e4e66ac90f974767c57c73278bf48867 linux-3.0/arch/mips/pci/pci-bcm1480.c -c606d2d3cf7cf7e604c7669363e42372 linux-3.0/arch/mips/pci/ops-vr41xx.c -ca776e12a04a76f70020f9d1cc9d4393 linux-3.0/arch/mips/pci/ops-tx4927.c -1365397e62cf43d649f67a1b4a5ee9c9 linux-3.0/arch/mips/pci/ops-tx3927.c -0b99690e3a0098a2a218e9c55468a3bd linux-3.0/arch/mips/pci/ops-titan.c -51d6e000febaa6ed8337e2ad18ecfa83 linux-3.0/arch/mips/pci/ops-titan-ht.c -a482601c23f1ba22466b8c8b21864587 linux-3.0/arch/mips/pci/ops-sni.c -52db3105b24aa73fa715d96b344ab130 linux-3.0/arch/mips/pci/ops-rc32434.c -8d4f3fca80ec7af05ececc51049d7dab linux-3.0/arch/mips/pci/ops-pnx8550.c -33dfe8366a4c7904f88d4b5797b107da linux-3.0/arch/mips/pci/ops-pmcmsp.c -32586b0ac30bca3fbcb80208446ef9f0 linux-3.0/arch/mips/pci/ops-nile4.c -fc5255d58294191c4530cee0f4f2d175 linux-3.0/arch/mips/pci/ops-msc.c -8234aae1b6ad6c48ca859ac0bf7cd169 linux-3.0/arch/mips/pci/ops-mace.c -34c70dad446392732c5500ba87a4bbf8 linux-3.0/arch/mips/pci/ops-loongson2.c -50e7cc4adad4e61fe2c3e8f233b8b804 linux-3.0/arch/mips/pci/ops-lantiq.c -c17a32df1b33ad6d856f59e5ab9f636d linux-3.0/arch/mips/pci/ops-gt64xxx_pci0.c -d1a7355179bda07ea5d7dbc338421ad9 linux-3.0/arch/mips/pci/ops-emma2rh.c -b7f2a7912ab48d4a49e5923752ec0b14 linux-3.0/arch/mips/pci/ops-bridge.c -2912ea6f9bcbed1f8a78967d5e93c1f8 linux-3.0/arch/mips/pci/ops-bonito64.c -bc180e559dcf76f40d9df99f2edbb127 linux-3.0/arch/mips/pci/ops-bcm63xx.c -87ddd526668c6d8c6ed454973e55d685 linux-3.0/arch/mips/pci/ops-au1000.c -c6b40ef3531a3e3428c3409847a259eb linux-3.0/arch/mips/pci/msi-octeon.c -395fe91217f90b3c5700f503698c532c linux-3.0/arch/mips/pci/fixup-yosemite.c -543cde8aa77ca2ad0c356fcf8ea5b4aa linux-3.0/arch/mips/pci/fixup-wrppmc.c -ffab8441ad75ca895771620a03786178 linux-3.0/arch/mips/pci/fixup-tb0287.c -96a27a40c11a49c9ae316eaa14c5ebb1 linux-3.0/arch/mips/pci/fixup-tb0226.c -d2194b1276bfa2ef78a585c5b53d93de linux-3.0/arch/mips/pci/fixup-tb0219.c -87d354842ccd16aaad205c148e26c841 linux-3.0/arch/mips/pci/fixup-sni.c -bf14aac89e23baa3ca75b56d1fb78e0e linux-3.0/arch/mips/pci/fixup-sb1250.c -2f96f5886082feeaa70b6dd691ffc8f7 linux-3.0/arch/mips/pci/fixup-rc32434.c -d932ce77882c1db69e7e633b72cfc237 linux-3.0/arch/mips/pci/fixup-rbtx4938.c -9e2d5a3b15150d9fddcd711140aaf8ca linux-3.0/arch/mips/pci/fixup-rbtx4927.c -d7b747b186cf82f0c897e1a1981b8324 linux-3.0/arch/mips/pci/fixup-pnx8550.c -ee275e287d17b823bc299056a3792ee9 linux-3.0/arch/mips/pci/fixup-pmcmsp.c -10fc5f53124461e97a00e2062415056c linux-3.0/arch/mips/pci/fixup-mpc30x.c -6fd649ccb3642423622a495c85a22e05 linux-3.0/arch/mips/pci/fixup-malta.c -35d8d4275088126c0b070a70f8896de1 linux-3.0/arch/mips/pci/fixup-lemote2f.c -f25c0eb9c185d6e9de2b15fae9beb6dc linux-3.0/arch/mips/pci/fixup-jmr3927.c -70a88db08bc54c74048da5fb51de4ab2 linux-3.0/arch/mips/pci/fixup-ip32.c -7909e4fa7ca157871160f888c94b28ad linux-3.0/arch/mips/pci/fixup-fuloong2e.c -9760bbf26e4ec96075e625d64b219622 linux-3.0/arch/mips/pci/fixup-emma2rh.c -3d618f626fbd0abbacb1ab5fee773232 linux-3.0/arch/mips/pci/fixup-cobalt.c -bb7597d30a415621a5af352571ecabd2 linux-3.0/arch/mips/pci/fixup-capcella.c -0b14b446b16af3a9669869bb18e83614 linux-3.0/arch/mips/pci/fixup-bcm63xx.c -3eea89f08516d855f0fd8a85a0ca3a09 linux-3.0/arch/mips/pci/fixup-au1000.c -afe5e13f153d1bc6c768d0a01098b332 linux-3.0/arch/mips/pci/Makefile -d43725244127195c4c4d1d2caedd15f3 linux-3.0/arch/mips/oprofile/op_model_rm9000.c -f53e37223d1ddcbb17025b4e1a7ccab5 linux-3.0/arch/mips/oprofile/op_model_mipsxx.c -da433325447586196f284e00072ad2f0 linux-3.0/arch/mips/oprofile/op_model_loongson2.c -9303bd8ca2036c54712f34a00b1bb8d0 linux-3.0/arch/mips/oprofile/op_impl.h -6402dc6aeab1eff3bfb110984d511d5c linux-3.0/arch/mips/oprofile/common.c -b1bc1397e858fb491a7e42fc93768001 linux-3.0/arch/mips/oprofile/Makefile -811897472658769b6698a137cee273ef linux-3.0/arch/mips/nxp/pnx8550/common/setup.c -ccdfe53c62fd3d1d700b488506d0acd6 linux-3.0/arch/mips/nxp/pnx8550/common/pci.c -592291ed674b887d1efb956392db6544 linux-3.0/arch/mips/netlogic/xlr/xlr_console.c -951370c7a0ff395f1acac93b938992bd linux-3.0/arch/mips/netlogic/xlr/time.c -41cfaab6d93c760f74ce88bc440d333d linux-3.0/arch/mips/netlogic/xlr/smpboot.S -7eff56ca95750d487227df9f7a418555 linux-3.0/arch/mips/netlogic/xlr/smp.c -ce511a5107a421370a7f5543a01e19a7 linux-3.0/arch/mips/netlogic/xlr/setup.c -0dfc445bd05ea5bcd339d8ca99e24fe1 linux-3.0/arch/mips/netlogic/xlr/platform.c -7c32b5639d5aa5cef1b05bfe3cf6188c linux-3.0/arch/mips/netlogic/xlr/irq.c -915faabcd8c2529e7ac6babb7b2bff76 linux-3.0/arch/mips/netlogic/xlr/Makefile -ba29f12caf1c85806805baba52b8ba66 linux-3.0/arch/mips/netlogic/Kconfig -b4ac7f6c8129c21536e5cbc2f1edd670 linux-3.0/arch/mips/mti-malta/malta-time.c -7c6493f3d73b972ec1bab80d933d790d linux-3.0/arch/mips/mti-malta/malta-smtc.c -a6b7e3a25e7eaa2e35019f5c8a267642 linux-3.0/arch/mips/mti-malta/malta-setup.c -a6f2c33edf97326f647ebbe3fa9f0161 linux-3.0/arch/mips/mti-malta/malta-reset.c -5b98ca995614b1ea34cdf5ad0b933ee2 linux-3.0/arch/mips/mti-malta/malta-platform.c -7b4b6ae897032f81259a8b8c3fe59848 linux-3.0/arch/mips/mti-malta/malta-pci.c -5c8abbc9cef98996104b8b716f128d01 linux-3.0/arch/mips/mti-malta/malta-memory.c -543ca7c594c994dbefec0269778a7a74 linux-3.0/arch/mips/mti-malta/malta-int.c -954fadc44472e81b5719eeef9f0305bd linux-3.0/arch/mips/mti-malta/malta-init.c -2068dcf5af98cbbd296b4a78273f299b linux-3.0/arch/mips/mti-malta/malta-display.c -c7daadb5b4dc522affe6d2aa942e2026 linux-3.0/arch/mips/mti-malta/malta-console.c -7d2c069aebf9f65e2f8359979aee05c2 linux-3.0/arch/mips/mti-malta/malta-cmdline.c -1761e2fc91a427d956260726ab5902e8 linux-3.0/arch/mips/mti-malta/malta-amon.c -ef79c65047c75b5c09bf52bbf551964e linux-3.0/arch/mips/mti-malta/Platform -19aa9668ed1d7dd9210cd8e13f483c51 linux-3.0/arch/mips/mti-malta/Makefile -df461ae2e47f8b19d75b5fa162506936 linux-3.0/arch/mips/mm/uasm.c -301ddf35f463d1d01628b6069d9b22d4 linux-3.0/arch/mips/mm/tlbex.c -4ae6274f985b66f26199aab46e4bed9b linux-3.0/arch/mips/mm/tlbex-fault.S -608e240c1f3aca8fc4150565e55eadc4 linux-3.0/arch/mips/mm/tlb-r8k.c -1a38e75dcb84243dabba6c83283ed799 linux-3.0/arch/mips/mm/tlb-r4k.c -eab8e74cec2b1ef3c69e51647fcc5317 linux-3.0/arch/mips/mm/tlb-r3k.c -07c9a4973afa6910c998ded04452551d linux-3.0/arch/mips/mm/sc-rm7k.c -6165735ba00f41e066673089f2280cc5 linux-3.0/arch/mips/mm/sc-r5k.c -a9c455d201bfc5f08e192f438acd4a8f linux-3.0/arch/mips/mm/sc-mips.c -241ad774b1d0d39910ad8298366df4a7 linux-3.0/arch/mips/mm/sc-ip22.c -25eb0c4d472e17c7d0087930bd284598 linux-3.0/arch/mips/mm/pgtable-64.c -e2441b89372d8b7cb34844c9f0a5879b linux-3.0/arch/mips/mm/pgtable-32.c -7ef255b112cdfbaa9f86d1e705c3749b linux-3.0/arch/mips/mm/page.c -be26e60a279d7bccea4c715764b8c4c5 linux-3.0/arch/mips/mm/mmap.c -df83bf4a4a287be01a97f4767d126011 linux-3.0/arch/mips/mm/ioremap.c -f572ffff98b99a09d8b501a0522a0c4a linux-3.0/arch/mips/mm/init.c -63e667709bb713243fd587d1bc37b42c linux-3.0/arch/mips/mm/hugetlbpage.c -44d5f9f88f93ae079b7a6b6d100792c4 linux-3.0/arch/mips/mm/highmem.c -567ba97ecf36824b1be547d492ca2736 linux-3.0/arch/mips/mm/fault.c -dbd1300573a50ed325dc236ac6772513 linux-3.0/arch/mips/mm/extable.c -bc329c24a07f15d92a8770d3ff474069 linux-3.0/arch/mips/mm/dma-default.c -e24ae472323140d225d19ddaf3bb5330 linux-3.0/arch/mips/mm/cex-sb1.S -2cf0a8b50882866ec1992a8a04d80052 linux-3.0/arch/mips/mm/cex-oct.S -e9d642cfcb9642c12ed083c854a3544f linux-3.0/arch/mips/mm/cex-gen.S -dc1812058bfb468a2269a81ee52e82a7 linux-3.0/arch/mips/mm/cerr-sb1.c -7e32a8194eb08e6eb167474f32b38bf3 linux-3.0/arch/mips/mm/cache.c -e95382e2bf21132d930dafe2b8835c19 linux-3.0/arch/mips/mm/c-tx39.c -46df6c3e60ec735e644a723696504dcb linux-3.0/arch/mips/mm/c-r4k.c -0a29b455a44c221219e5e7432042313b linux-3.0/arch/mips/mm/c-r3k.c -cbd68d951cbf6064e4bb4f2b21b2899e linux-3.0/arch/mips/mm/c-octeon.c -67d4690da853b41ffdb908222acd63ae linux-3.0/arch/mips/mm/Makefile -8ce704cb650f56c42408709ade500992 linux-3.0/arch/mips/mipssim/sim_time.c -7226aacacd9964a964bdd11a4b6111fc linux-3.0/arch/mips/mipssim/sim_smtc.c -95309a3a9c3c3c23291d0f964b995f2f linux-3.0/arch/mips/mipssim/sim_setup.c -99e677cab4f04dce0feb75127c7cce62 linux-3.0/arch/mips/mipssim/sim_platform.c -5b2410c3bf027ef9fd541f724997a978 linux-3.0/arch/mips/mipssim/sim_mem.c -537c52932fa0d4f00cfaea97572176bd linux-3.0/arch/mips/mipssim/sim_int.c -a9efd176409191ca6c01431dd7f3dcdb linux-3.0/arch/mips/mipssim/sim_console.c -9651c38a0175f985ca6ca9af8b4e8194 linux-3.0/arch/mips/mipssim/Platform -d504fee4cdc6573004aa601571b61df5 linux-3.0/arch/mips/mipssim/Makefile -bb48babc6907fda0d198ce265a10cc3f linux-3.0/arch/mips/math-emu/sp_tlong.c -18e8f937bf28c1c7294ea98d344029e7 linux-3.0/arch/mips/math-emu/sp_tint.c -289568122a622b4c4cd239ff5d158539 linux-3.0/arch/mips/math-emu/sp_sub.c -75e3a6f40532ca86cf48e67440275b10 linux-3.0/arch/mips/math-emu/sp_sqrt.c -6ca6bbc8e9568e182233e46137400f97 linux-3.0/arch/mips/math-emu/sp_simple.c -9363087cd772ce7494e999d0e9183796 linux-3.0/arch/mips/math-emu/sp_scalb.c -62fd4e385a57b556abd9db8dd0880b3e linux-3.0/arch/mips/math-emu/sp_mul.c -95bc23ac845da9bb7d12a337a6e83533 linux-3.0/arch/mips/math-emu/sp_modf.c -7ba51b5c1b869294a54a451a9c349f8d linux-3.0/arch/mips/math-emu/sp_logb.c -f5793e3e82ef1c91adab99609fe65a5b linux-3.0/arch/mips/math-emu/sp_frexp.c -5bdc11984d00bdc1af1cb08a9bce06b5 linux-3.0/arch/mips/math-emu/sp_flong.c -a7f787737606a203020b4a1555494df3 linux-3.0/arch/mips/math-emu/sp_fint.c -15226b7b3d3dfcccc79622f448ddf260 linux-3.0/arch/mips/math-emu/sp_fdp.c -43440fbf3eb6e93b07fbe184f04ddd70 linux-3.0/arch/mips/math-emu/sp_div.c -66600209cb90d47111eaddd64bdda8d4 linux-3.0/arch/mips/math-emu/sp_cmp.c -e05f5d2df1022bc3a5329ee4b2877f8e linux-3.0/arch/mips/math-emu/sp_add.c -3e1af13b39002fea096b0e53c65f78fa linux-3.0/arch/mips/math-emu/kernel_linkage.c -b7a8ee0fb5f373e60c275f39fe3a797a linux-3.0/arch/mips/math-emu/ieee754xcpt.c -77fe322a91ee2cfec72903212324bd0a linux-3.0/arch/mips/math-emu/ieee754sp.h -93e5adacbb088964507d1b2b2ce1b4d1 linux-3.0/arch/mips/math-emu/ieee754sp.c -6775781613aa60800b470f94c6124e87 linux-3.0/arch/mips/math-emu/ieee754m.c -74fc0febb0a3d62043ae137412b85413 linux-3.0/arch/mips/math-emu/ieee754int.h -12771f4b88b196fcb34db16e87d88a57 linux-3.0/arch/mips/math-emu/ieee754dp.h -2f61f22328de9ab8f9483555b596ed7e linux-3.0/arch/mips/math-emu/ieee754dp.c -4cc7d34519cc8d634539733c797c9603 linux-3.0/arch/mips/math-emu/ieee754d.c -b37cbed387c92991706ec4d1bde37104 linux-3.0/arch/mips/math-emu/ieee754.h -fe37b847cef977873291ee682e3e9a27 linux-3.0/arch/mips/math-emu/ieee754.c -ec3b372e98b1a91c754f4c9dd7c798ea linux-3.0/arch/mips/math-emu/dsemul.c -f9cf46b697d404f229f4c4c57d3721af linux-3.0/arch/mips/math-emu/dp_tlong.c -b8fc3e505e83c4a9233915e191c8e7cc linux-3.0/arch/mips/math-emu/dp_tint.c -6d845fcd0200551f1c1472c6d2216cc4 linux-3.0/arch/mips/math-emu/dp_sub.c -d6be567132e2a2971f2406d5a1d4ee8a linux-3.0/arch/mips/math-emu/dp_sqrt.c -abcbec009d66a454242243d1643e286e linux-3.0/arch/mips/math-emu/dp_simple.c -de04378cac68860fa3e782004481215b linux-3.0/arch/mips/math-emu/dp_scalb.c -fe21ec5c5b7dc0a1ee4fcf761da903ae linux-3.0/arch/mips/math-emu/dp_mul.c -7166e760b945a528626c2db42e2ffd7f linux-3.0/arch/mips/math-emu/dp_modf.c -d988652302c4a2dda32e223bf6d1d1e4 linux-3.0/arch/mips/math-emu/dp_logb.c -85437525e8893baca8a6cfa3e88c9226 linux-3.0/arch/mips/math-emu/dp_fsp.c -f0165473e6f7da619fddfd7876c9f130 linux-3.0/arch/mips/math-emu/dp_frexp.c -35359bf6a6904ab45070faa27ebfa435 linux-3.0/arch/mips/math-emu/dp_flong.c -ac7aec366b9bafd6b7218cee6deac9b1 linux-3.0/arch/mips/math-emu/dp_fint.c -b9f13380efb5622b54cfc5b57d08763b linux-3.0/arch/mips/math-emu/dp_div.c -8543c1e1836afab966a6e33f3f868e7b linux-3.0/arch/mips/math-emu/dp_cmp.c -86babf983e6ea58504bb860a02db9b48 linux-3.0/arch/mips/math-emu/dp_add.c -f25171621f9f8a530a65ea7bc73d129d linux-3.0/arch/mips/math-emu/cp1emu.c -32c58894b82ea5d6e03e0359d558f050 linux-3.0/arch/mips/math-emu/Makefile -703b8b4ab7d65d57a0fad0a5dcf3cd22 linux-3.0/arch/mips/loongson/lemote-2f/reset.c -bbe27708fb9290107522cfbd83c9c7a8 linux-3.0/arch/mips/loongson/lemote-2f/pm.c -314269cac340cc96c4bdf21a966dfdb5 linux-3.0/arch/mips/loongson/lemote-2f/machtype.c -1376d26f39efbbe13d2517df28ab4cb5 linux-3.0/arch/mips/loongson/lemote-2f/irq.c -c70706582e022e149f84e0960797bc5e linux-3.0/arch/mips/loongson/lemote-2f/ec_kb3310b.h -5d165c0eea43af4bbc1cb4c511593542 linux-3.0/arch/mips/loongson/lemote-2f/ec_kb3310b.c -e6316eb46fd3714fb727c285ddb34f41 linux-3.0/arch/mips/loongson/lemote-2f/Makefile -364918f6b41853107a53762830887dac linux-3.0/arch/mips/loongson/fuloong-2e/reset.c -48763547faf48a31b308167849628dbb linux-3.0/arch/mips/loongson/fuloong-2e/irq.c -1821de7261dd797e70dc44d8cece889e linux-3.0/arch/mips/loongson/fuloong-2e/Makefile -810fbe3b0dbd993896edb1b417b1cf47 linux-3.0/arch/mips/loongson/common/uart_base.c -056ef41bad1308506602885b8417d93e linux-3.0/arch/mips/loongson/common/time.c -59af2e10b51fcea95720fc2884c3c7db linux-3.0/arch/mips/loongson/common/setup.c -3c46eb0e2e8cb5559a8098d0424dfa23 linux-3.0/arch/mips/loongson/common/serial.c -ae2c327ef9b97da7f4afdbf21f93c2ba linux-3.0/arch/mips/loongson/common/rtc.c -821ea29dc34ab28289e8e72f125c3d7b linux-3.0/arch/mips/loongson/common/reset.c -3a21ed4f14e3b70151d5771ca135e955 linux-3.0/arch/mips/loongson/common/pm.c -211b9043e59cb689c11dea761a933932 linux-3.0/arch/mips/loongson/common/platform.c -630d1a10d337731b3ef135ea39caac25 linux-3.0/arch/mips/loongson/common/pci.c -d5e2686950f34cb694115d339bb3c313 linux-3.0/arch/mips/loongson/common/mem.c -35b74b439481fae4e22e67da152064ab linux-3.0/arch/mips/loongson/common/machtype.c -f6735b751952cb93a47bf6e752c9dd79 linux-3.0/arch/mips/loongson/common/irq.c -739d3f8229ca4d726f91fb6426c852ed linux-3.0/arch/mips/loongson/common/init.c -ff0569d3848dca6616002f428960f12f linux-3.0/arch/mips/loongson/common/gpio.c -ec01a1ad226e824fe5439dafcafed8f2 linux-3.0/arch/mips/loongson/common/env.c -512302ffc0fefdf3895ac2a0132ec52b linux-3.0/arch/mips/loongson/common/early_printk.c -c45a701ba0086da18676c06a30c51b8d linux-3.0/arch/mips/loongson/common/cs5536/cs5536_pci.c -df5a97980f4b85d53a363623709750f0 linux-3.0/arch/mips/loongson/common/cs5536/cs5536_ohci.c -0bad780ac3c215ecb5196258aaea002c linux-3.0/arch/mips/loongson/common/cs5536/cs5536_mfgpt.c -f8920951297333eed4886b89fdaa3e40 linux-3.0/arch/mips/loongson/common/cs5536/cs5536_isa.c -944ada311240e707f01e949cb7d1850b linux-3.0/arch/mips/loongson/common/cs5536/cs5536_ide.c -44b8213ed3113d8fb61fa9e4f1a5bb8f linux-3.0/arch/mips/loongson/common/cs5536/cs5536_ehci.c -298ed803727ca3ed0148de38b33b01c5 linux-3.0/arch/mips/loongson/common/cs5536/cs5536_acc.c -6f0a14bbb0c4c99b89e24ad0550cc396 linux-3.0/arch/mips/loongson/common/cs5536/Makefile -48cda02b6a0ea794b0c19dbddf33926a linux-3.0/arch/mips/loongson/common/cmdline.c -4d09d9f52e341dea69310ec9752ed8ef linux-3.0/arch/mips/loongson/common/bonito-irq.c -e6e74edaf6c9a580f08717b09e56cf82 linux-3.0/arch/mips/loongson/common/Makefile -a7948d670229604390a965a99f7ec6bf linux-3.0/arch/mips/loongson/Platform -f3d8a872186e0d8fad664f5bc73626c1 linux-3.0/arch/mips/loongson/Makefile -7563681bcfc4f92ff78c035c4ed83616 linux-3.0/arch/mips/loongson/Kconfig -e1eb80718e83b9d000f7725e0c70032c linux-3.0/arch/mips/lib/uncached.c -9f0eab73ac96e8e0c5a7ba26e3016a4d linux-3.0/arch/mips/lib/ucmpdi2.c -77e1d60190a34cf38c35c51838ff19d4 linux-3.0/arch/mips/lib/strnlen_user.S -be0eb405fdff91b8c5a299c81a19c8de linux-3.0/arch/mips/lib/strncpy_user.S -939f4b9cefb60ca9eeada07c38dc34e4 linux-3.0/arch/mips/lib/strlen_user.S -bec526e6b4f92bf457307f5c2e078266 linux-3.0/arch/mips/lib/r3k_dump_tlb.c -4144385945cbe12bc47b2b468a79fd14 linux-3.0/arch/mips/lib/memset.S -490442e7e1ec2e7870bd3843356494a9 linux-3.0/arch/mips/lib/memcpy.S -3de3f5df2b1b7d35a15ada73bc776f53 linux-3.0/arch/mips/lib/memcpy-inatomic.S -9e1fef8838254580c29c854c2c845398 linux-3.0/arch/mips/lib/lshrdi3.c -7156c3bbacc169c7626b1637aa115084 linux-3.0/arch/mips/lib/libgcc.h -8dfd6cf8e355a36fc4f065cd7df4b693 linux-3.0/arch/mips/lib/iomap.c -982a50cedd10101c32bddc8eb72b9d6a linux-3.0/arch/mips/lib/iomap-pci.c -e279261768f81031bc6cf563cf2ef70e linux-3.0/arch/mips/lib/dump_tlb.c -d9fa2df069e8e2822656d42069519b75 linux-3.0/arch/mips/lib/delay.c -48e2fe22924fad88921eaeaf14beba1d linux-3.0/arch/mips/lib/csum_partial.S -71ec5bd99f660f0d0071efeeb4f4ed4b linux-3.0/arch/mips/lib/cmpdi2.c -8b36e391d219e3efd3b989347fdaed78 linux-3.0/arch/mips/lib/ashrdi3.c -868931944b6c6a3100afd8a7e4bc4e43 linux-3.0/arch/mips/lib/ashldi3.c -7550f7fd079572f849f5e73351795627 linux-3.0/arch/mips/lib/Makefile -02c68e9bd5d3e9bf9970ce58061924e6 linux-3.0/arch/mips/lasat/sysctl.c -eeadcbb5767a1f2c7e3809afca54decf linux-3.0/arch/mips/lasat/setup.c -cdf15978268c576808f17a895980b594 linux-3.0/arch/mips/lasat/serial.c -073efe8a4baaf66e5f1445c9eb1d6a65 linux-3.0/arch/mips/lasat/reset.c -a8342faeb9d0a17ecee1e2d6f64259c4 linux-3.0/arch/mips/lasat/prom.h -3e0852b0b9d34666bff32d7c7efae169 linux-3.0/arch/mips/lasat/prom.c -c724101cceea6bf1002d8f8760fb9ba1 linux-3.0/arch/mips/lasat/picvue_proc.c -a3a2888d7726d317551781cfb8218196 linux-3.0/arch/mips/lasat/picvue.h -a98469b359e49011135fc03cadca7dec linux-3.0/arch/mips/lasat/picvue.c -d27699537210e5a0a89bce9a206aa14a linux-3.0/arch/mips/lasat/lasat_models.h -30d88e88ca78252a2622cebd295fce87 linux-3.0/arch/mips/lasat/lasat_board.c -09a760ca2712cc26504ace145b9b04d1 linux-3.0/arch/mips/lasat/interrupt.c -3370a2e0b1cb4913a4374cdb3c7711b0 linux-3.0/arch/mips/lasat/image/romscript.normal -7220345e796c155ea0aa897ba322fdf8 linux-3.0/arch/mips/lasat/image/head.S -3d1c48c8270fddc6d86661abd1d56d54 linux-3.0/arch/mips/lasat/image/Makefile -22c91030bbfe71e24889b35764675b83 linux-3.0/arch/mips/lasat/ds1603.h -6fce4ca94f1ff66b673ba5a82e84b882 linux-3.0/arch/mips/lasat/ds1603.c -6b00f77b96b5b21d973e996b190f0bac linux-3.0/arch/mips/lasat/at93c.h -dea1cc8b416a0b823a96b308a765c5ec linux-3.0/arch/mips/lasat/at93c.c -1d376d44d8b8af2591b11a6efa28de5b linux-3.0/arch/mips/lasat/Platform -086842e516fb786e551517e114207322 linux-3.0/arch/mips/lasat/Makefile -b2189407d5f0e239280b00e6e8312f78 linux-3.0/arch/mips/lasat/Kconfig -7defdf11fc005353c2b98bd07a1b5dbf linux-3.0/arch/mips/lantiq/xway/setup-xway.c -edef27f50ddb6a238eff2f2d45fecb05 linux-3.0/arch/mips/lantiq/xway/setup-ase.c -2ee203996eab8c302878bca483637639 linux-3.0/arch/mips/lantiq/xway/reset.c -c88b958c867f86307ac47b3efa627d93 linux-3.0/arch/mips/lantiq/xway/prom-xway.c -340bc2572cc7b434a539de944139e048 linux-3.0/arch/mips/lantiq/xway/prom-ase.c -744184b14159c9d72ee412aadeba7140 linux-3.0/arch/mips/lantiq/xway/pmu.c -a304e36a862b4332e9ed2ca1ae97c40f linux-3.0/arch/mips/lantiq/xway/mach-easy50712.c -08dbb2f991172837008780c28519bfa2 linux-3.0/arch/mips/lantiq/xway/mach-easy50601.c -3fef5cf1ff27daf07609134a2d873d5e linux-3.0/arch/mips/lantiq/xway/gpio_stp.c -a2a127dac3abf2c152ffe9bca01c4fa5 linux-3.0/arch/mips/lantiq/xway/gpio_ebu.c -f79d1a2e249efe58484e9085ae2027f1 linux-3.0/arch/mips/lantiq/xway/gpio.c -b7de8122d14db19a7f78299825500f26 linux-3.0/arch/mips/lantiq/xway/ebu.c -cd5653fa2c16cc6cdcb55abae825f1f1 linux-3.0/arch/mips/lantiq/xway/dma.c -00305642f15566b2e389038c02ed7bc9 linux-3.0/arch/mips/lantiq/xway/devices.h -3b17d81d51bdcf9fd7d8214013ef30c0 linux-3.0/arch/mips/lantiq/xway/devices.c -ec098583f0bf83264cff758a7a3be808 linux-3.0/arch/mips/lantiq/xway/clk-xway.c -a9b89fbfb3e74720e2ca5c71543fa818 linux-3.0/arch/mips/lantiq/xway/clk-ase.c -41a234ed2413824b0cfc793f7661144c linux-3.0/arch/mips/lantiq/xway/Makefile -ccbe319ae64b69cef7793c7eb23766ff linux-3.0/arch/mips/lantiq/xway/Kconfig -27f02cc1bc70431c52b1f069a4a43d34 linux-3.0/arch/mips/lantiq/setup.c -211212328d048cf9d42c19986f869596 linux-3.0/arch/mips/lantiq/prom.h -5d2ec5b7da9f170e24e6430bf6e30525 linux-3.0/arch/mips/lantiq/prom.c -74f0c52f8e66866606cab821d8a6332f linux-3.0/arch/mips/lantiq/machtypes.h -60f68de75dc4c5fff66c3b580cff915b linux-3.0/arch/mips/lantiq/irq.c -27877c2b27a0ee2328577091e3b81e0b linux-3.0/arch/mips/lantiq/early_printk.c -f8ecf22c35ba9aaab61ebcf0974981cf linux-3.0/arch/mips/lantiq/devices.h -254a89839b99ceb97f7fa29aa67a01f3 linux-3.0/arch/mips/lantiq/devices.c -4e00d99675cd5944ec0eb52210b2caf4 linux-3.0/arch/mips/lantiq/clk.h -817b5d9471d7a1ca29522a2f1eb8acbe linux-3.0/arch/mips/lantiq/clk.c -0f339d432053c991c1530ed5b8452a80 linux-3.0/arch/mips/lantiq/Platform -62bb1ec15baaaae9d4a9784e655e5b00 linux-3.0/arch/mips/lantiq/Makefile -5feb70de413e1363c7d7f04d2a6e4ae2 linux-3.0/arch/mips/lantiq/Kconfig -1df3e994d39604b0fbc193e93d202862 linux-3.0/arch/mips/kernel/watch.c -71d5766b7a6d71065735760e1806cae3 linux-3.0/arch/mips/kernel/vpe.c -8166aea5f622fedd4c5ee9c649cd0995 linux-3.0/arch/mips/kernel/vmlinux.lds.S -4ceb4f00945fc925264cd55e057ef15a linux-3.0/arch/mips/kernel/vdso.c -b3caee1d04243bde270c42fa35af7771 linux-3.0/arch/mips/kernel/unaligned.c -90c2d74b0b267cb42999f0b9f0e5dda4 linux-3.0/arch/mips/kernel/traps.c -1d00617609bdbb156c792377a56a7bcd linux-3.0/arch/mips/kernel/topology.c -efd56f339ff870c684607203366cfb41 linux-3.0/arch/mips/kernel/time.c -1866b2accf73ebef65e4238cee28b48d linux-3.0/arch/mips/kernel/syscall.c -e64885aa12f5528dd310c42f3d30d7d8 linux-3.0/arch/mips/kernel/sync-r4k.c -8b89caa0828b44968fa3b866e8738c78 linux-3.0/arch/mips/kernel/stacktrace.c -e6e5189e8c28ff667acfb914232b6596 linux-3.0/arch/mips/kernel/spram.c -eaaec07a9f8ae0da4b33687f61c5c336 linux-3.0/arch/mips/kernel/spinlock_test.c -256d6bfa54ab599516390583039d00fd linux-3.0/arch/mips/kernel/smtc.c -b69270c40e775f56104bc6afbcc7fd8e linux-3.0/arch/mips/kernel/smtc-proc.c -f751cee7c9cf35868fa98d69a0b4e5a1 linux-3.0/arch/mips/kernel/smtc-asm.S -71d2642b3ce5284af9da91b4d774af8c linux-3.0/arch/mips/kernel/smp.c -7e5f0e44f13fc69936a6c23f3206a7a4 linux-3.0/arch/mips/kernel/smp-up.c -7c82a34d9ce936bab83526138c139bef linux-3.0/arch/mips/kernel/smp-mt.c -6b2b42d3ea1b21928850ccb26333d842 linux-3.0/arch/mips/kernel/smp-cmp.c -56cba53e57475f67fcf0c221ec2e2594 linux-3.0/arch/mips/kernel/signal_n32.c -459271c9d5bf060ba2ac6f1478343423 linux-3.0/arch/mips/kernel/signal32.c -8a76799e9e213446ca4a8463d808b3d9 linux-3.0/arch/mips/kernel/signal.c -e6db7a307ce3b86d32d6ee27148e0c99 linux-3.0/arch/mips/kernel/signal-common.h -91ccfbf590b4b0dd22db54540d48bc14 linux-3.0/arch/mips/kernel/setup.c -038d5c2e600d20ad4d6a336416c78dd3 linux-3.0/arch/mips/kernel/scall64-o32.S -b09f6d01de7ed29398990603120e39cf linux-3.0/arch/mips/kernel/scall64-n32.S -fbaf5ba8840e20b6fd1636ea91c4b8a4 linux-3.0/arch/mips/kernel/scall64-64.S -51d467b26d1ce5cf86698cb7ceecd783 linux-3.0/arch/mips/kernel/scall32-o32.S -a556342175dbe3ef7acfad5ecc4d3234 linux-3.0/arch/mips/kernel/rtlx.c -c72d08b4649abf85316ecc2a043bc7b4 linux-3.0/arch/mips/kernel/reset.c -a8b4e960c445ff88a3a6b3a57ffb9ad7 linux-3.0/arch/mips/kernel/relocate_kernel.S -0c349d34769ed88b869589321547c091 linux-3.0/arch/mips/kernel/r6000_fpu.S -a271e7cd2109e1bcce845a280a740886 linux-3.0/arch/mips/kernel/r4k_switch.S -19abef4c1428ebf5a74431c372b3818b linux-3.0/arch/mips/kernel/r4k_fpu.S -6ab6f6c50764346b4e499264a35077d5 linux-3.0/arch/mips/kernel/r2300_switch.S -95d6879c24d586c1bfc2c1112b33868c linux-3.0/arch/mips/kernel/r2300_fpu.S -02a1d0bbbc2653758422bb6e49bdf5d5 linux-3.0/arch/mips/kernel/ptrace32.c -dabdcc96024a4e065f541fafdff9c4a6 linux-3.0/arch/mips/kernel/ptrace.c -c0de7e78964ad2217be0ad2fe1c74848 linux-3.0/arch/mips/kernel/prom.c -b9a0da22e49fd7b3b8decef2a2f91dc5 linux-3.0/arch/mips/kernel/process.c -2cfeac75e45c567acd8f3cd01af1dd8b linux-3.0/arch/mips/kernel/proc.c -f089627df3e2d016e02e7a2a6641e4a2 linux-3.0/arch/mips/kernel/perf_event_mipsxx.c -de8e3222930c5fff2566c24cf7fd8529 linux-3.0/arch/mips/kernel/perf_event.c -5994640b33cc3c01c40bdc086202e94b linux-3.0/arch/mips/kernel/octeon_switch.S -20db3dad77ce5daae989fa2001f1dfd4 linux-3.0/arch/mips/kernel/module.c -c2fcf12747d247be42713af84fe328ef linux-3.0/arch/mips/kernel/mips_machine.c -6e8af4ba9e1f335bceb4f4461ad145f6 linux-3.0/arch/mips/kernel/mips_ksyms.c -38faa660bd7a3615cc2966b083d32695 linux-3.0/arch/mips/kernel/mips-mt.c -2965372964464a010a78b825925a59ec linux-3.0/arch/mips/kernel/mips-mt-fpaff.c -ab577e99a7669cdf0144b7ad4bfef057 linux-3.0/arch/mips/kernel/mcount.S -146b0a5ad8ae1656c5a842116fe58c66 linux-3.0/arch/mips/kernel/machine_kexec.c -51e98bcaa71f91b17445ffa6c9117862 linux-3.0/arch/mips/kernel/linux32.c -99cce60680c48f372e8062a7e3c09d43 linux-3.0/arch/mips/kernel/kspd.c -76ce34aa8528cc117572d6bae9bf8587 linux-3.0/arch/mips/kernel/kprobes.c -a338355be77f384653ae705a27fae272 linux-3.0/arch/mips/kernel/kgdb.c -e770a4863d956d0c93230c3864af9d15 linux-3.0/arch/mips/kernel/jump_label.c -ffb0df90471787214138def926d2bbf3 linux-3.0/arch/mips/kernel/irq_txx9.c -0a0dee19788becb46ba0c4c84cc03e9c linux-3.0/arch/mips/kernel/irq_cpu.c -c09aefa6be6273bd2a997e6e027a44ce linux-3.0/arch/mips/kernel/irq.c -a3a06cb581c78aad61cf8d4460b4685d linux-3.0/arch/mips/kernel/irq-rm9000.c -6bc7328caf6c6f53e388fa98721ecd89 linux-3.0/arch/mips/kernel/irq-rm7000.c -87f2eea68a3473fd754c492837cea42d linux-3.0/arch/mips/kernel/irq-msc01.c -3bdf7d7b080700b5f8a43fe5b1a27974 linux-3.0/arch/mips/kernel/irq-gt641xx.c -c54c7003a00f401a25083bb0f4214d72 linux-3.0/arch/mips/kernel/irq-gic.c -860e76eed6bbaa160d05cb3f04929f54 linux-3.0/arch/mips/kernel/init_task.c -dac10e654d8cb5eb100c6ea1363b88e8 linux-3.0/arch/mips/kernel/i8259.c -06d5e17cd68f5a21209809f80b28259f linux-3.0/arch/mips/kernel/i8253.c -07c79b45ca88152e6cf4b01e0c74cb2a linux-3.0/arch/mips/kernel/head.S -b444c3af946755a366947329924064e1 linux-3.0/arch/mips/kernel/gpio_txx9.c -d83a36605ba8b1f646e81b27672159df linux-3.0/arch/mips/kernel/genex.S -6275e66db71609e6c641e564c1b3fc66 linux-3.0/arch/mips/kernel/ftrace.c -636681e148d8dd1f86ca817e1c286229 linux-3.0/arch/mips/kernel/entry.S -24cde8439f4a62071c045062d3393111 linux-3.0/arch/mips/kernel/early_printk.c -090a600e6fd6c51504b005909ac2b7aa linux-3.0/arch/mips/kernel/csrc-sb1250.c -a4606afd83cc015753327fe85bd6bb09 linux-3.0/arch/mips/kernel/csrc-r4k.c -21dc8634e3b68e9888a7d30ce8d90618 linux-3.0/arch/mips/kernel/csrc-powertv.c -9bcb84501442bffbfa1f10589e5951d3 linux-3.0/arch/mips/kernel/csrc-ioasic.c -84cb47524455607ce57a2e6a26a33688 linux-3.0/arch/mips/kernel/csrc-bcm1480.c -f928951538ff8398395f68d72e55f808 linux-3.0/arch/mips/kernel/cpufreq/loongson2_cpufreq.c -1b396a0eb0cf28e78c90a122ecf6d469 linux-3.0/arch/mips/kernel/cpufreq/loongson2_clock.c -ec477c280a7140bdeaed1eeabd987c65 linux-3.0/arch/mips/kernel/cpufreq/Makefile -55ab60a696e14536664c38bf19d62f9c linux-3.0/arch/mips/kernel/cpufreq/Kconfig -ba9f480b8df120133acbb30bdb55972f linux-3.0/arch/mips/kernel/cpu-probe.c -0f26dcc6033e0e4668491aca9c8faf72 linux-3.0/arch/mips/kernel/cpu-bugs64.c -6d0835c1193e656b7893c69b921fe3f9 linux-3.0/arch/mips/kernel/cevt-txx9.c -d743ccec7e9c9e4b09581b4afefe788e linux-3.0/arch/mips/kernel/cevt-smtc.c -8c20ec4c059c5b857600360313670955 linux-3.0/arch/mips/kernel/cevt-sb1250.c -bd639a4f10e08acbee55393990e47d4e linux-3.0/arch/mips/kernel/cevt-r4k.c -c23f34201063d8ff90aa0c912c646e65 linux-3.0/arch/mips/kernel/cevt-gt641xx.c -c178f079fdabedea6ad027222b761150 linux-3.0/arch/mips/kernel/cevt-ds1287.c -6c88e8ce38e3cc452c9f986f6f4599e5 linux-3.0/arch/mips/kernel/cevt-bcm1480.c -b89faacd95944d2e90f8fc5e42205f07 linux-3.0/arch/mips/kernel/branch.c -08cfb0dd39a97390e75ece6f2d651800 linux-3.0/arch/mips/kernel/binfmt_elfo32.c -ae55c9b47331b642ac5007faf3cd8dff linux-3.0/arch/mips/kernel/binfmt_elfn32.c -d201145848b0d6da5a92ab828525131b linux-3.0/arch/mips/kernel/asm-offsets.c -dce188295ee069f0d0aa3af1de3b5301 linux-3.0/arch/mips/kernel/Makefile -34c3ac6c90f0133a14e8fee042f94cd7 linux-3.0/arch/mips/kernel/8250-platform.c -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/mips/kernel/.gitignore -c80544f7157739199688e7add66b18ee linux-3.0/arch/mips/jz4740/timer.h -32d0b145dfd61a8555be666556a43681 linux-3.0/arch/mips/jz4740/timer.c -c5294f30e064b9b899bcbcaeee27538d linux-3.0/arch/mips/jz4740/time.c -849cf4df75aa2a2354cd727a34d74bf0 linux-3.0/arch/mips/jz4740/setup.c -fa5c2e4923ea0d4e1c5e78a674362afa linux-3.0/arch/mips/jz4740/serial.h -96fd0c904451ff809280e77fa03827c6 linux-3.0/arch/mips/jz4740/serial.c -ec20f817bb5f29010f594970e46b88e8 linux-3.0/arch/mips/jz4740/reset.h -3a16d61b80aa9d58ec98354240af0cc6 linux-3.0/arch/mips/jz4740/reset.c -1109d3ab894bd44f05d9f6195777a535 linux-3.0/arch/mips/jz4740/pwm.c -c777a34870ce09ca534ace38d457c88b linux-3.0/arch/mips/jz4740/prom.c -fe78b8311ca708b4e5c505493ba4d90d linux-3.0/arch/mips/jz4740/pm.c -64a314d1013fa0be02e2175e9b23faea linux-3.0/arch/mips/jz4740/platform.c -2cd23297f3088eabe936fa78f28eebc1 linux-3.0/arch/mips/jz4740/irq.h -a8f8345e75f806ac9bae1f7fd933292b linux-3.0/arch/mips/jz4740/irq.c -45e7f3f14eec1ad64f3870d243683b70 linux-3.0/arch/mips/jz4740/gpio.c -3cd9cd2a6c79278428f799336eb8071e linux-3.0/arch/mips/jz4740/dma.c -ba81d6e72c228e65cad218305418cef9 linux-3.0/arch/mips/jz4740/clock.h -e7df808e1b8ebdeaaebe8d4e5e141e28 linux-3.0/arch/mips/jz4740/clock.c -36e6eebbf494ef8248fc087c413682d5 linux-3.0/arch/mips/jz4740/clock-debugfs.c -38e602290f731fcff03823dcc3314022 linux-3.0/arch/mips/jz4740/board-qi_lb60.c -611fd8e1f814d43151e742ea361f4de9 linux-3.0/arch/mips/jz4740/Platform -0e7748c3faca1dec8e01eed3b6d3df10 linux-3.0/arch/mips/jz4740/Makefile -994ccda2726b44af81e9e4f073e0b27b linux-3.0/arch/mips/jz4740/Kconfig -51a60bcfb7cd4b9699c8dd0fc53f013d linux-3.0/arch/mips/jazz/setup.c -149f8720a86e3d7bd3bac270ba5a9927 linux-3.0/arch/mips/jazz/reset.c -eb74baa698efcdebcd0770a63120761b linux-3.0/arch/mips/jazz/jazzdma.c -d23bbc9d8463faad6e0d09680440f511 linux-3.0/arch/mips/jazz/irq.c -a289effd809e8e4e9d25aabfaa539b17 linux-3.0/arch/mips/jazz/Platform -aa09451d4601c10819129fd34b5df903 linux-3.0/arch/mips/jazz/Makefile -e35383d1f4be6174df49ff0ab3cd35eb linux-3.0/arch/mips/jazz/Kconfig -4358e0eebeb4d29826286ca8f76e6851 linux-3.0/arch/mips/include/asm/xtalk/xwidget.h -a1efa7313a5af6fe4f1692fddb8f7a6e linux-3.0/arch/mips/include/asm/xtalk/xtalk.h -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/mips/include/asm/xor.h -2c7bd4792da6a2ccb1e5c6f4921dae74 linux-3.0/arch/mips/include/asm/wbflush.h -68823044395b11166b125589370e45f0 linux-3.0/arch/mips/include/asm/watch.h -7ed30caa41cf5e8b82c531a75f12c1b4 linux-3.0/arch/mips/include/asm/war.h -470bc8e6ec700758de4a5ce2a646e114 linux-3.0/arch/mips/include/asm/vr41xx/vr41xx.h -e2ad33eac8ae9a47da63d3d02952cdd6 linux-3.0/arch/mips/include/asm/vr41xx/tb0287.h -163db40dc98ed2e6a69009127b517a77 linux-3.0/arch/mips/include/asm/vr41xx/tb0226.h -3905757d454b5f613d019357afc23c4b linux-3.0/arch/mips/include/asm/vr41xx/tb0219.h -0397a837b4ef16bdeb8a3aabbcc0977b linux-3.0/arch/mips/include/asm/vr41xx/siu.h -2fcd2db0c96cd6b5553be30dfe5fdeed linux-3.0/arch/mips/include/asm/vr41xx/pci.h -5388bb8f65a6fea24460793f76739701 linux-3.0/arch/mips/include/asm/vr41xx/mpc30x.h -a09eaad670dbb0911978635b6aa55d23 linux-3.0/arch/mips/include/asm/vr41xx/irq.h -98fc78bd80ba672b90d5f9ae71dc16df linux-3.0/arch/mips/include/asm/vr41xx/giu.h -b3f27872bd7c8b62725f9b0be5b84c2a linux-3.0/arch/mips/include/asm/vr41xx/capcella.h -f746c01e483eb5fa1747c0ee35e6ca48 linux-3.0/arch/mips/include/asm/vpe.h -ea8144460b11098b5aee5e873714862a linux-3.0/arch/mips/include/asm/vga.h -a034c5a868f6e5667055209c96a76ba7 linux-3.0/arch/mips/include/asm/vdso.h -a7621c19b4ffedab797d5d9ef0834a61 linux-3.0/arch/mips/include/asm/user.h -848b2b54004ce2d88321debeb85e9a0a linux-3.0/arch/mips/include/asm/unistd.h -6cd80e914b09da3567f4f8d0eff9e760 linux-3.0/arch/mips/include/asm/unaligned.h -54ef8b4281a8709709fd75155efac8f2 linux-3.0/arch/mips/include/asm/ucontext.h -d84c90768bf82408692e5fb544f7ac9f linux-3.0/arch/mips/include/asm/uasm.h -b1931b723506bb775736e7cc91c2d4c0 linux-3.0/arch/mips/include/asm/uaccess.h -b3b15f2b54bde60e8b0e3f1e6727918c linux-3.0/arch/mips/include/asm/types.h -be362ba72bc1b2d8ceb830a69d2e70e1 linux-3.0/arch/mips/include/asm/txx9tmr.h -4b48391a990b2a58d455cc2eeb3f768d linux-3.0/arch/mips/include/asm/txx9pio.h -2e386ba188ba7a189e78864deb98147a linux-3.0/arch/mips/include/asm/txx9irq.h -7d1aaaf009a36c0a9f8d4e3c3250b76c linux-3.0/arch/mips/include/asm/txx9/tx4939.h -f2c1f0e32b73d88cba07c6fd6fe7e1dd linux-3.0/arch/mips/include/asm/txx9/tx4938.h -29ada5d5eea640422729ec5f27d88bd6 linux-3.0/arch/mips/include/asm/txx9/tx4927pcic.h -11a30abcf034c437d672904dc8dcd3f6 linux-3.0/arch/mips/include/asm/txx9/tx4927.h -94354adf7ec5f525925a1a5a614e2371 linux-3.0/arch/mips/include/asm/txx9/tx3927.h -337e5a849382071ccd7c96d91d3fb975 linux-3.0/arch/mips/include/asm/txx9/spi.h -3e113dcb5574edcd77304b2cec504195 linux-3.0/arch/mips/include/asm/txx9/smsc_fdc37m81x.h -52489a2e937020048ef85782169cf763 linux-3.0/arch/mips/include/asm/txx9/rbtx4939.h -34b9de0c93d2b8fafa720c2fa01c4259 linux-3.0/arch/mips/include/asm/txx9/rbtx4938.h -f6cb247dd3136cc704bb97f9b935daf4 linux-3.0/arch/mips/include/asm/txx9/rbtx4927.h -a2f409fc6ecfc47d796b16001fb76c3b linux-3.0/arch/mips/include/asm/txx9/pci.h -15813dec5a3508202615c8f9d9e00051 linux-3.0/arch/mips/include/asm/txx9/ndfmc.h -203993a1959c87d29096e8c5c888ca06 linux-3.0/arch/mips/include/asm/txx9/jmr3927.h -2c41c9b6da25e83de8e40ea0eac80e66 linux-3.0/arch/mips/include/asm/txx9/generic.h -66d426ba58501135841a89ef26df5855 linux-3.0/arch/mips/include/asm/txx9/dmac.h -95fcb7f6fb10f71e388a51251facd6d0 linux-3.0/arch/mips/include/asm/txx9/boards.h -88a95f9384dffb2df1b59c3ba5c48fd6 linux-3.0/arch/mips/include/asm/traps.h -1fab17c97e55238136e3853f324727a5 linux-3.0/arch/mips/include/asm/topology.h -abf7b341bc78efc6f26ab262877255ac linux-3.0/arch/mips/include/asm/tlbflush.h -53aaf04ecca3833e0057b1817ce60917 linux-3.0/arch/mips/include/asm/tlbdebug.h -db21a3a0d54bfc69069427b2fe7d1dbf linux-3.0/arch/mips/include/asm/tlb.h -1ab93b3cfb806ff318b75524abc44f5c linux-3.0/arch/mips/include/asm/titan_dep.h -182bad78f341ab9b54a1ac3c9463a655 linux-3.0/arch/mips/include/asm/timex.h -ef0eb1a0fcb3ca7bb926bdcc82abfa9b linux-3.0/arch/mips/include/asm/time.h -61f49940b1919530de14e165cc7297ce linux-3.0/arch/mips/include/asm/thread_info.h -8af55546807a938051a38db2b65a0d79 linux-3.0/arch/mips/include/asm/termios.h -59e96a890c0b2f3eeb642dbd80a24a6d linux-3.0/arch/mips/include/asm/termbits.h -85ad5ca2b8b60188aad1846c9f1bcfb5 linux-3.0/arch/mips/include/asm/system.h -14b3e35f95d35e9ee73de711aae44c43 linux-3.0/arch/mips/include/asm/sysmips.h -f4e213d5fa6653255bd33b0545801752 linux-3.0/arch/mips/include/asm/swab.h -d5383692245be995bd447e4eb7411c78 linux-3.0/arch/mips/include/asm/suspend.h -a340f89d5b23abacc61286ac95edeaa2 linux-3.0/arch/mips/include/asm/string.h -1b33a41e7c171db19b09ce30cf72f4b7 linux-3.0/arch/mips/include/asm/statfs.h -c4acc57a7534527cdf7f90aa71a9e6b3 linux-3.0/arch/mips/include/asm/stat.h -d545a28bc238c77c9f30baa1ef3d6728 linux-3.0/arch/mips/include/asm/stacktrace.h -da111eb6d052e2fd17582b51ca08512d linux-3.0/arch/mips/include/asm/stackframe.h -c5fbd416054415572306ace580fea2a7 linux-3.0/arch/mips/include/asm/spram.h -49b05d6819cf23b15dbe518820a08200 linux-3.0/arch/mips/include/asm/spinlock_types.h -08f9a49e4177ff96494a404c712b5e93 linux-3.0/arch/mips/include/asm/spinlock.h -f95f827c5533237e6488753ed4eed2d6 linux-3.0/arch/mips/include/asm/sparsemem.h -dbeb8c67d4b200c1dd81461af571eeda linux-3.0/arch/mips/include/asm/sockios.h -6aa2656a4145b6b876e2eeaaa7599a24 linux-3.0/arch/mips/include/asm/socket.h -d12c48c0bf12e644555a83fa9f621d73 linux-3.0/arch/mips/include/asm/sni.h -65bad35e23e6b13a5631ba311ae0367d linux-3.0/arch/mips/include/asm/sn/types.h -0578398e81f1ed85f70e4ef1bb37ac6e linux-3.0/arch/mips/include/asm/sn/sn_private.h -bce50e8d5472906daad6243539336f7d linux-3.0/arch/mips/include/asm/sn/sn0/ip27.h -d1ddd24791b126b95e6605aaae80a9e6 linux-3.0/arch/mips/include/asm/sn/sn0/hubpi.h -f3ca378e3bfec7a4802abf55e69317ab linux-3.0/arch/mips/include/asm/sn/sn0/hubni.h -39ca63a3fff1569c4cc1892d64878539 linux-3.0/arch/mips/include/asm/sn/sn0/hubmd.h -31482fcc4961ec12aec01a3538a84ead linux-3.0/arch/mips/include/asm/sn/sn0/hubio.h -2f3d00afd2a8a3c568fd7b1af4cef5e6 linux-3.0/arch/mips/include/asm/sn/sn0/hub.h -83b4a65095ab697654f82f1c5130bdbe linux-3.0/arch/mips/include/asm/sn/sn0/arch.h -fc447c0fb335f2e80ba0b3fe486fe0ee linux-3.0/arch/mips/include/asm/sn/sn0/addrs.h -ccd96015209f3e5de6e088542eb70312 linux-3.0/arch/mips/include/asm/sn/nmi.h -c82aeab4e72e4e85d270f0ccef7f4736 linux-3.0/arch/mips/include/asm/sn/mapped_kernel.h -0ce2e47b4e48bea2f2216f93f537fd14 linux-3.0/arch/mips/include/asm/sn/launch.h -b493f37c91f43f7a2feec4ebf5413dcb linux-3.0/arch/mips/include/asm/sn/klkernvars.h -31226b673465f4c7c39a31741b32e44b linux-3.0/arch/mips/include/asm/sn/kldir.h -23992ff0e5eb9770ba36939b91bfb1e7 linux-3.0/arch/mips/include/asm/sn/klconfig.h -53a58f64a6cf4837293702bfc20c40de linux-3.0/arch/mips/include/asm/sn/ioc3.h -97aa1e1cf6507b1f02ad9b10526a049b linux-3.0/arch/mips/include/asm/sn/io.h -dc6f50255bae81a59f7e1bcf42b59f94 linux-3.0/arch/mips/include/asm/sn/intr.h -7d309dd3856d29980f23fcf8a246acef linux-3.0/arch/mips/include/asm/sn/hub.h -36a7100d4e2bfa567a128bf3466978be linux-3.0/arch/mips/include/asm/sn/gda.h -305c86c76d857d0b9a001739d4d10289 linux-3.0/arch/mips/include/asm/sn/fru.h -8b1176cbaeb90c030791b28285119549 linux-3.0/arch/mips/include/asm/sn/arch.h -ddb3e9613ca3588ab6ac2a2b1c8b9852 linux-3.0/arch/mips/include/asm/sn/agent.h -56f5de3f83a2a86241feab37725d92dd linux-3.0/arch/mips/include/asm/sn/addrs.h -a6c515ed6de0bc2b268e31c76dbd58db linux-3.0/arch/mips/include/asm/smvp.h -e079a2143ad136aca591625f331a7693 linux-3.0/arch/mips/include/asm/smtc_proc.h -c34f47f9fc9b76079b78d27c70b9229f linux-3.0/arch/mips/include/asm/smtc_ipi.h -6c8bdb3c6bec9fc85769476d11efca11 linux-3.0/arch/mips/include/asm/smtc.h -eff47dff41f39805b5cc5dcb200682a1 linux-3.0/arch/mips/include/asm/smp.h -a3d3d87e142b005f81a2f8ceb1fd76f9 linux-3.0/arch/mips/include/asm/smp-ops.h -95f4e7329a60920995883faf6d8bab37 linux-3.0/arch/mips/include/asm/sim.h -0da6ddd4702ad4979a39558ae5958b5a linux-3.0/arch/mips/include/asm/signal.h -b309d55da6ca5960f33bb277954863c8 linux-3.0/arch/mips/include/asm/siginfo.h -c8c7807d011f217568dba97febebe2b1 linux-3.0/arch/mips/include/asm/sigcontext.h -228d7e0dc154d749665446a0531801e5 linux-3.0/arch/mips/include/asm/sibyte/swarm.h -a75dd2670b850973f591850d5adc5342 linux-3.0/arch/mips/include/asm/sibyte/sentosa.h -86915fddcde8590931ab8d8510423085 linux-3.0/arch/mips/include/asm/sibyte/sb1250_uart.h -0c70fa19d54e96324170596f8e3fdb3d linux-3.0/arch/mips/include/asm/sibyte/sb1250_syncser.h -29f48d73af7dc0c7892d682b934a0b5f linux-3.0/arch/mips/include/asm/sibyte/sb1250_smbus.h -37cdd545f816853d1c08211d816a3190 linux-3.0/arch/mips/include/asm/sibyte/sb1250_scd.h -c47f2bb54dafe21c5fec2ce601049d91 linux-3.0/arch/mips/include/asm/sibyte/sb1250_regs.h -9be15558ff138f2c1dc555da70446271 linux-3.0/arch/mips/include/asm/sibyte/sb1250_mc.h -1f60fc0880fb89e31945cc52ebbe8eb3 linux-3.0/arch/mips/include/asm/sibyte/sb1250_mac.h -fdce8c7ab80a376721d4b3f321bdf57a linux-3.0/arch/mips/include/asm/sibyte/sb1250_ldt.h -03b56120b86087c1ec01407d8d75c47b linux-3.0/arch/mips/include/asm/sibyte/sb1250_l2c.h -371836a1305d7e25d69ce0f7c40f511c linux-3.0/arch/mips/include/asm/sibyte/sb1250_int.h -31b2dec7f2bbf6248fa0041a7f0c4cdd linux-3.0/arch/mips/include/asm/sibyte/sb1250_genbus.h -0c88fbd0afd89f251a39cd6f4767663a linux-3.0/arch/mips/include/asm/sibyte/sb1250_dma.h -e035cee53a08e418d918a340dd5c0a5d linux-3.0/arch/mips/include/asm/sibyte/sb1250_defs.h -a98d60d71233d415c46761ac6b90fe48 linux-3.0/arch/mips/include/asm/sibyte/sb1250.h -97be718137d74f5bfe9d123e9fc2bfe9 linux-3.0/arch/mips/include/asm/sibyte/carmel.h -f6fd4826e1bab994606768b5959747a6 linux-3.0/arch/mips/include/asm/sibyte/board.h -7c795a6850c2303322e89005cc15bf76 linux-3.0/arch/mips/include/asm/sibyte/bigsur.h -33ceecfeb81a191e9ddc3867dc5e5794 linux-3.0/arch/mips/include/asm/sibyte/bcm1480_scd.h -b722297a667232ddf0dd7c8d89804533 linux-3.0/arch/mips/include/asm/sibyte/bcm1480_regs.h -e234c5d49c8a0e62c401068aadf988a4 linux-3.0/arch/mips/include/asm/sibyte/bcm1480_mc.h -c6e4d945d028b21be467592d110cfadb linux-3.0/arch/mips/include/asm/sibyte/bcm1480_l2c.h -ef78144f174c680fd1231d623d7e8f99 linux-3.0/arch/mips/include/asm/sibyte/bcm1480_int.h -1490caeb6cae9419b4665c20b97c08b4 linux-3.0/arch/mips/include/asm/shmparam.h -272c473e23e912cd83ce01e17e8b166c linux-3.0/arch/mips/include/asm/shmbuf.h -aa2226cddaa1607478f3a62109f87283 linux-3.0/arch/mips/include/asm/sgidefs.h -1a3921eaceaca56521b32f5ab55308e0 linux-3.0/arch/mips/include/asm/sgiarcs.h -794cc4c06518d1d928f26a152569e15f linux-3.0/arch/mips/include/asm/sgialib.h -0a35dee64665877ddff608d91ed169dc linux-3.0/arch/mips/include/asm/sgi/wd.h -ccfe421956da8893530d6c404d09cf1c linux-3.0/arch/mips/include/asm/sgi/sgi.h -968ebb66600fcae37dba10d572b7acbd linux-3.0/arch/mips/include/asm/sgi/seeq.h -c4f31d8a7a7931e48573105350fb759b linux-3.0/arch/mips/include/asm/sgi/pi1.h -2a8afa08abf3200678636a32dc1fa98e linux-3.0/arch/mips/include/asm/sgi/mc.h -de736072009bf34b936fa47e787eb24a linux-3.0/arch/mips/include/asm/sgi/ip22.h -a99713f38fac92cd2ebb0b6214881016 linux-3.0/arch/mips/include/asm/sgi/ioc.h -1588324aef797942d40cc8f14f75e7c3 linux-3.0/arch/mips/include/asm/sgi/hpc3.h -8dbc3bfd9b65a36abfa1f65b0ee2ed08 linux-3.0/arch/mips/include/asm/sgi/gio.h -45ee408da80b0563b724d024cb46cf1d linux-3.0/arch/mips/include/asm/setup.h -b7fdb5c8ffc0fcea37c954a24e7e1777 linux-3.0/arch/mips/include/asm/serial.h -e307525ebac637318939333e31c86cd5 linux-3.0/arch/mips/include/asm/sembuf.h -4f156142a19e576f79a98213d5506ecd linux-3.0/arch/mips/include/asm/segment.h -716e988ed238c6b982105c3872180f03 linux-3.0/arch/mips/include/asm/sections.h -c64af276456e5ce9e85a676850b45c0e linux-3.0/arch/mips/include/asm/seccomp.h -42340688733be3341f444b44b194ad40 linux-3.0/arch/mips/include/asm/scatterlist.h -2c78d435e8fa0e2c7737dda52c5a8115 linux-3.0/arch/mips/include/asm/rtlx.h -b5f33181b897f76d264ddcbdf3a52bde linux-3.0/arch/mips/include/asm/rm9k-ocd.h -764797df50e8b171824487518049188e linux-3.0/arch/mips/include/asm/resource.h -3ee4d134a337b946946899d2dc125560 linux-3.0/arch/mips/include/asm/regdef.h -f3f4626d01306c80d519ff0e5006d69d linux-3.0/arch/mips/include/asm/reg.h -032c0e6cfd76d0b6c7e6d6b1707e273b linux-3.0/arch/mips/include/asm/reboot.h -09c8feee03f7313c3ced29b95d557472 linux-3.0/arch/mips/include/asm/r4kcache.h -8d8bc400bd94adc4e6364f3f51bf1318 linux-3.0/arch/mips/include/asm/r4k-timer.h -f5ff1dc9320bdc7b1ad474b3814a8496 linux-3.0/arch/mips/include/asm/ptrace.h -5db716085cff42c2de84a9a2c7051a9c linux-3.0/arch/mips/include/asm/prom.h -133612e24b13d702ed22d69234c81e05 linux-3.0/arch/mips/include/asm/processor.h -052b61f1efade76268a6518a020f0f7a linux-3.0/arch/mips/include/asm/prefetch.h -a3bed773b00d415dfb1a727ed4b697a9 linux-3.0/arch/mips/include/asm/posix_types.h -a29909987b4eb4dddc962f5c954613ea linux-3.0/arch/mips/include/asm/poll.h -00a0020d013b4c8bdfbc409360342b58 linux-3.0/arch/mips/include/asm/pmon.h -44397af05fdd1c9cd23624ee9b299ba7 linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/war.h -679f6b2b4ec86aa5bb648039c4edd3ae linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/msp_usb.h -fdae407a507ddf0ffb426275fd865941 linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/msp_slp_int.h -aa232bb36dea19ea04101f0c1ee12b2e linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/msp_regs.h -87ad0d52128200beddef8349abd4968e linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/msp_regops.h -90f92afdc3ae125d35b3fbd0b0a1dbac linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/msp_prom.h -b3c5d0b4a248462ec53acbe67e1e7441 linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/msp_pci.h -13fb035918e3513284dd7f1d16d2281c linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/msp_int.h -993252ec72a4dca47a552a2e00dd7357 linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/msp_gpio_macros.h -eb9564ad56fc462c3d630dc7fd52762e linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/msp_cic_int.h -eaeb2679e48c412c7b4d33713ee99bec linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/gpio.h -cf3098bf0c92b4ec32dbd9e4c4d9d1c0 linux-3.0/arch/mips/include/asm/pmc-sierra/msp71xx/cpu-feature-overrides.h -456a34ca552da6276a6a8720c89b3e89 linux-3.0/arch/mips/include/asm/pgtable.h -b5a06f85bffa727c01326ea5a1685f4a linux-3.0/arch/mips/include/asm/pgtable-bits.h -ca32606780a281f3a2922c2649ee9ac5 linux-3.0/arch/mips/include/asm/pgtable-64.h -8f13022eb13fddd0448ceab99bfd3b76 linux-3.0/arch/mips/include/asm/pgtable-32.h -e4010cbf5f0a08c9c67e53e1840a32a4 linux-3.0/arch/mips/include/asm/pgalloc.h -d2cb3f9f81c583314b1a3065a9c7981f linux-3.0/arch/mips/include/asm/perf_event.h -64f0e4eddfd692e5465490fd51ddeed1 linux-3.0/arch/mips/include/asm/percpu.h -64384c53b238720094f12e73efe895c2 linux-3.0/arch/mips/include/asm/pci/bridge.h -c3d028766aabd0aae4f198027d7a7759 linux-3.0/arch/mips/include/asm/pci.h -419018600d2e2fc52e024d83ed2e460c linux-3.0/arch/mips/include/asm/parport.h -beb56096a905f7b6afc530b22e053646 linux-3.0/arch/mips/include/asm/param.h -9dc9f4325237c0eee9b1517c554e4de7 linux-3.0/arch/mips/include/asm/page.h -cbcbbc1cce0e099c61420fac1b7bda40 linux-3.0/arch/mips/include/asm/paccess.h -595ac231a137b5de9ae355c497acba92 linux-3.0/arch/mips/include/asm/octeon/pci-octeon.h -d8eaadfeb3da42ce04c18c56ea89e567 linux-3.0/arch/mips/include/asm/octeon/octeon.h -ac566c42a0492593de1099fb902aa088 linux-3.0/arch/mips/include/asm/octeon/octeon-model.h -2e5532a5a5e83c4a5f27019d3456aa3e linux-3.0/arch/mips/include/asm/octeon/octeon-feature.h -722104957375b0ff127ade45a1d9dcae linux-3.0/arch/mips/include/asm/octeon/cvmx.h -758c145c1c7b1cbc2601ee89ab8c3586 linux-3.0/arch/mips/include/asm/octeon/cvmx-uctlx-defs.h -bd5e93e76d2beea5d225722d1ac231c2 linux-3.0/arch/mips/include/asm/octeon/cvmx-sysinfo.h -b25554094a6682c619920b952e7bfbfc linux-3.0/arch/mips/include/asm/octeon/cvmx-spinlock.h -32386fd507c514927ab61b13e525d541 linux-3.0/arch/mips/include/asm/octeon/cvmx-smix-defs.h -c91e4e06bb2ca55441e3b439be6b52c9 linux-3.0/arch/mips/include/asm/octeon/cvmx-rnm-defs.h -7dce80614de608dd7298566f8b52fc07 linux-3.0/arch/mips/include/asm/octeon/cvmx-pow-defs.h -fbc9d0e1914b51d5a1350ad801e465f2 linux-3.0/arch/mips/include/asm/octeon/cvmx-pexp-defs.h -b64dedd2c22975f7faf066bf37234cb6 linux-3.0/arch/mips/include/asm/octeon/cvmx-pescx-defs.h -751f6c4cd0b57311601af3729004a9d2 linux-3.0/arch/mips/include/asm/octeon/cvmx-pciercx-defs.h -a8a2e20144790dde45d4b294a4c41f91 linux-3.0/arch/mips/include/asm/octeon/cvmx-pcieep-defs.h -09b9bf0cc351d343b38b96e9e1b221bd linux-3.0/arch/mips/include/asm/octeon/cvmx-pci-defs.h -5943c2f0caea81562cf61b44132fa6f7 linux-3.0/arch/mips/include/asm/octeon/cvmx-packet.h -c4ab5fae9ff50fb9efb15cff92594f3a linux-3.0/arch/mips/include/asm/octeon/cvmx-npi-defs.h -0286b69d28527609fa452b7111ad79b0 linux-3.0/arch/mips/include/asm/octeon/cvmx-npei-defs.h -990050b64a5534d766a7f7eea0b96951 linux-3.0/arch/mips/include/asm/octeon/cvmx-mixx-defs.h -cda066aec71704f36b43f0217d055fc9 linux-3.0/arch/mips/include/asm/octeon/cvmx-mio-defs.h -c332ac50275ee506e0b5df42359910a7 linux-3.0/arch/mips/include/asm/octeon/cvmx-led-defs.h -2fbe9a25452a293c3f0591bececc4a69 linux-3.0/arch/mips/include/asm/octeon/cvmx-l2t-defs.h -8c1ec5600869fcc8cd923fc6ad2e8f18 linux-3.0/arch/mips/include/asm/octeon/cvmx-l2d-defs.h -9111cd7a571545edc10971f2698f6148 linux-3.0/arch/mips/include/asm/octeon/cvmx-l2c.h -a8210fad691976f5360bd52275e7d283 linux-3.0/arch/mips/include/asm/octeon/cvmx-l2c-defs.h -42ed1ae947644d3f2e0762889d7bc70c linux-3.0/arch/mips/include/asm/octeon/cvmx-ipd-defs.h -579932f9848544530862ce7b4b5a6363 linux-3.0/arch/mips/include/asm/octeon/cvmx-iob-defs.h -394b45fe4e8088a0b9288648a141d7ad linux-3.0/arch/mips/include/asm/octeon/cvmx-helper-jtag.h -d222de208231bfd4d261d73409be08a9 linux-3.0/arch/mips/include/asm/octeon/cvmx-helper-errata.h -b3cfc1b61e71acd69b47516310b688bb linux-3.0/arch/mips/include/asm/octeon/cvmx-gpio-defs.h -d54ed1aa637f71724be1cf33517e4e1f linux-3.0/arch/mips/include/asm/octeon/cvmx-ciu-defs.h -89080e2552447fd7c23a20a158766e82 linux-3.0/arch/mips/include/asm/octeon/cvmx-bootmem.h -e2a0c820c65f1783d297545e27578e0d linux-3.0/arch/mips/include/asm/octeon/cvmx-bootinfo.h -1ce35affb162ba3350cae6c6a1ffeffb linux-3.0/arch/mips/include/asm/octeon/cvmx-asm.h -eacfdf257d679da5fe2d31c960ba3a08 linux-3.0/arch/mips/include/asm/octeon/cvmx-agl-defs.h -e39b0779372c5186058983597988ad01 linux-3.0/arch/mips/include/asm/nile4.h -9ee8fd7994cc4a7792c9dd1c04857520 linux-3.0/arch/mips/include/asm/netlogic/xlr/xlr.h -18f970a0f1ef9f3e2f78e3b806b4e59b linux-3.0/arch/mips/include/asm/netlogic/xlr/pic.h -115cad2d05290a602f4d065ff5d2755b linux-3.0/arch/mips/include/asm/netlogic/xlr/iomap.h -58782f8ff843fa0a6368a35a12853ce4 linux-3.0/arch/mips/include/asm/netlogic/xlr/gpio.h -c94bac9f718296ab71bfffaabd589ad9 linux-3.0/arch/mips/include/asm/netlogic/psb-bootinfo.h -2fde10ec26edcef9e00110049b881f48 linux-3.0/arch/mips/include/asm/netlogic/mips-extns.h -a73ed694da3f752b32b48a9e411e6e80 linux-3.0/arch/mips/include/asm/netlogic/interrupt.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/mips/include/asm/mutex.h -4a009c60a12337e7723da628989db6ff linux-3.0/arch/mips/include/asm/msgbuf.h -0048b8c36ee52ee91c63ac6272266fbd linux-3.0/arch/mips/include/asm/msc01_ic.h -b90d401d5673a54cd0e283d648d404e0 linux-3.0/arch/mips/include/asm/module.h -cc1050a8873f81f4a312c5528c4be9c3 linux-3.0/arch/mips/include/asm/mmzone.h -8e0f2e0980f732f9b639627871c8ff79 linux-3.0/arch/mips/include/asm/mmu_context.h -4fc75c6ef0589be3f4796bda9a2e3b73 linux-3.0/arch/mips/include/asm/mmu.h -a6513de5deb42ef0950ef2a5a1fc23c6 linux-3.0/arch/mips/include/asm/mman.h -d7b0050026af0d68e20ad3ffcece0781 linux-3.0/arch/mips/include/asm/mipsregs.h -52e501660a3d268a0d0b93ca59fc4cb8 linux-3.0/arch/mips/include/asm/mipsprom.h -89ede06eec4cd8aab5775156e3a812d8 linux-3.0/arch/mips/include/asm/mipsmtregs.h -0d74a9f15d2bfd0078f8554cc96ff7ac linux-3.0/arch/mips/include/asm/mips_mt.h -293dfc534faf2dd2647cd59e5145e379 linux-3.0/arch/mips/include/asm/mips_machine.h -e7ba31438c78d072fb395550977c5215 linux-3.0/arch/mips/include/asm/mips-boards/simint.h -4dd63a3b07315636ffe28e7c6243e12f linux-3.0/arch/mips/include/asm/mips-boards/sim.h -7c4dd618c7c4f993ab3b499292b62b77 linux-3.0/arch/mips/include/asm/mips-boards/prom.h -a883f0c257e662f0c5a8478bc4251a8e linux-3.0/arch/mips/include/asm/mips-boards/piix4.h -9bd4da8122b7a7e5d19515be2f8495db linux-3.0/arch/mips/include/asm/mips-boards/msc01_pci.h -5f5fc088f8e01add7181eb79e2534c06 linux-3.0/arch/mips/include/asm/mips-boards/maltaint.h -ee9094717d5dc1a36b15734527387442 linux-3.0/arch/mips/include/asm/mips-boards/malta.h -62ec4a67a1d3301e1b0be9bf87651a3b linux-3.0/arch/mips/include/asm/mips-boards/launch.h -c26644e48d65ab8d70cc8f4b339f7dff linux-3.0/arch/mips/include/asm/mips-boards/generic.h -468b26d8ef32693e8d2532c513ebed53 linux-3.0/arch/mips/include/asm/mips-boards/bonito64.h -c0af00d3031c7d36b9174608b27cce68 linux-3.0/arch/mips/include/asm/mc146818rtc.h -41f4deac7cf9e022bece666311c1b57f linux-3.0/arch/mips/include/asm/mc146818-time.h -95f2b34c7f035c0a4597f7f02b1cbb88 linux-3.0/arch/mips/include/asm/mach-yosemite/war.h -145858aa5cfa9c3587cb9bb0e37c6690 linux-3.0/arch/mips/include/asm/mach-yosemite/cpu-feature-overrides.h -b894f4221ef50c26a0b42ea4e3ad2d53 linux-3.0/arch/mips/include/asm/mach-wrppmc/war.h -60973542978556d3f64809c1d4b00c41 linux-3.0/arch/mips/include/asm/mach-wrppmc/mach-gt64120.h -80e823226b2c6751b525c43ea51ba3f3 linux-3.0/arch/mips/include/asm/mach-vr41xx/war.h -46aa7613c724763b882e137943c00563 linux-3.0/arch/mips/include/asm/mach-vr41xx/irq.h -b9bafd7bbec43d1290d623e3d0e0e195 linux-3.0/arch/mips/include/asm/mach-tx49xx/war.h -985caa4c055b1b3cec749cd9ada54e6f linux-3.0/arch/mips/include/asm/mach-tx49xx/mangle-port.h -28d2467241daadeb8b982ece7a79d313 linux-3.0/arch/mips/include/asm/mach-tx49xx/kmalloc.h -970b39b6e020760c298e8da6f909a5d7 linux-3.0/arch/mips/include/asm/mach-tx49xx/ioremap.h -ce3295fdff0cb10add6b7ba31be3b4d0 linux-3.0/arch/mips/include/asm/mach-tx49xx/cpu-feature-overrides.h -5b77879c35b4e018010565444d5c547f linux-3.0/arch/mips/include/asm/mach-tx39xx/war.h -13946e1221568dd771a698537ceb061f linux-3.0/arch/mips/include/asm/mach-tx39xx/mangle-port.h -93c4043183f580f8c59ea024da6e7df1 linux-3.0/arch/mips/include/asm/mach-tx39xx/ioremap.h -32619efc8ac4d7263f5e446323fe01f9 linux-3.0/arch/mips/include/asm/mach-sibyte/war.h -d545ce345e51eccb51d9abf21f27c78e linux-3.0/arch/mips/include/asm/mach-sibyte/cpu-feature-overrides.h -87c6571cd83abd61cc0ab881df06bf45 linux-3.0/arch/mips/include/asm/mach-rm/war.h -a46fe641329587f80a1eab856c8e1945 linux-3.0/arch/mips/include/asm/mach-rm/mc146818rtc.h -4a409e04a86b112f64822ef04819ded5 linux-3.0/arch/mips/include/asm/mach-rm/cpu-feature-overrides.h -8999ae36917f981dc1f9a3e06997f542 linux-3.0/arch/mips/include/asm/mach-rc32434/war.h -b3f1d5b45ea10318bb22c1c6e26e9437 linux-3.0/arch/mips/include/asm/mach-rc32434/timer.h -3d129c4a22ad518051a0820f435c36eb linux-3.0/arch/mips/include/asm/mach-rc32434/rc32434.h -df8fa96ae5f0cc985d7b097bae8c6359 linux-3.0/arch/mips/include/asm/mach-rc32434/rb.h -b314c86ed59f1163d2b06a5e75f3bc84 linux-3.0/arch/mips/include/asm/mach-rc32434/prom.h -74e6f932469f6a56b04aa4d98528b802 linux-3.0/arch/mips/include/asm/mach-rc32434/pci.h -012827ee5663df8dde20d46abac9e4ad linux-3.0/arch/mips/include/asm/mach-rc32434/irq.h -db3567b53253814253feb490fe1d16f6 linux-3.0/arch/mips/include/asm/mach-rc32434/integ.h -855332a0887f805be98b7b113b73373b linux-3.0/arch/mips/include/asm/mach-rc32434/gpio.h -45e5f9d2e7559f485ac5c84409d2ae67 linux-3.0/arch/mips/include/asm/mach-rc32434/eth.h -2bc4a8e40e24da032de09f3db834d269 linux-3.0/arch/mips/include/asm/mach-rc32434/dma_v.h -fb7015ecf9139b729dc22f54f474da27 linux-3.0/arch/mips/include/asm/mach-rc32434/dma.h -863274ae34df9a54e039365b818d7fbd linux-3.0/arch/mips/include/asm/mach-rc32434/ddr.h -1eae7881a20766dfd4104465e2c5b590 linux-3.0/arch/mips/include/asm/mach-rc32434/cpu-feature-overrides.h -5d145a6375dfb9f94c93b63cae838f7d linux-3.0/arch/mips/include/asm/mach-powertv/war.h -ff52007fb6504aa86e2f714e836f73b2 linux-3.0/arch/mips/include/asm/mach-powertv/powertv-clock.h -3aca090d11d25dcbb2cd2f2600207291 linux-3.0/arch/mips/include/asm/mach-powertv/irq.h -d6a07d5606b295be07f74afbf37a0e83 linux-3.0/arch/mips/include/asm/mach-powertv/ioremap.h -4acdef44ff16f3a4ebe57a1156976431 linux-3.0/arch/mips/include/asm/mach-powertv/interrupts.h -159b51bc09d2482cc63bc609af018bc5 linux-3.0/arch/mips/include/asm/mach-powertv/dma-coherence.h -abbef0a6e8904809bed1c25792ecf189 linux-3.0/arch/mips/include/asm/mach-powertv/asic_regs.h -2c6d7a313e17230fa32e3554bc7b6959 linux-3.0/arch/mips/include/asm/mach-powertv/asic_reg_map.h -74169cf5c99d0f3d058716797932d8ca linux-3.0/arch/mips/include/asm/mach-powertv/asic.h -a7ef444db8a3e861701a19eeab4efb1f linux-3.0/arch/mips/include/asm/mach-pnx8550/war.h -bee3b1922cdf414978395c24bd5a13e6 linux-3.0/arch/mips/include/asm/mach-pnx8550/usb.h -aaf8d3dadf1cbf6846cf4e37be9eda15 linux-3.0/arch/mips/include/asm/mach-pnx8550/uart.h -2afed2895c6203a371c054d715bfd1db linux-3.0/arch/mips/include/asm/mach-pnx8550/pci.h -424cf9710a8c829fa49a6eb6ab3ce3ab linux-3.0/arch/mips/include/asm/mach-pnx8550/nand.h -84d1283bcb155c94f2a6e8e444fd9a0b linux-3.0/arch/mips/include/asm/mach-pnx8550/kernel-entry-init.h -9de4392f539518a134538e324ed984df linux-3.0/arch/mips/include/asm/mach-pnx8550/int.h -ce69daf4f1830e0cf565ec7a279cecff linux-3.0/arch/mips/include/asm/mach-pnx8550/glb.h -580e2e3e8eae0d004d11d2504ca3aea4 linux-3.0/arch/mips/include/asm/mach-pnx8550/cm.h -b81c6557a3e30aca5711a2ac4b460ec2 linux-3.0/arch/mips/include/asm/mach-pnx833x/war.h -1031206d09b92b7631c17b72ed557d99 linux-3.0/arch/mips/include/asm/mach-pnx833x/pnx833x.h -82cf369d04be528554317cfd4fa1590f linux-3.0/arch/mips/include/asm/mach-pnx833x/irq.h -c28a1fe4402428d77427acb6586d01d1 linux-3.0/arch/mips/include/asm/mach-pnx833x/irq-mapping.h -c66b072c96d099035bed1cc5f6be94c5 linux-3.0/arch/mips/include/asm/mach-pnx833x/gpio.h -47e88c95feb2310b59684fc6c785d074 linux-3.0/arch/mips/include/asm/mach-pb1x00/pb1550.h -c5cc4bb0ad333f4629abe42f7cbcb216 linux-3.0/arch/mips/include/asm/mach-pb1x00/pb1200.h -df4d060791abb94e6c1b6b10b50f5716 linux-3.0/arch/mips/include/asm/mach-pb1x00/pb1000.h -e06f511b482a7985de1192abda21d4b9 linux-3.0/arch/mips/include/asm/mach-pb1x00/mc146818rtc.h -ed2c787c5fda9a09aa2ac0a7264f61cc linux-3.0/arch/mips/include/asm/mach-netlogic/war.h -cb310b6ba57c84e8c5286c70ab35dbe0 linux-3.0/arch/mips/include/asm/mach-netlogic/irq.h -03a6998981f96fabffbc5ad3f44725c7 linux-3.0/arch/mips/include/asm/mach-netlogic/cpu-feature-overrides.h -113a108cdd87c6a8df66d89963f85106 linux-3.0/arch/mips/include/asm/mach-mipssim/war.h -72db7dbb4c9dace5d53df074a7c8d572 linux-3.0/arch/mips/include/asm/mach-mipssim/cpu-feature-overrides.h -b1db1ca4a00120427aca28af667fe331 linux-3.0/arch/mips/include/asm/mach-malta/war.h -21d8ee4a05adc6024de7892578dbed35 linux-3.0/arch/mips/include/asm/mach-malta/mc146818rtc.h -16f3dce3af0f6714d1898d2c036e3609 linux-3.0/arch/mips/include/asm/mach-malta/mach-gt64120.h -d1c1e50720e8e174f90bb63c6dbc114b linux-3.0/arch/mips/include/asm/mach-malta/kernel-entry-init.h -a718e7e9acef075712d6adbe238db0ab linux-3.0/arch/mips/include/asm/mach-malta/irq.h -3ddb9e67c5e716525f7c83f85d9e7c86 linux-3.0/arch/mips/include/asm/mach-malta/cpu-feature-overrides.h -48512a1d01eb0f8dfa08a9973156d73b linux-3.0/arch/mips/include/asm/mach-loongson/war.h -f2fa69fdb576c7b8640d52a30484bd11 linux-3.0/arch/mips/include/asm/mach-loongson/pci.h -ce05279f17141817b5df48a9fa08af47 linux-3.0/arch/mips/include/asm/mach-loongson/mem.h -c49975b9cd3944fc9dc09ea04e9d2c49 linux-3.0/arch/mips/include/asm/mach-loongson/mc146818rtc.h -fc1dd3aa8024212a7698eaf5bb319cd5 linux-3.0/arch/mips/include/asm/mach-loongson/machine.h -516535319097c2c2ae0b6d051b28d9ec linux-3.0/arch/mips/include/asm/mach-loongson/loongson.h -363297a388f5853e49f827dbbb0b79fa linux-3.0/arch/mips/include/asm/mach-loongson/gpio.h -3e480e6748c9238d539fb07517b52d4a linux-3.0/arch/mips/include/asm/mach-loongson/dma-coherence.h -85cb04014368dbcf594e2e0e1c8eced4 linux-3.0/arch/mips/include/asm/mach-loongson/cs5536/cs5536_vsm.h -1d5475c7f03cf4b9b03d103e4fef3236 linux-3.0/arch/mips/include/asm/mach-loongson/cs5536/cs5536_pci.h -28d66b4983e656a8d8eedbe9050f5a0d linux-3.0/arch/mips/include/asm/mach-loongson/cs5536/cs5536_mfgpt.h -72827fb299811c5819f734be9c106039 linux-3.0/arch/mips/include/asm/mach-loongson/cs5536/cs5536.h -b33c13f568780e763ba986a41c0f4fb6 linux-3.0/arch/mips/include/asm/mach-loongson/cpu-feature-overrides.h -9cad52b3b02340b5de0bc766a8a7f4a3 linux-3.0/arch/mips/include/asm/mach-lasat/war.h -ebb65f43b1761054b8d565a3a91e6492 linux-3.0/arch/mips/include/asm/mach-lasat/mach-gt64120.h -dee9f34372eb5d4f639db6f8fdd16c3e linux-3.0/arch/mips/include/asm/mach-lasat/irq.h -d261b9dbb11eb7a7cefd3e8bfbe16a98 linux-3.0/arch/mips/include/asm/mach-lantiq/xway/xway_dma.h -a6d3998926046d6b3f9b89e0dc185853 linux-3.0/arch/mips/include/asm/mach-lantiq/xway/lantiq_soc.h -fedf442106336edcd62e974054606cfb linux-3.0/arch/mips/include/asm/mach-lantiq/xway/lantiq_irq.h -994c4283778aea08a103d777cc05f501 linux-3.0/arch/mips/include/asm/mach-lantiq/xway/irq.h -30d7e160fc57cee0bb079d8be158a516 linux-3.0/arch/mips/include/asm/mach-lantiq/war.h -0116b2277615a882fe94304f02fbd74e linux-3.0/arch/mips/include/asm/mach-lantiq/lantiq_platform.h -416c506bc44661cb261ec5821dadc8ea linux-3.0/arch/mips/include/asm/mach-lantiq/lantiq.h -aeb20ba9f269413d1bda560c88540f6a linux-3.0/arch/mips/include/asm/mach-jz4740/war.h -73566a889d7be48b7912ec31339fe3ec linux-3.0/arch/mips/include/asm/mach-jz4740/timer.h -2f2f1709caf6fbed7e1f6fafa7db9646 linux-3.0/arch/mips/include/asm/mach-jz4740/platform.h -9025f37dab3ed2fe6866512c93adbca6 linux-3.0/arch/mips/include/asm/mach-jz4740/jz4740_nand.h -e6e6453cb7bde6f7ca461b475c5a59d9 linux-3.0/arch/mips/include/asm/mach-jz4740/jz4740_mmc.h -3e065cc7eee3f4257d13191da883a7b2 linux-3.0/arch/mips/include/asm/mach-jz4740/jz4740_fb.h -6f487dde2f5dfddc9b11e28557ac333b linux-3.0/arch/mips/include/asm/mach-jz4740/irq.h -61089ef48062ddfcc9117d0e30943245 linux-3.0/arch/mips/include/asm/mach-jz4740/gpio.h -6e094c3485155c890f7acd99e24ccd56 linux-3.0/arch/mips/include/asm/mach-jz4740/dma.h -4f5be0efa03096f7393acd0b283d8ba6 linux-3.0/arch/mips/include/asm/mach-jz4740/cpu-feature-overrides.h -463e9008a294bd473cbf5a670f9409b4 linux-3.0/arch/mips/include/asm/mach-jz4740/clock.h -8b350027b04ad73bec5da4a36a77ae55 linux-3.0/arch/mips/include/asm/mach-jz4740/base.h -c87f4e02599531ce1d559d1f9a92379d linux-3.0/arch/mips/include/asm/mach-jazz/war.h -db51ee2992c010359728d8c7e2462ebe linux-3.0/arch/mips/include/asm/mach-jazz/mc146818rtc.h -54ba4d4f883c783ec53f29b924841a87 linux-3.0/arch/mips/include/asm/mach-jazz/floppy.h -b31625241e1a9be05fe4aa15b54d5d75 linux-3.0/arch/mips/include/asm/mach-jazz/dma-coherence.h -72e9c705757ed62d6aa32ba34dc7a214 linux-3.0/arch/mips/include/asm/mach-ip32/war.h -ae0d01de52c38f6e2935c73fff81f77a linux-3.0/arch/mips/include/asm/mach-ip32/mc146818rtc.h -67811d06037298031d140bae6063246f linux-3.0/arch/mips/include/asm/mach-ip32/mangle-port.h -9be05ecc997e6c280ee27535e8737c47 linux-3.0/arch/mips/include/asm/mach-ip32/kmalloc.h -e789940564600fc4d5ca62ecbd867c0e linux-3.0/arch/mips/include/asm/mach-ip32/dma-coherence.h -01c0c82eb7a7f2e8dad1c37b682ae633 linux-3.0/arch/mips/include/asm/mach-ip32/cpu-feature-overrides.h -728585e1b596abb3c3e8394f3b898641 linux-3.0/arch/mips/include/asm/mach-ip28/war.h -6175b477ed480ea678f672671cf329f6 linux-3.0/arch/mips/include/asm/mach-ip28/spaces.h -d44c69501ca783655f1bd67f6c64d8fa linux-3.0/arch/mips/include/asm/mach-ip28/cpu-feature-overrides.h -377642dafbb1289b7b10a4369db3f58c linux-3.0/arch/mips/include/asm/mach-ip27/war.h -8da6dbd7913e8f139fce1fcb0345e337 linux-3.0/arch/mips/include/asm/mach-ip27/topology.h -f38ff5739ec109ec1b62aaaea1f4df2e linux-3.0/arch/mips/include/asm/mach-ip27/spaces.h -2dba871eef3029e260cf28b03995da6c linux-3.0/arch/mips/include/asm/mach-ip27/mmzone.h -064393c4e26b6522d253ef57732656a2 linux-3.0/arch/mips/include/asm/mach-ip27/mangle-port.h -3e4077263250df238631d65e6d468ee7 linux-3.0/arch/mips/include/asm/mach-ip27/kmalloc.h -24a66e38ed5c0cd7b81ad492f76df112 linux-3.0/arch/mips/include/asm/mach-ip27/kernel-entry-init.h -6f59bf059410a52b77d3c47acd6b91c9 linux-3.0/arch/mips/include/asm/mach-ip27/irq.h -ac168e49b225a50890b4932ae1867de1 linux-3.0/arch/mips/include/asm/mach-ip27/dma-coherence.h -5ceeaaf295464d09155f9e644fece337 linux-3.0/arch/mips/include/asm/mach-ip27/cpu-feature-overrides.h -56a01de5dd38abdca361367c73184108 linux-3.0/arch/mips/include/asm/mach-ip22/war.h -8a3b3195007884f87de638bc7887b3cf linux-3.0/arch/mips/include/asm/mach-ip22/spaces.h -703bde1a26c4b8b797c67625185f1aa2 linux-3.0/arch/mips/include/asm/mach-ip22/cpu-feature-overrides.h -dd5e1564a7aba8918049ff3c36a9729e linux-3.0/arch/mips/include/asm/mach-generic/topology.h -c76713dd09eebae14818dab5b469ac4a linux-3.0/arch/mips/include/asm/mach-generic/spaces.h -bb03c9ee8860536b011e1ca719f5bb2a linux-3.0/arch/mips/include/asm/mach-generic/mc146818rtc.h -d047ee50bf62498f55842130c609051e linux-3.0/arch/mips/include/asm/mach-generic/mangle-port.h -f87ddd841c50e822cc33e85fada780d3 linux-3.0/arch/mips/include/asm/mach-generic/kmalloc.h -9f441c42cd42f239f4a4c7d5811e2132 linux-3.0/arch/mips/include/asm/mach-generic/kernel-entry-init.h -ca37392d285b290f4ffe7a6ef0d44006 linux-3.0/arch/mips/include/asm/mach-generic/irq.h -8ab5134ed07a5939be8a4675117b9806 linux-3.0/arch/mips/include/asm/mach-generic/ioremap.h -08f2e2b6ede57e4e169d4fba1a7bbc1e linux-3.0/arch/mips/include/asm/mach-generic/ide.h -8c6bc68ef836ae3f7b36f01b94d37792 linux-3.0/arch/mips/include/asm/mach-generic/gpio.h -aadca105ed113feeaa1b4ccaf7cda919 linux-3.0/arch/mips/include/asm/mach-generic/floppy.h -b3bbbc0b0f567c80da9e50adad6723a0 linux-3.0/arch/mips/include/asm/mach-generic/dma-coherence.h -015ea18ca619f062b84f99ded8eb49ab linux-3.0/arch/mips/include/asm/mach-generic/cpu-feature-overrides.h -88914614de919bcf493fef952801ec95 linux-3.0/arch/mips/include/asm/mach-emma2rh/war.h -a318a488335ff58c9a4a4e332f99d0e1 linux-3.0/arch/mips/include/asm/mach-emma2rh/irq.h -43b9e0c82102383b83a4f310c4a5cda3 linux-3.0/arch/mips/include/asm/mach-dec/war.h -6eaa46f91011ad01d4a540e7adcc1141 linux-3.0/arch/mips/include/asm/mach-dec/mc146818rtc.h -17a597be25a98c9b48ecc34c90b40f33 linux-3.0/arch/mips/include/asm/mach-db1x00/db1x00.h -e1db172e34987c7f38d9dce12dde06fd linux-3.0/arch/mips/include/asm/mach-db1x00/db1200.h -f3daaa95b3a1e7dd1d84ff60dca4f033 linux-3.0/arch/mips/include/asm/mach-db1x00/bcsr.h -8b741404ed780793f71e2a82b5c4613b linux-3.0/arch/mips/include/asm/mach-cobalt/war.h -5b627195c67dfcee2564f965d0f71ac5 linux-3.0/arch/mips/include/asm/mach-cobalt/mach-gt64120.h -413c7ef5d0caf4d40dc60caaccaae9c9 linux-3.0/arch/mips/include/asm/mach-cobalt/irq.h -bddf039aa69cd36c95b65e81cf383a17 linux-3.0/arch/mips/include/asm/mach-cobalt/cpu-feature-overrides.h -c6fd5335eb14dcf4ca91f79eb161fa20 linux-3.0/arch/mips/include/asm/mach-cobalt/cobalt.h -5bdd8b2fa7bd8f308ce29645f0c46ac9 linux-3.0/arch/mips/include/asm/mach-cavium-octeon/war.h -8f1a4ee4e320dd7cc4b404b73bcffbff linux-3.0/arch/mips/include/asm/mach-cavium-octeon/kernel-entry-init.h -b61f8cbcb3257789439535fc58b9b0b6 linux-3.0/arch/mips/include/asm/mach-cavium-octeon/irq.h -7ac0b578665abfd2241badd68dfebfbd linux-3.0/arch/mips/include/asm/mach-cavium-octeon/dma-coherence.h -5708521423c51a8640ba667508ae2899 linux-3.0/arch/mips/include/asm/mach-cavium-octeon/cpu-feature-overrides.h -17e3224bb48353803a17cea69b1d843b linux-3.0/arch/mips/include/asm/mach-bcm63xx/war.h -499a2c5a1df57a77784709dde6c7185b linux-3.0/arch/mips/include/asm/mach-bcm63xx/gpio.h -d28e918b814c0f1f42cea6750591cd2b linux-3.0/arch/mips/include/asm/mach-bcm63xx/cpu-feature-overrides.h -b465a8bb9e395a79b17556a298c5ca98 linux-3.0/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h -bc3dfeee66f72287e4950ef974a3c6f3 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm963xx_tag.h -c8a16e12726f9f1d9cf1d6be6a5b9803 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_timer.h -1424baa8e352ba6f2afca272d1cfb7b3 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h -d479daf9dd546c115adca6769b2f4b1c linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_irq.h -29fbdec296344721eada9f71667a044e linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_io.h -87b9800f2ee9e190705e55c8056b9048 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_gpio.h -a039252640f3b8613b6dec0a41df5c85 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_uart.h -d7fd9caf291becfb7e8ebdd52e7facf8 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_pcmcia.h -8a6305378f33084f96e7f0bc94179371 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_pci.h -fc2e26f9d4374a6c8edc7c765a920293 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_enet.h -d3ebcb8e169fe779e5d4cd410a5bd945 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_dsp.h -dd7e011ee8f4ad2b577e552b07389625 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cs.h -bd48143961c974165a98d77d19644637 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h -07775602e9280a27e09e353ad99ff3e4 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_clk.h -0ac0b4fabcc0e2c96ad4824e4c0335b4 linux-3.0/arch/mips/include/asm/mach-bcm63xx/bcm63xx_board.h -47c733ad62d27f7d54fc8874c82846e7 linux-3.0/arch/mips/include/asm/mach-bcm47xx/war.h -0652f06a62d9706587ae7e6bab4e93f9 linux-3.0/arch/mips/include/asm/mach-bcm47xx/nvram.h -6e0eaaaaddaae5cc93458243a648afc9 linux-3.0/arch/mips/include/asm/mach-bcm47xx/gpio.h -1d7d49bde9a8f1a8d7d6c72dd6e9c1e1 linux-3.0/arch/mips/include/asm/mach-bcm47xx/bcm47xx.h -7cc4c2755d0e8ca94b27bd9b332c7f9f linux-3.0/arch/mips/include/asm/mach-au1x00/war.h -a0946ae3efbf349b55870f296136857d linux-3.0/arch/mips/include/asm/mach-au1x00/prom.h -bd88ea330731bf795325a5dbddb81314 linux-3.0/arch/mips/include/asm/mach-au1x00/ioremap.h -842706182f8cb07063a48a79ac33b3fc linux-3.0/arch/mips/include/asm/mach-au1x00/gpio.h -8b8a29afd968690410a4d6ac68139a07 linux-3.0/arch/mips/include/asm/mach-au1x00/gpio-au1000.h -091d5980f86ec7348869db0b5392d822 linux-3.0/arch/mips/include/asm/mach-au1x00/cpu-feature-overrides.h -5c45376dde40310738cd1c5c7b1eb65e linux-3.0/arch/mips/include/asm/mach-au1x00/au1xxx_psc.h -5faa028257915964dd6882725ab054f6 linux-3.0/arch/mips/include/asm/mach-au1x00/au1xxx_ide.h -b2edc7998eb8299d2fc71caa6bd1cd1b linux-3.0/arch/mips/include/asm/mach-au1x00/au1xxx_eth.h -adb2f9d34c04e3d2193dd8046184e340 linux-3.0/arch/mips/include/asm/mach-au1x00/au1xxx_dbdma.h -714741024518b7dbd3f2ac26b3e2dba6 linux-3.0/arch/mips/include/asm/mach-au1x00/au1xxx.h -7f4249f65102583e2165d96ea66f073e linux-3.0/arch/mips/include/asm/mach-au1x00/au1550_spi.h -9f950e5ca2f1707753efdefc4f8a9bfb linux-3.0/arch/mips/include/asm/mach-au1x00/au1100_mmc.h -6bd25f80521243e93a71c5e424705ae9 linux-3.0/arch/mips/include/asm/mach-au1x00/au1000_dma.h -cb697e5cfa80e74258f1d091bc03f779 linux-3.0/arch/mips/include/asm/mach-au1x00/au1000.h -9260ed2e150c1bbbef8f0f0b0a12edd6 linux-3.0/arch/mips/include/asm/mach-ath79/war.h -5d764dd5598d1713a5b2cf2b06c27ae3 linux-3.0/arch/mips/include/asm/mach-ath79/kernel-entry-init.h -cdc669dbf75ded5aaff081ee4b7dadc6 linux-3.0/arch/mips/include/asm/mach-ath79/irq.h -9ef0c71d159bfe3b22819f82aa383e7a linux-3.0/arch/mips/include/asm/mach-ath79/gpio.h -fa18e6ee6528bbd22314a3d01af1641a linux-3.0/arch/mips/include/asm/mach-ath79/cpu-feature-overrides.h -23fde628cc9ca805f75da854455133bf linux-3.0/arch/mips/include/asm/mach-ath79/ath79_spi_platform.h -afbbd93f97f3a6dbf79509bc79f4b70c linux-3.0/arch/mips/include/asm/mach-ath79/ath79.h -0ef6a4b4980e373150d9a046181c1131 linux-3.0/arch/mips/include/asm/mach-ath79/ar71xx_regs.h -de26a244d5b1e300574a3c3bf8c81ce0 linux-3.0/arch/mips/include/asm/mach-ar7/war.h -3b28aa556156ca3548acd4c588335c52 linux-3.0/arch/mips/include/asm/mach-ar7/spaces.h -d1473397b583c1fe23a5462556bde57d linux-3.0/arch/mips/include/asm/mach-ar7/prom.h -846c98c443095ccba67eb97efa61465d linux-3.0/arch/mips/include/asm/mach-ar7/irq.h -1ecbd7945d222071b36452ac31cbee13 linux-3.0/arch/mips/include/asm/mach-ar7/gpio.h -6359cd415de75ee1837d696d5d8049ed linux-3.0/arch/mips/include/asm/mach-ar7/ar7.h -198cbd47ef1d122c2cd7e57fc7c166fd linux-3.0/arch/mips/include/asm/m48t37.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/mips/include/asm/local64.h -16fb3671a689b53fb8466f457d98d6ab linux-3.0/arch/mips/include/asm/local.h -55d3619bfc9b5f014f034b7767775295 linux-3.0/arch/mips/include/asm/linkage.h -d1d5243dd33fedeb5faea34a234b1ed5 linux-3.0/arch/mips/include/asm/lasat/serial.h -1568e6079dabe931e174407bca5c4112 linux-3.0/arch/mips/include/asm/lasat/picvue.h -22eb818731ea201496acc52bee0bc995 linux-3.0/arch/mips/include/asm/lasat/lasatint.h -f675a2d58b39704f3cf554081a965150 linux-3.0/arch/mips/include/asm/lasat/lasat.h -4d947ae2c5553cd7a40153d97fcd763c linux-3.0/arch/mips/include/asm/lasat/head.h -8d645db56507e1957b84d642958c659e linux-3.0/arch/mips/include/asm/lasat/eeprom.h -e337d2a6f0e5fedb26b6945b3f2f30a6 linux-3.0/arch/mips/include/asm/lasat/ds1603.h -451ae26b361765b21364d589279e13b2 linux-3.0/arch/mips/include/asm/kspd.h -bd1e5301565c2bce2686317f29b8292e linux-3.0/arch/mips/include/asm/kprobes.h -cda6d18fc09fe88c1e86088a6ca217da linux-3.0/arch/mips/include/asm/kmap_types.h -e3c31bdcc56a55438fc7cd530ed53894 linux-3.0/arch/mips/include/asm/kgdb.h -705191fac40b7d3c46f28053e10ac50f linux-3.0/arch/mips/include/asm/kexec.h -61544055c652214156429de056a37a3c linux-3.0/arch/mips/include/asm/kdebug.h -592627e78171385821e820d55319c8d4 linux-3.0/arch/mips/include/asm/jump_label.h -c0e81b54fc362ccf1eca5c8f0cdcc0b6 linux-3.0/arch/mips/include/asm/jazzdma.h -10327843df35c4fc9d140bd0e62ca3f0 linux-3.0/arch/mips/include/asm/jazz.h -857c55de170b60bdd92fc76574ad2a6c linux-3.0/arch/mips/include/asm/isadep.h -43e38d7bae29d0e2dc7bc28f45b59992 linux-3.0/arch/mips/include/asm/irqflags.h -427c96afcf1a61dd5adac042ef238719 linux-3.0/arch/mips/include/asm/irq_regs.h -15bb9decf0bda6948444c8bcab813de2 linux-3.0/arch/mips/include/asm/irq_gt641xx.h -6bdd283448d6745ae897798c18759126 linux-3.0/arch/mips/include/asm/irq_cpu.h -6fdee640593390daa901023e32e97c5a linux-3.0/arch/mips/include/asm/irq.h -8712c75dce75b5fa99037bfd8d083dfd linux-3.0/arch/mips/include/asm/ipcbuf.h -1ef50b326ded95364ca56cedfa6113ed linux-3.0/arch/mips/include/asm/ip32/mace.h -8aa573dc24c4b94354f544cbab252171 linux-3.0/arch/mips/include/asm/ip32/ip32_ints.h -5f288e914f6f4de0b48820f365839124 linux-3.0/arch/mips/include/asm/ip32/crime.h -2f3724a8a92131c98747c2bef698ec9e linux-3.0/arch/mips/include/asm/ioctls.h -9387cac7794d91f56c75ec845d29e560 linux-3.0/arch/mips/include/asm/ioctl.h -2b9bcd1dab181fe676b145fda7a5db29 linux-3.0/arch/mips/include/asm/io.h -68b6fbd3e6c7908f946cb7a2542f4798 linux-3.0/arch/mips/include/asm/inst.h -d914974c75ae44026793e642a7a5ba99 linux-3.0/arch/mips/include/asm/ide.h -4da9e241ca78eb0ab1be91d636839f8a linux-3.0/arch/mips/include/asm/i8259.h -d11e7245481d2ff817c72c8ed0f649c8 linux-3.0/arch/mips/include/asm/i8253.h -e9947eeffea1438101d7d663f0462e56 linux-3.0/arch/mips/include/asm/hw_irq.h -587f0208d5a60ea36e1dd2644c4d679b linux-3.0/arch/mips/include/asm/hugetlb.h -65249c9ab9b4c1a5bed6235da2d2f85a linux-3.0/arch/mips/include/asm/highmem.h -a4eccd5c000bdae5ab4e1c5b269af940 linux-3.0/arch/mips/include/asm/hazards.h -95caff0fd568ba77b700f256d473b58e linux-3.0/arch/mips/include/asm/hardirq.h -f234f828863112cb0168273a58bd7cb2 linux-3.0/arch/mips/include/asm/gt64120.h -4f0bd95dafdfb650924e08048e1a5b1b linux-3.0/arch/mips/include/asm/gpio.h -ac9b691b03cd481a1d43a04205597f1f linux-3.0/arch/mips/include/asm/gic.h -626e9cf85b222d5e23f557d4b7a5608a linux-3.0/arch/mips/include/asm/gcmpregs.h -27222a8244ed3d5ac0de098e4cb68fdd linux-3.0/arch/mips/include/asm/fw/cfe/cfe_error.h -aada5de26750453bd5237c19f6903c6c linux-3.0/arch/mips/include/asm/fw/cfe/cfe_api.h -03493c08ce29f944fb30d6254a4a5b93 linux-3.0/arch/mips/include/asm/fw/arc/types.h -dd8008d4bddbfd62db2ea73dd5abc34d linux-3.0/arch/mips/include/asm/fw/arc/hinv.h -69fc6ab6fc394aa5181051ef55741a16 linux-3.0/arch/mips/include/asm/futex.h -175456afcb53cddb91d0c0fed625ef82 linux-3.0/arch/mips/include/asm/ftrace.h -b1f855fe393b1b8ef9de6144940169b9 linux-3.0/arch/mips/include/asm/fpu_emulator.h -938ab47adc13e196899c4fc027deb2f1 linux-3.0/arch/mips/include/asm/fpu.h -c2c008f6fde91afa8fbae52bdf029f31 linux-3.0/arch/mips/include/asm/fpregdef.h -48840454c297352d192233fcc1c25993 linux-3.0/arch/mips/include/asm/floppy.h -64337ec83b43c279c3980ad4820dc994 linux-3.0/arch/mips/include/asm/fixmap.h -d96877887448ff6fcd4f169d935439d3 linux-3.0/arch/mips/include/asm/fcntl.h -121f0d4c3b5dda7a4f163b42151634ae linux-3.0/arch/mips/include/asm/fb.h -42bad2bb0ae6b2d4a49de06e76e4df40 linux-3.0/arch/mips/include/asm/errno.h -780a80d3a668c7c0218a5f1ad0b25e1e linux-3.0/arch/mips/include/asm/emma/markeins.h -5eb5ac6487e6e381d258c402ea3870b7 linux-3.0/arch/mips/include/asm/emma/emma2rh.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/mips/include/asm/emergency-restart.h -1f1027ea8cc7bc016da91f33e8886b52 linux-3.0/arch/mips/include/asm/elf.h -89229797efce33ce7ffd58a01e81b300 linux-3.0/arch/mips/include/asm/edac.h -50cf26921f982b5c8a81795e2db64ff0 linux-3.0/arch/mips/include/asm/dsp.h -f9307437fc45f192dac70b450d574dd7 linux-3.0/arch/mips/include/asm/ds1287.h -d1e48dae577cb92ce29c92f6ef1c28f7 linux-3.0/arch/mips/include/asm/dma.h -c25c6b59614ca9e7d8b186e246e82a7f linux-3.0/arch/mips/include/asm/dma-mapping.h -7d0713d6deaa34f998d83905f2647a02 linux-3.0/arch/mips/include/asm/div64.h -4a33b6f40b659b1875d4fb7ca0f92fff linux-3.0/arch/mips/include/asm/device.h -4c58a83b6ac829aa5cde93ab44eb9793 linux-3.0/arch/mips/include/asm/delay.h -d62405fa94d387a6a9aa5b7148262b55 linux-3.0/arch/mips/include/asm/dec/system.h -fbb40b098084add3db390f6bc6af2c9b linux-3.0/arch/mips/include/asm/dec/prom.h -5c03318b33d2f5cc94638ae0bce63467 linux-3.0/arch/mips/include/asm/dec/machtype.h -5265ee502e8b8add9cef479582c45ee2 linux-3.0/arch/mips/include/asm/dec/kn230.h -276cfc568eb60f3360123aeb70613e61 linux-3.0/arch/mips/include/asm/dec/kn05.h -ede4a75e1f9c8f23efc18e0e8335c0f6 linux-3.0/arch/mips/include/asm/dec/kn03.h -08cd863874e45099c3e1fe071c3a0119 linux-3.0/arch/mips/include/asm/dec/kn02xa.h -9927d8b63350771f6cf3811445b76417 linux-3.0/arch/mips/include/asm/dec/kn02ca.h -f7a73293996185756e9357a7262692d0 linux-3.0/arch/mips/include/asm/dec/kn02ba.h -d5f7b2200e8d0b100992639798ce500c linux-3.0/arch/mips/include/asm/dec/kn02.h -93cca2b1e343f57ba7f062791a55998a linux-3.0/arch/mips/include/asm/dec/kn01.h -4130ee1f93bb4eee137cc0b860323921 linux-3.0/arch/mips/include/asm/dec/ioasic_ints.h -492267d7f6b65fa9c6eb7a1e9f00ccca linux-3.0/arch/mips/include/asm/dec/ioasic_addrs.h -9a67fc9889456cc4e63a2d1efbda6ea8 linux-3.0/arch/mips/include/asm/dec/ioasic.h -10f430f3e48248dea5d267a4a5449a34 linux-3.0/arch/mips/include/asm/dec/interrupts.h -56fc9113a2e83d5e13337bed09306317 linux-3.0/arch/mips/include/asm/dec/ecc.h -20b9a19b0cb69b8324f3db42f8f0a7c6 linux-3.0/arch/mips/include/asm/debug.h -13273a00e1c43d5fb9c31339028bf8af linux-3.0/arch/mips/include/asm/current.h -ace3771bc3b82515e9db80d752d2acdc linux-3.0/arch/mips/include/asm/cputime.h -3d734aa416ad4330d1a4d25fcd59940d linux-3.0/arch/mips/include/asm/cpu.h -60ee2278742318f464ec16f968c52e20 linux-3.0/arch/mips/include/asm/cpu-info.h -899581a442203dad8dbf42f56cc27f5b linux-3.0/arch/mips/include/asm/cpu-features.h -0f30f64a1824618ff06b7de8ddb51afc linux-3.0/arch/mips/include/asm/cop2.h -d16933a6674203eca9da9519543da1aa linux-3.0/arch/mips/include/asm/compiler.h -8cccdc0cb4ba6eb116a8af3db872e057 linux-3.0/arch/mips/include/asm/compat.h -2ce9578d2fc22de8c3d07adae2735932 linux-3.0/arch/mips/include/asm/compat-signal.h -07f6512d211bb2463d2b37b3f66389d8 linux-3.0/arch/mips/include/asm/cmpxchg.h -e6104aa53c9b6367d29610dd851e2a3f linux-3.0/arch/mips/include/asm/cmp.h -de6f3dcac2400af45b78de376c328dec linux-3.0/arch/mips/include/asm/clock.h -f94d51e84caccfab2b58aa18dbd37ff0 linux-3.0/arch/mips/include/asm/checksum.h -e6e13d884d39d33fe38aaa6df8a4ff13 linux-3.0/arch/mips/include/asm/cevt-r4k.h -20ccac4961f668821742bfe3f9eb1cc1 linux-3.0/arch/mips/include/asm/cacheops.h -862b5958714e144c76a3cca40c273e1d linux-3.0/arch/mips/include/asm/cacheflush.h -bb8e4e59562f2a97512eddad096ec043 linux-3.0/arch/mips/include/asm/cachectl.h -2d89564c701c63369016fd10d56cf312 linux-3.0/arch/mips/include/asm/cache.h -707eec8151e12ef409d03aa540b97307 linux-3.0/arch/mips/include/asm/byteorder.h -5c8632530cde01b60de42c4feefb93f2 linux-3.0/arch/mips/include/asm/bugs.h -2ade0cf08e988e619190edb4c82b86e6 linux-3.0/arch/mips/include/asm/bug.h -60fe546350cb7b7a3a9bf1d0aad6ef3c linux-3.0/arch/mips/include/asm/break.h -9b7cae92162e8caa8f20166523f36d4a linux-3.0/arch/mips/include/asm/branch.h -4a0484573c1011d916d2330a0100fa49 linux-3.0/arch/mips/include/asm/bootinfo.h -c6755a3f2ef36cd8653a59d298ef08a4 linux-3.0/arch/mips/include/asm/bitsperlong.h -6aedbdb163f37e555d6e106b33715de9 linux-3.0/arch/mips/include/asm/bitops.h -d3bf0907e34caa189832d59e54041bfd linux-3.0/arch/mips/include/asm/bcache.h -0d2f4d2ff39001c8e542af6d73ab1de9 linux-3.0/arch/mips/include/asm/barrier.h -e1d6bd9beac5483c551105e13339f9ff linux-3.0/arch/mips/include/asm/auxvec.h -9bd93f9cc6434c6ec365ae4616889543 linux-3.0/arch/mips/include/asm/atomic.h -7a8e489b4eebd310cf0e7c4bbe66cceb linux-3.0/arch/mips/include/asm/asmmacro.h -2129572354ec0f3c7c584f1d70c6bfe2 linux-3.0/arch/mips/include/asm/asmmacro-64.h -1d966ae44f2984380f19891c34e41545 linux-3.0/arch/mips/include/asm/asmmacro-32.h -539bc97a849008e89d3dce2d3b2995bc linux-3.0/arch/mips/include/asm/asm.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/mips/include/asm/asm-offsets.h -8c56f0a856f12bea838b78aa85430579 linux-3.0/arch/mips/include/asm/arch_hweight.h -ea8300ae0ae2c743e2780b55cc4af30a linux-3.0/arch/mips/include/asm/amon.h -ef22ae2e04e32a609768f7778dd6dae6 linux-3.0/arch/mips/include/asm/addrspace.h -9019ac6114ad4cdbf14d4fc0ac5c38bd linux-3.0/arch/mips/include/asm/abi.h -964db081a9f7bbbc10a16fff3a2a955d linux-3.0/arch/mips/include/asm/Kbuild -b776e395cc53bea37ec67e9c2941f145 linux-3.0/arch/mips/fw/sni/sniprom.c -f33f3ad3c505fe234d37b7e3556341f2 linux-3.0/arch/mips/fw/sni/Makefile -f4e32be0dde726d5e37fa4b7e01bf43e linux-3.0/arch/mips/fw/lib/call_o32.S -736785157134fa843daee15d96ae3d31 linux-3.0/arch/mips/fw/lib/Makefile -df1208d600482fe4753c6da8ce1a1acf linux-3.0/arch/mips/fw/cfe/cfe_api_int.h -7a55211fd7112e0a87d2e26661df9d77 linux-3.0/arch/mips/fw/cfe/cfe_api.c -4edb4addc9bd229619776472efee142c linux-3.0/arch/mips/fw/cfe/Makefile -07922c21ca962f8e46fd29657a57a96f linux-3.0/arch/mips/fw/arc/tree.c -5998e042f60d042c903ee13646f68059 linux-3.0/arch/mips/fw/arc/time.c -815aeba758fa7716ea492a0728f22404 linux-3.0/arch/mips/fw/arc/salone.c -83ebe27b59c650802d8c4072a0eb90d0 linux-3.0/arch/mips/fw/arc/promlib.c -919bd68d05e3549aa510e3a700a40807 linux-3.0/arch/mips/fw/arc/misc.c -57295ed325567c011aaf51e132671ce4 linux-3.0/arch/mips/fw/arc/memory.c -b2e6104a8e483e5427e2b279ea5a4823 linux-3.0/arch/mips/fw/arc/init.c -0d12978c99bc9d5a284767a9735e6ca7 linux-3.0/arch/mips/fw/arc/identify.c -a0d64f03c6c59f2a1c69e02934d5fd5e linux-3.0/arch/mips/fw/arc/file.c -b8a429ca6b93420a14dd0c4fa9ef1905 linux-3.0/arch/mips/fw/arc/env.c -0c7d6ab23b47f4f30406591830a60cfc linux-3.0/arch/mips/fw/arc/cmdline.c -de8af689c5ce1a1293af433c3edd3baa linux-3.0/arch/mips/fw/arc/arc_con.c -f72959e444b0da3b1333a860b8f981bf linux-3.0/arch/mips/fw/arc/Makefile -76afdc116100c6bf871b9f410b4e17c6 linux-3.0/arch/mips/emma/markeins/setup.c -df7e81383f094d715713688f655e6d8f linux-3.0/arch/mips/emma/markeins/platform.c -fc3510fcb6e0d72fcb824e9e226341c6 linux-3.0/arch/mips/emma/markeins/led.c -8889ea3b45d0025e42ac07c070b585d3 linux-3.0/arch/mips/emma/markeins/irq.c -292282aeaa1bc777ce377e09836c56af linux-3.0/arch/mips/emma/markeins/Makefile -515ff438f9e30901b1f19b79d906cdad linux-3.0/arch/mips/emma/common/prom.c -8cca05fec8cd52aa4a8cf2c3ca259753 linux-3.0/arch/mips/emma/common/Makefile -a33bc7db4b6a8fa29ffde55482e93744 linux-3.0/arch/mips/emma/Platform -1feac470e88b38f477311e82f159cc6a linux-3.0/arch/mips/emma/Makefile -1f5fc0e6cffe465ab69fda8d7f64cea1 linux-3.0/arch/mips/dec/wbflush.c -64d9c573c47a013d43767b34de2bbfe7 linux-3.0/arch/mips/dec/time.c -6e262583a278789c76c69065711361b3 linux-3.0/arch/mips/dec/tc.c -88f4dfb3a35a905faae13c1f63fb0c23 linux-3.0/arch/mips/dec/setup.c -f3a517f21762352ca5e5713b7154e5a4 linux-3.0/arch/mips/dec/reset.c -cd331f27f6bdc316a6e8a2b4359c9650 linux-3.0/arch/mips/dec/promcon.c -e6afc5b5805adacff5f9f9fb8fb97c13 linux-3.0/arch/mips/dec/prom/memory.c -d663ca4f4f6c3c22a2b80938763045fb linux-3.0/arch/mips/dec/prom/locore.S -9f4eed9fc6e44645b3fec5e0c4409f26 linux-3.0/arch/mips/dec/prom/init.c -4c9b254ac9b11a4508c5ccb101e1b5bb linux-3.0/arch/mips/dec/prom/identify.c -9f4462f3e8154ab800d3bc5d2cf4a780 linux-3.0/arch/mips/dec/prom/dectypes.h -e4b230cd46ddea1becf2e9ad76ed1eae linux-3.0/arch/mips/dec/prom/console.c -e67b5c3834f3ccb09fa5d56fa97a7231 linux-3.0/arch/mips/dec/prom/cmdline.c -3864aefeb6d4f2a3a33ad60ed811469b linux-3.0/arch/mips/dec/prom/call_o32.S -337adb7538b85974334e9b2f82c5514b linux-3.0/arch/mips/dec/prom/Makefile -b33dd46a7690a68ec5814b2471c1104e linux-3.0/arch/mips/dec/kn02xa-berr.c -9ed672459aa991dd507998a25e6b2c3b linux-3.0/arch/mips/dec/kn02-irq.c -088158b745160e57c3cfd313228e5251 linux-3.0/arch/mips/dec/kn01-berr.c -6f5ab457413c7d9cdb275673c4d9872f linux-3.0/arch/mips/dec/ioasic-irq.c -39e855b3043ef786330071c9878a8a3e linux-3.0/arch/mips/dec/int-handler.S -7902d773649ccc89b3f63ad2a6b334db linux-3.0/arch/mips/dec/ecc-berr.c -4242c7ebb018188e5a0e440ee885327f linux-3.0/arch/mips/dec/Platform -89053eeed1ccc6570308c693626f7335 linux-3.0/arch/mips/dec/Makefile -ee086fca2ae62d37244894eac5bec70b linux-3.0/arch/mips/configs/yosemite_defconfig -03cc7aacde2c8e2e92ea42496cb90b9b linux-3.0/arch/mips/configs/wrppmc_defconfig -d52060ec63b0d06220172de42644b33f linux-3.0/arch/mips/configs/workpad_defconfig -e26fce48fffc7d0650328d911cfa00bd linux-3.0/arch/mips/configs/tb0287_defconfig -cd74b6dc208779799f41f51a313b951c linux-3.0/arch/mips/configs/tb0226_defconfig -cc59423d1057ba177f7c110da67e0afa linux-3.0/arch/mips/configs/tb0219_defconfig -756c68d122b46f845cd654a6c64d5e0a linux-3.0/arch/mips/configs/sb1250-swarm_defconfig -aeb996635ab3b0dce5df439485f15c5e linux-3.0/arch/mips/configs/rm200_defconfig -83f78a5e38ad65920933bc463023e2b1 linux-3.0/arch/mips/configs/rbtx49xx_defconfig -fca90b0e2745065a2b90fdaaac88252f linux-3.0/arch/mips/configs/rb532_defconfig -3e0543d5de04855adabcd8b3971cf135 linux-3.0/arch/mips/configs/powertv_defconfig -e4b44328e4357bfa909a814317114a74 linux-3.0/arch/mips/configs/pnx8550-stb810_defconfig -91be4e740396dda497d10c654063c4fb linux-3.0/arch/mips/configs/pnx8550-jbs_defconfig -5b127882a5aad95e6688265354a2f708 linux-3.0/arch/mips/configs/pnx8335-stb225_defconfig -9f711c7f9ffa96f4dc7e1ed892407b19 linux-3.0/arch/mips/configs/pb1550_defconfig -18a6a4cef6d39d82522dab2122a401c3 linux-3.0/arch/mips/configs/pb1500_defconfig -62cc717555a77b303ac6817b12faba6f linux-3.0/arch/mips/configs/pb1200_defconfig -8673afb78596b5ce8ea5301e5b6e6e6f linux-3.0/arch/mips/configs/pb1100_defconfig -1821aa9698d6716700af804308906b14 linux-3.0/arch/mips/configs/nlm_xlr_defconfig -7bdbd437a9ee953dca0481bbe9c84a98 linux-3.0/arch/mips/configs/mtx1_defconfig -c08bfa64339cbb86b102ea9e5d923fd0 linux-3.0/arch/mips/configs/msp71xx_defconfig -b650912c2ae96819ca52f17895c90513 linux-3.0/arch/mips/configs/mpc30x_defconfig -b613bf21ca767b100113de0793816531 linux-3.0/arch/mips/configs/mipssim_defconfig -59a834f84dafc8b0790951daa54a4125 linux-3.0/arch/mips/configs/markeins_defconfig -679becbcd9a597b2393052e5252a9a81 linux-3.0/arch/mips/configs/malta_defconfig -23aab7b89496bc66d4ddaa80314999b4 linux-3.0/arch/mips/configs/lemote2f_defconfig -d2f7b18818e21dbdb33a196c320752ba linux-3.0/arch/mips/configs/lasat_defconfig -d053df6893df77fbf899d3ad65382599 linux-3.0/arch/mips/configs/jmr3927_defconfig -1c2a1a014ec36010ff952e4598d4a076 linux-3.0/arch/mips/configs/jazz_defconfig -a727fcd2204722ac2487706d2bf1c468 linux-3.0/arch/mips/configs/ip32_defconfig -ee53fb604629e84af8c8fd8980ed2801 linux-3.0/arch/mips/configs/ip28_defconfig -80e9c2bd5772c3639f0446888587df88 linux-3.0/arch/mips/configs/ip27_defconfig -698a9d6ebb86525358f3958bce167e1b linux-3.0/arch/mips/configs/ip22_defconfig -6c0abca51d558a03b4ab3956cbdd8b11 linux-3.0/arch/mips/configs/gpr_defconfig -800a1d4e1fd356141d435eea1fe8ab2c linux-3.0/arch/mips/configs/fuloong2e_defconfig -df286edcbe9989a6d5d181ac45c27f60 linux-3.0/arch/mips/configs/e55_defconfig -36b1f2b26131312884dc5493efb5c738 linux-3.0/arch/mips/configs/decstation_defconfig -4e175254d3adca5bf91446ef4ae36978 linux-3.0/arch/mips/configs/db1550_defconfig -9a857caf1b5694b846edd010d2ade4f0 linux-3.0/arch/mips/configs/db1500_defconfig -87720148859e6a3b9290d10a4b845b28 linux-3.0/arch/mips/configs/db1200_defconfig -1a669a8dc8d5ee67071d8893f8b22647 linux-3.0/arch/mips/configs/db1100_defconfig -3fe4472a963db98a775b738e0743ab16 linux-3.0/arch/mips/configs/db1000_defconfig -07f4c41c0b0fdfa665dcff49b4b627ea linux-3.0/arch/mips/configs/cobalt_defconfig -31d9e521f0d61d0c79b4ab34571d32e4 linux-3.0/arch/mips/configs/cavium-octeon_defconfig -9cf7215cef0c11034718da0eb46c5348 linux-3.0/arch/mips/configs/capcella_defconfig -1b8e26440d0a341856a376fa27c86315 linux-3.0/arch/mips/configs/bigsur_defconfig -f9228533ce4a2116cc36f7f957a0e7a6 linux-3.0/arch/mips/configs/bcm63xx_defconfig -12ae713f6a006c3e6ad608e9829c06b5 linux-3.0/arch/mips/configs/bcm47xx_defconfig -4c3ac7725810269370ea1391b86bbf69 linux-3.0/arch/mips/configs/ar7_defconfig -95825492316af54d20c5742e85f02003 linux-3.0/arch/mips/cobalt/time.c -e6392603ec87223d5080d2d1e8566e5d linux-3.0/arch/mips/cobalt/setup.c -a1ebcd9ba2d3ea8157e93e515ebe4da5 linux-3.0/arch/mips/cobalt/serial.c -48248b3195c3ad6c6f159df9a7c7c0b8 linux-3.0/arch/mips/cobalt/rtc.c -0da7ec2e4fb2a6868c5887a06a9f7c96 linux-3.0/arch/mips/cobalt/reset.c -6decb9305c675d211f67693c18719dd8 linux-3.0/arch/mips/cobalt/pci.c -aba0496395c46acbf184c64fe92b7ae3 linux-3.0/arch/mips/cobalt/mtd.c -1a457b617979dd14c19062bd08a11569 linux-3.0/arch/mips/cobalt/led.c -318698104b4b22933941c1cdf2f24707 linux-3.0/arch/mips/cobalt/lcd.c -283fddd0d7f9ae3614439e91ce61e737 linux-3.0/arch/mips/cobalt/irq.c -754139c0361cdc4ca28fabb77195f160 linux-3.0/arch/mips/cobalt/console.c -bf53e441de66f14e7352d268a872718f linux-3.0/arch/mips/cobalt/buttons.c -f9cdd9edc423258d63a9b9dfbe649d7e linux-3.0/arch/mips/cobalt/Platform -0dbcb63d820a61a92cc2787c593b2f95 linux-3.0/arch/mips/cobalt/Makefile -b0dcc09876bc5b793cd44a9aefffa8ad linux-3.0/arch/mips/cavium-octeon/smp.c -b8650791b54b45c39bda2c81187d5232 linux-3.0/arch/mips/cavium-octeon/setup.c -577941785fe54349c3b3dc60f1087d60 linux-3.0/arch/mips/cavium-octeon/serial.c -dbe97622a4291794b3a55173edf3e0d0 linux-3.0/arch/mips/cavium-octeon/octeon_boot.h -c4ca5692564499de0436c31a73ab7b60 linux-3.0/arch/mips/cavium-octeon/octeon-platform.c -bc65b6de9ff54f07743b558bc5a12cb1 linux-3.0/arch/mips/cavium-octeon/octeon-memcpy.S -26c1a9de83bc188c31b31f746912cd6b linux-3.0/arch/mips/cavium-octeon/octeon-irq.c -b4fddc5a22922773f83396211afb9602 linux-3.0/arch/mips/cavium-octeon/flash_setup.c -9790dddd5145f4dc81538f166f77ca36 linux-3.0/arch/mips/cavium-octeon/executive/octeon-model.c -a6cc744164c7ba96af8a262bfd8bd9ab linux-3.0/arch/mips/cavium-octeon/executive/cvmx-sysinfo.c -c92320d4830005ae58d70726e592e1f6 linux-3.0/arch/mips/cavium-octeon/executive/cvmx-l2c.c -841709070f0988f4a17197a1e8d54f69 linux-3.0/arch/mips/cavium-octeon/executive/cvmx-helper-jtag.c -dafe7fc574c0228e3063deda42efb924 linux-3.0/arch/mips/cavium-octeon/executive/cvmx-helper-errata.c -90b75e849f5f85ebfb7c97210d97be27 linux-3.0/arch/mips/cavium-octeon/executive/cvmx-bootmem.c -a7ae192b27b92ee0ecea1cef5c7ad48d linux-3.0/arch/mips/cavium-octeon/executive/Makefile -265769446a0eba1165f5cb92f170ed96 linux-3.0/arch/mips/cavium-octeon/dma-octeon.c -312fa56fb7dc9b80fa5370a8fea040f5 linux-3.0/arch/mips/cavium-octeon/csrc-octeon.c -0d77fd08b099de5b230e1e4173a09ccd linux-3.0/arch/mips/cavium-octeon/cpu.c -638c3a0e8579bec489e2767b209a3fb2 linux-3.0/arch/mips/cavium-octeon/Platform -50cffa9c251c292a893931f1be0a6906 linux-3.0/arch/mips/cavium-octeon/Makefile -ef825dc838a794979edfabd460d0b739 linux-3.0/arch/mips/cavium-octeon/Kconfig -fe5b519ef09420fe0ed3292597e174db linux-3.0/arch/mips/boot/elf2ecoff.c -a209a31dd67584b3cc1e7805ad706a47 linux-3.0/arch/mips/boot/ecoff.h -038e80366230a324af41ca6dde0727f9 linux-3.0/arch/mips/boot/compressed/uart-alchemy.c -d696470f17d582296abd511339a38a82 linux-3.0/arch/mips/boot/compressed/uart-16550.c -7f74d286a4eaca3b9a39d764151fa466 linux-3.0/arch/mips/boot/compressed/ld.script -46fb2f941fda458e5ab142d45c3a4c21 linux-3.0/arch/mips/boot/compressed/head.S -67213abd3ece33e9459639fd20adbec1 linux-3.0/arch/mips/boot/compressed/dummy.c -963d40b220410055e6b65494f2a8fb24 linux-3.0/arch/mips/boot/compressed/decompress.c -dcca8656c798cdcb00f45ef315c3ef49 linux-3.0/arch/mips/boot/compressed/dbg.c -c1c4ab64aac60c590a95b409d24cf117 linux-3.0/arch/mips/boot/compressed/calc_vmlinuz_load_addr.c -e44df83cec656da367f258361e03ef64 linux-3.0/arch/mips/boot/compressed/Makefile -d8d5893f618f230977594c9da8d89392 linux-3.0/arch/mips/boot/Makefile -ac4ab76e9085e62a14154987d151c632 linux-3.0/arch/mips/boot/.gitignore -d37fc0c038b50c5e58bf7460ae6f2a52 linux-3.0/arch/mips/bcm63xx/timer.c -ea30dff943431b3468cecf80441e6c55 linux-3.0/arch/mips/bcm63xx/setup.c -e5babad776fb157d13ce38980d5a62ea linux-3.0/arch/mips/bcm63xx/prom.c -75cbb30fd4b00d3ac11a8b74839389cc linux-3.0/arch/mips/bcm63xx/irq.c -26ef0b02674bc4ed48e194d1896f45e8 linux-3.0/arch/mips/bcm63xx/gpio.c -15376b1aefe07d0fa9f076a0d68e75fa linux-3.0/arch/mips/bcm63xx/early_printk.c -270386c20e3f04886d0de7de6d2ba7c9 linux-3.0/arch/mips/bcm63xx/dev-wdt.c -6ecc90bd1b04ab8695055dd1a5f54c65 linux-3.0/arch/mips/bcm63xx/dev-uart.c -03abb76911df995bd6ea6f1f833015f7 linux-3.0/arch/mips/bcm63xx/dev-pcmcia.c -b807c5120a789fa375bbfac5d948be02 linux-3.0/arch/mips/bcm63xx/dev-enet.c -a19afb653663e8730f9045223fc01fbc linux-3.0/arch/mips/bcm63xx/dev-dsp.c -b045cf552be9a54bab4649d2b90df8e8 linux-3.0/arch/mips/bcm63xx/cs.c -e6d879d5d91cb9ddb57bd98310451647 linux-3.0/arch/mips/bcm63xx/cpu.c -0f68e5f7b2fcadac2c157f5a08113bce linux-3.0/arch/mips/bcm63xx/clk.c -a59d0e053ae8c9c220ba8450f70005ff linux-3.0/arch/mips/bcm63xx/boards/board_bcm963xx.c -91ec1757a145b4f43b2fe444f5f75839 linux-3.0/arch/mips/bcm63xx/boards/Makefile -695a585f484f1a429f4088c9e4b91328 linux-3.0/arch/mips/bcm63xx/boards/Kconfig -653915cc477e8e98792b6df43f357adb linux-3.0/arch/mips/bcm63xx/Platform -0a4d8604754a51d2410be908cec6dd76 linux-3.0/arch/mips/bcm63xx/Makefile -5ade07865d18ce77997b19881517fa7d linux-3.0/arch/mips/bcm63xx/Kconfig -e06649ced5087ea8d444ed17c0faa0fb linux-3.0/arch/mips/bcm47xx/wgt634u.c -3d73866b178120513ff4ebf268a356f1 linux-3.0/arch/mips/bcm47xx/time.c -d49a35078c482bd58d1d5cffd7a21981 linux-3.0/arch/mips/bcm47xx/setup.c -aeea4c425b22e4148ceba7e35fea4fda linux-3.0/arch/mips/bcm47xx/serial.c -e82e75b0c014d2020ac36578441a225d linux-3.0/arch/mips/bcm47xx/prom.c -11f02568e1026f12e244ad41eb2e67cd linux-3.0/arch/mips/bcm47xx/nvram.c -2dfff454a3451584e2da9f6da7f4cf58 linux-3.0/arch/mips/bcm47xx/irq.c -e83e4d5ca3de06b4bc354af29da4a52f linux-3.0/arch/mips/bcm47xx/gpio.c -54dcc413336af6aaaa3814725a5a4e7a linux-3.0/arch/mips/bcm47xx/Platform -70f3242881e22463cb1038a2731d50b9 linux-3.0/arch/mips/bcm47xx/Makefile -c9a2c9e83d77e4bcd841fdd3f3e90d77 linux-3.0/arch/mips/ath79/setup.c -c30a4a89fdc64042fb284329b5f5bf4f linux-3.0/arch/mips/ath79/prom.c -39ba08528586cdf9876d4f6193d164ab linux-3.0/arch/mips/ath79/machtypes.h -63b6e418fe8143521da441ab073775e0 linux-3.0/arch/mips/ath79/mach-pb44.c -703225e3cd47d5c699be6444e72f0402 linux-3.0/arch/mips/ath79/mach-ap81.c -c9226bed7e98a6eaf801bb66003df100 linux-3.0/arch/mips/ath79/irq.c -6f24d3873fd7772cd51d00d939b4921f linux-3.0/arch/mips/ath79/gpio.c -9065519b728211557d1cba2de7959634 linux-3.0/arch/mips/ath79/early_printk.c -022aef495c0ded3d4b791cf491beb7c2 linux-3.0/arch/mips/ath79/dev-spi.h -e42bdfd2c9b04a9a5c3c8678cc6cdf4d linux-3.0/arch/mips/ath79/dev-spi.c -7037c478118cb57ebe904a57381baf11 linux-3.0/arch/mips/ath79/dev-leds-gpio.h -e7b4c27f5df41241bcee7c0b867658bf linux-3.0/arch/mips/ath79/dev-leds-gpio.c -2883ba39f5276ec53d6c66a880133c0e linux-3.0/arch/mips/ath79/dev-gpio-buttons.h -cccce3d9d88bb48e635a576b8a5b6aa1 linux-3.0/arch/mips/ath79/dev-gpio-buttons.c -c31feb3628f9ffdf1c694b247ce82014 linux-3.0/arch/mips/ath79/dev-common.h -b7ce02a5bba7904101837c82eddba8c6 linux-3.0/arch/mips/ath79/dev-common.c -d5968a10553631d9d8ea482b97b6fc7f linux-3.0/arch/mips/ath79/dev-ar913x-wmac.h -8e860017e6a6166837b375407bad7cff linux-3.0/arch/mips/ath79/dev-ar913x-wmac.c -c2d7fd14c44ef2e31399f343e8b17a7a linux-3.0/arch/mips/ath79/common.h -c80e84837ee436e8dbe4f02cb0c7816b linux-3.0/arch/mips/ath79/common.c -5b82be98d6d8215658e45e8cf3661f80 linux-3.0/arch/mips/ath79/clock.c -b40707a3e315a13e1675b7efe68c2e5b linux-3.0/arch/mips/ath79/Platform -41d717f2b4267bd76fadff52e0e34947 linux-3.0/arch/mips/ath79/Makefile -e9dde32b167294c167ab718b901f6527 linux-3.0/arch/mips/ath79/Kconfig -ad3adc618fa66a79b129a7c70f5e178e linux-3.0/arch/mips/ar7/time.c -3e2efcc8e27c897d90bb0a384948cb7f linux-3.0/arch/mips/ar7/setup.c -1c6472f22ab5ad4a85302e66137c6007 linux-3.0/arch/mips/ar7/prom.c -68016f464d03240d35711f331ad5e491 linux-3.0/arch/mips/ar7/platform.c -766ba347006aba72e13a562eef96832d linux-3.0/arch/mips/ar7/memory.c -22511d0af7d43150f383a365b778b5ea linux-3.0/arch/mips/ar7/irq.c -30e2444cdfef0a9c3e4a2472f6a1d1bf linux-3.0/arch/mips/ar7/gpio.c -333803b0c787a4e6048dc1b2e9a200a0 linux-3.0/arch/mips/ar7/clock.c -967b81878c077536036fdf9981041e24 linux-3.0/arch/mips/ar7/Platform -48ab5524961fda5efc178afd576c5fda linux-3.0/arch/mips/ar7/Makefile -e87075480426edac05de9ad49702f9e9 linux-3.0/arch/mips/alchemy/xxs1500/platform.c -c23cdd904e4fd175f05c9d8be99bdf9f linux-3.0/arch/mips/alchemy/xxs1500/init.c -b2b4ee75511f9c5d7137bb2bf804bae7 linux-3.0/arch/mips/alchemy/xxs1500/board_setup.c -a3cf2ab49f89e887ebd63de334eebbd0 linux-3.0/arch/mips/alchemy/xxs1500/Makefile -306722bd48c3262cd2a6555393481b57 linux-3.0/arch/mips/alchemy/mtx-1/platform.c -71c7393578c495d9d3564cd0f7a0d468 linux-3.0/arch/mips/alchemy/mtx-1/init.c -898289024ff53fa25ab7dafc32c4e6a5 linux-3.0/arch/mips/alchemy/mtx-1/board_setup.c -323d0278485a93d032c6f361b526fca1 linux-3.0/arch/mips/alchemy/mtx-1/Makefile -e664d3d97ded8f9e4ae0f73f9f57a7ce linux-3.0/arch/mips/alchemy/gpr/platform.c -d13cb3bc7fd4d1fdd4d736c3eb459116 linux-3.0/arch/mips/alchemy/gpr/init.c -e3861c1c0d7315fb2419218b03b55dd0 linux-3.0/arch/mips/alchemy/gpr/board_setup.c -2b5c5b2f84654b01b9c4ba559a61eb88 linux-3.0/arch/mips/alchemy/gpr/Makefile -367aa580b445602aa47a30d6d01cdf0d linux-3.0/arch/mips/alchemy/devboards/prom.c -88b44958d6cef4ef86c38529062efa91 linux-3.0/arch/mips/alchemy/devboards/pm.c -6d3c7bebc6aaead2657bbffe9474efd3 linux-3.0/arch/mips/alchemy/devboards/platform.h -9853e5c4936a90d1f19642856d2f08ae linux-3.0/arch/mips/alchemy/devboards/platform.c -0512bc85b676d02337daa879ed985aa6 linux-3.0/arch/mips/alchemy/devboards/pb1550/platform.c -b34e6af8f67dda417be35bff9d3a0465 linux-3.0/arch/mips/alchemy/devboards/pb1550/board_setup.c -9b96f501fddbf5c4333941c3d7c1ca0d linux-3.0/arch/mips/alchemy/devboards/pb1550/Makefile -c9dee23dc4aae549806a631a55414780 linux-3.0/arch/mips/alchemy/devboards/pb1500/platform.c -ff74ff2216c7aa22984deafa1dff5e80 linux-3.0/arch/mips/alchemy/devboards/pb1500/board_setup.c -e0de9940e12b4388ad2a0a5381863a11 linux-3.0/arch/mips/alchemy/devboards/pb1500/Makefile -5956a25c612a8c4a53377b22fa994241 linux-3.0/arch/mips/alchemy/devboards/pb1200/platform.c -9f4fa2a57cb3f58b180c9222b0a64b4d linux-3.0/arch/mips/alchemy/devboards/pb1200/board_setup.c -a371843854908ba82eb8036593892578 linux-3.0/arch/mips/alchemy/devboards/pb1200/Makefile -13fc5bdee852c0bff05cbb0b8b49ffdd linux-3.0/arch/mips/alchemy/devboards/pb1100/platform.c -c627ee6e22939e11c9c9e5e40e4e705e linux-3.0/arch/mips/alchemy/devboards/pb1100/board_setup.c -fb04bc98f6690b074315794a3f0c8f4f linux-3.0/arch/mips/alchemy/devboards/pb1100/Makefile -76fb2c5d8b492497a23afd38d1297fb2 linux-3.0/arch/mips/alchemy/devboards/pb1000/board_setup.c -1af342dbcd9ce1e2895c948203615ae6 linux-3.0/arch/mips/alchemy/devboards/pb1000/Makefile -adb6798f24fcd676269f7df972ce588e linux-3.0/arch/mips/alchemy/devboards/db1x00/platform.c -138258ee86b7ddd68240bbff5ce2dab7 linux-3.0/arch/mips/alchemy/devboards/db1x00/board_setup.c -cb1e2cbca6cc72bfe9b83844fe98e437 linux-3.0/arch/mips/alchemy/devboards/db1x00/Makefile -91e130751e5c0bb1bf3c91d89d8f54af linux-3.0/arch/mips/alchemy/devboards/db1200/setup.c -1b28481a20b99bfa0314115803678c28 linux-3.0/arch/mips/alchemy/devboards/db1200/platform.c -4b94933e36da0a281af80439f2866d8b linux-3.0/arch/mips/alchemy/devboards/db1200/Makefile -39ae5b5264403559420d4fd43dc86cc5 linux-3.0/arch/mips/alchemy/devboards/bcsr.c -9f17ac14bb3555bcf7be35662ae94e40 linux-3.0/arch/mips/alchemy/devboards/Makefile -c982310cf582182fa117bfafa7909ddc linux-3.0/arch/mips/alchemy/common/time.c -e65ea20a72db77a225b5b1fe28bb467b linux-3.0/arch/mips/alchemy/common/sleeper.S -5c016235a52d89024fd9afc36913fd94 linux-3.0/arch/mips/alchemy/common/setup.c -1d475daf705dd543429e908541d637e5 linux-3.0/arch/mips/alchemy/common/prom.c -5f3d62de5e5eddfed84da4335d3ee31d linux-3.0/arch/mips/alchemy/common/power.c -a3b866391e2dea0dfc50093a961086dc linux-3.0/arch/mips/alchemy/common/platform.c -4d7f936697bd6cf5a5ed14572d0f7228 linux-3.0/arch/mips/alchemy/common/pci.c -0a4693e31fc6dc5cbe69d39c0d48d6ca linux-3.0/arch/mips/alchemy/common/irq.c -b48c575a0211055933bf16e8982c1b11 linux-3.0/arch/mips/alchemy/common/gpiolib-au1000.c -fe1046de214d0beafbc849f60908249d linux-3.0/arch/mips/alchemy/common/dma.c -56a2a0bea6b84927a1e1b3234eb39df1 linux-3.0/arch/mips/alchemy/common/dbdma.c -c674957030f30209dd357a7ff2bec8f0 linux-3.0/arch/mips/alchemy/common/clocks.c -2e5b8f9f735e99e955af055c29656570 linux-3.0/arch/mips/alchemy/common/Makefile -60439b704b7e325691ffb25d776c7498 linux-3.0/arch/mips/alchemy/Platform -b0668a5a502bbe7a09fae9faf97fb668 linux-3.0/arch/mips/alchemy/Kconfig -b12abe39bf2d2cec8e1e7bda6b01be81 linux-3.0/arch/mips/Makefile -dc1d696c0e1e114a9be4f9fe3a1fd768 linux-3.0/arch/mips/Kconfig.debug -0083a76e3c7bf6f33c29aa72ec0e44e7 linux-3.0/arch/mips/Kconfig -3fd2b5521dd3cd4b04b0c0035c82250a linux-3.0/arch/mips/Kbuild.platforms -55e98643efc31a7bbaa9ce93a33d1e11 linux-3.0/arch/mips/Kbuild -91af378b5aad73b997ce73c3de8aeeea linux-3.0/arch/microblaze/platform/platform.c -74776f588ba8f37b1469215b3f9b7af1 linux-3.0/arch/microblaze/platform/generic/system.dts -65a73d82a506a718ded84ab5af357f94 linux-3.0/arch/microblaze/platform/generic/Makefile -d20e2e6768f7d7c4a88dac7d52f4791f linux-3.0/arch/microblaze/platform/generic/Kconfig.auto -5b7daa5ca274dc74f13a83895cb67881 linux-3.0/arch/microblaze/platform/Makefile -1e6581fced1cec7df7ddfa823ac39b31 linux-3.0/arch/microblaze/platform/Kconfig.platform -bc0d5b9b69ac9741b7f6b25364a9a73b linux-3.0/arch/microblaze/pci/xilinx_pci.c -bd4660f8a63307bc00863f4b7890470a linux-3.0/arch/microblaze/pci/pci_32.c -d2be54075961f0296990ebeddc91f5f6 linux-3.0/arch/microblaze/pci/pci-common.c -0a0f91cb4b6855612c12a3c789f124d7 linux-3.0/arch/microblaze/pci/iomap.c -060a11b9b6486fcaf9203a6b8b818771 linux-3.0/arch/microblaze/pci/indirect_pci.c -02bf841fec1f49d7265a8fbc41014671 linux-3.0/arch/microblaze/pci/Makefile -cf7a75a38531ba80dc7e56b1f812e636 linux-3.0/arch/microblaze/oprofile/microblaze_oprofile.c -a8466aabebb92f49dadc7dee1335d688 linux-3.0/arch/microblaze/oprofile/Makefile -8ccc4f6c2c93d5b449a84d6ea874144b linux-3.0/arch/microblaze/mm/pgtable.c -d20901feb1400213e30370ec898c34d0 linux-3.0/arch/microblaze/mm/mmu_context.c -47f96401caf9481e46fe41363e58c11b linux-3.0/arch/microblaze/mm/init.c -1cb3b4aec334513c24b854260c9aec94 linux-3.0/arch/microblaze/mm/fault.c -dc3fa16b23001ab00bb9f574a79a69e1 linux-3.0/arch/microblaze/mm/consistent.c -70c782cdc7bed37068587fad8174da01 linux-3.0/arch/microblaze/mm/Makefile -7b8f88d5cecb52b10a3e301394b2388e linux-3.0/arch/microblaze/lib/umodsi3.S -ffb783142dc70f27ae046a456724bc5e linux-3.0/arch/microblaze/lib/udivsi3.S -4bca708f8b9f62cd5a539806cfb5982b linux-3.0/arch/microblaze/lib/uaccess_old.S -b0221f8167e8f84e4dbf0e026d397d39 linux-3.0/arch/microblaze/lib/mulsi3.S -11e6a22c7717b10ee5434ed973bd9e43 linux-3.0/arch/microblaze/lib/muldi3.c -896bd9306a19b0620e024a06ce54e6b0 linux-3.0/arch/microblaze/lib/modsi3.S -f2456280ff197c16edfad0f3c672f417 linux-3.0/arch/microblaze/lib/memset.c -82884c357aee8da2d9c65a8633bc493f linux-3.0/arch/microblaze/lib/memmove.c -d538ebd8ffeeb4c1b3b2148a27a60dbf linux-3.0/arch/microblaze/lib/memcpy.c -9e1fef8838254580c29c854c2c845398 linux-3.0/arch/microblaze/lib/lshrdi3.c -7156c3bbacc169c7626b1637aa115084 linux-3.0/arch/microblaze/lib/libgcc.h -22f5d0cb89209b2f04065192efb27c22 linux-3.0/arch/microblaze/lib/fastcopy.S -97739fc87288ed5e8ba0094c18f6f664 linux-3.0/arch/microblaze/lib/divsi3.S -8b36e391d219e3efd3b989347fdaed78 linux-3.0/arch/microblaze/lib/ashrdi3.c -868931944b6c6a3100afd8a7e4bc4e43 linux-3.0/arch/microblaze/lib/ashldi3.c -b58174c740d814dd58e2db62610817c3 linux-3.0/arch/microblaze/lib/Makefile -6dcdc4603894e3dafc4d1a80c9edacc7 linux-3.0/arch/microblaze/kernel/vmlinux.lds.S -a0a5c89be4828a52279de3006b02bcd7 linux-3.0/arch/microblaze/kernel/unwind.c -8ef0ea986138b49f2a8b7f74a0b4db52 linux-3.0/arch/microblaze/kernel/traps.c -d9164a8232563d92d5cf0cb0ada669d1 linux-3.0/arch/microblaze/kernel/timer.c -4e5e8a24dae9c7391b284bf88e15a0b9 linux-3.0/arch/microblaze/kernel/syscall_table.S -4552818f6e2e31007a91ebc89b573816 linux-3.0/arch/microblaze/kernel/sys_microblaze.c -39bdc9d2826c165fbc2ad1aeb098a613 linux-3.0/arch/microblaze/kernel/stacktrace.c -72d44a5393e6ec431f638df0ba032b22 linux-3.0/arch/microblaze/kernel/signal.c -eb7d317b742b5dd204df70c7e6afaebb linux-3.0/arch/microblaze/kernel/setup.c -82c4e5acb6e073a4fc1ed9d61d4be55e linux-3.0/arch/microblaze/kernel/selfmod.c -06974cd43867f71aac4868936eab7319 linux-3.0/arch/microblaze/kernel/reset.c -53dc9d63db8908b76354051e590680ad linux-3.0/arch/microblaze/kernel/ptrace.c -ca163173d9ec151a26c06dd78f732850 linux-3.0/arch/microblaze/kernel/prom_parse.c -c798aa85c7dbdfecb7d05c959af88f12 linux-3.0/arch/microblaze/kernel/prom.c -c21a5bd5b3f7c447cc4e3580aac05b06 linux-3.0/arch/microblaze/kernel/process.c -f2f45acc32cbead00a566e8dbec4903c linux-3.0/arch/microblaze/kernel/module.c -9f434797bf15d9c0329b41a05f98a871 linux-3.0/arch/microblaze/kernel/misc.S -7a9c2bde094e0234ff0db8a5cce91f1e linux-3.0/arch/microblaze/kernel/microblaze_ksyms.c -72ab9904978593054c2caecd8d06247e linux-3.0/arch/microblaze/kernel/mcount.S -4d6afd6d0091c27539bcc57b8b96ae99 linux-3.0/arch/microblaze/kernel/kgdb.c -c189d53bddfadab802a498c9ebcfa5d4 linux-3.0/arch/microblaze/kernel/irq.c -9a45a1b1b8e0f25272deb4ec5f7e8d11 linux-3.0/arch/microblaze/kernel/intc.c -c5c0ac083ab9a118b1902ebd458910f4 linux-3.0/arch/microblaze/kernel/init_task.c -aebd3166985764677ed619ba3379ddd3 linux-3.0/arch/microblaze/kernel/hw_exception_handler.S -3e711c6edd097778c552b7fdd2491a24 linux-3.0/arch/microblaze/kernel/heartbeat.c -2ea6f91d066765f8efe68e38b495db55 linux-3.0/arch/microblaze/kernel/head.S -5983debf6891f86682d564f5dbc0fb1e linux-3.0/arch/microblaze/kernel/ftrace.c -632c1a3ce23472ddf312d3e2bd22947e linux-3.0/arch/microblaze/kernel/exceptions.c -598a5a252d861ea4e8e0d2051640f57a linux-3.0/arch/microblaze/kernel/entry.S -345f1a4ede2e34414c97d7c4080ff845 linux-3.0/arch/microblaze/kernel/entry-nommu.S -3a11adc37496ba0067e657bdc02804e1 linux-3.0/arch/microblaze/kernel/early_printk.c -18e601e3f9275c5e404c3deb8fd276f3 linux-3.0/arch/microblaze/kernel/dma.c -2c0d8736dbb104b136588794fe2fb768 linux-3.0/arch/microblaze/kernel/cpu/pvr.c -8bd6493490a4d25477dee1b130cddd26 linux-3.0/arch/microblaze/kernel/cpu/mb.c -c835c080fafa4310c69c4b9f3f3ea9a7 linux-3.0/arch/microblaze/kernel/cpu/cpuinfo.c -4f20f8cc10c15b37ca236384303ec2c3 linux-3.0/arch/microblaze/kernel/cpu/cpuinfo-static.c -072115124be6c4bc15ae034b16c54a34 linux-3.0/arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c -829b2bca27bc77e5b58d30e3f584c036 linux-3.0/arch/microblaze/kernel/cpu/cache.c -c0612100d0040b0b06db51b5bc37f51e linux-3.0/arch/microblaze/kernel/cpu/Makefile -b219fe017e7d21bc0d4d986d81ecdfe3 linux-3.0/arch/microblaze/kernel/asm-offsets.c -dec7529a4c16e6151ddd4f602e433a31 linux-3.0/arch/microblaze/kernel/Makefile -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/microblaze/include/asm/xor.h -3e3f73f9393a822141fd620e646bf63f linux-3.0/arch/microblaze/include/asm/vga.h -68b329da9893e34099c7d8ad5cb9c940 linux-3.0/arch/microblaze/include/asm/user.h -1977cb66994afd1d83419fbcb8170270 linux-3.0/arch/microblaze/include/asm/unwind.h -0ff1d37c007fc3ba3953514d04576ed6 linux-3.0/arch/microblaze/include/asm/unistd.h -607719d12118d8a20bf71b7035889591 linux-3.0/arch/microblaze/include/asm/unaligned.h -54ef8b4281a8709709fd75155efac8f2 linux-3.0/arch/microblaze/include/asm/ucontext.h -4c7c5ef969c81c1b89d14717dc06e254 linux-3.0/arch/microblaze/include/asm/uaccess.h -b71092c914ac20c4f96e66104cbbafba linux-3.0/arch/microblaze/include/asm/types.h -dd5e1564a7aba8918049ff3c36a9729e linux-3.0/arch/microblaze/include/asm/topology.h -9a68861fa71d4da1355c712428208714 linux-3.0/arch/microblaze/include/asm/tlbflush.h -6e7d7566d261af32038fd4e0b6b50fc0 linux-3.0/arch/microblaze/include/asm/tlb.h -fc6cc7cd373158f62326f1b00656c4e0 linux-3.0/arch/microblaze/include/asm/timex.h -fcf8cf2df8a3d9d2199a0cfcbe34ec89 linux-3.0/arch/microblaze/include/asm/thread_info.h -55f8ec5e3a7ee0e398b33d52b4d28e89 linux-3.0/arch/microblaze/include/asm/termios.h -9d9ec0d765b9eba91700fcb860f4b9ee linux-3.0/arch/microblaze/include/asm/termbits.h -87c4d722609516dc8e8a6992444018c3 linux-3.0/arch/microblaze/include/asm/system.h -00371fab24857a05a90c94256f807963 linux-3.0/arch/microblaze/include/asm/syscalls.h -3369c67083a5388c0f2c900e3593dd8e linux-3.0/arch/microblaze/include/asm/syscall.h -54cf6908e0430e98ab9f904eabd1390f linux-3.0/arch/microblaze/include/asm/swab.h -beefc35e8d5adcbad71c58f35262ff3f linux-3.0/arch/microblaze/include/asm/string.h -4b9103b93197bd194432f9b1415d31dd linux-3.0/arch/microblaze/include/asm/statfs.h -4692531cab407cc475a96527fe96d5e4 linux-3.0/arch/microblaze/include/asm/stat.h -965625ab160bad6b06ffae41abf01378 linux-3.0/arch/microblaze/include/asm/sockios.h -892b575276515e01057bf49a9806fafc linux-3.0/arch/microblaze/include/asm/socket.h -1097af737d3d3216c283308a949b31db linux-3.0/arch/microblaze/include/asm/signal.h -f9872b768e941b1daab4835e75467ef3 linux-3.0/arch/microblaze/include/asm/siginfo.h -413f085da4cefc9c0c04665921ccf811 linux-3.0/arch/microblaze/include/asm/sigcontext.h -99c40bee77ebb536b422523c91382c95 linux-3.0/arch/microblaze/include/asm/shmparam.h -c1f66b7faa2dfa17efdbdf1e416be250 linux-3.0/arch/microblaze/include/asm/shmbuf.h -c7e9c17d5a0d393959c8e12c7ef79beb linux-3.0/arch/microblaze/include/asm/setup.h -b7fdb5c8ffc0fcea37c954a24e7e1777 linux-3.0/arch/microblaze/include/asm/serial.h -54b0fb0eed0916e7b2e6918f2bd8e3c3 linux-3.0/arch/microblaze/include/asm/sembuf.h -76f083475c2295d5543b2313c9d702c3 linux-3.0/arch/microblaze/include/asm/selfmod.h -017938c2c91d0554efbfe265aa3813b9 linux-3.0/arch/microblaze/include/asm/sections.h -d9a1bdff79f447078424adaf6046a77c linux-3.0/arch/microblaze/include/asm/seccomp.h -965fa9b6105548b21768e79c657be36a linux-3.0/arch/microblaze/include/asm/scatterlist.h -36eb2a82010cc2b8194bde001a28c7a5 linux-3.0/arch/microblaze/include/asm/resource.h -9eda5fedce9fbe8e610d3656668bac7f linux-3.0/arch/microblaze/include/asm/registers.h -f3f103a557b75f5f84eb12286f1dfd8d linux-3.0/arch/microblaze/include/asm/pvr.h -589fcaec0bd0f1e1344470c1346c0bc7 linux-3.0/arch/microblaze/include/asm/ptrace.h -52cb62aa0fc60afeb1ba6d6b40183110 linux-3.0/arch/microblaze/include/asm/prom.h -18f581209c4658a911967e048c0a11f1 linux-3.0/arch/microblaze/include/asm/processor.h -65c12ee830d2489439e5968939b66ab5 linux-3.0/arch/microblaze/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/microblaze/include/asm/poll.h -339471960fb6218f5c76c3914bfa1d67 linux-3.0/arch/microblaze/include/asm/pgtable.h -8f2500c60dfe6d88fb9b2a2c4f899cd4 linux-3.0/arch/microblaze/include/asm/pgalloc.h -1d5304b635d1f0e5cb6f2cd68524105c linux-3.0/arch/microblaze/include/asm/percpu.h -89bebfb77a72b91b6f7f7e40f256103e linux-3.0/arch/microblaze/include/asm/pci.h -d0798d352e42c42ac801d13d46d44dff linux-3.0/arch/microblaze/include/asm/pci-bridge.h -419018600d2e2fc52e024d83ed2e460c linux-3.0/arch/microblaze/include/asm/parport.h -29dbb685f25e0e09aa59624964e2b815 linux-3.0/arch/microblaze/include/asm/param.h -8575ba7f97c93121bb82bba0b5456b22 linux-3.0/arch/microblaze/include/asm/page.h -f1d954cd932ea0a7803481156572252a linux-3.0/arch/microblaze/include/asm/namei.h -7c98219c1cb99aa129d5c3baa7ed0f90 linux-3.0/arch/microblaze/include/asm/mutex.h -a8606cb7f0b36b7ffed407a409829c9d linux-3.0/arch/microblaze/include/asm/msgbuf.h -24ee36830d25497023f63bbc6ca3a7bf linux-3.0/arch/microblaze/include/asm/module.h -4ac211f47f159a99ea141df3eff4ae09 linux-3.0/arch/microblaze/include/asm/mmu_context_mm.h -190356d014f34ea47d3db6e15ca24849 linux-3.0/arch/microblaze/include/asm/mmu_context.h -fd518faf070a6c60bb47a59f9ace19cd linux-3.0/arch/microblaze/include/asm/mmu.h -c10dfdbe274b25756fe8f9900e428096 linux-3.0/arch/microblaze/include/asm/mman.h -245ee120e9932a87075c9dc334f1a889 linux-3.0/arch/microblaze/include/asm/memblock.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/microblaze/include/asm/local64.h -dd5c2452f777c57e923e1b3de9ac2c14 linux-3.0/arch/microblaze/include/asm/local.h -63351c7516181da5a19737670864b3f4 linux-3.0/arch/microblaze/include/asm/linkage.h -260476985b3a008c21c793732e880a72 linux-3.0/arch/microblaze/include/asm/kmap_types.h -401406969dde1ca638c9d73db5f245fc linux-3.0/arch/microblaze/include/asm/kgdb.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/microblaze/include/asm/kdebug.h -b8ded84db79ae38aca941679f7faa118 linux-3.0/arch/microblaze/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/microblaze/include/asm/irq_regs.h -3e7e4cd9cef415f7f3cd316189597832 linux-3.0/arch/microblaze/include/asm/irq.h -a5cedbd444be7216303596ec4d505047 linux-3.0/arch/microblaze/include/asm/ipcbuf.h -8fd83dc41ce32aadea0c9aa10b611a15 linux-3.0/arch/microblaze/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/microblaze/include/asm/ioctl.h -ddf9ffc8a84e0be7614d088ea90f75d6 linux-3.0/arch/microblaze/include/asm/io.h -68b329da9893e34099c7d8ad5cb9c940 linux-3.0/arch/microblaze/include/asm/hw_irq.h -b4c458bf66738aeb63c91f377076cfc1 linux-3.0/arch/microblaze/include/asm/hardirq.h -bf7b859a37d62730d931b2eaf925098a linux-3.0/arch/microblaze/include/asm/gpio.h -56c7f76cea99e588c2ebd2f4e184a7e0 linux-3.0/arch/microblaze/include/asm/futex.h -6d3d619a8450439b672ce7a49e759492 linux-3.0/arch/microblaze/include/asm/ftrace.h -6b60216f4b1d825a0d514cb4f2cd1510 linux-3.0/arch/microblaze/include/asm/flat.h -a598360d85106db07897c937209e63eb linux-3.0/arch/microblaze/include/asm/fcntl.h -6992ca0c4939de26e55488ce729fc0a4 linux-3.0/arch/microblaze/include/asm/fb.h -2920d1b24f4aa8937d531405d616429a linux-3.0/arch/microblaze/include/asm/exceptions.h -05366a204880e8cf1fcd3e61ef3cfa41 linux-3.0/arch/microblaze/include/asm/errno.h -306a01fa1a9cdc203d8e8cfa31ceeb8e linux-3.0/arch/microblaze/include/asm/entry.h -6df22cf6584ec54da208b4a77ec955d6 linux-3.0/arch/microblaze/include/asm/emergency-restart.h -fe00cfe8b3e069d23ba9e7d15c96d47c linux-3.0/arch/microblaze/include/asm/elf.h -6f70881d52a8d2f4b02bd7b343d74b71 linux-3.0/arch/microblaze/include/asm/dma.h -68c47a74ef59b8cdd312c492c436d411 linux-3.0/arch/microblaze/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/microblaze/include/asm/div64.h -dfb85566233f7c488839e3fa2a2c72e9 linux-3.0/arch/microblaze/include/asm/device.h -9c630afbf4a1fd36e7670fe795d4bf0d linux-3.0/arch/microblaze/include/asm/delay.h -134aee03555235d87481e1d4e6894ab8 linux-3.0/arch/microblaze/include/asm/current.h -e07bb1fbce67b580c13b57c94d6eb580 linux-3.0/arch/microblaze/include/asm/cputime.h -68b329da9893e34099c7d8ad5cb9c940 linux-3.0/arch/microblaze/include/asm/cputable.h -b0b56d45e6d74f657fd6d4e64bda91a1 linux-3.0/arch/microblaze/include/asm/cpuinfo.h -8dac8e5db60267d94ee78c26c6456c08 linux-3.0/arch/microblaze/include/asm/clinkage.h -7b7108b8b76b934a76026354ba3ec4e3 linux-3.0/arch/microblaze/include/asm/checksum.h -28591eeb0a25a82a3d1b54d8cf9b95f5 linux-3.0/arch/microblaze/include/asm/cacheflush.h -4454074dd6c99bfc35381d7e4ac46516 linux-3.0/arch/microblaze/include/asm/cache.h -d3eed8c71c9ba801e0fcefa43c98543d linux-3.0/arch/microblaze/include/asm/byteorder.h -8032b078e81a3a2126cb50c13e36ebd7 linux-3.0/arch/microblaze/include/asm/bugs.h -91b29c47b82f09205c8b86b58314bf7f linux-3.0/arch/microblaze/include/asm/bug.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/microblaze/include/asm/bitsperlong.h -ffb0371e7fb2f46c76b20153966a536b linux-3.0/arch/microblaze/include/asm/bitops.h -68b329da9893e34099c7d8ad5cb9c940 linux-3.0/arch/microblaze/include/asm/auxvec.h -bbc3e16f3390186ddafefaa2422b3946 linux-3.0/arch/microblaze/include/asm/atomic.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/microblaze/include/asm/asm-offsets.h -dfc23b4fa06d3bd4f5ef31b90101414c linux-3.0/arch/microblaze/include/asm/asm-compat.h -d0214acc85ec3abbfef23b7c2ae2fab1 linux-3.0/arch/microblaze/include/asm/Kbuild -56111debd8a83fa09bb43d5c24311461 linux-3.0/arch/microblaze/configs/nommu_defconfig -a32f05f2e1ed3dbf203d720a2f98bf85 linux-3.0/arch/microblaze/configs/mmu_defconfig -f78b799af3e09141b4c99e570f361a82 linux-3.0/arch/microblaze/boot/linked_dtb.S -321c47a6818c3ff9552a97cef50e703d linux-3.0/arch/microblaze/boot/Makefile -a4621a6df332535a5bf6accc552bb3a1 linux-3.0/arch/microblaze/Makefile -02ee859a62e7bfa2edac12b1f41a008c linux-3.0/arch/microblaze/Kconfig.debug -16d4b99d6bc3d4722f131e700ef6c609 linux-3.0/arch/microblaze/Kconfig -ee24c9f95b135a622a092094577d93cc linux-3.0/arch/m68k/tools/amiga/dmesg.c -b7051fcccfbe9e5402fc4e231d669391 linux-3.0/arch/m68k/tools/amiga/Makefile -5e267bca62a4f2a9e0a3304eecd70935 linux-3.0/arch/m68k/sun3x/time.h -823c95571d986bcfa673828574a867f1 linux-3.0/arch/m68k/sun3x/time.c -d1cf8339ce4a1b0f8032f290652fd679 linux-3.0/arch/m68k/sun3x/prom.c -7397ffb777a5194365b1b7db64b21ca7 linux-3.0/arch/m68k/sun3x/dvma.c -b7d49fa9f0a215eb3a856b872fca220a linux-3.0/arch/m68k/sun3x/config.c -7ad5216f42f8f6455a81a92ab183a48e linux-3.0/arch/m68k/sun3x/Makefile -167a92868e28a3fd2c752924f89795f7 linux-3.0/arch/m68k/sun3/sun3ints.c -99a761dfbd6e130c9a783375c2e3d827 linux-3.0/arch/m68k/sun3/sun3dvma.c -0ef226193a721b3833309caeab254fd7 linux-3.0/arch/m68k/sun3/prom/printf.c -5936afe0ae146b6dbef2fba9704a73c7 linux-3.0/arch/m68k/sun3/prom/misc.c -e86b19782a0cb1a63855a7168f843c84 linux-3.0/arch/m68k/sun3/prom/init.c -3e2176abe1c3ec1ef5af320a4e86119d linux-3.0/arch/m68k/sun3/prom/console.c -e3531d6734b3c34790d1e45955d6eb9f linux-3.0/arch/m68k/sun3/prom/Makefile -c40193feca20b40033565066f25feed2 linux-3.0/arch/m68k/sun3/mmu_emu.c -5e6205ac4ab39c78c610e053bd78da8c linux-3.0/arch/m68k/sun3/leds.c -4bcd6536568e85afac4c8c88956f46e2 linux-3.0/arch/m68k/sun3/intersil.c -5cb33be5995c81c1bd88e0b6a3002b4b linux-3.0/arch/m68k/sun3/idprom.c -ca92ce002417e50d116c1154d1feded7 linux-3.0/arch/m68k/sun3/dvma.c -be37e7c39ff4dfa6d3f357263872c72c linux-3.0/arch/m68k/sun3/config.c -47833fa8515e93a72d6c83d5626d8d04 linux-3.0/arch/m68k/sun3/Makefile -46091514008fd08054eb65c4c0c7c5e4 linux-3.0/arch/m68k/q40/q40ints.c -fde2194e01ba9656881b20850980bbb4 linux-3.0/arch/m68k/q40/config.c -f5dcdff0291cc5cb24163d22d9eea840 linux-3.0/arch/m68k/q40/README -2da56a7b0974611892f2b5667d6c4d45 linux-3.0/arch/m68k/q40/Makefile -d8adf02798a0b58bb79e9baa26a164ba linux-3.0/arch/m68k/platform/coldfire/vectors.c -a009865ecf44567d2238778f2dc02e3e linux-3.0/arch/m68k/platform/coldfire/timers.c -75760d0fde8e797d9508a2f3283aeacf linux-3.0/arch/m68k/platform/coldfire/sltimers.c -abf65970ff052e45b7b9a2bc074b98ed linux-3.0/arch/m68k/platform/coldfire/pit.c -8c592db5e6e3f3c082699763553d647d linux-3.0/arch/m68k/platform/coldfire/pinmux.c -6eaafa5ace8596b8467b691d35497605 linux-3.0/arch/m68k/platform/coldfire/intc.c -a1482c064e901c19613297d08213b6d8 linux-3.0/arch/m68k/platform/coldfire/intc-simr.c -772e2d02b1a33242798f0f7a92f579e2 linux-3.0/arch/m68k/platform/coldfire/intc-2.c -d041011adc12f09690fcb12a3f4aea7a linux-3.0/arch/m68k/platform/coldfire/head.S -40dae3d8948dc427e766e41ffe9f9532 linux-3.0/arch/m68k/platform/coldfire/gpio.c -70d0102c3c9ca7d4b04aba3a8eed1f84 linux-3.0/arch/m68k/platform/coldfire/entry.S -191240f41f766c0ca828c326efef32ef linux-3.0/arch/m68k/platform/coldfire/dma_timer.c -67af7e631f39f00860991ecc1bfa026b linux-3.0/arch/m68k/platform/coldfire/dma.c -ed4fc49606ed08bd73671bb8b5bb801a linux-3.0/arch/m68k/platform/coldfire/clk.c -0c88dd60f97defe5cc8858d5eb00e6f6 linux-3.0/arch/m68k/platform/coldfire/cache.c -e2780dd306acf2bb611c13714b2aa2af linux-3.0/arch/m68k/platform/coldfire/Makefile -75096f9af452d2c1073b3c9a203196ad linux-3.0/arch/m68k/platform/Makefile -c384204f12fc382ad54d5de66342e222 linux-3.0/arch/m68k/platform/68VZ328/config.c -830d77d2a83028d440ddda6b8578b595 linux-3.0/arch/m68k/platform/68VZ328/Makefile -c834ab07f604a1eda3ad9864321563c4 linux-3.0/arch/m68k/platform/68EZ328/config.c -d17ec5246865b7db83be884990594647 linux-3.0/arch/m68k/platform/68EZ328/bootlogo.h -fd84bf31d3c8ace20d02b5bf45212412 linux-3.0/arch/m68k/platform/68EZ328/Makefile -2a969f19ccff45644c265f2e22f2c353 linux-3.0/arch/m68k/platform/68360/ints.c -588cba07a1432ca5917e0f46ec87aeee linux-3.0/arch/m68k/platform/68360/head-rom.S -36c7cff93c1693519c91f72784dbd78c linux-3.0/arch/m68k/platform/68360/head-ram.S -0202119dc685092f31de02db8d8649e3 linux-3.0/arch/m68k/platform/68360/entry.S -a154b3c3162ef205405c32c824c7815c linux-3.0/arch/m68k/platform/68360/config.c -888c4e221dae86e4af69eb7d40aab300 linux-3.0/arch/m68k/platform/68360/commproc.c -30f69ce964edcd7f3e460e4d803a8692 linux-3.0/arch/m68k/platform/68360/Makefile -408cf4c18142ee56822bb40052055288 linux-3.0/arch/m68k/platform/68328/timers.c -4760e246c31dacfeecbe69a13dd2f6d1 linux-3.0/arch/m68k/platform/68328/romvec.S -fca54c5890746d6209127e4b54a8db23 linux-3.0/arch/m68k/platform/68328/ints.c -bb0880f26107f68bb00d4d346c8d08fb linux-3.0/arch/m68k/platform/68328/head-rom.S -0140aefa4a41b9c4dc9457baef8f1215 linux-3.0/arch/m68k/platform/68328/head-ram.S -f965f2f02c13982a50720b00ede6cb36 linux-3.0/arch/m68k/platform/68328/head-pilot.S -d2e308562552f25976faec5fa66c4132 linux-3.0/arch/m68k/platform/68328/head-de2.S -d8558fb38dada82801f5ede85326f16a linux-3.0/arch/m68k/platform/68328/entry.S -7a52137283adf9af4a5f38b48f551b3e linux-3.0/arch/m68k/platform/68328/config.c -a713d2c13df3989ddae09b49118377be linux-3.0/arch/m68k/platform/68328/bootlogo.pl -a197af426186cabcabca728a1ae70d7f linux-3.0/arch/m68k/platform/68328/bootlogo.h -9a71849ce1c621264ba1fcdbed0c0887 linux-3.0/arch/m68k/platform/68328/Makefile -57ee731f42e7ad2ad7d1a076375686b2 linux-3.0/arch/m68k/platform/54xx/firebee.c -423964c4e42cb971c84354138097f461 linux-3.0/arch/m68k/platform/54xx/config.c -9f0221340c7f9afce616b5fdcdb7a6c6 linux-3.0/arch/m68k/platform/54xx/Makefile -3e66937454a2821848741d51758fe716 linux-3.0/arch/m68k/platform/5407/gpio.c -11185cad42ae6bed6674e6735143dab4 linux-3.0/arch/m68k/platform/5407/config.c -b319c030cbc4b35c68cab3ffce33ced8 linux-3.0/arch/m68k/platform/5407/Makefile -0eea1cdba2f2844cd02bafcab51379f2 linux-3.0/arch/m68k/platform/532x/gpio.c -bc028c1f78653dc55298d9e0621c4494 linux-3.0/arch/m68k/platform/532x/config.c -2f0eb255314903fcd3afc887927a3f54 linux-3.0/arch/m68k/platform/532x/Makefile -2aa051d28349ddca44f94b961a1830d5 linux-3.0/arch/m68k/platform/5307/nettel.c -3e66937454a2821848741d51758fe716 linux-3.0/arch/m68k/platform/5307/gpio.c -893b4d321d6def7a0fc95d63cc86ce3d linux-3.0/arch/m68k/platform/5307/config.c -eae011673d1ac233e77016cf815dde15 linux-3.0/arch/m68k/platform/5307/Makefile -860cf065fce4a0dd8604124a3829f592 linux-3.0/arch/m68k/platform/528x/gpio.c -e9deb5af86068c6c3d8c8d3641c0e712 linux-3.0/arch/m68k/platform/528x/config.c -872d080b0d43b5acd921cf69c288a8a4 linux-3.0/arch/m68k/platform/528x/Makefile -b4533b4c0f98d9fa1ecc07d4f5f8fb7f linux-3.0/arch/m68k/platform/527x/gpio.c -45b7b71f6da0b4be621b6ac604977534 linux-3.0/arch/m68k/platform/527x/config.c -872d080b0d43b5acd921cf69c288a8a4 linux-3.0/arch/m68k/platform/527x/Makefile -785973ebefc2bdd4c1beaeaad9c3fd81 linux-3.0/arch/m68k/platform/5272/intc.c -ba865bd437adaf16d887a82e5fa23841 linux-3.0/arch/m68k/platform/5272/gpio.c -de87beffa6d65ea8c79f8e5a1ab04b77 linux-3.0/arch/m68k/platform/5272/config.c -7d545000a853f0c3513644f465a3e55f linux-3.0/arch/m68k/platform/5272/Makefile -f387e20024c63ee0b75afb724a826c5f linux-3.0/arch/m68k/platform/5249/intc2.c -bef539a7f432c91f02f1942459473fbe linux-3.0/arch/m68k/platform/5249/gpio.c -6444d3027796abd8c0771fd87a3ed2f2 linux-3.0/arch/m68k/platform/5249/config.c -30be96c4d4e6ec0ae46f1b487156c989 linux-3.0/arch/m68k/platform/5249/Makefile -8eccc463951db79d1395e906edb7155d linux-3.0/arch/m68k/platform/523x/gpio.c -7c912a415e5d6c015ab8673ee4a5b7c2 linux-3.0/arch/m68k/platform/523x/config.c -738484040bd327818ece51cd55458232 linux-3.0/arch/m68k/platform/523x/Makefile -560d515c14b0d46647fb5f2bf341e56d linux-3.0/arch/m68k/platform/520x/gpio.c -97f242b22c5257fe888b615c6ec378fd linux-3.0/arch/m68k/platform/520x/config.c -b0db625518e5a7eaf57ce3ab9b486e6b linux-3.0/arch/m68k/platform/520x/Makefile -e4f00d6fcb830bd1ff2810347f140f43 linux-3.0/arch/m68k/platform/5206e/gpio.c -5c1f1e0d2361ecb9e02c1dcd9beae535 linux-3.0/arch/m68k/platform/5206e/config.c -81bb3fbdd8dde7b1777688970e99f652 linux-3.0/arch/m68k/platform/5206e/Makefile -e4f00d6fcb830bd1ff2810347f140f43 linux-3.0/arch/m68k/platform/5206/gpio.c -c8a2eee3d53422391628bc0b04e02dd4 linux-3.0/arch/m68k/platform/5206/config.c -81bb3fbdd8dde7b1777688970e99f652 linux-3.0/arch/m68k/platform/5206/Makefile -b6dc07603857784e7134ad59d30117de linux-3.0/arch/m68k/mvme16x/rtc.c -77c1e402cadefc52b5f58d341be31271 linux-3.0/arch/m68k/mvme16x/config.c -1963aba81292717b22cad13de718e4b9 linux-3.0/arch/m68k/mvme16x/Makefile -d5f33f1213aa7bd7375cd2b81ae6d233 linux-3.0/arch/m68k/mvme147/config.c -acb79d659f673b2fa98b16ca94abd8e4 linux-3.0/arch/m68k/mvme147/Makefile -8d2175b4e28ba739849a0cdef1d40b32 linux-3.0/arch/m68k/mm/sun3mmu.c -b845aadc93be8364e8ba496bbef31a06 linux-3.0/arch/m68k/mm/sun3kmap.c -48d6786bb5057436af5e322e12a4008e linux-3.0/arch/m68k/mm/motorola.c -7b6860696d746c77dc549852af61274b linux-3.0/arch/m68k/mm/memory.c -ca4d0a0e02286d232eba772c9db75afd linux-3.0/arch/m68k/mm/kmap.c -c27c8f735300e2247487d11f21da8f42 linux-3.0/arch/m68k/mm/init_no.c -f272c3af7440e5bd31a21a7f68211a7c linux-3.0/arch/m68k/mm/init_mm.c -4318477d6c65d70c4f1ca633ffe8418c linux-3.0/arch/m68k/mm/init.c -32fc9e25ed662d5052fc72fb0c042874 linux-3.0/arch/m68k/mm/hwtest.c -53d2c7ff29f9cf13657a5ed53c5308b9 linux-3.0/arch/m68k/mm/fault.c -a82c8527bd3e6cd15cb62818fc4be415 linux-3.0/arch/m68k/mm/cache.c -8b98631a47d339e110035ce375c48ab1 linux-3.0/arch/m68k/mm/Makefile -6898123356f5cf459679ccaab1a76140 linux-3.0/arch/m68k/math-emu/multi_arith.h -c406bd76040175b35a75cba324aa167b linux-3.0/arch/m68k/math-emu/fp_util.S -76c4965337769b856a822c2c5b03d49f linux-3.0/arch/m68k/math-emu/fp_trig.h -c1bf9d029809916b05cd6bfc170ced18 linux-3.0/arch/m68k/math-emu/fp_trig.c -f0ca079de11eede68dd579ad46a94751 linux-3.0/arch/m68k/math-emu/fp_scan.S -ffc1eee88f0ea654864c0020f790c94b linux-3.0/arch/m68k/math-emu/fp_movem.S -350a9ada81c98fae1eb158f9fb18188c linux-3.0/arch/m68k/math-emu/fp_move.S -63f7ec655c4d9abddc3fedab14f1c329 linux-3.0/arch/m68k/math-emu/fp_log.c -260b62f39871c61dc0a37c52821e1f68 linux-3.0/arch/m68k/math-emu/fp_entry.S -f351108964be032920a86ce6a81e0d90 linux-3.0/arch/m68k/math-emu/fp_emu.h -57355d92a761c12954a686de81327a16 linux-3.0/arch/m68k/math-emu/fp_decode.h -b49d8d99fcff45b1ad3069e8687921d0 linux-3.0/arch/m68k/math-emu/fp_cond.S -3272a3777c06a0f2d03015a24eda7dbb linux-3.0/arch/m68k/math-emu/fp_arith.h -2061bf8c095b50d9f8b4c73e11d59ac8 linux-3.0/arch/m68k/math-emu/fp_arith.c -5a200b85d33aed60541d973cd197a307 linux-3.0/arch/m68k/math-emu/Makefile -5cc4d087543c6426fdb88cba05d7d1ff linux-3.0/arch/m68k/mac/via.c -49ca883dde160187bfa3573f128efed5 linux-3.0/arch/m68k/mac/psc.c -1ba6898c3dd88fe615e2e1cefbeac975 linux-3.0/arch/m68k/mac/oss.c -0262df0381909d04dffe2f91537a8679 linux-3.0/arch/m68k/mac/misc.c -f3b2efe73b96bb920ad99a6653be43ad linux-3.0/arch/m68k/mac/macints.c -a4f3f1aa0ee6ac3a6b19b760a3861988 linux-3.0/arch/m68k/mac/macboing.c -6d8c40b953023d911f8f0a9a6ae26767 linux-3.0/arch/m68k/mac/mac_penguin.S -ca665be7f3c7516e933c744cb13f0c54 linux-3.0/arch/m68k/mac/iop.c -993e4e1d3cf2a205e23c50ca04a53e77 linux-3.0/arch/m68k/mac/config.c -145323fed4d20a6833aae9f02d7296a2 linux-3.0/arch/m68k/mac/baboon.c -ed60413e0b7c895e6f48f291c9fa55ce linux-3.0/arch/m68k/mac/Makefile -8efc62083192f66c97941a96708c7cef linux-3.0/arch/m68k/lib/umodsi3.S -0e06d0db1c1c601be6e307b2a9a5e11d linux-3.0/arch/m68k/lib/udivsi3.S -8a9ff8edcaff9431cf6cdfd8c4c8db21 linux-3.0/arch/m68k/lib/uaccess.c -8592f683d13963e2650776deecb60fba linux-3.0/arch/m68k/lib/string.c -493686ae5aff7db264723ea3ac09f8f8 linux-3.0/arch/m68k/lib/mulsi3.S -f0e621ab76ec12fd11e5f6c1a90b173e linux-3.0/arch/m68k/lib/muldi3.c -b6644c1d43ccc46148b1aa3ef025e679 linux-3.0/arch/m68k/lib/modsi3.S -542c1487ef98e6a5718a65d4ade4c6e8 linux-3.0/arch/m68k/lib/memset.c -7c35b11f74b8232f5d2cea68ed6b2936 linux-3.0/arch/m68k/lib/memmove.c -1e148a8f73b96ced6cbd22be4826c8cf linux-3.0/arch/m68k/lib/memcpy.c -9458349c813540b3cca52d10122c93a2 linux-3.0/arch/m68k/lib/lshrdi3.c -94405aa9d34d14e837c8535a12481c14 linux-3.0/arch/m68k/lib/divsi3.S -8675f64021b0a7bd4effa6d544280dd0 linux-3.0/arch/m68k/lib/delay.c -c50174bf28576fe446adf210abae11fe linux-3.0/arch/m68k/lib/checksum_no.c -eab83fd991b9f9fa75208c793afe31c3 linux-3.0/arch/m68k/lib/checksum_mm.c -83a40ec4e0d688e08e3ed2c9bbb88228 linux-3.0/arch/m68k/lib/ashrdi3.c -07809220860c1c1c43ac998d6ff4e0ad linux-3.0/arch/m68k/lib/ashldi3.c -3d32824caa3e6fda7286e262d4ec5012 linux-3.0/arch/m68k/lib/Makefile -83e46999e722cf0234fcb85290688569 linux-3.0/arch/m68k/kernel/vmlinux.lds_no.S -795152cc8150a36406fcb03ad431dfcd linux-3.0/arch/m68k/kernel/vmlinux.lds_mm.S -97899f7eeffd58c817608962d7126312 linux-3.0/arch/m68k/kernel/vmlinux.lds.S -78e54246b655e32747679ad2739edbae linux-3.0/arch/m68k/kernel/vmlinux-sun3.lds -a028a63c1c158dbaa72af9226a34641c linux-3.0/arch/m68k/kernel/vmlinux-std.lds -030140768aeb1798ce8c8ccadd106df2 linux-3.0/arch/m68k/kernel/traps_no.c -8d06d101225a74730e4fb5b15ab65ff5 linux-3.0/arch/m68k/kernel/traps_mm.c -fa86a6040e2a73bc101bb2e4db8dfb27 linux-3.0/arch/m68k/kernel/traps.c -2fac8cba2892289403e3fe80f35a2634 linux-3.0/arch/m68k/kernel/time_no.c -3c797c29ebd7b1a0842cfe29805a2e33 linux-3.0/arch/m68k/kernel/time_mm.c -94fd851f5c07d9184b6cb9a9f985b01f linux-3.0/arch/m68k/kernel/time.c -2aea9e7408dd1237abae74849002acb9 linux-3.0/arch/m68k/kernel/syscalltable.S -03d99d79d9deda3b40dcbaef027fbde0 linux-3.0/arch/m68k/kernel/sys_m68k.c -23399dfda2a030f7b2da21e0dc2df137 linux-3.0/arch/m68k/kernel/sun3-head.S -fee1243ff0a807303e92b038b1a2c805 linux-3.0/arch/m68k/kernel/signal_no.c -c4dd2921a8bb3a3d9d11f98f8e506917 linux-3.0/arch/m68k/kernel/signal_mm.c -550a1aeaec185480529dca42eb9df308 linux-3.0/arch/m68k/kernel/signal.c -9f7dd085858761dd428c7dbe9807c44a linux-3.0/arch/m68k/kernel/setup_no.c -6dcac01240a6b3c7d18cbe54b785dc19 linux-3.0/arch/m68k/kernel/setup_mm.c -830ab436f8662461e092ae2aac25fe2f linux-3.0/arch/m68k/kernel/setup.c -ce051c26a88cabba2b577f7c93fd383c linux-3.0/arch/m68k/kernel/ptrace_no.c -665d936e9d70354235a6de4b52bc7c03 linux-3.0/arch/m68k/kernel/ptrace_mm.c -f254fde1104985488c8e1a9a7fe75411 linux-3.0/arch/m68k/kernel/ptrace.c -43c0dbbf05552319e7f3accb05bcf591 linux-3.0/arch/m68k/kernel/process_no.c -9b81b315add00a47ac2d37be0f98bc47 linux-3.0/arch/m68k/kernel/process_mm.c -3173fbaf4ea536d94b9f93d844773b47 linux-3.0/arch/m68k/kernel/process.c -d440bf510f22d4bd10f76fed5e01a6a3 linux-3.0/arch/m68k/kernel/module_no.c -7ee5ccf9a9df4a46a96a05674fc801aa linux-3.0/arch/m68k/kernel/module_mm.c -770fc72da34041598dcbac1f0dfd87cb linux-3.0/arch/m68k/kernel/module.lds -2b8449e1c26dbd17f14f530ba0dcc012 linux-3.0/arch/m68k/kernel/module.c -3310f4248cee012d02368791e69e5263 linux-3.0/arch/m68k/kernel/m68k_ksyms.c -779e6367adad1f8d69c8e39b58b85df5 linux-3.0/arch/m68k/kernel/irq.c -58a9d23d127fddf046554d623ac1bcdb linux-3.0/arch/m68k/kernel/ints.c -93c13cd9d58ca7aa1daf09a893679036 linux-3.0/arch/m68k/kernel/init_task.c -80c8f07620d2d38e28e713552f88d542 linux-3.0/arch/m68k/kernel/head.S -be2c88f81382f2e2bf12fce13394684f linux-3.0/arch/m68k/kernel/entry_no.S -a054df850c1b62acb90f50ef0ae687eb linux-3.0/arch/m68k/kernel/entry_mm.S -d02c365e07a7d25a36f2f376a480492a linux-3.0/arch/m68k/kernel/entry.S -bd3f2e51e5174e306e5959bbee31a446 linux-3.0/arch/m68k/kernel/dma_no.c -511dcec9530b44830cc653d72a438af6 linux-3.0/arch/m68k/kernel/dma_mm.c -7db5a7ec7fcee08d5efcfd8043fe48a3 linux-3.0/arch/m68k/kernel/dma.c -09c6de13a5be4282264a9d01eaf76e17 linux-3.0/arch/m68k/kernel/asm-offsets.c -829d600dcff7c1cbc4f54880059b876a linux-3.0/arch/m68k/kernel/Makefile_no -cf4ecaeefa7f7921418fd22910993d56 linux-3.0/arch/m68k/kernel/Makefile_mm -60968357c97d292c13ef45e1c4f9be7f linux-3.0/arch/m68k/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/m68k/kernel/.gitignore -bba4e5059a32c56d83f23b53e736a44e linux-3.0/arch/m68k/install.sh -7334a3216975629fbc051ce1c5154689 linux-3.0/arch/m68k/include/asm/zorro.h -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/m68k/include/asm/xor.h -2b1e494563600c06e5f6354550fed11f linux-3.0/arch/m68k/include/asm/virtconvert.h -6eb0d5f9101215f83e36e935023caadc linux-3.0/arch/m68k/include/asm/user.h -34e74f110c94838bf5f0c6f7a0f35bcb linux-3.0/arch/m68k/include/asm/unistd.h -e793d1521a1e4b16310f0c74e3afe7d2 linux-3.0/arch/m68k/include/asm/unaligned.h -ef10c285315ff6d6f0a1e1fe53c3a76e linux-3.0/arch/m68k/include/asm/ucontext.h -723f7f20e2631afc2a1b31de022920a2 linux-3.0/arch/m68k/include/asm/uaccess_no.h -ab7fb6e0d13697c2bdd5a47cdf1f32c2 linux-3.0/arch/m68k/include/asm/uaccess_mm.h -9e7ab09f8658b30dd546228536166975 linux-3.0/arch/m68k/include/asm/uaccess.h -503b2a64019889543ecfcd7cb1d395a4 linux-3.0/arch/m68k/include/asm/types.h -22ac8e04a33d91b8bf602736cc2c4cee linux-3.0/arch/m68k/include/asm/traps.h -a3ced9987983ac1da7527b007cff3150 linux-3.0/arch/m68k/include/asm/topology.h -52fdaffafe985fd5ae58bc535f8c281e linux-3.0/arch/m68k/include/asm/tlbflush.h -548e92e21d9cade0c7d2569fc3d9866b linux-3.0/arch/m68k/include/asm/tlb.h -0a8314b71cbaa5bf35c312f9180bb169 linux-3.0/arch/m68k/include/asm/timex.h -0efb60e427df7c533dc8ebc4d314a15d linux-3.0/arch/m68k/include/asm/thread_info.h -19dc58dd11854416f4aada5315dae3d1 linux-3.0/arch/m68k/include/asm/termios.h -e8e008f0a3bf2c0c0e68069c5bf3d741 linux-3.0/arch/m68k/include/asm/termbits.h -8043ee056f995e9d2a28611ece2b54ec linux-3.0/arch/m68k/include/asm/system_no.h -409d5d9ed47dfaf43aace225fd448b70 linux-3.0/arch/m68k/include/asm/system_mm.h -77e107bd4729453943a2959ac6c711fd linux-3.0/arch/m68k/include/asm/system.h -6fde1d3aadfab4e46e25765aba75af49 linux-3.0/arch/m68k/include/asm/swab.h -e082f77b35ec86aaeceeaf778fd60853 linux-3.0/arch/m68k/include/asm/sun3xprom.h -a43a53153f72150d683a0ae2613dcc78 linux-3.0/arch/m68k/include/asm/sun3xflop.h -bb5a457c017d412444a5a8c784eecb38 linux-3.0/arch/m68k/include/asm/sun3x.h -06d99bdfe002f2e3a5c9166c1da44852 linux-3.0/arch/m68k/include/asm/sun3mmu.h -558319d4c39e562076f43dc66de5f5ff linux-3.0/arch/m68k/include/asm/sun3ints.h -9e2872bcb589e0317f9b8b873273d0db linux-3.0/arch/m68k/include/asm/sun3_pgtable.h -3a691dee8055793c69e39a1dfffee475 linux-3.0/arch/m68k/include/asm/sun3_pgalloc.h -0cfb31013f920439015c971f856279b8 linux-3.0/arch/m68k/include/asm/sun3-head.h -5ac94a245e7530cbee4c57df6bd14660 linux-3.0/arch/m68k/include/asm/string.h -8233dde36570d276be16b3b68fcecb48 linux-3.0/arch/m68k/include/asm/statfs.h -c50074bae584caa3a6a10b721629bba4 linux-3.0/arch/m68k/include/asm/stat.h -3e7d29cbf1ce0ce93249b1f978bba028 linux-3.0/arch/m68k/include/asm/spinlock.h -96ef940f31790e27462cd1dfb4bce782 linux-3.0/arch/m68k/include/asm/sockios.h -0f89b678a7ca5cd4656f7388990f168b linux-3.0/arch/m68k/include/asm/socket.h -35974b54ca0d7d251c9a2256498e7989 linux-3.0/arch/m68k/include/asm/smp.h -97eb881361fc120a138e578aeba73998 linux-3.0/arch/m68k/include/asm/signal.h -50b01f8cff5ef755e88950e9283d0342 linux-3.0/arch/m68k/include/asm/siginfo.h -645bfff5da2576cf08ec67d7cfe327c0 linux-3.0/arch/m68k/include/asm/sigcontext.h -ade110f5bd6f8739025349ffbb39c269 linux-3.0/arch/m68k/include/asm/shmparam.h -b544369fa542ae9d5dc61bd6520568f9 linux-3.0/arch/m68k/include/asm/shmbuf.h -94199f83d481a75fc02037f2bbad2d25 linux-3.0/arch/m68k/include/asm/shm.h -ecf193eec5edd383539e1e49febe40d0 linux-3.0/arch/m68k/include/asm/setup.h -ac7b5f0ac5e526dbb66c88b849c9262f linux-3.0/arch/m68k/include/asm/serial.h -36a8f5c19421aca17a0e221d19682328 linux-3.0/arch/m68k/include/asm/sembuf.h -bb92b79805936022ff0b6ef29688460b linux-3.0/arch/m68k/include/asm/segment.h -4525a377fce9d22a2573cd08049b6aa2 linux-3.0/arch/m68k/include/asm/sections.h -bfa32fc722fe485fde3fd4e39d35a956 linux-3.0/arch/m68k/include/asm/scatterlist.h -7088c5cc5067442e5c71aa930c992d90 linux-3.0/arch/m68k/include/asm/sbus.h -0f2893e7a8ed671c7ceb4ed0edd67d4b linux-3.0/arch/m68k/include/asm/rtc.h -0ef85298bfd6c9af9f5de5a02bea2024 linux-3.0/arch/m68k/include/asm/resource.h -09fb7d819a25664fb969aa73534f6a08 linux-3.0/arch/m68k/include/asm/raw_io.h -941f917f981929d235bc66810e4be802 linux-3.0/arch/m68k/include/asm/quicc_simple.h -7b4696aab8727a96635e62102fa4be94 linux-3.0/arch/m68k/include/asm/q40ints.h -e8b37dc05bd442efd382144264c1e0a6 linux-3.0/arch/m68k/include/asm/q40_master.h -efbea89833e0931a4b36148205d5cb7d linux-3.0/arch/m68k/include/asm/ptrace.h -3fd3aa87d945a30dcd0f4b5ee88e1fcd linux-3.0/arch/m68k/include/asm/processor.h -8935a5a8411c8f4113fe44c32c9d6dfc linux-3.0/arch/m68k/include/asm/posix_types.h -1b5b87d04e48fc2de0ad65d1ed2c19b1 linux-3.0/arch/m68k/include/asm/poll.h -461906beef24126341b1c8c03d97d510 linux-3.0/arch/m68k/include/asm/pinmux.h -01276b9125a413311fdb8d66bf5f4980 linux-3.0/arch/m68k/include/asm/pgtable_no.h -1abe67dd72994ccf84ebf4bb9d51dfa0 linux-3.0/arch/m68k/include/asm/pgtable_mm.h -78a44549ddc0cf87d82242c65dc9c102 linux-3.0/arch/m68k/include/asm/pgtable.h -7ac7082dbb7fa81cf3d2901ab1650e0b linux-3.0/arch/m68k/include/asm/pgalloc.h -755bee014e351986d67dc291c7328ca2 linux-3.0/arch/m68k/include/asm/percpu.h -3318aea35771bb9f4fd5f6b653eec2bb linux-3.0/arch/m68k/include/asm/pci.h -adaf46f22067ebd26c3c3ddea5092aa0 linux-3.0/arch/m68k/include/asm/parport.h -8df98740c39b1cbcc38733378c45bf8d linux-3.0/arch/m68k/include/asm/param.h -c59fc6318cc228e63767ea47cd2a179f linux-3.0/arch/m68k/include/asm/page_offset.h -554de84501c780d7eaf73eec53898bea linux-3.0/arch/m68k/include/asm/page_no.h -fe1899b35c511324105068b564517c90 linux-3.0/arch/m68k/include/asm/page_mm.h -cd0532c429432f6eb3f912c258cf598a linux-3.0/arch/m68k/include/asm/page.h -3b8985a1812dde2bc2b811e8be67b976 linux-3.0/arch/m68k/include/asm/oplib.h -ae9cd1ee33c33586d8a0d8de6aefcc8b linux-3.0/arch/m68k/include/asm/openprom.h -cf25806d7cd31ad6a0d5be4279952e4f linux-3.0/arch/m68k/include/asm/nubus.h -029d88119b1a688027b97223f40d832a linux-3.0/arch/m68k/include/asm/nettel.h -620bf7998efaf12e2d843bceece9e80f linux-3.0/arch/m68k/include/asm/natfeat.h -e3d9e30d8f0204eee123f5dac828aa45 linux-3.0/arch/m68k/include/asm/mvme16xhw.h -b0b83fca9581a89d2de4efb35ab852ad linux-3.0/arch/m68k/include/asm/mvme147hw.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/m68k/include/asm/mutex.h -1790eacb566fee6c9fb712cfaa19a0c6 linux-3.0/arch/m68k/include/asm/msgbuf.h -8109459eed97fbdb36bb1dc2a85d2e8a linux-3.0/arch/m68k/include/asm/movs.h -0fc5253c180e9b1ef0be8d54ec4f39c3 linux-3.0/arch/m68k/include/asm/motorola_pgtable.h -a3c63cee05c6bc623e760b0a7e879378 linux-3.0/arch/m68k/include/asm/motorola_pgalloc.h -ffc7dda69a50a81717417fba13bea8a5 linux-3.0/arch/m68k/include/asm/module.h -67c6b151bf72713555f73b8c4592c5ca linux-3.0/arch/m68k/include/asm/mmzone.h -77b0a207e6b8c16a5b72a6a37e9810b9 linux-3.0/arch/m68k/include/asm/mmu_context.h -2dddada2f05810fb8aad7215403747d6 linux-3.0/arch/m68k/include/asm/mmu.h -c10dfdbe274b25756fe8f9900e428096 linux-3.0/arch/m68k/include/asm/mman.h -7145da0068f800422fa34e4aadd684d0 linux-3.0/arch/m68k/include/asm/mcfwdebug.h -c65235b801f716ade56cffd15dde8658 linux-3.0/arch/m68k/include/asm/mcfuart.h -cc14007c1de7993e911cf80b9ae16971 linux-3.0/arch/m68k/include/asm/mcftimer.h -24957afee4dfb2535b28aa7778cf86d0 linux-3.0/arch/m68k/include/asm/mcfslt.h -3663c70002af1d327cb9eed4f89ef01e linux-3.0/arch/m68k/include/asm/mcfsim.h -da746283663070513271a539fdb2b2c5 linux-3.0/arch/m68k/include/asm/mcfqspi.h -e65f22a64a7a06675adaf21a8852839b linux-3.0/arch/m68k/include/asm/mcfpit.h -c2c2bd0d96abdeedd6275d20c4c602e1 linux-3.0/arch/m68k/include/asm/mcfne.h -dda25c9a11b0e7ddabf2ca4132e0c3d5 linux-3.0/arch/m68k/include/asm/mcfmbus.h -7397382c1639319dac64f194fb9a3977 linux-3.0/arch/m68k/include/asm/mcfintc.h -836656b9f9ca110272c675c68eb910dd linux-3.0/arch/m68k/include/asm/mcfgpio.h -f1c68a9cfdd28917f835f3243345efdf linux-3.0/arch/m68k/include/asm/mcfdma.h -13b8f15e446b0d48cd2ae3b1b5dc238e linux-3.0/arch/m68k/include/asm/mc146818rtc.h -16dbc1e49b37082befaa8d74d6b6fef6 linux-3.0/arch/m68k/include/asm/math-emu.h -09d99489cdf816f2b483a3c24f682119 linux-3.0/arch/m68k/include/asm/macints.h -1532625ff5a224b0710d05c51b3912f9 linux-3.0/arch/m68k/include/asm/macintosh.h -1584cbc68d421d9decb6849cabb63cea linux-3.0/arch/m68k/include/asm/machw.h -7f928a99829930ba4cd0fbbe8520efe4 linux-3.0/arch/m68k/include/asm/machines.h -47b52462e0720474e41ab4c6ba3b3500 linux-3.0/arch/m68k/include/asm/machdep.h -5a2910094f63b915c01dbed7bdab1cc0 linux-3.0/arch/m68k/include/asm/mac_via.h -9e4b99a8b94d452a24205e42a3e37753 linux-3.0/arch/m68k/include/asm/mac_psc.h -3a75f34189bab87e584759406204bdf8 linux-3.0/arch/m68k/include/asm/mac_oss.h -c747b0093b2235d35dec220e63e4629a linux-3.0/arch/m68k/include/asm/mac_mouse.h -9c8fb379b757e5baa945076a619eb7dc linux-3.0/arch/m68k/include/asm/mac_iop.h -aaeff725e2605fd127fb07239503defe linux-3.0/arch/m68k/include/asm/mac_baboon.h -fe0ac3150dbef4e3b84e6f29846d72a2 linux-3.0/arch/m68k/include/asm/mac_asc.h -b82385b2348f3d766c24497ce985253b linux-3.0/arch/m68k/include/asm/m68360_regs.h -dd9b15d99cb8a8b6b2be150f3f00abf0 linux-3.0/arch/m68k/include/asm/m68360_quicc.h -d409b1c552d402e7393d4b12df2ce8f2 linux-3.0/arch/m68k/include/asm/m68360_pram.h -d694c2a8938b3fddd828f87bce6d2ee2 linux-3.0/arch/m68k/include/asm/m68360_enet.h -745160e08e36110889c8818474d9b3f0 linux-3.0/arch/m68k/include/asm/m68360.h -3d9f4c78467964fe22ffaa294ab030d6 linux-3.0/arch/m68k/include/asm/m54xxsim.h -a886d6fd580520f1698504bb40eaca67 linux-3.0/arch/m68k/include/asm/m54xxgpt.h -c8169daf92d5bca7f8940d2b31670fe9 linux-3.0/arch/m68k/include/asm/m54xxacr.h -8454be873f3ae53d48097a75b2c044a0 linux-3.0/arch/m68k/include/asm/m5407sim.h -0e3540b26c8530bdae09471b076c9811 linux-3.0/arch/m68k/include/asm/m53xxacr.h -8013c22bd455939db1a0bd714c0eb3bc linux-3.0/arch/m68k/include/asm/m532xsim.h -242fabafafa1adf5cf0aa89d3457cd29 linux-3.0/arch/m68k/include/asm/m5307sim.h -1f364bb6073955e3e457fc9d673cf6d2 linux-3.0/arch/m68k/include/asm/m52xxacr.h -698b6f9070afec255c57d4638d4d8f9a linux-3.0/arch/m68k/include/asm/m528xsim.h -64761df204642802c3ad404c1da1be35 linux-3.0/arch/m68k/include/asm/m527xsim.h -39b62ba37de8d5301914a8d575ebb6fb linux-3.0/arch/m68k/include/asm/m5272sim.h -08a043bd93b3717b2b8ea8b82988ad46 linux-3.0/arch/m68k/include/asm/m5249sim.h -e3d428de531233a71c77f8a44ad00289 linux-3.0/arch/m68k/include/asm/m523xsim.h -76baa870f0db30a4ac09637614203181 linux-3.0/arch/m68k/include/asm/m520xsim.h -fa9629e1cffa51e815ce308e9cccfa50 linux-3.0/arch/m68k/include/asm/m5206sim.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/m68k/include/asm/local64.h -0b476517623a87d651f739e43529d1df linux-3.0/arch/m68k/include/asm/local.h -5df63e47f7d8f1188a88796cd99c690f linux-3.0/arch/m68k/include/asm/linkage.h -3200b0815be270cb308bb4a75d1ca1c2 linux-3.0/arch/m68k/include/asm/kmap_types.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/m68k/include/asm/kdebug.h -87148f1e8f949fcbb0fa5c3e4702d500 linux-3.0/arch/m68k/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/m68k/include/asm/irq_regs.h -5489df5f92a0d035495768fb4df68924 linux-3.0/arch/m68k/include/asm/irq.h -07e6120618a185c82ffc02a186ff0efc linux-3.0/arch/m68k/include/asm/ipcbuf.h -c51a911af97f6073277cefd930b7e0ee linux-3.0/arch/m68k/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/m68k/include/asm/ioctl.h -4d0a1620dc9397c736b345d34735273e linux-3.0/arch/m68k/include/asm/io_no.h -da8353545149bc003e6b432b91717f91 linux-3.0/arch/m68k/include/asm/io_mm.h -21cfc3dc95594325a79de12226180ccb linux-3.0/arch/m68k/include/asm/io.h -b1a0e46ae791d6e641054cecfea62c38 linux-3.0/arch/m68k/include/asm/intersil.h -3c654d003cfaaeecde6ddfd17a98557e linux-3.0/arch/m68k/include/asm/idprom.h -8bc9950af10f6615b2f44f29adf1bf34 linux-3.0/arch/m68k/include/asm/ide.h -ebac1df8ffe09b352d0efba71a14cdc1 linux-3.0/arch/m68k/include/asm/hwtest.h -4c60808d88eaf459d4af7416c5575d6e linux-3.0/arch/m68k/include/asm/hw_irq.h -ffd435025222ce377695d372df8efd69 linux-3.0/arch/m68k/include/asm/hp300hw.h -2d89f343fc3914ff81c19aec93c47290 linux-3.0/arch/m68k/include/asm/hardirq_no.h -294addd5c1712a133775ce4b4a2bfbe7 linux-3.0/arch/m68k/include/asm/hardirq_mm.h -f37efe00c5e3413710b2a39eea31c6a0 linux-3.0/arch/m68k/include/asm/hardirq.h -0b4198f457453faf64514136850b057d linux-3.0/arch/m68k/include/asm/gpio.h -228b42e1213f6ee69a59695b054ab093 linux-3.0/arch/m68k/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/m68k/include/asm/ftrace.h -d7bcb45e5e1d98baa80c0532f740d002 linux-3.0/arch/m68k/include/asm/fpu.h -6c9fae80148d32465ab24d2add2eb7d5 linux-3.0/arch/m68k/include/asm/floppy.h -d254767cbabc3581461380e97927ead7 linux-3.0/arch/m68k/include/asm/flat.h -16a76fd3cd51ab94bc778ac66681b720 linux-3.0/arch/m68k/include/asm/fcntl.h -fa1c45304bdcd8f2b7d21f8c73409a43 linux-3.0/arch/m68k/include/asm/fbio.h -d11a4ea324ccc74539c350050d5f8c4c linux-3.0/arch/m68k/include/asm/fb.h -4e5585bdb997c13f98f1b549c2dd9f83 linux-3.0/arch/m68k/include/asm/errno.h -bc24b20cc2ad3bf160df15534aca9296 linux-3.0/arch/m68k/include/asm/entry_no.h -839a8569497b238459bfff15f5e6f6fe linux-3.0/arch/m68k/include/asm/entry_mm.h -1873238d7b12c3b0ea455dad6971ad6a linux-3.0/arch/m68k/include/asm/entry.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/m68k/include/asm/emergency-restart.h -1888541dbc728228f8d9b01558f25f83 linux-3.0/arch/m68k/include/asm/elf.h -d1c681573c6b6b3c4b06bf58e950a1e6 linux-3.0/arch/m68k/include/asm/dvma.h -7086219a55a24aa41a5adab747026d25 linux-3.0/arch/m68k/include/asm/dsp56k.h -5dd0f2098d917c761526af6116d4ccbb linux-3.0/arch/m68k/include/asm/dma.h -715d8dd6c4308809a617e9b47cf87e19 linux-3.0/arch/m68k/include/asm/dma-mapping.h -6314aa5fb587a3e3f78a60711c33a250 linux-3.0/arch/m68k/include/asm/div64.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/m68k/include/asm/device.h -9da15a508dcb00049c8d9f4c5ca382b4 linux-3.0/arch/m68k/include/asm/delay_no.h -27174772ec7069929913eebaf73f0abe linux-3.0/arch/m68k/include/asm/delay_mm.h -011b1818ccb25876dbe6387efa1ab1df linux-3.0/arch/m68k/include/asm/delay.h -08e4977bb73b70cade9348ef45bf8757 linux-3.0/arch/m68k/include/asm/dbg.h -ad6baedece98410088362d9568960122 linux-3.0/arch/m68k/include/asm/current.h -868febe98536016dac838ade333aa1e4 linux-3.0/arch/m68k/include/asm/cputime.h -bc34c0c8a8dd581fe509084d8df5be49 linux-3.0/arch/m68k/include/asm/contregs.h -973ce81117bf0ec45f966ebded5c2a89 linux-3.0/arch/m68k/include/asm/commproc.h -58b3779231271b7e20c8d5d1f7f1471e linux-3.0/arch/m68k/include/asm/coldfire.h -8a1cba7d0d179840cd1b1580271e6a8c linux-3.0/arch/m68k/include/asm/checksum.h -4ceeebee04032b7eeaa6f269ce0d8ad6 linux-3.0/arch/m68k/include/asm/cacheflush_no.h -62081736f489cf568d0898ed4c797662 linux-3.0/arch/m68k/include/asm/cacheflush_mm.h -b59d1283461eb19b4f4aed9747c31f29 linux-3.0/arch/m68k/include/asm/cacheflush.h -6157511c6b20da6bc035efeaf3dff977 linux-3.0/arch/m68k/include/asm/cachectl.h -9971b9a060477d28fe415700f01ea427 linux-3.0/arch/m68k/include/asm/cache.h -81369c58e1846537b0b97cd5a4f0959c linux-3.0/arch/m68k/include/asm/byteorder.h -85b7f4404e73249f4f64d7f5fe00305e linux-3.0/arch/m68k/include/asm/bvme6000hw.h -74d34a7e8c7ca5a8885f7dce4b7c5acb linux-3.0/arch/m68k/include/asm/bugs.h -658839e9b2fa12d902df0ad4a80b804e linux-3.0/arch/m68k/include/asm/bug.h -b92c502e40d7ece402015272bfa299d6 linux-3.0/arch/m68k/include/asm/bootstd.h -cf9cde355e37a23b78ac8c2f1fef53ff linux-3.0/arch/m68k/include/asm/bootinfo.h -e3d0cdfe04644e71babde1c2822229c4 linux-3.0/arch/m68k/include/asm/blinken.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/m68k/include/asm/bitsperlong.h -29a2cf6f2d68bb353d346d756962ca46 linux-3.0/arch/m68k/include/asm/bitops_no.h -afefde39daf5b254d5cdf66fccd8089f linux-3.0/arch/m68k/include/asm/bitops_mm.h -0fa6ea887b88214a6cb74731c813c5cc linux-3.0/arch/m68k/include/asm/bitops.h -a64ba77c30c88f065b63e99190f9face linux-3.0/arch/m68k/include/asm/auxvec.h -877b7a884ad81a5748e3efd74893d9a1 linux-3.0/arch/m68k/include/asm/atomic.h -a645b1aec79f21df73618f825587ac08 linux-3.0/arch/m68k/include/asm/atarikb.h -8c60de6578ef7ac18328e667d5e3125d linux-3.0/arch/m68k/include/asm/atariints.h -f7a835cc7f82fd39a2fcfe9b960204e3 linux-3.0/arch/m68k/include/asm/atarihw.h -eea1953e2dfa1080a3fd5a29b05c24f4 linux-3.0/arch/m68k/include/asm/atari_stram.h -749b96175ed4d8b015fdadb0af7c28fa linux-3.0/arch/m68k/include/asm/atari_stdma.h -124203b3c817452c97d57b4ebc929801 linux-3.0/arch/m68k/include/asm/atari_joystick.h -67b1d23a1ba0e60ebe78a3202addcf39 linux-3.0/arch/m68k/include/asm/atafdreg.h -229889dc761170eccfd6364176f50282 linux-3.0/arch/m68k/include/asm/atafd.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/m68k/include/asm/asm-offsets.h -011d41629375e39e758264682a0826b8 linux-3.0/arch/m68k/include/asm/apollohw.h -d88c5a6321f698919e0fa122e54541f7 linux-3.0/arch/m68k/include/asm/apollodma.h -26ccc8f7312b5dbd26bd20790c76e847 linux-3.0/arch/m68k/include/asm/anchor.h -7cb3fb2f87c30e319d2d36ed3fa3c8e8 linux-3.0/arch/m68k/include/asm/amipcmcia.h -02fd58fd1eaf60d8b6ddc23832762657 linux-3.0/arch/m68k/include/asm/amigayle.h -a6a157ee77b02052e70307ab716a5eb9 linux-3.0/arch/m68k/include/asm/amigaints.h -b1d2c29e326fbfd486fca67f22f8f2b6 linux-3.0/arch/m68k/include/asm/amigahw.h -f6eca481310bdba420be244b5686f97a linux-3.0/arch/m68k/include/asm/adb_iop.h -76c445e17ad9dea8766d97dda0d0df8d linux-3.0/arch/m68k/include/asm/a.out.h -3aac3fc72b8d60320f1eca7263a9b616 linux-3.0/arch/m68k/include/asm/a.out-core.h -f8e1d98973d14c999a56156e222f34c5 linux-3.0/arch/m68k/include/asm/MC68VZ328.h -fe7b22824dd88f2010c3b9203bafd60d linux-3.0/arch/m68k/include/asm/MC68EZ328.h -5fab74a7e7353f2720b2144c7ac6693d linux-3.0/arch/m68k/include/asm/MC68332.h -95f4c5f3f9b397fd3375316fff33c3bf linux-3.0/arch/m68k/include/asm/MC68328.h -6320da4fea3609ad66f11cd878cf0d51 linux-3.0/arch/m68k/include/asm/Kbuild -093d29d73bf53e30e197713a6ad19f72 linux-3.0/arch/m68k/ifpsp060/src/pfpsp.S -0b43dcb000e2caf304de0d68a0b9be91 linux-3.0/arch/m68k/ifpsp060/src/itest.S -7f7169ab96297804364732643f89342e linux-3.0/arch/m68k/ifpsp060/src/isp.S -d4a63816fb110065d29540f0a33c073f linux-3.0/arch/m68k/ifpsp060/src/ilsp.S -796191d194daa459882bd08d3cadb306 linux-3.0/arch/m68k/ifpsp060/src/ftest.S -2541ece52d1cbb0b0b750dfef69205af linux-3.0/arch/m68k/ifpsp060/src/fpsp.S -c8c88f2e1c605f8e83e2ae51cdf83207 linux-3.0/arch/m68k/ifpsp060/src/fplsp.S -51bba0aa660d89249c64710d24978a80 linux-3.0/arch/m68k/ifpsp060/src/README-SRC -fec2e4320cddd750e563a0a6bb7fa7b9 linux-3.0/arch/m68k/ifpsp060/pfpsp.sa -8daf91b7f9341e6e1e18d92bc7bf45b6 linux-3.0/arch/m68k/ifpsp060/os.S -3836b8fe3badbddea56ac7b32615ef3d linux-3.0/arch/m68k/ifpsp060/itest.sa -8085083a75acab4bb39eb08fb3b8c43a linux-3.0/arch/m68k/ifpsp060/isp.sa -5c658f3bb06f64152dc433c035d9b50b linux-3.0/arch/m68k/ifpsp060/isp.doc -6d7f6942ddb24acf528355cd7ba51809 linux-3.0/arch/m68k/ifpsp060/iskeleton.S -3ef4ed635ba7908121392c4540816364 linux-3.0/arch/m68k/ifpsp060/ilsp.sa -81cdd5ca1c87c88c9c92fb7871ee956f linux-3.0/arch/m68k/ifpsp060/ilsp.doc -8c621cd363599209b8cef608b87bc04f linux-3.0/arch/m68k/ifpsp060/ftest.sa -1e019051019ec76a6e3079f40c0626d0 linux-3.0/arch/m68k/ifpsp060/fskeleton.S -9edb4fa52c1f3b4371855159a9fc5c84 linux-3.0/arch/m68k/ifpsp060/fpsp.sa -13987d45fee3f42abf7b3ad7b8b1fdc1 linux-3.0/arch/m68k/ifpsp060/fpsp.doc -db7ed7f94847eaf9d7ec8113ad41714c linux-3.0/arch/m68k/ifpsp060/fplsp.sa -af695a710feb867e6b669fb34a13f4e3 linux-3.0/arch/m68k/ifpsp060/fplsp.doc -a94fa6b95125bb01331afb2afe4e8b83 linux-3.0/arch/m68k/ifpsp060/TEST.DOC -14ca6db7b96525e471342a4f8bd1902f linux-3.0/arch/m68k/ifpsp060/README -e7ce091d2b529494b66adcf650829805 linux-3.0/arch/m68k/ifpsp060/Makefile -4d6804eb313237b275e5e3d91c6011ab linux-3.0/arch/m68k/ifpsp060/MISC -d6f3a5f1cfb8a2369e1209a0852f82f8 linux-3.0/arch/m68k/ifpsp060/CHANGES -e58c413a46ec0192862718a57695b018 linux-3.0/arch/m68k/hp300/time.h -1a8b0af54e4e67eb027238983abea29e linux-3.0/arch/m68k/hp300/time.c -2d415013956622df731acab7504aaade linux-3.0/arch/m68k/hp300/reboot.S -e22e82c63dc8e8e3764cd0a781c2c670 linux-3.0/arch/m68k/hp300/hp300map.map -125226879d8fcf3bc4831794abc67b79 linux-3.0/arch/m68k/hp300/config.c -aa7282bdc55227d68dff203ce405c0e5 linux-3.0/arch/m68k/hp300/README.hp300 -4c841ea8ec98562355249ad6a3f53fc9 linux-3.0/arch/m68k/hp300/Makefile -7237af7469b2bbf47cadca7d05563a6a linux-3.0/arch/m68k/fpsp040/x_unsupp.S -50f6b61ebab10e789aa1b404376b28e4 linux-3.0/arch/m68k/fpsp040/x_unimp.S -c6830cc04dbe173e2dc35fac3a92fae9 linux-3.0/arch/m68k/fpsp040/x_unfl.S -b0bd88a0b5737c1203fcec1c30c48228 linux-3.0/arch/m68k/fpsp040/x_store.S -d60c40c384d3d9859bcda7c2d3f0e006 linux-3.0/arch/m68k/fpsp040/x_snan.S -bfead7c3818a05fcfbc337fee9476c51 linux-3.0/arch/m68k/fpsp040/x_ovfl.S -d57b554d0ea1e1ea67e8dd3ee5f7d6b1 linux-3.0/arch/m68k/fpsp040/x_operr.S -1cc80a8a379596160a310d4a4b848ef9 linux-3.0/arch/m68k/fpsp040/x_fline.S -3e559db10f64677ade856064e396342b linux-3.0/arch/m68k/fpsp040/x_bsun.S -cef8ae80c816b327b5dbf47c7ba949e1 linux-3.0/arch/m68k/fpsp040/util.S -e334b74c93460cd2d1118b9b813ec2b3 linux-3.0/arch/m68k/fpsp040/tbldo.S -c1ded91d1facbb8afd256962dbab6474 linux-3.0/arch/m68k/fpsp040/stwotox.S -0433001ff529cc5ba89aaaf0a8658f2a linux-3.0/arch/m68k/fpsp040/sto_res.S -7640551632f35206ede2e142abceb4ef linux-3.0/arch/m68k/fpsp040/stanh.S -cfb7a0baae9eceed0fc95717dfb7992e linux-3.0/arch/m68k/fpsp040/stan.S -768ca7bf91a83156a327d02472fc0e31 linux-3.0/arch/m68k/fpsp040/ssinh.S -1f33b9e415ed37b3b515e45f944526a2 linux-3.0/arch/m68k/fpsp040/ssin.S -38fd8215fe801292d5d259561945429b linux-3.0/arch/m68k/fpsp040/srem_mod.S -05f85815b0597aa44a1c13f4856c5640 linux-3.0/arch/m68k/fpsp040/smovecr.S -ec253cdc069ba0c7bff92c8141674640 linux-3.0/arch/m68k/fpsp040/slogn.S -914f25e86a72b121645be02b91fc0ee4 linux-3.0/arch/m68k/fpsp040/slog2.S -7d7da77af1704ee72fbb23fb105a7c0b linux-3.0/arch/m68k/fpsp040/skeleton.S -f35f3e1ee468a37ea20e3b0b4647e86f linux-3.0/arch/m68k/fpsp040/sint.S -6477efb45f94c24c7a54ed42c02f5bc3 linux-3.0/arch/m68k/fpsp040/sgetem.S -cc858a20040975202a475d67575ef843 linux-3.0/arch/m68k/fpsp040/setox.S -39804ad73f7110617ebe22d252638495 linux-3.0/arch/m68k/fpsp040/scosh.S -9b18e1dc52a049024d7bc693d7bd03cb linux-3.0/arch/m68k/fpsp040/scale.S -156521b0e4ddbb37aa8d5e6a7897bc20 linux-3.0/arch/m68k/fpsp040/satanh.S -0121a16139bc805441be6b05086c78dd linux-3.0/arch/m68k/fpsp040/satan.S -93a09642a9c6075926ab78fd07ee3c17 linux-3.0/arch/m68k/fpsp040/sasin.S -9e6e3e5947ef1218f0bd065c39815a2d linux-3.0/arch/m68k/fpsp040/sacos.S -7da4c801ba803bd71cb6f58aa6d23f9e linux-3.0/arch/m68k/fpsp040/round.S -8f26ed07756beff64862aec3c994aab5 linux-3.0/arch/m68k/fpsp040/res_func.S -020803412ac102f0b0fd0562970a63a5 linux-3.0/arch/m68k/fpsp040/kernel_ex.S -a8daa897400e25b8db6cf5fa4a1f2e63 linux-3.0/arch/m68k/fpsp040/get_op.S -b650f415977202d36ade695d90355634 linux-3.0/arch/m68k/fpsp040/gen_except.S -7c75daa92c37c00d50beba4a528b56ac linux-3.0/arch/m68k/fpsp040/fpsp.h -ccd611601da0a589cf8cc40c4cf31f39 linux-3.0/arch/m68k/fpsp040/do_func.S -af4a0fc26d9bae90c9429f1aacaa4fd5 linux-3.0/arch/m68k/fpsp040/decbin.S -7660d23685958cf0785577f45ca390be linux-3.0/arch/m68k/fpsp040/bugfix.S -0fc76d23e71f5fb9b80f662b60498ba4 linux-3.0/arch/m68k/fpsp040/binstr.S -9915d31286cc5a8bb2e5912bfdc50d53 linux-3.0/arch/m68k/fpsp040/bindec.S -66b192af92b2d3d87814acc0f397b4e6 linux-3.0/arch/m68k/fpsp040/README -f1ef23bf25357657271b87d63aafe9fa linux-3.0/arch/m68k/fpsp040/Makefile -857d718c9f59f129f9317fc40292db30 linux-3.0/arch/m68k/emu/nfeth.c -f6315e618eaa0b594521a6deac236113 linux-3.0/arch/m68k/emu/nfcon.c -14a096266d6f3992e609985a1d1c3e65 linux-3.0/arch/m68k/emu/nfblock.c -2c14a556c4dcd5b53410bf88371fdada linux-3.0/arch/m68k/emu/natfeat.c -a9e0a2ec3203ea33759a23619bd2a05a linux-3.0/arch/m68k/emu/Makefile -3888ddad91036b14f9f50825346cd0e1 linux-3.0/arch/m68k/configs/sun3x_defconfig -cfcd8b1fe986099d3b0529bfd30f002c linux-3.0/arch/m68k/configs/sun3_defconfig -ed5a7e3e55295b7d3b6c158c8f172282 linux-3.0/arch/m68k/configs/q40_defconfig -6b9ec45608cceba01088cde5d7a414e7 linux-3.0/arch/m68k/configs/mvme16x_defconfig -9a3fea33f94da1168ec9f391728682ac linux-3.0/arch/m68k/configs/mvme147_defconfig -87206fc89889f5f642081ed6d86da6a5 linux-3.0/arch/m68k/configs/multi_defconfig -58b42c929b24096f7c42f61678219327 linux-3.0/arch/m68k/configs/mac_defconfig -a7922bcd6d37f57658a4e6d5ae284891 linux-3.0/arch/m68k/configs/m5407c3_defconfig -12691d6c8a899bbf3518e3fc7079691d linux-3.0/arch/m68k/configs/m5307c3_defconfig -609c7be0cb216baae490e73ea759f372 linux-3.0/arch/m68k/configs/m5275evb_defconfig -ea88db6e5575b65ce437ec4a4518ce3e linux-3.0/arch/m68k/configs/m5272c3_defconfig -7b618426300ee9f228a67bc86820d32b linux-3.0/arch/m68k/configs/m5249evb_defconfig -3e5bf2974e62551be0a89d142e33d5be linux-3.0/arch/m68k/configs/m5208evb_defconfig -3b565fd2f3d78746dcdeaba162401f35 linux-3.0/arch/m68k/configs/hp300_defconfig -ee1163cb3432deead94dec8196394fab linux-3.0/arch/m68k/configs/bvme6000_defconfig -1b0ccb2a0104d0934eecec6984729b84 linux-3.0/arch/m68k/configs/atari_defconfig -af7e4b874ad374f392c844e7c43bd610 linux-3.0/arch/m68k/configs/apollo_defconfig -6e2d7c6240eed4d324830bc4f943f80d linux-3.0/arch/m68k/configs/amiga_defconfig -1925968d149c800e635c7bc66b081c26 linux-3.0/arch/m68k/bvme6000/rtc.c -20e7828e6702bbeaff2603c4f8f9061d linux-3.0/arch/m68k/bvme6000/config.c -b47b155722d72ff4f1f164c2e2d116d7 linux-3.0/arch/m68k/bvme6000/Makefile -670f974433b98e848c44dce057a6c353 linux-3.0/arch/m68k/atari/time.c -71765d5daadca613f1cb5fa2e3ac6d93 linux-3.0/arch/m68k/atari/stram.c -0de21a7ffa5496471771f9e8726d25bf linux-3.0/arch/m68k/atari/stdma.c -daf37018e55a1433f7e6a1c5b06f19d2 linux-3.0/arch/m68k/atari/debug.c -5d396827de7edf6a7d7b5918c8b10acc linux-3.0/arch/m68k/atari/config.c -a21ec7d5715c39cdd48c5d7f316fc23f linux-3.0/arch/m68k/atari/atasound.c -5f568d84ca80305159e87d6b8267fa87 linux-3.0/arch/m68k/atari/atakeyb.c -8fb1ee29900358ed3df67d875a8a7670 linux-3.0/arch/m68k/atari/ataints.c -e544eeb0ef14c17774208160f35e654c linux-3.0/arch/m68k/atari/Makefile -a653e659045e4190b1afb3879755ca62 linux-3.0/arch/m68k/apollo/dn_ints.c -6127c1eb2d5b43999aa21313c989eb54 linux-3.0/arch/m68k/apollo/config.c -95ebb7eee5dc9cbec5e5629f376e0814 linux-3.0/arch/m68k/apollo/Makefile -b4d4dfad70ebd772c87b64dce7d149b7 linux-3.0/arch/m68k/amiga/platform.c -d1e5215eb31c46e93bca65b6f4045bba linux-3.0/arch/m68k/amiga/pcmcia.c -bc3962021f38d9b13c9c5b815b688945 linux-3.0/arch/m68k/amiga/config.c -1432d64ed121304f86cb495449961615 linux-3.0/arch/m68k/amiga/cia.c -38b498aba27297bd0368ed240c0022bd linux-3.0/arch/m68k/amiga/chipram.c -4fd756e290f763a8378b0c5f59516f83 linux-3.0/arch/m68k/amiga/amisound.c -3dc96535581fe6a476f2d8f147af9925 linux-3.0/arch/m68k/amiga/amiints.c -8f4906b6b5631554878133e2d623e41a linux-3.0/arch/m68k/amiga/Makefile -e03b9cb04a8030183345667079064745 linux-3.0/arch/m68k/Makefile_no -c6dc9172461fb5be1be02fea9d92fa1d linux-3.0/arch/m68k/Makefile_mm -dfb391c7f25f3a7e1842f03509007873 linux-3.0/arch/m68k/Makefile -5de37246e6dff9f9097f25fcfce63416 linux-3.0/arch/m68k/Kconfig.nommu -e4d667858f7c7cea9e06a3cd82b869bb linux-3.0/arch/m68k/Kconfig.mmu -3dd044e41a687f2706a123ad0bc4866a linux-3.0/arch/m68k/Kconfig.debug -cb5d59efc3457afbfc96843f2ead9c7a linux-3.0/arch/m68k/Kconfig -d04a90ba0686295aa2eece48c046cb88 linux-3.0/arch/m32r/platforms/usrv/setup.c -f85de19f306793c316662eaa9e288538 linux-3.0/arch/m32r/platforms/usrv/io.c -b7bb3e6aefcc347c9a80352c9ce784de linux-3.0/arch/m32r/platforms/usrv/Makefile -612adb6d05f851a1dbf0c0fd1bfe62df linux-3.0/arch/m32r/platforms/opsput/setup.c -d292b88cb3cf5b8c7b759d199f76f4e6 linux-3.0/arch/m32r/platforms/opsput/io.c -46a4e26fbd557a706f3b072460792266 linux-3.0/arch/m32r/platforms/opsput/dot.gdbinit -b7bb3e6aefcc347c9a80352c9ce784de linux-3.0/arch/m32r/platforms/opsput/Makefile -392846c32300f97c064ac1f21c0537a6 linux-3.0/arch/m32r/platforms/oaks32r/setup.c -ba1e1deaef04ea9b609f7fb4bdc9ba1a linux-3.0/arch/m32r/platforms/oaks32r/io.c -626efdca603afb9858aefc56f9234f21 linux-3.0/arch/m32r/platforms/oaks32r/dot.gdbinit.nommu -b7bb3e6aefcc347c9a80352c9ce784de linux-3.0/arch/m32r/platforms/oaks32r/Makefile -0176ba757c3efdc940a3e72bb0b6d64e linux-3.0/arch/m32r/platforms/mappi3/setup.c -268f2fbbe94b841667cd625f1f41ca03 linux-3.0/arch/m32r/platforms/mappi3/io.c -e136230b8a241c9de2cf2bb13b23520a linux-3.0/arch/m32r/platforms/mappi3/dot.gdbinit -b7bb3e6aefcc347c9a80352c9ce784de linux-3.0/arch/m32r/platforms/mappi3/Makefile -304ca166a5373ac7a1b054cb6f871182 linux-3.0/arch/m32r/platforms/mappi2/setup.c -21bcfa396b9e2c125c50faa28638f26c linux-3.0/arch/m32r/platforms/mappi2/io.c -7ab81a54986e6f738cb62673a23b88ef linux-3.0/arch/m32r/platforms/mappi2/dot.gdbinit.vdec2 -b7bb3e6aefcc347c9a80352c9ce784de linux-3.0/arch/m32r/platforms/mappi2/Makefile -b81cb0478cc39b5e56c30b78a9648ade linux-3.0/arch/m32r/platforms/mappi/setup.c -d8cea215dd1a6ff7cd71b74a21e9513e linux-3.0/arch/m32r/platforms/mappi/io.c -44271aeeac1968de0e1fdb542e5c832c linux-3.0/arch/m32r/platforms/mappi/dot.gdbinit.smp -b58f0c70b1b530e6bf85f9483a9d2c8b linux-3.0/arch/m32r/platforms/mappi/dot.gdbinit.nommu -4cd6b2501e7555ce2e54b548a345b012 linux-3.0/arch/m32r/platforms/mappi/dot.gdbinit -b7bb3e6aefcc347c9a80352c9ce784de linux-3.0/arch/m32r/platforms/mappi/Makefile -6ead28141f2df99ad1f39d63ae97365e linux-3.0/arch/m32r/platforms/m32700ut/setup.c -f3c051195e1b6de3c5f7e58093c0f666 linux-3.0/arch/m32r/platforms/m32700ut/io.c -e929930d60c458a6095a8b15af5a95fb linux-3.0/arch/m32r/platforms/m32700ut/dot.gdbinit_400MHz_32MB -5edbfcc60d604ed230737496e23b5b4f linux-3.0/arch/m32r/platforms/m32700ut/dot.gdbinit_300MHz_32MB -25ab3eb4c093f6bb6c24816adaf3fd58 linux-3.0/arch/m32r/platforms/m32700ut/dot.gdbinit_200MHz_16MB -b7bb3e6aefcc347c9a80352c9ce784de linux-3.0/arch/m32r/platforms/m32700ut/Makefile -78c074d3b851b409d201ce482925aa0e linux-3.0/arch/m32r/platforms/m32104ut/setup.c -09f56812d47f14bd5e30d7a15269822f linux-3.0/arch/m32r/platforms/m32104ut/io.c -b7bb3e6aefcc347c9a80352c9ce784de linux-3.0/arch/m32r/platforms/m32104ut/Makefile -1155ba22625c98033157778da8f10b57 linux-3.0/arch/m32r/platforms/Makefile -b13677a4ba806d9a3721b99062a48f65 linux-3.0/arch/m32r/oprofile/init.c -f72a276bc6f05354613ef165f56ac964 linux-3.0/arch/m32r/oprofile/Makefile -94cf85e9ca17b55ebf0f446a7cd45455 linux-3.0/arch/m32r/mm/page.S -882df0e8e521c7bc2eb87aae5dae8cbf linux-3.0/arch/m32r/mm/mmu.S -31bcba563d1f51d2d60b446e7c3296a9 linux-3.0/arch/m32r/mm/ioremap.c -0175fbfd14390f6e945d902fa1b254cd linux-3.0/arch/m32r/mm/ioremap-nommu.c -ce5fb51f485200982dbce90390e47a95 linux-3.0/arch/m32r/mm/init.c -bfdac4069f27781c0166d3d8140b9ac8 linux-3.0/arch/m32r/mm/fault.c -cdd52c24d07a0bd6365d0ffa17498928 linux-3.0/arch/m32r/mm/fault-nommu.c -93c2b6aa8e2e39665b6767f5c738cc1d linux-3.0/arch/m32r/mm/extable.c -efab3ef47486a2aaed9c1f87c4a08031 linux-3.0/arch/m32r/mm/discontig.c -45b8a70c836ef4846c86b519ba81716d linux-3.0/arch/m32r/mm/cache.c -86f7dda25bba0105f4de125b9cfd3c2e linux-3.0/arch/m32r/mm/Makefile -ee9d3d22979d5d3a4ac1c94f0399adfc linux-3.0/arch/m32r/lib/usercopy.c -78cbae2c3d2c2c1eba437494a92b35db linux-3.0/arch/m32r/lib/strlen.S -1fdc9c121325409a7d9b64c26f739b2a linux-3.0/arch/m32r/lib/memset.S -0d06830c06725400793aced03fe71eb3 linux-3.0/arch/m32r/lib/memcpy.S -3b1acd686d11375b526899330e339d1b linux-3.0/arch/m32r/lib/delay.c -74c8b5f81c387a0b16ee8935be33fd0f linux-3.0/arch/m32r/lib/csum_partial_copy.c -24b2166648b70833aea385282e21275e linux-3.0/arch/m32r/lib/checksum.S -845980907734ca1752ba3ad5582914bd linux-3.0/arch/m32r/lib/ashxdi3.S -addfa7ba5d44a3b2c62249c62b292cd8 linux-3.0/arch/m32r/lib/Makefile -3952e7a7ad230a8203f75da22aec9f14 linux-3.0/arch/m32r/kernel/vmlinux.lds.S -9f86545da4c215678092a58a258e1aaa linux-3.0/arch/m32r/kernel/traps.c -3f59ee9ccf90167274f60ff8b36875d7 linux-3.0/arch/m32r/kernel/time.c -7bf4e4591ecee9805a3cdcae591334f2 linux-3.0/arch/m32r/kernel/syscall_table.S -3509229f53d31020ab5cfead82fa44bf linux-3.0/arch/m32r/kernel/sys_m32r.c -8b804008c161949de01accb2a006ab27 linux-3.0/arch/m32r/kernel/smpboot.c -7d3ce7dc51dcdf3b155422a801f4b252 linux-3.0/arch/m32r/kernel/smp.c -c511f168abc15724007959d6a311405c linux-3.0/arch/m32r/kernel/signal.c -5985f7fb436419e214a639a81ff69212 linux-3.0/arch/m32r/kernel/setup.c -953c6500db9e34cac454cd4a1f8f921b linux-3.0/arch/m32r/kernel/ptrace.c -9cf158e78224e1a83ce7084c3a3f7454 linux-3.0/arch/m32r/kernel/process.c -12a04fd064b15a4c11a704a44210fe04 linux-3.0/arch/m32r/kernel/module.c -2d1519a69ffa41e210b4ec65ec52451c linux-3.0/arch/m32r/kernel/m32r_ksyms.c -a74a13fbfa6a7944b41972de9bd73144 linux-3.0/arch/m32r/kernel/irq.c -4c679acf4e8e3c8b5ac5480f81f1651f linux-3.0/arch/m32r/kernel/init_task.c -cc7b09f0b5d1ce61704d98dab5fb69b2 linux-3.0/arch/m32r/kernel/head.S -278a1efecd03044cca83be47831f0bda linux-3.0/arch/m32r/kernel/entry.S -3863e920cc10cfe7ceebfb5c944e8dfb linux-3.0/arch/m32r/kernel/asm-offsets.c -2a1dc84cb147bd0114b19db63bfb0be4 linux-3.0/arch/m32r/kernel/align.c -a6589c5cf3cd69214c325c43e4cbecfc linux-3.0/arch/m32r/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/m32r/kernel/.gitignore -a22e2aef73db77072c8a77af8ea4142d linux-3.0/arch/m32r/include/asm/xor.h -89198de2a5d21d99212b286638875f8f linux-3.0/arch/m32r/include/asm/vga.h -1c4da36ec769e18dbcf2a2263096039f linux-3.0/arch/m32r/include/asm/user.h -749cf68b4483cc628e01537c9b4e47d5 linux-3.0/arch/m32r/include/asm/unistd.h -f2c537ecf396a6806cdf8b0a64ef1fb0 linux-3.0/arch/m32r/include/asm/unaligned.h -ed2f03e7119aa7910b6baae252014742 linux-3.0/arch/m32r/include/asm/ucontext.h -0e48d34d6d7c81835fa773172c87b094 linux-3.0/arch/m32r/include/asm/uaccess.h -8343d382248305da587674518621f4a8 linux-3.0/arch/m32r/include/asm/types.h -b1eed55b3b80274aaf7f02d66705222a linux-3.0/arch/m32r/include/asm/topology.h -409f57a2520fe80f8c97c66c2e37742f linux-3.0/arch/m32r/include/asm/tlbflush.h -dec3bdd00555a38a74a8bc565acefede linux-3.0/arch/m32r/include/asm/tlb.h -799d90cc1ba36f25a1bd1b204436ca22 linux-3.0/arch/m32r/include/asm/timex.h -5cdf3231c8e8761bd5b1f89ace419a3f linux-3.0/arch/m32r/include/asm/thread_info.h -28251a5ff2a456636dd52fe62b977526 linux-3.0/arch/m32r/include/asm/termios.h -a3ad5f66e6abfc5617358cc35ec6a299 linux-3.0/arch/m32r/include/asm/termbits.h -6409fd11f52439ba4a5500927e046f72 linux-3.0/arch/m32r/include/asm/system.h -3231feb43c903be64569fdbcfd39ba1c linux-3.0/arch/m32r/include/asm/syscall.h -1818a1e40ff48bff45f0554eaf8c86af linux-3.0/arch/m32r/include/asm/swab.h -214e74d98847a68dde86a0f0eef887fe linux-3.0/arch/m32r/include/asm/string.h -7132647d13cadff9bdcfd29e133d37a2 linux-3.0/arch/m32r/include/asm/statfs.h -4564354b4851d94d0d32bb0d8bde468e linux-3.0/arch/m32r/include/asm/stat.h -e18a246f972370199e18e4bd4dfc54ef linux-3.0/arch/m32r/include/asm/spinlock_types.h -c53763335003b17d8e46f23b8e5f660f linux-3.0/arch/m32r/include/asm/spinlock.h -3ac91e1f36f5f896710f6ebe981eb376 linux-3.0/arch/m32r/include/asm/sockios.h -18f2ac732f6591e41b8ac71489a77602 linux-3.0/arch/m32r/include/asm/socket.h -ae398237e5cc1b545bf29481c9026dd8 linux-3.0/arch/m32r/include/asm/smp.h -c0ff4338f9493fa59e867f76ca28691e linux-3.0/arch/m32r/include/asm/signal.h -fb5b38d8add207b94fad2feb0d8a0116 linux-3.0/arch/m32r/include/asm/siginfo.h -4a1945a94688b011722c11493cc70ab8 linux-3.0/arch/m32r/include/asm/sigcontext.h -977f1e5d23aaa89b26a50f48387a18e6 linux-3.0/arch/m32r/include/asm/shmparam.h -1d22290c4065991b86a43dcb987d0f38 linux-3.0/arch/m32r/include/asm/shmbuf.h -b2c063fd4071f04eecd0a0407a8297a4 linux-3.0/arch/m32r/include/asm/setup.h -ee9ca8095119e77abff26aee1ef7f606 linux-3.0/arch/m32r/include/asm/serial.h -d6b57c5ef177d4ade48d464242258f29 linux-3.0/arch/m32r/include/asm/sembuf.h -1c44013884a8fd0c1b9b9ffb8a789c5d linux-3.0/arch/m32r/include/asm/segment.h -0138504da8befb71b0370a2fed419e55 linux-3.0/arch/m32r/include/asm/sections.h -b7c2e0185c89bb23eef90900c57bbcda linux-3.0/arch/m32r/include/asm/scatterlist.h -903df957559ccdbf6ee8cad393e079e2 linux-3.0/arch/m32r/include/asm/s1d13806.h -56161546f948c8a7325f7792ca8f9d1e linux-3.0/arch/m32r/include/asm/rtc.h -2262e425629f1f99f844fd31ba3243e1 linux-3.0/arch/m32r/include/asm/resource.h -68b155205bc8fcee01e580c91bccdab1 linux-3.0/arch/m32r/include/asm/ptrace.h -c1f414f51ce4f81584cb65beb2805de6 linux-3.0/arch/m32r/include/asm/processor.h -460ba59be4a33204506ce02a9a0f4583 linux-3.0/arch/m32r/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/m32r/include/asm/poll.h -2d018610625ac876a5a72d92a4b5af90 linux-3.0/arch/m32r/include/asm/pgtable.h -92328218a806b6f6fc0422f34a51c97f linux-3.0/arch/m32r/include/asm/pgtable-2level.h -5f16d2791ca079f9d144508b2cd163fa linux-3.0/arch/m32r/include/asm/pgalloc.h -05044eef956b2f77f0306d4d664f3681 linux-3.0/arch/m32r/include/asm/percpu.h -49406c56032fb4e1b095f9d10afa58f6 linux-3.0/arch/m32r/include/asm/pci.h -82f9ac649ee59911bb9c99a6aa3fd6ec linux-3.0/arch/m32r/include/asm/param.h -63110ce0d5b9fb054d019c545166b4d0 linux-3.0/arch/m32r/include/asm/page.h -cb9b30c085cc036452d02319a27d4bb9 linux-3.0/arch/m32r/include/asm/opsput/opsput_pld.h -e554bbe3257791414309ac757af5dd41 linux-3.0/arch/m32r/include/asm/opsput/opsput_lcd.h -556ea4e39739653ef3bd5112cb5ef68e linux-3.0/arch/m32r/include/asm/opsput/opsput_lan.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/m32r/include/asm/mutex.h -89ef03adc21d40e177328c55df2aad84 linux-3.0/arch/m32r/include/asm/msgbuf.h -dcbb7f4008cdb4cb025890b89213cd17 linux-3.0/arch/m32r/include/asm/module.h -40c32864f8de7f5bdbe091ff27bc65da linux-3.0/arch/m32r/include/asm/mmzone.h -c048e05a2683171830c014739ff6403c linux-3.0/arch/m32r/include/asm/mmu_context.h -efa37dd45f1eea330d73e710fd9bc9d4 linux-3.0/arch/m32r/include/asm/mmu.h -c10dfdbe274b25756fe8f9900e428096 linux-3.0/arch/m32r/include/asm/mman.h -23a9d0eb53a637918060a510b5448f93 linux-3.0/arch/m32r/include/asm/mc146818rtc.h -ca2a28be7080fcd9d12f0555ca8213d4 linux-3.0/arch/m32r/include/asm/mappi3/mappi3_pld.h -abc361ac4c1503d2cc849b39b3a1d7c3 linux-3.0/arch/m32r/include/asm/mappi2/mappi2_pld.h -28444775566b1e150451a8a565a88a73 linux-3.0/arch/m32r/include/asm/m32r_mp_fpga.h -c9cffdad2f2e08714db0893b197421b0 linux-3.0/arch/m32r/include/asm/m32r.h -285239502624b223225dc7f5a50c7de1 linux-3.0/arch/m32r/include/asm/m32700ut/m32700ut_pld.h -738d1423340604196125b89922bcae75 linux-3.0/arch/m32r/include/asm/m32700ut/m32700ut_lcd.h -f3375e2180a2c1a2ea62a976698acd4b linux-3.0/arch/m32r/include/asm/m32700ut/m32700ut_lan.h -cde3821893a91d96d0b908e6ed9f3b34 linux-3.0/arch/m32r/include/asm/m32104ut/m32104ut_pld.h -f41b33e84e6c2f8bfcbbbd527f219b46 linux-3.0/arch/m32r/include/asm/m32102.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/m32r/include/asm/local64.h -8cfcdd74323d99ef2d26eaf290be2b29 linux-3.0/arch/m32r/include/asm/local.h -c26d551ea2abe61009c2485d57ee1d28 linux-3.0/arch/m32r/include/asm/linkage.h -d3e0b038ef59586b68e00d31f049ecdb linux-3.0/arch/m32r/include/asm/kmap_types.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/m32r/include/asm/kdebug.h -6d66d7284b8627a7f084af4db50865de linux-3.0/arch/m32r/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/m32r/include/asm/irq_regs.h -44dd1c9aa2fb4430181f757678e71423 linux-3.0/arch/m32r/include/asm/irq.h -0e8bb68d3ff32ac4478a101812ee3c85 linux-3.0/arch/m32r/include/asm/ipcbuf.h -00445522661a5a72f6b804e903f43c02 linux-3.0/arch/m32r/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/m32r/include/asm/ioctl.h -53db69116343ffc16aa2f38f49ae4ef4 linux-3.0/arch/m32r/include/asm/io.h -052568c6772714d93da8f13fa6dbe9a9 linux-3.0/arch/m32r/include/asm/hw_irq.h -fb744d6e198f8b8c09d558e704109e6d linux-3.0/arch/m32r/include/asm/hardirq.h -228b42e1213f6ee69a59695b054ab093 linux-3.0/arch/m32r/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/m32r/include/asm/ftrace.h -b17ed51c1538b304ac9b710ee68b3f41 linux-3.0/arch/m32r/include/asm/flat.h -a598360d85106db07897c937209e63eb linux-3.0/arch/m32r/include/asm/fcntl.h -e31d052cbba4f417ba2158a41b0d8709 linux-3.0/arch/m32r/include/asm/fb.h -9718c2e61f7a696e09a07500e342d944 linux-3.0/arch/m32r/include/asm/errno.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/m32r/include/asm/emergency-restart.h -8343ee7015ee5719ac602599e1b6a00a linux-3.0/arch/m32r/include/asm/elf.h -87d730e1dad1c1f58e5c075fa61bf6b4 linux-3.0/arch/m32r/include/asm/dma.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/m32r/include/asm/div64.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/m32r/include/asm/device.h -8d481caf937fa567d9890b04d9075175 linux-3.0/arch/m32r/include/asm/delay.h -e1f37f974339a95c42fa442e0035032b linux-3.0/arch/m32r/include/asm/current.h -06298e07b2b41497b594aeda90c9cd6e linux-3.0/arch/m32r/include/asm/cputime.h -07a60e9de08f49808ae4f10eb4a4856d linux-3.0/arch/m32r/include/asm/checksum.h -a3ccd5d4a484907a1fc3820001476f85 linux-3.0/arch/m32r/include/asm/cacheflush.h -94c668db9769058aaf4e0bf3d2ffbb1f linux-3.0/arch/m32r/include/asm/cachectl.h -b4aa066dcc98825da337ce6af3fa1cb6 linux-3.0/arch/m32r/include/asm/cache.h -a0c09b90e43fd2923a1af385f395f2ad linux-3.0/arch/m32r/include/asm/byteorder.h -daa20bedb0453d472b04177eb91ccd4f linux-3.0/arch/m32r/include/asm/bugs.h -049174870d467a46554a24dcbb90583d linux-3.0/arch/m32r/include/asm/bug.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/m32r/include/asm/bitsperlong.h -215e793f9d3d62413a9077aae0a6bc9e linux-3.0/arch/m32r/include/asm/bitops.h -be47c92fa51ef53562d49857676552db linux-3.0/arch/m32r/include/asm/auxvec.h -4d469cd5efde060a8c234e12eb1c24de linux-3.0/arch/m32r/include/asm/atomic.h -3623d16634e07ce6aaa90eb64cab8b7c linux-3.0/arch/m32r/include/asm/assembler.h -47e105e36c617189b3d040da9f1e1bc1 linux-3.0/arch/m32r/include/asm/addrspace.h -0c015deadbcb4a30e97aff7c219e03bd linux-3.0/arch/m32r/include/asm/Kbuild -ee7ec6e3569ae6e481d0fe9f1fbd0079 linux-3.0/arch/m32r/configs/usrv_defconfig -dcbbe09ce02289d2e545da244e4608d3 linux-3.0/arch/m32r/configs/opsput_defconfig -5ff2c93b5a31416b10bf70b206fd2b0b linux-3.0/arch/m32r/configs/oaks32r_defconfig -97e4bd76fdbdefc4aa7227edd32441b1 linux-3.0/arch/m32r/configs/mappi3.smp_defconfig -9a8fc3d8210887e6d981c38dea3ccab0 linux-3.0/arch/m32r/configs/mappi2.vdec2_defconfig -01f0c16de16974037b2ef6e22e983aaf linux-3.0/arch/m32r/configs/mappi2.opsp_defconfig -a8c6a3dd424f33ec2d23b475fb7269d1 linux-3.0/arch/m32r/configs/mappi.up_defconfig -7b1ba83c4ddd655a9a0cb79173c419c3 linux-3.0/arch/m32r/configs/mappi.smp_defconfig -106b981e82ce5bcd1fd762abfd3d71ed linux-3.0/arch/m32r/configs/mappi.nommu_defconfig -7a6cfcbf631e23ab1f65183b4cf46eb7 linux-3.0/arch/m32r/configs/m32700ut.up_defconfig -555bfbe868f11c33c8e3a7ebabd2116c linux-3.0/arch/m32r/configs/m32700ut.smp_defconfig -cb86cde0ca6e685fbdc9b5aa7b2cbdd8 linux-3.0/arch/m32r/configs/m32104ut_defconfig -3aa49b224a47b794c689a783fa62dc8d linux-3.0/arch/m32r/boot/setup.S -fdd8cda328d90cc08b0177a94c4cbdaa linux-3.0/arch/m32r/boot/compressed/vmlinux.scr -a6d58a9228893a783c2802d6701fc2de linux-3.0/arch/m32r/boot/compressed/vmlinux.lds.S -2503eb921187c6d87e7c00326db6bf20 linux-3.0/arch/m32r/boot/compressed/misc.c -55fcff62b20c197cad46b63533ebf044 linux-3.0/arch/m32r/boot/compressed/m32r_sio.c -47535fec2650d8ac55261db2d4cb89d3 linux-3.0/arch/m32r/boot/compressed/install.sh -9856ec201338c744851605a5262473c8 linux-3.0/arch/m32r/boot/compressed/head.S -899d2de9c54e535b2e36ae606e75b093 linux-3.0/arch/m32r/boot/compressed/boot.h -11516dc7542fc1981457306a88492728 linux-3.0/arch/m32r/boot/compressed/Makefile -cffb593cec5e677a45accd5b45da171d linux-3.0/arch/m32r/boot/Makefile -e99c5e9ebbe27a5cac9d6326ba5ba877 linux-3.0/arch/m32r/Makefile -13351ce0eabda0c70001ef54a0a3adba linux-3.0/arch/m32r/Kconfig.debug -eb8962ca8a9a683519ebffd66c786502 linux-3.0/arch/m32r/Kconfig -16faa38fe1aef15fc5c13da6309094e8 linux-3.0/arch/ia64/xen/xensetup.S -ef40cc1fa4d4d819e8f8058df207af43 linux-3.0/arch/ia64/xen/xenivt.S -cdd08e92c7a0882805200b82f366fad8 linux-3.0/arch/ia64/xen/xencomm.c -cdf390f0f8b55793867cadf10c1b8d5d linux-3.0/arch/ia64/xen/xen_pv_ops.c -6ad961ad4196a72a023d469b3d881b6d linux-3.0/arch/ia64/xen/xcom_hcall.c -7da37d247c626f29a268ee5304af4f7e linux-3.0/arch/ia64/xen/time.h -807700cda2300ddff5a33f3148d53c96 linux-3.0/arch/ia64/xen/time.c -a5b795e2b6981e850e2152cedf12716d linux-3.0/arch/ia64/xen/suspend.c -989bef9be562502be128006b3268d874 linux-3.0/arch/ia64/xen/machvec.c -1723717d477f103e00fba0ab628fc934 linux-3.0/arch/ia64/xen/irq_xen.h -37a09b32644bfbc66ef77d791fee7263 linux-3.0/arch/ia64/xen/irq_xen.c -4f80a5aba434b50550c71711a21a7996 linux-3.0/arch/ia64/xen/hypervisor.c -81c51251d91f3524df204951faeae833 linux-3.0/arch/ia64/xen/hypercall.S -23c2581f5e077c67c898f92dcf5bbd5e linux-3.0/arch/ia64/xen/grant-table.c -179821574cf7cc833d1097d6d8fd5313 linux-3.0/arch/ia64/xen/gate-data.S -46555d2d34d7a77c2decdd984d64a41c linux-3.0/arch/ia64/xen/Makefile -c7147336183345ad31318c86df900cbe linux-3.0/arch/ia64/xen/Kconfig -ba8a51391fa8a7e8d7b07b10a809a82a linux-3.0/arch/ia64/uv/kernel/setup.c -5b43f3025c551bdceea27fc2ade96cfa linux-3.0/arch/ia64/uv/kernel/machvec.c -10b5dfbacc5e678adc6f823a79e7ccb5 linux-3.0/arch/ia64/uv/kernel/Makefile -63f7c69c5220bff46e59e7c3cf809bc8 linux-3.0/arch/ia64/uv/Makefile -b2054b92ccfcadf9837ad0ca12e98b01 linux-3.0/arch/ia64/sn/pci/tioce_provider.c -cb289f034b6ffb92d33982d789444325 linux-3.0/arch/ia64/sn/pci/tioca_provider.c -79670b685ef87685abe455c622af2c49 linux-3.0/arch/ia64/sn/pci/pcibr/pcibr_reg.c -6d3c70442eb7d1dc50fe719cbdfc5e37 linux-3.0/arch/ia64/sn/pci/pcibr/pcibr_provider.c -806d2af838b90231eda1e56c45cc6150 linux-3.0/arch/ia64/sn/pci/pcibr/pcibr_dma.c -1b4a8593500596268952eb9b772e3f05 linux-3.0/arch/ia64/sn/pci/pcibr/pcibr_ate.c -02b1c493ca601fe0deae66cf04b99739 linux-3.0/arch/ia64/sn/pci/pcibr/Makefile -8a64a64abf265b1334947ca083371437 linux-3.0/arch/ia64/sn/pci/pci_dma.c -8f425500cbef87fcf84e1abe7f25c0f3 linux-3.0/arch/ia64/sn/pci/Makefile -a0adf71df5eb43b24ed582ef2f68ef53 linux-3.0/arch/ia64/sn/kernel/tiocx.c -933349f2382f6b9915761a896888fe37 linux-3.0/arch/ia64/sn/kernel/sn2/timer_interrupt.c -76245df6db793d4d7c0be8d1c9fc1e55 linux-3.0/arch/ia64/sn/kernel/sn2/timer.c -c26083140b04ddfed838720705c4b9a0 linux-3.0/arch/ia64/sn/kernel/sn2/sn_proc_fs.c -f6f2148a9a8c1041bced385fdcf7ec9c linux-3.0/arch/ia64/sn/kernel/sn2/sn_hwperf.c -f192c81b87469b1014b1357086b527ad linux-3.0/arch/ia64/sn/kernel/sn2/sn2_smp.c -be6f9d611906ffc2219b260357ca3620 linux-3.0/arch/ia64/sn/kernel/sn2/ptc_deadlock.S -1389d67d48cc5c284b71b3368777e2af linux-3.0/arch/ia64/sn/kernel/sn2/prominfo_proc.c -464e9bac41d4b22e018d3695c4b5ee51 linux-3.0/arch/ia64/sn/kernel/sn2/io.c -c5f03657f3c9c358b9b8c04f5503741a linux-3.0/arch/ia64/sn/kernel/sn2/cache.c -e473961f03c44a33071c4a247b6c6f58 linux-3.0/arch/ia64/sn/kernel/sn2/Makefile -9db19ad48e6b3918eb6d5d0cda6505de linux-3.0/arch/ia64/sn/kernel/setup.c -34e85a063de83e3346959c32dfc94608 linux-3.0/arch/ia64/sn/kernel/pio_phys.S -953275ba1b582b60b0c59fb371d5e46f linux-3.0/arch/ia64/sn/kernel/msi_sn.c -df6f52adc7a6476c003f03db34454c4c linux-3.0/arch/ia64/sn/kernel/mca.c -81c51bb8b733015a48820e3c34493783 linux-3.0/arch/ia64/sn/kernel/machvec.c -bf190c81977fa4a881d3b65c522be32c linux-3.0/arch/ia64/sn/kernel/klconflib.c -e31360030a9b005dbb1d6a2e8828ec11 linux-3.0/arch/ia64/sn/kernel/irq.c -a561a25d0b3a2b56a42766e83de4d865 linux-3.0/arch/ia64/sn/kernel/iomv.c -1c02d9e83ddc21c2b922da4e5be02515 linux-3.0/arch/ia64/sn/kernel/io_init.c -2dbda2798397b9c42d78d226a2e4e87b linux-3.0/arch/ia64/sn/kernel/io_common.c -eb7fe581681041b1ae038f2d37787a29 linux-3.0/arch/ia64/sn/kernel/io_acpi_init.c -70fc8f90cec7cfe31482820730eb2bad linux-3.0/arch/ia64/sn/kernel/idle.c -746125ab481d686695b792c6df2ed1b9 linux-3.0/arch/ia64/sn/kernel/huberror.c -0c4adfa073c903a01cf4fea64329b6e5 linux-3.0/arch/ia64/sn/kernel/bte_error.c -04a4ce33d168fa25f521d26f5b04eb25 linux-3.0/arch/ia64/sn/kernel/bte.c -146b7b8285250a8797c002ce5870548b linux-3.0/arch/ia64/sn/kernel/Makefile -f6a408089a6c17c01d6dc426deb267f1 linux-3.0/arch/ia64/sn/include/xtalk/xwidgetdev.h -d82aefb60acfbc0a0c29a9bd7594e470 linux-3.0/arch/ia64/sn/include/xtalk/xbow.h -8a309d73f3c4459757a7e7ea99a31061 linux-3.0/arch/ia64/sn/include/xtalk/hubdev.h -0695fead0d96d20890b86b27ea19411d linux-3.0/arch/ia64/sn/include/tio.h -aa4ca221cfdf685a36ab68aca7f25244 linux-3.0/arch/ia64/sn/include/ioerror.h -3fbe368adf47b3c1d1d7ad94fba35e90 linux-3.0/arch/ia64/sn/Makefile -c7de125c3b36ae5b2f7b98e334882675 linux-3.0/arch/ia64/scripts/unwcheck.py -43f76f39fa3c2b9666f186d87ba93efd linux-3.0/arch/ia64/scripts/toolchain-flags -25110bc7da8ec8efa1b8ef4f44486b9a linux-3.0/arch/ia64/scripts/pvcheck.sed -00e6cea3c0988ba69b681c8606aa4a25 linux-3.0/arch/ia64/scripts/check-text-align.S -f7dd63a3dd148fbf9afd3127fcb81a53 linux-3.0/arch/ia64/scripts/check-serialize.S -fe0327a6a1be55ecdb9a3fc31cc6eb6e linux-3.0/arch/ia64/scripts/check-segrel.lds -2581d9ce8607bb95c7fdf95652aa8446 linux-3.0/arch/ia64/scripts/check-segrel.S -16a947b8664c94e4a2efdc7c5d643976 linux-3.0/arch/ia64/scripts/check-model.c -bb604be3fe90fdbb8a3c83bd4ded1fe7 linux-3.0/arch/ia64/scripts/check-gas-asm.S -d10febf1d6d45ec27a7b261e890a7baf linux-3.0/arch/ia64/scripts/check-gas -ec46134e8c30edec5a944ed750c55fef linux-3.0/arch/ia64/pci/pci.c -c560da6fe727d1025227b625bcb73cef linux-3.0/arch/ia64/pci/fixup.c -d8c9df5f4a9897ebe0105f4b9ceb6e40 linux-3.0/arch/ia64/pci/Makefile -8648593c21815b1a7bdd05dce6089473 linux-3.0/arch/ia64/oprofile/perfmon.c -b4618ff2e198ec83b2569901ae3b11fa linux-3.0/arch/ia64/oprofile/init.c -2dfadb0f971e3065147334ec39b1cc38 linux-3.0/arch/ia64/oprofile/backtrace.c -dcbb28a250420dcb9972f3cf6c73d85d linux-3.0/arch/ia64/oprofile/Makefile -14bfaa684c7bdf444209ee284839d766 linux-3.0/arch/ia64/module.lds -5c9ed647ba94e7e61d2b692f834fbeda linux-3.0/arch/ia64/mm/tlb.c -ba4cea8f3ad8a43a4b882102dc60e13b linux-3.0/arch/ia64/mm/numa.c -6c45b2f8cf7909c0a563c8a9848fd7d9 linux-3.0/arch/ia64/mm/ioremap.c -6b53cc7ff09a173d26fdc1b7f3012253 linux-3.0/arch/ia64/mm/init.c -bd27df574ed884df52d2516238477427 linux-3.0/arch/ia64/mm/hugetlbpage.c -0b29a6c6356c9366fe13bf2ae0d26fc8 linux-3.0/arch/ia64/mm/fault.c -c0b6afba06cbdab1f34f8f743122cd24 linux-3.0/arch/ia64/mm/extable.c -9b22fadc1df1c3b7ad98ddb3fa79f4af linux-3.0/arch/ia64/mm/discontig.c -e682bd1a4509a51e32d11747fec13f46 linux-3.0/arch/ia64/mm/contig.c -1c82279f78ece3a6fbe0f1766641ca2d linux-3.0/arch/ia64/mm/Makefile -25bbff39617901fb788b7bb5eaea5c35 linux-3.0/arch/ia64/lib/xor.S -efa8ba7d688471d86115f24e1641e4b5 linux-3.0/arch/ia64/lib/strnlen_user.S -79bba73b3b2521af885c079ec5681ac8 linux-3.0/arch/ia64/lib/strncpy_from_user.S -0160beeaac204599866a3e7e8d51596e linux-3.0/arch/ia64/lib/strlen_user.S -34feb2ce709f8cdef39d59da5d9a11e2 linux-3.0/arch/ia64/lib/strlen.S -f98703f96f897cb3865cd2851f57e1cc linux-3.0/arch/ia64/lib/memset.S -eddd735896dc17ade5ab94043064ae77 linux-3.0/arch/ia64/lib/memcpy_mck.S -71bae563d15fe05de1a1f5e9f095739e linux-3.0/arch/ia64/lib/memcpy.S -c76e5dda3af2c7515566e2f73b89133a linux-3.0/arch/ia64/lib/ip_fast_csum.S -d1917cbaa8445f5e0130b5960f474f5f linux-3.0/arch/ia64/lib/io.c -5b888df8cb00efa37367a9e9f5a8ad6d linux-3.0/arch/ia64/lib/idiv64.S -83f32ba2fd0db407612dd1c05549dbbe linux-3.0/arch/ia64/lib/idiv32.S -8c9b6d637db612444a27e64506e9d983 linux-3.0/arch/ia64/lib/flush.S -1164ba2ba0647c83239aeb43689d2cc5 linux-3.0/arch/ia64/lib/do_csum.S -7adaa65e02515f78b91e3d6161498e37 linux-3.0/arch/ia64/lib/csum_partial_copy.c -dda5932669d55e0e4faa159873b807be linux-3.0/arch/ia64/lib/copy_user.S -829ba1ff56af3fbefcfb27a8c1d4cac0 linux-3.0/arch/ia64/lib/copy_page_mck.S -98e0867ef31c715f3f44c9770ca1fd94 linux-3.0/arch/ia64/lib/copy_page.S -96f04422378d0c0d3d7bcd9dfbccd110 linux-3.0/arch/ia64/lib/clear_user.S -c1bf0d3d243d48d2bf595e2ecad3720c linux-3.0/arch/ia64/lib/clear_page.S -ca392976798a0d7ed1a545cc0a30930d linux-3.0/arch/ia64/lib/checksum.c -3a03cbc559f2d4f10592d66a6c802b32 linux-3.0/arch/ia64/lib/carta_random.S -1bd573eccb479e10678a588413248b93 linux-3.0/arch/ia64/lib/Makefile -f90b6c610be2cae21e178b2f4f3e39e7 linux-3.0/arch/ia64/kvm/vtlb.c -897f1f70a9516c57492520a8c28874ec linux-3.0/arch/ia64/kvm/vti.h -55f0595add866f45046558895c8b9bc4 linux-3.0/arch/ia64/kvm/vmm_ivt.S -20225249ba8264309b8b09d2348db9c3 linux-3.0/arch/ia64/kvm/vmm.c -3a9eb60a4b2b96b983da5694d7e5ceea linux-3.0/arch/ia64/kvm/vcpu.h -68d962231cda3ea69ef50da1fc823ab2 linux-3.0/arch/ia64/kvm/vcpu.c -e7e5ae85cf8f1bc587778f7a4960daeb linux-3.0/arch/ia64/kvm/trampoline.S -15bbbed297cbf675af92bdd25b823a2d linux-3.0/arch/ia64/kvm/process.c -6f7962aa2cdb88acf0619194e6a9d188 linux-3.0/arch/ia64/kvm/optvfault.S -d223a687534bf726c557620f5401d38d linux-3.0/arch/ia64/kvm/mmio.c -baea1a59f6d27e19c79e9e471fafa613 linux-3.0/arch/ia64/kvm/misc.h -eab9c84bdeec66bae53f90c80017cb55 linux-3.0/arch/ia64/kvm/memset.S -584ad15f703ced2ba7483e3e11b5621d linux-3.0/arch/ia64/kvm/memcpy.S -eb143ecb1918f94e004c8fd92564d465 linux-3.0/arch/ia64/kvm/lapic.h -2a6eb5306b3249a71e0a2d7ae9029a49 linux-3.0/arch/ia64/kvm/kvm_minstate.h -3a3cbf34638905e0dbebd513ef5b9d45 linux-3.0/arch/ia64/kvm/kvm_lib.c -e02f2ec9d32f5adb3d93bfc948d0a93b linux-3.0/arch/ia64/kvm/kvm_fw.c -417d69d8aaf1d76506ac73fe71575481 linux-3.0/arch/ia64/kvm/kvm-ia64.c -090719e66dcace295fcbf27c9cc32b6f linux-3.0/arch/ia64/kvm/irq.h -23cce52e580b31d575b7d79ea8a44316 linux-3.0/arch/ia64/kvm/asm-offsets.c -aeb1985ed153f016f4d16ac92727fad3 linux-3.0/arch/ia64/kvm/Makefile -459da64b4d10da80cd2d546dd6b53aff linux-3.0/arch/ia64/kvm/Kconfig -f91d8c22232795bd978e124c246a22da linux-3.0/arch/ia64/kernel/vmlinux.lds.S -b699b35d625a8df3ab39dfdbbc372876 linux-3.0/arch/ia64/kernel/unwind_i.h -1ce169823323692f2c14777338c58a58 linux-3.0/arch/ia64/kernel/unwind_decoder.c -e9de3cab24c0da4c76dbdd1021efc7aa linux-3.0/arch/ia64/kernel/unwind.c -ef137f70dca1baeeef9f578a580a0d4d linux-3.0/arch/ia64/kernel/uncached.c -8e7a7845ae3d20799b14264f396b52c5 linux-3.0/arch/ia64/kernel/unaligned.c -d157f1301167bd609399c94b47720d75 linux-3.0/arch/ia64/kernel/traps.c -431cf304547a12c89d6611183a8eb760 linux-3.0/arch/ia64/kernel/topology.c -0c5afd9706d690f55732ca581a1fa6ed linux-3.0/arch/ia64/kernel/time.c -fccada576faa1408d4788646bf8484be linux-3.0/arch/ia64/kernel/sys_ia64.c -ec5772e5d339d78e2bed2b9e041a5842 linux-3.0/arch/ia64/kernel/stacktrace.c -089f4b0d3da7e0ecd6269046e2aeba18 linux-3.0/arch/ia64/kernel/smpboot.c -c2347d8efb2f7c62c154fb1e27827a79 linux-3.0/arch/ia64/kernel/smp.c -400e9401bfeaca4d340d7bfdeb9d6269 linux-3.0/arch/ia64/kernel/signal.c -2c49e66fb11c69260631f0e6e622b288 linux-3.0/arch/ia64/kernel/sigframe.h -cf6642782e4a2cc59783e5437c3eeb47 linux-3.0/arch/ia64/kernel/setup.c -05211d7cc5346559ae9cb5cbf0e4d4bd linux-3.0/arch/ia64/kernel/salinfo.c -4287d6ddd19a12897c3833190a8f796d linux-3.0/arch/ia64/kernel/sal.c -ead277b38e1868a0b66a25b87941ae6e linux-3.0/arch/ia64/kernel/relocate_kernel.S -37ffa5cc1284be30f8d3d723237ca8d6 linux-3.0/arch/ia64/kernel/ptrace.c -c844899bfce0a98bbf6b493c4b3a3a41 linux-3.0/arch/ia64/kernel/process.c -fb1cdf47b6610471953b03dd11d3cf93 linux-3.0/arch/ia64/kernel/perfmon_montecito.h -98815eead8975cb3a1840f1c0aa83ff4 linux-3.0/arch/ia64/kernel/perfmon_mckinley.h -9b92ef0ccaadc49777d449dedd0c01fd linux-3.0/arch/ia64/kernel/perfmon_itanium.h -b55b55795259a1d0e3d20ff021c11481 linux-3.0/arch/ia64/kernel/perfmon_generic.h -284edfb0ff374b9dd361524672711160 linux-3.0/arch/ia64/kernel/perfmon_default_smpl.c -ec6a2afb6e6b373ce2604b08e9853fd5 linux-3.0/arch/ia64/kernel/perfmon.c -b9684f0d6511837339e10899f7832f31 linux-3.0/arch/ia64/kernel/pci-swiotlb.c -f772bf01b2195c556790440ff10c515f linux-3.0/arch/ia64/kernel/pci-dma.c -128968f1ac866470194fd0b6c95f023a linux-3.0/arch/ia64/kernel/patch.c -bbc8768944185342c560db39aecc7fbe linux-3.0/arch/ia64/kernel/paravirtentry.S -bf16e635b0c506907ea0384b65778677 linux-3.0/arch/ia64/kernel/paravirt_patchlist.h -59b8c50c4edf7654fca746ded787bed7 linux-3.0/arch/ia64/kernel/paravirt_patchlist.c -4f9acbf64339c582636e765c67d2bb36 linux-3.0/arch/ia64/kernel/paravirt_patch.c -1f4d8a4c7638da1c03035027b2a453e3 linux-3.0/arch/ia64/kernel/paravirt_inst.h -938e0347a55158769d594a5412baf6cf linux-3.0/arch/ia64/kernel/paravirt.c -03deb703f9f0fb31db6ae227879418a4 linux-3.0/arch/ia64/kernel/palinfo.c -987472c3e9fff1fdf0e553ac5dca2685 linux-3.0/arch/ia64/kernel/pal.S -2e4556e25d0dbc0549b73865e4bc3cbb linux-3.0/arch/ia64/kernel/numa.c -a5663c7fcc6a43f214b364d54dfeabf4 linux-3.0/arch/ia64/kernel/nr-irqs.c -b5d83d0246d5e298994c3bda7c9ce209 linux-3.0/arch/ia64/kernel/msi_ia64.c -3aa129d82a265741f888286cb9ea777e linux-3.0/arch/ia64/kernel/module.c -e1548d525bd1bf0e8a425204b77c9b27 linux-3.0/arch/ia64/kernel/minstate.h -8a72910ef7eb1f75bd255053732bf73e linux-3.0/arch/ia64/kernel/mca_drv_asm.S -70331c529d877cf659d8e74fb919b489 linux-3.0/arch/ia64/kernel/mca_drv.h -65462a7129b4c1c71cbaf68e79347ec0 linux-3.0/arch/ia64/kernel/mca_drv.c -a528a3a6ef84ab26f2a6b92b28be6f45 linux-3.0/arch/ia64/kernel/mca_asm.S -be66cc5bb7b24ee40610daa3c2db9a0f linux-3.0/arch/ia64/kernel/mca.c -78864baf74c2a3da4a053bfd51d74cbc linux-3.0/arch/ia64/kernel/machvec.c -49ef896b09866764a22e0cf77ea0b932 linux-3.0/arch/ia64/kernel/machine_kexec.c -d985302b37f983694c2385f336161ebe linux-3.0/arch/ia64/kernel/kprobes.c -f6a361863ec5c07adc8ece8d841d4698 linux-3.0/arch/ia64/kernel/jprobes.S -4b871dde0387bf86e5bbac9492f5de0c linux-3.0/arch/ia64/kernel/ivt.S -df868f5b81b743c5fb40822f78a2f35a linux-3.0/arch/ia64/kernel/irq_lsapic.c -be80c56b6d3d15ae4e0340a1ff8acb89 linux-3.0/arch/ia64/kernel/irq_ia64.c -21f344749cf2bf8f1f9b80d5c8ce0d4c linux-3.0/arch/ia64/kernel/irq.c -b149412f48bcf1a862af1aee6a3168b3 linux-3.0/arch/ia64/kernel/iosapic.c -3275ccc5188675f8442100a46cd8a21f linux-3.0/arch/ia64/kernel/init_task.c -467292feb70949c667a6fbadf51ee070 linux-3.0/arch/ia64/kernel/ia64_ksyms.c -ddc480c7c9784faecd3ce3de000a8ac9 linux-3.0/arch/ia64/kernel/head.S -0375f43b5613dc72b0789df4356c3eeb linux-3.0/arch/ia64/kernel/gate.lds.S -78aea324749704f8006435f6c0535e1f linux-3.0/arch/ia64/kernel/gate.S -0ec137e41313472c27626e92de0e4379 linux-3.0/arch/ia64/kernel/gate-data.S -20058b0f451c0c8b18db58b04b430c29 linux-3.0/arch/ia64/kernel/ftrace.c -a22e7d3f25229243bc61d561bcbc5b7c linux-3.0/arch/ia64/kernel/fsyscall_gtod_data.h -73e8a3de2c4d66dafd960f490cbe4042 linux-3.0/arch/ia64/kernel/fsys.S -96140f1a78ccb1fca399e312e240fea4 linux-3.0/arch/ia64/kernel/esi_stub.S -8c157306f37da688b6ee7f521196de8b linux-3.0/arch/ia64/kernel/esi.c -113aed10011baf91200af82a036daca7 linux-3.0/arch/ia64/kernel/err_inject.c -2a292b9b4629614dc256433165bc6b2c linux-3.0/arch/ia64/kernel/entry.h -1d6765d78d486fed2590140196735a57 linux-3.0/arch/ia64/kernel/entry.S -8ef20b57fac3f75dabb4e557aaff0773 linux-3.0/arch/ia64/kernel/elfcore.c -ad846573c9d2917c62b67517198ce73e linux-3.0/arch/ia64/kernel/efi_stub.S -e8b2d36b565fd01e7cee5d7d42971cad linux-3.0/arch/ia64/kernel/efi.c -81a593cc3d06faa2633b02651dbf7440 linux-3.0/arch/ia64/kernel/dma-mapping.c -1f1b685f1e8ad281ba34a0c4d176c6d0 linux-3.0/arch/ia64/kernel/cyclone.c -50213a212ea5b5ee51ffa9dba9d8b214 linux-3.0/arch/ia64/kernel/crash_dump.c -4dd16e007ae709af307f8707818c2c04 linux-3.0/arch/ia64/kernel/crash.c -a32cd0b2c8a5471b19b50d3d6edff599 linux-3.0/arch/ia64/kernel/cpufreq/acpi-cpufreq.c -4dfb21232ec2625a0ff0a61f6a666ad6 linux-3.0/arch/ia64/kernel/cpufreq/Makefile -5de67701124693cc9a99c53e899922c9 linux-3.0/arch/ia64/kernel/cpufreq/Kconfig -7c8b7983e197d3360f9cdc69231ae546 linux-3.0/arch/ia64/kernel/brl_emu.c -8a874f031623896b94086ff1d8db497a linux-3.0/arch/ia64/kernel/audit.c -8b06ef995f0c21f9afa0f7dcd55ca2f4 linux-3.0/arch/ia64/kernel/asm-offsets.c -94e620be2aa803371dd786f6b3bb43b5 linux-3.0/arch/ia64/kernel/acpi.c -153beabfaef99d1113a627412744eb20 linux-3.0/arch/ia64/kernel/acpi-ext.c -ce32ce61d2a5b1a2b02510874b276e53 linux-3.0/arch/ia64/kernel/Makefile.gate -c2a09a957c83a6b123bf3b1cd9f3a9f8 linux-3.0/arch/ia64/kernel/Makefile -3816d60f5677d6cd55069632c9b9b911 linux-3.0/arch/ia64/kernel/.gitignore -9c0a705ae08ed64660fd6e059bd5fc58 linux-3.0/arch/ia64/install.sh -e43669d8f35b7e87d4aa0c2c53eec6cf linux-3.0/arch/ia64/include/asm/xor.h -420ce02615d2ab2e44d22cf4d30d2823 linux-3.0/arch/ia64/include/asm/xen/xencomm.h -201e9bb753b99c25923aa8df86fe6f80 linux-3.0/arch/ia64/include/asm/xen/xcom_hcall.h -8783f4d453134acb01886da4054433d5 linux-3.0/arch/ia64/include/asm/xen/privop.h -ea34212c01dc223b5b25e234a205079b linux-3.0/arch/ia64/include/asm/xen/patchlist.h -7a33dea8a17e0ab0015da84fbc8b3935 linux-3.0/arch/ia64/include/asm/xen/page.h -bceac4cb9e42bac37acfeb918d4e3252 linux-3.0/arch/ia64/include/asm/xen/minstate.h -f289e7a06cedf4a1deb4b8f69bad4279 linux-3.0/arch/ia64/include/asm/xen/irq.h -a42b362571c8c3405a400c0f7fee3220 linux-3.0/arch/ia64/include/asm/xen/interface.h -df9f81231c7465b631042d4cb05241d6 linux-3.0/arch/ia64/include/asm/xen/inst.h -f4776e121c35f2e15e1ad013ae9d43f6 linux-3.0/arch/ia64/include/asm/xen/hypervisor.h -bb7bff0b2c94befeb4e57295f1653a7a linux-3.0/arch/ia64/include/asm/xen/hypercall.h -9cf6d8ca35ac132243e4c9c46b225adc linux-3.0/arch/ia64/include/asm/xen/grant_table.h -60e5ebbe71bba9ef153a4003a79f03c3 linux-3.0/arch/ia64/include/asm/xen/events.h -34af1d4e81ae6b870cbf419dd7b57366 linux-3.0/arch/ia64/include/asm/vga.h -8a1e05ee6a95761384279926f4dd10f5 linux-3.0/arch/ia64/include/asm/uv/uv_mmrs.h -266b58a5196e12a09983825b61425040 linux-3.0/arch/ia64/include/asm/uv/uv_hub.h -6c6b33166cbd33b5da4e538e1bc2aed3 linux-3.0/arch/ia64/include/asm/uv/uv.h -3715ea662a2810b2d4af8ccf113eaf42 linux-3.0/arch/ia64/include/asm/ustack.h -ccf9b415831a04fe100c88a8c5eddf63 linux-3.0/arch/ia64/include/asm/user.h -aa6f46a17cf642fd7680e01252dc89bb linux-3.0/arch/ia64/include/asm/unwind.h -9b0dc072bf482cef88c0e064c79f61f1 linux-3.0/arch/ia64/include/asm/unistd.h -0f79e41193f42a49b2819142abcb7631 linux-3.0/arch/ia64/include/asm/uncached.h -fea00e5b420efc238eb762c12ac8d0a3 linux-3.0/arch/ia64/include/asm/unaligned.h -0b5689a0f6ec2dc42c3dbf9bb7a05bcd linux-3.0/arch/ia64/include/asm/ucontext.h -29e2edda8d658179c1e43f41fd9ad53d linux-3.0/arch/ia64/include/asm/uaccess.h -7023206edd3b9f85686347deac586080 linux-3.0/arch/ia64/include/asm/types.h -8b705b56dc7918808e784a72ecbeb2c9 linux-3.0/arch/ia64/include/asm/topology.h -76ff8bf3409bc62b6602c71f68f59f79 linux-3.0/arch/ia64/include/asm/tlbflush.h -a7ee91f443b0476c3204e6edd6616938 linux-3.0/arch/ia64/include/asm/tlb.h -29d107dde1bb33003d4f3af0035dd84b linux-3.0/arch/ia64/include/asm/timex.h -9e03783e14d0fe6f08e45291d29ac2fb linux-3.0/arch/ia64/include/asm/thread_info.h -999822667943cc0bd90940452b293a00 linux-3.0/arch/ia64/include/asm/termios.h -09c27b45acff4fe95324e35428ad8342 linux-3.0/arch/ia64/include/asm/termbits.h -192beb02e6eaf5b17eae3bd8bc2905e9 linux-3.0/arch/ia64/include/asm/system.h -3d7cbc50394befccadba35bb08e0da22 linux-3.0/arch/ia64/include/asm/syscall.h -cfb70eb908024969acb862635e74c1a3 linux-3.0/arch/ia64/include/asm/sync_bitops.h -bcf6f51f955b72a2ffd220fb3c2e5c75 linux-3.0/arch/ia64/include/asm/swiotlb.h -00eb4747f5e449ff73ea28b094b60a14 linux-3.0/arch/ia64/include/asm/swab.h -ac21f3b987eb9c3f484af9b404aacd2d linux-3.0/arch/ia64/include/asm/string.h -9ad8c1227451f692331310840b887b2f linux-3.0/arch/ia64/include/asm/statfs.h -97414233f1657ecb3c8996d26aee0bf5 linux-3.0/arch/ia64/include/asm/stat.h -ec2216e913a1d00f376b00e5aa3f4407 linux-3.0/arch/ia64/include/asm/spinlock_types.h -f18dc58a5320e7b838441966d43939bd linux-3.0/arch/ia64/include/asm/spinlock.h -f0b74379590e0f5b50c674898d8f47a6 linux-3.0/arch/ia64/include/asm/sparsemem.h -5e8538967160e595e84b2bf6676bcbb5 linux-3.0/arch/ia64/include/asm/sockios.h -f35311220433f6ffef1bc4bfef000fb7 linux-3.0/arch/ia64/include/asm/socket.h -79a75035044b0a754bca2c0522b5f83b linux-3.0/arch/ia64/include/asm/sn/types.h -47586305f087846e81ff8f5f8bfd032e linux-3.0/arch/ia64/include/asm/sn/tiocx.h -8785273baca84a60eea9a5858b6c0061 linux-3.0/arch/ia64/include/asm/sn/tiocp.h -fe365a7c9507cb1b42b8a0335bac19f0 linux-3.0/arch/ia64/include/asm/sn/tioce_provider.h -a8c5b1f960a2a7d955edf9c04be76da0 linux-3.0/arch/ia64/include/asm/sn/tioce.h -54aef7dec5ac696008caa1207698bba3 linux-3.0/arch/ia64/include/asm/sn/tioca_provider.h -1d8c5f05f4cc955e96098fc19da70389 linux-3.0/arch/ia64/include/asm/sn/tioca.h -019a895a2e0f810c17adda70f65d0d10 linux-3.0/arch/ia64/include/asm/sn/sn_sal.h -55213969d3842454fa4cd4a0bbe7e228 linux-3.0/arch/ia64/include/asm/sn/sn_feature_sets.h -c827d6b6fb7a630c03439ad57e5f15e6 linux-3.0/arch/ia64/include/asm/sn/sn_cpuid.h -7f2a8eb4ff9f2bcf3f5c861b808b9491 linux-3.0/arch/ia64/include/asm/sn/sn2/sn_hwperf.h -74496ec52e5571b373cd933e6e52c5d5 linux-3.0/arch/ia64/include/asm/sn/simulator.h -09d83dd6d4eb890e0052590aa2591959 linux-3.0/arch/ia64/include/asm/sn/shubio.h -0c22fe74dc0299c4a9d95db5d06d2c50 linux-3.0/arch/ia64/include/asm/sn/shub_mmr.h -9e99b22432c2f570a6d66f41aa63ced7 linux-3.0/arch/ia64/include/asm/sn/rw_mmr.h -7b901da193c5dda74437a3a1644b01c0 linux-3.0/arch/ia64/include/asm/sn/pic.h -e81047f6023b0a87fd9786f04ab8515d linux-3.0/arch/ia64/include/asm/sn/pda.h -a2a4ffca7f605e56fd80a6f4f41973c0 linux-3.0/arch/ia64/include/asm/sn/pcidev.h -241bc4f3853871961164195db4a5ffdf linux-3.0/arch/ia64/include/asm/sn/pcibus_provider_defs.h -5c6c9662a62bed3fd86dc5c7ba0476f4 linux-3.0/arch/ia64/include/asm/sn/pcibr_provider.h -0f714cc2bb84f4e5c3c1b8bf34aec558 linux-3.0/arch/ia64/include/asm/sn/nodepda.h -6c7c2d4f3204d65e276f5281809bcb02 linux-3.0/arch/ia64/include/asm/sn/mspec.h -17cb23d3a4d66ea1ec028eb1e7b33ff1 linux-3.0/arch/ia64/include/asm/sn/module.h -fe184148faeb5db092e1f5ada6e00af0 linux-3.0/arch/ia64/include/asm/sn/leds.h -6f11a0995b7b992aea0d87fe6eb7b2e7 linux-3.0/arch/ia64/include/asm/sn/l1.h -41224f77fd98f3c94bc483228af46b3e linux-3.0/arch/ia64/include/asm/sn/klconfig.h -d3fa68475035f51ea994ff6f1a43b4e2 linux-3.0/arch/ia64/include/asm/sn/ioc3.h -ef8441c0951b3ca14a383f5617bf3809 linux-3.0/arch/ia64/include/asm/sn/io.h -4c51469beb8aa55251a659aa76f0f2a9 linux-3.0/arch/ia64/include/asm/sn/intr.h -9e48c294cd238cf70e79794adcc19063 linux-3.0/arch/ia64/include/asm/sn/geo.h -12c0bc079e37227d79d47a9ee6c76aa6 linux-3.0/arch/ia64/include/asm/sn/clksupport.h -8de5d3793f15c5ef620156cafd359dd0 linux-3.0/arch/ia64/include/asm/sn/bte.h -c66492dd48e8f72eddad40db0defe247 linux-3.0/arch/ia64/include/asm/sn/arch.h -5f22f2b8cb2678ef23f4d6a66e7a695a linux-3.0/arch/ia64/include/asm/sn/addrs.h -31de2905ae36671c5e039348674916cc linux-3.0/arch/ia64/include/asm/sn/acpi.h -f4d5447419f0b79a2742555e2ee0255a linux-3.0/arch/ia64/include/asm/smp.h -48e42388e40e0c6429485d873b3d2893 linux-3.0/arch/ia64/include/asm/signal.h -9e0f2480d32515e1943f6ed5369592b8 linux-3.0/arch/ia64/include/asm/siginfo.h -1600c64336da5ae9896705a535e5961f linux-3.0/arch/ia64/include/asm/sigcontext.h -169f6e4c0340a39d1e871cba7a5f7512 linux-3.0/arch/ia64/include/asm/shmparam.h -ba8b69431a40f013431f9aff43629487 linux-3.0/arch/ia64/include/asm/shmbuf.h -1bd814f7e062d75583a7f8a7b2df1aab linux-3.0/arch/ia64/include/asm/setup.h -e036f3406a10ccd90228973ffb8e6910 linux-3.0/arch/ia64/include/asm/serial.h -3aeb91afd8b5764474c69fed5374340c linux-3.0/arch/ia64/include/asm/sembuf.h -50839bb97b8ed384ff4bdf15ba93acd1 linux-3.0/arch/ia64/include/asm/segment.h -167ab35dceae88d5af52797682c20a06 linux-3.0/arch/ia64/include/asm/sections.h -984adc549c016967b63b78db52f2a9b2 linux-3.0/arch/ia64/include/asm/scatterlist.h -ac6e5aa43521f5db3ca0ed4b4d5e8a99 linux-3.0/arch/ia64/include/asm/sal.h -afac54ec3279744077aeb621271dfd8c linux-3.0/arch/ia64/include/asm/rwsem.h -b03dbc5d3615cdff47924f6de9d18cea linux-3.0/arch/ia64/include/asm/rse.h -c2cad73aa03aa24a5fdf80db08ce78c0 linux-3.0/arch/ia64/include/asm/resource.h -23e3584ce739c1d88cef41d393c5c2a0 linux-3.0/arch/ia64/include/asm/pvclock-abi.h -aac95e366902baa6c1a70218efc866de linux-3.0/arch/ia64/include/asm/ptrace_offsets.h -c8941fffe177db59fe4c711c5cfdda8a linux-3.0/arch/ia64/include/asm/ptrace.h -67dd2b792e2a2a70e9c23da3a9b1f705 linux-3.0/arch/ia64/include/asm/processor.h -c89a836f1a89d009928306bc51666300 linux-3.0/arch/ia64/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/ia64/include/asm/poll.h -6e78b90ef76198d8ea2030bc68251c3a linux-3.0/arch/ia64/include/asm/pgtable.h -e448bb8325d6d02d804de47627c327a5 linux-3.0/arch/ia64/include/asm/pgalloc.h -a4cbea8159fd4642a8de6881cfd66352 linux-3.0/arch/ia64/include/asm/perfmon_default_smpl.h -7aa7713f284e2b20b5bab8f184520d4b linux-3.0/arch/ia64/include/asm/perfmon.h -4873187fd1e08a815dad47326f20609d linux-3.0/arch/ia64/include/asm/percpu.h -3266439b69836b6427495c9cf255d5dd linux-3.0/arch/ia64/include/asm/pci.h -c83d07b3488a40c17e941f830c828045 linux-3.0/arch/ia64/include/asm/patch.h -bf094c697d587fa11de980fb1909ff10 linux-3.0/arch/ia64/include/asm/parport.h -f669119fe0c6492c651847c4d7e33592 linux-3.0/arch/ia64/include/asm/paravirt_privop.h -9e4b99500c2c50a72ec8d6a312ecdcdd linux-3.0/arch/ia64/include/asm/paravirt_patch.h -fcdffabf62b8e2faeb2ac32a9efeac0e linux-3.0/arch/ia64/include/asm/paravirt.h -e87d3bd217d3b9906d50493329a0f397 linux-3.0/arch/ia64/include/asm/param.h -f99838af935ff3f2cca3a35318353ddb linux-3.0/arch/ia64/include/asm/pal.h -c446828be70ea62703aafb758187affd linux-3.0/arch/ia64/include/asm/page.h -19bc16797c01d850a999538261eb741a linux-3.0/arch/ia64/include/asm/numa.h -9576c5ff31b135b6797a7f92cd2af995 linux-3.0/arch/ia64/include/asm/nodedata.h -080f631aa5be38b314101157a92e2012 linux-3.0/arch/ia64/include/asm/native/pvchk_inst.h -e16458e41ac47d435aa241687f53fb92 linux-3.0/arch/ia64/include/asm/native/patchlist.h -9f63113f91a8ed872962d40dffc1a7d1 linux-3.0/arch/ia64/include/asm/native/irq.h -12ddcd367be28b16f9deffaa50b74ed5 linux-3.0/arch/ia64/include/asm/native/inst.h -dc1758bf128604dced37370da5bb5f90 linux-3.0/arch/ia64/include/asm/mutex.h -81e28e4eda7626401b5d99001366f4ee linux-3.0/arch/ia64/include/asm/msidef.h -652ab53ba06f517dee9b4f227dd35c5c linux-3.0/arch/ia64/include/asm/msgbuf.h -fb095b119d0c53a1f73c1e46b13d937c linux-3.0/arch/ia64/include/asm/module.h -f8828dab53e13dd3d8e9d1b19dabc908 linux-3.0/arch/ia64/include/asm/mmzone.h -a81481e8d490d6ac5bfebde0c82a03e0 linux-3.0/arch/ia64/include/asm/mmu_context.h -8ad1166a512717ba0ae981c86cc8ec94 linux-3.0/arch/ia64/include/asm/mmu.h -519f340c6047d9ab42fa5401fc2636c5 linux-3.0/arch/ia64/include/asm/mman.h -5367c0bd0e340c7a33552efc7a256a12 linux-3.0/arch/ia64/include/asm/meminit.h -957b6e3c1d3d10291fd2b98b38144042 linux-3.0/arch/ia64/include/asm/mca_asm.h -b105f2ac5189cf5d992d9bec086a9e9d linux-3.0/arch/ia64/include/asm/mca.h -eef653b6a4eaa28ff6f2ed4052d5ca94 linux-3.0/arch/ia64/include/asm/mc146818rtc.h -074ceb2e47322257a5218a32997ed5f3 linux-3.0/arch/ia64/include/asm/machvec_xen.h -685a84ed2873803cf5d83d3e479c5b9f linux-3.0/arch/ia64/include/asm/machvec_uv.h -92ffcc31b742258b7d88ebaf076e4dd5 linux-3.0/arch/ia64/include/asm/machvec_sn2.h -d6e8ed2453d8ac93cb3e8da01169e607 linux-3.0/arch/ia64/include/asm/machvec_init.h -e55902dd5c5e6e470c7a5ec1a561cf92 linux-3.0/arch/ia64/include/asm/machvec_hpzx1_swiotlb.h -b8567366ee1e1dd5793f259d4c324148 linux-3.0/arch/ia64/include/asm/machvec_hpzx1.h -0f4be8cd1182b1f5bccb9b24d34f65af linux-3.0/arch/ia64/include/asm/machvec_hpsim.h -b369bed20b64f14daffe7fe601d1f68e linux-3.0/arch/ia64/include/asm/machvec_dig_vtd.h -95b5b8faf7e5233dd5a2c85d70eb30b5 linux-3.0/arch/ia64/include/asm/machvec_dig.h -93701d92219c4b2f01c5ec5d7762dab3 linux-3.0/arch/ia64/include/asm/machvec.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/ia64/include/asm/local64.h -dd5c2452f777c57e923e1b3de9ac2c14 linux-3.0/arch/ia64/include/asm/local.h -d6d70484d24b3c7ba1292528be8b5612 linux-3.0/arch/ia64/include/asm/linkage.h -ee0d961e63ae6121dcd527b80da6e6db linux-3.0/arch/ia64/include/asm/libata-portmap.h -f77a8abfbf30f7b7baed8f291fc809c3 linux-3.0/arch/ia64/include/asm/kvm_para.h -ed6916dd1b13f65e96ecc5694db72835 linux-3.0/arch/ia64/include/asm/kvm_host.h -0b5619373234cc4a5b73f9928693c0fc linux-3.0/arch/ia64/include/asm/kvm.h -1528557795090111da63ca145dd303ee linux-3.0/arch/ia64/include/asm/kregs.h -9626e5666d2b9ef1d83ee052af66b894 linux-3.0/arch/ia64/include/asm/kprobes.h -d7e70a675e9824e654d5febae70e0585 linux-3.0/arch/ia64/include/asm/kmap_types.h -c88c70dfdc68ccd51c909f1e2273ce82 linux-3.0/arch/ia64/include/asm/kexec.h -aeb9d512dc201706350355d4e47aef44 linux-3.0/arch/ia64/include/asm/kdebug.h -8e8cc482720ba8f27ee2757a0cb2b61c linux-3.0/arch/ia64/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/ia64/include/asm/irq_regs.h -9e2bb98024e9ccd9c2a82a4e7309a4c8 linux-3.0/arch/ia64/include/asm/irq.h -b7a737a807022da51640fabafa7c0dff linux-3.0/arch/ia64/include/asm/ipcbuf.h -740a6266e711b702975b98f778221c65 linux-3.0/arch/ia64/include/asm/iosapic.h -fe9b72233207f6f510c856b110f4198c linux-3.0/arch/ia64/include/asm/iommu_table.h -27771718124c3c82bc6cf0ed3aa3364b linux-3.0/arch/ia64/include/asm/iommu.h -4b36cd7f0ec580ad4a8fb1dafc3778de linux-3.0/arch/ia64/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/ia64/include/asm/ioctl.h -a19f461a8dbca16198b595ce60dad62c linux-3.0/arch/ia64/include/asm/io.h -4ac85031f1c8dfd3383f97715cdd1cb6 linux-3.0/arch/ia64/include/asm/intrinsics.h -2f7eb203bfb75587c81161830414f596 linux-3.0/arch/ia64/include/asm/intel_intrin.h -9a29a75727a9eb2072fcd71005c6dd9a linux-3.0/arch/ia64/include/asm/idle.h -30b99bc04ba204a5133c01bca20e1a44 linux-3.0/arch/ia64/include/asm/ia64regs.h -456a46e892c7c2038314aec130df5d17 linux-3.0/arch/ia64/include/asm/hw_irq.h -faa7ccd18e727e0a49589b8ea7e63996 linux-3.0/arch/ia64/include/asm/hugetlb.h -8eb110f91d3666ec9830c920cafc1db0 linux-3.0/arch/ia64/include/asm/hpsim.h -54352bc82841563242e9dc836c866b89 linux-3.0/arch/ia64/include/asm/hardirq.h -e9b1623af915bedbff1ad56c18c03092 linux-3.0/arch/ia64/include/asm/gcc_intrin.h -71a36aee621f84178573e7e20fbb7a1f linux-3.0/arch/ia64/include/asm/futex.h -2ce8fc37a40b288239d9f3bbbc063123 linux-3.0/arch/ia64/include/asm/ftrace.h -837e051d2c9b2b65f6874b50005535e4 linux-3.0/arch/ia64/include/asm/fpu.h -a4dc4a44e96cbf979c3a5897a25b31f6 linux-3.0/arch/ia64/include/asm/fpswa.h -4659103f3d431fd83c6f0ffa4238ef01 linux-3.0/arch/ia64/include/asm/fcntl.h -b45f1e0257c187b21bea5a5a926570fc linux-3.0/arch/ia64/include/asm/fb.h -8b42888e42d1ce8b1debb3542e316f25 linux-3.0/arch/ia64/include/asm/esi.h -05366a204880e8cf1fcd3e61ef3cfa41 linux-3.0/arch/ia64/include/asm/errno.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/ia64/include/asm/emergency-restart.h -c0e8885e71306fb3f63439c45cfd188c linux-3.0/arch/ia64/include/asm/elf.h -f33cbce820e080e4ab207d05a87870e8 linux-3.0/arch/ia64/include/asm/dmi.h -8bc25a315c199dd5ccf41fcd2efce86a linux-3.0/arch/ia64/include/asm/dma.h -2a574f0b610c033f2ebbcf42243d864e linux-3.0/arch/ia64/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/ia64/include/asm/div64.h -769edfbb9b6eae1d0a1a803796fbb040 linux-3.0/arch/ia64/include/asm/device.h -562f1df5cac9a0ad1e651004cea28acc linux-3.0/arch/ia64/include/asm/delay.h -20bb3b86d8d872cd9d00795ff070a8ac linux-3.0/arch/ia64/include/asm/cyclone.h -d48101bbfa43726af76c2ecc2bc8f7a1 linux-3.0/arch/ia64/include/asm/current.h -d3d443eaf4a2b03b2e9ae4e1cc22b01a linux-3.0/arch/ia64/include/asm/cputime.h -624965c2c8e42f8694698335ceb6b09e linux-3.0/arch/ia64/include/asm/cpu.h -8612bfdedf2a5b8df57e2d4d06045474 linux-3.0/arch/ia64/include/asm/checksum.h -d0d16943f86e56962f0c3f43316aa453 linux-3.0/arch/ia64/include/asm/cacheflush.h -6b9c21161fbaf0de22dbd6ee0723df88 linux-3.0/arch/ia64/include/asm/cache.h -ee0de336cf41ea5d5041a65ca94fd3d1 linux-3.0/arch/ia64/include/asm/byteorder.h -858ce7d465d775515a6764683b99dc7c linux-3.0/arch/ia64/include/asm/bugs.h -39bb445c69d4ee2c07f86059e04dde5c linux-3.0/arch/ia64/include/asm/bug.h -d1d8cab45714b0c8a9f0e484bf1448e4 linux-3.0/arch/ia64/include/asm/break.h -db574c85826e81c279efdee7be1bcb8f linux-3.0/arch/ia64/include/asm/bitsperlong.h -2efdf757491475c4c19183716806867d linux-3.0/arch/ia64/include/asm/bitops.h -0fa5c345c39fa5fd65041f6b1c4c3dba linux-3.0/arch/ia64/include/asm/auxvec.h -7ec8b7ba21d22bd3a45081c45eed3775 linux-3.0/arch/ia64/include/asm/atomic.h -c2844b4738b5ef8f79dd20ebe1ea4a21 linux-3.0/arch/ia64/include/asm/asmmacro.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/ia64/include/asm/asm-offsets.h -71d101ae46631bebc81c495db110a8cb linux-3.0/arch/ia64/include/asm/agp.h -26ab69b9bb3a2f3da7533719b1c77cce linux-3.0/arch/ia64/include/asm/acpi.h -b17974a93b6ad796d3cade64a278de80 linux-3.0/arch/ia64/include/asm/acpi-ext.h -14c1182863b8349a235101658d2f6647 linux-3.0/arch/ia64/include/asm/Kbuild -2c1b45bf232e0a28e2f84a8e02b2cd65 linux-3.0/arch/ia64/hp/zx1/hpzx1_swiotlb_machvec.c -82a6afbc23cd68b85bcda0e7bcf06422 linux-3.0/arch/ia64/hp/zx1/hpzx1_machvec.c -4d4627bd03e6eabcfbf9528418169338 linux-3.0/arch/ia64/hp/zx1/Makefile -8f5760a6cb315fc8f9c614ab87b5ef8e linux-3.0/arch/ia64/hp/sim/simserial.c -170320ae9c794aed1aeec420f252de77 linux-3.0/arch/ia64/hp/sim/simscsi.c -8fcf1624a6e2d899d7a024558108b130 linux-3.0/arch/ia64/hp/sim/simeth.c -16c1cf6451258a03956153700ccb2a02 linux-3.0/arch/ia64/hp/sim/hpsim_ssc.h -18855854e66205c1d5fee751f955cc7b linux-3.0/arch/ia64/hp/sim/hpsim_setup.c -e55cce2667a74755bd8576c61d6eb79c linux-3.0/arch/ia64/hp/sim/hpsim_machvec.c -383026d58d238621512c5fe75bd48721 linux-3.0/arch/ia64/hp/sim/hpsim_irq.c -8d24128239cde00fa940e6563df25dcf linux-3.0/arch/ia64/hp/sim/hpsim_console.c -f591279027531ac54879add1df187c50 linux-3.0/arch/ia64/hp/sim/hpsim.S -25fbec17120b157d78f84a9e63b32136 linux-3.0/arch/ia64/hp/sim/boot/ssc.h -72b2001e42c8b700ef97014bc98cb94b linux-3.0/arch/ia64/hp/sim/boot/fw-emu.c -68b709023ef36dccd20abdf8a4bde58a linux-3.0/arch/ia64/hp/sim/boot/bootloader.lds -a462e68c95799ef2a62a4f8daebc618a linux-3.0/arch/ia64/hp/sim/boot/bootloader.c -deefa95594e6f97fef80dc33c7c7299e linux-3.0/arch/ia64/hp/sim/boot/boot_head.S -c7ea0c32626990f79fffa3c0711aaee6 linux-3.0/arch/ia64/hp/sim/boot/Makefile -3db8689df45b20140fc57d6c76a3b9aa linux-3.0/arch/ia64/hp/sim/Makefile -88ce7c8cf059c13651af41ac41bb869f linux-3.0/arch/ia64/hp/sim/Kconfig -d7434cf1794bfb9e71f3595b837994b4 linux-3.0/arch/ia64/hp/common/sba_iommu.c -d7748ea43675946a293a3570c78b0f04 linux-3.0/arch/ia64/hp/common/hwsw_iommu.c -b5becf56ed2d2b20275ab25ec46f411b linux-3.0/arch/ia64/hp/common/aml_nfw.c -585c6fd0c682f1007fc27c7c99820c40 linux-3.0/arch/ia64/hp/common/Makefile -ff3f2449176f9037c008484180f505b2 linux-3.0/arch/ia64/dig/setup.c -4bbf2f2fbc2c358a7c88611a88457c71 linux-3.0/arch/ia64/dig/machvec_vtd.c -ac789c24d9a2eba62d2942d0344817f1 linux-3.0/arch/ia64/dig/machvec.c -aa16cd36b083e238afdae374ec49618a linux-3.0/arch/ia64/dig/Makefile -75b1d51a0177fb53f29047cd7ba44846 linux-3.0/arch/ia64/configs/zx1_defconfig -7a741e8d9409f16448151a5d571e787e linux-3.0/arch/ia64/configs/xen_domu_defconfig -6708e499653133a5c8f28f08dd6ef126 linux-3.0/arch/ia64/configs/tiger_defconfig -111ebacea695e37f6dfb8dc919b5a4e7 linux-3.0/arch/ia64/configs/sim_defconfig -bfbbc9d3265be1422562cbc5dc71ffd6 linux-3.0/arch/ia64/configs/gensparse_defconfig -373ae469b1f5919ae5c9489c563352b1 linux-3.0/arch/ia64/configs/generic_defconfig -98e9701872fbb2641a97feed9f619dc1 linux-3.0/arch/ia64/configs/bigsur_defconfig -a812977349abfbb82acb34c7a9f5ece8 linux-3.0/arch/ia64/Makefile -653f30cb2b5de8a9ef5719bc44b675c8 linux-3.0/arch/ia64/Kconfig.debug -7311d51107bdc8cecbd18c7c1f42cede linux-3.0/arch/ia64/Kconfig -f1212a4c7c9361c940d7d31f2ff7916b linux-3.0/arch/h8300/platform/h8s/ptrace_h8s.c -56eade0ec9b9c48e99c2a50b89882106 linux-3.0/arch/h8300/platform/h8s/irq.c -630571d7425444a37fd2116abd154923 linux-3.0/arch/h8300/platform/h8s/generic/crt0_rom.S -ef2088d99111f4d06e49d5b683b89844 linux-3.0/arch/h8300/platform/h8s/generic/crt0_ram.S -b30b8ad7880c4234517fc22c7e359c64 linux-3.0/arch/h8300/platform/h8s/generic/Makefile -72d595ccbb2efed7cd5fbdf0cc594ce4 linux-3.0/arch/h8300/platform/h8s/edosk2674/crt0_rom.S -6603f7923d9f19b31b5a9d4420aefa6d linux-3.0/arch/h8300/platform/h8s/edosk2674/crt0_ram.S -312622a42105ea97b971ea3c207ead61 linux-3.0/arch/h8300/platform/h8s/edosk2674/Makefile -dd5c1a05415acf87ee90881e79649155 linux-3.0/arch/h8300/platform/h8s/Makefile -3ab7d3befacd50fe93f61f7215451554 linux-3.0/arch/h8300/platform/h8300h/ptrace_h8300h.c -abad20a29bd47750207de3587956c5d8 linux-3.0/arch/h8300/platform/h8300h/irq.c -9109814b708fab271379fe2fa911f305 linux-3.0/arch/h8300/platform/h8300h/h8max/crt0_ram.S -708ba2a6323c690c80c6ee4c7089d5dc linux-3.0/arch/h8300/platform/h8300h/h8max/Makefile -7931c01d723066b817976b274cb0f770 linux-3.0/arch/h8300/platform/h8300h/generic/crt0_rom.S -55a91f18cb51f787de71607cbc68029c linux-3.0/arch/h8300/platform/h8300h/generic/crt0_ram.S -b129aa836199bd5afc6796a69b437a0c linux-3.0/arch/h8300/platform/h8300h/generic/Makefile -2d7551f213ccda17dd53a8a45abd3980 linux-3.0/arch/h8300/platform/h8300h/aki3068net/crt0_ram.S -708ba2a6323c690c80c6ee4c7089d5dc linux-3.0/arch/h8300/platform/h8300h/aki3068net/Makefile -b9c4302acc6f0aa5cba35a6c5d46eaae linux-3.0/arch/h8300/platform/h8300h/Makefile -fbf60d0f34857c9919b19ccffddfa145 linux-3.0/arch/h8300/mm/memory.c -94a03bb9b79ee1b28ad6de2e9a574a8d linux-3.0/arch/h8300/mm/kmap.c -93d5a0be6ea627ae093cc1689494713e linux-3.0/arch/h8300/mm/init.c -659b5328170c3c3d8200fd2df727643b linux-3.0/arch/h8300/mm/fault.c -85f7d8b8fa2394d44be690b393a40984 linux-3.0/arch/h8300/mm/Makefile -7a4c868d52ac542697153df6c6a477bd linux-3.0/arch/h8300/lib/romfs.S -f8b7adfe524d22e13b472e3d0f98f4b1 linux-3.0/arch/h8300/lib/memset.S -7fc86c6eff24e0b79e660ec3491acf12 linux-3.0/arch/h8300/lib/memcpy.S -2ac14901b5309de65037154e5b6632f1 linux-3.0/arch/h8300/lib/checksum.c -48431b8c9849621fd58e407d4a8196bc linux-3.0/arch/h8300/lib/ashrdi3.c -891cab04fe803c42298ad029433d0d24 linux-3.0/arch/h8300/lib/abs.S -83637930484dda968404d8dfd57c8531 linux-3.0/arch/h8300/lib/Makefile -bd1ce8905c2cd146a23620fb8c503b99 linux-3.0/arch/h8300/kernel/vmlinux.lds.S -f43bf7c96664da4104aef329bfe03c2b linux-3.0/arch/h8300/kernel/traps.c -280acd731b8fe39d0f0a6767ff923fab linux-3.0/arch/h8300/kernel/timer/tpu.c -c0b086ccd286695ac90a6a73e4a17d9c linux-3.0/arch/h8300/kernel/timer/timer8.c -9b27d7a11f473b973e248588bede2a71 linux-3.0/arch/h8300/kernel/timer/timer16.c -883dfc16523578a0045bf62c1beb70cb linux-3.0/arch/h8300/kernel/timer/itu.c -1a4145614b9f2fa0a6bbaea47461d595 linux-3.0/arch/h8300/kernel/timer/Makefile -25e5a108c53d9109735b5be9953be618 linux-3.0/arch/h8300/kernel/time.c -42ec24069fa7936f71c316bdb92efdac linux-3.0/arch/h8300/kernel/syscalls.S -81ed3e20cbda5874a58a2fbbc378718f linux-3.0/arch/h8300/kernel/sys_h8300.c -cda452391e394ebfd9fcada807d48bdc linux-3.0/arch/h8300/kernel/signal.c -f6001467fc689a3346d6f87e7e07d1da linux-3.0/arch/h8300/kernel/setup.c -b35ff90690196e24467e7dfe1e424663 linux-3.0/arch/h8300/kernel/ptrace.c -ac2b83bdcb366017d10e235e36dfc244 linux-3.0/arch/h8300/kernel/process.c -703b5a62ae5890c1f00b6efea56fcf32 linux-3.0/arch/h8300/kernel/module.c -bcbfbe24db35ab4d57667fdc4c2cb6c3 linux-3.0/arch/h8300/kernel/irq.c -38c3890885c6750cea12b73b5ba2bfc8 linux-3.0/arch/h8300/kernel/init_task.c -fa9c646a4bbf9017e67a8da4c752f481 linux-3.0/arch/h8300/kernel/h8300_ksyms.c -6f5f9b01ed5c69e1b65baded2cd6e530 linux-3.0/arch/h8300/kernel/gpio.c -151280c931bbeeeb976a56581ebd7b41 linux-3.0/arch/h8300/kernel/entry.S -bd1da6d448814c085545a9fb298c49b7 linux-3.0/arch/h8300/kernel/asm-offsets.c -a2d75dba8507ea73279f234f82596c67 linux-3.0/arch/h8300/kernel/Makefile -ebc52b14376ac44a708b322b38384d89 linux-3.0/arch/h8300/include/asm/virtconvert.h -5044e9c4aca0a059ae2ec077292b14d7 linux-3.0/arch/h8300/include/asm/user.h -f5b636f6dcbd8bd7470213556e5ee3bd linux-3.0/arch/h8300/include/asm/unistd.h -ad1bebf04725dbb59b2098582571f001 linux-3.0/arch/h8300/include/asm/unaligned.h -8f542199f241f182ee09b48b906fff00 linux-3.0/arch/h8300/include/asm/ucontext.h -dd4a49b15fcf171fd1948867575f255e linux-3.0/arch/h8300/include/asm/uaccess.h -52d890d93ac5a60f70eb0a81daf53932 linux-3.0/arch/h8300/include/asm/types.h -fdedac9c35e643e1cd3246ada7579248 linux-3.0/arch/h8300/include/asm/traps.h -a56300e1a3c77091c8e9675f913a326d linux-3.0/arch/h8300/include/asm/topology.h -01c38864777f8972319c2a4444d5d96a linux-3.0/arch/h8300/include/asm/tlbflush.h -79747ddc2d7a655c22e2fb19d992c3cd linux-3.0/arch/h8300/include/asm/tlb.h -3fc93bb5cf9a389060c4f9b5052189f7 linux-3.0/arch/h8300/include/asm/timex.h -b6d26283c4e9daf973f07767e48beea9 linux-3.0/arch/h8300/include/asm/timer.h -f420249dc94fe8bcbd4a23cd3bfa8a9b linux-3.0/arch/h8300/include/asm/thread_info.h -0a618bd1ab67985f83b239c4b371a863 linux-3.0/arch/h8300/include/asm/termios.h -232f6af403356cb44cb5a7e11ecbe6ee linux-3.0/arch/h8300/include/asm/termbits.h -38938dde78c75b8cbc9d6350c22da9df linux-3.0/arch/h8300/include/asm/target_time.h -a2c360226513f2d44aaed485039a7d1e linux-3.0/arch/h8300/include/asm/system.h -9365e189478127202f32e4752b64632a linux-3.0/arch/h8300/include/asm/swab.h -63e48ee36886b52fbbf7ac9f3d19b01e linux-3.0/arch/h8300/include/asm/string.h -7ddc5e15c5ddcec8e545624da7dfa572 linux-3.0/arch/h8300/include/asm/statfs.h -7477ef366bc335830d99f596db7222e0 linux-3.0/arch/h8300/include/asm/stat.h -3a2944447830eee2c662799e2e3e4fcf linux-3.0/arch/h8300/include/asm/spinlock.h -c7fd3ff602e8c52694fda9533b256da8 linux-3.0/arch/h8300/include/asm/sockios.h -2269d897194c5e66c5f6d3a75f244f42 linux-3.0/arch/h8300/include/asm/socket.h -35974b54ca0d7d251c9a2256498e7989 linux-3.0/arch/h8300/include/asm/smp.h -f3b9da67bbcb33f00e77d1081c740056 linux-3.0/arch/h8300/include/asm/signal.h -5028ea71c19799cc290b6bf348c40244 linux-3.0/arch/h8300/include/asm/siginfo.h -266cecc1c94ba9115fb836275c12b106 linux-3.0/arch/h8300/include/asm/sigcontext.h -3917b02414d25354d630524414d6b9f5 linux-3.0/arch/h8300/include/asm/shmparam.h -d6e61125dd5aaa43f274cfa1d83b43d1 linux-3.0/arch/h8300/include/asm/shmbuf.h -aa6cfd16bf563b08f638392dacbbeb2a linux-3.0/arch/h8300/include/asm/shm.h -175f41d7a94ce27d449292cb29bd6c2d linux-3.0/arch/h8300/include/asm/sh_bios.h -c73342d8abcd1b5d95343f7776e186cf linux-3.0/arch/h8300/include/asm/setup.h -34f96b867bbdff93181cb156f8dd80ad linux-3.0/arch/h8300/include/asm/sembuf.h -98ea0f5e9bb90a2db42f626937bc2b82 linux-3.0/arch/h8300/include/asm/segment.h -b6b6a3108d65b09c6391decf8fa654c1 linux-3.0/arch/h8300/include/asm/sections.h -db22463d0327d155a11c8c0480cb0cd7 linux-3.0/arch/h8300/include/asm/scatterlist.h -ca5194f9ca981de7233db00093b54f30 linux-3.0/arch/h8300/include/asm/resource.h -6b0bc4ecd19b4683c954458d1b98b0f2 linux-3.0/arch/h8300/include/asm/regs306x.h -14392988ae81728db9b0ebf79ebc81dc linux-3.0/arch/h8300/include/asm/regs267x.h -a40be5d641ce082be2cdfe2e661075a3 linux-3.0/arch/h8300/include/asm/ptrace.h -643529d0a9f5db76ae8fde4e73969630 linux-3.0/arch/h8300/include/asm/processor.h -c156b7585c20e18682f4889001e94fcc linux-3.0/arch/h8300/include/asm/posix_types.h -b66454914c95ffb9ff7e823e8b8a36bb linux-3.0/arch/h8300/include/asm/poll.h -5d6af3b93451d926af0f98c3e9689386 linux-3.0/arch/h8300/include/asm/pgtable.h -0f699bf5ac662ca4f4cfcdfa1ed414e4 linux-3.0/arch/h8300/include/asm/pgalloc.h -80b2dd5329232cfd2266399eb1f7675b linux-3.0/arch/h8300/include/asm/percpu.h -8fc7b72f969dd0bc27fc6456234bd648 linux-3.0/arch/h8300/include/asm/pci.h -2ccb27d14de3ff58b7575f1f777fa00b linux-3.0/arch/h8300/include/asm/param.h -13a519884a92a66d21b8859f854c5b85 linux-3.0/arch/h8300/include/asm/page_offset.h -132707e4a7487198bbc07bf01c9b5af2 linux-3.0/arch/h8300/include/asm/page.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/h8300/include/asm/mutex.h -d2d3cfdab2b95a57503904c5b4b8e5ad linux-3.0/arch/h8300/include/asm/msgbuf.h -be74f2163a18b5e2dae32a07cda50820 linux-3.0/arch/h8300/include/asm/module.h -9700191b32fee087cff739fee6d078df linux-3.0/arch/h8300/include/asm/mmu_context.h -ebfc6583009fb6dfba800e06c707fd09 linux-3.0/arch/h8300/include/asm/mmu.h -c10dfdbe274b25756fe8f9900e428096 linux-3.0/arch/h8300/include/asm/mman.h -7dcd8b67b64b342547e3d251c3a7ff08 linux-3.0/arch/h8300/include/asm/mc146818rtc.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/h8300/include/asm/local64.h -344c9e834d6fd2abcc448dcd8abe4325 linux-3.0/arch/h8300/include/asm/local.h -7773aaf0da8a335c1dd098d921a8fe17 linux-3.0/arch/h8300/include/asm/linkage.h -4bab16f2a42d31c83dd9dd63e8dee10b linux-3.0/arch/h8300/include/asm/kmap_types.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/h8300/include/asm/kdebug.h -190fe34af65a7719321d9937af852831 linux-3.0/arch/h8300/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/h8300/include/asm/irq_regs.h -429aca0ab6149849973c943fab201c6e linux-3.0/arch/h8300/include/asm/irq.h -9e4ea2f7a3e36fdbd9569d497205722e linux-3.0/arch/h8300/include/asm/ipcbuf.h -45bb0273a677290a71724416c68e69d5 linux-3.0/arch/h8300/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/h8300/include/asm/ioctl.h -ffa1e4752c742e85ca1deeaa5d430192 linux-3.0/arch/h8300/include/asm/io.h -a0b112a516933ef09c6bd170f39c2483 linux-3.0/arch/h8300/include/asm/hw_irq.h -63acc7f292ef60d3bc06a83a0e147444 linux-3.0/arch/h8300/include/asm/hardirq.h -b6b18c6f9463be33364522fed3abcd18 linux-3.0/arch/h8300/include/asm/gpio.h -228b42e1213f6ee69a59695b054ab093 linux-3.0/arch/h8300/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/h8300/include/asm/ftrace.h -39f38659d245ef21ecec095dc107eb8f linux-3.0/arch/h8300/include/asm/fpu.h -9ad0cb594715fe7453e5909b358be5ae linux-3.0/arch/h8300/include/asm/flat.h -7c74a33cbc615e8bcc911681ef701024 linux-3.0/arch/h8300/include/asm/fcntl.h -5b6b31d728ed2ed0df73c56676fdc68f linux-3.0/arch/h8300/include/asm/fb.h -c791f362774b58831eac00103a1ff9d2 linux-3.0/arch/h8300/include/asm/errno.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/h8300/include/asm/emergency-restart.h -1d332a64dabaf921a7b05475691c30fc linux-3.0/arch/h8300/include/asm/elf.h -0922fc2d518dc01acd6967de10b1b2d5 linux-3.0/arch/h8300/include/asm/dma.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/h8300/include/asm/div64.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/h8300/include/asm/device.h -09d06dc3a7fc55c6fcaaf3aa7a615120 linux-3.0/arch/h8300/include/asm/delay.h -680057ea6d479b86d9178ff53db50312 linux-3.0/arch/h8300/include/asm/dbg.h -ce785e055bd73285386c06ef49f46031 linux-3.0/arch/h8300/include/asm/current.h -40a4b64a5cae1dd1cc38438b56ba9557 linux-3.0/arch/h8300/include/asm/cputime.h -e4a8bfcfb97b984a393064a8a95b6d8f linux-3.0/arch/h8300/include/asm/checksum.h -c07a9ec035ff62e28595671f47ce9ab6 linux-3.0/arch/h8300/include/asm/cacheflush.h -92ede7f5b79f236dc815120e599b2509 linux-3.0/arch/h8300/include/asm/cachectl.h -82c484639c60452821595927ef954b61 linux-3.0/arch/h8300/include/asm/cache.h -c45279a02a72c04fd0775c1ed3fec177 linux-3.0/arch/h8300/include/asm/byteorder.h -288dd74091d34993a16c50c52ee4679b linux-3.0/arch/h8300/include/asm/bugs.h -7588e77522e9e7f04ff9b51b29ac64e0 linux-3.0/arch/h8300/include/asm/bug.h -6ccfa6c97d152db337521cd1ac2c53e8 linux-3.0/arch/h8300/include/asm/bootinfo.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/h8300/include/asm/bitsperlong.h -ec355349224169c67d3c75754209af0c linux-3.0/arch/h8300/include/asm/bitops.h -10f03d17bf844414dffa8d9861db4b44 linux-3.0/arch/h8300/include/asm/auxvec.h -572705217a4ff2c3ac28fb66a0a083bb linux-3.0/arch/h8300/include/asm/atomic.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/h8300/include/asm/asm-offsets.h -0c015deadbcb4a30e97aff7c219e03bd linux-3.0/arch/h8300/include/asm/Kbuild -e7770359d6c3d5e0fd492b32edd09ab3 linux-3.0/arch/h8300/defconfig -4511005846360990b98ecb898c4673c0 linux-3.0/arch/h8300/boot/compressed/vmlinux.scr -370d4a49a6302f81b0cbc0c05f8c58bb linux-3.0/arch/h8300/boot/compressed/vmlinux.lds -9ab126a24448c1d7efd43d914fe54332 linux-3.0/arch/h8300/boot/compressed/misc.c -fe949237f8233ad7319bcf0f315b1c2d linux-3.0/arch/h8300/boot/compressed/head.S -d1a7f4c1b5f380387a554c948a1edc44 linux-3.0/arch/h8300/boot/compressed/Makefile -760546a2948a98705cd8e35d8bcd54e9 linux-3.0/arch/h8300/boot/Makefile -1932b4e5bebaeb086ca8d87257531b78 linux-3.0/arch/h8300/README -8af7e8e560139291161efa10a60d73a4 linux-3.0/arch/h8300/Makefile -c94de3a5e44e663f0fd148ce8e45dff3 linux-3.0/arch/h8300/Kconfig.ide -62d5da290a072acb1d366940d7bc1f04 linux-3.0/arch/h8300/Kconfig.debug -fa6df394f1807de9d69f4d5584d9821d linux-3.0/arch/h8300/Kconfig.cpu -8b7e6aaf7279ba6eded840802f1e87cf linux-3.0/arch/h8300/Kconfig -df97fa8f925c82e722146023eb15cef9 linux-3.0/arch/frv/mm/tlb-miss.S -25c1f0795296d2b7897b70eb5f72325f linux-3.0/arch/frv/mm/tlb-flush.S -e300ffbd4c25cd8c4393d86ad0271901 linux-3.0/arch/frv/mm/pgalloc.c -ac57376ec0a2e11d20a610ef28f9e356 linux-3.0/arch/frv/mm/mmu-context.c -3645435a2a9200579823f9dce98555cd linux-3.0/arch/frv/mm/kmap.c -73f0454e81e8bf6ab541db683e820b58 linux-3.0/arch/frv/mm/init.c -12ba9db7d910e41250fbaab9447ebc5b linux-3.0/arch/frv/mm/highmem.c -3410e42db4b3a6d19751d6d9aab34562 linux-3.0/arch/frv/mm/fault.c -b77c3633fe4a6d0579c87fa181df0998 linux-3.0/arch/frv/mm/extable.c -c38597e8f46235d353379494988c76e6 linux-3.0/arch/frv/mm/elf-fdpic.c -cb2f22b266f0d472651cd4a8bb439271 linux-3.0/arch/frv/mm/dma-alloc.c -a15dd0ed0b86a4ca3ef6a2a57b952885 linux-3.0/arch/frv/mm/cache-page.c -89d356c495fd76412d269a9150f6f064 linux-3.0/arch/frv/mm/Makefile -bd7167da450faccd63bc14a5dc217f22 linux-3.0/arch/frv/mb93090-mb00/pci-vdk.c -3af7faae5dd18b856dd7755e4e9b256f linux-3.0/arch/frv/mb93090-mb00/pci-irq.c -58cae16cdd384035aeed7c46bfab12ec linux-3.0/arch/frv/mb93090-mb00/pci-iomap.c -f5b586cf38975922934eae9696abef75 linux-3.0/arch/frv/mb93090-mb00/pci-frv.h -66d6086589ca9ca4a7a1a142e4ec3b35 linux-3.0/arch/frv/mb93090-mb00/pci-frv.c -75c771996292a594e020456f695f17e5 linux-3.0/arch/frv/mb93090-mb00/pci-dma.c -c7a970676ca43735f806fb8b86e9b197 linux-3.0/arch/frv/mb93090-mb00/pci-dma-nommu.c -b9742b259bfbcda2a7be1b741d752d68 linux-3.0/arch/frv/mb93090-mb00/flash.c -cde75fc56320e05e70bd437448413729 linux-3.0/arch/frv/mb93090-mb00/Makefile -14008b48e3f126b163a4e0b95df2010e linux-3.0/arch/frv/lib/outsl_sw.S -a10151270d746d26e86ccd60abe5cc6d linux-3.0/arch/frv/lib/outsl_ns.S -0218cda1ae64a6b03ceaea691aecc3be linux-3.0/arch/frv/lib/memset.S -6d70206805b6507dfd791ef30a5decf8 linux-3.0/arch/frv/lib/memcpy.S -b2aa4d1422fb360c0cdb47f4dbdd25ec linux-3.0/arch/frv/lib/insl_sw.S -6c4270e7487d2067bdd9ab47d6eb7c14 linux-3.0/arch/frv/lib/insl_ns.S -121e644ca894bc16284f15faf6f3cc81 linux-3.0/arch/frv/lib/checksum.c -52ade86b822c1f5d41c140016d393900 linux-3.0/arch/frv/lib/cache.S -c3bb775d1cbd200c171bb6e6be981843 linux-3.0/arch/frv/lib/atomic64-ops.S -4c1f9de665eff2686b82401eaf1e212c linux-3.0/arch/frv/lib/atomic-ops.S -6496eda126e5e51822974f4cd1c1458d linux-3.0/arch/frv/lib/__ucmpdi2.S -425aa5603b247770a433103f6d6e72f3 linux-3.0/arch/frv/lib/__negdi2.S -1a56e67376a4e3520df0031ce09f7c38 linux-3.0/arch/frv/lib/__muldi3.S -4bd5a16be91a74369a1c24f0203547cd linux-3.0/arch/frv/lib/__lshrdi3.S -625e915be4c053c2aedd02608fea3660 linux-3.0/arch/frv/lib/__ashrdi3.S -8e31addd89c8411ed6a590108229e91b linux-3.0/arch/frv/lib/__ashldi3.S -40c9165e73f13331ae444d14aa9ebeee linux-3.0/arch/frv/lib/Makefile -47bab4afd7bc7f7af86833df1873fb99 linux-3.0/arch/frv/kernel/vmlinux.lds.S -4e146c2843fda712bbdb79be4d5b5620 linux-3.0/arch/frv/kernel/uaccess.c -a4a32741d7c85e4c3f95bf072e02ea48 linux-3.0/arch/frv/kernel/traps.c -e8d72bf1e43d0835b50c0303899b915b linux-3.0/arch/frv/kernel/time.c -5850877dfdfc14d5ece0cd34ac5f7fe8 linux-3.0/arch/frv/kernel/sysctl.c -658183dedccd413af23a333dcfc36945 linux-3.0/arch/frv/kernel/sys_frv.c -0dc17104b01117a52287f4154d8077e7 linux-3.0/arch/frv/kernel/switch_to.S -cbb617f637e9e287a5861de78f6b4cf9 linux-3.0/arch/frv/kernel/sleep.S -17acdcbea5d5168ba95ca43447541c87 linux-3.0/arch/frv/kernel/signal.c -94f7c8dd6d377c0e87355135967abf4b linux-3.0/arch/frv/kernel/setup.c -aafac85a1781cd6750df193c42d293e0 linux-3.0/arch/frv/kernel/ptrace.c -512ca2eb7a42ca04cfd874e1edfa42d6 linux-3.0/arch/frv/kernel/process.c -59ddb3ee00862e00b4afbcf45036bd40 linux-3.0/arch/frv/kernel/pm.c -4a5f57883d22fd4db7d6a76c1c263b31 linux-3.0/arch/frv/kernel/pm-mb93093.c -59b6aaf543dbea10f5a5eccfc2ea314c linux-3.0/arch/frv/kernel/module.c -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/frv/kernel/local64.h -d42cdea2942222298d2c0bfe12e9e625 linux-3.0/arch/frv/kernel/local.h -de88953fc57a4cf73ee2237b982df73a linux-3.0/arch/frv/kernel/kernel_thread.S -3e74ccda5e61f5f31403bf1d84e2a9b6 linux-3.0/arch/frv/kernel/kernel_execve.S -1d4f998360731cd8ff186d7c767d35f4 linux-3.0/arch/frv/kernel/irq.c -41987c1cf0bacfb10dcbe394e2330d03 linux-3.0/arch/frv/kernel/irq-mb93493.c -5b70770b48be01a91fa3ee4f90f4a26f linux-3.0/arch/frv/kernel/irq-mb93093.c -579be518e799a33dc52f2dc73cfa0c99 linux-3.0/arch/frv/kernel/irq-mb93091.c -257c27180dd2f83343d11363d1e67365 linux-3.0/arch/frv/kernel/init_task.c -096658a4c3b9b63479641cf38668f003 linux-3.0/arch/frv/kernel/head.inc -6369db2a7de5c107eb59191b51ac138e linux-3.0/arch/frv/kernel/head.S -5256ab44ad2fe0fc1961e2d7006bc044 linux-3.0/arch/frv/kernel/head-uc-fr555.S -e4d0a6b1271990d9f9faf1fe6eb62627 linux-3.0/arch/frv/kernel/head-uc-fr451.S -3b9336e05912fe22bd75347d484a09ec linux-3.0/arch/frv/kernel/head-uc-fr401.S -eca044de185c3a47fe260cb6baa5392d linux-3.0/arch/frv/kernel/head-mmu-fr451.S -e22ad615cca782adac75c116545750ea linux-3.0/arch/frv/kernel/gdb-stub.c -249d844fd17e7f75e117edeeb237fa5c linux-3.0/arch/frv/kernel/gdb-io.h -be814e47838c3f5dc98f10aeb3b32788 linux-3.0/arch/frv/kernel/gdb-io.c -627aae3564e373f0f5d4f253049bbff3 linux-3.0/arch/frv/kernel/futex.c -a4651d00c2c355cac1c4affa3f78b2c4 linux-3.0/arch/frv/kernel/frv_ksyms.c -2fcc9c1d95b69267ec26439c30db5df4 linux-3.0/arch/frv/kernel/entry.S -fd0047033fa9ce65228cc1057341529c linux-3.0/arch/frv/kernel/entry-table.S -fc542858f71dc06dc4e4d72fbf6b73e7 linux-3.0/arch/frv/kernel/dma.c -f4f37b2b2987760f945140b990ab9ac8 linux-3.0/arch/frv/kernel/debug-stub.c -0df50a874211588a84fb7650342b3b26 linux-3.0/arch/frv/kernel/cmode.S -4bed579407ba96791f9ae8b77b8ead2f linux-3.0/arch/frv/kernel/break.S -97081b865a5f92fcfedefd5e34368a3e linux-3.0/arch/frv/kernel/asm-offsets.c -fc17e79653592b8727ac197e83202d84 linux-3.0/arch/frv/kernel/Makefile -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/frv/include/asm/xor.h -9b6448670ad258ce3cd9f164c29d73d1 linux-3.0/arch/frv/include/asm/virtconvert.h -de61ccf9ab04209349fc1f53c53e0dbf linux-3.0/arch/frv/include/asm/vga.h -55844e1eae91f215c34c12846350d9c3 linux-3.0/arch/frv/include/asm/user.h -481775f5c5b440a2dd7298e294a41555 linux-3.0/arch/frv/include/asm/unistd.h -15f0c5b718fe0bd615e4b5ec7e1baf66 linux-3.0/arch/frv/include/asm/unaligned.h -4c757a80b6aca8116ca973399436f258 linux-3.0/arch/frv/include/asm/ucontext.h -a6182487b52378b072096d01bfff3f02 linux-3.0/arch/frv/include/asm/uaccess.h -7e4edfde160ed074a2a937ef85b11db0 linux-3.0/arch/frv/include/asm/types.h -ada00e7b99d549225f255bf9701f1da6 linux-3.0/arch/frv/include/asm/topology.h -8c19c7c368eb45a1fca91e5f9b21c21a linux-3.0/arch/frv/include/asm/tlbflush.h -5b47b854f4d1aa0d89df01e6f7a890c9 linux-3.0/arch/frv/include/asm/tlb.h -39ba05ff548326192748dea8940a255c linux-3.0/arch/frv/include/asm/timex.h -db95e73f5433691cef18df18a7346442 linux-3.0/arch/frv/include/asm/timer-regs.h -c8f6d7cfa51dda9d72b5fb325a7ea3a8 linux-3.0/arch/frv/include/asm/thread_info.h -f23a911b0307ca4ae309000da1ec7b52 linux-3.0/arch/frv/include/asm/termios.h -7a0df5b2c131023029cdef5552d6ea5c linux-3.0/arch/frv/include/asm/termbits.h -e435ab42f21d8f611fdf9e8b9a9040ba linux-3.0/arch/frv/include/asm/system.h -fec1db91d81b9786a587e3030ac0706e linux-3.0/arch/frv/include/asm/syscall.h -806284ee854ec5549127f103f9f4951a linux-3.0/arch/frv/include/asm/swab.h -3719ebaf11b8ebd453e4658d44a6cb13 linux-3.0/arch/frv/include/asm/string.h -545d74ad81883cd995cb4ce4f8778154 linux-3.0/arch/frv/include/asm/statfs.h -fbb8ccf1af90980c3fd4408627797c17 linux-3.0/arch/frv/include/asm/stat.h -baad7bdd94a403820f35251991360d5c linux-3.0/arch/frv/include/asm/spr-regs.h -88a9c7e40aafb2295b8b3bcaa1546e4e linux-3.0/arch/frv/include/asm/spinlock.h -170fb2a45d680c7acc666cadc0afd731 linux-3.0/arch/frv/include/asm/sockios.h -b3d5f4e004d06123e9c0c490f652f664 linux-3.0/arch/frv/include/asm/socket.h -7036cd25d4660957ad1df41630d58e50 linux-3.0/arch/frv/include/asm/smp.h -8532016f369b6cdab2687b193f4c4fc7 linux-3.0/arch/frv/include/asm/signal.h -43172c90d19532729372e42220c13e38 linux-3.0/arch/frv/include/asm/siginfo.h -c55947915e1c0d4046271dbbebf37e5e linux-3.0/arch/frv/include/asm/sigcontext.h -3bc852ff6f4021c11579d28b2ed9b6ed linux-3.0/arch/frv/include/asm/shmparam.h -e9204f6286fd71097490940d98f1e86b linux-3.0/arch/frv/include/asm/shmbuf.h -7b71ad1bcad20e03729c1e146a93522d linux-3.0/arch/frv/include/asm/setup.h -03395f020346abc093a76387db4516bd linux-3.0/arch/frv/include/asm/serial.h -7f51776964be21bebd21969325bd6e19 linux-3.0/arch/frv/include/asm/serial-regs.h -31090f3ae894b69bd25fef7c98cb86bb linux-3.0/arch/frv/include/asm/sembuf.h -baf1df98e6b21a380f7b9ab08720ce55 linux-3.0/arch/frv/include/asm/segment.h -c82abd76da581722affe7fbc2a9f5cf1 linux-3.0/arch/frv/include/asm/sections.h -806f080074358bd2259713153d8f4d88 linux-3.0/arch/frv/include/asm/scatterlist.h -570cff93701a999f10204619a6c4113d linux-3.0/arch/frv/include/asm/resource.h -78f0a60eae3c6a296bdd6d852f64b74f linux-3.0/arch/frv/include/asm/registers.h -301ce973f2ae984cb1aa85e299b79adb linux-3.0/arch/frv/include/asm/ptrace.h -ab092f783d2eb18f3a4fccc276b38a82 linux-3.0/arch/frv/include/asm/processor.h -1035ff069d52bd16a6886fd19abe835c linux-3.0/arch/frv/include/asm/posix_types.h -6cea37ebd4475ffaf10c8c3df52ea40f linux-3.0/arch/frv/include/asm/poll.h -2862784db0ed8f69293e4bef2b5332ae linux-3.0/arch/frv/include/asm/pgtable.h -eaeceb8b1cc484d9379126ab3369e0c9 linux-3.0/arch/frv/include/asm/pgalloc.h -cc0c7bc10699c11108b8fd2612885510 linux-3.0/arch/frv/include/asm/perf_event.h -06d996ede6d4710862acf71f9cdfbb5f linux-3.0/arch/frv/include/asm/percpu.h -329e13da69bc20ac1a7dd4c48aa7d5b6 linux-3.0/arch/frv/include/asm/pci.h -24bdd67f4162f4c0ff6a2ab1a8003cfc linux-3.0/arch/frv/include/asm/param.h -9734b1038204f21e70f76ed03d3f8319 linux-3.0/arch/frv/include/asm/page.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/frv/include/asm/mutex.h -a3e89319fe88567bfce2092183b087e6 linux-3.0/arch/frv/include/asm/msgbuf.h -9778219e7f3520dbffdadd782d144658 linux-3.0/arch/frv/include/asm/module.h -7d9a6d8a603bdf986883d2c7d7468529 linux-3.0/arch/frv/include/asm/mmu_context.h -0410a8e85449b404eb755bd59b91ee45 linux-3.0/arch/frv/include/asm/mmu.h -c10dfdbe274b25756fe8f9900e428096 linux-3.0/arch/frv/include/asm/mman.h -109d9f3093a32f3509afd6f90f55d234 linux-3.0/arch/frv/include/asm/mem-layout.h -60e6d0e2bfa966820569fb6df300b45a linux-3.0/arch/frv/include/asm/mc146818rtc.h -a52d1d3adda84fb73e374d3f2be5e533 linux-3.0/arch/frv/include/asm/mb93493-regs.h -a763210a9892e4d9eca0ea016fdd7703 linux-3.0/arch/frv/include/asm/mb93493-irqs.h -699583403cb16ceb3172b954bfab2ecd linux-3.0/arch/frv/include/asm/mb93093-fpga-irqs.h -f214cb02cf4b9dbf04c0b5126b15ea56 linux-3.0/arch/frv/include/asm/mb93091-fpga-irqs.h -0204355b7e0db183564f165834f3b7e4 linux-3.0/arch/frv/include/asm/mb86943a.h -27f2b48fb6dde471dc51c1447209a6eb linux-3.0/arch/frv/include/asm/mb-regs.h -16e062ea5e847fba76aee58ceaa1fcea linux-3.0/arch/frv/include/asm/math-emu.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/frv/include/asm/local64.h -3de77debd3f112e4e7ba7598135c38c1 linux-3.0/arch/frv/include/asm/local.h -df77bf4834f68371fcef834e50821a10 linux-3.0/arch/frv/include/asm/linkage.h -9b7c701383cb9344ae732037f611aa53 linux-3.0/arch/frv/include/asm/kmap_types.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/frv/include/asm/kdebug.h -755d93f54789f95fb60aaa5a56cd2766 linux-3.0/arch/frv/include/asm/irqflags.h -425721587b43014f61427ca979ed81fd linux-3.0/arch/frv/include/asm/irq_regs.h -210e67568c695665e0b3445dfc707210 linux-3.0/arch/frv/include/asm/irq.h -ecd5f20490df8d6929b58754f4d1a9af linux-3.0/arch/frv/include/asm/irc-regs.h -5b247637a3bbb706a770ed748a2ab28f linux-3.0/arch/frv/include/asm/ipcbuf.h -1c30299643b3d2face941eb9650081ee linux-3.0/arch/frv/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/frv/include/asm/ioctl.h -f8db6f6e6f3ede74666071edaf660d92 linux-3.0/arch/frv/include/asm/io.h -632de23afef47240865c69021dbd53c4 linux-3.0/arch/frv/include/asm/hw_irq.h -587896cae2d92290a5a681a820622781 linux-3.0/arch/frv/include/asm/highmem.h -033ee8342fc090ee30491acf90620852 linux-3.0/arch/frv/include/asm/hardirq.h -38a364c46855b63b65287c7fa0ae8752 linux-3.0/arch/frv/include/asm/gpio-regs.h -118823922d1c236ec61162660eecce2b linux-3.0/arch/frv/include/asm/gdb-stub.h -dcd178afe3aa0ebdc61f778ce46f7c39 linux-3.0/arch/frv/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/frv/include/asm/ftrace.h -0c98979baec2a10d5b5fc5bca4616302 linux-3.0/arch/frv/include/asm/fpu.h -a598360d85106db07897c937209e63eb linux-3.0/arch/frv/include/asm/fcntl.h -5b6b31d728ed2ed0df73c56676fdc68f linux-3.0/arch/frv/include/asm/fb.h -be5f8966699a0b41c1a4073343a3d5f5 linux-3.0/arch/frv/include/asm/errno.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/frv/include/asm/emergency-restart.h -8a3b36286f14731ab30938e7a139ed4b linux-3.0/arch/frv/include/asm/elf.h -0488a74165d14af50a871f21cfb83096 linux-3.0/arch/frv/include/asm/dma.h -9ed3e00ff3dd63a8e5f3b518f9630769 linux-3.0/arch/frv/include/asm/dma-mapping.h -2d2da6ce6732027eebec1be189f63d18 linux-3.0/arch/frv/include/asm/dm9000.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/frv/include/asm/div64.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/frv/include/asm/device.h -11825240e1c319a5524684cf743790c8 linux-3.0/arch/frv/include/asm/delay.h -58af03c269af050a8adabb20e02f7cce linux-3.0/arch/frv/include/asm/current.h -0ffc6a58932d15ba4217bec52660ebe1 linux-3.0/arch/frv/include/asm/cputime.h -0d187947c59d57178d1032db09250c4b linux-3.0/arch/frv/include/asm/cpumask.h -78a0a223998a67870a4f6773b82d7ae2 linux-3.0/arch/frv/include/asm/cpu-irqs.h -a5e9048752ddce9e58ad5503d0f32867 linux-3.0/arch/frv/include/asm/checksum.h -fac4535c47b28639f19ca82e71ab2e59 linux-3.0/arch/frv/include/asm/cacheflush.h -6fa9d9397a482e1a5f9d5eb3f4835c87 linux-3.0/arch/frv/include/asm/cache.h -fb934d9121baf03b57e9ee9be401d53c linux-3.0/arch/frv/include/asm/byteorder.h -533fb118f7a4bd5491b7dcaa42a61436 linux-3.0/arch/frv/include/asm/busctl-regs.h -b62ebb4fff7b815a46359a902b9ed93b linux-3.0/arch/frv/include/asm/bugs.h -ae064ba1a35f169b51deaec470f45b09 linux-3.0/arch/frv/include/asm/bug.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/frv/include/asm/bitsperlong.h -b85f4ec06039855c3bb9ce3f8bbfb11b linux-3.0/arch/frv/include/asm/bitops.h -a6aaf8c100449f5c89c2f58eab4af7e1 linux-3.0/arch/frv/include/asm/ax88796.h -4a3f912f9328bec789ce63055d587850 linux-3.0/arch/frv/include/asm/auxvec.h -fca6416d7415ea1358792ec9b3a33b0f linux-3.0/arch/frv/include/asm/atomic.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/frv/include/asm/asm-offsets.h -3971833208a41f9304a53b9739228b9c linux-3.0/arch/frv/include/asm/Kbuild -387b78189d5f9b358d7a4e53b6077498 linux-3.0/arch/frv/defconfig -afa1672905adff24a5a8512d927cc840 linux-3.0/arch/frv/boot/Makefile -d38ecb0c02c8efe39294946945458499 linux-3.0/arch/frv/Makefile -bc7a3ae100110db6bd3afaa53350c4b0 linux-3.0/arch/frv/Kconfig.debug -dc42e076636fbf6ce75ceafac73f1439 linux-3.0/arch/frv/Kconfig -abe8bfd5f93a2261fed59484b0e95a4b linux-3.0/arch/cris/mm/tlb.c -fd6096b3ae72a930e0fdd22d9cb63e77 linux-3.0/arch/cris/mm/ioremap.c -b36e301c674ccb91b2e79777c78f37fc linux-3.0/arch/cris/mm/init.c -575a6354a732cbc2557d9549b6bc4fa4 linux-3.0/arch/cris/mm/fault.c -340936b60ee64d30a28d3ae1d1256f9a linux-3.0/arch/cris/mm/Makefile -2c7c9ded5fe4d4530b93ef7affeb60d5 linux-3.0/arch/cris/kernel/vmlinux.lds.S -a0f5ced0e9b357dbdb65a5a80138f156 linux-3.0/arch/cris/kernel/traps.c -d8030d68aac4b3b6e2edf34b57a8cbf1 linux-3.0/arch/cris/kernel/time.c -925126fc5d8174d405e6a607fe740f95 linux-3.0/arch/cris/kernel/sys_cris.c -23cbd6ad29f3d64a356e44a613e30172 linux-3.0/arch/cris/kernel/setup.c -b7856435e76f71a002975457fd1116ea linux-3.0/arch/cris/kernel/ptrace.c -ced423b3449eeda2adaab9c7f78cf9f4 linux-3.0/arch/cris/kernel/profile.c -3db0afdd862db5cce02ef5ce08025c4b linux-3.0/arch/cris/kernel/process.c -de3491ce97c02d29278aaf5144eb3ad0 linux-3.0/arch/cris/kernel/module.c -9bfb1943036ba9bbc6ac5bdc8cd421d5 linux-3.0/arch/cris/kernel/irq.c -5a376d168b2ab2966a10c87efbea3323 linux-3.0/arch/cris/kernel/crisksyms.c -3282747fcd31d29460978891f6113db4 linux-3.0/arch/cris/kernel/asm-offsets.c -954c3106a17db056cd216011819f8753 linux-3.0/arch/cris/kernel/Makefile -f9d1e793d7d0a9c89058294ab6e45b89 linux-3.0/arch/cris/include/asm/user.h -8796561501edb06d0e76d59c511ec838 linux-3.0/arch/cris/include/asm/unistd.h -a7caffb0f651dd3f3ef5c318b0ac27c3 linux-3.0/arch/cris/include/asm/unaligned.h -018f1646d8ecf1916c4a907f0e97fcc1 linux-3.0/arch/cris/include/asm/ucontext.h -ad60d2149dfd11a539cf0784b1b864a3 linux-3.0/arch/cris/include/asm/uaccess.h -d0318e1a6fdedbbfe481a96cde01c34b linux-3.0/arch/cris/include/asm/types.h -3150a40d8d877109846503e46ff1471b linux-3.0/arch/cris/include/asm/topology.h -6021af46489bf4af70c522fb06402c63 linux-3.0/arch/cris/include/asm/tlbflush.h -e6573eba48a01b9177073b23a0e1b651 linux-3.0/arch/cris/include/asm/tlb.h -1ecc81955c224eda5f0637d8602f1d12 linux-3.0/arch/cris/include/asm/timex.h -89eaf2b34a0712905719660a81c6d5d6 linux-3.0/arch/cris/include/asm/thread_info.h -aa773dacf16760221e17113da7da6690 linux-3.0/arch/cris/include/asm/termios.h -1dddaccb2757d8d471706e9677971c7c linux-3.0/arch/cris/include/asm/termbits.h -025a3591cb9a8916d10513cb7828c652 linux-3.0/arch/cris/include/asm/system.h -10cdc384f03a33570fe8712650bebbd8 linux-3.0/arch/cris/include/asm/sync_serial.h -7c3258cf619620273763637b70f1087b linux-3.0/arch/cris/include/asm/swab.h -e10af1e2e743bfba0f8d726e34261198 linux-3.0/arch/cris/include/asm/string.h -c1dd9f23a171c126e47fbbeb5e7007c7 linux-3.0/arch/cris/include/asm/statfs.h -b3e0797d7c8f1318aece96c8621c4d52 linux-3.0/arch/cris/include/asm/stat.h -ec4d8557881374c6c3b7fac097bd96ac linux-3.0/arch/cris/include/asm/spinlock.h -097c11b6e2cc6a2136e03a761870566a linux-3.0/arch/cris/include/asm/sockios.h -db239cdf2c5681ed89c518cea557d5b2 linux-3.0/arch/cris/include/asm/socket.h -7692dabdf1f9b6af0f86039781f57075 linux-3.0/arch/cris/include/asm/smp.h -f4083672f8f77895d02b0f8c579a7275 linux-3.0/arch/cris/include/asm/signal.h -770c8ad18b6e855f73371d9a9e1f2718 linux-3.0/arch/cris/include/asm/siginfo.h -c4cb9a26d9779afe4c5ca4ee1924b0fc linux-3.0/arch/cris/include/asm/sigcontext.h -09c46e93272ae74e82b6d8785c67b1dd linux-3.0/arch/cris/include/asm/shmparam.h -9d33cfb29c57f2ed10fc61fd10ed93a1 linux-3.0/arch/cris/include/asm/shmbuf.h -e742f398739a068adfb31d965dcdf956 linux-3.0/arch/cris/include/asm/setup.h -dc6f60a14567775705d6da65d27ed8f4 linux-3.0/arch/cris/include/asm/sembuf.h -07631067f36129cb6de2255e235d970e linux-3.0/arch/cris/include/asm/segment.h -5db71e6cfd99faf1fcac2fb32e9733b9 linux-3.0/arch/cris/include/asm/sections.h -d41bbd2fa853a47e28294ae67fc4ef1b linux-3.0/arch/cris/include/asm/scatterlist.h -baae49ea648a352434fd2f8e1fd7c7fc linux-3.0/arch/cris/include/asm/rtc.h -dba78a0de02e6778e18db70f4e9bae5c linux-3.0/arch/cris/include/asm/rs485.h -e2f1999644c93250183b94d106a06aa6 linux-3.0/arch/cris/include/asm/resource.h -fe3b9b9465e046a148978dda8b119fac linux-3.0/arch/cris/include/asm/ptrace.h -ed5f173ea757fd1948f653c01aa2261e linux-3.0/arch/cris/include/asm/processor.h -bdc62561ae293aeb4e662ba5b0956bdb linux-3.0/arch/cris/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/cris/include/asm/poll.h -9ff276f751f8a7c68969cc90b31a850d linux-3.0/arch/cris/include/asm/pgtable.h -392b942c1826d93562d31d95d89059d6 linux-3.0/arch/cris/include/asm/pgalloc.h -6d2aa750bb40c2a518c31fc7556b0f44 linux-3.0/arch/cris/include/asm/percpu.h -88541f50332b69cf027cacf68df0f42f linux-3.0/arch/cris/include/asm/pci.h -45bf7d7716b0d694e6bd1167ff6e3e45 linux-3.0/arch/cris/include/asm/param.h -259481b7b9e4e51a1f431983a4678206 linux-3.0/arch/cris/include/asm/page.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/cris/include/asm/mutex.h -74c0074042233d71d86949d7edfeb18f linux-3.0/arch/cris/include/asm/msgbuf.h -4572c3150507dec08923cc7d2cc1f31c linux-3.0/arch/cris/include/asm/module.h -3821d54d15c59d8f16af8680165a7bab linux-3.0/arch/cris/include/asm/mmu_context.h -89ae65b28cb0089c544b9e2b88d5d682 linux-3.0/arch/cris/include/asm/mmu.h -c10dfdbe274b25756fe8f9900e428096 linux-3.0/arch/cris/include/asm/mman.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/cris/include/asm/local64.h -dd5c2452f777c57e923e1b3de9ac2c14 linux-3.0/arch/cris/include/asm/local.h -3443b0ccb592b373fb6ef22d665f9836 linux-3.0/arch/cris/include/asm/linkage.h -3725ba152becf63244f9164bd4dc13e8 linux-3.0/arch/cris/include/asm/kmap_types.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/cris/include/asm/kdebug.h -1f764d373276e96ef29f69d400303030 linux-3.0/arch/cris/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/cris/include/asm/irq_regs.h -bf4ee1439755baaa9338f66ec9a8f83c linux-3.0/arch/cris/include/asm/irq.h -9738d14ce12a5e1c40804c4a915b1a9e linux-3.0/arch/cris/include/asm/ipcbuf.h -412f729e5065527dc8ec8ce60b4e0300 linux-3.0/arch/cris/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/cris/include/asm/ioctl.h -59a8fc811e2fc8a70036ad1c7bef3f57 linux-3.0/arch/cris/include/asm/io.h -7f80bf7e3265264da5981c294024b923 linux-3.0/arch/cris/include/asm/hw_irq.h -035d506d6aa12dcea3a92c0e694e2f5d linux-3.0/arch/cris/include/asm/hardirq.h -228b42e1213f6ee69a59695b054ab093 linux-3.0/arch/cris/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/cris/include/asm/ftrace.h -a598360d85106db07897c937209e63eb linux-3.0/arch/cris/include/asm/fcntl.h -5b6b31d728ed2ed0df73c56676fdc68f linux-3.0/arch/cris/include/asm/fb.h -a7b6072027161a7f6dd82042d91f3ea7 linux-3.0/arch/cris/include/asm/fasttimer.h -6576ef9aaab998a77c884b6757928ed2 linux-3.0/arch/cris/include/asm/etraxi2c.h -32cb76d2dde5ad0d4bace1fa93a635d6 linux-3.0/arch/cris/include/asm/etraxgpio.h -df2925a5f13a1aae43d0089d143c9234 linux-3.0/arch/cris/include/asm/ethernet.h -797962b7dfc7363d69a961c195cac710 linux-3.0/arch/cris/include/asm/eshlibld.h -700ce2ae4378f51e2e82136f2b7936d6 linux-3.0/arch/cris/include/asm/errno.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/cris/include/asm/emergency-restart.h -e190160b1a0d2fdd670e4a3fd399d9bd linux-3.0/arch/cris/include/asm/elf.h -bf9d39c7e4773bd65d1ecc33ae3c5dff linux-3.0/arch/cris/include/asm/dma.h -c95d87660205d5084f34828779d85186 linux-3.0/arch/cris/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/cris/include/asm/div64.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/cris/include/asm/device.h -ab57ea4604a0d7eb4b8278631789566e linux-3.0/arch/cris/include/asm/delay.h -f22a7d4207994b8a7bc1fbd1d3f517eb linux-3.0/arch/cris/include/asm/current.h -d7e8e6ee5f621ee75a35a775fcf4555d linux-3.0/arch/cris/include/asm/cputime.h -07a01fc543d3323c2589e6a05c9adc6a linux-3.0/arch/cris/include/asm/checksum.h -382075f463167e62416cefba4581b207 linux-3.0/arch/cris/include/asm/cacheflush.h -f7cbe6776742baa1ef128a821e975b3a linux-3.0/arch/cris/include/asm/cache.h -efacec4175282acf248eb2cf17a2d0bd linux-3.0/arch/cris/include/asm/byteorder.h -13380b604e11be6c96d6750e5c27f13e linux-3.0/arch/cris/include/asm/bugs.h -1cf42635ae5f0b924e3fea0bf95b193d linux-3.0/arch/cris/include/asm/bug.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/cris/include/asm/bitsperlong.h -88069dbb0bfa21f27c682a933d7d254b linux-3.0/arch/cris/include/asm/bitops.h -048583f99535e73efc23cc4211616a84 linux-3.0/arch/cris/include/asm/axisflashmap.h -fae7be0d52f6ae6daf4539888b35a586 linux-3.0/arch/cris/include/asm/auxvec.h -78a790ccd51c1d311b78abf3d51fcb86 linux-3.0/arch/cris/include/asm/atomic.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/cris/include/asm/asm-offsets.h -b812247faee0ae1f948d35daf856c1ad linux-3.0/arch/cris/include/asm/Kbuild -dc296420641a17e3ff74db6c14e5b166 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/startup.inc -8138af9135b56e75732ea604002bc375 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/pinmux.h -1bf0bf3a9004163fdefe33dc0f8a79a9 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/memmap.h -e4f093963392e1749d2c6ca33369a2be linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/timer_defs.h -c3d72f7231394a56d8e85847e3d96abf linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/strmux_defs.h -432bff133ccf10bc5a1c8c0f6fa59d6c linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/reg_map.h -96b1ab75d4d2d1d2f297deefc2be8c19 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/pinmux_defs.h -4087edbc61e93c6a508daa2e3b70ccb0 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/marb_defs.h -935571896bca12e1947fbd733b86ae04 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/marb_bp_defs.h -0234594a356a8e28bcde18dc8555f294 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/intr_vect_defs.h -8aa033ef55f0b35c6a303fcea30ccf30 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/intr_vect.h -dfbd41d2ffa11e5d0ab1a5db3e31a8e7 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/gio_defs.h -a21980198877cdb334dbf33c39c72708 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/config_defs.h -5fb7e37ecf3086d76dffb4030e4cc0fb linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/bif_slave_defs.h -355ee09e3d51f2874daefb9553d3f166 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/bif_dma_defs.h -c0afcfbf34cc1a8469a5ce522b15fd56 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/bif_core_defs.h -44fc8a3d115c45a52dfdb75a9f2fbd10 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm/timer_defs_asm.h -de3d3ef80a495eee938e6d56262ab79d linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm/reg_map_asm.h -05f6dd33c82f2378b6c65f857951ebfd linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm/pinmux_defs_asm.h -816dc32ad51d9a387e4a4575e49aa7df linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm/gio_defs_asm.h -9d7c12c0c59d88bbb314f04ab91a6731 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm/config_defs_asm.h -c80449b138b79bb4e98ebcaf75fd4ef7 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm/bif_core_defs_asm.h -e52fad172c23c291078b41a3f44bacd0 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/dma.h -2dfb4726d1b382d0239f79577c56e103 linux-3.0/arch/cris/include/arch-v32/mach-fs/mach/arbiter.h -093831196b691c39da59424c94b5b3f0 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/startup.inc -887b6f71074b689369896f4fd62dfa36 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/pinmux.h -783dd0378716b655106f2e2820b415d5 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/memmap.h -3004a23ce1decd3b4bdeda6f1a072cd2 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/timer_defs.h -37826fe224f82edf57ee248f3be0fd95 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/strmux_defs.h -f3c3f25af2fda5ec0b3d224f6392f1fd linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/reg_map.h -0a6baba76e883d911d9f001a6fe66020 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/pio_defs.h -88c9b0ed7746113d1b58368f73a22358 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/pinmux_defs.h -08ab6753bc79c77eb92eca11d4c77360 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/marb_foo_defs.h -fdfe35572fa50ef1ba1a00c7438bdac0 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/marb_bar_defs.h -c243973b468b526b9255b41aed5b69d9 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/l2cache_defs.h -efc091e179917bf40d75a7f7967ca6f3 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/iop_version_defs.h -8b7bf5cdc6da1a2fe3e72461176afcbe linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/iop_sw_spu_defs.h -c2addbd2f2052f9ad6d9d78bdff966a4 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/iop_sw_mpu_defs.h -137a26308486d910579e2a5e9ebc8a74 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/iop_sw_cpu_defs.h -300e701980ce03d8615a9cac2a199d70 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/iop_sw_cfg_defs.h -371c489d7cddc0a5ce42c6f4a4b5207a linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/iop_sap_out_defs.h -9757278d01534654b059f6b2167bf73b linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/iop_sap_in_defs.h -8bc8117aeed1b3b9c88ad75caf7234eb linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/iop_reg_space.h -98dc355382fec6359dcfbcafe02dd129 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm/iop_version_defs_asm.h -08a9c9af9dc5fefc999891e41c185eef linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm/iop_sw_spu_defs_asm.h -5b51aca22c778e34230d3babb0e5c30c linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm/iop_sw_mpu_defs_asm.h -80f7a9446dc9f98d816fe71b08ae7698 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm/iop_sw_cpu_defs_asm.h -50d8695fde40a9f1e8e1538ab4bc6538 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm/iop_sw_cfg_defs_asm.h -237deedffc90c857c3599d659454be52 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm/iop_sap_out_defs_asm.h -19eff55afd21546eb69e8a93cf435644 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm/iop_sap_in_defs_asm.h -48ead0315b9974d5e098acaa64487487 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm/iop_reg_space_asm.h -2c120821420aed6eb42cdf7ec3cec428 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/intr_vect_defs.h -9ef6c95be895eb5958d0e7b7709e915e linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/intr_vect.h -3b0ec1b5688a429484a3420a12c31574 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/gio_defs.h -5d794d5fbc11b1192927d194cd93943c linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/ddr2_defs.h -5b42facab3d1a1ccc8251281eb96c6ba linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/clkgen_defs.h -e1b72b49c1dd855293bc04d2223e8961 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm/timer_defs_asm.h -b2d3fc4ccbf82153f94869701a3c18c6 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm/reg_map_asm.h -48b3263507f7b8000d999bb9c9394d69 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm/pio_defs_asm.h -027c2ce2f3db13c0ce44a3ba44cc660a linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm/pinmux_defs_asm.h -033405094bc4c45d104af677c0354f4c linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm/gio_defs_asm.h -3de4184b317556133ef25f7cb67cf134 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm/ddr2_defs_asm.h -228cf373acd37a534d87c56ceff0070d linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm/clkgen_defs_asm.h -1bd8d0e36ca8edbb94a1196855ef3377 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/dma.h -51b4143e9337b93abe4972237bc84132 linux-3.0/arch/cris/include/arch-v32/mach-a3/mach/arbiter.h -d29a6b2517428796b2414f38a366bc26 linux-3.0/arch/cris/include/arch-v32/arch/user.h -5c65ea1992a50584bd2fc33c3f8c7e9a linux-3.0/arch/cris/include/arch-v32/arch/unistd.h -e61d4e32f91fbd549f661c92012377ff linux-3.0/arch/cris/include/arch-v32/arch/uaccess.h -0fad7982eb971fe00ff7464412e40e4a linux-3.0/arch/cris/include/arch-v32/arch/tlb.h -88ee9f3d1231e4eb16f9afc4caf11796 linux-3.0/arch/cris/include/arch-v32/arch/timex.h -a3ab25137b419aef0ed5fa0a0ac16240 linux-3.0/arch/cris/include/arch-v32/arch/thread_info.h -41bf07c4090f12015dc11e78e45d4ac1 linux-3.0/arch/cris/include/arch-v32/arch/system.h -c2db6ade5389791308d3c35807233171 linux-3.0/arch/cris/include/arch-v32/arch/swab.h -a553a64dfe296b1720e99a64ead9b7bf linux-3.0/arch/cris/include/arch-v32/arch/spinlock.h -601ecbc5c66dd0bfd822a967b6168a84 linux-3.0/arch/cris/include/arch-v32/arch/ptrace.h -f43213d9b57b162e2e3f7dc7d058c3d5 linux-3.0/arch/cris/include/arch-v32/arch/processor.h -2ea80e8f09571657a243ed9215f54c5b linux-3.0/arch/cris/include/arch-v32/arch/pgtable.h -928f474ea76044f8e36008e2d1c1a791 linux-3.0/arch/cris/include/arch-v32/arch/page.h -86c83c9238d5ada202f2b945a24f75bc linux-3.0/arch/cris/include/arch-v32/arch/offset.h -fb193db9c030c0782afdd9ce7702c1c0 linux-3.0/arch/cris/include/arch-v32/arch/mmu.h -70ec7f06e4689879269e3627ca3ef9bf linux-3.0/arch/cris/include/arch-v32/arch/memmap.h -3a6c79be6eeda9f956bcebcc14186c70 linux-3.0/arch/cris/include/arch-v32/arch/irqflags.h -d6aef0e1cb4911850dcbd7411db8bd2d linux-3.0/arch/cris/include/arch-v32/arch/irq.h -6a9db56f3dbbe2cedc8d6f3e2a8fe9dd linux-3.0/arch/cris/include/arch-v32/arch/io.h -6fee9c1484b11ab31be351f16b0745f1 linux-3.0/arch/cris/include/arch-v32/arch/intmem.h -28174c9ada3a381555a980b395d2407e linux-3.0/arch/cris/include/arch-v32/arch/hwregs/supp_reg.h -703e090a5e1ff460e5557f614286b8f4 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/strcop_defs.h -9a4116555c2b5de62823d7037b668534 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/strcop.h -c67f67901ffc7742f188bc09a938de39 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/sser_defs.h -41b82b36990865e688e331953549536c linux-3.0/arch/cris/include/arch-v32/arch/hwregs/ser_defs.h -1d699029b91623bf3b7f9e87a534549d linux-3.0/arch/cris/include/arch-v32/arch/hwregs/rt_trace_defs.h -004af164bafc2bf2d7a4c829e5703f14 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/reg_rdwr.h -b6193a496f901da252322a3d11096801 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/marb_defs.h -44b53e0e864ed741f17aa8c2a607a00f linux-3.0/arch/cris/include/arch-v32/arch/hwregs/marb_bp_defs.h -fed62be5b84c437d389c3a5bba38bd35 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/irq_nmi_defs.h -07f9d6572a074a99db77f4030fb52729 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_version_defs.h -debd9cc75ee10b1cde36016b235d21ee linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_trigger_grp_defs.h -7b0e6bec16ce9b09c6e28eb03009a9ee linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_timer_grp_defs.h -9c6970d68584c1317a270b9da205cce2 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_sw_spu_defs.h -8d41ebfcba1bdcd4a2c702ff20bb65ba linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_sw_mpu_defs.h -8b338b112304ab0f87ba4cf21e6f146f linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_sw_cpu_defs.h -086835489e1196cacdafc2e0971ff464 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_sw_cfg_defs.h -b24e08e614dca5ea78e7da0b932c1811 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_spu_defs.h -5bbccb5c61efd854fa4b53b951eb394f linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_scrc_out_defs.h -57b17eb437faef4b4ded095bbf00bffc linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_scrc_in_defs.h -6729773dd0da62928aeed45e11f371c5 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_sap_out_defs.h -9d3fa4988d483041cf7772699f11d0f8 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_sap_in_defs.h -8b334fda45d0db42f61fb02dc6d1191e linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_reg_space.h -f208d0929758faac8403dd1c203ddf5b linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_mpu_macros.h -8766e1a21f04d1f61d7bd3f60221fefc linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_mpu_defs.h -466a7e924d5ff900efbbd14d314cde95 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_fifo_out_extra_defs.h -c79c65d2ab9004dfa6a6b1fb9af472de linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_fifo_out_defs.h -1fb0bb2c6b812c669bab0ae533a25174 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_fifo_in_extra_defs.h -39875cf9c175dc4bbdb71b6da36fe461 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_fifo_in_defs.h -26ec43d718bf6a64d707cb4af61dd488 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_dmc_out_defs.h -79bcb72c62da14760459b9fba18dac5f linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_dmc_in_defs.h -d0d500a9023493d9aa6793f231d3ca34 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/iop_crc_par_defs.h -950f44bc8ded247a3a4970908f103669 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_version_defs_asm.h -d1fd8d2a2ac94cb2aadb8ef31b9c8c05 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_trigger_grp_defs_asm.h -c7f285d55bf5bb6ec74b19daf8fd76bb linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_timer_grp_defs_asm.h -c33ce8c9831a093ed85651bf05b4eefc linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_sw_spu_defs_asm.h -b504cb6639ac65071399bbb033273190 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_sw_mpu_defs_asm.h -b9aa4489bc124564c667a28f7c88b6b8 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_sw_cpu_defs_asm.h -7e944abce690ea1066c6023277644490 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_sw_cfg_defs_asm.h -0e94f0625f57833e35fec1409aeeab7e linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_spu_defs_asm.h -e909a24d5c1acf7a0e39e36e3f8f9774 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_scrc_out_defs_asm.h -dd0ae1488cebaaa68661a7fd103bcd82 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_scrc_in_defs_asm.h -cb30886ca61502fd95bc252f1eea9ca2 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_sap_out_defs_asm.h -24b681253c61deea611a51e432f3d076 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_sap_in_defs_asm.h -e6b6cd126abe99e59ac16621aa84759a linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_reg_space_asm.h -c0aa40577efee2eb446df63b440950db linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_mpu_defs_asm.h -e96c4712f604f079cd27c2224b250d7f linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_fifo_out_extra_defs_asm.h -8d86a630624324676b301faf7f5b4963 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_fifo_out_defs_asm.h -958fdc1339d637e93d9ec2ba85f665d6 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_fifo_in_extra_defs_asm.h -90ddbc7c1363729e0295a147b9fcb598 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_fifo_in_defs_asm.h -0607adf7f71496782c2888fc0e00a398 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_dmc_out_defs_asm.h -34e01e2c744bd21a71904f72d8724571 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_dmc_in_defs_asm.h -2a098e5eb11ad606a9e36386281b71a2 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/asm/iop_crc_par_defs_asm.h -3d659a1d5f8549054ecbaa0572ce5ab5 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/iop/Makefile -095da3fe7e0c200d56403de7c245f86f linux-3.0/arch/cris/include/arch-v32/arch/hwregs/extmem_defs.h -a064d5f0316cf4cb0370a148e823fdde linux-3.0/arch/cris/include/arch-v32/arch/hwregs/eth_defs.h -b0bba496fd39f374811845dd72dc7166 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/dma_defs.h -9315d4516ff3544521b0a12b68203fda linux-3.0/arch/cris/include/arch-v32/arch/hwregs/dma.h -1c23a0cd70fbabea04588405777e1cba linux-3.0/arch/cris/include/arch-v32/arch/hwregs/cpu_vect.h -6e2a245c1febaf435323a5d8ebd04e61 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/config_defs.h -905baf039a9d61d7736dd69ee1403c21 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/bif_slave_defs.h -dee34dd870d4f81d77b2b49989f4f69e linux-3.0/arch/cris/include/arch-v32/arch/hwregs/bif_dma_defs.h -9af1b31e2fc435dc1c8d3da6b5de6808 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/bif_core_defs.h -748a8e921ef9a9ef0c60e95b2b5c9663 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/ata_defs.h -4cd68f0b799339624071a342b33e9b43 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/timer_defs_asm.h -8a53a2fe5fc442efeb079884ccc04ae0 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/strmux_defs_asm.h -8824f81c7f1ce76d7f78494d8120d8c7 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/strcop_defs_asm.h -a4a07f37a72c218d06e8adbc4d017efa linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/sser_defs_asm.h -bd7852a0034ab55f4b2d6308280a861a linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/ser_defs_asm.h -8cf36b520e2ac0f9ae99cc6bf9f88660 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/rt_trace_defs_asm.h -49093795c3b24b5747f00a222374ee68 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/mmu_supp_reg.h -7fd9653d5c7b0bccbfb672890f84b6a2 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/mmu_defs_asm.h -1450ab5516c0b62b474c60ca2fd2ab02 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/marb_defs_asm.h -f885dc9f3d86f60c031d4f12378aeb76 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/irq_nmi_defs_asm.h -4f2b8ce1fb5e6aa2857fb52dfa15625d linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/intr_vect_defs_asm.h -a0fbc9a45956e2be0d1b9d5bd185da1e linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/intr_vect.h -941d3e012d2bcc980280dae372742a2a linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/gio_defs_asm.h -306d18bbbfc3ec5fbb1f9b89a211936e linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/eth_defs_asm.h -4cce9ee615bdab78bc35e868c86a6d6a linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/dma_defs_asm.h -1dcf5b5bcf7c8fcc9089721b6c2be8a1 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/cris_supp_reg.h -c01dcf80007d4397d6c2924abf6fa604 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/cris_defs_asm.h -1c23a0cd70fbabea04588405777e1cba linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/cpu_vect.h -db1b65e3d1308d730960b86872b2660d linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/config_defs_asm.h -f773729987b192ceec573f5c793db6f9 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/bif_slave_defs_asm.h -1790c9ffcc42a3df937893ea88a19a2e linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/bif_dma_defs_asm.h -43980926abbe2448a9dcca11ecdc3f9f linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/bif_core_defs_asm.h -e73278cef8631baa4a3388195be8175e linux-3.0/arch/cris/include/arch-v32/arch/hwregs/asm/ata_defs_asm.h -0ab3b904850b878a6b09e9c64f6c0668 linux-3.0/arch/cris/include/arch-v32/arch/hwregs/Makefile -f1e810fcc277f040482342633bdf8349 linux-3.0/arch/cris/include/arch-v32/arch/elf.h -b4ca6e7434f27dab380c8f9bd83f172b linux-3.0/arch/cris/include/arch-v32/arch/dma.h -9fc189e5fda501446330462eb878fa4b linux-3.0/arch/cris/include/arch-v32/arch/delay.h -4abb37bb0b2d4f26745b4ea8ab8b63cd linux-3.0/arch/cris/include/arch-v32/arch/cryptocop.h -59a13a07857831c34490c95857780fe2 linux-3.0/arch/cris/include/arch-v32/arch/checksum.h -e621e34018cef90714c47a3ea140c626 linux-3.0/arch/cris/include/arch-v32/arch/cache.h -652bb1b5040d8e61cffad19d6099950c linux-3.0/arch/cris/include/arch-v32/arch/bug.h -654e684bee99ec8240db5e50a1781c28 linux-3.0/arch/cris/include/arch-v32/arch/bitops.h -ddaf387d41eceb6f44f2d332640cc58b linux-3.0/arch/cris/include/arch-v32/arch/atomic.h -647bea22367517d2848dbbef6e096612 linux-3.0/arch/cris/include/arch-v32/arch/Kbuild -a4beb786b6cb15976e31f3b48f57ef37 linux-3.0/arch/cris/include/arch-v10/arch/user.h -f5ed724450b96f6fb372f8cedac398fc linux-3.0/arch/cris/include/arch-v10/arch/unistd.h -f66e7308b1e0cad7485d5a2792b64c11 linux-3.0/arch/cris/include/arch-v10/arch/uaccess.h -6b6a07aee088498b969b7e2b07ebc593 linux-3.0/arch/cris/include/arch-v10/arch/tlb.h -ac6270b82fe75dc01d373ee2e841eb55 linux-3.0/arch/cris/include/arch-v10/arch/timex.h -4e2fdcb16fd455a72bc6877dbb18f25c linux-3.0/arch/cris/include/arch-v10/arch/thread_info.h -6c7256b664c30a2153ca143ad5e34cf7 linux-3.0/arch/cris/include/arch-v10/arch/system.h -464354c7c76b78d99e20e9982a55584c linux-3.0/arch/cris/include/arch-v10/arch/swab.h -f66acf6fb741b6886a63d93a56c4bac0 linux-3.0/arch/cris/include/arch-v10/arch/svinto.h -2a303de71d26cb0c6859ef7a22cc81a3 linux-3.0/arch/cris/include/arch-v10/arch/sv_addr_ag.h -6d1e9d75b8690690623b98176c2d1afe linux-3.0/arch/cris/include/arch-v10/arch/sv_addr.agh -8caec5491d4f09770351ddfe0ad2f7e4 linux-3.0/arch/cris/include/arch-v10/arch/ptrace.h -f834d38528b8bf1bd79be9d9279ffa0b linux-3.0/arch/cris/include/arch-v10/arch/processor.h -d8c641a76c5cc0f4dcc53255dcb134ef linux-3.0/arch/cris/include/arch-v10/arch/pgtable.h -7b1dd15c35320c76921459386a3965f4 linux-3.0/arch/cris/include/arch-v10/arch/page.h -196744c9f03b8453e46a4b5e9d0f21c2 linux-3.0/arch/cris/include/arch-v10/arch/offset.h -fb9a2726a4f1c6d8b7f6341bad9e71aa linux-3.0/arch/cris/include/arch-v10/arch/mmu.h -8f82df3aa690a08ea179c813b57f031f linux-3.0/arch/cris/include/arch-v10/arch/memmap.h -d43f8805c4e43e5345520e00a6187e30 linux-3.0/arch/cris/include/arch-v10/arch/irqflags.h -ae2aa49932ef4fa7c4bbe47381712921 linux-3.0/arch/cris/include/arch-v10/arch/irq.h -03e5d4892ffde31a6b15b1bdab134b6d linux-3.0/arch/cris/include/arch-v10/arch/io_interface_mux.h -2a80f1a1e8c9b8f0a98dfe277fba5273 linux-3.0/arch/cris/include/arch-v10/arch/io.h -22d13fe40c0f4bf97a16565552c8f8a4 linux-3.0/arch/cris/include/arch-v10/arch/elf.h -b4732b105032ca761b123637ca2a3347 linux-3.0/arch/cris/include/arch-v10/arch/dma.h -27b104f3327074df599657b8f7838486 linux-3.0/arch/cris/include/arch-v10/arch/delay.h -28355a8dee337abb6982ef6b982fb528 linux-3.0/arch/cris/include/arch-v10/arch/checksum.h -0847af3d93aca7caae576e8b9a716be6 linux-3.0/arch/cris/include/arch-v10/arch/cache.h -d8f0a6a01bc0d21c8366a59fbea286a6 linux-3.0/arch/cris/include/arch-v10/arch/bug.h -65722eb93452b76862bf48d3475c8bbb linux-3.0/arch/cris/include/arch-v10/arch/bitops.h -7da189be6d0e54130e19917489dfa3e4 linux-3.0/arch/cris/include/arch-v10/arch/atomic.h -937ce4f144aa173e06cf044b4b272f73 linux-3.0/arch/cris/include/arch-v10/arch/Kbuild -59d4d9b92dac58e2625b826334e775f2 linux-3.0/arch/cris/configs/etraxfs_defconfig -fa2b4fcd70f2c9d19d69d85b3bf9d930 linux-3.0/arch/cris/configs/etrax-100lx_v2_defconfig -0a110b3501b04bc8de2433d84b1bb658 linux-3.0/arch/cris/configs/etrax-100lx_defconfig -4c90ef761fed9afc050d0d7a6614afc2 linux-3.0/arch/cris/configs/artpec_3_defconfig -53d5136bf1bee0a2cda6f406a51cf5dd linux-3.0/arch/cris/boot/tools/build.c -fb55352a0683cc7ce0a9e1e49f381781 linux-3.0/arch/cris/boot/rescue/testrescue.S -7baa3ec916168c19218e9f730e05fb17 linux-3.0/arch/cris/boot/rescue/rescue_v32.lds -b570445900ff36d454faf27038904783 linux-3.0/arch/cris/boot/rescue/rescue_v10.lds -e73ddd030794c8ff56eb62eb579142f2 linux-3.0/arch/cris/boot/rescue/kimagerescue.S -7457a00ff2270f368684bf9434e90dd1 linux-3.0/arch/cris/boot/rescue/head_v32.S -bd02b76d9caeb0cbb5d11c9148746c77 linux-3.0/arch/cris/boot/rescue/head_v10.S -ead1336e374fdc92e4ab49df23204f84 linux-3.0/arch/cris/boot/rescue/Makefile -d7a5b5cf833fe34a7a0f94bcd8438e45 linux-3.0/arch/cris/boot/compressed/misc.c -1138872024d78539677c8c24541b92d1 linux-3.0/arch/cris/boot/compressed/head_v32.S -ed7a56db63602b10703b3a0eb0f3fa2d linux-3.0/arch/cris/boot/compressed/head_v10.S -d93b8167634c67cd2deaef3aef938bc7 linux-3.0/arch/cris/boot/compressed/decompress_v32.lds -375b68a58560904f735b916d3ff6bc7a linux-3.0/arch/cris/boot/compressed/decompress_v10.lds -3f39847e3b69f4dec9ed83514e2f716e linux-3.0/arch/cris/boot/compressed/README -240803ffd1e3e96e5124053acfed8d45 linux-3.0/arch/cris/boot/compressed/Makefile -ee28f579f0eee9498121abab8e6552a5 linux-3.0/arch/cris/boot/Makefile -72e6b6e493b79489773a49ab64f94094 linux-3.0/arch/cris/boot/.gitignore -75251740276bd1051d0857d9c3f5240c linux-3.0/arch/cris/arch-v32/output_arch.ld -feb18259d316dc022d801921305f7062 linux-3.0/arch/cris/arch-v32/mm/tlb.c -b8b59c3bfbc1bbba193af3b426c98ead linux-3.0/arch/cris/arch-v32/mm/mmu.S -e7330345f4ecbd3e79569d19c51e17e0 linux-3.0/arch/cris/arch-v32/mm/l2cache.c -d1621a7396887f84561586f6c98385c2 linux-3.0/arch/cris/arch-v32/mm/intmem.c -98c44c0a1e3d511ef83d2aac0cd2bf7a linux-3.0/arch/cris/arch-v32/mm/init.c -ecddb03c1464d07c055239d29de6a48e linux-3.0/arch/cris/arch-v32/mm/Makefile -5b888b2a1a8d82ecb8ed19c7dc7e0ea5 linux-3.0/arch/cris/arch-v32/mach-fs/vcs_hook.h -7290f4eb74a4f8d09b1aabbb197595f7 linux-3.0/arch/cris/arch-v32/mach-fs/vcs_hook.c -7b7fb0976e431fc46ebcf7d361ade26a linux-3.0/arch/cris/arch-v32/mach-fs/pinmux.c -9f763d28fbf33ce7d4bd61c8a811027a linux-3.0/arch/cris/arch-v32/mach-fs/io.c -c7cbdf2ea28109d50f3c80bfa7eea7bb linux-3.0/arch/cris/arch-v32/mach-fs/hw_settings.S -c382e14f9ec302a83525485d28feb74f linux-3.0/arch/cris/arch-v32/mach-fs/dram_init.S -a490e727b64edffbe5ef73978ebca637 linux-3.0/arch/cris/arch-v32/mach-fs/dma.c -3d1a35134275d0c6c83dbd8b8bf66a83 linux-3.0/arch/cris/arch-v32/mach-fs/cpufreq.c -d51706d025115c43817c87007142d311 linux-3.0/arch/cris/arch-v32/mach-fs/arbiter.c -7ebfbf5c8003717d2a46ce43f72c6122 linux-3.0/arch/cris/arch-v32/mach-fs/Makefile -2b316cda0e35eb3e0796e343c0e54b4e linux-3.0/arch/cris/arch-v32/mach-fs/Kconfig -7c316946512699835e07b2470ecf0121 linux-3.0/arch/cris/arch-v32/mach-a3/vcs_hook.h -0ae67a6557d46115312a841b3650e69a linux-3.0/arch/cris/arch-v32/mach-a3/vcs_hook.c -80c9cf43ce82cdbbb1258bc3efea9232 linux-3.0/arch/cris/arch-v32/mach-a3/pinmux.c -4944e85c0d3f2e7c4916db61d196ef04 linux-3.0/arch/cris/arch-v32/mach-a3/io.c -758ab577a8cf686b278b59dfeb2e1e32 linux-3.0/arch/cris/arch-v32/mach-a3/hw_settings.S -6eef22bcf8765e77bc04d2406df01e30 linux-3.0/arch/cris/arch-v32/mach-a3/dram_init.S -6e212623171be2b8fcb8057fb991363c linux-3.0/arch/cris/arch-v32/mach-a3/dma.c -c628a66dd9fa4b507d4a0ed6a2409561 linux-3.0/arch/cris/arch-v32/mach-a3/cpufreq.c -0408108b939a2d425e1f5056a7fce2e7 linux-3.0/arch/cris/arch-v32/mach-a3/arbiter.c -7ebfbf5c8003717d2a46ce43f72c6122 linux-3.0/arch/cris/arch-v32/mach-a3/Makefile -fe7a7349c52a558f0e395c400663aa34 linux-3.0/arch/cris/arch-v32/mach-a3/Kconfig -ffc0f0dd9eda9dcd977c29a2f5bed1da linux-3.0/arch/cris/arch-v32/lib/usercopy.c -6da57bcf8f4fb23141ad03d69288191b linux-3.0/arch/cris/arch-v32/lib/string.c -18f0ec1aef1bbbea6bbf0bc6f1d41287 linux-3.0/arch/cris/arch-v32/lib/strcmp.S -62f20b3b8934abcce35013d59e94a319 linux-3.0/arch/cris/arch-v32/lib/spinlock.S -9283f82d100011f9809f85f51f9f9c6f linux-3.0/arch/cris/arch-v32/lib/nand_init.S -150eec582c3e4a0d17f48a9c20587487 linux-3.0/arch/cris/arch-v32/lib/memset.c -13332018aca6919aeaccb42edcb2a051 linux-3.0/arch/cris/arch-v32/lib/delay.c -ba15511b40a152b9a8dfb7847de07102 linux-3.0/arch/cris/arch-v32/lib/csumcpfruser.S -54a9d58b6ca2f7e1ecca80900a12935a linux-3.0/arch/cris/arch-v32/lib/checksumcopy.S -3a87f73462ba053aa6470e14d71f7bf3 linux-3.0/arch/cris/arch-v32/lib/checksum.S -3fb8b1838d0891d732f64a009cc8d12d linux-3.0/arch/cris/arch-v32/lib/Makefile -861dc11e0ed28eb7f15e02dbc782e136 linux-3.0/arch/cris/arch-v32/kernel/traps.c -80d3335152a37079ed6ac3f3ec6b63d1 linux-3.0/arch/cris/arch-v32/kernel/time.c -1890fceb5511fb3b91124261a48af504 linux-3.0/arch/cris/arch-v32/kernel/smp.c -2f24e2bddcb6b2dbb412985d8d9b7c9e linux-3.0/arch/cris/arch-v32/kernel/signal.c -cbb93491f48f72af1965289ab68c7198 linux-3.0/arch/cris/arch-v32/kernel/setup.c -1b1736446b7492cdbd7a0d498c7e3dfd linux-3.0/arch/cris/arch-v32/kernel/ptrace.c -c298a8039aa621d6d6dac035d4318960 linux-3.0/arch/cris/arch-v32/kernel/process.c -64979cf5e7cbf800f87e3577ed2164de linux-3.0/arch/cris/arch-v32/kernel/kgdb_asm.S -112446a3fd9a20de16b1396061e7b2f7 linux-3.0/arch/cris/arch-v32/kernel/kgdb.c -92860406fd7edc24dc463b0bd77e3c64 linux-3.0/arch/cris/arch-v32/kernel/irq.c -ebb9264293250ff1396756eef7a851fe linux-3.0/arch/cris/arch-v32/kernel/head.S -ca3d10c3c6e7a3344cc2029ccabd776b linux-3.0/arch/cris/arch-v32/kernel/fasttimer.c -64f1ab0d5d7377ddcc4e3dc7599d3ce8 linux-3.0/arch/cris/arch-v32/kernel/entry.S -688360a341db4c8c52783e8447f7fe3d linux-3.0/arch/cris/arch-v32/kernel/debugport.c -77ed5b528f7d2fc8ace10806a751313c linux-3.0/arch/cris/arch-v32/kernel/crisksyms.c -16d8dcd385c3ee2c5d85930a08dcdf6f linux-3.0/arch/cris/arch-v32/kernel/cacheflush.S -a54c7a4b720caca5590b06c3d26ce64e linux-3.0/arch/cris/arch-v32/kernel/cache.c -3c77ff9378c2b8f446f54018ff8911b6 linux-3.0/arch/cris/arch-v32/kernel/Makefile -33551f7614cda1faf480da07b753c001 linux-3.0/arch/cris/arch-v32/drivers/sync_serial.c -9a5f16f61b9ffbaa8386dfdf0c267f19 linux-3.0/arch/cris/arch-v32/drivers/pci/dma.c -9d4f340bf3c8f91e699acd51aea87da9 linux-3.0/arch/cris/arch-v32/drivers/pci/bios.c -1c8efa633563b1496bd2c660cea54747 linux-3.0/arch/cris/arch-v32/drivers/pci/Makefile -b332fbee195c89282dec1a06b2abe666 linux-3.0/arch/cris/arch-v32/drivers/mach-fs/nandflash.c -59134f820bd969693cc1ecce2f92dd9d linux-3.0/arch/cris/arch-v32/drivers/mach-fs/gpio.c -b01186bf7ef2d7f5247eeb56ed05c33b linux-3.0/arch/cris/arch-v32/drivers/mach-fs/Makefile -add473a0cda04ceeb61b7001bc226812 linux-3.0/arch/cris/arch-v32/drivers/mach-a3/nandflash.c -116c800c87aa6c8d266e2ffc2ecb2106 linux-3.0/arch/cris/arch-v32/drivers/mach-a3/gpio.c -b01186bf7ef2d7f5247eeb56ed05c33b linux-3.0/arch/cris/arch-v32/drivers/mach-a3/Makefile -3b4bb344fe3143551dce602d4625a325 linux-3.0/arch/cris/arch-v32/drivers/iop_fw_load.c -d1bc6335b777eb8328b321e9dbf83a3e linux-3.0/arch/cris/arch-v32/drivers/i2c.h -0383b1594401c6591d6a71603035f61c linux-3.0/arch/cris/arch-v32/drivers/i2c.c -ae6be09c9a3a63602974e82f914c749c linux-3.0/arch/cris/arch-v32/drivers/cryptocop.c -e06a4af3ad5e6c54840a0fab406f920f linux-3.0/arch/cris/arch-v32/drivers/axisflashmap.c -d87859043c4fa6801465a87ced36af77 linux-3.0/arch/cris/arch-v32/drivers/Makefile -9eb02eabde482972f402d7671a3912ff linux-3.0/arch/cris/arch-v32/drivers/Kconfig -a8cf4fff6bc8f37db55543e1246c3120 linux-3.0/arch/cris/arch-v32/Kconfig -d4117ba1f147dc68cf2b05605e4752ee linux-3.0/arch/cris/arch-v10/output_arch.ld -a815881c291e04302665d3dea5b8ee88 linux-3.0/arch/cris/arch-v10/mm/tlb.c -3fc6d86b2c7073ba2807dff17fa6f38b linux-3.0/arch/cris/arch-v10/mm/init.c -f6e3a40e1ced40368c8649310d7d3777 linux-3.0/arch/cris/arch-v10/mm/fault.c -295daf2e0b6610958440efcb438c50b2 linux-3.0/arch/cris/arch-v10/mm/Makefile -4e43c32e68607a8a672a34ec29998635 linux-3.0/arch/cris/arch-v10/lib/usercopy.c -6da57bcf8f4fb23141ad03d69288191b linux-3.0/arch/cris/arch-v10/lib/string.c -c85d1a48be23d476201303d743eb1941 linux-3.0/arch/cris/arch-v10/lib/old_checksum.c -150eec582c3e4a0d17f48a9c20587487 linux-3.0/arch/cris/arch-v10/lib/memset.c -1e7967885d10670c884a098f254ee188 linux-3.0/arch/cris/arch-v10/lib/hw_settings.S -1d606eb288cc116f124084e0f342c401 linux-3.0/arch/cris/arch-v10/lib/dram_init.S -9f24c83bd194b5d3e21ad404f2d506ea linux-3.0/arch/cris/arch-v10/lib/dmacopy.c -e05c60d8d6d763ab4cd298c6adeb0a95 linux-3.0/arch/cris/arch-v10/lib/csumcpfruser.S -b801418bf5037f5444054d894dd69461 linux-3.0/arch/cris/arch-v10/lib/checksumcopy.S -e5dbe3c9e9acacf13581085ea192a8de linux-3.0/arch/cris/arch-v10/lib/checksum.S -167f0297ea5ce72e2062f0243f2929f3 linux-3.0/arch/cris/arch-v10/lib/Makefile -aa348707daa53c0456bf70935ecfd3e2 linux-3.0/arch/cris/arch-v10/kernel/traps.c -8a79a66ddf7b4a917bdfaf3cfaa99163 linux-3.0/arch/cris/arch-v10/kernel/time.c -d132dbb52e2bed9f77316136685193dc linux-3.0/arch/cris/arch-v10/kernel/signal.c -87b7ea5c51d922759d46f11354a2b676 linux-3.0/arch/cris/arch-v10/kernel/shadows.c -82f17380226250cf7539522d05ad0396 linux-3.0/arch/cris/arch-v10/kernel/setup.c -846d1b40a185a02312a01cda2d0e3beb linux-3.0/arch/cris/arch-v10/kernel/ptrace.c -52911e113a5d4967fa4937965e5ea0e7 linux-3.0/arch/cris/arch-v10/kernel/process.c -820fa5b7bad723b8da1e34f49f11d13b linux-3.0/arch/cris/arch-v10/kernel/kgdb.c -41c01bf43052af24659f0971eb8c2cff linux-3.0/arch/cris/arch-v10/kernel/irq.c -7124d0ea7e1c94794682b6a4acc86f39 linux-3.0/arch/cris/arch-v10/kernel/io_interface_mux.c -fd66b82d13d75e40667c06e8dfb4b2c5 linux-3.0/arch/cris/arch-v10/kernel/head.S -e0f68263ea1a27c9968e76525f25ae68 linux-3.0/arch/cris/arch-v10/kernel/fasttimer.c -c0598a6b3881206d6c6c61a3a9643bb6 linux-3.0/arch/cris/arch-v10/kernel/entry.S -aa909e2806c2893826f8deca546b9b2a linux-3.0/arch/cris/arch-v10/kernel/dma.c -e56566fe6af22336518ebada4bef4de7 linux-3.0/arch/cris/arch-v10/kernel/debugport.c -a7b1e105f5d335209f9f8eabdf172d05 linux-3.0/arch/cris/arch-v10/kernel/crisksyms.c -653271b2d185c6d5c23d187ab9e49d2e linux-3.0/arch/cris/arch-v10/kernel/Makefile -eaa6d3cd4fd7d7272d84fb3751536539 linux-3.0/arch/cris/arch-v10/drivers/sync_serial.c -89160eba700005f2b26aa67425fb7f00 linux-3.0/arch/cris/arch-v10/drivers/pcf8563.c -dcf90a6561e77065d93a8ffb3dd6371a linux-3.0/arch/cris/arch-v10/drivers/i2c.h -338199612e8d8ecb2bf6c9351e9e1b05 linux-3.0/arch/cris/arch-v10/drivers/i2c.c -1f94886ff652a4bd6cee91e5a0492a0f linux-3.0/arch/cris/arch-v10/drivers/gpio.c -363a19e3ba3e84bb35baa6999e87de28 linux-3.0/arch/cris/arch-v10/drivers/eeprom.c -0911df7596bd941bd6d491bd58476a4a linux-3.0/arch/cris/arch-v10/drivers/ds1302.c -ef943be1676140f0e06c94fe917090a3 linux-3.0/arch/cris/arch-v10/drivers/axisflashmap.c -062c46651ec9c4186ed90c149a857dde linux-3.0/arch/cris/arch-v10/drivers/Makefile -7e1051fd3f10f218760d4694f562f5ff linux-3.0/arch/cris/arch-v10/drivers/Kconfig -823a411f46ae2ba623017d0d6c1716d3 linux-3.0/arch/cris/arch-v10/README.mm -434cb856da8538209dcfecf2d0192441 linux-3.0/arch/cris/arch-v10/Kconfig -7e1731a7df786316ea6d3a56fca6ef79 linux-3.0/arch/cris/Makefile -61501f5fb465181212fcb9ba811ee81f linux-3.0/arch/cris/Kconfig.debug -36693eaea7b782cdc025a2d95efc227f linux-3.0/arch/cris/Kconfig -e60c8137e9bf2f1bf55442a49e7684c6 linux-3.0/arch/blackfin/oprofile/bfin_oprofile.c -39a6ca8a5988dc4029374294a82cb252 linux-3.0/arch/blackfin/oprofile/Makefile -80eda42d4d254bf7f3b48c0db7cae7b2 linux-3.0/arch/blackfin/mm/sram-alloc.c -1ae84ba7d76bad437ec54624ed63a89f linux-3.0/arch/blackfin/mm/maccess.c -89c590f18914702a97ca3c539e29b61c linux-3.0/arch/blackfin/mm/isram-driver.c -4e3a73199a1daae1f0025b901bc608d3 linux-3.0/arch/blackfin/mm/init.c -d3e3be7dc9b98bced12f2582fc75e23d linux-3.0/arch/blackfin/mm/blackfin_sram.h -ad9d73765491ac5da754dbfb4f44f37e linux-3.0/arch/blackfin/mm/Makefile -0114017749b785fb0d2d4a622833bc9f linux-3.0/arch/blackfin/mach-common/smp.c -6606a20adc3b01134f4b96b4c0dd84a6 linux-3.0/arch/blackfin/mach-common/pm.c -ba76654805e7ce7bfb036ec0688846e8 linux-3.0/arch/blackfin/mach-common/ints-priority.c -e8e4bab57c2a1dea203bf09bc15dc0c5 linux-3.0/arch/blackfin/mach-common/interrupt.S -e5f72db6cc7b36a1288c305cf24d6a34 linux-3.0/arch/blackfin/mach-common/head.S -e71d5ce897d2dee433e7300757609603 linux-3.0/arch/blackfin/mach-common/entry.S -cc97b6fd7efa1d54f9e91c8ac604212a linux-3.0/arch/blackfin/mach-common/dpmc_modes.S -27e078232449f2abfb3479865fe61923 linux-3.0/arch/blackfin/mach-common/dpmc.c -154b2614096304be43252bf8e97b779b linux-3.0/arch/blackfin/mach-common/cpufreq.c -e01e5851842dce6a6e888dcc7229587c linux-3.0/arch/blackfin/mach-common/clocks-init.c -28e327746f9f3c747285ad7b578a1a41 linux-3.0/arch/blackfin/mach-common/cache.S -c1c61fee5c78676c380c8447f9caf233 linux-3.0/arch/blackfin/mach-common/cache-c.c -f9e9aee420469244840e5c214fa5c441 linux-3.0/arch/blackfin/mach-common/arch_checks.c -3ee012d4028f98cbb7f2bfd54f3ad635 linux-3.0/arch/blackfin/mach-common/Makefile -caf72089693d514bb41e49c8939c129e linux-3.0/arch/blackfin/mach-bf561/smp.c -039623e8a3259087f42720c5fd797196 linux-3.0/arch/blackfin/mach-bf561/secondary.S -1c6a6af58687a7704cf4ab1a0689b897 linux-3.0/arch/blackfin/mach-bf561/ints-priority.c -bf6a3f59924b71fc7d51d00ebefb03e4 linux-3.0/arch/blackfin/mach-bf561/include/mach/smp.h -df5fe233da58092804d32fd872898af7 linux-3.0/arch/blackfin/mach-bf561/include/mach/portmux.h -9590bd2ea0834e3083faa1a2fd2c5fa0 linux-3.0/arch/blackfin/mach-bf561/include/mach/pll.h -f5a1c76ded5cb0a6158b950dec15deb1 linux-3.0/arch/blackfin/mach-bf561/include/mach/mem_map.h -eb84f35a80feaaed18408f78f9308f51 linux-3.0/arch/blackfin/mach-bf561/include/mach/irq.h -f6917c9c1a9b928d46f1bf5a6325c933 linux-3.0/arch/blackfin/mach-bf561/include/mach/gpio.h -42a942b85cafa9f1ae520555824ffd52 linux-3.0/arch/blackfin/mach-bf561/include/mach/dma.h -9962b6623b5c8b4090c801efc5eb1f56 linux-3.0/arch/blackfin/mach-bf561/include/mach/defBF561.h -1954ce0e2ba61d71d9165bbca933855c linux-3.0/arch/blackfin/mach-bf561/include/mach/cdefBF561.h -989ac6d30f56d4dd60ca160a1ecd2402 linux-3.0/arch/blackfin/mach-bf561/include/mach/blackfin.h -4bf22b1c54cc98f7035fe78900cc7c68 linux-3.0/arch/blackfin/mach-bf561/include/mach/bfin_serial.h -1ec9cabab230d22f7af2f835a0b436fc linux-3.0/arch/blackfin/mach-bf561/include/mach/bf561.h -f1f35f8d71b01e41255dc1c325339e97 linux-3.0/arch/blackfin/mach-bf561/include/mach/anomaly.h -33769a0fcef50312381dcb5d79604cdc linux-3.0/arch/blackfin/mach-bf561/hotplug.c -7ad82e641f78b06310a0bb1b1426e5ed linux-3.0/arch/blackfin/mach-bf561/dma.c -de97f4f26a4847430190a1eb7a8e79f3 linux-3.0/arch/blackfin/mach-bf561/coreb.c -73d7d1e9de85ad5fc27d62ba8d65ef3e linux-3.0/arch/blackfin/mach-bf561/boards/tepla.c -8782a54d5092b7577479ea6aaaeb69f3 linux-3.0/arch/blackfin/mach-bf561/boards/ezkit.c -0a44e79195e5cd0277fa62da9c26a951 linux-3.0/arch/blackfin/mach-bf561/boards/cm_bf561.c -95d649f85526a582a9918955a5127b83 linux-3.0/arch/blackfin/mach-bf561/boards/acvilon.c -d496017fbb5a844d35ce68f973d5df32 linux-3.0/arch/blackfin/mach-bf561/boards/Makefile -b37e0a7bfe25200abaeaa2c4decad95d linux-3.0/arch/blackfin/mach-bf561/boards/Kconfig -84df47461dbd906cdf60f97f57a55db0 linux-3.0/arch/blackfin/mach-bf561/atomic.S -42681fb226fb47fb95553064f0b584fc linux-3.0/arch/blackfin/mach-bf561/Makefile -1c7ee51fdcc349df3df0db17f87fe6ec linux-3.0/arch/blackfin/mach-bf561/Kconfig -657b4aac1fa38c557db1b1bf9b27cb0c linux-3.0/arch/blackfin/mach-bf548/ints-priority.c -9e9de73d8e5a41952c10e0cec3e34543 linux-3.0/arch/blackfin/mach-bf548/include/mach/portmux.h -82ba7bdbebb6efaaff39881791087b88 linux-3.0/arch/blackfin/mach-bf548/include/mach/pll.h -98a687cab6488f537d6ef000f2eec4b7 linux-3.0/arch/blackfin/mach-bf548/include/mach/mem_map.h -73ba8be60b5dd4e229056d3edad8dae1 linux-3.0/arch/blackfin/mach-bf548/include/mach/irq.h -929cbd55011337b6f1b5c8f769a8a7cd linux-3.0/arch/blackfin/mach-bf548/include/mach/gpio.h -a38e0a9ec088837d88b40d3118107e01 linux-3.0/arch/blackfin/mach-bf548/include/mach/dma.h -85b44c7b3b6b0b36a959cf076430676e linux-3.0/arch/blackfin/mach-bf548/include/mach/defBF54x_base.h -7822424e35eb86ee69d1ff60363bb26a linux-3.0/arch/blackfin/mach-bf548/include/mach/defBF549.h -58836639876f5c49ba2290de78f12a34 linux-3.0/arch/blackfin/mach-bf548/include/mach/defBF548.h -be7d07d2b98b55f7d9ab2eb6b5856eb1 linux-3.0/arch/blackfin/mach-bf548/include/mach/defBF547.h -c11c802aba20d147f7511885e222dd74 linux-3.0/arch/blackfin/mach-bf548/include/mach/defBF544.h -ed31f365f41cd48cc374c7938f56f607 linux-3.0/arch/blackfin/mach-bf548/include/mach/defBF542.h -4682ba08ae8a7bb963bbfe82a6ad7727 linux-3.0/arch/blackfin/mach-bf548/include/mach/cdefBF54x_base.h -432c9188aa28848317949327d633e408 linux-3.0/arch/blackfin/mach-bf548/include/mach/cdefBF549.h -83fe202b44786c8e1dfb5f52a9ed2aa9 linux-3.0/arch/blackfin/mach-bf548/include/mach/cdefBF548.h -cb1fa781712b8295c0dfd3491ff88c00 linux-3.0/arch/blackfin/mach-bf548/include/mach/cdefBF547.h -9f109dc39c5a12917b9c21ae7c2f2e7a linux-3.0/arch/blackfin/mach-bf548/include/mach/cdefBF544.h -172b4c1589f3775e1a09823f0d5fa93a linux-3.0/arch/blackfin/mach-bf548/include/mach/cdefBF542.h -774a6745bc894e395f0b70eb26038ff1 linux-3.0/arch/blackfin/mach-bf548/include/mach/blackfin.h -84a6d5d470aa9028571a2587022e606f linux-3.0/arch/blackfin/mach-bf548/include/mach/bfin_serial.h -0da8de8eead5bf4999adf4a42b1edbad linux-3.0/arch/blackfin/mach-bf548/include/mach/bf54x_keys.h -051bea5301b85973324e52c9ab0f92a0 linux-3.0/arch/blackfin/mach-bf548/include/mach/bf54x-lq043.h -63b3ba62ec0b4e62661e2be23dbb1dfc linux-3.0/arch/blackfin/mach-bf548/include/mach/bf548.h -984e0a5ba1acc2b382fedc94c61ea63f linux-3.0/arch/blackfin/mach-bf548/include/mach/anomaly.h -c7a448def8c60ec8027de921bcd97677 linux-3.0/arch/blackfin/mach-bf548/dma.c -73e5fb9d8bdd291a3a0da04420562b4e linux-3.0/arch/blackfin/mach-bf548/boards/ezkit.c -e5b468e078816ce0726348f1083a3eda linux-3.0/arch/blackfin/mach-bf548/boards/cm_bf548.c -7043b5124264ac8543d68c51a6e45959 linux-3.0/arch/blackfin/mach-bf548/boards/Makefile -b615d108613f671ec98054750b71d1ca linux-3.0/arch/blackfin/mach-bf548/boards/Kconfig -9942a38d5efdd16022c8d935b6d78490 linux-3.0/arch/blackfin/mach-bf548/Makefile -23f75fb846e71768796bae9c2afaa277 linux-3.0/arch/blackfin/mach-bf548/Kconfig -bc4a441a1529deffe84cc4c10edaae84 linux-3.0/arch/blackfin/mach-bf538/ints-priority.c -ea67ba1e1ae62fbba418d17b76c46f82 linux-3.0/arch/blackfin/mach-bf538/include/mach/portmux.h -82ba7bdbebb6efaaff39881791087b88 linux-3.0/arch/blackfin/mach-bf538/include/mach/pll.h -b8606b6a640a96c66892bc53d242d102 linux-3.0/arch/blackfin/mach-bf538/include/mach/mem_map.h -f54a124ac79c68b66a0747bea88608d1 linux-3.0/arch/blackfin/mach-bf538/include/mach/irq.h -dc51e3d71b1669c3c7cc725ebce1584e linux-3.0/arch/blackfin/mach-bf538/include/mach/gpio.h -6043c56e4bf80de18f27d71f67ab7cb7 linux-3.0/arch/blackfin/mach-bf538/include/mach/dma.h -c0ab4afa7e478c74bcf177287fa7064e linux-3.0/arch/blackfin/mach-bf538/include/mach/defBF539.h -0fc4f7e7e2b1a2c82fe1cc3c35df96aa linux-3.0/arch/blackfin/mach-bf538/include/mach/defBF538.h -f1e95f47606ecdeec0f98bbe643c3771 linux-3.0/arch/blackfin/mach-bf538/include/mach/cdefBF539.h -186cc4b6f25f9d57f17726efbb423f5b linux-3.0/arch/blackfin/mach-bf538/include/mach/cdefBF538.h -56dd4081f653d8f95a7bbd99394fcb6d linux-3.0/arch/blackfin/mach-bf538/include/mach/blackfin.h -7f99395680d3ba93983cf3702bb93ce4 linux-3.0/arch/blackfin/mach-bf538/include/mach/bfin_serial.h -37fdbda440d7785189422b9f7bc9eb04 linux-3.0/arch/blackfin/mach-bf538/include/mach/bf538.h -5f8b9dd24714cbdb66516af09b0c34a5 linux-3.0/arch/blackfin/mach-bf538/include/mach/anomaly.h -2ce863847b0b41cc9f213bf6754a2070 linux-3.0/arch/blackfin/mach-bf538/ext-gpio.c -406520d020126b2814b26b6f31dafe81 linux-3.0/arch/blackfin/mach-bf538/dma.c -1c702f74f41bd94b814ff3018e72af09 linux-3.0/arch/blackfin/mach-bf538/boards/ezkit.c -a91727f780b7d4a21265b6e9372e7e52 linux-3.0/arch/blackfin/mach-bf538/boards/Makefile -8ff99efc21df126c8f3499946966cb31 linux-3.0/arch/blackfin/mach-bf538/boards/Kconfig -65f292b12f52474bbcd94d3bf4d0e493 linux-3.0/arch/blackfin/mach-bf538/Makefile -1ff7b173560ad92066b4246b68d19e2a linux-3.0/arch/blackfin/mach-bf538/Kconfig -fb5d6f094d6e38799d5e22e20f5642d6 linux-3.0/arch/blackfin/mach-bf537/ints-priority.c -80ef5983d21728414944375913d52dbc linux-3.0/arch/blackfin/mach-bf537/include/mach/portmux.h -82ba7bdbebb6efaaff39881791087b88 linux-3.0/arch/blackfin/mach-bf537/include/mach/pll.h -ec90eae7efb285f12fe1cda65f52fff0 linux-3.0/arch/blackfin/mach-bf537/include/mach/mem_map.h -f134dea6277eb5968a4db34603d6abf5 linux-3.0/arch/blackfin/mach-bf537/include/mach/irq.h -a572d8111cb56179969006a1ce876ca4 linux-3.0/arch/blackfin/mach-bf537/include/mach/gpio.h -2d98dbde5f6661c87b9eea281af6d332 linux-3.0/arch/blackfin/mach-bf537/include/mach/dma.h -2cc007598b4bb5d1334d89c4284fc412 linux-3.0/arch/blackfin/mach-bf537/include/mach/defBF537.h -fc202d0574808a94ecde26daae6c6b5c linux-3.0/arch/blackfin/mach-bf537/include/mach/defBF534.h -c85864aba0fb9f7063520f99194a615d linux-3.0/arch/blackfin/mach-bf537/include/mach/cdefBF537.h -ca3497e0316b3a0f72eedb2dc39641b6 linux-3.0/arch/blackfin/mach-bf537/include/mach/cdefBF534.h -152d597e64b64c99da3e731eaa5962e8 linux-3.0/arch/blackfin/mach-bf537/include/mach/blackfin.h -971cfa1403773f2681f56b2ac5b28574 linux-3.0/arch/blackfin/mach-bf537/include/mach/bfin_serial.h -dc3a9c91e95560fb33d3ec311f81fae0 linux-3.0/arch/blackfin/mach-bf537/include/mach/bf537.h -51c0d85b8d743b44b6e6e3b56a724cc4 linux-3.0/arch/blackfin/mach-bf537/include/mach/anomaly.h -094491b3f52a1f99458205566e43b6e3 linux-3.0/arch/blackfin/mach-bf537/dma.c -02969f9c2f6b84c1447fba6e87b30721 linux-3.0/arch/blackfin/mach-bf537/boards/tcm_bf537.c -9f89dbe7f4db9fe5ab75ecd499243f77 linux-3.0/arch/blackfin/mach-bf537/boards/stamp.c -da2ddea4ee2db48a8ab76f4f63cfc890 linux-3.0/arch/blackfin/mach-bf537/boards/pnav10.c -b8bf16064fb4781c808bc50baa2e1fec linux-3.0/arch/blackfin/mach-bf537/boards/minotaur.c -5b4edf4a3257152726f01a8834ecf6dc linux-3.0/arch/blackfin/mach-bf537/boards/dnp5370.c -0920c98492bc21d42b7ce09f9121606d linux-3.0/arch/blackfin/mach-bf537/boards/cm_bf537u.c -64eb106aecc94d4d0fbef204644c6912 linux-3.0/arch/blackfin/mach-bf537/boards/cm_bf537e.c -10a97c7e663edfd385b1d07bc80acfc8 linux-3.0/arch/blackfin/mach-bf537/boards/Makefile -980ef56063dd8400196523d4b4f14086 linux-3.0/arch/blackfin/mach-bf537/boards/Kconfig -9942a38d5efdd16022c8d935b6d78490 linux-3.0/arch/blackfin/mach-bf537/Makefile -0a2cc62c2674c9c88932322f263077a6 linux-3.0/arch/blackfin/mach-bf537/Kconfig -ce2cbb35d76dcff916d16c881be0657d linux-3.0/arch/blackfin/mach-bf533/ints-priority.c -788b76083b67c5b5a8cfe31144ffd18f linux-3.0/arch/blackfin/mach-bf533/include/mach/portmux.h -82ba7bdbebb6efaaff39881791087b88 linux-3.0/arch/blackfin/mach-bf533/include/mach/pll.h -ae0d8f80eb8981dd938d35f010a97267 linux-3.0/arch/blackfin/mach-bf533/include/mach/mem_map.h -779204fdcee236e695879776ae5dbe36 linux-3.0/arch/blackfin/mach-bf533/include/mach/irq.h -31c872a4dd31c5fbfd85b2eab87df860 linux-3.0/arch/blackfin/mach-bf533/include/mach/gpio.h -154c9cfce5329790003301259bb487dd linux-3.0/arch/blackfin/mach-bf533/include/mach/dma.h -d33e87f08b643318ee9c1093efce3c99 linux-3.0/arch/blackfin/mach-bf533/include/mach/defBF532.h -2aa95ce128a47729c98df045ce98a184 linux-3.0/arch/blackfin/mach-bf533/include/mach/cdefBF532.h -f1a2bc81482e00f8dd24ed2d34883a0a linux-3.0/arch/blackfin/mach-bf533/include/mach/blackfin.h -4bf22b1c54cc98f7035fe78900cc7c68 linux-3.0/arch/blackfin/mach-bf533/include/mach/bfin_serial.h -074b34f31c06075d3c2a7aa131917d0b linux-3.0/arch/blackfin/mach-bf533/include/mach/bf533.h -91eb7bcadc19f6a5efd6fa6f1788041f linux-3.0/arch/blackfin/mach-bf533/include/mach/anomaly.h -5d64d2d491b62ee654e235ca4f801081 linux-3.0/arch/blackfin/mach-bf533/dma.c -f66337ec9bda85da47f2b92154e1b221 linux-3.0/arch/blackfin/mach-bf533/boards/stamp.c -f321c63afd0472baba75ab96068750f8 linux-3.0/arch/blackfin/mach-bf533/boards/ip0x.c -327ed6467cbd7f000212ddf1189f2bbd linux-3.0/arch/blackfin/mach-bf533/boards/ezkit.c -5c19832eaf8c1e95384f4bcfb963e630 linux-3.0/arch/blackfin/mach-bf533/boards/cm_bf533.c -c595585d3fd43aa012f62d3356c0f938 linux-3.0/arch/blackfin/mach-bf533/boards/blackstamp.c -7df509672816d77b718f4112f37f58b1 linux-3.0/arch/blackfin/mach-bf533/boards/Makefile -83776c3ee2da906c4b6d8687b93747ff linux-3.0/arch/blackfin/mach-bf533/boards/Kconfig -14e0ee10414e4efc38fec4c360c34be4 linux-3.0/arch/blackfin/mach-bf533/boards/H8606.c -66866284c4f0cbc7dbd5adf953bdec6d linux-3.0/arch/blackfin/mach-bf533/Makefile -280dc5cce093f42405b87383e8cb0a66 linux-3.0/arch/blackfin/mach-bf533/Kconfig -f07ddff9914b40d57eaf7136a5d3564e linux-3.0/arch/blackfin/mach-bf527/ints-priority.c -b86626b12203a51923b04f01de8c9829 linux-3.0/arch/blackfin/mach-bf527/include/mach/portmux.h -82ba7bdbebb6efaaff39881791087b88 linux-3.0/arch/blackfin/mach-bf527/include/mach/pll.h -129e55a97acdf8be244c9ed5e14f4559 linux-3.0/arch/blackfin/mach-bf527/include/mach/mem_map.h -99f07d088e290622d66c11a82dc65f6b linux-3.0/arch/blackfin/mach-bf527/include/mach/irq.h -a572d8111cb56179969006a1ce876ca4 linux-3.0/arch/blackfin/mach-bf527/include/mach/gpio.h -c887e87952e2ff4b615be1d2edc90ff4 linux-3.0/arch/blackfin/mach-bf527/include/mach/dma.h -9b7be3d380119bf6c3427f9f654b6992 linux-3.0/arch/blackfin/mach-bf527/include/mach/defBF527.h -0b74f624b36b04440e9f25065ebfae87 linux-3.0/arch/blackfin/mach-bf527/include/mach/defBF525.h -51385f98a8c55ed1c0e0e40668012a6d linux-3.0/arch/blackfin/mach-bf527/include/mach/defBF522.h -2c8b9d4de700f0f8016cf0a7e0e1b6bc linux-3.0/arch/blackfin/mach-bf527/include/mach/cdefBF527.h -19638c5b60ca5b388dcbfcca1262477d linux-3.0/arch/blackfin/mach-bf527/include/mach/cdefBF525.h -985950e555dfafa44f41424c389f85a0 linux-3.0/arch/blackfin/mach-bf527/include/mach/cdefBF522.h -83ca145f8b79fa3177622a3e1d3174f2 linux-3.0/arch/blackfin/mach-bf527/include/mach/blackfin.h -971cfa1403773f2681f56b2ac5b28574 linux-3.0/arch/blackfin/mach-bf527/include/mach/bfin_serial.h -bd0d1b7146aac884239d009956096ca8 linux-3.0/arch/blackfin/mach-bf527/include/mach/bf527.h -e2429c873cad00e64b8df573a51e8e29 linux-3.0/arch/blackfin/mach-bf527/include/mach/anomaly.h -99e94f9f316584824ee9dde9f4a2b160 linux-3.0/arch/blackfin/mach-bf527/dma.c -dd25a31f45743954db8a622532e07094 linux-3.0/arch/blackfin/mach-bf527/boards/tll6527m.c -412db37f162fb11ef09146d0cd837df3 linux-3.0/arch/blackfin/mach-bf527/boards/ezkit.c -e58879824acd42e4f36a0252c61894c5 linux-3.0/arch/blackfin/mach-bf527/boards/ezbrd.c -71e1cdaa4524f67218b16fee86a51738 linux-3.0/arch/blackfin/mach-bf527/boards/cm_bf527.c -6e7fbabe12dd325cc5cf16c5f9cadaa7 linux-3.0/arch/blackfin/mach-bf527/boards/ad7160eval.c -a2df3539fc2bc8fa240e3e62a1f7605d linux-3.0/arch/blackfin/mach-bf527/boards/Makefile -ae3e52bd771ca52cba43d066bde9ba68 linux-3.0/arch/blackfin/mach-bf527/boards/Kconfig -374d6d16425fcee3550ac4bbdfa003d4 linux-3.0/arch/blackfin/mach-bf527/Makefile -b5ad45fb1415485d726015941cd9c391 linux-3.0/arch/blackfin/mach-bf527/Kconfig -c00d9082d3699bcbbfb6d0128f9c2d82 linux-3.0/arch/blackfin/mach-bf518/ints-priority.c -9bb3d87901f3d0729b1bd10f18355fcc linux-3.0/arch/blackfin/mach-bf518/include/mach/portmux.h -82ba7bdbebb6efaaff39881791087b88 linux-3.0/arch/blackfin/mach-bf518/include/mach/pll.h -83bb746aeb6d9a68f2889fdabab44096 linux-3.0/arch/blackfin/mach-bf518/include/mach/mem_map.h -f20f12cbe4d6e039d5b4ed568de859ab linux-3.0/arch/blackfin/mach-bf518/include/mach/irq.h -c3b4a116882ae47ea282bd9c67e034e6 linux-3.0/arch/blackfin/mach-bf518/include/mach/gpio.h -e37bdd5176a658c0489f956005b1b358 linux-3.0/arch/blackfin/mach-bf518/include/mach/dma.h -3eb63779ad7aba231ce436008f77b4b9 linux-3.0/arch/blackfin/mach-bf518/include/mach/defBF518.h -afc12dc7d8c284137e20949038e18982 linux-3.0/arch/blackfin/mach-bf518/include/mach/defBF516.h -fc5603ac3ec5806c20e7145e46e774d4 linux-3.0/arch/blackfin/mach-bf518/include/mach/defBF514.h -baf938dffdcbff33d50a9672eb161e40 linux-3.0/arch/blackfin/mach-bf518/include/mach/defBF512.h -b281493bc8e1c7f8faac4f64483d3682 linux-3.0/arch/blackfin/mach-bf518/include/mach/cdefBF518.h -2173cd96756d218ae6174cfa771c238a linux-3.0/arch/blackfin/mach-bf518/include/mach/cdefBF516.h -c0f9526ac268ce4223926c58e4855843 linux-3.0/arch/blackfin/mach-bf518/include/mach/cdefBF514.h -165ec10bb3e838ae1ca95c79a4e3f044 linux-3.0/arch/blackfin/mach-bf518/include/mach/cdefBF512.h -fa9900bc3cd5d3910f57eaef5c1f454f linux-3.0/arch/blackfin/mach-bf518/include/mach/blackfin.h -971cfa1403773f2681f56b2ac5b28574 linux-3.0/arch/blackfin/mach-bf518/include/mach/bfin_serial.h -f83ead773409f81a8dbad7af00797931 linux-3.0/arch/blackfin/mach-bf518/include/mach/bf518.h -354dcb5dce22f3f63414814e0a09b7a7 linux-3.0/arch/blackfin/mach-bf518/include/mach/anomaly.h -b9dd9756bba77a86094053c2294ae87d linux-3.0/arch/blackfin/mach-bf518/dma.c -59b03ff7bfa4f350cc43d0a409c1843a linux-3.0/arch/blackfin/mach-bf518/boards/tcm-bf518.c -c520cd275f6b5d80edd9f2dcbbc96380 linux-3.0/arch/blackfin/mach-bf518/boards/ezbrd.c -7660f759f51a288b160b4f99c0246bcf linux-3.0/arch/blackfin/mach-bf518/boards/Makefile -bc67a2a3029e71ecca159f19db380cc9 linux-3.0/arch/blackfin/mach-bf518/boards/Kconfig -3508f60a518c3ebef1cbc0ea893e2bcc linux-3.0/arch/blackfin/mach-bf518/Makefile -9132ff99231e23f813984dd42aa5923a linux-3.0/arch/blackfin/mach-bf518/Kconfig -52e85978b5fc0ccd5be0e7716ddab3f3 linux-3.0/arch/blackfin/lib/umulsi3_highpart.S -d3033d71759a815c3cc5c68760399b65 linux-3.0/arch/blackfin/lib/umodsi3.S -ed658f4e8380e21d6f84036145c1209c linux-3.0/arch/blackfin/lib/udivsi3.S -a3f90182c988339c27dc0ca48841267f linux-3.0/arch/blackfin/lib/strncpy.S -9575fb3e1eb3097605fbdaa06f65a330 linux-3.0/arch/blackfin/lib/strncmp.S -58377303d225f9877dbb3b8bb4e359b9 linux-3.0/arch/blackfin/lib/strcpy.S -7fb7d761404fe0bcccd876221249762e linux-3.0/arch/blackfin/lib/strcmp.S -de958add1c2890b1ad98bb1a2489ed0a linux-3.0/arch/blackfin/lib/smulsi3_highpart.S -e92fc8dc5b9bee1fbdb29ce32e0e2b52 linux-3.0/arch/blackfin/lib/outs.S -bb94b658e304e2188d689b5333a33cf4 linux-3.0/arch/blackfin/lib/muldi3.S -ae8995299ce4b710dae8c57f6875c68a linux-3.0/arch/blackfin/lib/modsi3.S -095a4ad000573f717470121f4b09c632 linux-3.0/arch/blackfin/lib/memset.S -6e838a1d8ad6c7ece1db4b69555c3869 linux-3.0/arch/blackfin/lib/memmove.S -ce5e5b8eaf1b4f2f5689846baf7d1ba0 linux-3.0/arch/blackfin/lib/memcpy.S -3579700773afa2509475030f6f87c06d linux-3.0/arch/blackfin/lib/memcmp.S -343cd815c86cf8c5603f580a94db0a9c linux-3.0/arch/blackfin/lib/memchr.S -db2ebbb18c46a6cd10130fcd948057bd linux-3.0/arch/blackfin/lib/lshrdi3.c -ecad46a8116c92a5f24f087b025d2e23 linux-3.0/arch/blackfin/lib/ins.S -6a84b36b50b3ba43b1d34fff5258dc36 linux-3.0/arch/blackfin/lib/gcclib.h -5a290b7609f033a19756770f511a52ca linux-3.0/arch/blackfin/lib/divsi3.S -e85864fa69b36e7f1a0da8925fce7558 linux-3.0/arch/blackfin/lib/ashrdi3.c -3944323c9574cb1a465221f8531ad928 linux-3.0/arch/blackfin/lib/ashldi3.c -d7a8314f741358dc7b4af14c611e6685 linux-3.0/arch/blackfin/lib/Makefile -2d1791ca2ec4ec702c7c1bdb967ea64d linux-3.0/arch/blackfin/kernel/vmlinux.lds.S -1443397ed9de397587ed4b7ad877c93a linux-3.0/arch/blackfin/kernel/traps.c -a726756cdfb68481a3a94c9598c584d6 linux-3.0/arch/blackfin/kernel/trace.c -e5327d896e39f88af4cbf01d37ab788a linux-3.0/arch/blackfin/kernel/time.c -33539cffaf489cbe884b9194d3d224c9 linux-3.0/arch/blackfin/kernel/time-ts.c -1bf419054e64bc50bc5758becb369c8a linux-3.0/arch/blackfin/kernel/sys_bfin.c -fac0e9ef9091606a80f0be8fbc692886 linux-3.0/arch/blackfin/kernel/stacktrace.c -14e96b01f11e6fdec7d4d261af9bc72a linux-3.0/arch/blackfin/kernel/signal.c -48ef40b08e09ac8152f2d4fa7b155c82 linux-3.0/arch/blackfin/kernel/shadow_console.c -e117abab0ec05eea9776ec11562c3ba7 linux-3.0/arch/blackfin/kernel/setup.c -a9a9a1110c438d7c1b8412118baa9ce0 linux-3.0/arch/blackfin/kernel/reboot.c -9e53efb76778c1809a6c9eb26ef15e31 linux-3.0/arch/blackfin/kernel/ptrace.c -a2129c6f3b08bfce2cc3cff3cbfdf7a3 linux-3.0/arch/blackfin/kernel/pseudodbg.c -82290308a0c60ea0432717094c619049 linux-3.0/arch/blackfin/kernel/process.c -415b524b34594f9ae7d2fabdeb8c7bc7 linux-3.0/arch/blackfin/kernel/perf_event.c -3e544c1794def61b76782fc510f4b35f linux-3.0/arch/blackfin/kernel/nmi.c -b944cc639c4bbf3a10290c1aade53fd4 linux-3.0/arch/blackfin/kernel/module.c -6976723512a47c263b50a545ba66098d linux-3.0/arch/blackfin/kernel/kgdb_test.c -491ec381561cfe1b82593e821be360f7 linux-3.0/arch/blackfin/kernel/kgdb.c -7160596c01f0ad347e2af02a543d7dc3 linux-3.0/arch/blackfin/kernel/irqchip.c -604df5cb8a20c9b0a253ebef376f35f8 linux-3.0/arch/blackfin/kernel/ipipe.c -5208ab70d715658e93bcdb8232175198 linux-3.0/arch/blackfin/kernel/init_task.c -a8dd60d2bbc032da09777a7662a995e1 linux-3.0/arch/blackfin/kernel/gptimers.c -2d65e5e774eeda2f59a4dceef71732be linux-3.0/arch/blackfin/kernel/ftrace.c -fbc7032302eaba72d18f3efefee3ad5a linux-3.0/arch/blackfin/kernel/ftrace-entry.S -ce42b8bd5ae275d7139fe4a5da9522f2 linux-3.0/arch/blackfin/kernel/flat.c -9d84bdb2461e32229200329bcf49707f linux-3.0/arch/blackfin/kernel/fixed_code.S -eebae36049cd8392f6e4093833bb1b2f linux-3.0/arch/blackfin/kernel/exception.c -ecfe00f3ff7e1cfb1e52a7957cfd0e7b linux-3.0/arch/blackfin/kernel/entry.S -05f3b3eac7bcfbcaa0eac3d9b2d7d4ed linux-3.0/arch/blackfin/kernel/early_printk.c -ac7751af1861d5611526cc1700dffad5 linux-3.0/arch/blackfin/kernel/dumpstack.c -1ca8f61c6ee4ef371c5f6cd73d462456 linux-3.0/arch/blackfin/kernel/dma-mapping.c -f563729b6710b354c3b7c34cbcf52597 linux-3.0/arch/blackfin/kernel/debug-mmrs.c -6fdb8da1d234fc9ec10de26a2a770ced linux-3.0/arch/blackfin/kernel/cplbinfo.c -811d886c4df598a3be46bd788ae29c10 linux-3.0/arch/blackfin/kernel/cplb-nompu/cplbmgr.c -89acd3ff13424b4973de0297713194ea linux-3.0/arch/blackfin/kernel/cplb-nompu/cplbinit.c -d0f2553ab14a3895e1b401748a551864 linux-3.0/arch/blackfin/kernel/cplb-nompu/Makefile -971cbac4bb2a8c12b308a10a82a2ed0f linux-3.0/arch/blackfin/kernel/cplb-mpu/cplbmgr.c -6c6bd60b6b5d52f5ca97b472d8acef4e linux-3.0/arch/blackfin/kernel/cplb-mpu/cplbinit.c -d0f2553ab14a3895e1b401748a551864 linux-3.0/arch/blackfin/kernel/cplb-mpu/Makefile -cbcd56fde82d1df376c5d43eff7f5f08 linux-3.0/arch/blackfin/kernel/bfin_ksyms.c -916729267db5b5ae1d9b4adf6dc610a5 linux-3.0/arch/blackfin/kernel/bfin_gpio.c -3d913a5d51c06bde47f075eba450b71e linux-3.0/arch/blackfin/kernel/bfin_dma_5xx.c -48c0479e101833c6c247fb54f49dae0e linux-3.0/arch/blackfin/kernel/asm-offsets.c -a22de37c8b1eb424e3de726828459a30 linux-3.0/arch/blackfin/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/blackfin/kernel/.gitignore -83fbc62926f27ec47441f9deeda3bb23 linux-3.0/arch/blackfin/include/mach-common/ports-j.h -fc5ffc21421743095ab6f9983bafba7e linux-3.0/arch/blackfin/include/mach-common/ports-i.h -96f04f5c00e5538afa4a2efd6132baae linux-3.0/arch/blackfin/include/mach-common/ports-h.h -67bdfb7fbdf442178f25693fd0dd6cf6 linux-3.0/arch/blackfin/include/mach-common/ports-g.h -c200ebbee012c5cc68ee10fe2d5b7880 linux-3.0/arch/blackfin/include/mach-common/ports-f.h -e8a3c4f87f60061da651c5933e28c370 linux-3.0/arch/blackfin/include/mach-common/ports-e.h -54cf2137172578a34c9d01b4d86f5158 linux-3.0/arch/blackfin/include/mach-common/ports-d.h -094e6fc59cfd394de196430a9e4ed5fa linux-3.0/arch/blackfin/include/mach-common/ports-c.h -c0f4c1cdba685d810aefa0fa5745d34f linux-3.0/arch/blackfin/include/mach-common/ports-b.h -ef26e6d8b167214bddb53f7369c2a840 linux-3.0/arch/blackfin/include/mach-common/ports-a.h -df6110c929f81623f097d63d13c79b33 linux-3.0/arch/blackfin/include/mach-common/pll.h -f52e0f68544b121821b5b9e0600833c5 linux-3.0/arch/blackfin/include/mach-common/irq.h -814561abc8d5c65c5345f2a4f8073f55 linux-3.0/arch/blackfin/include/asm/xor.h -a595381bb4d01838f1d4f90575fdc713 linux-3.0/arch/blackfin/include/asm/user.h -adf4902184d62730f4687ff592c815c0 linux-3.0/arch/blackfin/include/asm/unistd.h -eabd9cc19ddd5cff3ad6860567398ca8 linux-3.0/arch/blackfin/include/asm/unaligned.h -54ef8b4281a8709709fd75155efac8f2 linux-3.0/arch/blackfin/include/asm/ucontext.h -354bfde552b8c7699f82cc80518928d0 linux-3.0/arch/blackfin/include/asm/uaccess.h -b71092c914ac20c4f96e66104cbbafba linux-3.0/arch/blackfin/include/asm/types.h -3006b5cb5e6a69a042a3ed01c07ff56a linux-3.0/arch/blackfin/include/asm/traps.h -2c0289e7ab7fb10a07b1643837f93f60 linux-3.0/arch/blackfin/include/asm/trace.h -dd5e1564a7aba8918049ff3c36a9729e linux-3.0/arch/blackfin/include/asm/topology.h -ad55c56e5c93f2ef719c447a58d39d62 linux-3.0/arch/blackfin/include/asm/tlbflush.h -ec8ed076c157e12a032585bbd084241e linux-3.0/arch/blackfin/include/asm/tlb.h -268ce5dc1807facae00419f8d176804e linux-3.0/arch/blackfin/include/asm/timex.h -01ef50a0d3a2766cc9c5af5c8348c191 linux-3.0/arch/blackfin/include/asm/time.h -cc3531044f3c44bcae3396fa332d6f3c linux-3.0/arch/blackfin/include/asm/thread_info.h -55f8ec5e3a7ee0e398b33d52b4d28e89 linux-3.0/arch/blackfin/include/asm/termios.h -9d9ec0d765b9eba91700fcb860f4b9ee linux-3.0/arch/blackfin/include/asm/termbits.h -e8453fcb2a6f6e94017997ac465bdaca linux-3.0/arch/blackfin/include/asm/system.h -309d6e7f6ce282129a42b22763c28439 linux-3.0/arch/blackfin/include/asm/syscall.h -856d00c121f36f54a74c1688e82b2cd1 linux-3.0/arch/blackfin/include/asm/swab.h -ce4e30662ba211279641f160b3d46cea linux-3.0/arch/blackfin/include/asm/string.h -4b9103b93197bd194432f9b1415d31dd linux-3.0/arch/blackfin/include/asm/statfs.h -2378db4721721c14822dfc6fadfebe1e linux-3.0/arch/blackfin/include/asm/stat.h -8749e540745afde05b514b8e9c376aa3 linux-3.0/arch/blackfin/include/asm/spinlock_types.h -5b14cc9cad9ec04a48ba830dd65be9cc linux-3.0/arch/blackfin/include/asm/spinlock.h -965625ab160bad6b06ffae41abf01378 linux-3.0/arch/blackfin/include/asm/sockios.h -892b575276515e01057bf49a9806fafc linux-3.0/arch/blackfin/include/asm/socket.h -68299176266ac123e6b6e8934b812f3c linux-3.0/arch/blackfin/include/asm/smp.h -921a78a9a205f66996f3dfe68f78478e linux-3.0/arch/blackfin/include/asm/signal.h -2dfb83c87bb4174b479bb0b0bb16d329 linux-3.0/arch/blackfin/include/asm/siginfo.h -9fb2883832bda175145e3bb6a4085354 linux-3.0/arch/blackfin/include/asm/sigcontext.h -99c40bee77ebb536b422523c91382c95 linux-3.0/arch/blackfin/include/asm/shmparam.h -c1f66b7faa2dfa17efdbdf1e416be250 linux-3.0/arch/blackfin/include/asm/shmbuf.h -58336519272c6ff49368373c90dee6b9 linux-3.0/arch/blackfin/include/asm/setup.h -b7fdb5c8ffc0fcea37c954a24e7e1777 linux-3.0/arch/blackfin/include/asm/serial.h -54b0fb0eed0916e7b2e6918f2bd8e3c3 linux-3.0/arch/blackfin/include/asm/sembuf.h -9c4dd5928e9755ac70b867b87628adad linux-3.0/arch/blackfin/include/asm/segment.h -e8cd02041a36c887dfbdbdf2f92d2b31 linux-3.0/arch/blackfin/include/asm/sections.h -3b4c0861da2a120de212a9387e4ef9da linux-3.0/arch/blackfin/include/asm/scatterlist.h -75e71e30ddc8223c49794abe9a8d1902 linux-3.0/arch/blackfin/include/asm/rwlock.h -36eb2a82010cc2b8194bde001a28c7a5 linux-3.0/arch/blackfin/include/asm/resource.h -7d5d4032027c242e24e54d9232c699c5 linux-3.0/arch/blackfin/include/asm/reboot.h -6798a1ca65714bd84f4c60d8053a4cc7 linux-3.0/arch/blackfin/include/asm/ptrace.h -ec931475eaeeb65b2782071088f09b2c linux-3.0/arch/blackfin/include/asm/pseudo_instructions.h -e1645cb6ab9469e5512174d4e19e61c7 linux-3.0/arch/blackfin/include/asm/processor.h -bfcb85fc4c939700ace5c754f490cbc6 linux-3.0/arch/blackfin/include/asm/posix_types.h -58a8e1a4078e32568760b62931447a1d linux-3.0/arch/blackfin/include/asm/portmux.h -b11bc8e97c2e3cf829f8634d3b2d4ed7 linux-3.0/arch/blackfin/include/asm/poll.h -4038219fd0603ffb8246b9962020ce74 linux-3.0/arch/blackfin/include/asm/pgtable.h -5e26210d10f4300df9fd2332facd5f99 linux-3.0/arch/blackfin/include/asm/pgalloc.h -ec39dbe48687b1e3fc89ff2b5b2496b9 linux-3.0/arch/blackfin/include/asm/perf_event.h -1d5304b635d1f0e5cb6f2cd68524105c linux-3.0/arch/blackfin/include/asm/percpu.h -3c8f1aefcadbf52661f491d51df81b7f linux-3.0/arch/blackfin/include/asm/pda.h -e4fe6a98ddabe7a5a9b00720d5630259 linux-3.0/arch/blackfin/include/asm/pci.h -29dbb685f25e0e09aa59624964e2b815 linux-3.0/arch/blackfin/include/asm/param.h -9839a7d2e250aa4e56e47d82acfea715 linux-3.0/arch/blackfin/include/asm/page_offset.h -ffacbd8e478f49ed9f142c5b838cde66 linux-3.0/arch/blackfin/include/asm/page.h -578d7a7257a480af68ab9323434607c1 linux-3.0/arch/blackfin/include/asm/nmi.h -3ece52d16e356129966a850109d2107a linux-3.0/arch/blackfin/include/asm/nand.h -d48c2f5d835dc92ca0cbac7f2cb3e950 linux-3.0/arch/blackfin/include/asm/mutex.h -a8606cb7f0b36b7ffed407a409829c9d linux-3.0/arch/blackfin/include/asm/msgbuf.h -e2d57764a24c43865c7cf03f00e52f68 linux-3.0/arch/blackfin/include/asm/module.h -c6301af47fd6f86933682c1171462b97 linux-3.0/arch/blackfin/include/asm/mmu_context.h -677007254cdadd0877519e7dad188306 linux-3.0/arch/blackfin/include/asm/mmu.h -c10dfdbe274b25756fe8f9900e428096 linux-3.0/arch/blackfin/include/asm/mman.h -b1f14128fc414714cf2787e759cc7c18 linux-3.0/arch/blackfin/include/asm/mem_map.h -293e4b363c3e3280897cb9ed7910d0f2 linux-3.0/arch/blackfin/include/asm/mem_init.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/blackfin/include/asm/local64.h -dd5c2452f777c57e923e1b3de9ac2c14 linux-3.0/arch/blackfin/include/asm/local.h -a107550a07c76f5cfa083edb87a2f44b linux-3.0/arch/blackfin/include/asm/linkage.h -b9c533d5d94f1c2b244c7b9b263e2f02 linux-3.0/arch/blackfin/include/asm/l1layout.h -88657893ad48a180b72cb0a6b8521710 linux-3.0/arch/blackfin/include/asm/kmap_types.h -c006d8f5167145ddb2b34e4a8d69659f linux-3.0/arch/blackfin/include/asm/kgdb.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/blackfin/include/asm/kdebug.h -579cf2943dba12ea42ff1b1d910c5656 linux-3.0/arch/blackfin/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/blackfin/include/asm/irq_regs.h -2bb7cd3fec107de7c3f4ee893ed39aea linux-3.0/arch/blackfin/include/asm/irq_handler.h -25a364097fdf5bb8c7149fdf8944dc73 linux-3.0/arch/blackfin/include/asm/irq.h -51b8ae38dba115c61c1cb68bf904e2c5 linux-3.0/arch/blackfin/include/asm/ipipe_base.h -d7c541c6f95b8f889a35f6133a0bce54 linux-3.0/arch/blackfin/include/asm/ipipe.h -a5cedbd444be7216303596ec4d505047 linux-3.0/arch/blackfin/include/asm/ipcbuf.h -a2d60e7329e5f98655568c6617737b68 linux-3.0/arch/blackfin/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/blackfin/include/asm/ioctl.h -24a021a226ebae65a093f4a0bbfaa653 linux-3.0/arch/blackfin/include/asm/io.h -851eea9bd237499f4260d6daa0ac2712 linux-3.0/arch/blackfin/include/asm/hw_irq.h -ff3af8239654bdf96de84e523d22d61d linux-3.0/arch/blackfin/include/asm/hardirq.h -844ba1468fd454e9195df8e5884416c8 linux-3.0/arch/blackfin/include/asm/gptimers.h -d59a9e89e132feaf6a0dcb7c5d6a56c5 linux-3.0/arch/blackfin/include/asm/gpio.h -4ef4a292c77e30456ab62e2bd9f186e9 linux-3.0/arch/blackfin/include/asm/futex.h -8fb8b0e33f9085c0f1f266af106e9cc6 linux-3.0/arch/blackfin/include/asm/ftrace.h -71fbd2f364034ddcc7d36da1372bdf8e linux-3.0/arch/blackfin/include/asm/flat.h -6661a001fe920319bdac25b2cc4a376b linux-3.0/arch/blackfin/include/asm/fixed_code.h -f9e15ba2a4049b9fccc9e303906ea470 linux-3.0/arch/blackfin/include/asm/fcntl.h -6992ca0c4939de26e55488ce729fc0a4 linux-3.0/arch/blackfin/include/asm/fb.h -05366a204880e8cf1fcd3e61ef3cfa41 linux-3.0/arch/blackfin/include/asm/errno.h -4dec903c7c7d74c3bcb298ebabb3dee6 linux-3.0/arch/blackfin/include/asm/entry.h -6df22cf6584ec54da208b4a77ec955d6 linux-3.0/arch/blackfin/include/asm/emergency-restart.h -a65bf544e4b673fd6f4ccec23bdb58d1 linux-3.0/arch/blackfin/include/asm/elf.h -2376762f83c558078a4ecd712b83b336 linux-3.0/arch/blackfin/include/asm/early_printk.h -da429ce6dee66a68c5053a50cfa24af3 linux-3.0/arch/blackfin/include/asm/dpmc.h -6844a127055e2aecec5bd97567504bfa linux-3.0/arch/blackfin/include/asm/dma.h -c3a986b020b3a6c262dfcb16fee32c79 linux-3.0/arch/blackfin/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/blackfin/include/asm/div64.h -06bb9d0bae4c999b6739f1102f01d44f linux-3.0/arch/blackfin/include/asm/device.h -171ad0a43b5ba06b9591c9fe993b3495 linux-3.0/arch/blackfin/include/asm/delay.h -212e3f0e0da5fdecd1109f0661a53b31 linux-3.0/arch/blackfin/include/asm/def_LPBlackfin.h -13273a00e1c43d5fb9c31339028bf8af linux-3.0/arch/blackfin/include/asm/current.h -e07bb1fbce67b580c13b57c94d6eb580 linux-3.0/arch/blackfin/include/asm/cputime.h -3916b890bfd4c89dfbf7567841dfc89b linux-3.0/arch/blackfin/include/asm/cpu.h -84af709bfab0a121e92b1fe67f89b050 linux-3.0/arch/blackfin/include/asm/cplbinit.h -e9119fae2e17894a65dd5cea4fd0b1ba linux-3.0/arch/blackfin/include/asm/cplb.h -aef5ae767a3f3d58ac0a7d4ec3c65544 linux-3.0/arch/blackfin/include/asm/context.S -fd7a903d98d1ea7279969ee3212e7123 linux-3.0/arch/blackfin/include/asm/clocks.h -bef89e794d4e257a2b98141ac4373aa2 linux-3.0/arch/blackfin/include/asm/checksum.h -7eae22b9ae42c8b52950f6d95b084054 linux-3.0/arch/blackfin/include/asm/cdef_LPBlackfin.h -b8ec33b742371119e5be574cd7f2ce94 linux-3.0/arch/blackfin/include/asm/cacheflush.h -d6e98e1b2b28042ab234059a95e507e4 linux-3.0/arch/blackfin/include/asm/cachectl.h -dba00e88c107d144c592525904639cea linux-3.0/arch/blackfin/include/asm/cache.h -f782ff9eddd52937917e576bdb70eb18 linux-3.0/arch/blackfin/include/asm/byteorder.h -8032b078e81a3a2126cb50c13e36ebd7 linux-3.0/arch/blackfin/include/asm/bugs.h -e5702de744f02cc82ffb8feec7fdcb10 linux-3.0/arch/blackfin/include/asm/bug.h -2b6a2a7305dd6d1c4396155896a623c1 linux-3.0/arch/blackfin/include/asm/blackfin.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/blackfin/include/asm/bitsperlong.h -2c64849d460a94798941fcd821aba951 linux-3.0/arch/blackfin/include/asm/bitops.h -0d8585f62d211713d3f021bf57cbcf26 linux-3.0/arch/blackfin/include/asm/bfrom.h -070a9d29c6c5f4c7cbcfa4680f9d2b95 linux-3.0/arch/blackfin/include/asm/bfin_watchdog.h -eeeb457eb5ccc2946b78da6c5989c58d linux-3.0/arch/blackfin/include/asm/bfin_twi.h -51a891300bb1b8cc07d28ba7edef3aa5 linux-3.0/arch/blackfin/include/asm/bfin_sport.h -e64adb03e21a7be052cfa56dd2bf62f0 linux-3.0/arch/blackfin/include/asm/bfin_simple_timer.h -85f827f9f2c6a6f13e622982fb1fbd1f linux-3.0/arch/blackfin/include/asm/bfin_serial.h -58cf29ebcfccdcf89168851c272fce03 linux-3.0/arch/blackfin/include/asm/bfin_sdh.h -d857b988806c84517508c82091bfb19b linux-3.0/arch/blackfin/include/asm/bfin_rotary.h -4721e510fbe1e023d4ac2b20e1199e3e linux-3.0/arch/blackfin/include/asm/bfin_ppi.h -1a0c1569b27d13c0f9eaf2cf356a75f5 linux-3.0/arch/blackfin/include/asm/bfin_pfmon.h -983b4dc6fb51dcf0a3b0495a1b7f46c9 linux-3.0/arch/blackfin/include/asm/bfin_dma.h -93f8a8be37da3f59a62dc5d42a03807e linux-3.0/arch/blackfin/include/asm/bfin_can.h -7ea60c38bff0970c50407924f80283a8 linux-3.0/arch/blackfin/include/asm/bfin5xx_spi.h -304613d3261038006ffab9aa4e401bfc linux-3.0/arch/blackfin/include/asm/bfin-lq035q1.h -b4d087cb8875ba41bcd128bdeb3634b1 linux-3.0/arch/blackfin/include/asm/bfin-global.h -e5dc0e719a2d2d7eb02264b4ff7ec240 linux-3.0/arch/blackfin/include/asm/auxvec.h -6e7948e03a612a4108749c0cf7dad357 linux-3.0/arch/blackfin/include/asm/atomic.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/blackfin/include/asm/asm-offsets.h -e0e3958f4bde93cfbc7b5434f8a259dd linux-3.0/arch/blackfin/include/asm/Kbuild -00143f161b79cb3c3ced81b94d1894d9 linux-3.0/arch/blackfin/configs/TCM-BF537_defconfig -5b7912db9a6d06929955880d31012da7 linux-3.0/arch/blackfin/configs/TCM-BF518_defconfig -9066fb9652860cd0352a44a76504db96 linux-3.0/arch/blackfin/configs/SRV1_defconfig -5dda24cbae84fbe4848e99cee37efc29 linux-3.0/arch/blackfin/configs/PNAV-10_defconfig -5f770694b99eddb9e08db688e0807726 linux-3.0/arch/blackfin/configs/IP0X_defconfig -ca49f47e0d38dc26ed60b7bf06034423 linux-3.0/arch/blackfin/configs/H8606_defconfig -30ccd5b67c355f419343347170b3a538 linux-3.0/arch/blackfin/configs/DNP5370_defconfig -5f41041ea7c65f5012d1d217842d4fa6 linux-3.0/arch/blackfin/configs/CM-BF561_defconfig -90aec2eb215fa7856eb6129d2e232764 linux-3.0/arch/blackfin/configs/CM-BF548_defconfig -d3733c34d9cbc2a9f32afefa35cf1c21 linux-3.0/arch/blackfin/configs/CM-BF537U_defconfig -b97cc56e4c3e7fab99ba74614a6d226c linux-3.0/arch/blackfin/configs/CM-BF537E_defconfig -037fbed6b49d5c2dc369433184f5e428 linux-3.0/arch/blackfin/configs/CM-BF533_defconfig -196fb2205099dd010009ca7dbe5d1b5e linux-3.0/arch/blackfin/configs/CM-BF527_defconfig -e7f3e421594c5c63f4f8c3e62e0bd7bd linux-3.0/arch/blackfin/configs/BlackStamp_defconfig -2c658f371556bc6a1915c44bfc193926 linux-3.0/arch/blackfin/configs/BF561-EZKIT_defconfig -031000520c0a911be215983b13b56680 linux-3.0/arch/blackfin/configs/BF561-EZKIT-SMP_defconfig -e2a9a60fcc8d38302aa7cffef3901e3c linux-3.0/arch/blackfin/configs/BF561-ACVILON_defconfig -9ac01a8480e07c219d1bbd9cdbaaadb0 linux-3.0/arch/blackfin/configs/BF548-EZKIT_defconfig -8acba950565de59b3c719fc96adb8b0a linux-3.0/arch/blackfin/configs/BF538-EZKIT_defconfig -c8d9819eb527c967bc2537a58df0577e linux-3.0/arch/blackfin/configs/BF537-STAMP_defconfig -d893ea1e3cfd6e09072e68e11e51ad7e linux-3.0/arch/blackfin/configs/BF533-STAMP_defconfig -65ca0a9df739daae3ab89e12c9de56e3 linux-3.0/arch/blackfin/configs/BF533-EZKIT_defconfig -32fba5404033b8e6c135d581a554aa28 linux-3.0/arch/blackfin/configs/BF527-TLL6527M_defconfig -901664faafdafa43600144e16238e869 linux-3.0/arch/blackfin/configs/BF527-EZKIT_defconfig -48899c6fe2696196ad9b6f3b787d3e47 linux-3.0/arch/blackfin/configs/BF527-EZKIT-V2_defconfig -a349b15e226792bae162c519a518b56b linux-3.0/arch/blackfin/configs/BF527-AD7160-EVAL_defconfig -ced61ca07978801abcb144dff08cfebe linux-3.0/arch/blackfin/configs/BF526-EZBRD_defconfig -21c5a626cddf56ddb1ba6ade8491acec linux-3.0/arch/blackfin/configs/BF518F-EZBRD_defconfig -4700664c52a78b43e395b6a78d1de9fa linux-3.0/arch/blackfin/boot/install.sh -bb2a2ce787dff5c740fc224b501f8981 linux-3.0/arch/blackfin/boot/Makefile -2db01cc12b819206b3c3bfe299ec5238 linux-3.0/arch/blackfin/boot/.gitignore -c512a9f108c0216ec265af5dc659d97e linux-3.0/arch/blackfin/Makefile -cf424aa0b55ee57310d3327be32eaad8 linux-3.0/arch/blackfin/Kconfig.debug -f627478cb270ebff7c2d547acd7fd3ed linux-3.0/arch/blackfin/Kconfig -a4c6905eebe64d979942830a6b5ec595 linux-3.0/arch/blackfin/ADI_BSD.txt -0901cfee7670c6ccab988402c3cf7a62 linux-3.0/arch/avr32/oprofile/op_model_avr32.c -bb2d1bbdec3378bc2ea7b71572a54e25 linux-3.0/arch/avr32/oprofile/backtrace.c -11f05391a07cc4ccabe989ce9944d141 linux-3.0/arch/avr32/oprofile/Makefile -d496c9541c8ab02c30fae032aefe43a7 linux-3.0/arch/avr32/mm/tlb.c -70ab570d647a1bc3f4ba147576ba7bdf linux-3.0/arch/avr32/mm/ioremap.c -49e61c2835286585da7be670ffb43d37 linux-3.0/arch/avr32/mm/init.c -f7d5f37bd3b313ce0a59a01d638c4883 linux-3.0/arch/avr32/mm/fault.c -c8ec0f3a900ce0cca57b74a909649678 linux-3.0/arch/avr32/mm/dma-coherent.c -bfc4c4c96f57f86a1c49c8f6675571f0 linux-3.0/arch/avr32/mm/copy_page.S -f204eea8e262ea7deeae66e81f948c7f linux-3.0/arch/avr32/mm/clear_page.S -318f34f8023ec57d413f31fb5cfa23cb linux-3.0/arch/avr32/mm/cache.c -b5539901f16c8882102257ec0e7e0e43 linux-3.0/arch/avr32/mm/Makefile -8488b0dd9084ed2a6afa11785e89594a linux-3.0/arch/avr32/mach-at32ap/sdramc.h -ee31e465ba3be4ee349d35a4f96c17dc linux-3.0/arch/avr32/mach-at32ap/pm.h -da50148428b0d673b0549034bda10879 linux-3.0/arch/avr32/mach-at32ap/pm.c -dc9fecd6e2a0b40af01a0e7cdd90f95d linux-3.0/arch/avr32/mach-at32ap/pm-at32ap700x.S -fb101a2285eea1518324d5772e17b4bb linux-3.0/arch/avr32/mach-at32ap/pio.h -ef7e2cf430866531deaee4ad66b9fc94 linux-3.0/arch/avr32/mach-at32ap/pio.c -8fa0874f8a8ab844dcbe60cec29516be linux-3.0/arch/avr32/mach-at32ap/pdc.c -9adee26112993437507586bde4962770 linux-3.0/arch/avr32/mach-at32ap/intc.h -2b8722331e21e5442e9f04038452c65b linux-3.0/arch/avr32/mach-at32ap/intc.c -c32e6c64762e1d92d3d11b3dd908159d linux-3.0/arch/avr32/mach-at32ap/include/mach/sram.h -bc2623bcfb768ab4830f9c022c5cc3a2 linux-3.0/arch/avr32/mach-at32ap/include/mach/smc.h -c915ba9af52e01185418c9c8e91212c9 linux-3.0/arch/avr32/mach-at32ap/include/mach/portmux.h -b53e9192a8580af320a48287d33401b2 linux-3.0/arch/avr32/mach-at32ap/include/mach/pm.h -96659dfc64d7c4cce9a11e63528a70cb linux-3.0/arch/avr32/mach-at32ap/include/mach/irq.h -ada9f8a12b861528673c0a3c03b410a6 linux-3.0/arch/avr32/mach-at32ap/include/mach/io.h -2218b5b231667bbadbe48cbe1145331e linux-3.0/arch/avr32/mach-at32ap/include/mach/init.h -e266b84d9ae0cbf29c12c1e788148ac1 linux-3.0/arch/avr32/mach-at32ap/include/mach/hmatrix.h -369845c79eddab7c4997003ddfd6ffb4 linux-3.0/arch/avr32/mach-at32ap/include/mach/gpio.h -c4281787ed45e5fb78a77cbbf6078916 linux-3.0/arch/avr32/mach-at32ap/include/mach/cpu.h -d4e13c319f5996aadb8043b99113af1b linux-3.0/arch/avr32/mach-at32ap/include/mach/chip.h -52a34ab60444cfc1fb65f3c8f950edd7 linux-3.0/arch/avr32/mach-at32ap/include/mach/board.h -ae554a0fae650db2051dcc73858a7ff6 linux-3.0/arch/avr32/mach-at32ap/include/mach/atmel-mci.h -6a315e77bdc896295aa1c08b2d135f29 linux-3.0/arch/avr32/mach-at32ap/include/mach/at32ap700x.h -c6e93e3a832229f9c1c25d8847094ea8 linux-3.0/arch/avr32/mach-at32ap/hsmc.h -3dfb1ca49faad81f8b680413d0be058b linux-3.0/arch/avr32/mach-at32ap/hsmc.c -4ab29d8146c520079cf9d3786168dba2 linux-3.0/arch/avr32/mach-at32ap/hmatrix.c -a1734d67b142efe52b826d5eeca395a2 linux-3.0/arch/avr32/mach-at32ap/extint.c -2fac59a3b7041c5ab050ba761b422fe7 linux-3.0/arch/avr32/mach-at32ap/cpufreq.c -a3a82f2db609d6758a084bd7e1c41839 linux-3.0/arch/avr32/mach-at32ap/clock.h -f3a4d6c910c513364506e5a4d1e73491 linux-3.0/arch/avr32/mach-at32ap/clock.c -e9cb051748a6638425659206cb1a8349 linux-3.0/arch/avr32/mach-at32ap/at32ap700x.c -bfabe58c4b4be1f8b0826447e70d815e linux-3.0/arch/avr32/mach-at32ap/Makefile -9fa34646636cf244dae9e783c7015186 linux-3.0/arch/avr32/mach-at32ap/Kconfig -26c0349e6e0da4481ef778bfcfced6bc linux-3.0/arch/avr32/lib/strnlen_user.S -08b6bca13c68898b7166a56d24a77e93 linux-3.0/arch/avr32/lib/strncpy_from_user.S -5505f5ac2c301b6d557028c4f24f1355 linux-3.0/arch/avr32/lib/memset.S -bf65c2d30fefd1d28acc70786b1bcec7 linux-3.0/arch/avr32/lib/memcpy.S -9d9026237fa7a7419de7b2d15ac09b22 linux-3.0/arch/avr32/lib/io-writesw.S -c2140366bfd70f36d567aae49d8f4807 linux-3.0/arch/avr32/lib/io-writesl.S -872697b719ecd0341afd6abdb293ced7 linux-3.0/arch/avr32/lib/io-writesb.S -8085f57256f36b2116bcb7142d618859 linux-3.0/arch/avr32/lib/io-readsw.S -cbdd8025d2fd72ae3e79bee8344b5782 linux-3.0/arch/avr32/lib/io-readsl.S -fcd36b21d4e6f5164766906f5b29803f linux-3.0/arch/avr32/lib/io-readsb.S -f7d5363a8ef4b793ed6782e86598f57d linux-3.0/arch/avr32/lib/findbit.S -c7ce4f0ee94bd72ff4c2e9a290b5cf3f linux-3.0/arch/avr32/lib/delay.c -74072349a83ad33fa31e89720e9cad1e linux-3.0/arch/avr32/lib/csum_partial_copy_generic.S -f486a3934005d58fd9042b611cec3078 linux-3.0/arch/avr32/lib/csum_partial.S -80f9541aefce15514845605475d3af5e linux-3.0/arch/avr32/lib/copy_user.S -75f5fd6575b31aacd0f48cc7806d1b78 linux-3.0/arch/avr32/lib/clear_user.S -09e7b064c34f357e9d9f518826d03d3a linux-3.0/arch/avr32/lib/__avr32_lsr64.S -3a7dc7e381adb503f35a144ca0cb1286 linux-3.0/arch/avr32/lib/__avr32_lsl64.S -082c535dbff9fa2c80c2a4f9e13da482 linux-3.0/arch/avr32/lib/__avr32_asr64.S -fcc72bc5d374210e49bdf3f49252e4e3 linux-3.0/arch/avr32/lib/Makefile -d11715bd13542c5a6a8d7ddd167fbdbe linux-3.0/arch/avr32/kernel/vmlinux.lds.S -355f681c7e8a14329ea5211541675cc0 linux-3.0/arch/avr32/kernel/traps.c -a1326633be88326dbee65ef2fda597ce linux-3.0/arch/avr32/kernel/time.c -d92e6ac4bceb53a040a2ceac5ffdc628 linux-3.0/arch/avr32/kernel/syscall_table.S -3e1ee5b10966eab61652c4eee6cde559 linux-3.0/arch/avr32/kernel/syscall-stubs.S -503edd1a94b7b3c203eb8da9c7166374 linux-3.0/arch/avr32/kernel/sys_avr32.c -35b28ea672457496a45c465027835f21 linux-3.0/arch/avr32/kernel/switch_to.S -87e1c405084c46c677206fc627dd13f6 linux-3.0/arch/avr32/kernel/stacktrace.c -81287cfed11107258147e01238c2ee2e linux-3.0/arch/avr32/kernel/signal.c -f0b02b744fd27b2db8ad5ca22b92ebb4 linux-3.0/arch/avr32/kernel/setup.c -b1afeff998ad10a7e61021a94f4c6184 linux-3.0/arch/avr32/kernel/ptrace.c -35a48f247404cd77bcbff10b94696443 linux-3.0/arch/avr32/kernel/process.c -32d502fd368496a599c95e2a6ff35e09 linux-3.0/arch/avr32/kernel/ocd.c -85263e0d1bf3fde5017bd2665a8c7da2 linux-3.0/arch/avr32/kernel/nmi_debug.c -fc3649441167d783aa8fb0fe13805faf linux-3.0/arch/avr32/kernel/module.c -9aebf44260c5e30cf3b086e0866ca47f linux-3.0/arch/avr32/kernel/kprobes.c -52d13d998d451b6857647d38ed51c5bf linux-3.0/arch/avr32/kernel/irq.c -2d9e5b766d23ab3464356b84b8863538 linux-3.0/arch/avr32/kernel/init_task.c -e982120924f5c35cb873977947874953 linux-3.0/arch/avr32/kernel/head.S -f223265ae982706f5ef4ad3be9d6c7bf linux-3.0/arch/avr32/kernel/entry-avr32b.S -48422f1e1f2440e9fde06157afb6bb11 linux-3.0/arch/avr32/kernel/cpu.c -2c3f3103c3d630f68572055b926bb564 linux-3.0/arch/avr32/kernel/avr32_ksyms.c -b9204d65efadb9d8189abba2cdf77f4b linux-3.0/arch/avr32/kernel/asm-offsets.c -ed7e7455214db7f8c40e10183c208a20 linux-3.0/arch/avr32/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/avr32/kernel/.gitignore -bf96591eb69dc0b549c1d1749c0547df linux-3.0/arch/avr32/include/asm/xor.h -eed27cb99715680cadc9b791285b766c linux-3.0/arch/avr32/include/asm/user.h -58c57e5e21dbe75349f2d314f06d983b linux-3.0/arch/avr32/include/asm/unistd.h -8db11ff7139b0edbd918755e01447280 linux-3.0/arch/avr32/include/asm/unaligned.h -2acfbcc657987e2d98ead81c3fe8338b linux-3.0/arch/avr32/include/asm/ucontext.h -3f309b09bb912698ee17881c124f54b2 linux-3.0/arch/avr32/include/asm/uaccess.h -d789c44beac1bf709604137c1928ba01 linux-3.0/arch/avr32/include/asm/types.h -410aedacacf63b63311c58d00073062a linux-3.0/arch/avr32/include/asm/traps.h -19161385be5a771ec2a2fc25cf7ab420 linux-3.0/arch/avr32/include/asm/topology.h -50d738e1e9c686daddee13a77bb2f69d linux-3.0/arch/avr32/include/asm/tlbflush.h -4e378957cde17e24c4a10583a1b5cfb3 linux-3.0/arch/avr32/include/asm/tlb.h -8b5f886ead826b6190bbcde953ec133f linux-3.0/arch/avr32/include/asm/timex.h -5d8e09c67bc1cadf2d96896023ec7880 linux-3.0/arch/avr32/include/asm/thread_info.h -560e89e3c27ac26b06ca47b6fef79a3a linux-3.0/arch/avr32/include/asm/termios.h -0bdbb04ced8c1a0ce9a4584f2477826d linux-3.0/arch/avr32/include/asm/termbits.h -3f532fcfbc922bff3f65ad204963fa80 linux-3.0/arch/avr32/include/asm/system.h -99529f6a1fb6c6aa9f616ff3853655e1 linux-3.0/arch/avr32/include/asm/sysreg.h -fca07d57c1053f957563a9d29b2c2aed linux-3.0/arch/avr32/include/asm/syscalls.h -6f7205a736b48461f5715b9ba582672d linux-3.0/arch/avr32/include/asm/swab.h -f7964cd601c75f40d0991ba78f606a80 linux-3.0/arch/avr32/include/asm/string.h -25324063d291239cdd65d1014d8d746a linux-3.0/arch/avr32/include/asm/statfs.h -1eef9ba5a56e8af8925aa2332f5bbbb7 linux-3.0/arch/avr32/include/asm/stat.h -6941e02632f7e0d87de0ea67b7beb04f linux-3.0/arch/avr32/include/asm/sockios.h -dca74f32808c420e7730783fde8bfbb0 linux-3.0/arch/avr32/include/asm/socket.h -699d5e2254f7c19d421faa58fa20b852 linux-3.0/arch/avr32/include/asm/signal.h -2ee2c5e6cdbb35e7a8662e42891349b6 linux-3.0/arch/avr32/include/asm/siginfo.h -4edfe576a76c2e64920007d037be5f6e linux-3.0/arch/avr32/include/asm/sigcontext.h -9a7960f50af0b368e183d8769b59cc3d linux-3.0/arch/avr32/include/asm/shmparam.h -519d121969119b4fc39a8bd3e905afa7 linux-3.0/arch/avr32/include/asm/shmbuf.h -b100365d3a43493a98ada873d5a217cb linux-3.0/arch/avr32/include/asm/setup.h -13950fe983a8679ca535acaa13544d26 linux-3.0/arch/avr32/include/asm/serial.h -9774a92605aa853ad7f577792c545929 linux-3.0/arch/avr32/include/asm/sembuf.h -8dc4978a155f663d3e1f8641972de42a linux-3.0/arch/avr32/include/asm/sections.h -8746b8c964d7e617a46787bfe8010109 linux-3.0/arch/avr32/include/asm/scatterlist.h -f123246e9611cae41a46403f56b265d4 linux-3.0/arch/avr32/include/asm/resource.h -cfc25d25e9b7fc6a4c584f2e383d039c linux-3.0/arch/avr32/include/asm/ptrace.h -ebd89e37b641e23e56f4b346f4441c5d linux-3.0/arch/avr32/include/asm/processor.h -6fd43d84003adbf371efb44cd133f3b6 linux-3.0/arch/avr32/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/avr32/include/asm/poll.h -30384d9d4577a13de9d92d648c392c30 linux-3.0/arch/avr32/include/asm/pgtable.h -0ce6654ebb7426975941b57657a768db linux-3.0/arch/avr32/include/asm/pgtable-2level.h -01b785bd4c1238442fbe3967a1b0ae40 linux-3.0/arch/avr32/include/asm/pgalloc.h -20e8f3e2f656aa4da8d26af5fdbdfa90 linux-3.0/arch/avr32/include/asm/percpu.h -21641134b7c3e0ea77d2b709d3cc0f05 linux-3.0/arch/avr32/include/asm/pci.h -3d4b2ab703af868a2211bb15c986e3a4 linux-3.0/arch/avr32/include/asm/param.h -169da3b627ec26a563028b0e53a1f741 linux-3.0/arch/avr32/include/asm/page.h -2eab3424cee9f9c2afb0bcb255e0df78 linux-3.0/arch/avr32/include/asm/ocd.h -6baaf9b648245bead7b074e7d9ce29c4 linux-3.0/arch/avr32/include/asm/numnodes.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/avr32/include/asm/mutex.h -839858791e60d9088c3b4bdae4c57d0d linux-3.0/arch/avr32/include/asm/msgbuf.h -44be44d1827e779161214d2d13af4dd6 linux-3.0/arch/avr32/include/asm/module.h -e23ba1d437a16adaeb0b293be7778158 linux-3.0/arch/avr32/include/asm/mmu_context.h -bc3d39eca0bd09bce5cddb3381bb5e0f linux-3.0/arch/avr32/include/asm/mmu.h -c10dfdbe274b25756fe8f9900e428096 linux-3.0/arch/avr32/include/asm/mman.h -4914b0dd2d617af1118c65faf9890ffd linux-3.0/arch/avr32/include/asm/mach/serial_at91.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/avr32/include/asm/local64.h -3e75b399f82e34bdd6bb0e86612c69ee linux-3.0/arch/avr32/include/asm/local.h -8308b6b717fdd73751395edb2291c6e9 linux-3.0/arch/avr32/include/asm/linkage.h -58d7ae71e87c2c09ff67060ac1f63cf2 linux-3.0/arch/avr32/include/asm/kprobes.h -1fdd61fddaf04402251f15d77d8add4a linux-3.0/arch/avr32/include/asm/kmap_types.h -b6d227592d71ff8727b536ecbf88dc74 linux-3.0/arch/avr32/include/asm/kdebug.h -8742b051633c5923645f524d07db97c1 linux-3.0/arch/avr32/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/avr32/include/asm/irq_regs.h -c697e9a83eab8c65b341f8ecfa6a28c9 linux-3.0/arch/avr32/include/asm/irq.h -8cf94dded20edf9c9497825f5368d08d linux-3.0/arch/avr32/include/asm/ipcbuf.h -d798414bcac5b4144e66781da3c446bd linux-3.0/arch/avr32/include/asm/ioctls.h -8e4d4554ae635d388df6c9c77dbbdbfb linux-3.0/arch/avr32/include/asm/ioctl.h -44e37e942c25dbf1e023b0927bcbf645 linux-3.0/arch/avr32/include/asm/io.h -6d20c15d30fbc6593981d2783719b74d linux-3.0/arch/avr32/include/asm/hw_irq.h -396a827e3289be9a3a8cf6e0072d7f1e linux-3.0/arch/avr32/include/asm/hardirq.h -fa85d48e16e4e259d317f980821027c0 linux-3.0/arch/avr32/include/asm/gpio.h -be267997a03367570f8d0455dac1c202 linux-3.0/arch/avr32/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/avr32/include/asm/ftrace.h -ed9de070c48d02d337f33e4b2389e06d linux-3.0/arch/avr32/include/asm/fcntl.h -b3a0e9802abf4edbc399caa28854129f linux-3.0/arch/avr32/include/asm/fb.h -101dd83f5c4b7992632465cf01ca70e7 linux-3.0/arch/avr32/include/asm/errno.h -084db3f7e86c92dc3ebf2d995705b3aa linux-3.0/arch/avr32/include/asm/emergency-restart.h -07fc480803a506e17e93d58c4ea4c2a8 linux-3.0/arch/avr32/include/asm/elf.h -196e1b0063c33920cbbc9b1cfa310227 linux-3.0/arch/avr32/include/asm/dma.h -e2b252dbdc125c24a1c7b3b00852ff54 linux-3.0/arch/avr32/include/asm/dma-mapping.h -b5f50a6654fec2709db1dbd6759d1381 linux-3.0/arch/avr32/include/asm/div64.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/avr32/include/asm/device.h -16bc89b2f32fd2f267b8c438ed334a1e linux-3.0/arch/avr32/include/asm/delay.h -f0bcd238a7c649d6cab92fbf9614691d linux-3.0/arch/avr32/include/asm/current.h -a4676437757d28b0034906b210d16b1f linux-3.0/arch/avr32/include/asm/cputime.h -0618c44b5208baeda50d980e40f8d09c linux-3.0/arch/avr32/include/asm/checksum.h -3aa16e82ec8632e00ab9fe5764198ff1 linux-3.0/arch/avr32/include/asm/cacheflush.h -83cad2fcf75849952fab1358957fb049 linux-3.0/arch/avr32/include/asm/cachectl.h -ad7e7103c5fc5f7a0baef67745910fd7 linux-3.0/arch/avr32/include/asm/cache.h -c4daff24ebd96e6519ed48aaa11047f3 linux-3.0/arch/avr32/include/asm/byteorder.h -3848d1cfcfaf5b2755c6ff08be9ad24a linux-3.0/arch/avr32/include/asm/bugs.h -4bea929e58812831997b91823b066685 linux-3.0/arch/avr32/include/asm/bug.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/avr32/include/asm/bitsperlong.h -d4e5cb16d919ace157d03bc2a3075e22 linux-3.0/arch/avr32/include/asm/bitops.h -793dd0bf3fc80c452be4baa922915104 linux-3.0/arch/avr32/include/asm/auxvec.h -cf42be257d37c277e78491cba77451f1 linux-3.0/arch/avr32/include/asm/atomic.h -6825b506fe5076121a7008c8e3eda41a linux-3.0/arch/avr32/include/asm/asm.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/avr32/include/asm/asm-offsets.h -d9a632e2036ac806f77472753f621dd1 linux-3.0/arch/avr32/include/asm/addrspace.h -80600f7dc095909240005ef28fbd64cd linux-3.0/arch/avr32/include/asm/Kbuild -9ecb761f0af15cb77da40f75b6eb1fcf linux-3.0/arch/avr32/configs/mimc200_defconfig -51117942d8cd527adca6f6eea556dff1 linux-3.0/arch/avr32/configs/merisc_defconfig -b4e1af0ade85fe6a817348d6d13cbca8 linux-3.0/arch/avr32/configs/hammerhead_defconfig -5f302ffdf5699d805876759792f3a70c linux-3.0/arch/avr32/configs/favr-32_defconfig -f884f0cc193a92e5ecd901d55b226537 linux-3.0/arch/avr32/configs/atstk1006_defconfig -28d44242c6f401eb10a998b5115551bf linux-3.0/arch/avr32/configs/atstk1004_defconfig -d532fec9109d7ed5f6da15cc0c9f5591 linux-3.0/arch/avr32/configs/atstk1003_defconfig -c5435810e20cd3bb196ae7bdaca7c4b6 linux-3.0/arch/avr32/configs/atstk1002_defconfig -ac4f1e11dcac726f1eafd36446e07c9d linux-3.0/arch/avr32/configs/atngw100mkii_evklcd101_defconfig -3721d5e31252eb9ed5b750b826aba1fb linux-3.0/arch/avr32/configs/atngw100mkii_evklcd100_defconfig -b9115f7f4735eef96014bf7d6a3dec8a linux-3.0/arch/avr32/configs/atngw100mkii_defconfig -c9a17102ee5bfee869a2030e8c4d61e5 linux-3.0/arch/avr32/configs/atngw100_mrmt_defconfig -f40c94714ed306a4d4a48711ee155294 linux-3.0/arch/avr32/configs/atngw100_evklcd101_defconfig -39dd52619da97c8c6e952fdc1a138911 linux-3.0/arch/avr32/configs/atngw100_evklcd100_defconfig -eef88856c6abd110e546352f534e9104 linux-3.0/arch/avr32/configs/atngw100_defconfig -1fe040dacd070f6aa0ef16dcad261cce linux-3.0/arch/avr32/boot/u-boot/head.S -3c31876448ab61b590ced2ac789a1e70 linux-3.0/arch/avr32/boot/u-boot/empty.S -dece4c69f02b0c7720167da9ffb41c5b linux-3.0/arch/avr32/boot/u-boot/Makefile -ad941dcc87a6cb9a3bbefc6bb3da216b linux-3.0/arch/avr32/boot/images/Makefile -8ed9b641984e45ff7b64f0e38af428d4 linux-3.0/arch/avr32/boot/images/.gitignore -8f66a7722bc91445bdbaf37041992241 linux-3.0/arch/avr32/boards/mimc200/setup.c -b5b4628e6c1e356e0fd6ddc6b7588bd1 linux-3.0/arch/avr32/boards/mimc200/fram.c -a09cf0e5f5090f0711683cf5a5a97664 linux-3.0/arch/avr32/boards/mimc200/flash.c -c025af59cd69fdde69147378efbce13c linux-3.0/arch/avr32/boards/mimc200/Makefile -8ccd17b3a4b3379791dd784a7e05c9d5 linux-3.0/arch/avr32/boards/merisc/setup.c -91cd16eb991efa080243c7f6e75c57b4 linux-3.0/arch/avr32/boards/merisc/merisc_sysfs.c -b7b61eea837a42cc9235165bb861d208 linux-3.0/arch/avr32/boards/merisc/merisc.h -d4f9ec71f506fa8660e4575cecb8f9f8 linux-3.0/arch/avr32/boards/merisc/flash.c -b4f4707261e8296c214530e72dd615fd linux-3.0/arch/avr32/boards/merisc/display.c -1e4c95f46778eb180c45bd2d8c5790ef linux-3.0/arch/avr32/boards/merisc/Makefile -96ce5fea669deca43369da58cea90e01 linux-3.0/arch/avr32/boards/merisc/Kconfig -c8ba6207b98a8c6efcaa5bbda3539549 linux-3.0/arch/avr32/boards/hammerhead/setup.c -eff3890d125f6cea5b3a2b6af9283742 linux-3.0/arch/avr32/boards/hammerhead/flash.h -2cce7d023e909103baa6e38bef4a37b8 linux-3.0/arch/avr32/boards/hammerhead/flash.c -9b3d80bc27b5b63e28ca89a8e702e4ff linux-3.0/arch/avr32/boards/hammerhead/Makefile -6a254f84d69cf9fb925e0f8a22441e50 linux-3.0/arch/avr32/boards/hammerhead/Kconfig -56f9d8f0755b8da49b1732cd55974249 linux-3.0/arch/avr32/boards/favr-32/setup.c -1ad5831156c3beb759dfb4512f2d0f50 linux-3.0/arch/avr32/boards/favr-32/flash.c -75c1db5de12e84513381599ac64acc92 linux-3.0/arch/avr32/boards/favr-32/Makefile -aa7de2e284daf5f8a92e0a0de15739de linux-3.0/arch/avr32/boards/favr-32/Kconfig -c70637fc85f6436ad8f0069244c089ce linux-3.0/arch/avr32/boards/atstk1000/setup.c -b7ecc003f2e1e9e35afa996f7a3bba8e linux-3.0/arch/avr32/boards/atstk1000/flash.c -beb13af22090d8e11c4b70cd9609e207 linux-3.0/arch/avr32/boards/atstk1000/atstk1004.c -6d69278d1892899ab48eb2bc031c9048 linux-3.0/arch/avr32/boards/atstk1000/atstk1003.c -41f944d3a75e98fd944c91dd3af73bc0 linux-3.0/arch/avr32/boards/atstk1000/atstk1002.c -ad94b5268870ccae968b814078e2425a linux-3.0/arch/avr32/boards/atstk1000/atstk1000.h -07287e7d0698f0bccb6532e248d5fd83 linux-3.0/arch/avr32/boards/atstk1000/Makefile -cfe3db377e4ef1717829c79208ace88a linux-3.0/arch/avr32/boards/atstk1000/Kconfig -5546c026f1abd0cdc64bf6c893d50890 linux-3.0/arch/avr32/boards/atngw100/setup.c -a64037724ecd29f483fbccb7f7bf4d7c linux-3.0/arch/avr32/boards/atngw100/mrmt.c -b437d40503bacc1e71265451177e710a linux-3.0/arch/avr32/boards/atngw100/flash.c -64b9660b199781e354c693e7118d875e linux-3.0/arch/avr32/boards/atngw100/evklcd10x.c -48f4f2c96f5a70011ad7e08028e2c2e2 linux-3.0/arch/avr32/boards/atngw100/Makefile -29eb4f653077ff7d4c523abedfb8fdd3 linux-3.0/arch/avr32/boards/atngw100/Kconfig_mrmt -9c9ad1d64383446e4361ba3fe9856e8f linux-3.0/arch/avr32/boards/atngw100/Kconfig -0d18d0eb5b11540e6b7f4270e1dea699 linux-3.0/arch/avr32/Makefile -95e186cce435e1341d0f8c986808239b linux-3.0/arch/avr32/Kconfig.debug -3d176c5e347569f10ba8edc5808844f5 linux-3.0/arch/avr32/Kconfig -afb53637d0e9725aea5b7b1fe21f07f7 linux-3.0/arch/arm/vfp/vfpsingle.c -e883e33b13b3b6baf3409a3c8094b476 linux-3.0/arch/arm/vfp/vfpmodule.c -3c9fd53011ed4e03a9bc9fadd7fb5be2 linux-3.0/arch/arm/vfp/vfpinstr.h -fbc771966a79ad57607cc4a32fc7f47c linux-3.0/arch/arm/vfp/vfphw.S -9f2ca1bdeccde215d859090f871fba9d linux-3.0/arch/arm/vfp/vfpdouble.c -291a140923950c7fb926091986487cf9 linux-3.0/arch/arm/vfp/vfp.h -54b1826e29ed1f40bc7a494e5ca53454 linux-3.0/arch/arm/vfp/entry.S -64dcb4b5eedb2db19f2527c48c9d7cb5 linux-3.0/arch/arm/vfp/Makefile -c970dfae1d7f89c11b1a01d776701cdc linux-3.0/arch/arm/tools/mach-types -9f4ca614b9f2634eb24a1fff0b96d28e linux-3.0/arch/arm/tools/gen-mach-types -4b93ab862a7f364e3dd06f42a468bc1c linux-3.0/arch/arm/tools/Makefile -699ef7f1bf4e39a2b841ea51a89d2b10 linux-3.0/arch/arm/plat-versatile/sched-clock.c -5840950af788a69e9ab34e249f9ae612 linux-3.0/arch/arm/plat-versatile/platsmp.c -dd7a526a006e5fb98233452add5d27a1 linux-3.0/arch/arm/plat-versatile/localtimer.c -ccb9f27767dcb3169cc7b6800a137d61 linux-3.0/arch/arm/plat-versatile/leds.c -c2b87b76c842616bcc2764fee7adf1c2 linux-3.0/arch/arm/plat-versatile/include/plat/sched_clock.h -faf314f13bd8836c7d43d7fb9d813178 linux-3.0/arch/arm/plat-versatile/include/plat/fpga-irq.h -b5c8598b4e2c701680940429c8be5a4e linux-3.0/arch/arm/plat-versatile/include/plat/clock.h -f3cf498ce29f808feba76331f1912fa8 linux-3.0/arch/arm/plat-versatile/include/plat/clcd.h -113626f244310cd69c123744a7482a0c linux-3.0/arch/arm/plat-versatile/headsmp.S -37df40522b1047596ae59d864e7aef8f linux-3.0/arch/arm/plat-versatile/fpga-irq.c -ad1d220d82a232308c6344c125235ddc linux-3.0/arch/arm/plat-versatile/clock.c -1bf2b9886f52f7debe872ae6b3eea07b linux-3.0/arch/arm/plat-versatile/clcd.c -0e17459ee60217a1669e6458669631ef linux-3.0/arch/arm/plat-versatile/Makefile -6cc718c77fb5a8054ad21a69c07859fd linux-3.0/arch/arm/plat-versatile/Kconfig -495ed2fe6942c5d879966f7811f8bf93 linux-3.0/arch/arm/plat-tcc/system.c -6cbe1490b4d7f69bd9081aad6f389ded linux-3.0/arch/arm/plat-tcc/include/mach/vmalloc.h -d0c4eb2e8642f16625859871d49e8008 linux-3.0/arch/arm/plat-tcc/include/mach/uncompress.h -f0e95c5de7d3019d268c377cc07aea28 linux-3.0/arch/arm/plat-tcc/include/mach/timex.h -1050517572492987b16be9ea47d0d013 linux-3.0/arch/arm/plat-tcc/include/mach/tcc8k-regs.h -315375c8b2e9280c5d4fa9e4f08da80c linux-3.0/arch/arm/plat-tcc/include/mach/system.h -c8bcfab9097ebad1ff8df51bc28727a9 linux-3.0/arch/arm/plat-tcc/include/mach/memory.h -69aec2fafeccdf76655f4490769f3fc2 linux-3.0/arch/arm/plat-tcc/include/mach/irqs.h -f0eb910a64827f0ecac0011b9af71499 linux-3.0/arch/arm/plat-tcc/include/mach/io.h -772e45f6e34c87bac6b214cb228eb1dd linux-3.0/arch/arm/plat-tcc/include/mach/hardware.h -5c613646f3af60ae0c64f92ee78e7ed3 linux-3.0/arch/arm/plat-tcc/include/mach/entry-macro.S -cc22e5eff2aeec30bc404dcd2de4a857 linux-3.0/arch/arm/plat-tcc/include/mach/debug-macro.S -aa15ce50105b68f7b45ba5443f05f372 linux-3.0/arch/arm/plat-tcc/include/mach/clock.h -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/plat-tcc/include/mach/clkdev.h -26569407c2c51fcc49d5982616cc5406 linux-3.0/arch/arm/plat-tcc/clock.c -b17872925b2554aad1a4003689ebe1de linux-3.0/arch/arm/plat-tcc/Makefile -c0857a7cc676eb226a1cdf16517db9d2 linux-3.0/arch/arm/plat-tcc/Kconfig -520a95edaae864dc1b9bd37dc66e9d1d linux-3.0/arch/arm/plat-spear/time.c -1035a2fc5d9b8dc733c2ebc4ca66d13c linux-3.0/arch/arm/plat-spear/shirq.c -0582105d6c205715b8de5cfd9851f910 linux-3.0/arch/arm/plat-spear/padmux.c -827ae754b6b280147cbe6cbd31171bbd linux-3.0/arch/arm/plat-spear/include/plat/vmalloc.h -a6786e05ee27ebb3330c44f5c75f75b3 linux-3.0/arch/arm/plat-spear/include/plat/uncompress.h -b679117435e3bb8f7eb23ff23f1cb39d linux-3.0/arch/arm/plat-spear/include/plat/timex.h -0cc64f22a5b6468d787bb2677b58db89 linux-3.0/arch/arm/plat-spear/include/plat/system.h -2e4676710d0349e568172e0f259ad3cb linux-3.0/arch/arm/plat-spear/include/plat/shirq.h -f64c0660b7225a1b9e1f00ba676ea6c9 linux-3.0/arch/arm/plat-spear/include/plat/padmux.h -9870c0dd0a0f1c19e33995f5d1190059 linux-3.0/arch/arm/plat-spear/include/plat/memory.h -e023fcae1cd0e2ba8f784a4a0899fd62 linux-3.0/arch/arm/plat-spear/include/plat/keyboard.h -27655e6b0d32d479bc4600857132fcb0 linux-3.0/arch/arm/plat-spear/include/plat/io.h -d1974049279580d9816e5a9f3ad56b3a linux-3.0/arch/arm/plat-spear/include/plat/hardware.h -9b708a4433e59ae5e71b91d8655cf353 linux-3.0/arch/arm/plat-spear/include/plat/gpio.h -937e8ecf9f7bd3296918fe5ce5bc7959 linux-3.0/arch/arm/plat-spear/include/plat/debug-macro.S -2dcb3866e81edc986865afadb623215e linux-3.0/arch/arm/plat-spear/include/plat/clock.h -5f661f02924d3dcba94dcf2bed7046eb linux-3.0/arch/arm/plat-spear/include/plat/clkdev.h -2d375b2816c7f49a59e80213e2e173e4 linux-3.0/arch/arm/plat-spear/clock.c -9c6b95cab242f4965abbbeaa8349be98 linux-3.0/arch/arm/plat-spear/Makefile -c53ee12dc25f884ef2329fad90ad0a0d linux-3.0/arch/arm/plat-spear/Kconfig -09ce54e7c33ce0912fb41c73208bc942 linux-3.0/arch/arm/plat-samsung/wakeup-mask.c -2437c8cbc6479d519f6788e3f7080df2 linux-3.0/arch/arm/plat-samsung/time.c -b2df5fc2c5f92cad1904e2c07f6ad4a9 linux-3.0/arch/arm/plat-samsung/s3c-pl330.c -a7cae820bc2f960c013622a977639e1a linux-3.0/arch/arm/plat-samsung/pwm.c -99a8ba0c3b0d1d36f3569525e70fe4fc linux-3.0/arch/arm/plat-samsung/pwm-clock.c -fc3320e29b0d8acd643023139532ad31 linux-3.0/arch/arm/plat-samsung/pm.c -e85a6c9c0edafc09c2003ec812eee417 linux-3.0/arch/arm/plat-samsung/pm-gpio.c -0ac31577f266c6be2c66b844d05027fd linux-3.0/arch/arm/plat-samsung/pm-check.c -3ca26ba3b16dbb767f9487f27ce4fbdd linux-3.0/arch/arm/plat-samsung/platformdata.c -ab14f12ef01e33b342e044772fdb0436 linux-3.0/arch/arm/plat-samsung/pd.c -8d7427736da49759b7e60465800998c7 linux-3.0/arch/arm/plat-samsung/irq-vic-timer.c -34531f8df673a8bb4ee97a2eb17e4a38 linux-3.0/arch/arm/plat-samsung/irq-uart.c -cbc1b013c3fedc628462fed455dbda14 linux-3.0/arch/arm/plat-samsung/init.c -cef955b400d06bf3ebb6d704301e6ee8 linux-3.0/arch/arm/plat-samsung/include/plat/watchdog-reset.h -99359c49250c63ba87ca5dcd1a552dae linux-3.0/arch/arm/plat-samsung/include/plat/wakeup-mask.h -6ff9e23b7ddec22d5b8df5e3f56954d9 linux-3.0/arch/arm/plat-samsung/include/plat/usb-control.h -dc0a7c3368096a13d077e4770718f9c3 linux-3.0/arch/arm/plat-samsung/include/plat/uncompress.h -9c17e242f78c6b803ada38e661c6d32a linux-3.0/arch/arm/plat-samsung/include/plat/udc-hs.h -ede4c5d0422ae030aa7094194fb28ecb linux-3.0/arch/arm/plat-samsung/include/plat/ts.h -3c47d9514d417991627a60c11a25130c linux-3.0/arch/arm/plat-samsung/include/plat/sdhci.h -e6866872bddd27e9157096f4703758ae linux-3.0/arch/arm/plat-samsung/include/plat/s3c64xx-spi.h -48ace9ab87c427020f11519f7e12201c linux-3.0/arch/arm/plat-samsung/include/plat/s3c-pl330-pdata.h -c0349271c26a1874824f7a8bb6192929 linux-3.0/arch/arm/plat-samsung/include/plat/s3c-dma-pl330.h -9117eda67bc056f52eed15f3ed5f44c8 linux-3.0/arch/arm/plat-samsung/include/plat/regs-watchdog.h -488695a95b2e5e1f4a1f06ab1c5c0991 linux-3.0/arch/arm/plat-samsung/include/plat/regs-usb-hsotg.h -841260a64886a5a56b27a73dc14471c6 linux-3.0/arch/arm/plat-samsung/include/plat/regs-usb-hsotg-phy.h -1859559f3842c79a4b805d8e8a5c3d98 linux-3.0/arch/arm/plat-samsung/include/plat/regs-timer.h -17f7de6459380b35d9b17c4c2421cc94 linux-3.0/arch/arm/plat-samsung/include/plat/regs-serial.h -1683fd8ca4d96a2cf979e1faa6f1355d linux-3.0/arch/arm/plat-samsung/include/plat/regs-sdhci.h -2b7df7eb1cc63e420777e125edeafc89 linux-3.0/arch/arm/plat-samsung/include/plat/regs-rtc.h -605f9e42a49b55e5c2c0e84a646a1f81 linux-3.0/arch/arm/plat-samsung/include/plat/regs-onenand.h -fe965316d54495fb090245f6a30ce01d linux-3.0/arch/arm/plat-samsung/include/plat/regs-nand.h -526520868f572703690638a5ceae5b14 linux-3.0/arch/arm/plat-samsung/include/plat/regs-irqtype.h -8e772176dd11c4c89896d8acc1dd14be linux-3.0/arch/arm/plat-samsung/include/plat/regs-iic.h -f25c5800a376a5fd7594710c18f0c9ea linux-3.0/arch/arm/plat-samsung/include/plat/regs-fb.h -f0e4d98c7cfe5f5ce37ec202d7a56d43 linux-3.0/arch/arm/plat-samsung/include/plat/regs-fb-v4.h -e2aae39c257c61b71183b883fbbf811a linux-3.0/arch/arm/plat-samsung/include/plat/regs-ata.h -93c2795d0c8ff9225d82c9c0f9400666 linux-3.0/arch/arm/plat-samsung/include/plat/regs-adc.h -9eaa0877ffd41399b9071dd501a31c9d linux-3.0/arch/arm/plat-samsung/include/plat/regs-ac97.h -ec38af506648d9a8c563a4b7c9091f05 linux-3.0/arch/arm/plat-samsung/include/plat/pm.h -f18074a53b18f5249dffd5329f40cdef linux-3.0/arch/arm/plat-samsung/include/plat/pll6553x.h -fe98581a2f0b0f936e416218e842321a linux-3.0/arch/arm/plat-samsung/include/plat/pd.h -4a9f14bee2a093cb4f1679781defe708 linux-3.0/arch/arm/plat-samsung/include/plat/onenand-core.h -e2bf428d5ac1575c6c7729705c158d14 linux-3.0/arch/arm/plat-samsung/include/plat/nand.h -656a021dc667d294038d08bed3f36096 linux-3.0/arch/arm/plat-samsung/include/plat/nand-core.h -5e3d58b7f3a87e9a60596a4d7fe0d5a3 linux-3.0/arch/arm/plat-samsung/include/plat/map-base.h -6fdace0e74d379e86f663c990b0548f5 linux-3.0/arch/arm/plat-samsung/include/plat/keypad.h -544ef8b6b85bf539ce4715fa8c59cf16 linux-3.0/arch/arm/plat-samsung/include/plat/keypad-core.h -bd2a34beb4a20b3d64ea1b96af3bcfde linux-3.0/arch/arm/plat-samsung/include/plat/irq-vic-timer.h -5b6c42a460ea839c928384fc431a2656 linux-3.0/arch/arm/plat-samsung/include/plat/irq-uart.h -492b1489e58c6c9c1f7b40e4c686dfc5 linux-3.0/arch/arm/plat-samsung/include/plat/iic.h -20812d811f433c69246a4462a9cc1824 linux-3.0/arch/arm/plat-samsung/include/plat/iic-core.h -7c494b4aabba807283f51b86a133368c linux-3.0/arch/arm/plat-samsung/include/plat/hwmon.h -ac74e7180fbca84de716da6da165fec4 linux-3.0/arch/arm/plat-samsung/include/plat/gpio-core.h -409d55b9b9d93e4b5bf1d68e9d07e330 linux-3.0/arch/arm/plat-samsung/include/plat/gpio-cfg.h -71d79f566f3f0b9c3edb1d51e5389f5c linux-3.0/arch/arm/plat-samsung/include/plat/gpio-cfg-helpers.h -70f95e83930ef36daffc409a3038b21c linux-3.0/arch/arm/plat-samsung/include/plat/fimc-core.h -80ae58a57120585a10d39a77708f35e8 linux-3.0/arch/arm/plat-samsung/include/plat/fb.h -d8b3c9ac19510b4bc8e5e54492199b5e linux-3.0/arch/arm/plat-samsung/include/plat/fb-core.h -3b150ec5a13e52ebf36eeacf746b8e1f linux-3.0/arch/arm/plat-samsung/include/plat/dma.h -40d5c50adbd5675db0a2f0b6cc8abe64 linux-3.0/arch/arm/plat-samsung/include/plat/dma-s3c24xx.h -61bf962bb720989460cfe8033a2e0c21 linux-3.0/arch/arm/plat-samsung/include/plat/dma-core.h -2743ca51c5f561d40eaab45938796dad linux-3.0/arch/arm/plat-samsung/include/plat/devs.h -9429639c3620c13e390120f07c8ada04 linux-3.0/arch/arm/plat-samsung/include/plat/debug-macro.S -d99861a524b5fb5a3b76044b2612ed68 linux-3.0/arch/arm/plat-samsung/include/plat/cpu.h -969c4790af6204733f1c6ad3da302e8f linux-3.0/arch/arm/plat-samsung/include/plat/cpu-freq.h -32bb8fe15f18e8e2e37a3c7da0089465 linux-3.0/arch/arm/plat-samsung/include/plat/clock.h -748468e07ce69feba679eba715ee6ffc linux-3.0/arch/arm/plat-samsung/include/plat/clock-clksrc.h -d414e9a3ac45dc1d1335149c1114dc8c linux-3.0/arch/arm/plat-samsung/include/plat/audio.h -0b4297e937b6200639d644c5cd26bb16 linux-3.0/arch/arm/plat-samsung/include/plat/ata.h -e76d1ea6df197da79eece6b65260d3ef linux-3.0/arch/arm/plat-samsung/include/plat/ata-core.h -a93321b82fd233bfe480144cb7e968ef linux-3.0/arch/arm/plat-samsung/include/plat/adc.h -43c8bec21087730d09015394e36fe646 linux-3.0/arch/arm/plat-samsung/include/plat/adc-core.h -ca291c12e04f19ccd79ee1911bbf8d1a linux-3.0/arch/arm/plat-samsung/gpio.c -1ce775efd5e0e7e466003f0a17a59ae7 linux-3.0/arch/arm/plat-samsung/gpio-config.c -e6ea5c3fdae62e741adb1cfe091312ed linux-3.0/arch/arm/plat-samsung/dma.c -6a63f120be7c612e6af2a4775efa9bbb linux-3.0/arch/arm/plat-samsung/dev-wdt.c -8ce2d44aadaeb86abfec8dad5d6cb6c2 linux-3.0/arch/arm/plat-samsung/dev-usb.c -251b5cb6719e80e4b22d37f22445181a linux-3.0/arch/arm/plat-samsung/dev-usb-hsotg.c -e4d6db60a7cf34edf06a11a5d71de58a linux-3.0/arch/arm/plat-samsung/dev-uart.c -42af562607a2a31140ca8c77142f8f37 linux-3.0/arch/arm/plat-samsung/dev-ts.c -d5bbcc0b669255edf5c6cbfbdbfbd712 linux-3.0/arch/arm/plat-samsung/dev-rtc.c -44a496c0f33621d0b4acaf8f92468d5a linux-3.0/arch/arm/plat-samsung/dev-pwm.c -1aef7943edd2c780fc0a2381a3130a6c linux-3.0/arch/arm/plat-samsung/dev-onenand.c -bb0511017f4699d740daaec932b3ce55 linux-3.0/arch/arm/plat-samsung/dev-nand.c -0ec37d996a4a03d4f2bf0d13b5a364b3 linux-3.0/arch/arm/plat-samsung/dev-keypad.c -e8bc29f9f22abd0ad29cd2a70a0dd8a5 linux-3.0/arch/arm/plat-samsung/dev-ide.c -4d0dbaa4cf5342b3340844a1662bacba linux-3.0/arch/arm/plat-samsung/dev-i2c7.c -81e0259cf8cbb18791ac3b8b3ff5a0f8 linux-3.0/arch/arm/plat-samsung/dev-i2c6.c -6266e7584fe3ad5e0b193f4fcc6238b7 linux-3.0/arch/arm/plat-samsung/dev-i2c5.c -0c41716c808ac559636f4621fa57908a linux-3.0/arch/arm/plat-samsung/dev-i2c4.c -c5e03fa57c98a182434894ffd3bf1ca8 linux-3.0/arch/arm/plat-samsung/dev-i2c3.c -b1ef843feed6e85b6740e69f07bfaa43 linux-3.0/arch/arm/plat-samsung/dev-i2c2.c -1e33f89168cb0ffce1590eec52dd6005 linux-3.0/arch/arm/plat-samsung/dev-i2c1.c -4456728c50f3f4fa2e664440f52ab6e8 linux-3.0/arch/arm/plat-samsung/dev-i2c0.c -f8b8e44d176e1c819ef77ff976918f12 linux-3.0/arch/arm/plat-samsung/dev-hwmon.c -ce28e78f855d346dc2a982524791817f linux-3.0/arch/arm/plat-samsung/dev-hsmmc3.c -9ef5ac2cd3ddabe6dc754396f48b309b linux-3.0/arch/arm/plat-samsung/dev-hsmmc2.c -88cdd1745b26ab903b3dd413fd111986 linux-3.0/arch/arm/plat-samsung/dev-hsmmc1.c -97b770f7f2e17ae37d6d3a1c7dede134 linux-3.0/arch/arm/plat-samsung/dev-hsmmc.c -806594abbcc7fb9aad72342ec37bedad linux-3.0/arch/arm/plat-samsung/dev-fb.c -42d30420724da518ff4cd39823228aa5 linux-3.0/arch/arm/plat-samsung/dev-asocdma.c -3d8446a7a1b0358bcb8c5d5090957f9d linux-3.0/arch/arm/plat-samsung/dev-adc.c -2c13d2b2b257057d69f68c4912d31f6c linux-3.0/arch/arm/plat-samsung/clock.c -3dd33e95bc7be0e642c341db15170860 linux-3.0/arch/arm/plat-samsung/clock-clksrc.c -f8aac13e7c8260b1a309d1e27b8772e4 linux-3.0/arch/arm/plat-samsung/adc.c -20f582416fec6953eaec2528806c181c linux-3.0/arch/arm/plat-samsung/Makefile -a0a363bd0b8889526a292848a28b040e linux-3.0/arch/arm/plat-samsung/Kconfig -3c1c1f8ad58d236a7df0ffa303547646 linux-3.0/arch/arm/plat-s5p/sysmmu.c -3242ef51d5844614f1b8351ffa1a2870 linux-3.0/arch/arm/plat-s5p/setup-mipiphy.c -dada84c284bfe030e1d3b099ed13036d linux-3.0/arch/arm/plat-s5p/s5p-time.c -659ebb3f34b3fef4f6cc12cd0cb01a17 linux-3.0/arch/arm/plat-s5p/pm.c -b89979dd85958305bfba14995ab721fb linux-3.0/arch/arm/plat-s5p/irq.c -ea5c26f32ff420b0e3097b227e13de02 linux-3.0/arch/arm/plat-s5p/irq-pm.c -b8cb741d2462e1aaf93b10bcbc264ce9 linux-3.0/arch/arm/plat-s5p/irq-gpioint.c -e4905c99ec6d7338343c08eb01d2f86d linux-3.0/arch/arm/plat-s5p/irq-eint.c -ac1a645ddb0e5440e60e054ab93276b0 linux-3.0/arch/arm/plat-s5p/include/plat/usb-phy.h -1428cf5e7116871042b94cb39c0ebf1e linux-3.0/arch/arm/plat-s5p/include/plat/system-reset.h -96aa545fc7b736a7611a3a3ef9b68e00 linux-3.0/arch/arm/plat-s5p/include/plat/sysmmu.h -0c3b6311ba6c0ece7c005ff4ee435200 linux-3.0/arch/arm/plat-s5p/include/plat/s5pv210.h -ff4eae8b9ae3a53c2dd23f803a07d357 linux-3.0/arch/arm/plat-s5p/include/plat/s5pc100.h -65c3646147325b7244b48609042ff648 linux-3.0/arch/arm/plat-s5p/include/plat/s5p6450.h -b05814eff8b55d908ff6a3b5e7bf43f5 linux-3.0/arch/arm/plat-s5p/include/plat/s5p6440.h -ba95b05db5bf2e544207e063036df916 linux-3.0/arch/arm/plat-s5p/include/plat/s5p-time.h -3d39f0a408513e2e89a4acd6be48ee45 linux-3.0/arch/arm/plat-s5p/include/plat/s5p-clock.h -076f4c89ba08be878506b12588a26c3c linux-3.0/arch/arm/plat-s5p/include/plat/reset.h -6e99a572cedc433f9a732a3ba5493671 linux-3.0/arch/arm/plat-s5p/include/plat/regs-srom.h -dd70aca5119d67340fbd021d57de5789 linux-3.0/arch/arm/plat-s5p/include/plat/pll.h -57bf1d299fbf0e3a61b1da0d0d74953e linux-3.0/arch/arm/plat-s5p/include/plat/mipi_csis.h -5311bac027d4d1bd7d2b0c424977ce56 linux-3.0/arch/arm/plat-s5p/include/plat/map-s5p.h -f779f4646c505e8f85acac2876f35e72 linux-3.0/arch/arm/plat-s5p/include/plat/irqs.h -b3efba84ae42ec78276869ee31f9ea7a linux-3.0/arch/arm/plat-s5p/include/plat/exynos4.h -19548b693d47ed576e62bc10c43bea50 linux-3.0/arch/arm/plat-s5p/include/plat/ehci.h -e9818f5efba2c408f806ead0fd30c36f linux-3.0/arch/arm/plat-s5p/include/plat/camport.h -73986173116cd1d255cdcdc9207c74d3 linux-3.0/arch/arm/plat-s5p/dev-uart.c -ab3677f2e4655d141882de6d41ac6f32 linux-3.0/arch/arm/plat-s5p/dev-pmu.c -ad0b2b02fa7f330bcaa253e03c3aa89e linux-3.0/arch/arm/plat-s5p/dev-onenand.c -1cdaa34fea0ceae9754dcdbcddaab552 linux-3.0/arch/arm/plat-s5p/dev-fimc3.c -0da24edccca8df953faaeb21abbb4f4f linux-3.0/arch/arm/plat-s5p/dev-fimc2.c -5a176c1eab9499e4866ed2daccf04097 linux-3.0/arch/arm/plat-s5p/dev-fimc1.c -07b65de51b9583533e36fa3070a73dec linux-3.0/arch/arm/plat-s5p/dev-fimc0.c -aca9254349a18214c64eea685db57ffa linux-3.0/arch/arm/plat-s5p/dev-ehci.c -927a6fffe5a7d75c397576d98277ac00 linux-3.0/arch/arm/plat-s5p/dev-csis1.c -967ff8755d2b54365cb5d142d22250f8 linux-3.0/arch/arm/plat-s5p/dev-csis0.c -0ce1eb67af150938b227923f75376bbe linux-3.0/arch/arm/plat-s5p/cpu.c -c0018a4dbddf8f1d8a809def558f1a99 linux-3.0/arch/arm/plat-s5p/clock.c -1eb60a2e2b975d45bc8d3dc829d508cc linux-3.0/arch/arm/plat-s5p/Makefile -21176c0f10646f3f003e5014b3fc529b linux-3.0/arch/arm/plat-s5p/Kconfig -22edc5990971ff37a0793cd5cf0ce0ec linux-3.0/arch/arm/plat-s3c24xx/spi-bus1-gpg5_6_7.c -22c5b5abb4242052c5638b97bce12243 linux-3.0/arch/arm/plat-s3c24xx/spi-bus1-gpd8_9_10.c -f51ee6fe5df0e77a3e9905088cad915a linux-3.0/arch/arm/plat-s3c24xx/spi-bus0-gpe11_12_13.c -7b7f2b6a72bc0a14cc025e7a3bdbf98e linux-3.0/arch/arm/plat-s3c24xx/sleep.S -5036d4ac6ad7d91eb000d0cb360caae2 linux-3.0/arch/arm/plat-s3c24xx/simtec-audio.c -4507c4e9fb826820a8dbd3c6bf6a1dff linux-3.0/arch/arm/plat-s3c24xx/setup-ts.c -0b9bede4ed8beb3e233808d7b0a0f46e linux-3.0/arch/arm/plat-s3c24xx/setup-i2c.c -5bb705e8ba9ce6571a6981fb5951b739 linux-3.0/arch/arm/plat-s3c24xx/s3c2443-clock.c -f5ff24dfdb8a0af4a6e3a82e477f2c35 linux-3.0/arch/arm/plat-s3c24xx/s3c2412-iotiming.c -7f987f593db59dde7cd7b9996bd5dab0 linux-3.0/arch/arm/plat-s3c24xx/s3c2410-iotiming.c -8de0ad33bf5b83196fbe652a6171c2ab linux-3.0/arch/arm/plat-s3c24xx/s3c2410-cpufreq-utils.c -2c2b5cab9fcbad3bc1de29e31c99ce0b linux-3.0/arch/arm/plat-s3c24xx/s3c2410-clock.c -b15caad250179fb3b45c952b873a4697 linux-3.0/arch/arm/plat-s3c24xx/pm.c -8b44789d340db2f8eb0e0b571c53955c linux-3.0/arch/arm/plat-s3c24xx/pm-simtec.c -a6c20450b851e6b370cf1945af590767 linux-3.0/arch/arm/plat-s3c24xx/irq.c -363e08f03ec3317d667051d696f65262 linux-3.0/arch/arm/plat-s3c24xx/irq-pm.c -3ea13bc3cdc47505fcbd2ab7b3f61ee9 linux-3.0/arch/arm/plat-s3c24xx/include/plat/udc.h -d59e55051d7772d282d250f67b60db69 linux-3.0/arch/arm/plat-s3c24xx/include/plat/s3c244x.h -118d94f71671bc7c270f638b57f1ca60 linux-3.0/arch/arm/plat-s3c24xx/include/plat/s3c2443.h -145429f1f5a00261f685f7a0594639f7 linux-3.0/arch/arm/plat-s3c24xx/include/plat/s3c2416.h -3ed381d51e10db42de4b05fd1adf48da linux-3.0/arch/arm/plat-s3c24xx/include/plat/s3c2412.h -83b19af60527f1534fa139507847dc3a linux-3.0/arch/arm/plat-s3c24xx/include/plat/s3c2410.h -d52e947989789173b5335646d7fc5c76 linux-3.0/arch/arm/plat-s3c24xx/include/plat/s3c2400.h -23c925ed9521ae6023cf65208e397493 linux-3.0/arch/arm/plat-s3c24xx/include/plat/regs-udc.h -e32d8cf61bf69c832e413b38f35a0a80 linux-3.0/arch/arm/plat-s3c24xx/include/plat/regs-spi.h -5d19c68931efcf6856e094e7c49e02e4 linux-3.0/arch/arm/plat-s3c24xx/include/plat/regs-iis.h -703431c72d74ce4b6ab1f028995aa24d linux-3.0/arch/arm/plat-s3c24xx/include/plat/regs-dma.h -82973843e0c3d697d4b94b576a739e45 linux-3.0/arch/arm/plat-s3c24xx/include/plat/pll.h -fb1fd015b8354d8c21e2039a0c5a83d2 linux-3.0/arch/arm/plat-s3c24xx/include/plat/mci.h -e6effade6a90fee1472cd3520d5a8498 linux-3.0/arch/arm/plat-s3c24xx/include/plat/map.h -50b29b5f2901bf56cd661ad3f6f126a8 linux-3.0/arch/arm/plat-s3c24xx/include/plat/irq.h -7407591de409ee91c364d0b10b256ef1 linux-3.0/arch/arm/plat-s3c24xx/include/plat/fiq.h -0d6500d486f3a3dabac5ce5f6df94970 linux-3.0/arch/arm/plat-s3c24xx/include/plat/cpu-freq-core.h -4440c86bd089efef52ea289719e0d929 linux-3.0/arch/arm/plat-s3c24xx/include/plat/common-smdk.h -04531cb020a051164f9c5bccc55c3d97 linux-3.0/arch/arm/plat-s3c24xx/include/plat/audio-simtec.h -2bc3e950d431c515d8960ab4a1512aa8 linux-3.0/arch/arm/plat-s3c24xx/include/mach/pwm-clock.h -86c53bd3b43c9f29eb0ae8e16817740a linux-3.0/arch/arm/plat-s3c24xx/gpiolib.c -61bc8f6ab7acf31da84ce761cc1d0bfc linux-3.0/arch/arm/plat-s3c24xx/gpio.c -f605f7dfd01dec20470960d3dc2e7e6f linux-3.0/arch/arm/plat-s3c24xx/dma.c -bef4e39895e09578c61e796bad120045 linux-3.0/arch/arm/plat-s3c24xx/devs.c -00c0bf4a09bdc714e98b7bc7138e8d13 linux-3.0/arch/arm/plat-s3c24xx/cpu.c -65e17103f8bbcee0153d362a4afa7b69 linux-3.0/arch/arm/plat-s3c24xx/cpu-freq.c -71e18076e420aa56bd736e0720a07b36 linux-3.0/arch/arm/plat-s3c24xx/cpu-freq-debugfs.c -45ac9c4901334cd6b35b02506f4d549c linux-3.0/arch/arm/plat-s3c24xx/common-smdk.c -7854f775fbe4532c45a09cd53fc87791 linux-3.0/arch/arm/plat-s3c24xx/clock.c -272232bddd89a1b2cdd95788ec052af5 linux-3.0/arch/arm/plat-s3c24xx/clock-dclk.c -0803ba6836799a420079c2d26e635e2e linux-3.0/arch/arm/plat-s3c24xx/Makefile -574bcdd96b90e73646ba3bf070b0d480 linux-3.0/arch/arm/plat-s3c24xx/Kconfig -1a367f19590dab6fcc97b23dbf7ccd05 linux-3.0/arch/arm/plat-pxa/ssp.c -5854f86ce1952d79e5ae4b29e50d22d7 linux-3.0/arch/arm/plat-pxa/pwm.c -aa66abb4d201f4eefcb353f38c8e8595 linux-3.0/arch/arm/plat-pxa/mfp.c -e88c863690a195aa9a42892d3f4c3a98 linux-3.0/arch/arm/plat-pxa/include/plat/sdhci.h -d7f3eba1fa5c18fabdc559da148d0a5a linux-3.0/arch/arm/plat-pxa/include/plat/pxa3xx_nand.h -557298ed1874e0ad2c2fb832595af340 linux-3.0/arch/arm/plat-pxa/include/plat/pxa27x_keypad.h -c7d143c135fe702117c4e8941b145286 linux-3.0/arch/arm/plat-pxa/include/plat/mfp.h -0ce89ea7563cd80d0b98b72d346f884e linux-3.0/arch/arm/plat-pxa/include/plat/gpio.h -4d40b2e5e30c7811a388baf6716df1ca linux-3.0/arch/arm/plat-pxa/include/plat/dma.h -c3949789537804cf5d5cbb7aa5288e82 linux-3.0/arch/arm/plat-pxa/gpio.c -997bd93e64ef0f3ad38884a5152c2158 linux-3.0/arch/arm/plat-pxa/dma.c -6085a73a947a4813bfb4f1cee1787b86 linux-3.0/arch/arm/plat-pxa/Makefile -a14b563340ff42310c3d38fd720e271a linux-3.0/arch/arm/plat-pxa/Kconfig -fcfd30cdbe7aa776e16c846eaa910bc6 linux-3.0/arch/arm/plat-orion/time.c -74236c44c13a140788fd2b827be0106c linux-3.0/arch/arm/plat-orion/pcie.c -136487006968a2ca2fca45dde8d003b6 linux-3.0/arch/arm/plat-orion/mpp.c -4912de9f9891e85d79bf380b92129689 linux-3.0/arch/arm/plat-orion/irq.c -5387ee21118e04a11bb4ce9f29b53d9e linux-3.0/arch/arm/plat-orion/include/plat/time.h -bca4569d36d90826f8a2daad454ef490 linux-3.0/arch/arm/plat-orion/include/plat/pcie.h -74eb7a6b04ae44ea1cbe913d13eafedb linux-3.0/arch/arm/plat-orion/include/plat/orion_wdt.h -915b0fb922f5907d66a31a0f01a4ab36 linux-3.0/arch/arm/plat-orion/include/plat/orion_nand.h -1556ce9a181d5e46cf2b43d190dd4cf2 linux-3.0/arch/arm/plat-orion/include/plat/mvsdio.h -4a40900fca584c0ddad4b984077cf147 linux-3.0/arch/arm/plat-orion/include/plat/mv_xor.h -db11bfce122726f0d2d714d5fc603062 linux-3.0/arch/arm/plat-orion/include/plat/mpp.h -61ea2e2718ef247a7cd19b24463b9eaf linux-3.0/arch/arm/plat-orion/include/plat/irq.h -5ca03b2cce84b2a4eaa529715a5a3076 linux-3.0/arch/arm/plat-orion/include/plat/gpio.h -f1b93089e95671a176cce772295aa3c7 linux-3.0/arch/arm/plat-orion/include/plat/ehci-orion.h -e82beb5872ba652aca3c19b5e8dac602 linux-3.0/arch/arm/plat-orion/include/plat/common.h -567375bafe7eb5ee40a507c3a918cf02 linux-3.0/arch/arm/plat-orion/include/plat/cache-feroceon-l2.h -ddb404298088ef18fd1edb13a0d833ee linux-3.0/arch/arm/plat-orion/include/plat/audio.h -16afedabefbafabe3acddd61228ee0dd linux-3.0/arch/arm/plat-orion/gpio.c -f19a269a8534f59cc21f36789fa65928 linux-3.0/arch/arm/plat-orion/common.c -8133117f8b1ac68d4b69edf27b6df305 linux-3.0/arch/arm/plat-orion/Makefile -e9a616a76e5ebe44c7b9eff8ec44d560 linux-3.0/arch/arm/plat-omap/usb.c -b8137b70a11297ec14a4d9ae673a4f8d linux-3.0/arch/arm/plat-omap/sram.h -51bcba14c75b17aa886faf6b7c1a80c3 linux-3.0/arch/arm/plat-omap/sram.c -be83287654c0611777360bc5d82859d8 linux-3.0/arch/arm/plat-omap/omap_device.c -0418aefec70a899316e1aaecc5f6744c linux-3.0/arch/arm/plat-omap/omap-pm-noop.c -9baf666efa382ede622c69bba72429e2 linux-3.0/arch/arm/plat-omap/ocpi.c -9e0e5e63d2774d31e26c02e974228354 linux-3.0/arch/arm/plat-omap/mux.c -3b421fc3d2423abe75372008e52e5fe0 linux-3.0/arch/arm/plat-omap/mcbsp.c -974836ed31a91d8dcf39aebe49b83cf0 linux-3.0/arch/arm/plat-omap/mailbox.c -bd82eb8a51c207e0e3d7d5fa24e26129 linux-3.0/arch/arm/plat-omap/iovmm.c -6c6c56858240d08c5f2d76a5c1f97934 linux-3.0/arch/arm/plat-omap/iopgtable.h -12f7e1af58e8d0169c6f9c107ce1cc88 linux-3.0/arch/arm/plat-omap/iommu.c -3597d75090a40cb0ab0e0be6d195586e linux-3.0/arch/arm/plat-omap/iommu-debug.c -39fe94f7442c05e8e2d65f40d37b4819 linux-3.0/arch/arm/plat-omap/io.c -c32a83158d0f96106e3c74cdbb910f70 linux-3.0/arch/arm/plat-omap/include/plat/vrfb.h -9d15cfd91e6786c1e4371466b83cf7aa linux-3.0/arch/arm/plat-omap/include/plat/vram.h -f93f6de18453b60b0a088f43834ba8ea linux-3.0/arch/arm/plat-omap/include/plat/usb.h -920b0a2f95625083302c6a53d0903ccd linux-3.0/arch/arm/plat-omap/include/plat/uncompress.h -de25c9677af0c9d87865230c2e20d6db linux-3.0/arch/arm/plat-omap/include/plat/timex.h -aafca718a6080d5448df28e27ab403be linux-3.0/arch/arm/plat-omap/include/plat/ti816x.h -256fc3382073db904e1fca91fa4004ec linux-3.0/arch/arm/plat-omap/include/plat/tc.h -0dac5e53382296c743ff64fd69bb5063 linux-3.0/arch/arm/plat-omap/include/plat/system.h -78b541132bceeb3eba7363aefce5a9bd linux-3.0/arch/arm/plat-omap/include/plat/sram.h -2242b6c78f5fab1e96942254f78fcef5 linux-3.0/arch/arm/plat-omap/include/plat/serial.h -da73c3caf3bd33b3cf7b64745f34b80b linux-3.0/arch/arm/plat-omap/include/plat/sdrc.h -073a257dc45e035bbe10aba15d1e0fb7 linux-3.0/arch/arm/plat-omap/include/plat/prcm.h -69a62447f89cc2c5b369349213b1b2e0 linux-3.0/arch/arm/plat-omap/include/plat/param.h -ff75351048e97819b93f3c929dc0308d linux-3.0/arch/arm/plat-omap/include/plat/onenand.h -b8696a34b4ff37228b8b6d4b37a169e9 linux-3.0/arch/arm/plat-omap/include/plat/omap_hwmod.h -46a9106d27a555079bad5e03fa644530 linux-3.0/arch/arm/plat-omap/include/plat/omap_device.h -cd186618da3862ff495af20dc4573ae5 linux-3.0/arch/arm/plat-omap/include/plat/omap850.h -8a9024fb6f9c51cd3b64a8ef75869cfe linux-3.0/arch/arm/plat-omap/include/plat/omap7xx.h -6469298649ef4a5d7b4f30258b1bc294 linux-3.0/arch/arm/plat-omap/include/plat/omap730.h -35f233a1ac2f31e4af04de28f3ad0263 linux-3.0/arch/arm/plat-omap/include/plat/omap44xx.h -fb83eaeddd4727a67af2edbf0d80230a linux-3.0/arch/arm/plat-omap/include/plat/omap4-keypad.h -7376b4732d0783b5dc46272120f035cb linux-3.0/arch/arm/plat-omap/include/plat/omap34xx.h -f43b98d13409e6837bb2a03333596dff linux-3.0/arch/arm/plat-omap/include/plat/omap24xx.h -2ead69ccdfc7887c5f9b6e17e63649da linux-3.0/arch/arm/plat-omap/include/plat/omap16xx.h -3bef644da7d3c06505a88c30c068d2cc linux-3.0/arch/arm/plat-omap/include/plat/omap1510.h -99d61c4d94c1b3661fff61a48ab2d6e2 linux-3.0/arch/arm/plat-omap/include/plat/omap-serial.h -5d41330f016732072b9e1657b46586ee linux-3.0/arch/arm/plat-omap/include/plat/omap-pm.h -d2b90b21e94c911bafd701901a54fab3 linux-3.0/arch/arm/plat-omap/include/plat/omap-alsa.h -328c9704cbb466b1d031078e9e2f4e14 linux-3.0/arch/arm/plat-omap/include/plat/nand.h -80a9a9db7e05ab56beca9ee2a49f8ab2 linux-3.0/arch/arm/plat-omap/include/plat/mux.h -1fc292d2f5ee4c40516b4b3cf3d37192 linux-3.0/arch/arm/plat-omap/include/plat/multi.h -103de8fe8911218912934d7aedec5c3b linux-3.0/arch/arm/plat-omap/include/plat/mmc.h -8605b2efb189d4a981be4e4321f9a9da linux-3.0/arch/arm/plat-omap/include/plat/menelaus.h -06f4ee458e711858cd43dcc565017a4e linux-3.0/arch/arm/plat-omap/include/plat/memory.h -3b434fd4310db819496eca77b6d4bb91 linux-3.0/arch/arm/plat-omap/include/plat/mcspi.h -0c233ab14750c710c6f3b1f7d8135437 linux-3.0/arch/arm/plat-omap/include/plat/mcbsp.h -ab10ef8d678e86a28b3614ef2f596f33 linux-3.0/arch/arm/plat-omap/include/plat/mailbox.h -5b790eb9706859d00ceab3f45a946dad linux-3.0/arch/arm/plat-omap/include/plat/led.h -b1fa5e8563aa76e0e6c0b7b7da5b30c0 linux-3.0/arch/arm/plat-omap/include/plat/lcd_mipid.h -2bdc6b653bf3fda7af665f46dbcdd279 linux-3.0/arch/arm/plat-omap/include/plat/l4_3xxx.h -0beccdd3088f0335788584432c2d035d linux-3.0/arch/arm/plat-omap/include/plat/l4_2xxx.h -8cf27d5a8a85a99c05e1551beef35354 linux-3.0/arch/arm/plat-omap/include/plat/l3_3xxx.h -ac88f661730a1eb0b4a1d49bec357a5c linux-3.0/arch/arm/plat-omap/include/plat/l3_2xxx.h -fdcfd0338cb714f73c41ca904a0d60a4 linux-3.0/arch/arm/plat-omap/include/plat/keypad.h -50cba158f2e3f2c28b428fd864345535 linux-3.0/arch/arm/plat-omap/include/plat/irqs.h -81d201e530b4df29182cea9b867f9dab linux-3.0/arch/arm/plat-omap/include/plat/irqs-44xx.h -8cc2b0f23d33eeabd757b0a385773e47 linux-3.0/arch/arm/plat-omap/include/plat/irda.h -bdd0a35b014b665fdd342b53f672a8e8 linux-3.0/arch/arm/plat-omap/include/plat/iovmm.h -858dcab554668bbd6fc88a592a6750b4 linux-3.0/arch/arm/plat-omap/include/plat/iommu2.h -17d46c780653f5e90293b1983fae1691 linux-3.0/arch/arm/plat-omap/include/plat/iommu.h -b2bf4fb21f0349e81878358e387eaf66 linux-3.0/arch/arm/plat-omap/include/plat/io.h -1f0be12c0abb3d6d094f5fdd140a77b8 linux-3.0/arch/arm/plat-omap/include/plat/i2c.h -754c59fb31a82a803535b8814a5d7957 linux-3.0/arch/arm/plat-omap/include/plat/hwa742.h -6c4f5d0c04674dff0117efe31e4d78fd linux-3.0/arch/arm/plat-omap/include/plat/hardware.h -031ab8a6bba412053c6dbdf167006323 linux-3.0/arch/arm/plat-omap/include/plat/gpmc.h -ffd2b99356d6a93fd4a6dc1ed1434f62 linux-3.0/arch/arm/plat-omap/include/plat/gpmc-smsc911x.h -e1d8d5b00b54b7da4de535bc40163ab9 linux-3.0/arch/arm/plat-omap/include/plat/gpmc-smc91x.h -6795d96c5aa55a7f16847ab09eb7f692 linux-3.0/arch/arm/plat-omap/include/plat/gpio.h -7ff2dc5c094a9736e7dd8e091ff4577f linux-3.0/arch/arm/plat-omap/include/plat/gpio-switch.h -7e2202ddbef5dfbd79e6545825801d5f linux-3.0/arch/arm/plat-omap/include/plat/fpga.h -d121fd41bce438bfec90f9f8594c241d linux-3.0/arch/arm/plat-omap/include/plat/flash.h -c3892a30bafdd960c1debf90894c5ac2 linux-3.0/arch/arm/plat-omap/include/plat/dsp.h -d2462f92160cc054bb7baa665aae7139 linux-3.0/arch/arm/plat-omap/include/plat/dmtimer.h -446535f88783422cb725ecc07c471162 linux-3.0/arch/arm/plat-omap/include/plat/dma.h -361407b9418f91953c0dff6158aba4df linux-3.0/arch/arm/plat-omap/include/plat/dma-44xx.h -38b2d0416ad0889173198bf21e5d0b02 linux-3.0/arch/arm/plat-omap/include/plat/cpu.h -4212194da0b66d8455130e5c1e240251 linux-3.0/arch/arm/plat-omap/include/plat/common.h -c672272e8c1dcaeb70e16cb3e8d79883 linux-3.0/arch/arm/plat-omap/include/plat/clock.h -029db411b17b45eb16c2b665048bb547 linux-3.0/arch/arm/plat-omap/include/plat/clkdev_omap.h -3edab072316a36821bd6a61acc70aee7 linux-3.0/arch/arm/plat-omap/include/plat/clkdev.h -ea653fb80244d2ab52d70ab935d84ad7 linux-3.0/arch/arm/plat-omap/include/plat/board.h -d8506be7e2557865b4d9ca439058dfef linux-3.0/arch/arm/plat-omap/include/plat/board-voiceblue.h -c3c45c6ae25f148b1439d3f9af9f1680 linux-3.0/arch/arm/plat-omap/include/plat/board-sx1.h -e2c5cc5ef6e8fdf332b479981ed9f3a5 linux-3.0/arch/arm/plat-omap/include/plat/board-ams-delta.h -62e120d614e63ce34231be1745074995 linux-3.0/arch/arm/plat-omap/include/plat/blizzard.h -3a9a1a69e2c957b35c25debeb3c08846 linux-3.0/arch/arm/plat-omap/i2c.c -7d2b6b60d4c894d1930fe8c7615f712a linux-3.0/arch/arm/plat-omap/fb.h -79eb5c32d2ad7a3cd3008db830283b7e linux-3.0/arch/arm/plat-omap/fb.c -9e01853248b76e527ee08e11e00895d4 linux-3.0/arch/arm/plat-omap/dmtimer.c -d89dd7920669c34218e4096efd32c747 linux-3.0/arch/arm/plat-omap/dma.c -cdbd097831874a71aa8379ea6d455971 linux-3.0/arch/arm/plat-omap/devices.c -a014053642a165fc46c83e9bfdd8c4c3 linux-3.0/arch/arm/plat-omap/debug-leds.c -c138fc59117da7eed7a7969518f5e82a linux-3.0/arch/arm/plat-omap/debug-devices.c -1ef5f6d2b853621934b89ca1abeee4c1 linux-3.0/arch/arm/plat-omap/cpu-omap.c -55ae121712fb30f56a4b8d48918a8129 linux-3.0/arch/arm/plat-omap/counter_32k.c -3ae18e5dc4b63db3dfe19d4b65da3a1f linux-3.0/arch/arm/plat-omap/common.c -23d192e3413d56c19e9433f5939032e1 linux-3.0/arch/arm/plat-omap/clock.c -6397c87370b17453b694c1d82fb6d898 linux-3.0/arch/arm/plat-omap/Makefile -f5d5db8fdfe2034111414542a12f2cc8 linux-3.0/arch/arm/plat-omap/Kconfig -0dd87c08e53c2ca0499c9f6572ac02bc linux-3.0/arch/arm/plat-nomadik/timer.c -4dd21657e2b683abe5d2abfe0e90df57 linux-3.0/arch/arm/plat-nomadik/include/plat/ste_dma40.h -986cd2519aec1870d763df68eb227b92 linux-3.0/arch/arm/plat-nomadik/include/plat/ske.h -fa4bf42a6b5f48bf3df069315599145c linux-3.0/arch/arm/plat-nomadik/include/plat/pincfg.h -ea9d32ab72b09a3fe4482de16dc6140d linux-3.0/arch/arm/plat-nomadik/include/plat/mtu.h -5f649e11ce04105fea51d6f62fac7901 linux-3.0/arch/arm/plat-nomadik/include/plat/i2c.h -67803ee4934f6351b955f21252f03016 linux-3.0/arch/arm/plat-nomadik/include/plat/gpio.h -c7802bc2f6c63a8049e1bb42b84e3938 linux-3.0/arch/arm/plat-nomadik/Makefile -9a331ba5d408359d95c8dd22a149573f linux-3.0/arch/arm/plat-nomadik/Kconfig -c99139eec6193dd54caebaeb5732448a linux-3.0/arch/arm/plat-mxc/ulpi.c -53a0094264b2612acd79b03d125d914a linux-3.0/arch/arm/plat-mxc/tzic.c -ced4323b83faae9fe89ab3299d937bbb linux-3.0/arch/arm/plat-mxc/time.c -6d7f3713efd6caae4345c03d15b0364f linux-3.0/arch/arm/plat-mxc/system.c -5196df94c52d5dca29bf8e29c3c7813a linux-3.0/arch/arm/plat-mxc/ssi-fiq.S -c8a189851cec58055da067ee84d99709 linux-3.0/arch/arm/plat-mxc/ssi-fiq-ksym.c -1ca663536fbe4dda910c158a4ccbcfe0 linux-3.0/arch/arm/plat-mxc/pwm.c -729367e85a60587c82c2a14c0fb31ba9 linux-3.0/arch/arm/plat-mxc/irq-common.h -fb43c230e9453b2009f0a864023a40bb linux-3.0/arch/arm/plat-mxc/irq-common.c -efd35eb98230c59045b1c179f20ad11f linux-3.0/arch/arm/plat-mxc/iram_alloc.c -11b598d06302f335a694e9574eea9f6f linux-3.0/arch/arm/plat-mxc/iomux-v3.c -1b8f894cb2c6a3e9929e5ad579b9ee0d linux-3.0/arch/arm/plat-mxc/iomux-v1.c -bd9e7dc89deb71026394b209c7533da7 linux-3.0/arch/arm/plat-mxc/include/mach/vmalloc.h -dfedcd46320173f3b6b36627c2b7ed11 linux-3.0/arch/arm/plat-mxc/include/mach/usb.h -21816fb5410f977f092e8ac7944cfa54 linux-3.0/arch/arm/plat-mxc/include/mach/uncompress.h -3b3f3a517e8be056e277f9d454701951 linux-3.0/arch/arm/plat-mxc/include/mach/ulpi.h -0d9a084a48c85898c1c2b804059f69e0 linux-3.0/arch/arm/plat-mxc/include/mach/timex.h -a5df3693ff6f99bb57251c8bb65416f4 linux-3.0/arch/arm/plat-mxc/include/mach/system.h -826fea8b87243330bd3a605554743488 linux-3.0/arch/arm/plat-mxc/include/mach/ssi.h -2208d5c9d690c3d5f9ab3651e4271d52 linux-3.0/arch/arm/plat-mxc/include/mach/spi.h -967176a0705e353fc45b7d50785df506 linux-3.0/arch/arm/plat-mxc/include/mach/sdma.h -5f233c209c498a50fd7217f11c7b7101 linux-3.0/arch/arm/plat-mxc/include/mach/mxc_nand.h -2e1037dbf083aef7b8ad62c93dbd215d linux-3.0/arch/arm/plat-mxc/include/mach/mxc_ehci.h -9b2bea6939d6f2e5c87a255290ff5bd9 linux-3.0/arch/arm/plat-mxc/include/mach/mxc.h -174bfc70af24734de185ef9aa6ccfa09 linux-3.0/arch/arm/plat-mxc/include/mach/mx53.h -7611867c1d421c0706a44a75471e79c6 linux-3.0/arch/arm/plat-mxc/include/mach/mx51.h -3d4ae75e3f23d0cead3925d02854544b linux-3.0/arch/arm/plat-mxc/include/mach/mx50.h -9dca490d01cccef585b7c5690b09d877 linux-3.0/arch/arm/plat-mxc/include/mach/mx3x.h -c7a4fbcb72f722a22412fdf9d5fe5d34 linux-3.0/arch/arm/plat-mxc/include/mach/mx3fb.h -d769a9241ca0508539a0dcd8670f13a9 linux-3.0/arch/arm/plat-mxc/include/mach/mx3_camera.h -4f3b8094fca0cf62890bd64549098abe linux-3.0/arch/arm/plat-mxc/include/mach/mx35.h -955331b5ac4711a7aafc1c9e97738dd5 linux-3.0/arch/arm/plat-mxc/include/mach/mx31.h -58e673ed401485ccb7ff6ad0943710df linux-3.0/arch/arm/plat-mxc/include/mach/mx2x.h -c0c982dd981dbf307eb0e553d04d5d85 linux-3.0/arch/arm/plat-mxc/include/mach/mx2_cam.h -ce82f80a07661af043d326623dfd658b linux-3.0/arch/arm/plat-mxc/include/mach/mx27.h -33e22c1720d7504c4ede2f7c06b20655 linux-3.0/arch/arm/plat-mxc/include/mach/mx25.h -845dd9e0ea89166808a6e03a99e6a947 linux-3.0/arch/arm/plat-mxc/include/mach/mx21.h -ab496e4696da81713df5fca2075fbf44 linux-3.0/arch/arm/plat-mxc/include/mach/mx21-usbhost.h -4e25616281d9842f929664c04e59f9a9 linux-3.0/arch/arm/plat-mxc/include/mach/mx1_camera.h -090fb50d53f174d6c0c60e344a55099e linux-3.0/arch/arm/plat-mxc/include/mach/mx1.h -8462d12bdb3b9779cc7466cddca17978 linux-3.0/arch/arm/plat-mxc/include/mach/mmc.h -91397435642dc1883e37af356ce6ea61 linux-3.0/arch/arm/plat-mxc/include/mach/memory.h -23365e2627e1000e0d677fe3465c5575 linux-3.0/arch/arm/plat-mxc/include/mach/irqs.h -e0c99504b8de5777f7e81c94836a3aef linux-3.0/arch/arm/plat-mxc/include/mach/iram.h -9a7c107732457345b4d561780c04bbc0 linux-3.0/arch/arm/plat-mxc/include/mach/ipu.h -d6c47e45eb4e00c8dfaf024ce34afcaf linux-3.0/arch/arm/plat-mxc/include/mach/iomux.h -eeeb624b2a3c439b2a96809c5e2ae120 linux-3.0/arch/arm/plat-mxc/include/mach/iomux-v3.h -ce5b3eb3f5fa09962882edd9d4b6d475 linux-3.0/arch/arm/plat-mxc/include/mach/iomux-v1.h -5c554b2284944fbd299f72d63966491d linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx53.h -e8dcb4bb50d93ebcb504d5eeb8e5b1dd linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx51.h -09af572765d1208364dc34ad6a52151d linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx50.h -71d12e17ca034473bb78e0b85c1459ae linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx35.h -318c4d0da97144aff3fa2e623e8fd939 linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx3.h -658637c5ffeb184eebc3971dcd83b699 linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx2x.h -367f9ee670407688c4d7eebe94a8ee50 linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx27.h -2b7b117dd62f2faa941ef667d5633d35 linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx25.h -2792790e3efee87f13a60d98d8927dcc linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx21.h -819476cbfcd6161b7f6c7ea7cfc7ccf2 linux-3.0/arch/arm/plat-mxc/include/mach/iomux-mx1.h -54283bc826002e01e3f160a19de3ed4d linux-3.0/arch/arm/plat-mxc/include/mach/io.h -a539f5ea524fd6d59af0fb5bb8e8b2d5 linux-3.0/arch/arm/plat-mxc/include/mach/imxfb.h -84af4d3ecf75a6e3d2a3ba826855dfa0 linux-3.0/arch/arm/plat-mxc/include/mach/imx-uart.h -fa19805ef885fcc7934e83ca86a7a4e9 linux-3.0/arch/arm/plat-mxc/include/mach/iim.h -25ed044d86186e8a28ba999919108175 linux-3.0/arch/arm/plat-mxc/include/mach/i2c.h -d01b232f88f7dc08d35987389b04d203 linux-3.0/arch/arm/plat-mxc/include/mach/hardware.h -7ef3a58568d34a9dceb02d1776297a44 linux-3.0/arch/arm/plat-mxc/include/mach/gpio.h -aea83ad5a00a58211fb5ddaa94277eff linux-3.0/arch/arm/plat-mxc/include/mach/eukrea-baseboards.h -38594652d48d18ae22fc9c537974612a linux-3.0/arch/arm/plat-mxc/include/mach/esdhc.h -e2490360e2a8b936ffc640911b1110fe linux-3.0/arch/arm/plat-mxc/include/mach/entry-macro.S -3a3796e894d62799e6febe4ed5116fee linux-3.0/arch/arm/plat-mxc/include/mach/dma.h -c7ccaebd57c3a73db006c1331f2f8979 linux-3.0/arch/arm/plat-mxc/include/mach/devices-common.h -20b99f947d74ff3cd1bd56efc3d4a021 linux-3.0/arch/arm/plat-mxc/include/mach/debug-macro.S -43483bacfa74cfc4255591b72d7e5079 linux-3.0/arch/arm/plat-mxc/include/mach/common.h -f860c8079d375372716cb864b8ad727e linux-3.0/arch/arm/plat-mxc/include/mach/clock.h -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/plat-mxc/include/mach/clkdev.h -fbdbd3d36822e113fff44202d3b94041 linux-3.0/arch/arm/plat-mxc/include/mach/board-pcm038.h -407ac0450ff612c3c716879239016eb2 linux-3.0/arch/arm/plat-mxc/include/mach/board-mx31moboard.h -09d9e879f395637fd09f23ac6d1c329b linux-3.0/arch/arm/plat-mxc/include/mach/board-mx31lite.h -ac24a69bef966d8af12293834040bfd1 linux-3.0/arch/arm/plat-mxc/include/mach/board-mx31lilly.h -1de43d8fd6dd84a985b82784f9bb480a linux-3.0/arch/arm/plat-mxc/include/mach/board-mx31ads.h -f636d5c8515a5be70835650a5b07d087 linux-3.0/arch/arm/plat-mxc/include/mach/audmux.h -2447e16c29aab6386e8ae07f50636da1 linux-3.0/arch/arm/plat-mxc/include/mach/3ds_debugboard.h -6a170a38b828e8eae63ec49c129a33d5 linux-3.0/arch/arm/plat-mxc/gpio.c -b5972a8f4827000082904850ba5db869 linux-3.0/arch/arm/plat-mxc/epit.c -ba69e0a8a5bbfc85bb2f804e77ad5ebb linux-3.0/arch/arm/plat-mxc/devices/platform-spi_imx.c -c6103db908581873b53f4bc12432065c linux-3.0/arch/arm/plat-mxc/devices/platform-sdhci-esdhc-imx.c -6a3dd0daaecdf1f9a372f8a5ea126790 linux-3.0/arch/arm/plat-mxc/devices/platform-mxc_w1.c -7229dcd70a9592ba407bf165ea5cb06a linux-3.0/arch/arm/plat-mxc/devices/platform-mxc_rtc.c -79a74af07d81241012732f711687ffb3 linux-3.0/arch/arm/plat-mxc/devices/platform-mxc_rnga.c -fe40e18cd3d0dd6ecbf33fd38e0d1dab linux-3.0/arch/arm/plat-mxc/devices/platform-mxc_pwm.c -1a885194d9130af5676164df4805fa0c linux-3.0/arch/arm/plat-mxc/devices/platform-mxc_nand.c -e9f0e165c982fa12636325bf21246d62 linux-3.0/arch/arm/plat-mxc/devices/platform-mxc-mmc.c -9b5ab30678ab5b08a6700a2403517c2b linux-3.0/arch/arm/plat-mxc/devices/platform-mxc-ehci.c -cbc7c4debf39203b6a9cc7adc0e57222 linux-3.0/arch/arm/plat-mxc/devices/platform-mx2-camera.c -279f54965f970f20c3f55b028aa0991f linux-3.0/arch/arm/plat-mxc/devices/platform-mx1-camera.c -4c9886f0acb898632722bcbc17b266b3 linux-3.0/arch/arm/plat-mxc/devices/platform-ipu-core.c -13d991c75b1519179eea34b8a8eb6b67 linux-3.0/arch/arm/plat-mxc/devices/platform-imxdi_rtc.c -8965538456ce701c61f92fddd7da9c98 linux-3.0/arch/arm/plat-mxc/devices/platform-imx_udc.c -66e7c7ad62429b0d3162f963dd4b25bf linux-3.0/arch/arm/plat-mxc/devices/platform-imx21-hcd.c -b5139ab27d3dc19ade840f6e29f63d95 linux-3.0/arch/arm/plat-mxc/devices/platform-imx2-wdt.c -2fc46be4037a6c13c778418802be5165 linux-3.0/arch/arm/plat-mxc/devices/platform-imx-uart.c -d5853144ecfc22eab4e05a1fa720abf2 linux-3.0/arch/arm/plat-mxc/devices/platform-imx-ssi.c -15f8c19ea5c80c8735f7cc59618d3749 linux-3.0/arch/arm/plat-mxc/devices/platform-imx-keypad.c -030dbc9f46465bbc77696403c147a6be linux-3.0/arch/arm/plat-mxc/devices/platform-imx-i2c.c -5f63b53d18daf82b51e0af62184f142d linux-3.0/arch/arm/plat-mxc/devices/platform-imx-fb.c -4e95378ca3329ef32f1875218bb7a49c linux-3.0/arch/arm/plat-mxc/devices/platform-imx-dma.c -55be094145f5054ff1a136adfeb576b6 linux-3.0/arch/arm/plat-mxc/devices/platform-gpio_keys.c -a31b1f6cd81bfe3efebd87ee82e98ab0 linux-3.0/arch/arm/plat-mxc/devices/platform-fsl-usb2-udc.c -c4d2b1d8b77123e893f302988c830668 linux-3.0/arch/arm/plat-mxc/devices/platform-flexcan.c -68ba7ed8449bf8842ac4437b4156fda6 linux-3.0/arch/arm/plat-mxc/devices/platform-fec.c -55988ccd15209163aabce57f3b154be7 linux-3.0/arch/arm/plat-mxc/devices/Makefile -e12683c25a404e18fcd0ed3b9f67d5a7 linux-3.0/arch/arm/plat-mxc/devices/Kconfig -7168c0567309349993d0f96878584829 linux-3.0/arch/arm/plat-mxc/devices.c -75c49bceb26e93e89a685031273122e1 linux-3.0/arch/arm/plat-mxc/cpufreq.c -c8ed9bcb97d8e3de2e5405a5ae872eb6 linux-3.0/arch/arm/plat-mxc/cpu.c -99b9cc913654e5a9ee08c36a272378dd linux-3.0/arch/arm/plat-mxc/clock.c -c5a5994cdbcef26a85b2902316807a03 linux-3.0/arch/arm/plat-mxc/avic.c -62b605e028d0566733fd696dcd66149b linux-3.0/arch/arm/plat-mxc/audmux-v2.c -5786a01a6d15f6589bbdba19c9b42f46 linux-3.0/arch/arm/plat-mxc/audmux-v1.c -ee776ea6edf6140d2fef8555587052f3 linux-3.0/arch/arm/plat-mxc/Makefile -681d8cea802d6d5b7f61a057fa1aab80 linux-3.0/arch/arm/plat-mxc/Kconfig -6bc394ea10686e2d3593c18d3363fb8b linux-3.0/arch/arm/plat-mxc/3ds_debugboard.c -d08115e18ded0b33dfe7ca4c19888090 linux-3.0/arch/arm/plat-iop/time.c -80fabba6dc618eb22a3f8a47cb96834b linux-3.0/arch/arm/plat-iop/setup.c -c614a02252e688032700086389487acd linux-3.0/arch/arm/plat-iop/pmu.c -02d247f5df61e2f8d3271e5208862fb5 linux-3.0/arch/arm/plat-iop/pci.c -4fef391615ea6e2d4b92969c5d23b2c0 linux-3.0/arch/arm/plat-iop/io.c -d5e9adf2f737a3d98b95b76bb12f849f linux-3.0/arch/arm/plat-iop/i2c.c -0af213cc8ab99ff31104bd212deb80bf linux-3.0/arch/arm/plat-iop/gpio.c -eee2d80e0856e6baa3c7ccf86df1300f linux-3.0/arch/arm/plat-iop/cp6.c -9c9c2d22b68b055457b5b742d7d0fcd8 linux-3.0/arch/arm/plat-iop/adma.c -b85dcaa644eaa6909b49cc9d7def6e4d linux-3.0/arch/arm/plat-iop/Makefile -c141f400d326615af47e5a9cf4906844 linux-3.0/arch/arm/oprofile/common.c -c95612c9589596f677394864125adf61 linux-3.0/arch/arm/oprofile/Makefile -37776347bf6fc948e640b846b46550ef linux-3.0/arch/arm/nwfpe/softfloat.h -1fbc0a0c3241dc3b140208b9dbb5ed9b linux-3.0/arch/arm/nwfpe/softfloat.c -4f5f5f03cf0cde5e204aeb078c3a235e linux-3.0/arch/arm/nwfpe/softfloat-specialize -103e0a18516ec0b81831015b178c93b1 linux-3.0/arch/arm/nwfpe/softfloat-macros -67a5ddc729678a8e879aadf0284f6e3a linux-3.0/arch/arm/nwfpe/single_cpdo.c -a8e59b396e1c02818c24be0599feff15 linux-3.0/arch/arm/nwfpe/milieu.h -b45e6ccabb007b448847aa53892247e3 linux-3.0/arch/arm/nwfpe/fpsr.h -ab12efd7ed25232c27fde3151e160da2 linux-3.0/arch/arm/nwfpe/fpopcode.h -dcfbe706f6dd3dcc468a53c126297e39 linux-3.0/arch/arm/nwfpe/fpopcode.c -f76ed3ac8e8cbe62fb3f277decc23af4 linux-3.0/arch/arm/nwfpe/fpmodule.inl -26cf0237d9fab63eb4987117bdfa9712 linux-3.0/arch/arm/nwfpe/fpmodule.h -c2adbe88cb8c4c114dd1117772562939 linux-3.0/arch/arm/nwfpe/fpmodule.c -5103021163cda44b0d6edad5d3e8cb42 linux-3.0/arch/arm/nwfpe/fpa11_cprt.c -b25f30522d99abee995f007e4d52d32a linux-3.0/arch/arm/nwfpe/fpa11_cpdt.c -d90d5e7074d09da51a34131a69341ea3 linux-3.0/arch/arm/nwfpe/fpa11_cpdo.c -d391b9bbd5149ce2b27aef55d47c08d9 linux-3.0/arch/arm/nwfpe/fpa11.inl -d034185803d7871adae82e6aa552fa53 linux-3.0/arch/arm/nwfpe/fpa11.h -d531020d24a07f573219e6cfeaa584cb linux-3.0/arch/arm/nwfpe/fpa11.c -447aae41bc0f35ecbce4fbd53333f47d linux-3.0/arch/arm/nwfpe/extended_cpdo.c -c2bf0b3e0ac5e4f2fc51f9a8b75948a4 linux-3.0/arch/arm/nwfpe/entry.S -743c9bdb63a7f04675300c41a6bf5128 linux-3.0/arch/arm/nwfpe/double_cpdo.c -6c1afd12b0de261f635c665cd0cb9b9e linux-3.0/arch/arm/nwfpe/Makefile -36bd54482cc808af07f02de9e0306269 linux-3.0/arch/arm/nwfpe/ChangeLog -7697491a3cdef05c5efb593cfe912b0a linux-3.0/arch/arm/nwfpe/ARM-gcc.h -de659edfaec703db7d37d0c4a7a24c17 linux-3.0/arch/arm/mm/vmregion.h -cff749db1298d441b2e138a2774623b0 linux-3.0/arch/arm/mm/vmregion.c -3e593084ed1dd553210566543c3eaa60 linux-3.0/arch/arm/mm/tlb-v7.S -f4fa9d9c80e6d4263f284a5d6cfd2ccf linux-3.0/arch/arm/mm/tlb-v6.S -f2b6283baa9c446f5e20adb814a7b1a5 linux-3.0/arch/arm/mm/tlb-v4wbi.S -cdd1224d41cd21530f134620a5ddf7bc linux-3.0/arch/arm/mm/tlb-v4wb.S -d25f3e7fc96ca021d28f3600b7098b57 linux-3.0/arch/arm/mm/tlb-v4.S -08088bf6c1fdb514334c92c91cc06a67 linux-3.0/arch/arm/mm/tlb-v3.S -399c93b3214c186ef45bee281206cf83 linux-3.0/arch/arm/mm/tlb-fa.S -92da8cafc3da881dbe0005fab3f9c969 linux-3.0/arch/arm/mm/proc-xscale.S -5ab450a0f2a9b29eb07c6da8d1f22c5e linux-3.0/arch/arm/mm/proc-xsc3.S -fe7f09ccb8215550e0f86b6c2d0cd6d3 linux-3.0/arch/arm/mm/proc-v7.S -fe392dbaf55dd9b1317c103294105bb5 linux-3.0/arch/arm/mm/proc-v6.S -a8904ee8b0ce71b4c6c6610ebb7219e1 linux-3.0/arch/arm/mm/proc-syms.c -2ba05ce8fc8f45ce123f811f31a35cc6 linux-3.0/arch/arm/mm/proc-sa1100.S -8c94ecf71a37a025e21bf25efc831a8e linux-3.0/arch/arm/mm/proc-sa110.S -5395a28b9567baf5cc4cb5efa3cb7870 linux-3.0/arch/arm/mm/proc-mohawk.S -f24567e1d11824f7887807ee103678e7 linux-3.0/arch/arm/mm/proc-macros.S -2135a4d724a8d79c3dd0fac60c5893b8 linux-3.0/arch/arm/mm/proc-feroceon.S -5dfeb95f42a9e52fa664e948f2a7ad7e linux-3.0/arch/arm/mm/proc-fa526.S -b65e16514fedc32d98eb50fd4630c4d4 linux-3.0/arch/arm/mm/proc-arm9tdmi.S -a7d34f373b7c33a5c41af7b11731c0dc linux-3.0/arch/arm/mm/proc-arm946.S -0d2ce72731110446356ee0cf245b9141 linux-3.0/arch/arm/mm/proc-arm940.S -01243f2be9e8a04699f40dbd571a5502 linux-3.0/arch/arm/mm/proc-arm926.S -ac953c55414565ff9a3f8b4183ecda12 linux-3.0/arch/arm/mm/proc-arm925.S -aba26a56767920515b9f442eaa9f449c linux-3.0/arch/arm/mm/proc-arm922.S -9685496d78b7de8d608a9ace228e7a9b linux-3.0/arch/arm/mm/proc-arm920.S -d65255a8ba3850e7dd95eae06a05c396 linux-3.0/arch/arm/mm/proc-arm7tdmi.S -dbca4636f637ebea330780b09fb89d0f linux-3.0/arch/arm/mm/proc-arm740.S -65fdecad236fdcf5caefe4b663b822cf linux-3.0/arch/arm/mm/proc-arm720.S -e7cbd4fe1c292ed41c701b00fc582a6f linux-3.0/arch/arm/mm/proc-arm6_7.S -5009e469f7e8aa16718dc8b27c1cf0bc linux-3.0/arch/arm/mm/proc-arm1026.S -9989ee64139c7de2a122c1de5a0d9d69 linux-3.0/arch/arm/mm/proc-arm1022.S -6a1c75fd8c63678a587d2c583dfbc904 linux-3.0/arch/arm/mm/proc-arm1020e.S -47328539555414d6ab0379da0fbd9394 linux-3.0/arch/arm/mm/proc-arm1020.S -9f078addad0e23512828da665c0a24c3 linux-3.0/arch/arm/mm/pgd.c -1adf49de2cef33834fafbc4a8f23d486 linux-3.0/arch/arm/mm/pabort-v7.S -857130fd59a48a89439b2eef61ff6c94 linux-3.0/arch/arm/mm/pabort-v6.S -637ea850c2f3ada317a455c43bc70fb9 linux-3.0/arch/arm/mm/pabort-legacy.S -6cd31525c19901f9fdad5d704f15e0ef linux-3.0/arch/arm/mm/nommu.c -df173adcdacb2f2204507bba5e110a08 linux-3.0/arch/arm/mm/mmu.c -03eb3c37c32cdf0cde21935625488cbd linux-3.0/arch/arm/mm/mmap.c -8c3d2282e28ba2705ff47dbcd84335a0 linux-3.0/arch/arm/mm/mm.h -2a2bccd3dd925ffbb78d0ec42bbb7c05 linux-3.0/arch/arm/mm/ioremap.c -08794693fafff62e6c03ee68be78e0e8 linux-3.0/arch/arm/mm/iomap.c -d9a675e8eb67b84573fa88da0f7a0fc4 linux-3.0/arch/arm/mm/init.c -8dea0fc3de6f2bc73f2461d87503fa2f linux-3.0/arch/arm/mm/idmap.c -28a152f8017d2c4a63c27d007d179f83 linux-3.0/arch/arm/mm/highmem.c -277911ecc9a5d1bf30f0f644a59fbd25 linux-3.0/arch/arm/mm/flush.c -b303e0da7e5ca2a15475bdcb6d0c8a7d linux-3.0/arch/arm/mm/fault.h -f7867517a62bd518a16ee0820bc58a2f linux-3.0/arch/arm/mm/fault.c -afc0549827282ca2ea88480128b885cb linux-3.0/arch/arm/mm/fault-armv.c -56deba1cfd2f7c3faea5063017825a4b linux-3.0/arch/arm/mm/extable.c -cdd5626d7af0a9b7eb02558bd78b04d6 linux-3.0/arch/arm/mm/dma-mapping.c -4653507ab0d5b5356a1a3819cc5ebfeb linux-3.0/arch/arm/mm/copypage-xscale.c -107d8bfb4406a2dc3e3b9bcd42cf9edf linux-3.0/arch/arm/mm/copypage-xsc3.c -9bc0149a798c537edb014c595a5f17c0 linux-3.0/arch/arm/mm/copypage-v6.c -dfefe6f300b29e8a6b3290355fa8042a linux-3.0/arch/arm/mm/copypage-v4wt.c -7290de199186898514a4b4efcf05999d linux-3.0/arch/arm/mm/copypage-v4wb.c -2bc77c3dc80edb1a22c1ba1d5ce8c450 linux-3.0/arch/arm/mm/copypage-v4mc.c -819f73e31958b5defd86bc69b89a87bd linux-3.0/arch/arm/mm/copypage-v3.c -076bacd2cf308ab23c326b7f1fb3f1d6 linux-3.0/arch/arm/mm/copypage-feroceon.c -efac9a1c223fb9c8ff1cd9f1d04d041a linux-3.0/arch/arm/mm/copypage-fa.c -ff458b7b549d22b2dfbe2b66127d548f linux-3.0/arch/arm/mm/context.c -b6167e1c49458526814e10acfd720d33 linux-3.0/arch/arm/mm/cache-xsc3l2.c -9a61ae334c235c33e09bbc5f826bfc5a linux-3.0/arch/arm/mm/cache-v7.S -c70ab21e6fbeb2a32c01952553643205 linux-3.0/arch/arm/mm/cache-v6.S -9572ba57ba49106760bfb4c6a3752c6e linux-3.0/arch/arm/mm/cache-v4wt.S -c7634185e42c7ff98dafad5a7aaa7811 linux-3.0/arch/arm/mm/cache-v4wb.S -b5b12849615cfff6751060a5fc4ac984 linux-3.0/arch/arm/mm/cache-v4.S -34a3a692b33c028f5c3fea1fc72b4031 linux-3.0/arch/arm/mm/cache-v3.S -133487910c4bbf475892f5d15b863f8f linux-3.0/arch/arm/mm/cache-tauros2.c -281657ed64c4a0a6156bf6423388c98d linux-3.0/arch/arm/mm/cache-l2x0.c -79c5271f18a8ba03b4fba91dc29b37ee linux-3.0/arch/arm/mm/cache-feroceon-l2.c -e79b218045a74e763c450ecc83af9832 linux-3.0/arch/arm/mm/cache-fa.S -4629739982474d0fa38ab4e090a385a2 linux-3.0/arch/arm/mm/alignment.c -ab084c871f88413e0cfd0f7f8ed2a7c0 linux-3.0/arch/arm/mm/abort-nommu.S -2e5de8a68351418710eb295f9c2b6120 linux-3.0/arch/arm/mm/abort-macro.S -c8f0ccf98d3cd0b69331133fa1da7630 linux-3.0/arch/arm/mm/abort-lv4t.S -d475a14a2a24d8ee020ebb2e0502f741 linux-3.0/arch/arm/mm/abort-ev7.S -d422b03fcdfeb4036642de68cbd3c02e linux-3.0/arch/arm/mm/abort-ev6.S -57778966834906d6c9f9113ce2702047 linux-3.0/arch/arm/mm/abort-ev5tj.S -7a2356416c6bc93061b7ab3e2db41d84 linux-3.0/arch/arm/mm/abort-ev5t.S -0bc684f8562fee84d1ee4c20a5452db2 linux-3.0/arch/arm/mm/abort-ev4t.S -f0e4c2293b66053155a59fd798d0b066 linux-3.0/arch/arm/mm/abort-ev4.S -2ee8a6ff4d7a7a12fc9ffc09159e3f00 linux-3.0/arch/arm/mm/Makefile -986220d82d4a99e016209e029dd6ca2e linux-3.0/arch/arm/mm/Kconfig -9357477d96c8b83a4fdde47f19688851 linux-3.0/arch/arm/mach-w90x900/time.c -9cb9aaaf413abaf6d7948cc913a9d1c8 linux-3.0/arch/arm/mach-w90x900/nuc960.h -cbc640ccd6505903fad54688bfb9ede7 linux-3.0/arch/arm/mach-w90x900/nuc960.c -179912f74d8a71955d6dbf6ae15cb7e9 linux-3.0/arch/arm/mach-w90x900/nuc950.h -b7bcb4014fb3cf2852fa7416e2a35d2a linux-3.0/arch/arm/mach-w90x900/nuc950.c -31114acefea123588dd21a328b756526 linux-3.0/arch/arm/mach-w90x900/nuc910.h -97fbf570fd054330dc43599b08d22ae0 linux-3.0/arch/arm/mach-w90x900/nuc910.c -be025cd291f01fcf745c038a5028ad8f linux-3.0/arch/arm/mach-w90x900/mfp.c -0cd71e0d91f1373b4d0e71ab70e55fa0 linux-3.0/arch/arm/mach-w90x900/mach-nuc960evb.c -9bc54b12e2baf15e1f30c803b7d21dfa linux-3.0/arch/arm/mach-w90x900/mach-nuc950evb.c -ce5a1f759e1326ff64c38b4b88768fed linux-3.0/arch/arm/mach-w90x900/mach-nuc910evb.c -4cb47ac5e61358126a246fd56b6acf6d linux-3.0/arch/arm/mach-w90x900/irq.c -d4d90b34b24e872230ed523dc7b3206b linux-3.0/arch/arm/mach-w90x900/include/mach/w90p910_keypad.h -a3f1e4a0cb14e924f38c6c81cc64a662 linux-3.0/arch/arm/mach-w90x900/include/mach/vmalloc.h -c1ea66eb482d07e037eadd331db4e526 linux-3.0/arch/arm/mach-w90x900/include/mach/uncompress.h -b3781d212a7576eb0e0d18d9c3324b12 linux-3.0/arch/arm/mach-w90x900/include/mach/timex.h -59211f7a44b31660392b1b4bb7da7828 linux-3.0/arch/arm/mach-w90x900/include/mach/system.h -01648be2b1bc668c088d3f134f971702 linux-3.0/arch/arm/mach-w90x900/include/mach/regs-usb.h -13ac11c11fae535d008609dbd0d87bad linux-3.0/arch/arm/mach-w90x900/include/mach/regs-timer.h -4e1f9b746bbb410d9d3a49971ffc218c linux-3.0/arch/arm/mach-w90x900/include/mach/regs-serial.h -cae1c7b12648973772e51743ce827b34 linux-3.0/arch/arm/mach-w90x900/include/mach/regs-ldm.h -510feb78004fb05260e1c189fbc74009 linux-3.0/arch/arm/mach-w90x900/include/mach/regs-irq.h -740736d5191f3a814bace7013588442e linux-3.0/arch/arm/mach-w90x900/include/mach/regs-gcr.h -a8f5a8af07bd7738037fc25e145b30fe linux-3.0/arch/arm/mach-w90x900/include/mach/regs-ebi.h -77008d7f18da708027fa71a4e9d91c78 linux-3.0/arch/arm/mach-w90x900/include/mach/regs-clock.h -a3f42bac00a3c36f4575ff97b55aaa34 linux-3.0/arch/arm/mach-w90x900/include/mach/nuc900_spi.h -6250944ca37a64a361f7da7ddca3310c linux-3.0/arch/arm/mach-w90x900/include/mach/mfp.h -c942a0c63175665de14d7da6dc19388a linux-3.0/arch/arm/mach-w90x900/include/mach/memory.h -198ccccb8062b8d3dafb0f16fcb8b010 linux-3.0/arch/arm/mach-w90x900/include/mach/map.h -3afe4f5614658b2a6d7e8ebf03a40b1e linux-3.0/arch/arm/mach-w90x900/include/mach/irqs.h -d38c14e3eb40f1bc0d2ecd318cad00b3 linux-3.0/arch/arm/mach-w90x900/include/mach/io.h -8f5b7b701010003685b6a1f1b1259d66 linux-3.0/arch/arm/mach-w90x900/include/mach/i2c.h -c6813edd796f09aef53ac7e76760d0e6 linux-3.0/arch/arm/mach-w90x900/include/mach/hardware.h -cc1bd6e54da5760349008820f7e371b2 linux-3.0/arch/arm/mach-w90x900/include/mach/gpio.h -73b1d2ffd30a8cea188465516ca28995 linux-3.0/arch/arm/mach-w90x900/include/mach/fb.h -45ef2cbd9914b80b85ce0747fe10f1a9 linux-3.0/arch/arm/mach-w90x900/include/mach/entry-macro.S -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/mach-w90x900/include/mach/clkdev.h -6eac11af862f448e10cec8b9bb6bfea0 linux-3.0/arch/arm/mach-w90x900/gpio.c -1d5e10f9c5d6d455adbd4abda232fe78 linux-3.0/arch/arm/mach-w90x900/dev.c -87a459cf79fb171cd364fa285c38fad4 linux-3.0/arch/arm/mach-w90x900/cpu.h -b68ae8414c91a9a349476a2ba5477d01 linux-3.0/arch/arm/mach-w90x900/cpu.c -f4fb24885207460c4a13419a3a717a3f linux-3.0/arch/arm/mach-w90x900/clock.h -0322bec0e65423cfdcb3ad4943a06bd8 linux-3.0/arch/arm/mach-w90x900/clock.c -57cb5172fde518f750bb0710132daa8c linux-3.0/arch/arm/mach-w90x900/clksel.c -6148b2c85289e0172c60a6c97e839399 linux-3.0/arch/arm/mach-w90x900/Makefile.boot -eb6f3a8560b5d09aee9551585ff40d2e linux-3.0/arch/arm/mach-w90x900/Makefile -0eb658f7c7c5887f6dd0c522ecff4074 linux-3.0/arch/arm/mach-w90x900/Kconfig -bfb71d33067dedba9682a743d3c45282 linux-3.0/arch/arm/mach-vt8500/wm8505_7in.c -4cbe970d57481d009827ce6e19ec911e linux-3.0/arch/arm/mach-vt8500/timer.c -aa9d98319701e5a412c8b7b60f6761d0 linux-3.0/arch/arm/mach-vt8500/pwm.c -2533dcb762bdb9547b29145dd5d6b378 linux-3.0/arch/arm/mach-vt8500/irq.c -ed0f5427b1291fbd30772d1c47bd2c93 linux-3.0/arch/arm/mach-vt8500/include/mach/wm8505_regs.h -3fa06531ac4126f4006d2c9683f4f2cf linux-3.0/arch/arm/mach-vt8500/include/mach/wm8505_irqs.h -ccaf3c24bef15ea2b8b888d1d9799126 linux-3.0/arch/arm/mach-vt8500/include/mach/vt8500fb.h -a91d7328c941296a7e96f8e5a9635536 linux-3.0/arch/arm/mach-vt8500/include/mach/vt8500_regs.h -739eb94f302ed6c6eb6a8d54758e2547 linux-3.0/arch/arm/mach-vt8500/include/mach/vt8500_irqs.h -6fade038da8e3dd26399bea3d9b9a997 linux-3.0/arch/arm/mach-vt8500/include/mach/vmalloc.h -f255e468637864011362dd4e6ed1f4e0 linux-3.0/arch/arm/mach-vt8500/include/mach/uncompress.h -d1104648edf1378505c1645764bcc573 linux-3.0/arch/arm/mach-vt8500/include/mach/timex.h -4e427ea8a054d4a736af6509f9da10e4 linux-3.0/arch/arm/mach-vt8500/include/mach/system.h -0a4ed4fbb649f4f88f83c2418dad98ba linux-3.0/arch/arm/mach-vt8500/include/mach/memory.h -ea45d234e92166cc113dd4c590ab17d6 linux-3.0/arch/arm/mach-vt8500/include/mach/irqs.h -3b487682fd99165fa319843360903c1e linux-3.0/arch/arm/mach-vt8500/include/mach/io.h -a23054d34d36af984266cdfd6f6e4500 linux-3.0/arch/arm/mach-vt8500/include/mach/i8042.h -789c777fde5fd8e0b66e791b41d00aac linux-3.0/arch/arm/mach-vt8500/include/mach/hardware.h -20662171cc9f604f85a3c9f6a21b4556 linux-3.0/arch/arm/mach-vt8500/include/mach/gpio.h -7d778a590f5318e4b023c85770d21cb7 linux-3.0/arch/arm/mach-vt8500/include/mach/entry-macro.S -68b3ff1488107d50acc6fa0221a6b144 linux-3.0/arch/arm/mach-vt8500/include/mach/debug-macro.S -56652cc8478fe1a3ac5bd682c69e692b linux-3.0/arch/arm/mach-vt8500/gpio.c -4fc41dae065ccb0f69c72d1c90787554 linux-3.0/arch/arm/mach-vt8500/devices.h -e8d184b5edb179f59a0db85bdcf016f4 linux-3.0/arch/arm/mach-vt8500/devices.c -6e3a92be981d931930844285fe8726be linux-3.0/arch/arm/mach-vt8500/devices-wm8505.c -4814ca08b2f0ad596adece7f9e3a78b4 linux-3.0/arch/arm/mach-vt8500/devices-vt8500.c -57dbf00d7f0858b49a271f2abca42293 linux-3.0/arch/arm/mach-vt8500/bv07.c -9b6613a314b07e7df774ec13872965b0 linux-3.0/arch/arm/mach-vt8500/Makefile.boot -2233b8da46f50f04f564a18faaaae357 linux-3.0/arch/arm/mach-vt8500/Makefile -0a497d3b58df5e3ef0761389412d157c linux-3.0/arch/arm/mach-vt8500/Kconfig -e8ce1c2390ffef7041ae22c57c5d0f10 linux-3.0/arch/arm/mach-vexpress/v2m.c -0b837e52bfb64484ec0aabfa3d219165 linux-3.0/arch/arm/mach-vexpress/platsmp.c -c10945d27aac4cb319ae6876d4378893 linux-3.0/arch/arm/mach-vexpress/include/mach/vmalloc.h -f542775415a35a9e7d147cdbea07bf31 linux-3.0/arch/arm/mach-vexpress/include/mach/uncompress.h -03ec91f7feefbd7fb6f5536a364382dc linux-3.0/arch/arm/mach-vexpress/include/mach/timex.h -0e1f851c8d0378c3a23ba657b5682da3 linux-3.0/arch/arm/mach-vexpress/include/mach/system.h -b156b70bc71076e2e8d908d3c2b4eb55 linux-3.0/arch/arm/mach-vexpress/include/mach/motherboard.h -ce9caa5a39120ed6c69ef39fdd02bcdf linux-3.0/arch/arm/mach-vexpress/include/mach/memory.h -1e09a558dcee0b6bd682511300331787 linux-3.0/arch/arm/mach-vexpress/include/mach/irqs.h -a28cda3dfb3806e5d0ffc4ddc3df8d92 linux-3.0/arch/arm/mach-vexpress/include/mach/io.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/arm/mach-vexpress/include/mach/hardware.h -5d815ecb8f31b9e226e44753884f94d3 linux-3.0/arch/arm/mach-vexpress/include/mach/entry-macro.S -b57428bf747ef8cdcc14cc68607a2988 linux-3.0/arch/arm/mach-vexpress/include/mach/debug-macro.S -c3b56758791220b598c769c3878c2748 linux-3.0/arch/arm/mach-vexpress/include/mach/ct-ca9x4.h -a47d9bcd878cfbc9b4afd33849637745 linux-3.0/arch/arm/mach-vexpress/include/mach/clkdev.h -10178a61015dfeb54fca88c78749708f linux-3.0/arch/arm/mach-vexpress/hotplug.c -d23aa74ffc576d0116e2fcb1b383b9c3 linux-3.0/arch/arm/mach-vexpress/ct-ca9x4.c -fbe31421bcdf913c9b16b35e7ba68146 linux-3.0/arch/arm/mach-vexpress/core.h -16619fe949f9433df33ecc45ba0f64c6 linux-3.0/arch/arm/mach-vexpress/Makefile.boot -efc05dcb6ab18e3cd43379d1ec8dd5ad linux-3.0/arch/arm/mach-vexpress/Makefile -259142a6a6e4c0d5be1e89eaf2c244c4 linux-3.0/arch/arm/mach-vexpress/Kconfig -c1b8fe633ea63d391972bea2b4d54367 linux-3.0/arch/arm/mach-versatile/versatile_pb.c -61fee3f20ca621d7aabba3b0f46c93af linux-3.0/arch/arm/mach-versatile/versatile_ab.c -a17d60cae1726b008e14733660f76fdd linux-3.0/arch/arm/mach-versatile/pci.c -1801143f4c2d9b415985467cf439e4c7 linux-3.0/arch/arm/mach-versatile/include/mach/vmalloc.h -aaed8584b2d49e1de6842a7c7d30530d linux-3.0/arch/arm/mach-versatile/include/mach/uncompress.h -883f53b7829eb8536cc312f61770e641 linux-3.0/arch/arm/mach-versatile/include/mach/timex.h -b3f6e778da70c9e122a74226afe51220 linux-3.0/arch/arm/mach-versatile/include/mach/system.h -b56698d0167944201e88dba3ec737c09 linux-3.0/arch/arm/mach-versatile/include/mach/platform.h -3c2a8428b9e294d9f209c0d2b6301c72 linux-3.0/arch/arm/mach-versatile/include/mach/memory.h -2432f684197c732d38fe60ae5bebc238 linux-3.0/arch/arm/mach-versatile/include/mach/irqs.h -6db81dfa9b58d646ffb76d1603ae1ea9 linux-3.0/arch/arm/mach-versatile/include/mach/io.h -0fc1a16fdd599fe95bb7f6ea7f7fb6a7 linux-3.0/arch/arm/mach-versatile/include/mach/hardware.h -20662171cc9f604f85a3c9f6a21b4556 linux-3.0/arch/arm/mach-versatile/include/mach/gpio.h -a686a18a351cfec49e3b57017c5f12e4 linux-3.0/arch/arm/mach-versatile/include/mach/entry-macro.S -9abb3bf83b88d36673382a3e4e399189 linux-3.0/arch/arm/mach-versatile/include/mach/debug-macro.S -753b322c584c0918e53ce74729f576bf linux-3.0/arch/arm/mach-versatile/include/mach/clkdev.h -a784f87ff19f25fdd6bb180a2f44fd07 linux-3.0/arch/arm/mach-versatile/core.h -bcde2701eb8742cebd8e6d70a47418df linux-3.0/arch/arm/mach-versatile/core.c -1fd7c57a4f7d267776c24c8f4024ec14 linux-3.0/arch/arm/mach-versatile/Makefile.boot -82deaa3ace19eb3881b1dc70da2c4833 linux-3.0/arch/arm/mach-versatile/Makefile -3830a2bf2ad7133817b446e920abdaec linux-3.0/arch/arm/mach-versatile/Kconfig -e9f01dfbd0e9bb854151e1ce92203327 linux-3.0/arch/arm/mach-ux500/usb.c -4a1f6caede2bba460ebd58f029376ef6 linux-3.0/arch/arm/mach-ux500/ste-dma40-db8500.h -134843f224c57506c3a48e0003ba8b3e linux-3.0/arch/arm/mach-ux500/ste-dma40-db5500.h -f1367970e067fa3eb3094d7f084005e3 linux-3.0/arch/arm/mach-ux500/platsmp.c -b4333329f9a09eb88564dc0698468eaa linux-3.0/arch/arm/mach-ux500/pins-db8500.h -0562f46f494bb31b6356f2596b48004f linux-3.0/arch/arm/mach-ux500/pins-db5500.h -79644f910894941c5f4ebaf508cd35a2 linux-3.0/arch/arm/mach-ux500/modem-irq-db5500.c -2107694d32806d5c297fab275bf9774a linux-3.0/arch/arm/mach-ux500/mbox-db5500.c -33fed03cd386168a3e732a7af770ed8f linux-3.0/arch/arm/mach-ux500/localtimer.c -9c8c4732e1f1b5b31ae399dba6102df3 linux-3.0/arch/arm/mach-ux500/include/mach/vmalloc.h -18cc57c7246e580aa79f1c14cf1dfc83 linux-3.0/arch/arm/mach-ux500/include/mach/usb.h -5c471c3d75b95c85288cd95381171367 linux-3.0/arch/arm/mach-ux500/include/mach/uncompress.h -3938e152af153ae3010065e412303b17 linux-3.0/arch/arm/mach-ux500/include/mach/timex.h -c347f993c97f856c2766d0de0dc153a0 linux-3.0/arch/arm/mach-ux500/include/mach/system.h -1e1194357fabbec7be3e02dede54d494 linux-3.0/arch/arm/mach-ux500/include/mach/setup.h -c897e44fdf009a4511899b980b5935c4 linux-3.0/arch/arm/mach-ux500/include/mach/memory.h -476ba631b8a3c8bcaf3b5e0cc3cbe747 linux-3.0/arch/arm/mach-ux500/include/mach/mbox-db5500.h -349dd0128ebe94e1392ad69715b9138b linux-3.0/arch/arm/mach-ux500/include/mach/irqs.h -002352066ca8675dbc20ce309c661079 linux-3.0/arch/arm/mach-ux500/include/mach/irqs-db8500.h -808bb2a75fc6724862ac8e66fcc410b2 linux-3.0/arch/arm/mach-ux500/include/mach/irqs-db5500.h -98873eed98c31e528fffc8090c91eb97 linux-3.0/arch/arm/mach-ux500/include/mach/irqs-board-u5500.h -537528fce3c4c9b94481fb5fa84946c7 linux-3.0/arch/arm/mach-ux500/include/mach/irqs-board-mop500.h -e2dc7869547c1e1acfaf49d0fb6e12a4 linux-3.0/arch/arm/mach-ux500/include/mach/io.h -6233b014b4393ce0911335a4c69fc4ae linux-3.0/arch/arm/mach-ux500/include/mach/id.h -81256dfee82974c052628f01d49b3120 linux-3.0/arch/arm/mach-ux500/include/mach/hardware.h -100e5fd55968e727b0cbfbfb455889a2 linux-3.0/arch/arm/mach-ux500/include/mach/gpio.h -c47fad91cb179f1d84e96f5680061eb8 linux-3.0/arch/arm/mach-ux500/include/mach/entry-macro.S -9070b87991d70dfcd5c8b38dba7b739c linux-3.0/arch/arm/mach-ux500/include/mach/devices.h -0c3eb749a24a8240ce202a0ddbed2ac2 linux-3.0/arch/arm/mach-ux500/include/mach/debug-macro.S -446d974db9b19c682af65e7e9cc6f5cc linux-3.0/arch/arm/mach-ux500/include/mach/db8500-regs.h -9d030b91b4e058c7d2096b5e8a9ed703 linux-3.0/arch/arm/mach-ux500/include/mach/db5500-regs.h -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/mach-ux500/include/mach/clkdev.h -098da880b09ec5267e2ee5643a905874 linux-3.0/arch/arm/mach-ux500/id.c -d9675f7395ce4995d9e754bf67f5808b linux-3.0/arch/arm/mach-ux500/hotplug.c -9781fdd236e5d4e51ea439f715540d24 linux-3.0/arch/arm/mach-ux500/headsmp.S -516a962d5c71560b9b585d841e8cf883 linux-3.0/arch/arm/mach-ux500/dma-db5500.c -68c34c0caba45bbeb5637c2604f2ce87 linux-3.0/arch/arm/mach-ux500/devices.c -6e49a0e2ed4642af7df0fde79e553718 linux-3.0/arch/arm/mach-ux500/devices-db8500.h -0ea1d9b0bbcff63e039aad5e5c46b794 linux-3.0/arch/arm/mach-ux500/devices-db8500.c -05422bfa10cd415c06fd4b88d0a15d14 linux-3.0/arch/arm/mach-ux500/devices-db5500.h -1f42c8ed7a86b5e03896b54b45ca5023 linux-3.0/arch/arm/mach-ux500/devices-common.h -189bdbee23f5a4f71972d6b45f44d4a6 linux-3.0/arch/arm/mach-ux500/devices-common.c -c3df4051a68c84ce56429b999053028e linux-3.0/arch/arm/mach-ux500/cpu.c -71448603b5df020ab9a742009c0c2e12 linux-3.0/arch/arm/mach-ux500/cpu-db8500.c -a6b04fe831d6231e474b1730b1839456 linux-3.0/arch/arm/mach-ux500/cpu-db5500.c -ba7031cd3a947e0b7b6f0a0380cb8600 linux-3.0/arch/arm/mach-ux500/clock.h -ff2c69d475b9f22f9bb8b9e5ec4bdcce linux-3.0/arch/arm/mach-ux500/clock.c -d9cca4170bd32d99c0747751e45051a9 linux-3.0/arch/arm/mach-ux500/board-u5500.c -43e3fa1a0527b3a8ef0dc59a8401f02c linux-3.0/arch/arm/mach-ux500/board-u5500-sdi.c -e31875dd4614144b04bbd8f29005f69a linux-3.0/arch/arm/mach-ux500/board-mop500.h -5dba1e472baf449776e7231a7eb846c9 linux-3.0/arch/arm/mach-ux500/board-mop500.c -af8e986b43a74c3c9fdb042d723f183f linux-3.0/arch/arm/mach-ux500/board-mop500-uib.c -46aa01b75bd2ca978f58f29c35b63aa5 linux-3.0/arch/arm/mach-ux500/board-mop500-u8500uib.c -3baa19bf0665f3ec382781c862b3d0ac linux-3.0/arch/arm/mach-ux500/board-mop500-stuib.c -d87503b42a8193280f6a09caa9619b0e linux-3.0/arch/arm/mach-ux500/board-mop500-sdi.c -68795e3c864a94c75a14a05935085ff1 linux-3.0/arch/arm/mach-ux500/board-mop500-regulators.h -891a1a6f4c9b7eeb13abb26a4a94375e linux-3.0/arch/arm/mach-ux500/board-mop500-regulators.c -13da21910b97b6496c1dc0635e1a0fdb linux-3.0/arch/arm/mach-ux500/board-mop500-pins.c -1fd7c57a4f7d267776c24c8f4024ec14 linux-3.0/arch/arm/mach-ux500/Makefile.boot -66b7e7fb82a831ff286393de4b32b666 linux-3.0/arch/arm/mach-ux500/Makefile -509eb5ebecc84e8317258f405b77ca7b linux-3.0/arch/arm/mach-ux500/Kconfig -8a4688c370361b6e24904ab8053f3383 linux-3.0/arch/arm/mach-u300/u300.c -d0dbe9881b3ebf12a53401cd94b1865e linux-3.0/arch/arm/mach-u300/timer.c -48d7fc4da83c5e19d9d9bf7edf02b225 linux-3.0/arch/arm/mach-u300/spi.h -764027d204822991c49043b5fd0a015c linux-3.0/arch/arm/mach-u300/spi.c -dfcde97b136603ec17398b68ce4e22ff linux-3.0/arch/arm/mach-u300/regulator.c -af4f2ab04574db53f3c5457c02c34332 linux-3.0/arch/arm/mach-u300/padmux.h -4ec01145969ee5f7959dec6b9d86034a linux-3.0/arch/arm/mach-u300/padmux.c -f6b63aa435d443af32495d9e31f7c064 linux-3.0/arch/arm/mach-u300/mmc.h -6e648fc9549a38dbfd5afc8134d0aa1f linux-3.0/arch/arm/mach-u300/mmc.c -156382e5be4e68acc66f70b9a869fd74 linux-3.0/arch/arm/mach-u300/include/mach/vmalloc.h -6962ed4cc70e467c3817d44fcb4950c0 linux-3.0/arch/arm/mach-u300/include/mach/uncompress.h -7fa88b2d7fd4d6e68991b51bcac469e7 linux-3.0/arch/arm/mach-u300/include/mach/u300-regs.h -9c2734a02550a935dfa768e6075cd608 linux-3.0/arch/arm/mach-u300/include/mach/timex.h -58c12365006a04e7af7b6e711682f7c1 linux-3.0/arch/arm/mach-u300/include/mach/system.h -ae21fce8f293db0c9fa2464004f0e9f0 linux-3.0/arch/arm/mach-u300/include/mach/syscon.h -8af304d87a0e1b13523b711a69e4dbe3 linux-3.0/arch/arm/mach-u300/include/mach/platform.h -0adda9420aa2088927a708655dbf69d1 linux-3.0/arch/arm/mach-u300/include/mach/memory.h -a034a851aa481aa303cf81170e7684b7 linux-3.0/arch/arm/mach-u300/include/mach/irqs.h -2c8aaf226c8369788d9ff15349fc15d7 linux-3.0/arch/arm/mach-u300/include/mach/io.h -a8d711e15f2420e62777181567b95c45 linux-3.0/arch/arm/mach-u300/include/mach/hardware.h -4d22b5c49679abe56851f6699deb405b linux-3.0/arch/arm/mach-u300/include/mach/gpio.h -607192c712f53b36688dee676410cded linux-3.0/arch/arm/mach-u300/include/mach/entry-macro.S -bbfe7df74b4161e48ae8d03da5f9582c linux-3.0/arch/arm/mach-u300/include/mach/dma_channels.h -e7384587873efa7e10b6cd1aedbdf2a1 linux-3.0/arch/arm/mach-u300/include/mach/debug-macro.S -96b3ca8e0c681d6f1fdf4605c5f275b0 linux-3.0/arch/arm/mach-u300/include/mach/coh901318.h -875f8cb9878ddbc0bd686d411611294d linux-3.0/arch/arm/mach-u300/include/mach/clkdev.h -dd8520ebeb5a906b93299e9425f061a7 linux-3.0/arch/arm/mach-u300/i2c.h -85b7e01e6ebffed09900ab0ecd0f7884 linux-3.0/arch/arm/mach-u300/i2c.c -7321a21053c5195514135824c1fe314f linux-3.0/arch/arm/mach-u300/dummyspichip.c -e897569a6790f9487d68f4ba03b11429 linux-3.0/arch/arm/mach-u300/core.c -e1a522b504b57c6f2c628189e7772a49 linux-3.0/arch/arm/mach-u300/clock.h -9b6fd5030c72c3416277aa3c78e20899 linux-3.0/arch/arm/mach-u300/clock.c -0deb9a94746d9e2e073dae654a076721 linux-3.0/arch/arm/mach-u300/Makefile.boot -442d92f861afd9fbdc2e9f0a12f67dcb linux-3.0/arch/arm/mach-u300/Makefile -c732504ee3e4c4c09642b19f30f51a8b linux-3.0/arch/arm/mach-u300/Kconfig -4011d47562d4dba35de5abcf7f78e89d linux-3.0/arch/arm/mach-tegra/usb_phy.c -5103fe5f4353dfc6e2082efb237eb17d linux-3.0/arch/arm/mach-tegra/timer.c -e5009f3e08d5ef5c061fd20537af8b36 linux-3.0/arch/arm/mach-tegra/tegra2_emc.h -8dd750b060cc868c5568c81b2cb9d970 linux-3.0/arch/arm/mach-tegra/tegra2_emc.c -3f73cc20c6cfb207a19b7b2b4b09fcd3 linux-3.0/arch/arm/mach-tegra/tegra2_clocks.c -51e100d418944e65830042da72ff6554 linux-3.0/arch/arm/mach-tegra/powergate.c -29fe846069c93b5735f0b1049da99a13 linux-3.0/arch/arm/mach-tegra/platsmp.c -5f5b3481732cd50e20439464a140e673 linux-3.0/arch/arm/mach-tegra/pinmux.c -f32950d7ed20f3e6da4dad82bec82f29 linux-3.0/arch/arm/mach-tegra/pinmux-t2-tables.c -0ea3d2a4ccd15ffda5a590ec6d86daa2 linux-3.0/arch/arm/mach-tegra/pcie.c -4a2a52a7aee75cd4b3c01812d1900a89 linux-3.0/arch/arm/mach-tegra/localtimer.c -c5a03164088a602a4205efa25f240a99 linux-3.0/arch/arm/mach-tegra/irq.c -5a12927dc432c157e13ec367afffbf21 linux-3.0/arch/arm/mach-tegra/io.c -b7318b7da8562f802c413885746422b0 linux-3.0/arch/arm/mach-tegra/include/mach/vmalloc.h -2788870f8387a7049d910c2a9d1cf804 linux-3.0/arch/arm/mach-tegra/include/mach/usb_phy.h -c2dd35ca947c23cd325ef3cae42a3cf7 linux-3.0/arch/arm/mach-tegra/include/mach/uncompress.h -0ea9a8b57fddb4e76f564c7c7b6fdff9 linux-3.0/arch/arm/mach-tegra/include/mach/timex.h -7926c99810b97d616d51b3d8b5e2095f linux-3.0/arch/arm/mach-tegra/include/mach/tegra_wm8903_pdata.h -7e2ac42cc3d022415f619fb8b4695182 linux-3.0/arch/arm/mach-tegra/include/mach/system.h -9f5439456a23f661b00811f56ca47f34 linux-3.0/arch/arm/mach-tegra/include/mach/suspend.h -36133cfbe87c2952ff9e1cbec2b144e8 linux-3.0/arch/arm/mach-tegra/include/mach/sdhci.h -7941ec17d0ca42c55cfef0e76493b237 linux-3.0/arch/arm/mach-tegra/include/mach/powergate.h -dcae36086d908b555e65cfe3529e8df7 linux-3.0/arch/arm/mach-tegra/include/mach/pinmux.h -f577699e089a320be60ebd5128f46f28 linux-3.0/arch/arm/mach-tegra/include/mach/pinmux-t2.h -b531cb1f5bbc0b387c0d3cf210e93a48 linux-3.0/arch/arm/mach-tegra/include/mach/memory.h -c9e46397b4123a550feeb63788c6ec06 linux-3.0/arch/arm/mach-tegra/include/mach/kbc.h -eb038a9ead968a39b97efd779a63c6fd linux-3.0/arch/arm/mach-tegra/include/mach/irqs.h -86a8c244caf3e83c59581a4edca9cf02 linux-3.0/arch/arm/mach-tegra/include/mach/iomap.h -cb9dc590b17954b14bef9366a9f35bd8 linux-3.0/arch/arm/mach-tegra/include/mach/io.h -1b748fced567c1324c3c31dd1d916c50 linux-3.0/arch/arm/mach-tegra/include/mach/hardware.h -c24bd809acb7c72e23531f3e7df5d6d5 linux-3.0/arch/arm/mach-tegra/include/mach/gpio.h -0a37c94fb57bfa66bcb70291b41047f3 linux-3.0/arch/arm/mach-tegra/include/mach/entry-macro.S -00109b9c0460cea5586b72e0a5ed8ba2 linux-3.0/arch/arm/mach-tegra/include/mach/dma.h -139ec7065dd6d31bfbb044f1a524c775 linux-3.0/arch/arm/mach-tegra/include/mach/debug-macro.S -f55c5a6af4e5ef8043f0f09e6c148a9f linux-3.0/arch/arm/mach-tegra/include/mach/clkdev.h -94f20c48be572f83507da93e444bb999 linux-3.0/arch/arm/mach-tegra/include/mach/clk.h -9c2b831e0013a362b2851946dda0df93 linux-3.0/arch/arm/mach-tegra/include/mach/barriers.h -9c74835ab00180543eb21387d15abf12 linux-3.0/arch/arm/mach-tegra/hotplug.c -9f274198ea0b0b442692cdee8b1cf8b5 linux-3.0/arch/arm/mach-tegra/headsmp.S -20f4a417c9825ab2d140b4a27fb66ecd linux-3.0/arch/arm/mach-tegra/gpio.c -9b5c7e32c4aa16a037200c56c41a0fe6 linux-3.0/arch/arm/mach-tegra/gpio-names.h -0d7d95f684b6333bd53afcf895f1c22b linux-3.0/arch/arm/mach-tegra/fuse.h -9453dcba191d4ed13b0f50b4c365694c linux-3.0/arch/arm/mach-tegra/fuse.c -9233750c9310bc76cc4a85f844d536c3 linux-3.0/arch/arm/mach-tegra/dma.c -7bdceedb75f0c8ea99da1b4c5afffa47 linux-3.0/arch/arm/mach-tegra/devices.h -f437239f022b9a5eb54c4ddb509dc40e linux-3.0/arch/arm/mach-tegra/devices.c -0b32e73e1381b200b43b70ee6a5ba4c0 linux-3.0/arch/arm/mach-tegra/cpu-tegra.c -f6c893d6ea1ff609ce284dbf9f840833 linux-3.0/arch/arm/mach-tegra/common.c -64ef6e9e7cb6b203651b6dc902dc6be0 linux-3.0/arch/arm/mach-tegra/clock.h -35c826aadfcdaf9f9720e6b426483a70 linux-3.0/arch/arm/mach-tegra/clock.c -da489c07d6f3c0f4c56207390253ea16 linux-3.0/arch/arm/mach-tegra/board.h -c86d9d7fc217b136857ac0b21fb28133 linux-3.0/arch/arm/mach-tegra/board-trimslice.h -fe503d72639f585cddfcaef68952ee77 linux-3.0/arch/arm/mach-tegra/board-trimslice.c -7f2569ea604ef76bb56524eba65a3952 linux-3.0/arch/arm/mach-tegra/board-trimslice-pinmux.c -3c82548235b8c82519b549085e69d697 linux-3.0/arch/arm/mach-tegra/board-seaboard.h -69d983c978fcf56ca13e9c505bee782c linux-3.0/arch/arm/mach-tegra/board-seaboard.c -f1af79cc58445ca48d63c4ae48b83200 linux-3.0/arch/arm/mach-tegra/board-seaboard-pinmux.c -2206d3ca84a2e1d045cb15424f55bd9e linux-3.0/arch/arm/mach-tegra/board-paz00.h -a1029a5850fa126915b7595e268f8871 linux-3.0/arch/arm/mach-tegra/board-paz00.c -0b04823da470edff8bbdeae23e9267c7 linux-3.0/arch/arm/mach-tegra/board-paz00-pinmux.c -29e393c6ac24ee9b5f274676f1472696 linux-3.0/arch/arm/mach-tegra/board-harmony.h -7b855baf40528e68956acd977146fad9 linux-3.0/arch/arm/mach-tegra/board-harmony.c -72fe1c36e80cd7c2a6f87c895633977d linux-3.0/arch/arm/mach-tegra/board-harmony-power.c -d55a4992acebd78e124f77281e6bb55a linux-3.0/arch/arm/mach-tegra/board-harmony-pinmux.c -0be7b229197e7c25d205fc279647d4d7 linux-3.0/arch/arm/mach-tegra/board-harmony-pcie.c -0b7ec10013d77c76d3a9b0b8a6f4f1cd linux-3.0/arch/arm/mach-tegra/Makefile.boot -647359a3e5ecd17dc322fff2e08b0a70 linux-3.0/arch/arm/mach-tegra/Makefile -424af88d31de61941a4c449b4b079f3e linux-3.0/arch/arm/mach-tegra/Kconfig -977a1aed7cdb2c314a699af7ea8e624a linux-3.0/arch/arm/mach-tcc8k/time.c -e171ff836a883d96af13b78254d88d96 linux-3.0/arch/arm/mach-tcc8k/irq.c -e0be88e082a8e7c4b7846ef4fdf818f6 linux-3.0/arch/arm/mach-tcc8k/io.c -fea7b37773539a89343c004f667cbe6a linux-3.0/arch/arm/mach-tcc8k/devices.c -67f5ee93f07bdf7a8dc064021da7f9e7 linux-3.0/arch/arm/mach-tcc8k/common.h -a82333ed7d4ad50cb024cc3fefda116e linux-3.0/arch/arm/mach-tcc8k/clock.c -984911093bdedc2a44fbcb1a5b10fcf7 linux-3.0/arch/arm/mach-tcc8k/board-tcc8000-sdk.c -e91a9de96310f2f0407a95fb6efdd6d6 linux-3.0/arch/arm/mach-tcc8k/Makefile.boot -9cf07c86e40b386f78d31eb8ec6ae461 linux-3.0/arch/arm/mach-tcc8k/Makefile -092ee978c680dcc759e3bf7c2b30356e linux-3.0/arch/arm/mach-tcc8k/Kconfig -5e600511b6c6a8a6f63b8256fa39c8c4 linux-3.0/arch/arm/mach-spear6xx/spear6xx.c -5c1110aafd8e98b7ea493a2363db9f69 linux-3.0/arch/arm/mach-spear6xx/spear600_evb.c -d9769cf445a4f0d93425c2fb5b4cbdf7 linux-3.0/arch/arm/mach-spear6xx/spear600.c -8606d9a6ee951d1eefe98f9342c4e6a2 linux-3.0/arch/arm/mach-spear6xx/include/mach/vmalloc.h -13030b7e40233028d276f895df51a9e1 linux-3.0/arch/arm/mach-spear6xx/include/mach/uncompress.h -af21157fbdf434f3e28284019279a7df linux-3.0/arch/arm/mach-spear6xx/include/mach/timex.h -0dbc1ce5d2b81225f54c0088b9754111 linux-3.0/arch/arm/mach-spear6xx/include/mach/system.h -69d60289304580965fdcd439c20a7211 linux-3.0/arch/arm/mach-spear6xx/include/mach/spear600.h -739b6b569312bac7536f6cab05e8ac1a linux-3.0/arch/arm/mach-spear6xx/include/mach/spear.h -062203bf772b878ef81858538a0246e5 linux-3.0/arch/arm/mach-spear6xx/include/mach/misc_regs.h -0057f2753411ef6dcfca3051b6601273 linux-3.0/arch/arm/mach-spear6xx/include/mach/memory.h -7c274d5a66815742eb871390fe039ed4 linux-3.0/arch/arm/mach-spear6xx/include/mach/irqs.h -07035dc0492c81d9fb376e446a4e3f2b linux-3.0/arch/arm/mach-spear6xx/include/mach/io.h -d775109032dc1979bc9ead10940be853 linux-3.0/arch/arm/mach-spear6xx/include/mach/hardware.h -c3a33b2c91c7d236b7d49f6460d35330 linux-3.0/arch/arm/mach-spear6xx/include/mach/gpio.h -a2be72c6ba38603f23e886c614bf1444 linux-3.0/arch/arm/mach-spear6xx/include/mach/generic.h -b1686ada37b1c2ed8a33dc4e3c3fce70 linux-3.0/arch/arm/mach-spear6xx/include/mach/entry-macro.S -e234ad7541858d8122cf3c2e7bb0a1ea linux-3.0/arch/arm/mach-spear6xx/include/mach/debug-macro.S -67b063678a0a89264d32df454bc187e5 linux-3.0/arch/arm/mach-spear6xx/include/mach/clkdev.h -b6631df915565e582b19ab4817577d33 linux-3.0/arch/arm/mach-spear6xx/clock.c -5b394c47c9724ce542c3153a42dfba9c linux-3.0/arch/arm/mach-spear6xx/Makefile.boot -9d0670ff82ef873cffe5aba250d00fb3 linux-3.0/arch/arm/mach-spear6xx/Makefile -3bd5508d5f098d8bf9143a6e05bac3bd linux-3.0/arch/arm/mach-spear6xx/Kconfig -a1e8eaf1a99c479b416183b1d07fcdfa linux-3.0/arch/arm/mach-spear3xx/spear3xx.c -182b6a5f1e6e4c6be76e82596e51dd4a linux-3.0/arch/arm/mach-spear3xx/spear320_evb.c -85ed6f1f2529511d8cdedb9ac8b4b005 linux-3.0/arch/arm/mach-spear3xx/spear320.c -0a0ecc43a03ac0f5ff52d0524dd90f6a linux-3.0/arch/arm/mach-spear3xx/spear310_evb.c -33ce01db57a0cce8e17c1674fd12e98d linux-3.0/arch/arm/mach-spear3xx/spear310.c -847143f79b37e666966d72f44fefca86 linux-3.0/arch/arm/mach-spear3xx/spear300_evb.c -f72a931cbd150f217d7621d2f23ca13a linux-3.0/arch/arm/mach-spear3xx/spear300.c -d7f62c70dc3d28d2daf87a3112cc634e linux-3.0/arch/arm/mach-spear3xx/include/mach/vmalloc.h -a4eb363c7dd38ba9559958aa365ac27c linux-3.0/arch/arm/mach-spear3xx/include/mach/uncompress.h -0029da9811aa0cf13d36a80ecf7019d9 linux-3.0/arch/arm/mach-spear3xx/include/mach/timex.h -ef8054af392211dd1d10ca1fed820b67 linux-3.0/arch/arm/mach-spear3xx/include/mach/system.h -3929703bd38e7440097455c634703857 linux-3.0/arch/arm/mach-spear3xx/include/mach/spear320.h -0f09aa49de7476a0105d107f2323b206 linux-3.0/arch/arm/mach-spear3xx/include/mach/spear310.h -30c66e09b049ed2998dd2d8db6d3e1ef linux-3.0/arch/arm/mach-spear3xx/include/mach/spear300.h -b2e3070f7100a7e51095b2b341565244 linux-3.0/arch/arm/mach-spear3xx/include/mach/spear.h -2ad91954e7b79023b69a3541d51899b4 linux-3.0/arch/arm/mach-spear3xx/include/mach/misc_regs.h -29acded59b117bcb424fa99adabe9b71 linux-3.0/arch/arm/mach-spear3xx/include/mach/memory.h -8eb06e174d4b9767019d4eeccab0b9ac linux-3.0/arch/arm/mach-spear3xx/include/mach/irqs.h -f5e8088df4f8facd1b0e4da142f62216 linux-3.0/arch/arm/mach-spear3xx/include/mach/io.h -c6fd3187642c32fc81cf37a9e2668347 linux-3.0/arch/arm/mach-spear3xx/include/mach/hardware.h -8c4fb44a948b3366511b829fae791e16 linux-3.0/arch/arm/mach-spear3xx/include/mach/gpio.h -7b7d4d0c67854a990eb9a3c995335dfe linux-3.0/arch/arm/mach-spear3xx/include/mach/generic.h -b7ff8b8ffd9dd71fdd330316bb1180fd linux-3.0/arch/arm/mach-spear3xx/include/mach/entry-macro.S -296293c938ffd704ca39db5c7d353340 linux-3.0/arch/arm/mach-spear3xx/include/mach/debug-macro.S -6426be1dba5671b1cd03b0a344c36b23 linux-3.0/arch/arm/mach-spear3xx/include/mach/clkdev.h -00522bd1c2c565353e307b8ee2665fc3 linux-3.0/arch/arm/mach-spear3xx/clock.c -5b394c47c9724ce542c3153a42dfba9c linux-3.0/arch/arm/mach-spear3xx/Makefile.boot -9ca4988db6bc638c4fa3023242591a34 linux-3.0/arch/arm/mach-spear3xx/Makefile -da8231160d30a790cceebcaf4b4af7a2 linux-3.0/arch/arm/mach-spear3xx/Kconfig -cb61e337308f9916cddf2acfa12f3b4f linux-3.0/arch/arm/mach-shmobile/timer.c -1f18b668a9e5f2d37d3fdd88813fb90c linux-3.0/arch/arm/mach-shmobile/suspend.c -6b4972695f8695a7ecbc34300dc543b4 linux-3.0/arch/arm/mach-shmobile/smp-sh73a0.c -6136df0e64ca4c2e4906cf83cad4b52d linux-3.0/arch/arm/mach-shmobile/sleep-sh7372.S -2256ea42e038e3eae7046d286c9389d3 linux-3.0/arch/arm/mach-shmobile/setup-sh73a0.c -02f9e833a617ec175f764ef3839b906e linux-3.0/arch/arm/mach-shmobile/setup-sh7377.c -55f09012108b712f618212284bcada01 linux-3.0/arch/arm/mach-shmobile/setup-sh7372.c -582704fab86ae8879bab79e0a21bf557 linux-3.0/arch/arm/mach-shmobile/setup-sh7367.c -432d34738fb3f8d075669e33b4aa5d28 linux-3.0/arch/arm/mach-shmobile/pm_runtime.c -31531d9b2cedca2bb0bcdc65d8371b6d linux-3.0/arch/arm/mach-shmobile/pm-sh7372.c -0845f2840d069d96b64472a3c08bd658 linux-3.0/arch/arm/mach-shmobile/platsmp.c -89ae15f460243a7107ad672bde8015ca linux-3.0/arch/arm/mach-shmobile/pfc-sh73a0.c -5260d80f47a1c25146f987c3fdac8302 linux-3.0/arch/arm/mach-shmobile/pfc-sh7377.c -7da59a72ad35f9abd2fd168d8daf738c linux-3.0/arch/arm/mach-shmobile/pfc-sh7372.c -b138970516d83405dc9d122f01f97ab8 linux-3.0/arch/arm/mach-shmobile/pfc-sh7367.c -bb74b847c49fb24f352ecd9067d79360 linux-3.0/arch/arm/mach-shmobile/localtimer.c -d508840afe09d7b5bfdc4d2d1a059c91 linux-3.0/arch/arm/mach-shmobile/intc-sh73a0.c -529b8a8bcaada4813321688aef6bc443 linux-3.0/arch/arm/mach-shmobile/intc-sh7377.c -af8a978aa8a59a414ac1712240b6d768 linux-3.0/arch/arm/mach-shmobile/intc-sh7372.c -a406e92e729350e9ac00ad624e12137c linux-3.0/arch/arm/mach-shmobile/intc-sh7367.c -5b69bd2bc47c80c8ab1cad638f50df77 linux-3.0/arch/arm/mach-shmobile/include/mach/zboot_macros.h -3285790e4665121d8d4ef4eee0d741bd linux-3.0/arch/arm/mach-shmobile/include/mach/zboot.h -4c190c3270cbd020235ee107322c19a8 linux-3.0/arch/arm/mach-shmobile/include/mach/vmalloc.h -64be7304520b5f9f58bb270c3594e02b linux-3.0/arch/arm/mach-shmobile/include/mach/uncompress.h -43bf951973b93158908b931bc3f49c33 linux-3.0/arch/arm/mach-shmobile/include/mach/timex.h -335c027cde8bcdb9c56fd8b20d12cc8b linux-3.0/arch/arm/mach-shmobile/include/mach/system.h -e37388bae4afb0f8b40cd586924a0268 linux-3.0/arch/arm/mach-shmobile/include/mach/sh73a0.h -875a6549725d8dc9cf08390adf912982 linux-3.0/arch/arm/mach-shmobile/include/mach/sh7377.h -773aa0b82bbef92947bbd479c81e1bff linux-3.0/arch/arm/mach-shmobile/include/mach/sh7372.h -4475953f728aa194ad9ad36d61c0b1f5 linux-3.0/arch/arm/mach-shmobile/include/mach/sh7367.h -fe6b263239cc12e0209e895f8bf988b3 linux-3.0/arch/arm/mach-shmobile/include/mach/mmc.h -637fe7d8757e1031b91b84abfb91fc15 linux-3.0/arch/arm/mach-shmobile/include/mach/mmc-mackerel.h -779b6c00ef7aa9feaee4dc4028d8ba88 linux-3.0/arch/arm/mach-shmobile/include/mach/mmc-ap4eb.h -54cacbde0782083adbf6f1c5aa6d6408 linux-3.0/arch/arm/mach-shmobile/include/mach/memory.h -605660beda2bb144b275376374aae3a6 linux-3.0/arch/arm/mach-shmobile/include/mach/irqs.h -075aa53d15483bb327cb64415c975aea linux-3.0/arch/arm/mach-shmobile/include/mach/io.h -56412270cd432c09aa529081bc83f3b9 linux-3.0/arch/arm/mach-shmobile/include/mach/head-mackerel.txt -56412270cd432c09aa529081bc83f3b9 linux-3.0/arch/arm/mach-shmobile/include/mach/head-ap4evb.txt -fecd76cdccee65261cfd95e7f9f9a24e linux-3.0/arch/arm/mach-shmobile/include/mach/hardware.h -017f749131ad8af8893f334e4ada3164 linux-3.0/arch/arm/mach-shmobile/include/mach/gpio.h -703d4e77124066f2022d2e4ed3561ab5 linux-3.0/arch/arm/mach-shmobile/include/mach/entry-macro.S -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/arm/mach-shmobile/include/mach/dma.h -7a0ef9e6429bb12e110f958785626e2d linux-3.0/arch/arm/mach-shmobile/include/mach/common.h -4959f48eadbf012c669d53a8b6764fbe linux-3.0/arch/arm/mach-shmobile/include/mach/clkdev.h -191152a14e8213e92971e085038aabb3 linux-3.0/arch/arm/mach-shmobile/hotplug.c -e491ee8c289cecd70a6b2d33f8551f41 linux-3.0/arch/arm/mach-shmobile/headsmp.S -286f331ae269f08779f64fbe28fb882b linux-3.0/arch/arm/mach-shmobile/entry-intc.S -9939c0ac6716cb4b9bc1afcfb9759afd linux-3.0/arch/arm/mach-shmobile/entry-gic.S -33372b4b7a6dd4d29145ff27974c0d4e linux-3.0/arch/arm/mach-shmobile/cpuidle.c -703d1aa2ac6cfb8d804a2e16a692fe4d linux-3.0/arch/arm/mach-shmobile/console.c -fd660c6afa7a70dfd4f653a134195d41 linux-3.0/arch/arm/mach-shmobile/clock.c -84d00c2b680351f70fe07d8b97116c6f linux-3.0/arch/arm/mach-shmobile/clock-sh73a0.c -4d3ff3810e3af4a2da461bb545841dd5 linux-3.0/arch/arm/mach-shmobile/clock-sh7377.c -29bfbfb64c075c74d9582e5220e7943a linux-3.0/arch/arm/mach-shmobile/clock-sh7372.c -3b93b393f2a7dfc82f1052e75ea5996e linux-3.0/arch/arm/mach-shmobile/clock-sh7367.c -4e6a47701e924abb24a386a1f2e82c55 linux-3.0/arch/arm/mach-shmobile/board-mackerel.c -7be725e311d941f8bcfa88d5d3273fba linux-3.0/arch/arm/mach-shmobile/board-g4evm.c -1e50b83e2c5eaf05b88a7a8db2a79a25 linux-3.0/arch/arm/mach-shmobile/board-g3evm.c -002a6ea0903833a8179c1d92224ca9b2 linux-3.0/arch/arm/mach-shmobile/board-ap4evb.c -5f34904a45535c8f0d0529c0fca397e3 linux-3.0/arch/arm/mach-shmobile/board-ag5evm.c -9eb7e3281f42c19356c046ce112d9f4c linux-3.0/arch/arm/mach-shmobile/Makefile.boot -28a3fda1cff49b4765f6500e8ffc1769 linux-3.0/arch/arm/mach-shmobile/Makefile -1f7781f1a1c7e364da7c49d539dce93a linux-3.0/arch/arm/mach-shmobile/Kconfig -9a0698b5d65b243e4534778c90267c90 linux-3.0/arch/arm/mach-shark/pci.c -eeceae4290859cdcc516242085bbe862 linux-3.0/arch/arm/mach-shark/leds.c -e3753d74f83403aa76189ee009f43dfa linux-3.0/arch/arm/mach-shark/irq.c -c8fc2f34c9afe278dd329a2b82dc5f0f linux-3.0/arch/arm/mach-shark/include/mach/vmalloc.h -c1397d0779fe3a204a020f91e789fa57 linux-3.0/arch/arm/mach-shark/include/mach/uncompress.h -1b4fd5d551e87141952b8e911c7ef42a linux-3.0/arch/arm/mach-shark/include/mach/timex.h -fd5e97ecf1c44e24857ca8764117b522 linux-3.0/arch/arm/mach-shark/include/mach/system.h -6035113325fdce3eb42bbe54d262f16c linux-3.0/arch/arm/mach-shark/include/mach/memory.h -b1fc65d7c3c839cfe68162f6ecf9fb8d linux-3.0/arch/arm/mach-shark/include/mach/isa-dma.h -e5bcf2be0dd442470529e0ec73780df0 linux-3.0/arch/arm/mach-shark/include/mach/irqs.h -6fe8216e1b3c096c8f8c2c93de66b4f8 linux-3.0/arch/arm/mach-shark/include/mach/io.h -962ad896ec435014bf7eb5c704e384b9 linux-3.0/arch/arm/mach-shark/include/mach/hardware.h -4c0da9699857f7ee1f1da6959cba4ed5 linux-3.0/arch/arm/mach-shark/include/mach/framebuffer.h -77138ff3e66614fba1f59335221178f2 linux-3.0/arch/arm/mach-shark/include/mach/entry-macro.S -a63a22317f8cf8b7110103d234714211 linux-3.0/arch/arm/mach-shark/include/mach/debug-macro.S -4b06be8c2b1e89efff6552c0ec776a56 linux-3.0/arch/arm/mach-shark/dma.c -54736524cdf450da2dd25725e9ce6e87 linux-3.0/arch/arm/mach-shark/core.c -2cd187da93c394826bf9e5fefd46b032 linux-3.0/arch/arm/mach-shark/Makefile.boot -7a937d0db5ca84076a771d7b4f908105 linux-3.0/arch/arm/mach-shark/Makefile -30fa1aa87066ccfd40a1cb5e7eb47825 linux-3.0/arch/arm/mach-sa1100/time.c -3696743982cb887928d87aa43298f4fe linux-3.0/arch/arm/mach-sa1100/ssp.c -d70c4beb79ce0b773584e3a94601f0b1 linux-3.0/arch/arm/mach-sa1100/sleep.S -c6c28fe7c87b2e51b2cdc7ae3ff2e420 linux-3.0/arch/arm/mach-sa1100/simpad.c -1eeeadbfb72409119786793902fc3cb3 linux-3.0/arch/arm/mach-sa1100/shannon.c -6d7e8f1a0def72c31833ba338a168f9b linux-3.0/arch/arm/mach-sa1100/pm.c -b057764f0b07a11d5f2ccf52e4c157fd linux-3.0/arch/arm/mach-sa1100/pleb.c -e5fdc03f4d4e7f2297967d6fe9d88553 linux-3.0/arch/arm/mach-sa1100/pci-nanoengine.c -6fc1fcebb8bc25b578bb7083eb682795 linux-3.0/arch/arm/mach-sa1100/neponset.c -345caef53f985f468bd1f3eab87c9aaa linux-3.0/arch/arm/mach-sa1100/nanoengine.c -7a00efb5f55a31f3310875fae71293ec linux-3.0/arch/arm/mach-sa1100/leds.h -e3466177c7a3279dbc4e314ff7da7192 linux-3.0/arch/arm/mach-sa1100/leds.c -78f42a73f60269706c827939a0278954 linux-3.0/arch/arm/mach-sa1100/leds-simpad.c -ed68e898715d36b452d2890b5db2327b linux-3.0/arch/arm/mach-sa1100/leds-lart.c -168da6bde01090d50595f62d3b191adc linux-3.0/arch/arm/mach-sa1100/leds-hackkit.c -a17ef60e4473c59a3c9b4067dfbab5c5 linux-3.0/arch/arm/mach-sa1100/leds-cerf.c -7e5d80a5b04e9067599524744cae0ce5 linux-3.0/arch/arm/mach-sa1100/leds-badge4.c -b57c688b3f9d6c68947807e17bb00b66 linux-3.0/arch/arm/mach-sa1100/leds-assabet.c -e9344fa534a1119452f728496e54bc0a linux-3.0/arch/arm/mach-sa1100/lart.c -f4cb68faf2121a4a4b5a0feb9b4d46e3 linux-3.0/arch/arm/mach-sa1100/jornada720_ssp.c -c5e056916ae4a1e3c275ad35f1752387 linux-3.0/arch/arm/mach-sa1100/jornada720.c -a0ca4e5eca0660d8c21d563950875e17 linux-3.0/arch/arm/mach-sa1100/irq.c -9f1be52c87aff0ff3c4f1e9ec7293698 linux-3.0/arch/arm/mach-sa1100/include/mach/vmalloc.h -c8dbe5db4ab09f163e05c8e7a89f40f0 linux-3.0/arch/arm/mach-sa1100/include/mach/uncompress.h -80a257c97bb470cf552a07c9fe6d9ac4 linux-3.0/arch/arm/mach-sa1100/include/mach/timex.h -905e2c59b782da210525482ceb04e502 linux-3.0/arch/arm/mach-sa1100/include/mach/system.h -9116cfd21411b8908c50895f703c9070 linux-3.0/arch/arm/mach-sa1100/include/mach/simpad.h -59685e6b122e4dc4702ac6a4f89df47e linux-3.0/arch/arm/mach-sa1100/include/mach/shannon.h -424cfb412d59696009d23b0eaebfd325 linux-3.0/arch/arm/mach-sa1100/include/mach/reset.h -81d672fe45cbe5d78139954f1348d43c linux-3.0/arch/arm/mach-sa1100/include/mach/neponset.h -fea7d6d521f1d3ed350cc87c216967fc linux-3.0/arch/arm/mach-sa1100/include/mach/nanoengine.h -5d889c80c31619e73a8e300e9f9c4811 linux-3.0/arch/arm/mach-sa1100/include/mach/mtd-xip.h -e51a22fb91ad5e38679828214ed1c926 linux-3.0/arch/arm/mach-sa1100/include/mach/memory.h -b00226637db6deacd88d735c93f6ad99 linux-3.0/arch/arm/mach-sa1100/include/mach/mcp.h -42cb40064e6250a438ff9ea55515d23c linux-3.0/arch/arm/mach-sa1100/include/mach/lart.h -339beb2c96f01c7a4c6d6c1d881a3d0e linux-3.0/arch/arm/mach-sa1100/include/mach/jornada720.h -ddc53551e744250e9fe9d6ed0f43d01e linux-3.0/arch/arm/mach-sa1100/include/mach/irqs.h -abe1a215bf4510a5663c1d3fae17d2ad linux-3.0/arch/arm/mach-sa1100/include/mach/io.h -803429db2b4d5e29e4ac96e329d30b45 linux-3.0/arch/arm/mach-sa1100/include/mach/hardware.h -60b1f8426d4abb720b76edee68e9e6bf linux-3.0/arch/arm/mach-sa1100/include/mach/h3xxx.h -e2eb2f611e98f5b19f666450777cd695 linux-3.0/arch/arm/mach-sa1100/include/mach/gpio.h -b7ae3ac1f9e35ebdb1460864ae6f053e linux-3.0/arch/arm/mach-sa1100/include/mach/entry-macro.S -6230f62d0d01a5066a465a78edafb91e linux-3.0/arch/arm/mach-sa1100/include/mach/dma.h -60d2f9ddaea74ff0acc94a43f77684a0 linux-3.0/arch/arm/mach-sa1100/include/mach/debug-macro.S -a512ee763e6b3ecf7a37c40678bdd51b linux-3.0/arch/arm/mach-sa1100/include/mach/collie.h -8aa9b048be2122016adc0b822edb26ce linux-3.0/arch/arm/mach-sa1100/include/mach/cerf.h -9b99dab391cc8d2de8bc6de42ad5e705 linux-3.0/arch/arm/mach-sa1100/include/mach/bitfield.h -ade8970203184855d38ad83ceff4f6e9 linux-3.0/arch/arm/mach-sa1100/include/mach/badge4.h -63e7ca0f944d0bca968b29299c1cf285 linux-3.0/arch/arm/mach-sa1100/include/mach/assabet.h -b9a840e9b12b0685b55c3e9097d49c56 linux-3.0/arch/arm/mach-sa1100/include/mach/SA-1111.h -49a723f608f3224c91506b80ac013181 linux-3.0/arch/arm/mach-sa1100/include/mach/SA-1101.h -02c22e0d17e0c3ea911967489e99204e linux-3.0/arch/arm/mach-sa1100/include/mach/SA-1100.h -b777ab0d95c6735abb8a40b7cf2bca5e linux-3.0/arch/arm/mach-sa1100/hackkit.c -138a39c0ccb4571cc7ba371df742a980 linux-3.0/arch/arm/mach-sa1100/h3xxx.c -22a6f70953d577ce0ecd0f9eff6cf68b linux-3.0/arch/arm/mach-sa1100/h3600.c -728990eccf989823eac44f63b8346523 linux-3.0/arch/arm/mach-sa1100/h3100.c -ee1471cae6b8c66f6ea60414e3b96eb2 linux-3.0/arch/arm/mach-sa1100/gpio.c -e8feffe14a6ed7416559b5a08f5d58f1 linux-3.0/arch/arm/mach-sa1100/generic.h -dc803452b36534ccb05cc8e57847d020 linux-3.0/arch/arm/mach-sa1100/generic.c -435cb831bc2d0227d21b2461a226cd5a linux-3.0/arch/arm/mach-sa1100/dma.c -931a1d72942ae48f0256b0a690428ba0 linux-3.0/arch/arm/mach-sa1100/cpu-sa1110.c -eb8ee783861fa7b913a7126818d7e96d linux-3.0/arch/arm/mach-sa1100/cpu-sa1100.c -0bf2bf5f8e0871796bea24c6f8a22871 linux-3.0/arch/arm/mach-sa1100/collie.c -ff5479dc5b4f0f63cdd820d4a266c1ee linux-3.0/arch/arm/mach-sa1100/clock.c -4401d136b56833d3ab195d37eaece9ff linux-3.0/arch/arm/mach-sa1100/cerf.c -cc5fa6fe0abe40cef6e80429b1d3870b linux-3.0/arch/arm/mach-sa1100/badge4.c -57c0b871edb4fa37d6903b6b6b27a957 linux-3.0/arch/arm/mach-sa1100/assabet.c -efa4e0a7311fd8539dcac1f875621d21 linux-3.0/arch/arm/mach-sa1100/Makefile.boot -72c49f76d9ecc8945c0441b1f552bf78 linux-3.0/arch/arm/mach-sa1100/Makefile -452100a1fd7014f19187a1d53b853363 linux-3.0/arch/arm/mach-sa1100/Kconfig -48c95f759071a88a4635b4d59ad39da7 linux-3.0/arch/arm/mach-s5pv210/sleep.S -3b0f810dea6fb4495cde16eff314fdcf linux-3.0/arch/arm/mach-s5pv210/setup-sdhci.c -8fea9b944161d4e0adb6686ec6e622ba linux-3.0/arch/arm/mach-s5pv210/setup-sdhci-gpio.c -282c058867a2df914b1df801775729b6 linux-3.0/arch/arm/mach-s5pv210/setup-keypad.c -a95962e0020d210100bf7305302d687d linux-3.0/arch/arm/mach-s5pv210/setup-ide.c -337d31a242660ab2e9041549c545c558 linux-3.0/arch/arm/mach-s5pv210/setup-i2c2.c -fea065ab98b5cf86a33148c1515968a6 linux-3.0/arch/arm/mach-s5pv210/setup-i2c1.c -7ee94ea57a4f65606cfb3aeef81fc5da linux-3.0/arch/arm/mach-s5pv210/setup-i2c0.c -a9ef66bdcd72b087866fb8934119be51 linux-3.0/arch/arm/mach-s5pv210/setup-fimc.c -9024be78b89f165a8d2312f7592f484a linux-3.0/arch/arm/mach-s5pv210/setup-fb-24bpp.c -72f975db4345da4e6a0d850c1b204bf2 linux-3.0/arch/arm/mach-s5pv210/pm.c -332b37d00a5f2afdd500d0655e4204b5 linux-3.0/arch/arm/mach-s5pv210/mach-torbreck.c -4acd7469423a3930aa7b6e5a560c92f3 linux-3.0/arch/arm/mach-s5pv210/mach-smdkv210.c -968e5886dc2891f3b75c4e54b893a15a linux-3.0/arch/arm/mach-s5pv210/mach-smdkc110.c -6d1a0573816c7e2fb11bd4a595eab653 linux-3.0/arch/arm/mach-s5pv210/mach-goni.c -88a00455206dc0ba89908d35eea61f60 linux-3.0/arch/arm/mach-s5pv210/mach-aquila.c -a2ddf42c8708cb30d5c95773b23ad2c4 linux-3.0/arch/arm/mach-s5pv210/init.c -14c3f3118ede3bfe565ef060350237a2 linux-3.0/arch/arm/mach-s5pv210/include/mach/vmalloc.h -d3744d06b162aa52803b1235a1bca4ec linux-3.0/arch/arm/mach-s5pv210/include/mach/uncompress.h -f653158bf09f8a88b7d42b867f495868 linux-3.0/arch/arm/mach-s5pv210/include/mach/timex.h -f8a6a603a7f269668a8baa4f48cfe0d4 linux-3.0/arch/arm/mach-s5pv210/include/mach/tick.h -93539f377a68565c46cf5e9e3f0b0547 linux-3.0/arch/arm/mach-s5pv210/include/mach/system.h -49f8eea68b77228a441efabff8bbe1b5 linux-3.0/arch/arm/mach-s5pv210/include/mach/spi-clocks.h -d305b7853d4f28b0c4df340187638d67 linux-3.0/arch/arm/mach-s5pv210/include/mach/regs-sys.h -17627509cc02e4ede9291a507efac6da linux-3.0/arch/arm/mach-s5pv210/include/mach/regs-irq.h -2ed8b46a3445e02a42dbb878f78feb19 linux-3.0/arch/arm/mach-s5pv210/include/mach/regs-gpio.h -e1b77c5f4d2be94e13bfb41d81bde8bc linux-3.0/arch/arm/mach-s5pv210/include/mach/regs-fb.h -96199285d93cdc1002332231d8ad7a09 linux-3.0/arch/arm/mach-s5pv210/include/mach/regs-clock.h -2c5b054fdc8de096878f3a304c2a326f linux-3.0/arch/arm/mach-s5pv210/include/mach/pwm-clock.h -6d4d590fa9ec08d7f2768394d8593173 linux-3.0/arch/arm/mach-s5pv210/include/mach/pm-core.h -b3d44998d5908b7e65f734413049fb57 linux-3.0/arch/arm/mach-s5pv210/include/mach/memory.h -1b6d11e91fee6833dd7a0d053664a489 linux-3.0/arch/arm/mach-s5pv210/include/mach/map.h -a68826df152fa8f7cddf51ddaa9b7900 linux-3.0/arch/arm/mach-s5pv210/include/mach/irqs.h -419631043c17c6a1477fe1a4e3243d40 linux-3.0/arch/arm/mach-s5pv210/include/mach/io.h -2a46829edf6a807629be4be49aebd44b linux-3.0/arch/arm/mach-s5pv210/include/mach/hardware.h -be7ec1beb951b34dcb9081d895e7654b linux-3.0/arch/arm/mach-s5pv210/include/mach/gpio.h -8ee39c3c3b39b162e570e02a485ea603 linux-3.0/arch/arm/mach-s5pv210/include/mach/entry-macro.S -6c51c6e9ce9e026c231d0c009faa25f7 linux-3.0/arch/arm/mach-s5pv210/include/mach/dma.h -3b3c9694f46987a1e7f46bb19aaabe2a linux-3.0/arch/arm/mach-s5pv210/include/mach/debug-macro.S -1525851d3d186ea1d70f4603112056ec linux-3.0/arch/arm/mach-s5pv210/dma.c -fedefd3db1c15a350b0b7d6057fdf64b linux-3.0/arch/arm/mach-s5pv210/dev-spi.c -a878a843ecd23e7a0f8311f5d7fbaeb7 linux-3.0/arch/arm/mach-s5pv210/dev-audio.c -eea5768d7d543a43ca2fa9b3ff2e3f0f linux-3.0/arch/arm/mach-s5pv210/cpufreq.c -d009947d2a66770b10e1dcaf6319df62 linux-3.0/arch/arm/mach-s5pv210/cpu.c -062db9bf4686ad1763e91c4de4bd7535 linux-3.0/arch/arm/mach-s5pv210/clock.c -90098708ec1576e9dee4d22f4a2d527a linux-3.0/arch/arm/mach-s5pv210/Makefile.boot -9032c7f3b2fbe2612de4d311e6d9a19a linux-3.0/arch/arm/mach-s5pv210/Makefile -5c283a9350ee1a1bacb34aa72877bf36 linux-3.0/arch/arm/mach-s5pv210/Kconfig -b385d74aaababa8d5d5fe4a4c388dbe9 linux-3.0/arch/arm/mach-s5pc100/setup-sdhci.c -0f19ed56cfe7dd3874ee2aca58001985 linux-3.0/arch/arm/mach-s5pc100/setup-sdhci-gpio.c -a1d4c881f0702190214c56536305a66d linux-3.0/arch/arm/mach-s5pc100/setup-keypad.c -14293e34ddae55084534a0a5a5c8cb5a linux-3.0/arch/arm/mach-s5pc100/setup-ide.c -61131d847239f8abbc68fb2885399022 linux-3.0/arch/arm/mach-s5pc100/setup-i2c1.c -4017c73be7e03166e1ef6a69fc0ad312 linux-3.0/arch/arm/mach-s5pc100/setup-i2c0.c -f6951e2cc8363100f8a21d4d4aa825e6 linux-3.0/arch/arm/mach-s5pc100/setup-fb-24bpp.c -cbec742c2fc4f47eccbfaaa35e3f0f99 linux-3.0/arch/arm/mach-s5pc100/mach-smdkc100.c -e0001fb0bd606fbd631db77419c944a4 linux-3.0/arch/arm/mach-s5pc100/init.c -63e7af6db1dc0672ca5a032f17e4e5fd linux-3.0/arch/arm/mach-s5pc100/include/mach/vmalloc.h -c3df1f42402c8fa7ba9cbb8b90545196 linux-3.0/arch/arm/mach-s5pc100/include/mach/uncompress.h -0deeee5afb6929147c909cdc4ede69bf linux-3.0/arch/arm/mach-s5pc100/include/mach/timex.h -7834c4c6b0422d0e1be9551365a6a4ab linux-3.0/arch/arm/mach-s5pc100/include/mach/tick.h -88fe71c2051523742333f8397dd55663 linux-3.0/arch/arm/mach-s5pc100/include/mach/system.h -7a219cde7186ee50d5d3788d2e655ca7 linux-3.0/arch/arm/mach-s5pc100/include/mach/spi-clocks.h -ab2818cf8b891c16ab93e51fccb88543 linux-3.0/arch/arm/mach-s5pc100/include/mach/regs-irq.h -92aa49a38a67340355d6b0ae2b33eeba linux-3.0/arch/arm/mach-s5pc100/include/mach/regs-gpio.h -5b4ed9898dfa2f0b0a811b5acb1d1fe9 linux-3.0/arch/arm/mach-s5pc100/include/mach/regs-fb.h -3c108e03b6dcec19987eab6723c96a33 linux-3.0/arch/arm/mach-s5pc100/include/mach/regs-clock.h -d03f509ec72f60385f849c1266305b54 linux-3.0/arch/arm/mach-s5pc100/include/mach/pwm-clock.h -fda71a6e6a0cddb71ac14f29ad2dce72 linux-3.0/arch/arm/mach-s5pc100/include/mach/memory.h -5e5b17e178d068f65b8ca573dba7e8f0 linux-3.0/arch/arm/mach-s5pc100/include/mach/map.h -324176c99984724be621a0ff05b5fbe7 linux-3.0/arch/arm/mach-s5pc100/include/mach/irqs.h -af66d11ece8befb116bb56398af9accb linux-3.0/arch/arm/mach-s5pc100/include/mach/io.h -eca30345ffdc4efd0e4b1e91286144cb linux-3.0/arch/arm/mach-s5pc100/include/mach/hardware.h -c5919219e4af0ec5f92d3308dc0310bf linux-3.0/arch/arm/mach-s5pc100/include/mach/gpio.h -121759ca1873b0757a4ec8acb81670ae linux-3.0/arch/arm/mach-s5pc100/include/mach/entry-macro.S -6c51c6e9ce9e026c231d0c009faa25f7 linux-3.0/arch/arm/mach-s5pc100/include/mach/dma.h -c177732884dc7a84c57df6b98a980baa linux-3.0/arch/arm/mach-s5pc100/include/mach/debug-macro.S -8f4392cf156784deddc1a9942856b167 linux-3.0/arch/arm/mach-s5pc100/dma.c -6e2f4e2366c83ec3490c9ec5d1bc9cfe linux-3.0/arch/arm/mach-s5pc100/dev-spi.c -3701c37903cb2abb7ec019ab54de65ba linux-3.0/arch/arm/mach-s5pc100/dev-audio.c -35cedd27c6d28d0c376733e56df74f5c linux-3.0/arch/arm/mach-s5pc100/cpu.c -007c132cc2c7f7d2fed1567bcaf80c2d linux-3.0/arch/arm/mach-s5pc100/clock.c -90098708ec1576e9dee4d22f4a2d527a linux-3.0/arch/arm/mach-s5pc100/Makefile.boot -7ca4208bde1ef809268f6f68e33eaca3 linux-3.0/arch/arm/mach-s5pc100/Makefile -0d6833d35325c2dc571e87649bab1769 linux-3.0/arch/arm/mach-s5pc100/Kconfig -776a35739d0e2eaddcb956a57640a240 linux-3.0/arch/arm/mach-s5p64x0/setup-i2c1.c -63a991cd931f723e305044379065e916 linux-3.0/arch/arm/mach-s5p64x0/setup-i2c0.c -4de98b89b99626f17b847b359e2d265a linux-3.0/arch/arm/mach-s5p64x0/mach-smdk6450.c -0ccc333e0ffc747859dcc3291bdc6340 linux-3.0/arch/arm/mach-s5p64x0/mach-smdk6440.c -f05b02f5841d486fc44f3b9b85132769 linux-3.0/arch/arm/mach-s5p64x0/init.c -2c3308fe7708022444c92b213b3540c5 linux-3.0/arch/arm/mach-s5p64x0/include/mach/vmalloc.h -f084bea110afa79dee42bba6a6077b09 linux-3.0/arch/arm/mach-s5p64x0/include/mach/uncompress.h -ba1cc2f61e147f15c94c07fa643ede4f linux-3.0/arch/arm/mach-s5p64x0/include/mach/timex.h -654c6d360c2470e85bc319867bdb272d linux-3.0/arch/arm/mach-s5p64x0/include/mach/tick.h -22e82d39c5d265f943393f3bd0b8fec9 linux-3.0/arch/arm/mach-s5p64x0/include/mach/system.h -a630d71a560584301adcc41e0fd91fcc linux-3.0/arch/arm/mach-s5p64x0/include/mach/spi-clocks.h -725fa8c57d51b3401e22f7edf769933e linux-3.0/arch/arm/mach-s5p64x0/include/mach/s5p64x0-clock.h -1d3ce0330be0f32298ca7b58283cdc68 linux-3.0/arch/arm/mach-s5p64x0/include/mach/regs-irq.h -0c3b05fa1b86d4e23ea7ffe77624c222 linux-3.0/arch/arm/mach-s5p64x0/include/mach/regs-gpio.h -b2cc3b5a5aa1ecd44adc255dd3143d74 linux-3.0/arch/arm/mach-s5p64x0/include/mach/regs-clock.h -2d31b66a517c85e858ca3f5db56a34f9 linux-3.0/arch/arm/mach-s5p64x0/include/mach/pwm-clock.h -ddca58d90ce08937b1ec0f879a37b353 linux-3.0/arch/arm/mach-s5p64x0/include/mach/memory.h -484c16942cd245a7bc52851a27ab713f linux-3.0/arch/arm/mach-s5p64x0/include/mach/map.h -0a24bab72799bccea13a79b1405d85e1 linux-3.0/arch/arm/mach-s5p64x0/include/mach/irqs.h -93dfbe16d6464898e51e61af6a702bc5 linux-3.0/arch/arm/mach-s5p64x0/include/mach/io.h -4c6e9095751a5f85c97ea70a79cb7ea3 linux-3.0/arch/arm/mach-s5p64x0/include/mach/i2c.h -7a207bf9dd28a728bd92f910f5b12ded linux-3.0/arch/arm/mach-s5p64x0/include/mach/hardware.h -2127964921d8222c16736e81e0e61e6c linux-3.0/arch/arm/mach-s5p64x0/include/mach/gpio.h -6b0016bbe9ac6ef2fc1cb1f0f739d28c linux-3.0/arch/arm/mach-s5p64x0/include/mach/entry-macro.S -6c51c6e9ce9e026c231d0c009faa25f7 linux-3.0/arch/arm/mach-s5p64x0/include/mach/dma.h -c31af5d3de00e3c0565f960d0ea106a8 linux-3.0/arch/arm/mach-s5p64x0/include/mach/debug-macro.S -2a536caf5336b91008678ffe0479aea6 linux-3.0/arch/arm/mach-s5p64x0/gpiolib.c -b8a2d471d0177423bfb405b919dbd6fe linux-3.0/arch/arm/mach-s5p64x0/dma.c -c7ae1318b24c4e2f084077f2e0fc7b33 linux-3.0/arch/arm/mach-s5p64x0/dev-spi.c -36a9dc120fb6bb11a2ae7db890f653e4 linux-3.0/arch/arm/mach-s5p64x0/dev-audio.c -4c1ce628294121c53a10fc1fd39a9252 linux-3.0/arch/arm/mach-s5p64x0/cpu.c -0c5b5839b51225e22a41ad2b9f32869f linux-3.0/arch/arm/mach-s5p64x0/clock.c -a65708be4d43e4b1dd530f30ceca227e linux-3.0/arch/arm/mach-s5p64x0/clock-s5p6450.c -8b5ec716e8017ab9a89cc3813252db93 linux-3.0/arch/arm/mach-s5p64x0/clock-s5p6440.c -90098708ec1576e9dee4d22f4a2d527a linux-3.0/arch/arm/mach-s5p64x0/Makefile.boot -616126faf8c8921817b3cc33c4705788 linux-3.0/arch/arm/mach-s5p64x0/Makefile -dcfc81f396922d638bc62b113ec0dde6 linux-3.0/arch/arm/mach-s5p64x0/Kconfig -7a4b752b034393feeda92a6d0f7ea424 linux-3.0/arch/arm/mach-s3c64xx/sleep.S -74cf8cb9c0055dc3622e89cb5c92fe1b linux-3.0/arch/arm/mach-s3c64xx/setup-sdhci.c -67934ae536564bcaac933d28a396d964 linux-3.0/arch/arm/mach-s3c64xx/setup-sdhci-gpio.c -b8b2880dcccf79e22a6e80c2fccfa760 linux-3.0/arch/arm/mach-s3c64xx/setup-keypad.c -9ff914b903882d344c245ec498acf8a9 linux-3.0/arch/arm/mach-s3c64xx/setup-ide.c -4eaaa95e1e17ff4b7ef223e3995c4e5c linux-3.0/arch/arm/mach-s3c64xx/setup-i2c1.c -4805a121db622dd341bb44a38c0a1f4c linux-3.0/arch/arm/mach-s3c64xx/setup-i2c0.c -072e1b4237d3bf35b96226e913dbf413 linux-3.0/arch/arm/mach-s3c64xx/setup-fb-24bpp.c -462b104feab769db4e5808e44cc892f8 linux-3.0/arch/arm/mach-s3c64xx/s3c6410.c -258585ba5feee4b30c0895c744caa587 linux-3.0/arch/arm/mach-s3c64xx/s3c6400.c -1a8c381de80bb8968bc276f80d31c2a6 linux-3.0/arch/arm/mach-s3c64xx/pm.c -112737b95f4a66b7e817d221f3e25a42 linux-3.0/arch/arm/mach-s3c64xx/mach-smdk6410.c -276f1be4cdb7df018751b124a00de821 linux-3.0/arch/arm/mach-s3c64xx/mach-smdk6400.c -091653df3ff70049c7885507b1c9b28a linux-3.0/arch/arm/mach-s3c64xx/mach-smartq7.c -19fddb4b06b156434fefc1104827ce3f linux-3.0/arch/arm/mach-s3c64xx/mach-smartq5.c -a79b7efee669c5ad1c40deca9f391aa3 linux-3.0/arch/arm/mach-s3c64xx/mach-smartq.h -57daa6e791829ffbe5495ea9a85c8930 linux-3.0/arch/arm/mach-s3c64xx/mach-smartq.c -4cbb987bdf3c422ed38fc411d3561df9 linux-3.0/arch/arm/mach-s3c64xx/mach-real6410.c -6976816a070b72cf9f4d6bf32af5a903 linux-3.0/arch/arm/mach-s3c64xx/mach-ncp.c -6f1e9b36be603cf96355bec027d5c3fb linux-3.0/arch/arm/mach-s3c64xx/mach-mini6410.c -37a7829c56fb8bdd7b183a4d668edc3b linux-3.0/arch/arm/mach-s3c64xx/mach-hmt.c -7e47eccd0b6384f95e7d7e2f06ad726b linux-3.0/arch/arm/mach-s3c64xx/mach-anw6410.c -faa8139a89f7dfd098b750cb917ad8ab linux-3.0/arch/arm/mach-s3c64xx/irq.c -abcddd047e885d1018b88cc972f925fd linux-3.0/arch/arm/mach-s3c64xx/irq-pm.c -03f2eb205cf8ce447cad4346c9c7ae43 linux-3.0/arch/arm/mach-s3c64xx/irq-eint.c -d104a035a694ba057ea4bdb0f62a78ff linux-3.0/arch/arm/mach-s3c64xx/include/mach/vmalloc.h -4a2f60ab5fce402b067434de0514563c linux-3.0/arch/arm/mach-s3c64xx/include/mach/uncompress.h -d7a28739e7ac9c021accded873b145c6 linux-3.0/arch/arm/mach-s3c64xx/include/mach/timex.h -bd4f2ed0d57d4b793fefd137ed7fed52 linux-3.0/arch/arm/mach-s3c64xx/include/mach/tick.h -8ba7cc573ba2dcca083230c7bc4dfd40 linux-3.0/arch/arm/mach-s3c64xx/include/mach/system.h -b9d7f1c885330d959d8b0c35cc5d2bb7 linux-3.0/arch/arm/mach-s3c64xx/include/mach/spi-clocks.h -18d5a59630cf46a07ef1c8a67f9710c9 linux-3.0/arch/arm/mach-s3c64xx/include/mach/s3c6410.h -2b9f046213267a41e0af7c1bf0506498 linux-3.0/arch/arm/mach-s3c64xx/include/mach/s3c6400.h -b953452f9b04f61a8e3b85dd6b1b3a0f linux-3.0/arch/arm/mach-s3c64xx/include/mach/regs-syscon-power.h -dcc0d8feb4c0c8b6d1c6c5bb9c892afa linux-3.0/arch/arm/mach-s3c64xx/include/mach/regs-sys.h -2fb5b4d817fc9980238ba1514b85ac1d linux-3.0/arch/arm/mach-s3c64xx/include/mach/regs-srom.h -d7d46074feba1a84e9a7f1c1a107041f linux-3.0/arch/arm/mach-s3c64xx/include/mach/regs-modem.h -4da09146366c6b4621344ca3e59926ef linux-3.0/arch/arm/mach-s3c64xx/include/mach/regs-irq.h -5b9ff3b369038da0c0e1ebf56b2ed804 linux-3.0/arch/arm/mach-s3c64xx/include/mach/regs-gpio.h -ac1d016f81af5eaf5eff4d2b4f375332 linux-3.0/arch/arm/mach-s3c64xx/include/mach/regs-gpio-memport.h -8c57526a8faa67739b59bc4e99d1007b linux-3.0/arch/arm/mach-s3c64xx/include/mach/regs-fb.h -7f6b928fabd3065e54b78b84b09f7f23 linux-3.0/arch/arm/mach-s3c64xx/include/mach/regs-clock.h -340a9879cde448f23436ea85b4e2006f linux-3.0/arch/arm/mach-s3c64xx/include/mach/pwm-clock.h -162b761d3b99c4b2f8dc1645d91a737a linux-3.0/arch/arm/mach-s3c64xx/include/mach/pm-core.h -bcb482f486de4cb6ccac5e9f2a846863 linux-3.0/arch/arm/mach-s3c64xx/include/mach/pll.h -38d9da5d04a386491e1a1a4f25f2fa37 linux-3.0/arch/arm/mach-s3c64xx/include/mach/memory.h -96614c06847febe27ccbf73af5f7395c linux-3.0/arch/arm/mach-s3c64xx/include/mach/map.h -beb2bb695e053faf46b372b0c96c3039 linux-3.0/arch/arm/mach-s3c64xx/include/mach/irqs.h -98a717d70b9eab21db02a598e999d073 linux-3.0/arch/arm/mach-s3c64xx/include/mach/io.h -6cd3838dc9fa7865e6473294bb0680a1 linux-3.0/arch/arm/mach-s3c64xx/include/mach/hardware.h -2a65ba2e8958a87fdbdd0a001895d8da linux-3.0/arch/arm/mach-s3c64xx/include/mach/gpio.h -3203f6fe77c5408c07ee8f8781302972 linux-3.0/arch/arm/mach-s3c64xx/include/mach/entry-macro.S -68030f31ea59f392dc638f2ea9f8769e linux-3.0/arch/arm/mach-s3c64xx/include/mach/dma.h -9fccf597b15885315dd334e98fd069ce linux-3.0/arch/arm/mach-s3c64xx/include/mach/debug-macro.S -65baebf017ad598f3acdf04766f1f13f linux-3.0/arch/arm/mach-s3c64xx/gpiolib.c -2f9ee8f9a97238f96042cc2daf658151 linux-3.0/arch/arm/mach-s3c64xx/dma.c -42f87d325386b456cb7a89a64d4da615 linux-3.0/arch/arm/mach-s3c64xx/dev-uart.c -64c991117828ff5e20b5d916efc7505f linux-3.0/arch/arm/mach-s3c64xx/dev-spi.c -c768047827cb57b0c329a4c5094ce754 linux-3.0/arch/arm/mach-s3c64xx/dev-onenand1.c -0266d0a1fd931649471904209507543a linux-3.0/arch/arm/mach-s3c64xx/dev-audio.c -01f2a7dfd977f44e430dd39d6aab91e0 linux-3.0/arch/arm/mach-s3c64xx/cpufreq.c -4df844143ffbec8aa292828ed28efe23 linux-3.0/arch/arm/mach-s3c64xx/cpu.c -7a2cf4210ad8d8ea4e285f3cc195198e linux-3.0/arch/arm/mach-s3c64xx/clock.c -aeabba8cbf8ee323cb861d4ae08c03cf linux-3.0/arch/arm/mach-s3c64xx/Makefile.boot -2d730d77f168b21b09a1048716d8d91d linux-3.0/arch/arm/mach-s3c64xx/Makefile -c95d9007d34ba70f6226a7e8a0dd4e29 linux-3.0/arch/arm/mach-s3c64xx/Kconfig -792115c6543f07df975c0f6c47fb5a32 linux-3.0/arch/arm/mach-s3c24a0/include/mach/vmalloc.h -8e1f8751b114a68976fd5a37a48c3f80 linux-3.0/arch/arm/mach-s3c24a0/include/mach/timex.h -00c15460ce5441efc1619a14bd4d4fd0 linux-3.0/arch/arm/mach-s3c24a0/include/mach/tick.h -0028be86d83d677fe39a8bbf616fc88b linux-3.0/arch/arm/mach-s3c24a0/include/mach/system.h -ce28c4c2c93453cbf6b9b313c6570173 linux-3.0/arch/arm/mach-s3c24a0/include/mach/regs-irq.h -146797fd1b40b3546bd0e23cf0aa0680 linux-3.0/arch/arm/mach-s3c24a0/include/mach/regs-clock.h -9b812b92104387687d72c956f1c6bbfd linux-3.0/arch/arm/mach-s3c24a0/include/mach/memory.h -b24fce100ddcf8fa4a2d36341ec007be linux-3.0/arch/arm/mach-s3c24a0/include/mach/map.h -e9d0e3f696cbbef753a1e73cda2ca243 linux-3.0/arch/arm/mach-s3c24a0/include/mach/irqs.h -be74ec5b2f51e73bc4c6dc314b394f25 linux-3.0/arch/arm/mach-s3c24a0/include/mach/io.h -0dc71cc0e38c3408e6d2e00233f2ff8d linux-3.0/arch/arm/mach-s3c24a0/include/mach/debug-macro.S -0cfb83fe595c03305511fb39539be9f7 linux-3.0/arch/arm/mach-s3c2443/s3c2443.c -2f38d79c7deca8f103c07435ed642509 linux-3.0/arch/arm/mach-s3c2443/mach-smdk2443.c -6518f6606cee21579ac78e099f624985 linux-3.0/arch/arm/mach-s3c2443/irq.c -b0300fd14d31c1e462acaf8da4b9006c linux-3.0/arch/arm/mach-s3c2443/dma.c -fda64c5fa5bc5714bcb1b67f6702c786 linux-3.0/arch/arm/mach-s3c2443/clock.c -52fc71ef153996e4b6b47727e4464d3c linux-3.0/arch/arm/mach-s3c2443/Makefile -601fbd42ee6a97396f1918ceab78fbe9 linux-3.0/arch/arm/mach-s3c2443/Kconfig -8f907969dfc3651fcd13efc63cdddb63 linux-3.0/arch/arm/mach-s3c2440/s3c244x.c -96f5b746104e9ef7a93eebea10f78ae7 linux-3.0/arch/arm/mach-s3c2440/s3c244x-irq.c -767f73c2641863f34d78912e23cc53fb linux-3.0/arch/arm/mach-s3c2440/s3c244x-clock.c -e5b7494963504c01d6555fa09b6f9698 linux-3.0/arch/arm/mach-s3c2440/s3c2442.c -e81aa57f6cafad082f551e90c89b2d52 linux-3.0/arch/arm/mach-s3c2440/s3c2440.c -979f90d80afbb8bfdfd71b8ff15dbdc9 linux-3.0/arch/arm/mach-s3c2440/s3c2440-pll-16934400.c -dbdfdccbc01609038947eb4a199007fe linux-3.0/arch/arm/mach-s3c2440/s3c2440-pll-12000000.c -2d8240e83457f76f8bedd29d2bbf10c9 linux-3.0/arch/arm/mach-s3c2440/s3c2440-cpufreq.c -66cde1a884cf05e3d1bd5025c2ee5891 linux-3.0/arch/arm/mach-s3c2440/mach-smdk2440.c -f6fb603eaac2b3248635b97423f4bf3e linux-3.0/arch/arm/mach-s3c2440/mach-rx3715.c -47fa9794f14fc63829ac196bf5d9ec81 linux-3.0/arch/arm/mach-s3c2440/mach-rx1950.c -27615ab88606618eb37c995791d20443 linux-3.0/arch/arm/mach-s3c2440/mach-osiris.c -e9be5d931212545ba3fcc74041d7dd8e linux-3.0/arch/arm/mach-s3c2440/mach-osiris-dvs.c -c9b675c4f917d6536538dfa56f7a2a5b linux-3.0/arch/arm/mach-s3c2440/mach-nexcoder.c -bfc55fb4361ceba1b5d874b5f323c833 linux-3.0/arch/arm/mach-s3c2440/mach-mini2440.c -b5f6d02127b4a70d256e829eb593dee6 linux-3.0/arch/arm/mach-s3c2440/mach-gta02.c -9d4536c34390c5fc0c78072523460779 linux-3.0/arch/arm/mach-s3c2440/mach-at2440evb.c -e0842afdc5088a41e56d9459a1e4f9be linux-3.0/arch/arm/mach-s3c2440/mach-anubis.c -019d53077a3aaf54b9f7d6035259ee26 linux-3.0/arch/arm/mach-s3c2440/irq.c -242af767ed4c83a34613d0ebb397946b linux-3.0/arch/arm/mach-s3c2440/include/mach/gta02.h -04371b6cb5923b650336ac69bbedef4f linux-3.0/arch/arm/mach-s3c2440/dsc.c -ea6ae9647e8f0019439ce2e905dbac31 linux-3.0/arch/arm/mach-s3c2440/dma.c -7795b5ccecfefe74ed188e092cb247b6 linux-3.0/arch/arm/mach-s3c2440/clock.c -dd9c458b75e165b053373eb072a13196 linux-3.0/arch/arm/mach-s3c2440/Makefile -13dbad2acd7538fbed8d31dcde8bc9f6 linux-3.0/arch/arm/mach-s3c2440/Kconfig -15c8077c61b214b7cf5d9eb0e5d1d9af linux-3.0/arch/arm/mach-s3c2416/setup-sdhci.c -73da2aa443257650881c5afebabfd224 linux-3.0/arch/arm/mach-s3c2416/setup-sdhci-gpio.c -a6180c2679fcdb4d5c91fa7143edb2da linux-3.0/arch/arm/mach-s3c2416/s3c2416.c -f6f64cfa4b9e476bd2283fb5f31819bf linux-3.0/arch/arm/mach-s3c2416/pm.c -db2421b98740ec490dc9fbf8ddd83a64 linux-3.0/arch/arm/mach-s3c2416/mach-smdk2416.c -2e79cd21e225b3873c71ce546dac90b6 linux-3.0/arch/arm/mach-s3c2416/irq.c -b08c8c9dfaee1ffc17bef42f2bf9b5b5 linux-3.0/arch/arm/mach-s3c2416/clock.c -ddbec61c0c81f9c84d63ec96acdba6bb linux-3.0/arch/arm/mach-s3c2416/Makefile -967ca1c480a013f21e1e4ebcf8908979 linux-3.0/arch/arm/mach-s3c2416/Kconfig -422a40abfbdebb59ca93ee6153e387f9 linux-3.0/arch/arm/mach-s3c2412/sleep.S -2b2b82f2de5d5e40df6e4e8aa88aebe3 linux-3.0/arch/arm/mach-s3c2412/s3c2412.c -74001651b4c44117f0b48a7fe834b215 linux-3.0/arch/arm/mach-s3c2412/pm.c -b518bca341fa0b9925b020b43bf434ff linux-3.0/arch/arm/mach-s3c2412/mach-vstms.c -0f09404147e84ff0d65af3d246a41c76 linux-3.0/arch/arm/mach-s3c2412/mach-smdk2413.c -f78fadb312b0f2348127b09cbc18ca49 linux-3.0/arch/arm/mach-s3c2412/mach-jive.c -0c94acc7530445e00511b0fb05075b63 linux-3.0/arch/arm/mach-s3c2412/irq.c -3c8e8dfb8effaaeb58507b033496663f linux-3.0/arch/arm/mach-s3c2412/gpio.c -c6af2176790a0d44fa8e61ba23712c10 linux-3.0/arch/arm/mach-s3c2412/dma.c -ef8e4d7d941cc902dba32c9d33478730 linux-3.0/arch/arm/mach-s3c2412/cpu-freq.c -4d0f5f2d1876289ccebf51292ad13d5f linux-3.0/arch/arm/mach-s3c2412/clock.c -f3c0f0e40dbce6a886803879af6c2231 linux-3.0/arch/arm/mach-s3c2412/Makefile -6794bc855f614a6d9be28b10eb1fb19a linux-3.0/arch/arm/mach-s3c2412/Kconfig -e2aaf48fa0801b7039ebaba95e2bf657 linux-3.0/arch/arm/mach-s3c2410/usb-simtec.h -fe6fa5573a6d586ea5a53b6b5e393f37 linux-3.0/arch/arm/mach-s3c2410/usb-simtec.c -fa87e7d3465c9a3217e0a00300a6206d linux-3.0/arch/arm/mach-s3c2410/sleep.S -86653df29c1aa5a2b8b10442d00dca48 linux-3.0/arch/arm/mach-s3c2410/s3c2410.c -c28e3289b12ce36893622278eede730d linux-3.0/arch/arm/mach-s3c2410/pm.c -9a33288943a36e57a3d5e7d003bd554c linux-3.0/arch/arm/mach-s3c2410/pm-h1940.S -dea188931cf6e0b12e791c6ef9508b27 linux-3.0/arch/arm/mach-s3c2410/pll.c -d8e17af60a624357dbc1de6eff598939 linux-3.0/arch/arm/mach-s3c2410/nor-simtec.h -d61a7c4cb4533f84d554fe7a9e371b52 linux-3.0/arch/arm/mach-s3c2410/nor-simtec.c -9fec1b6cf5a34e0a8ec476950858b03c linux-3.0/arch/arm/mach-s3c2410/mach-vr1000.c -651c78a58d982a67147dbb4914fe288f linux-3.0/arch/arm/mach-s3c2410/mach-tct_hammer.c -e675850c4cc52e31efe52acce663071f linux-3.0/arch/arm/mach-s3c2410/mach-smdk2410.c -683dfa8dd18b3817f74f2db9c94d2423 linux-3.0/arch/arm/mach-s3c2410/mach-qt2410.c -146976cec28126de9f698899c49c4c1f linux-3.0/arch/arm/mach-s3c2410/mach-otom.c -8343d6ce455abff85f7cd048aef1f662 linux-3.0/arch/arm/mach-s3c2410/mach-n30.c -38238e5c4e69419a40abde88be0a5b91 linux-3.0/arch/arm/mach-s3c2410/mach-h1940.c -65ed9bef9b9d51eb7a6c5b1ece84f01a linux-3.0/arch/arm/mach-s3c2410/mach-bast.c -069b56935f3cf9edc077b1c94a9e8c59 linux-3.0/arch/arm/mach-s3c2410/mach-amlm5900.c -f233b5a078728c71f3f62016da9f33e8 linux-3.0/arch/arm/mach-s3c2410/include/mach/vr1000-map.h -0e0550890008fa71497188f5c52b8270 linux-3.0/arch/arm/mach-s3c2410/include/mach/vr1000-irq.h -85ddc9400b2e2f13ac0bee34b0501d8d linux-3.0/arch/arm/mach-s3c2410/include/mach/vr1000-cpld.h -8c029ec3cf5f8b8a7700edf56f86bca1 linux-3.0/arch/arm/mach-s3c2410/include/mach/vmalloc.h -96a7c9ec6e683124cdb55e08d5ef9d89 linux-3.0/arch/arm/mach-s3c2410/include/mach/uncompress.h -12343704a4e2d7b01bb849b869fe62b4 linux-3.0/arch/arm/mach-s3c2410/include/mach/timex.h -1d802fbf0c55a47b39df5d04cd94c1d0 linux-3.0/arch/arm/mach-s3c2410/include/mach/tick.h -6177191c2ede35de1d308467a123302c linux-3.0/arch/arm/mach-s3c2410/include/mach/system.h -9a6573a9e68323de2b72a23a3b9d3060 linux-3.0/arch/arm/mach-s3c2410/include/mach/system-reset.h -ccf3dcca47e1f71013ae97f9fdd78100 linux-3.0/arch/arm/mach-s3c2410/include/mach/spi.h -e781589871069083cbbf06c92d3bd413 linux-3.0/arch/arm/mach-s3c2410/include/mach/spi-gpio.h -432b193427e9b22153ed70f61473eef7 linux-3.0/arch/arm/mach-s3c2410/include/mach/reset.h -a65e9382276045355031719b7347a2e6 linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-sdi.h -27ca453a8ac398505125e50d1e0f1d69 linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-s3c2443-clock.h -85001e5967aa977f99a1e994312b878c linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-s3c2416.h -b8c963017b58589edc43c38bfb793f14 linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-s3c2416-mem.h -35a8f6c0619bb4731a5f7d6f825e00e1 linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-s3c2412.h -8e2b29f4cc563f0d86cd0352d9647833 linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-s3c2412-mem.h -e846c239002c8289dcbbf1eb5a6c7bfb linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-power.h -22d3398a8b2b81126a4287aaca65c68d linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-mem.h -c558af7d70f06d3bc9e1220db3b056dd linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-lcd.h -3dc494dadb214cc394f7053d0b8a3155 linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-irq.h -f2c144184d1b89ba7eed7cae072455ba linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-gpioj.h -5201a96f1deb5eaa2b3a9516c53454c5 linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-gpio.h -9ba5afca25bbcd391f5eb3b9bc6acab0 linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-dsc.h -b237924e322421f693ba3f5346080f0a linux-3.0/arch/arm/mach-s3c2410/include/mach/regs-clock.h -fc98e3ad9427676e8ea0485cfed92cce linux-3.0/arch/arm/mach-s3c2410/include/mach/pm-core.h -f739383f818246172899280c9d8cf016 linux-3.0/arch/arm/mach-s3c2410/include/mach/otom-map.h -7d57dd03765932108f22a6961c521307 linux-3.0/arch/arm/mach-s3c2410/include/mach/osiris-map.h -fd89e8a3567d8a5bd4e8ca098187da2c linux-3.0/arch/arm/mach-s3c2410/include/mach/osiris-cpld.h -3817fb0dd1dcab5be45cf07887f091a0 linux-3.0/arch/arm/mach-s3c2410/include/mach/memory.h -e42382e72309575d3e9f9dadfcb97fce linux-3.0/arch/arm/mach-s3c2410/include/mach/map.h -a2b7ba0ffe9c907a7e81c5477d300bad linux-3.0/arch/arm/mach-s3c2410/include/mach/leds-gpio.h -967e3fa8bb169560acb35afc5cc3cf6a linux-3.0/arch/arm/mach-s3c2410/include/mach/irqs.h -6ad718210d4d35ea1d5bb3e255b380f2 linux-3.0/arch/arm/mach-s3c2410/include/mach/io.h -ebc34d397a957812549db6a593840987 linux-3.0/arch/arm/mach-s3c2410/include/mach/idle.h -18b42acefa83d8a44fc155683c742912 linux-3.0/arch/arm/mach-s3c2410/include/mach/hardware.h -1de1c00b817681255dda94fee0d00767 linux-3.0/arch/arm/mach-s3c2410/include/mach/h1940.h -ae440097ee366d10ba52fa14dcbe87a7 linux-3.0/arch/arm/mach-s3c2410/include/mach/h1940-latch.h -69a937258376c2447c61b157742e1d80 linux-3.0/arch/arm/mach-s3c2410/include/mach/gpio.h -07dd98b9a9e85d7a9596981753e3b351 linux-3.0/arch/arm/mach-s3c2410/include/mach/gpio-track.h -17f072e332777db40066f16cb37fe334 linux-3.0/arch/arm/mach-s3c2410/include/mach/gpio-nrs.h -4f3ed667ff220b77a5973c9fca1f43f9 linux-3.0/arch/arm/mach-s3c2410/include/mach/gpio-fns.h -01a3ff7c45d5e17b057df5399d1d895b linux-3.0/arch/arm/mach-s3c2410/include/mach/fb.h -a2fe4d709c61f4d3809c2bdaa5c4c9bb linux-3.0/arch/arm/mach-s3c2410/include/mach/entry-macro.S -fd25007ec39d6c995c9f49e2e13846a4 linux-3.0/arch/arm/mach-s3c2410/include/mach/dma.h -aee6e53fcfefa2de9f5479cb5f2dd8f7 linux-3.0/arch/arm/mach-s3c2410/include/mach/debug-macro.S -df331fb3e74023eaa51389d848e3dde8 linux-3.0/arch/arm/mach-s3c2410/include/mach/bast-pmu.h -a3c40ef1ec4d71632788c9e068eec8a4 linux-3.0/arch/arm/mach-s3c2410/include/mach/bast-map.h -8135ca98344e018b79c010214c1046c6 linux-3.0/arch/arm/mach-s3c2410/include/mach/bast-irq.h -32c00316ba045c01317963aff01090d4 linux-3.0/arch/arm/mach-s3c2410/include/mach/bast-cpld.h -9aa9343f2131238b73cbacfdd0e32956 linux-3.0/arch/arm/mach-s3c2410/include/mach/anubis-map.h -eb7d697988cce5f27a526f6d42ab3d0a linux-3.0/arch/arm/mach-s3c2410/include/mach/anubis-irq.h -9cd5734769e16252aa1b8d4d24f7d7c2 linux-3.0/arch/arm/mach-s3c2410/include/mach/anubis-cpld.h -a4e5fd73c5145d0bc2830b6fcc226eff linux-3.0/arch/arm/mach-s3c2410/h1940-bluetooth.c -7e8da5ddd1067d137881030b754fb12b linux-3.0/arch/arm/mach-s3c2410/gpio.c -70b759777b10dab2cf9884c2a6abe719 linux-3.0/arch/arm/mach-s3c2410/dma.c -0ca2eadb29dd19c8e978311fc485531b linux-3.0/arch/arm/mach-s3c2410/cpu-freq.c -1e3956c399eddefc9d0243fa0bc46f00 linux-3.0/arch/arm/mach-s3c2410/bast-irq.c -ffe439088adf68997e4fa9d66b900848 linux-3.0/arch/arm/mach-s3c2410/bast-ide.c -6d23cc75fdf854512a67a1460d8be3e2 linux-3.0/arch/arm/mach-s3c2410/Makefile.boot -e0e3ebf487b196a50fe03fce051f6287 linux-3.0/arch/arm/mach-s3c2410/Makefile -bc3e46982153ae7928b4d6f072b28624 linux-3.0/arch/arm/mach-s3c2410/Kconfig -b17ecf9c419b88bbec705ce6bd44ac65 linux-3.0/arch/arm/mach-s3c2400/include/mach/memory.h -5c74d8e189e6c0dbc37698b4d8e915a4 linux-3.0/arch/arm/mach-s3c2400/include/mach/map.h -3d6275674a6e2c3802d3c272f3498e06 linux-3.0/arch/arm/mach-s3c2400/gpio.c -9d6b64a030b0332c27261a3a5fd7366e linux-3.0/arch/arm/mach-s3c2400/Makefile -7396019cf846b39709fa129dd4a96804 linux-3.0/arch/arm/mach-s3c2400/Kconfig -3a15d8f48dcba29977731abcaa19f22b linux-3.0/arch/arm/mach-rpc/riscpc.c -b45a2b43ef1af9aca26086cba9c1586d linux-3.0/arch/arm/mach-rpc/irq.c -a43d68c7a720ca80ca123614d5946b30 linux-3.0/arch/arm/mach-rpc/include/mach/vmalloc.h -e813db16fe7d938e1b177f4d5aeca3f2 linux-3.0/arch/arm/mach-rpc/include/mach/uncompress.h -9092945f721f5c22856fee59412fc641 linux-3.0/arch/arm/mach-rpc/include/mach/timex.h -8069da9a581b28180e713fe7f2230a01 linux-3.0/arch/arm/mach-rpc/include/mach/system.h -85d9c4123633f248aedd4a63555e31df linux-3.0/arch/arm/mach-rpc/include/mach/memory.h -1d0686665cb44c9c3d276dbca2af4978 linux-3.0/arch/arm/mach-rpc/include/mach/isa-dma.h -9b4dbb22e11a17f93706bc6581939c1f linux-3.0/arch/arm/mach-rpc/include/mach/irqs.h -bdce46d01d7dc9f300ed8e8e9f093bdc linux-3.0/arch/arm/mach-rpc/include/mach/io.h -9359804d1c386f6af69b387b07794dc0 linux-3.0/arch/arm/mach-rpc/include/mach/hardware.h -3ca9194e3b4e2c891633837c426e5430 linux-3.0/arch/arm/mach-rpc/include/mach/entry-macro.S -b46e93771706aef59eee4e25d5be26c2 linux-3.0/arch/arm/mach-rpc/include/mach/debug-macro.S -f2b74aef6e3f91ce7b158c30d40e52c0 linux-3.0/arch/arm/mach-rpc/include/mach/acornfb.h -187a320c68942cd5a49466fbaaa8b198 linux-3.0/arch/arm/mach-rpc/dma.c -abd858e71eec02c5e68186854edbea1b linux-3.0/arch/arm/mach-rpc/Makefile.boot -e7a581167290c9e2e988699c6be3a9b6 linux-3.0/arch/arm/mach-rpc/Makefile -10c266d1f1295c19c46e8c8885857989 linux-3.0/arch/arm/mach-realview/realview_pbx.c -37d7cd4eddc0c09420db86068950e3f5 linux-3.0/arch/arm/mach-realview/realview_pba8.c -de0845e05eea1c89f4fe505b0f0ba1ef linux-3.0/arch/arm/mach-realview/realview_pb11mp.c -c7bb73b1f3a1d8a557889ce0899a5097 linux-3.0/arch/arm/mach-realview/realview_pb1176.c -cc4071fcd6ae7daf1dd3474d1f463f53 linux-3.0/arch/arm/mach-realview/realview_eb.c -df4971ed6366f31db1202f7028794de6 linux-3.0/arch/arm/mach-realview/platsmp.c -bd08e5a4053c2a6fba1ce66348d07ae9 linux-3.0/arch/arm/mach-realview/include/mach/vmalloc.h -8530174e5f7bd7277393b18d66c9cb22 linux-3.0/arch/arm/mach-realview/include/mach/uncompress.h -4b4d603fc71bbb95fa5175fc2ed60739 linux-3.0/arch/arm/mach-realview/include/mach/timex.h -fd59188f86424ef44dc3601082035d1a linux-3.0/arch/arm/mach-realview/include/mach/system.h -16b9c119abfb2e9516f9c9cd2a4eac12 linux-3.0/arch/arm/mach-realview/include/mach/platform.h -6d4fd5a17354bb9ff1f8dbfaa30e0075 linux-3.0/arch/arm/mach-realview/include/mach/memory.h -0c0c9e97958620e3357d67eacd002952 linux-3.0/arch/arm/mach-realview/include/mach/irqs.h -21cd20f8069ceca8596b74c5380de8ec linux-3.0/arch/arm/mach-realview/include/mach/irqs-pbx.h -dab7b6d7b2f30ee9f10b1e9c582d19d8 linux-3.0/arch/arm/mach-realview/include/mach/irqs-pba8.h -86ed6ba82262686ddf7e0032600dd750 linux-3.0/arch/arm/mach-realview/include/mach/irqs-pb11mp.h -05a54ad9c075d58d13a270d82cdda196 linux-3.0/arch/arm/mach-realview/include/mach/irqs-pb1176.h -5ccd75d53917888add8d1900aa6c6924 linux-3.0/arch/arm/mach-realview/include/mach/irqs-eb.h -302fd697b3588e567b916c9c25f2f683 linux-3.0/arch/arm/mach-realview/include/mach/io.h -efe800b8b1a48f546653ffa35a38d189 linux-3.0/arch/arm/mach-realview/include/mach/hardware.h -20662171cc9f604f85a3c9f6a21b4556 linux-3.0/arch/arm/mach-realview/include/mach/gpio.h -6383503edaf976247164e50d9935e38f linux-3.0/arch/arm/mach-realview/include/mach/entry-macro.S -70c32592071bd689807f94de3ab0e6c2 linux-3.0/arch/arm/mach-realview/include/mach/debug-macro.S -753b322c584c0918e53ce74729f576bf linux-3.0/arch/arm/mach-realview/include/mach/clkdev.h -4b4f62e24fbcfc148eaba9f6ac5b942a linux-3.0/arch/arm/mach-realview/include/mach/board-pbx.h -37760a6aec236e4d1423e252b7a9dc40 linux-3.0/arch/arm/mach-realview/include/mach/board-pba8.h -ca4452037451c0a04885e4b7336200fc linux-3.0/arch/arm/mach-realview/include/mach/board-pb11mp.h -a3a405aacdedf83e040c2253eaa8bf42 linux-3.0/arch/arm/mach-realview/include/mach/board-pb1176.h -65335ab0bf747d02a01f35c10a64b46d linux-3.0/arch/arm/mach-realview/include/mach/board-eb.h -e4d29fbc1072d8512e314dd4fde13191 linux-3.0/arch/arm/mach-realview/include/mach/barriers.h -ef1c8993372e24d6b88ea3a8a612f668 linux-3.0/arch/arm/mach-realview/hotplug.c -e5e62c37bf732d6eeb79de41210e9cba linux-3.0/arch/arm/mach-realview/core.h -99f71d46de62e907b7c41881dd84da67 linux-3.0/arch/arm/mach-realview/core.c -97c2a655fa60bbd2643c896984051a8f linux-3.0/arch/arm/mach-realview/Makefile.boot -e7d6117aaa50dae1c8232dcd48f90f08 linux-3.0/arch/arm/mach-realview/Makefile -249056920cd52f657b17c17230b0a3c9 linux-3.0/arch/arm/mach-realview/Kconfig -063af669953030ed7e68d2482d3eea39 linux-3.0/arch/arm/mach-pxa/zylonite_pxa320.c -49b23090ec3471e1eeb99a67fc49f6cf linux-3.0/arch/arm/mach-pxa/zylonite_pxa300.c -04303d8972e5811b539f0575d0e08fd0 linux-3.0/arch/arm/mach-pxa/zylonite.c -b39763ee99bca45557ca9e4893f1c624 linux-3.0/arch/arm/mach-pxa/zeus.c -fb8e5c72fdc46def337ef386bb18b1f4 linux-3.0/arch/arm/mach-pxa/z2.c -99b73bbe50ebcf31a36e77e5238c77c5 linux-3.0/arch/arm/mach-pxa/xcep.c -0cdd683d744f3cde041a27f5124368cf linux-3.0/arch/arm/mach-pxa/vpac270.c -b5a9ca80bade41e3d17e5738e6f71ec8 linux-3.0/arch/arm/mach-pxa/viper.c -8dc18c9d5db89f8ac8fed2c4da078e7e linux-3.0/arch/arm/mach-pxa/trizeps4.c -2b10712ead16bc7d99b9e022b5b39567 linux-3.0/arch/arm/mach-pxa/tosa.c -246c2a3d7bced81e817239a3e6d01c3d linux-3.0/arch/arm/mach-pxa/tosa-bt.c -bd9dc7f9bec0b4aba904a9686c9e786c linux-3.0/arch/arm/mach-pxa/time.c -00d085432c8e7b2237437eb047814ca3 linux-3.0/arch/arm/mach-pxa/tavorevb3.c -d088dfb33fe307f8ab6eaabefe0e8bf6 linux-3.0/arch/arm/mach-pxa/tavorevb.c -2e326294c10220239eaae9327849ae2e linux-3.0/arch/arm/mach-pxa/stargate2.c -7253f9a0ac54f64239af830f997210b0 linux-3.0/arch/arm/mach-pxa/standby.S -2f5120ac5a19a08352c3648729a312d0 linux-3.0/arch/arm/mach-pxa/spitz_pm.c -221774f5f33940180e487e2b2980c440 linux-3.0/arch/arm/mach-pxa/spitz.c -017aeb6c6dd2b4063e0f8e226a5a15db linux-3.0/arch/arm/mach-pxa/smemc.c -f9f7bee35a0ffdc5d235193a3e8c4d30 linux-3.0/arch/arm/mach-pxa/sleep.S -0822fa6c95d4cea5e71bf8e77fcf293e linux-3.0/arch/arm/mach-pxa/sharpsl_pm.c -ed90264058bb542fc07e437fbf580000 linux-3.0/arch/arm/mach-pxa/saarb.c -663e6ce0a3820c4389555598f0e2af8f linux-3.0/arch/arm/mach-pxa/saar.c -7fd4362e318679d728132c3fe4bdde8a linux-3.0/arch/arm/mach-pxa/reset.c -0b9d1e1f3abcec48831387b476c3aa00 linux-3.0/arch/arm/mach-pxa/raumfeld.c -ddbafc0df1e1489a6a3647748df5ea65 linux-3.0/arch/arm/mach-pxa/pxa95x.c -bc605cf2ae2eff4354af49bf3e7887b7 linux-3.0/arch/arm/mach-pxa/pxa930.c -5249fa24a48bc0ea4635377584467602 linux-3.0/arch/arm/mach-pxa/pxa3xx.c -be08b1ccec3afccfe8c63d3e30988b7f linux-3.0/arch/arm/mach-pxa/pxa3xx-ulpi.c -50644c8db33e7ff4664dc6f0b07de593 linux-3.0/arch/arm/mach-pxa/pxa320.c -96852be0b8f6981ccb1b47fc08b8b271 linux-3.0/arch/arm/mach-pxa/pxa300.c -9fea29b397349cb574b8e7c2eb168049 linux-3.0/arch/arm/mach-pxa/pxa2xx.c -b856282853e528ef2f6fad7c25c1af40 linux-3.0/arch/arm/mach-pxa/pxa27x.c -24a672e6e5d6491da2c3ff125a0583d1 linux-3.0/arch/arm/mach-pxa/pxa25x.c -8a5147050baea8258da0235465310e51 linux-3.0/arch/arm/mach-pxa/poodle.c -05833011babbbc9db87e1633a4366e78 linux-3.0/arch/arm/mach-pxa/pm.c -063689421ba0d29b5e1f98830a6dcaf1 linux-3.0/arch/arm/mach-pxa/pcm990-baseboard.c -b1d20c9ed12a9fd325b36c8bbe2c79af linux-3.0/arch/arm/mach-pxa/pcm027.c -1ee09be7f685effb2e729244a1ac4745 linux-3.0/arch/arm/mach-pxa/palmz72.c -8f69839e47dc5f0436c10189c7da1529 linux-3.0/arch/arm/mach-pxa/palmtx.c -0606716fbc88dd121148a95bd1a50d31 linux-3.0/arch/arm/mach-pxa/palmtreo.c -ac1783fc75b1b5a1b4ff2abce9d92a55 linux-3.0/arch/arm/mach-pxa/palmte2.c -7d56f1afdb222ba77e9b041a8db89259 linux-3.0/arch/arm/mach-pxa/palmtc.c -6a6479454641719208ab9407a30197a8 linux-3.0/arch/arm/mach-pxa/palmt5.c -1f28196e394310e1623ecb02a0f45f37 linux-3.0/arch/arm/mach-pxa/palmld.c -833854a6f5f2dd64684a6270172ece7c linux-3.0/arch/arm/mach-pxa/palm27x.c -f61ca6a2571dccaee16f12cd60e82cde linux-3.0/arch/arm/mach-pxa/mxm8x10.c -3093aad795cf5c4b1490cb5cde8228f5 linux-3.0/arch/arm/mach-pxa/mp900.c -e0b5ebf66551df5092ad1ca1af453853 linux-3.0/arch/arm/mach-pxa/mioa701_bootresume.S -2fad18ca3820a9f89f8cc08817a58fa5 linux-3.0/arch/arm/mach-pxa/mioa701.c -d3a7280de95d4391b2da732ac851555b linux-3.0/arch/arm/mach-pxa/mfp-pxa3xx.c -d89af886a90cc210861753f307b6c1b2 linux-3.0/arch/arm/mach-pxa/mfp-pxa2xx.c -f7e19c6c52aa3b22273921ec46365a63 linux-3.0/arch/arm/mach-pxa/mainstone.c -535967d2a18c4ef9017d6f07f0783710 linux-3.0/arch/arm/mach-pxa/magician.c -f457ee79afae90ce428a389cf40e7df3 linux-3.0/arch/arm/mach-pxa/lubbock.c -c9ed5e900dd1caa3430d0bddd3db002b linux-3.0/arch/arm/mach-pxa/lpd270.c -116c95e21fe2acad93d35b3ef9900cbd linux-3.0/arch/arm/mach-pxa/littleton.c -ba938f45a66e3feb02ad0f1c892604c8 linux-3.0/arch/arm/mach-pxa/leds.h -fe79499bafcf9ff2fb153217a65922d5 linux-3.0/arch/arm/mach-pxa/leds.c -4b81c8610b5d8f7c2298a6cd293e883c linux-3.0/arch/arm/mach-pxa/leds-mainstone.c -7bc428b6a1041c51a3f4c7fc4a73c6ee linux-3.0/arch/arm/mach-pxa/leds-lubbock.c -9fb6875f690a5373defe3b7f5f2a1385 linux-3.0/arch/arm/mach-pxa/leds-idp.c -93c069a34bfd1f6f7793016d31885887 linux-3.0/arch/arm/mach-pxa/irq.c -f6a6c9c4848c01e20c079f6ca289a3e9 linux-3.0/arch/arm/mach-pxa/include/mach/zylonite.h -f39d937bc1e070fa2f0a91b8dc90f956 linux-3.0/arch/arm/mach-pxa/include/mach/zeus.h -dc32ef474e64e9c6c19bf716b7a46354 linux-3.0/arch/arm/mach-pxa/include/mach/z2.h -0ee7e3cd1bfdf6c8f6523c9fe4ca4ee3 linux-3.0/arch/arm/mach-pxa/include/mach/vpac270.h -ff1d9b0146d1c28e558386e775cf2514 linux-3.0/arch/arm/mach-pxa/include/mach/vmalloc.h -3599f494b0d9c77ea510de827091cad6 linux-3.0/arch/arm/mach-pxa/include/mach/viper.h -cb756a7a91df3bfef2883072e3a97b20 linux-3.0/arch/arm/mach-pxa/include/mach/uncompress.h -a208e37434fe8a0ba34177c184db9862 linux-3.0/arch/arm/mach-pxa/include/mach/udc.h -aeb9864eac7c50235edb5a139c87e093 linux-3.0/arch/arm/mach-pxa/include/mach/trizeps4.h -5c4d76dc079711bae4bca71ff7b8208e linux-3.0/arch/arm/mach-pxa/include/mach/tosa_bt.h -d0c3f911d94e84dffe1e7386422f368f linux-3.0/arch/arm/mach-pxa/include/mach/tosa.h -a59245626f3d8d87e756ba57d7ab1a8d linux-3.0/arch/arm/mach-pxa/include/mach/timex.h -795a43dbbbcdfa4b0ca983f2f5c5c635 linux-3.0/arch/arm/mach-pxa/include/mach/system.h -b6c015fe064a479984895b196809c9a2 linux-3.0/arch/arm/mach-pxa/include/mach/spitz.h -2f148e4551d967b4a7a993c460c35397 linux-3.0/arch/arm/mach-pxa/include/mach/smemc.h -5a9a561f4b006897bced7e488b74cbf4 linux-3.0/arch/arm/mach-pxa/include/mach/sharpsl_pm.h -f0e90622a765c0dc79f39a8e139b4a74 linux-3.0/arch/arm/mach-pxa/include/mach/reset.h -916d25b48387e6a23fc1335b52472709 linux-3.0/arch/arm/mach-pxa/include/mach/regs-uart.h -85cb4c7c4c35554292b345917b4f27be linux-3.0/arch/arm/mach-pxa/include/mach/regs-u2d.h -0de9da6bbaa9d7ff43d4dbe5c8212942 linux-3.0/arch/arm/mach-pxa/include/mach/regs-rtc.h -7385c8f801a5bb0af9dcb52314ed6af5 linux-3.0/arch/arm/mach-pxa/include/mach/regs-ost.h -2e2058067f1def6900a7a5d3576eae37 linux-3.0/arch/arm/mach-pxa/include/mach/regs-lcd.h -3073c970e3979161188cf71bb1934d52 linux-3.0/arch/arm/mach-pxa/include/mach/regs-intc.h -a2c67f3ea25e557fd63faf614463120f linux-3.0/arch/arm/mach-pxa/include/mach/regs-ac97.h -a3f6b44feff1a542974d715c11a37733 linux-3.0/arch/arm/mach-pxa/include/mach/pxafb.h -697778cdc35db48ab0d7b96c1ce83a9c linux-3.0/arch/arm/mach-pxa/include/mach/pxa930_trkball.h -09c4882f4f0d7299e2851cb2d576de08 linux-3.0/arch/arm/mach-pxa/include/mach/pxa930_rotary.h -63ca14d7bcaf378062d8cb374d827167 linux-3.0/arch/arm/mach-pxa/include/mach/pxa930.h -8f75fbeb8de1466c12e904f61a39e982 linux-3.0/arch/arm/mach-pxa/include/mach/pxa3xx-u2d.h -b391c5d6b888ea43fe31c8bdc31a5f95 linux-3.0/arch/arm/mach-pxa/include/mach/pxa3xx-regs.h -fdebdda738071a85cfdda36046438671 linux-3.0/arch/arm/mach-pxa/include/mach/pxa320.h -091861804e9b3dd10ef66652fefdfd35 linux-3.0/arch/arm/mach-pxa/include/mach/pxa300.h -09dc85ac7dbb65da4c179d03b8df5d66 linux-3.0/arch/arm/mach-pxa/include/mach/pxa2xx-regs.h -45d6e0fb73d43439b2a9fa73f1722248 linux-3.0/arch/arm/mach-pxa/include/mach/pxa27x.h -a2b3d970471baecb0be7209ab14202c8 linux-3.0/arch/arm/mach-pxa/include/mach/pxa27x-udc.h -b42313e43233c03463ac1d5055d99165 linux-3.0/arch/arm/mach-pxa/include/mach/pxa25x.h -ad196a895362df22d8ab4b69629242b4 linux-3.0/arch/arm/mach-pxa/include/mach/pxa25x-udc.h -c77ea5852040148251d95295f30499c0 linux-3.0/arch/arm/mach-pxa/include/mach/poodle.h -46e1d54d40e1f91f0aca453dcdc785af linux-3.0/arch/arm/mach-pxa/include/mach/pm.h -03fe47c07d8ccda446d1f5ac8a4dcbfa linux-3.0/arch/arm/mach-pxa/include/mach/pcm990_baseboard.h -7c6876dc57d84a16726635733bff5562 linux-3.0/arch/arm/mach-pxa/include/mach/pcm027.h -47c78bb2357f13f5725b5255169841af linux-3.0/arch/arm/mach-pxa/include/mach/pata_pxa.h -5a467e48c2324dad6f4114e11b090608 linux-3.0/arch/arm/mach-pxa/include/mach/palmz72.h -562049f85d87dcf432057d915dd79c80 linux-3.0/arch/arm/mach-pxa/include/mach/palmtx.h -9bee6a89da256e18b3126e15111466d3 linux-3.0/arch/arm/mach-pxa/include/mach/palmtreo.h -9e421ca18dbe84bd48f234c1d7a55b89 linux-3.0/arch/arm/mach-pxa/include/mach/palmte2.h -f579232c1c0d80de6338ecfe16f8e667 linux-3.0/arch/arm/mach-pxa/include/mach/palmtc.h -c3ff73da4038fcc060d86dba316f2b71 linux-3.0/arch/arm/mach-pxa/include/mach/palmt5.h -dae51ca3fa9d38a27cb5e4730995f008 linux-3.0/arch/arm/mach-pxa/include/mach/palmld.h -465dca42bea371a8c9ab2e02e68cc871 linux-3.0/arch/arm/mach-pxa/include/mach/palmasoc.h -00db9fe495b8d81f32b416de5f441b63 linux-3.0/arch/arm/mach-pxa/include/mach/palm27x.h -3aa097571f3e2063b5884abadbcd0f1c linux-3.0/arch/arm/mach-pxa/include/mach/ohci.h -7be7dd2366daaf498ee95bd75015d52a linux-3.0/arch/arm/mach-pxa/include/mach/mxm8x10.h -1464aa5db715cb96c21c762a9c04c3b1 linux-3.0/arch/arm/mach-pxa/include/mach/mtd-xip.h -b2f36452fe363e781fdb5a729edd61dd linux-3.0/arch/arm/mach-pxa/include/mach/mmc.h -92e06f83a69d13b590a6e2dc84a8e1b6 linux-3.0/arch/arm/mach-pxa/include/mach/mioa701.h -f1684b0b6c2d73aada0a68bc64eabc7c linux-3.0/arch/arm/mach-pxa/include/mach/mfp.h -85afbc08220e7bc5786da8566fe02c77 linux-3.0/arch/arm/mach-pxa/include/mach/mfp-pxa930.h -4291ab9499247f439d03127d2639ab6a linux-3.0/arch/arm/mach-pxa/include/mach/mfp-pxa3xx.h -04de11e7d7d8c1894fc8fa99f6714fbc linux-3.0/arch/arm/mach-pxa/include/mach/mfp-pxa320.h -9b2a295d6dd5847b6c2ff2325a2d74c5 linux-3.0/arch/arm/mach-pxa/include/mach/mfp-pxa300.h -0b5c745239ab99324f27e108204084a7 linux-3.0/arch/arm/mach-pxa/include/mach/mfp-pxa2xx.h -a3c4cf81364eaae3b467225b5701e289 linux-3.0/arch/arm/mach-pxa/include/mach/mfp-pxa27x.h -23dd154631d6fc69e59c5600440e92e1 linux-3.0/arch/arm/mach-pxa/include/mach/mfp-pxa25x.h -f12164b4d69832b74c3db90061286825 linux-3.0/arch/arm/mach-pxa/include/mach/memory.h -241b92a432fcfa52c340646d14554bf0 linux-3.0/arch/arm/mach-pxa/include/mach/mainstone.h -6691c3cc43dc7adbb64b002b7194998a linux-3.0/arch/arm/mach-pxa/include/mach/magician.h -58e5218264a16e2ba045fe2c12e5f29a linux-3.0/arch/arm/mach-pxa/include/mach/lubbock.h -bf525ef62544b4807ba3552eea4adf9e linux-3.0/arch/arm/mach-pxa/include/mach/lpd270.h -89e34515890e3369bb8c96c8799aabad linux-3.0/arch/arm/mach-pxa/include/mach/littleton.h -94af97f2bba62b994486d8bf1af72058 linux-3.0/arch/arm/mach-pxa/include/mach/irqs.h -96c9346ccb9811c780bf4fd3f627f043 linux-3.0/arch/arm/mach-pxa/include/mach/irda.h -d759951e2b8473294b98ede5967ffb37 linux-3.0/arch/arm/mach-pxa/include/mach/io.h -6232f4c96ef1daa47d06e9240a0206a2 linux-3.0/arch/arm/mach-pxa/include/mach/idp.h -8ee22832c57fa128e4c0fef35239c3a5 linux-3.0/arch/arm/mach-pxa/include/mach/hx4700.h -2443d464dbd0bcf908de31ecbec57a4e linux-3.0/arch/arm/mach-pxa/include/mach/hardware.h -85527b3c6eb62d16f355b4ce527681c3 linux-3.0/arch/arm/mach-pxa/include/mach/h5000.h -8da19a9d3b10b4f9fb0d664312ad4757 linux-3.0/arch/arm/mach-pxa/include/mach/gumstix.h -42d5c61c58d902910d7b6f81d8059370 linux-3.0/arch/arm/mach-pxa/include/mach/gpio.h -6cf75da3c7e9e7272da1b28c575f718b linux-3.0/arch/arm/mach-pxa/include/mach/eseries-irq.h -3197c1bc0140a25818f0da2b9ed784a2 linux-3.0/arch/arm/mach-pxa/include/mach/eseries-gpio.h -1a55f9da7c1d9e9f65a2331df8ba43e2 linux-3.0/arch/arm/mach-pxa/include/mach/entry-macro.S -7b84f114277766555ae03734dc78db57 linux-3.0/arch/arm/mach-pxa/include/mach/dma.h -947167eed1f705a5b846504e8aec89f7 linux-3.0/arch/arm/mach-pxa/include/mach/debug-macro.S -d057804e6e800f98c895adae5f9d24f2 linux-3.0/arch/arm/mach-pxa/include/mach/csb726.h -951c91752327263f01fd950a4fc16c18 linux-3.0/arch/arm/mach-pxa/include/mach/corgi.h -76b3d9cc33481def119d6b430d2cb65a linux-3.0/arch/arm/mach-pxa/include/mach/colibri.h -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/mach-pxa/include/mach/clkdev.h -6045429a8f62d512cd382067193d9d7c linux-3.0/arch/arm/mach-pxa/include/mach/camera.h -9b99dab391cc8d2de8bc6de42ad5e705 linux-3.0/arch/arm/mach-pxa/include/mach/bitfield.h -20226af7f88458a5852293c558586774 linux-3.0/arch/arm/mach-pxa/include/mach/balloon3.h -77cd40f6b3c0a66007807a63caaa521f linux-3.0/arch/arm/mach-pxa/include/mach/audio.h -cdf1b6ad87f6bd21b9cf4dafc7c2519e linux-3.0/arch/arm/mach-pxa/include/mach/arcom-pcmcia.h -6ab1b806baec232ceab4108515f75369 linux-3.0/arch/arm/mach-pxa/include/mach/addr-map.h -70926e873d5a775886bb2810ab5977db linux-3.0/arch/arm/mach-pxa/idp.c -c641d9a3b3076a457826bcfbfa011740 linux-3.0/arch/arm/mach-pxa/icontrol.c -8d070acdb8caf8d7d58f03493862a347 linux-3.0/arch/arm/mach-pxa/hx4700.c -eab785bc7031a6553632052a6dc7b2b5 linux-3.0/arch/arm/mach-pxa/himalaya.c -cebfe205763e3337af2ec7a3c93d66b4 linux-3.0/arch/arm/mach-pxa/h5000.c -1106c694b3f84a8eb3ae95d57f4aad49 linux-3.0/arch/arm/mach-pxa/gumstix.c -fa5c57b683ccbaf35952f12e5515ca10 linux-3.0/arch/arm/mach-pxa/generic.h -4948d18f8b5eb17ee2052cf6b245f770 linux-3.0/arch/arm/mach-pxa/generic.c -88177ec8bf24947d333ac3f727502894 linux-3.0/arch/arm/mach-pxa/ezx.c -40dc607aed23fe6871b6e83aeab33a12 linux-3.0/arch/arm/mach-pxa/eseries.h -49d6c105c4c20b28ffbd3e47673129af linux-3.0/arch/arm/mach-pxa/eseries.c -ed9fabd51bbcd7298f23d5b2b5d2e809 linux-3.0/arch/arm/mach-pxa/em-x270.c -d28a49f533fd1fe2a5395213482c61f4 linux-3.0/arch/arm/mach-pxa/devices.h -daf4d5b16be021178a6d62ba48f132f1 linux-3.0/arch/arm/mach-pxa/devices.c -ceb5cad5483bb8c9f7fb5c6ff148fa72 linux-3.0/arch/arm/mach-pxa/csb726.c -9097336f6f059e3849b45300a5db3553 linux-3.0/arch/arm/mach-pxa/csb701.c -dd687dc2c06c220c58941e14afda7bf0 linux-3.0/arch/arm/mach-pxa/cpufreq-pxa3xx.c -2afc31498e6c2d5cccb1b277dba08ff5 linux-3.0/arch/arm/mach-pxa/cpufreq-pxa2xx.c -1464363124611278f2ce7aebdf38ccfb linux-3.0/arch/arm/mach-pxa/corgi_pm.c -3711e753a6db754cf98db7cbe9d0ba4c linux-3.0/arch/arm/mach-pxa/corgi.c -fc83cc2616a87a3cf1b3e7ac571a6f0f linux-3.0/arch/arm/mach-pxa/colibri-pxa3xx.c -dce3589753ab85468c1d914ad3b1a492 linux-3.0/arch/arm/mach-pxa/colibri-pxa320.c -e96ee931981e119a9c0ecf3bcc063637 linux-3.0/arch/arm/mach-pxa/colibri-pxa300.c -21688a0e8e9d2c5271215b56a4f25c4e linux-3.0/arch/arm/mach-pxa/colibri-pxa270.c -1fc0a199dad21c2fba20a675335c4480 linux-3.0/arch/arm/mach-pxa/colibri-pxa270-income.c -606fa290134a7a54df8f8e0fdd1a836e linux-3.0/arch/arm/mach-pxa/colibri-evalboard.c -1941c04d318c4da03d625fe3b4000be1 linux-3.0/arch/arm/mach-pxa/cm-x300.c -91e92c82ffdeaf92560104d4e07d48c3 linux-3.0/arch/arm/mach-pxa/cm-x2xx.c -89df50bc844a3441fc2e0705054087ef linux-3.0/arch/arm/mach-pxa/cm-x2xx-pci.h -e7b8380b742fbe75cd6332b897cdb46d linux-3.0/arch/arm/mach-pxa/cm-x2xx-pci.c -95519634f29579e7daa585dbed2c911c linux-3.0/arch/arm/mach-pxa/cm-x270.c -03f158857520fc84abba92cdbf48cd1b linux-3.0/arch/arm/mach-pxa/cm-x255.c -c3ed76f86adba86648a65733b854dab5 linux-3.0/arch/arm/mach-pxa/clock.h -0080b39276f3391a000ac9ac824c8f2c linux-3.0/arch/arm/mach-pxa/clock.c -520977a131a5a980df3cf0e76f134967 linux-3.0/arch/arm/mach-pxa/clock-pxa3xx.c -2f745fe8b8ead14071f5d3cbaff03e78 linux-3.0/arch/arm/mach-pxa/clock-pxa2xx.c -189fc85087a98ee37d2fa2aec90c53d2 linux-3.0/arch/arm/mach-pxa/capc7117.c -df12fffc74d7b50f46729c6cd2225428 linux-3.0/arch/arm/mach-pxa/balloon3.c -ac3c49161b7dd91d81337b14b4064a30 linux-3.0/arch/arm/mach-pxa/am300epd.c -31d7c9ce82ff0082a1bd750e6fe178db linux-3.0/arch/arm/mach-pxa/am200epd.c -170a5716941e4794c63ac0a0e2cd6685 linux-3.0/arch/arm/mach-pxa/Makefile.boot -8f44bb7ba8329cd16771f0dc2c8fa303 linux-3.0/arch/arm/mach-pxa/Makefile -0b98ec5c5aacc9ffa58f5f349029f218 linux-3.0/arch/arm/mach-pxa/Kconfig -5a4e18a3e8ca7ae31fccf43f2932b212 linux-3.0/arch/arm/mach-pnx4008/time.h -e3bbf1c13d5a709c2370377e1c55f76b linux-3.0/arch/arm/mach-pnx4008/time.c -a9342eafc537cdac48654d2703c785cb linux-3.0/arch/arm/mach-pnx4008/sleep.S -d475844c0389af239625c36728b8a8cd linux-3.0/arch/arm/mach-pnx4008/serial.c -f2c94845bac885840f3c827c9ce68b73 linux-3.0/arch/arm/mach-pnx4008/pm.c -22e5a5588287415b6a54a3547d1a238d linux-3.0/arch/arm/mach-pnx4008/irq.c -fcb28c31176d7842328bb56992f5d63c linux-3.0/arch/arm/mach-pnx4008/include/mach/vmalloc.h -d158e809ed960b5d91c2ad918b141e67 linux-3.0/arch/arm/mach-pnx4008/include/mach/uncompress.h -44cc30b51ad6fcea062d32539ea6dbd6 linux-3.0/arch/arm/mach-pnx4008/include/mach/timex.h -58fccea48158c4f1bce5f117d51ca2a7 linux-3.0/arch/arm/mach-pnx4008/include/mach/system.h -56a8c831b137055fa12b992946e60329 linux-3.0/arch/arm/mach-pnx4008/include/mach/pm.h -9f17f1ad6c540329f52504c7edcd1119 linux-3.0/arch/arm/mach-pnx4008/include/mach/platform.h -c8a6cd7fdad1a76d353a62155093d28f linux-3.0/arch/arm/mach-pnx4008/include/mach/param.h -2764cb726eac023909e0c320459444be linux-3.0/arch/arm/mach-pnx4008/include/mach/memory.h -0603a84c7332ab9688bed1af43ccbb34 linux-3.0/arch/arm/mach-pnx4008/include/mach/irqs.h -d2d58f005b6547587d8be14c5659262c linux-3.0/arch/arm/mach-pnx4008/include/mach/irq.h -2d210d290ee85c772bf4b17937d3888c linux-3.0/arch/arm/mach-pnx4008/include/mach/io.h -8d7b7e203441c03279d464f95a508b23 linux-3.0/arch/arm/mach-pnx4008/include/mach/i2c.h -8e91aee6dd509a4d310aca3cc3de6fb2 linux-3.0/arch/arm/mach-pnx4008/include/mach/hardware.h -bde8730d7922f16ca142fb17ad898d3d linux-3.0/arch/arm/mach-pnx4008/include/mach/gpio.h -99812696bda62ce80b59b2dc51479604 linux-3.0/arch/arm/mach-pnx4008/include/mach/entry-macro.S -6c5a2f37984877aa5ac212f876c59c89 linux-3.0/arch/arm/mach-pnx4008/include/mach/dma.h -d3d98391a918a2f88f11512853f0fd59 linux-3.0/arch/arm/mach-pnx4008/include/mach/debug-macro.S -002ae1ca5d6fcd61a0c74b60632c7746 linux-3.0/arch/arm/mach-pnx4008/include/mach/clock.h -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/mach-pnx4008/include/mach/clkdev.h -17ee58e5eb5a3b880a7608d2538e629b linux-3.0/arch/arm/mach-pnx4008/i2c.c -716bdd543897bd76d578648930a0ea21 linux-3.0/arch/arm/mach-pnx4008/gpio.c -9a3c38a013f72a8f829a951978365adc linux-3.0/arch/arm/mach-pnx4008/dma.c -d0a9b8d011e2eec03e61ec2d41c2d785 linux-3.0/arch/arm/mach-pnx4008/core.c -e7643e4dcdaf933af8358a617efdcf18 linux-3.0/arch/arm/mach-pnx4008/clock.h -e8e7c565c7beebfb33dfa7a5979ad677 linux-3.0/arch/arm/mach-pnx4008/clock.c -e04d1c0a01304f35c4f6715d673b6125 linux-3.0/arch/arm/mach-pnx4008/Makefile.boot -932421aa2c0acbd0d68dbbf64a393b2e linux-3.0/arch/arm/mach-pnx4008/Makefile -a5df7aac0a06e0d24673e7c18172fd50 linux-3.0/arch/arm/mach-orion5x/wrt350n-v2-setup.c -242ed6c71c0da63968739f30fd5ab6ae linux-3.0/arch/arm/mach-orion5x/wnr854t-setup.c -25f5410e69f78338a8f78c5b66772b15 linux-3.0/arch/arm/mach-orion5x/tsx09-common.h -d212d03ab74f90e55d8dfe760a13992b linux-3.0/arch/arm/mach-orion5x/tsx09-common.c -5a1054bf292a6b55ef753ad882a93ef7 linux-3.0/arch/arm/mach-orion5x/ts78xx-setup.c -e1a2aa35046ac8f0f4b95eb65e8c8097 linux-3.0/arch/arm/mach-orion5x/ts78xx-fpga.h -19140a51c012284acc94cfcea971ffeb linux-3.0/arch/arm/mach-orion5x/ts409-setup.c -1b238b6f5bf4bc6599615bfd0d515fe5 linux-3.0/arch/arm/mach-orion5x/ts209-setup.c -b5cef003bbe94d57e8230040a65c8ead linux-3.0/arch/arm/mach-orion5x/terastation_pro2-setup.c -7d1d12f7ad22f0ed75137f9d26ef0136 linux-3.0/arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c -05d2ba2879f7371a538e966d42f78f23 linux-3.0/arch/arm/mach-orion5x/rd88f5182-setup.c -ab53fc5cf1ec3a0665b694fc4a26e199 linux-3.0/arch/arm/mach-orion5x/rd88f5181l-ge-setup.c -234cebc8846e1002eb808997583476cc linux-3.0/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c -a1118354f078bb2b1bfeedfe595680c9 linux-3.0/arch/arm/mach-orion5x/pci.c -c5e269385be067a9111f8bedc62a20ed linux-3.0/arch/arm/mach-orion5x/net2big-setup.c -ef03d9314f88b7d5ab389742f26223fb linux-3.0/arch/arm/mach-orion5x/mv2120-setup.c -4b632947e2eec61e29dbeb00b8972d7c linux-3.0/arch/arm/mach-orion5x/mss2-setup.c -201ca8fee527a85bb1f78bb246982bed linux-3.0/arch/arm/mach-orion5x/mpp.h -0de05a57d60c7f68d1d6f5d2e39c421f linux-3.0/arch/arm/mach-orion5x/mpp.c -c092d1bdf84bb9dcdbfa2a250d6461f5 linux-3.0/arch/arm/mach-orion5x/lsmini-setup.c -5cb27e67e18cef8a1659f0d79e3f086b linux-3.0/arch/arm/mach-orion5x/ls_hgl-setup.c -c37b0e8c7d9ff214393b4ec0e22ad529 linux-3.0/arch/arm/mach-orion5x/ls-chl-setup.c -2586e1bdd1c2c9904f5052ce5a887912 linux-3.0/arch/arm/mach-orion5x/kurobox_pro-setup.c -fcb17d2ef8e7ed6b3b5e6c4803c7e4e5 linux-3.0/arch/arm/mach-orion5x/irq.c -b9f6932e3e01048be84157f56552831e linux-3.0/arch/arm/mach-orion5x/include/mach/vmalloc.h -54146800e6f21a4ebb909b2dd396801e linux-3.0/arch/arm/mach-orion5x/include/mach/uncompress.h -4dd1c5e709f686adf94eb16b0812eb39 linux-3.0/arch/arm/mach-orion5x/include/mach/timex.h -2e5e8a29ce29d7d27d5e51085ab49285 linux-3.0/arch/arm/mach-orion5x/include/mach/system.h -e33d739ca1cb40c382b147c1361055e0 linux-3.0/arch/arm/mach-orion5x/include/mach/orion5x.h -ac6567152623d04554d131ae86ccb010 linux-3.0/arch/arm/mach-orion5x/include/mach/memory.h -c07c5dff8a493f733f773e870766a94b linux-3.0/arch/arm/mach-orion5x/include/mach/irqs.h -50d65825f3f746b5906a60afd74c4b65 linux-3.0/arch/arm/mach-orion5x/include/mach/io.h -2f629d4d8aba328319a8538b3e93ab6a linux-3.0/arch/arm/mach-orion5x/include/mach/hardware.h -b4adb517fca4e65ea5a0561b50c807fd linux-3.0/arch/arm/mach-orion5x/include/mach/gpio.h -d0c0f0c8bf4e4eec59c4644cb964d321 linux-3.0/arch/arm/mach-orion5x/include/mach/entry-macro.S -2de54cf705414425f795dbdf5e123f6a linux-3.0/arch/arm/mach-orion5x/include/mach/debug-macro.S -ebcc738e954ebabf1c8aa435cf18574d linux-3.0/arch/arm/mach-orion5x/include/mach/bridge-regs.h -ea0a62c3198fd01c3930a33334084687 linux-3.0/arch/arm/mach-orion5x/edmini_v2-setup.c -7fcda31cc45d9835b87433e362863d2b linux-3.0/arch/arm/mach-orion5x/dns323-setup.c -26dce637c4792aceb352e6aaee5f4bfb linux-3.0/arch/arm/mach-orion5x/db88f5281-setup.c -ed389c288bd4a94347f5c1427a08e419 linux-3.0/arch/arm/mach-orion5x/d2net-setup.c -2509338e9b7a996221f96ed09bd60c9e linux-3.0/arch/arm/mach-orion5x/common.h -68df939f70012d21a9b5cfbe232e0b0c linux-3.0/arch/arm/mach-orion5x/common.c -8f8aec10012d9d375f39d16d62d044e0 linux-3.0/arch/arm/mach-orion5x/addr-map.c -2d8e959feddb306bbe713874054300ba linux-3.0/arch/arm/mach-orion5x/Makefile.boot -07afdfa68e9067526d148cf2a4a96685 linux-3.0/arch/arm/mach-orion5x/Makefile -543b092c6217c5350539bd45b54df63a linux-3.0/arch/arm/mach-orion5x/Kconfig -067875cb093dd4f61beaf45647b863a7 linux-3.0/arch/arm/mach-omap2/wd_timer.h -2b8c8cc484c473c96a4c3a43dc27bb41 linux-3.0/arch/arm/mach-omap2/wd_timer.c -ffde465de1f6b528cf9d073afc3c0c13 linux-3.0/arch/arm/mach-omap2/vp44xx_data.c -19b1fb621b46d0debacf22d395adcd95 linux-3.0/arch/arm/mach-omap2/vp3xxx_data.c -9d1581f0b60288d072f3a6310a45d4cd linux-3.0/arch/arm/mach-omap2/vp.h -4c85dba99fcd012cc9c2341254e5a8f6 linux-3.0/arch/arm/mach-omap2/voltagedomains44xx_data.c -35dadf648c49092d74fa78dee03d8456 linux-3.0/arch/arm/mach-omap2/voltagedomains3xxx_data.c -17fa966bb8117e6e5f1cb2a7e8dad711 linux-3.0/arch/arm/mach-omap2/voltage.h -ea4c021b9c7416da33fb772d50d47b30 linux-3.0/arch/arm/mach-omap2/voltage.c -e897f177e522f9bda21f55d7cdb15fb7 linux-3.0/arch/arm/mach-omap2/vc44xx_data.c -8da374a3571d6c6ed4a3678a1ca97932 linux-3.0/arch/arm/mach-omap2/vc3xxx_data.c -85d59d17eb447d9bf666efc0a592ca4f linux-3.0/arch/arm/mach-omap2/vc.h -13146caeb629fc2ff3fe3b0c82093566 linux-3.0/arch/arm/mach-omap2/usb-tusb6010.c -0117b0046a070369574f991b52c290d8 linux-3.0/arch/arm/mach-omap2/usb-musb.c -6cf0904ff402a4c2e4c7fb7a2baeda23 linux-3.0/arch/arm/mach-omap2/usb-host.c -14826a5882feec8914970db03e8f527c linux-3.0/arch/arm/mach-omap2/usb-fs.c -4403d3cd0c049080098f883f7232025d linux-3.0/arch/arm/mach-omap2/timer-mpu.c -48fb319e5bf2619b67f6b3638e8f2d91 linux-3.0/arch/arm/mach-omap2/timer-gp.h -2b044596cec017397a57bce1bf869fd1 linux-3.0/arch/arm/mach-omap2/timer-gp.c -d04944e453ec521d56220c838f4ea68c linux-3.0/arch/arm/mach-omap2/sram34xx.S -023d07d7ddef43729bf5112a0c892db7 linux-3.0/arch/arm/mach-omap2/sram243x.S -9a338cdaba5e322c15fdfadd34e8cd1c linux-3.0/arch/arm/mach-omap2/sram242x.S -f36b1a0216be2dc88352451ef390c120 linux-3.0/arch/arm/mach-omap2/sr_device.c -99d099b9d09115ef0eebc5cf5f91c41f linux-3.0/arch/arm/mach-omap2/smartreflex.h -94abbacce536c7a91c966f57a077dbde linux-3.0/arch/arm/mach-omap2/smartreflex.c -6d9e9649775860a838a3ce3991895bda linux-3.0/arch/arm/mach-omap2/smartreflex-class3.c -bce80aef5262694dba10c87c58473912 linux-3.0/arch/arm/mach-omap2/sleep34xx.S -2499b87a6371b241b908e0cb22d9cef9 linux-3.0/arch/arm/mach-omap2/sleep24xx.S -16e19b3b6c15320bffc581de8c92ada0 linux-3.0/arch/arm/mach-omap2/serial.c -e76223000f94e40e95499db4312067b5 linux-3.0/arch/arm/mach-omap2/sdrc2xxx.c -b4e9b4dfb955680d9db90d620d40c5f0 linux-3.0/arch/arm/mach-omap2/sdrc.h -2235381191b43853b5d197097753a251 linux-3.0/arch/arm/mach-omap2/sdrc.c -944a6690f5c17f0d6bd2348fcf4e3281 linux-3.0/arch/arm/mach-omap2/sdram-qimonda-hyb18m512160af-6.h -c3f6ec3b7e8d597b927214ee2971d0ce linux-3.0/arch/arm/mach-omap2/sdram-numonyx-m65kxxxxam.h -b383b21c410cc6cc4f8e6e7e7dc851c4 linux-3.0/arch/arm/mach-omap2/sdram-nokia.h -c4c92b99252fdc282fe48583240f6b18 linux-3.0/arch/arm/mach-omap2/sdram-nokia.c -e81dc5a87b309082adcacb6e4011e7f6 linux-3.0/arch/arm/mach-omap2/sdram-micron-mt46h32m32lf-6.h -2ae85c5c357cddba990e0795bbfb3483 linux-3.0/arch/arm/mach-omap2/sdram-hynix-h8mbx00u0mer-0em.h -0bf8e6a3cc99809fb09c5203290326aa linux-3.0/arch/arm/mach-omap2/scrm44xx.h -fe60bec76c283bc8ba5bbd375720ef40 linux-3.0/arch/arm/mach-omap2/prminst44xx.h -a3c2c4f783b0630e5c3384cf7b760936 linux-3.0/arch/arm/mach-omap2/prminst44xx.c -375ed3e10405d34596dac7ad4f6581c5 linux-3.0/arch/arm/mach-omap2/prm44xx.h -6b7fbc2153f3729f5670caa809dd321b linux-3.0/arch/arm/mach-omap2/prm44xx.c -5d4a4609c29b2b51ec1e169f370c70b3 linux-3.0/arch/arm/mach-omap2/prm2xxx_3xxx.h -38cc98261874797dc185c82f68632441 linux-3.0/arch/arm/mach-omap2/prm2xxx_3xxx.c -24a0b5314c401637e99c75a4295546a1 linux-3.0/arch/arm/mach-omap2/prm.h -8f8d90c120bcc2dfc3c79586d2c25b9a linux-3.0/arch/arm/mach-omap2/prm-regbits-44xx.h -f5f630b27598a7277e695a8e5da8250a linux-3.0/arch/arm/mach-omap2/prm-regbits-34xx.h -6f232317495f0ded144a52104d7357d8 linux-3.0/arch/arm/mach-omap2/prm-regbits-24xx.h -55a862ff1d43d18d1fb574aab6f12f50 linux-3.0/arch/arm/mach-omap2/prcm_mpu44xx.h -8039af0410212656cd613546c3dd236b linux-3.0/arch/arm/mach-omap2/prcm_mpu44xx.c -0f821a2e3e13a25ba157ab5320c35148 linux-3.0/arch/arm/mach-omap2/prcm44xx.h -879ab50b52d8ae873bc1df7c5cca45c6 linux-3.0/arch/arm/mach-omap2/prcm.c -e6606f0cbd0e61a987a691e4eddcf144 linux-3.0/arch/arm/mach-omap2/prcm-common.h -6740e585fb4294f4ee7048a858465f3e linux-3.0/arch/arm/mach-omap2/powerdomains44xx_data.c -8752ec0adbd1b39d06a2d9e2d94a9be6 linux-3.0/arch/arm/mach-omap2/powerdomains3xxx_data.c -f564890f9b46bc76a562a7682a9885ab linux-3.0/arch/arm/mach-omap2/powerdomains2xxx_data.c -485236d64edcb89f39d30194bbba5728 linux-3.0/arch/arm/mach-omap2/powerdomains2xxx_3xxx_data.h -00a380fb4ea066b15a7ba8cbf28bda95 linux-3.0/arch/arm/mach-omap2/powerdomains2xxx_3xxx_data.c -899eb8629e9887de1f56a6c99f4f1418 linux-3.0/arch/arm/mach-omap2/powerdomain44xx.c -e69590af7e125da3b302fe3ffebfd7a8 linux-3.0/arch/arm/mach-omap2/powerdomain2xxx_3xxx.c -a1ba088a14e816580627691b2975585d linux-3.0/arch/arm/mach-omap2/powerdomain.h -25d01bb9dd24b63cc12255dc5f5b56e1 linux-3.0/arch/arm/mach-omap2/powerdomain.c -7cbd2bc5268cdebf34798d6caa4e1c2a linux-3.0/arch/arm/mach-omap2/powerdomain-common.c -729fef6be5b732b4b34684ee15d00484 linux-3.0/arch/arm/mach-omap2/pm44xx.c -e1b93ace6506639445a67336d15937fd linux-3.0/arch/arm/mach-omap2/pm34xx.c -e56ba9f6a9b0beeef91f36e9fd84fa91 linux-3.0/arch/arm/mach-omap2/pm24xx.c -5da9d408b017e79a7c6a5f287b612d7d linux-3.0/arch/arm/mach-omap2/pm.h -732c42ab4a09c7df3d6925a2a12525ae linux-3.0/arch/arm/mach-omap2/pm.c -edc495769ffa2ba1f7361063fdc1a6c2 linux-3.0/arch/arm/mach-omap2/pm-debug.c -a62f9287045328b751d72b5ab751455f linux-3.0/arch/arm/mach-omap2/opp4xxx_data.c -c071a98f03f7677d3be57c3498655ce9 linux-3.0/arch/arm/mach-omap2/opp3xxx_data.c -9bcf6be69bdcfd5c5cb2c63bd92a3478 linux-3.0/arch/arm/mach-omap2/opp2xxx.h -40ef369ede36d381fc07e66aa3cf188b linux-3.0/arch/arm/mach-omap2/opp2430_data.c -a653d8ea99c6bdf257352429ea41f222 linux-3.0/arch/arm/mach-omap2/opp2420_data.c -2913b1c262ec99d9c0f463a106253900 linux-3.0/arch/arm/mach-omap2/opp.c -a576c26c41ed193d1c1c0f33fdb14a50 linux-3.0/arch/arm/mach-omap2/omap_twl.c -6f662cc1b85a2ba724cf4aad18fcbca8 linux-3.0/arch/arm/mach-omap2/omap_phy_internal.c -9afb1643da11a21b92e9338f9937c3aa linux-3.0/arch/arm/mach-omap2/omap_opp_data.h -b20dd13a39eaace8ad5d671dde897dae linux-3.0/arch/arm/mach-omap2/omap_l3_smx.h -6be15314443d29edf0c38cbb12a95c94 linux-3.0/arch/arm/mach-omap2/omap_l3_smx.c -febecd423f792357423af26f858f808d linux-3.0/arch/arm/mach-omap2/omap_l3_noc.h -69c529203242acbb955bda8b74673fc0 linux-3.0/arch/arm/mach-omap2/omap_l3_noc.c -fb663feb09fcf7eb649753c79f1e25cd linux-3.0/arch/arm/mach-omap2/omap_hwmod_common_data.h -5f003974dcf57f089ca7560bede152d3 linux-3.0/arch/arm/mach-omap2/omap_hwmod_common_data.c -10f16224ea1235b6b545a75874715457 linux-3.0/arch/arm/mach-omap2/omap_hwmod_44xx_data.c -00f8921d6dca8eeb73a74801deec5e23 linux-3.0/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c -8cc46653661edfdc1f049cf0408dd314 linux-3.0/arch/arm/mach-omap2/omap_hwmod_2430_data.c -a52668d0503e6ca0682aa7e2952b59dc linux-3.0/arch/arm/mach-omap2/omap_hwmod_2420_data.c -6300cf10e933a9f351ae0124ec7905b8 linux-3.0/arch/arm/mach-omap2/omap_hwmod.c -f27a281aa19597d7e7fab7a236d1ca31 linux-3.0/arch/arm/mach-omap2/omap44xx-smc.S -35e46e3c2b5db63eec6d17b28bb3991e linux-3.0/arch/arm/mach-omap2/omap4-common.c -252239c9f2132ee68aaeb8e7b61f595e linux-3.0/arch/arm/mach-omap2/omap-smp.c -88e85d5246f9c0c7f3eb01aad3c76114 linux-3.0/arch/arm/mach-omap2/omap-iommu.c -027c996fa614a07a080fe80521eaa59f linux-3.0/arch/arm/mach-omap2/omap-hotplug.c -c3148e70abe47bc1552bc144b8fd570d linux-3.0/arch/arm/mach-omap2/omap-headsmp.S -a8aad80278e86fcfdb928e334686f824 linux-3.0/arch/arm/mach-omap2/mux44xx.h -f728c85238486a78e04add2646d9c08a linux-3.0/arch/arm/mach-omap2/mux44xx.c -4a3c2a46df79c564a38092dc8170c240 linux-3.0/arch/arm/mach-omap2/mux34xx.h -2c425d8e793304625ea46324282cf00e linux-3.0/arch/arm/mach-omap2/mux34xx.c -5f7bf1803ca5663ae393f2dd45d9a725 linux-3.0/arch/arm/mach-omap2/mux2430.h -559910f45b3e5083b0062d0fd5c4d9d4 linux-3.0/arch/arm/mach-omap2/mux2430.c -86aeee488166ad40533d7bf10cc7e34f linux-3.0/arch/arm/mach-omap2/mux2420.h -63f35439bb318f05aa0d0231c20d6ff5 linux-3.0/arch/arm/mach-omap2/mux2420.c -d517d95c6d18faf99b528d41614a4a2d linux-3.0/arch/arm/mach-omap2/mux.h -711e714ec4d83e00218b0346ec2c8c41 linux-3.0/arch/arm/mach-omap2/mux.c -07f980f9f6dcf63406d504b136064589 linux-3.0/arch/arm/mach-omap2/mcbsp.c -d52be912b20126808bb2fb3a65b17415 linux-3.0/arch/arm/mach-omap2/mailbox.c -f63fed0e9d3292faf6d1b1151e1c7ab1 linux-3.0/arch/arm/mach-omap2/irq.c -6723e24ddf64245a4ce042237399a5df linux-3.0/arch/arm/mach-omap2/iommu2.c -1adce5fed31c30ddd83622bd0905748f linux-3.0/arch/arm/mach-omap2/io.h -c12133ee41f2b0ad8d57ccd8a189be32 linux-3.0/arch/arm/mach-omap2/io.c -d62b7e97ad7336d07cf325ba878ed858 linux-3.0/arch/arm/mach-omap2/include/mach/vmalloc.h -b6360e5db5dfaed51c1b0f2000d51203 linux-3.0/arch/arm/mach-omap2/include/mach/uncompress.h -78527936fce7b4679d6c6b865232d163 linux-3.0/arch/arm/mach-omap2/include/mach/timex.h -f2034500b2c7530750f5982242a8a62d linux-3.0/arch/arm/mach-omap2/include/mach/system.h -6178dfd65d1d92569b02f586de3755d7 linux-3.0/arch/arm/mach-omap2/include/mach/smp.h -8cdfc051e23b94b1484b51400277b06b linux-3.0/arch/arm/mach-omap2/include/mach/omap4-common.h -18c001a583cef2406639b5dc1db45200 linux-3.0/arch/arm/mach-omap2/include/mach/memory.h -d81f714cbabb3a3bad2ea087610d516b linux-3.0/arch/arm/mach-omap2/include/mach/irqs.h -2f97f38728ff78654c6f94d6efb6724c linux-3.0/arch/arm/mach-omap2/include/mach/io.h -487d3c3f96faad82b9f004a18becdf4a linux-3.0/arch/arm/mach-omap2/include/mach/id.h -97d65c5f334914a0a3e3ede47c70783d linux-3.0/arch/arm/mach-omap2/include/mach/hardware.h -dfe3945ac3bc6dc6ae5a272527f1391e linux-3.0/arch/arm/mach-omap2/include/mach/gpio.h -b01adf0d081f3eb1e7c9ba982ab6e33f linux-3.0/arch/arm/mach-omap2/include/mach/entry-macro.S -cca8c16f39c2f31ad8dc9ad6bd835ff9 linux-3.0/arch/arm/mach-omap2/include/mach/debug-macro.S -62fad8510e85e2040a533a0bef43fe24 linux-3.0/arch/arm/mach-omap2/include/mach/ctrl_module_wkup_44xx.h -22029234b32bd38d7537ee0da6bd846a linux-3.0/arch/arm/mach-omap2/include/mach/ctrl_module_pad_wkup_44xx.h -e942a0bafdfb8a6ff3b0b28aeed2bc61 linux-3.0/arch/arm/mach-omap2/include/mach/ctrl_module_pad_core_44xx.h -8a2155aa0705b50d2535e4f005e504b8 linux-3.0/arch/arm/mach-omap2/include/mach/ctrl_module_core_44xx.h -596bd31580589d3ce73ecf8ed36981db linux-3.0/arch/arm/mach-omap2/include/mach/clkdev.h -7b7913f7d23d9ddcc6885cf9cf6e4fdd linux-3.0/arch/arm/mach-omap2/include/mach/board-zoom.h -8ef9780e92e3a5717a304ce73dfc4bc6 linux-3.0/arch/arm/mach-omap2/include/mach/board-rx51.h -7ad5fa5b85f7ae0ab4d0e179059a62f4 linux-3.0/arch/arm/mach-omap2/include/mach/am35xx.h -af001ff82b99e114ba2a7a6b54d46426 linux-3.0/arch/arm/mach-omap2/id.c -9057f3067c438bce941681bf5a891e5a linux-3.0/arch/arm/mach-omap2/i2c.c -9dac1039c5d0a0aa5a17e475a325b34a linux-3.0/arch/arm/mach-omap2/hwspinlock.c -5c5125a4eebb7bc2ada019205008a98a linux-3.0/arch/arm/mach-omap2/hsmmc.h -71342a92583665140ad3457e4f0d0022 linux-3.0/arch/arm/mach-omap2/hsmmc.c -d796e4cf0b0fa6a4a035ec33cc4e5d23 linux-3.0/arch/arm/mach-omap2/gpmc.c -f518628ae4cfc76e352b0018f3097681 linux-3.0/arch/arm/mach-omap2/gpmc-smsc911x.c -6b24982f88b62c0c5b5d3c6e21a2c47d linux-3.0/arch/arm/mach-omap2/gpmc-smc91x.c -1e85dbb917295e55b10185bddc09a681 linux-3.0/arch/arm/mach-omap2/gpmc-onenand.c -33017fa891a416b77a5fdcd5825498b6 linux-3.0/arch/arm/mach-omap2/gpmc-nand.c -18e004c97a725a2a2b277ce31be9f95a linux-3.0/arch/arm/mach-omap2/gpio.c -4abda2b0dd36adeb99b2cbe606b7e718 linux-3.0/arch/arm/mach-omap2/emu.c -c78a2e717f9d478c1b1cb839c541653f linux-3.0/arch/arm/mach-omap2/dsp.c -1c406bbd7187ee566190af16ad60f8a2 linux-3.0/arch/arm/mach-omap2/dpll44xx.c -a292e552723b041027474bf4c36d9792 linux-3.0/arch/arm/mach-omap2/dpll3xxx.c -51b0127ed447cac0f0209409b58d52f7 linux-3.0/arch/arm/mach-omap2/dma.c -e468d23cf8253e9d07ec21cab66acbd1 linux-3.0/arch/arm/mach-omap2/display.c -c77bb735fd5b6a720a5152b8eae70b96 linux-3.0/arch/arm/mach-omap2/devices.h -467ff0308ab9edddbf55471f683448a4 linux-3.0/arch/arm/mach-omap2/devices.c -3a3415a64d235c79ef68a8710913dd0c linux-3.0/arch/arm/mach-omap2/cpuidle34xx.c -ba31c791dd88bf4654b8f3a72dd2b9ac linux-3.0/arch/arm/mach-omap2/control.h -fe4a92b1cc40fc8e3c7d3b246f9c8ed2 linux-3.0/arch/arm/mach-omap2/control.c -7222a004f9a9c7d7adfc0cbb04195051 linux-3.0/arch/arm/mach-omap2/common.c -cf1d49de86e83f1ae1779815399e4717 linux-3.0/arch/arm/mach-omap2/common-board-devices.h -017a551f53b596bc80c7b5906f8731df linux-3.0/arch/arm/mach-omap2/common-board-devices.c -c523d3e357d9d78a0604f1244a2c918b linux-3.0/arch/arm/mach-omap2/cminst44xx.h -7ca951a320fe99abed2938d48bb31e7f linux-3.0/arch/arm/mach-omap2/cminst44xx.c -45fb994f5fc7eaa9653ffe40954c6057 linux-3.0/arch/arm/mach-omap2/cm44xx.h -27fe3c75f966f35f07fa7e6d40ed89a8 linux-3.0/arch/arm/mach-omap2/cm44xx.c -107ee17399e901fa8bc35c52190a057f linux-3.0/arch/arm/mach-omap2/cm2xxx_3xxx.h -1d9ba8945a2315a60a392f2fb10ebea2 linux-3.0/arch/arm/mach-omap2/cm2xxx_3xxx.c -d75c1dd52d679d636fd9f4485e2cfa75 linux-3.0/arch/arm/mach-omap2/cm2_44xx.h -0bd54c16026b517086c80611a41ec30c linux-3.0/arch/arm/mach-omap2/cm1_44xx.h -e03d0918c69b6eb1c4591ab2e2cebe1a linux-3.0/arch/arm/mach-omap2/cm.h -1b7fcf91c695a2c3a03e886c2428e5a9 linux-3.0/arch/arm/mach-omap2/cm-regbits-44xx.h -c6ae56d6a33ff101fe45610420cf0dab linux-3.0/arch/arm/mach-omap2/cm-regbits-34xx.h -2c65a2a4afa7cc99fbf0098890fdefca linux-3.0/arch/arm/mach-omap2/cm-regbits-24xx.h -2ff83e5989e2cd98388dc1cc30e92acd linux-3.0/arch/arm/mach-omap2/clockdomains44xx_data.c -5c367e332bd6bc87cda648fa9edb2887 linux-3.0/arch/arm/mach-omap2/clockdomains2xxx_3xxx_data.c -8e0be784aaa7a7f26e4ca4b6f87dfad5 linux-3.0/arch/arm/mach-omap2/clockdomain44xx.c -2e5e299bbeda1e570f72299f9da316e8 linux-3.0/arch/arm/mach-omap2/clockdomain2xxx_3xxx.c -987ff10734b804d60cc72153d62ab3be linux-3.0/arch/arm/mach-omap2/clockdomain.h -8ba98642a70f5f7a9c3d7ef5917ad7d4 linux-3.0/arch/arm/mach-omap2/clockdomain.c -051b052f7362b6db31459eb46f2f7ce5 linux-3.0/arch/arm/mach-omap2/clock_common_data.c -188c5fc95458a572f5a80c5a9824b168 linux-3.0/arch/arm/mach-omap2/clock44xx_data.c -4089bbba21edff85246c4312e656bd7a linux-3.0/arch/arm/mach-omap2/clock44xx.h -f4a7541d1804aa5dcc8a0ef526e85dc2 linux-3.0/arch/arm/mach-omap2/clock3xxx_data.c -dc83b1c0911dfe931f2c209bab008c58 linux-3.0/arch/arm/mach-omap2/clock3xxx.h -e4cec654453f405701cb01fae6c8d7b0 linux-3.0/arch/arm/mach-omap2/clock3xxx.c -38cdf29c94bdd803b3cddf53fa8251c5 linux-3.0/arch/arm/mach-omap2/clock36xx.h -245c0dd4ca879239e6b806defb5bbe7b linux-3.0/arch/arm/mach-omap2/clock36xx.c -6490a5e9dae5f91c7988e0f78e2f1e1f linux-3.0/arch/arm/mach-omap2/clock3517.h -8e15c737333248b8c0dd6bb559fdd233 linux-3.0/arch/arm/mach-omap2/clock3517.c -04c9c05484343d2f2db0ba3f6edceae0 linux-3.0/arch/arm/mach-omap2/clock34xx.h -77f82daaa2ec4105d0b6b959ff0436f1 linux-3.0/arch/arm/mach-omap2/clock34xx.c -15ea3c66278ebe2242f9dff52611f0c4 linux-3.0/arch/arm/mach-omap2/clock2xxx.h -21f914126958c22b1f6ee388b8c29a3b linux-3.0/arch/arm/mach-omap2/clock2xxx.c -2fff63324cdd3075bebcb57bc61275f3 linux-3.0/arch/arm/mach-omap2/clock2430_data.c -405617afc9233418101458780972be4e linux-3.0/arch/arm/mach-omap2/clock2430.c -c281ab47bbf7c9e9aff73f1b823b79f3 linux-3.0/arch/arm/mach-omap2/clock2420_data.c -59936ad3e5cf93a03c3641ac9f7b565e linux-3.0/arch/arm/mach-omap2/clock.h -9cf2ae7e46b72f78e55462a1cc43bc67 linux-3.0/arch/arm/mach-omap2/clock.c -ee354f8a915de08f4eb28c5b3c7e3343 linux-3.0/arch/arm/mach-omap2/clkt_iclk.c -51ebfd2d1e8909a8f965b5b96d7c3352 linux-3.0/arch/arm/mach-omap2/clkt_dpll.c -958b406f8a784988e766aaaea718083d linux-3.0/arch/arm/mach-omap2/clkt_clksel.c -44ee83600aa4b075d9b94b30b5d491ee linux-3.0/arch/arm/mach-omap2/clkt34xx_dpll3m2.c -b5254ee54c69203d9217f32c4fe90a5a linux-3.0/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c -5f704323c9047985adb43aef4eb651a7 linux-3.0/arch/arm/mach-omap2/clkt2xxx_sys.c -e70841ecba1a2841c33b596c0abc6438 linux-3.0/arch/arm/mach-omap2/clkt2xxx_osc.c -1f240b0118980f504e7e7243c3c4f152 linux-3.0/arch/arm/mach-omap2/clkt2xxx_dpllcore.c -f7cbe1f55b95fe6e05ba7f65b0bb23ab linux-3.0/arch/arm/mach-omap2/clkt2xxx_dpll.c -65d66e8e3150e7b2faf95331ddcd3b09 linux-3.0/arch/arm/mach-omap2/clkt2xxx_apll.c -e99b697e9129e6d76d86cb9f6872ca5a linux-3.0/arch/arm/mach-omap2/board-zoom.c -f3145ea23f10d050eeb7e596f5f4949d linux-3.0/arch/arm/mach-omap2/board-zoom-peripherals.c -5498c35a1f0fe66d619d93324136e2fc linux-3.0/arch/arm/mach-omap2/board-zoom-display.c -e081cb357f7af9d64a5b07e14e6ddba4 linux-3.0/arch/arm/mach-omap2/board-zoom-debugboard.c -ae378978e315ad06c8df7501d36eaacf linux-3.0/arch/arm/mach-omap2/board-ti8168evm.c -d73007b88cc21ed20b07abf93bd81b3a linux-3.0/arch/arm/mach-omap2/board-rx51.c -b0b8272369757ed6f8161dcbc3c433ca linux-3.0/arch/arm/mach-omap2/board-rx51-video.c -8ec6e58b482d351aa835080898637b1b linux-3.0/arch/arm/mach-omap2/board-rx51-peripherals.c -0e55d10af86054d4d630b0b22ae05351 linux-3.0/arch/arm/mach-omap2/board-rm680.c -2cc2fa96dbe92e4a2189879d2488f3c1 linux-3.0/arch/arm/mach-omap2/board-overo.c -33e221bf25dae21ac034899f60e0a935 linux-3.0/arch/arm/mach-omap2/board-omap4panda.c -1ae9aa18ec4c85f4c3b458d587237639 linux-3.0/arch/arm/mach-omap2/board-omap3touchbook.c -5ca3998644c217fbda26cf26ebc26f07 linux-3.0/arch/arm/mach-omap2/board-omap3stalker.c -8917aa3769976526bf7d99edc262240a linux-3.0/arch/arm/mach-omap2/board-omap3pandora.c -ba743052d832430357942b719acf52a5 linux-3.0/arch/arm/mach-omap2/board-omap3logic.c -dee3d8b696f891aeaa4e646faf75357d linux-3.0/arch/arm/mach-omap2/board-omap3evm.c -74ce7675ae35c58d7f7214c82bb697c3 linux-3.0/arch/arm/mach-omap2/board-omap3beagle.c -8315e9a4dbf8f52e81446262cadfb66b linux-3.0/arch/arm/mach-omap2/board-n8x0.c -48a6e3898c811e31f21138c99a109bc0 linux-3.0/arch/arm/mach-omap2/board-ldp.c -ce911a048bc203278017eda61fca9a44 linux-3.0/arch/arm/mach-omap2/board-igep0020.c -38c2cc49513f14041012238d2c44b9a5 linux-3.0/arch/arm/mach-omap2/board-h4.c -14e0184f2876e06a09b3c7b9925fdb7c linux-3.0/arch/arm/mach-omap2/board-generic.c -b75231ba142806a5a57fcbd2c9db0b4a linux-3.0/arch/arm/mach-omap2/board-flash.h -3a292f60834a0f4e60584bee726cde3d linux-3.0/arch/arm/mach-omap2/board-flash.c -f5de28db0c1ef0eb886dafa315c8e33e linux-3.0/arch/arm/mach-omap2/board-devkit8000.c -bf395841f56453fb9c2562fad7a3f849 linux-3.0/arch/arm/mach-omap2/board-cm-t3517.c -32d7519215288b4de5f153e4ce0bd952 linux-3.0/arch/arm/mach-omap2/board-cm-t35.c -5d07b8d3a25623dbb97bb473afaec366 linux-3.0/arch/arm/mach-omap2/board-apollon.c -180941a214566a29aa18cad27df83e7a linux-3.0/arch/arm/mach-omap2/board-am3517evm.c -5c813ff78f1b60d372d8c339d2a5d1eb linux-3.0/arch/arm/mach-omap2/board-am3517crane.c -2cd60bab050565006273b0a527f1eed3 linux-3.0/arch/arm/mach-omap2/board-4430sdp.c -c0703b602cf07b59b18b1ca1d2f6680c linux-3.0/arch/arm/mach-omap2/board-3630sdp.c -34616d6d3400cf2b7b8f579841750f08 linux-3.0/arch/arm/mach-omap2/board-3430sdp.c -ce4cf4c34a9757bbd9624ce1e1223bbb linux-3.0/arch/arm/mach-omap2/board-2430sdp.c -ed9a1e73c5b2958a9ebd356f27fc973b linux-3.0/arch/arm/mach-omap2/Makefile.boot -d81d1523dbe1fcf69475d6b55aa43fe0 linux-3.0/arch/arm/mach-omap2/Makefile -e070b915ff6bcd507d84136ed4b04bff linux-3.0/arch/arm/mach-omap2/Kconfig -5f538602018cbd5eecea2b33e2612ad6 linux-3.0/arch/arm/mach-omap1/usb.c -01099231f617889c27b1b48d82a19a5f linux-3.0/arch/arm/mach-omap1/timer32k.c -c3a94a07a2d3f861020b99c6da865b30 linux-3.0/arch/arm/mach-omap1/time.c -4ecea2528b1651096c5b9a6f3d1e54d3 linux-3.0/arch/arm/mach-omap1/sram.S -de678bca801cd588fe2260262de40c70 linux-3.0/arch/arm/mach-omap1/sleep.S -174882489528c341fe52e10be4577063 linux-3.0/arch/arm/mach-omap1/serial.c -e21caaef91a959592204a11226dcd1f4 linux-3.0/arch/arm/mach-omap1/reset.c -7bb0366fda9139ec3cd27af8b704a475 linux-3.0/arch/arm/mach-omap1/pm_bus.c -c54a305a972a36b80d4348b333ce0142 linux-3.0/arch/arm/mach-omap1/pm.h -b266af03006330f60d244b7af664270b linux-3.0/arch/arm/mach-omap1/pm.c -8d4c58fd5d7fb9def53e700ce640a1b0 linux-3.0/arch/arm/mach-omap1/opp_data.c -99a20a76e4bbd495d1134cc6d8d39a3f linux-3.0/arch/arm/mach-omap1/opp.h -3b676135310a4bfbda1859ad5f607e59 linux-3.0/arch/arm/mach-omap1/mux.c -f2ecba6859929a6b8e9cc3adbdd92cfb linux-3.0/arch/arm/mach-omap1/mcbsp.c -61f1580adbd83668608b17fe6c3d8abb linux-3.0/arch/arm/mach-omap1/mailbox.c -a51b584adb4760f3f499fa48ba3f6561 linux-3.0/arch/arm/mach-omap1/leds.h -9a69b9e181ab5b3e40cd1b16a588c7c8 linux-3.0/arch/arm/mach-omap1/leds.c -3da33b75b179f1e8723aaf86d73734d2 linux-3.0/arch/arm/mach-omap1/leds-osk.c -7133caf32d662a3717388ea277e13ad3 linux-3.0/arch/arm/mach-omap1/leds-innovator.c -3ef3f92492e64fe717b535cedceaafaa linux-3.0/arch/arm/mach-omap1/leds-h2p2-debug.c -808ec513e01f911be7dfa269a49d2549 linux-3.0/arch/arm/mach-omap1/lcd_dma.c -b871a51c3493ac2da3841a460a3f2897 linux-3.0/arch/arm/mach-omap1/irq.c -94f84620a938617d92b32601cc3c4df4 linux-3.0/arch/arm/mach-omap1/io.c -edad68aa2326872aff892a6e08abb16e linux-3.0/arch/arm/mach-omap1/include/mach/vmalloc.h -6bcf2b5d5ea35872d7b2bf86f76f9faf linux-3.0/arch/arm/mach-omap1/include/mach/uncompress.h -6dd640d3404c2112bf4da44d8fa2efd2 linux-3.0/arch/arm/mach-omap1/include/mach/timex.h -65d876e77008eb0ea0a48e2f838c82e4 linux-3.0/arch/arm/mach-omap1/include/mach/system.h -1a2368e26899e96fafbbf4922c9d496a linux-3.0/arch/arm/mach-omap1/include/mach/smp.h -81c69db39fda6376d0126d6976b3429c linux-3.0/arch/arm/mach-omap1/include/mach/mtd-xip.h -4aef033f38fd097fea41bac3cfccc94b linux-3.0/arch/arm/mach-omap1/include/mach/memory.h -0cedfcd1aa4be28b4d5f93963b396831 linux-3.0/arch/arm/mach-omap1/include/mach/lcdc.h -5d7b9f3034d1086223e743c0a8c4222e linux-3.0/arch/arm/mach-omap1/include/mach/lcd_dma.h -7b7bef04043a536ab093b004c6f7d4b7 linux-3.0/arch/arm/mach-omap1/include/mach/irqs.h -82c5c4a03846410d7f9c7b31bdded71e linux-3.0/arch/arm/mach-omap1/include/mach/io.h -dee8394da4e8dfe082625f08c3bf6492 linux-3.0/arch/arm/mach-omap1/include/mach/hardware.h -397ba6cb80074de62d5de7c35abfc6cb linux-3.0/arch/arm/mach-omap1/include/mach/gpio.h -18fe9d014dc435400b59a74f0a23d81f linux-3.0/arch/arm/mach-omap1/include/mach/entry-macro.S -b1e23460e3caf2a70f94cf57784d3f92 linux-3.0/arch/arm/mach-omap1/include/mach/debug-macro.S -ab077f6d9456096748c27594a8db3b95 linux-3.0/arch/arm/mach-omap1/include/mach/clkdev.h -4d5073b0860343bd41a9ce892ed61ac8 linux-3.0/arch/arm/mach-omap1/include/mach/camera.h -0779e9df78cf209babda7879e2025017 linux-3.0/arch/arm/mach-omap1/include/mach/ams-delta-fiq.h -8384a27d238a35d7c435454024fbde2a linux-3.0/arch/arm/mach-omap1/id.c -b22aa34071b313add0c1ebf15559ba01 linux-3.0/arch/arm/mach-omap1/i2c.c -cf62fa82be1f8b0eb90c6acd7057cc22 linux-3.0/arch/arm/mach-omap1/gpio7xx.c -274c380250d23b3af4cad24bf13f3a48 linux-3.0/arch/arm/mach-omap1/gpio16xx.c -c6a9a43cc2851f72940317dbe34c8b49 linux-3.0/arch/arm/mach-omap1/gpio15xx.c -14880fbc3304d19f118f2ae2a9dc09cc linux-3.0/arch/arm/mach-omap1/fpga.c -88137203dbf94384b0c8cb72678071e1 linux-3.0/arch/arm/mach-omap1/flash.c -f434205965e92ec19bcd9e5ec7454c85 linux-3.0/arch/arm/mach-omap1/dma.c -7ed78558382d404e21eb6aae1c02e40d linux-3.0/arch/arm/mach-omap1/devices.c -b5880d2ea0e82ea2798479942e5a062a linux-3.0/arch/arm/mach-omap1/clock_data.c -a51e55273a31b47980c7b361a0b66f99 linux-3.0/arch/arm/mach-omap1/clock.h -fc7555b567004ac9ec44a99c75c17a6d linux-3.0/arch/arm/mach-omap1/clock.c -a5c7ae9d9617d4f4f6eb86332b67a85f linux-3.0/arch/arm/mach-omap1/board-voiceblue.c -1a25b7500b660ec6ec447e7d10675780 linux-3.0/arch/arm/mach-omap1/board-sx1.c -ff0d2d9f50b38d9f035d797afdb961cf linux-3.0/arch/arm/mach-omap1/board-sx1-mmc.c -e723dc5c87a0cc9ad9d458599d402c34 linux-3.0/arch/arm/mach-omap1/board-perseus2.c -132d364c621e70f8911789bb05543b1c linux-3.0/arch/arm/mach-omap1/board-palmz71.c -25c6f6b524521adaf97c79f22a3b86f3 linux-3.0/arch/arm/mach-omap1/board-palmtt.c -a755b80f377d0850c9ff314edff943c8 linux-3.0/arch/arm/mach-omap1/board-palmte.c -99b14a121927a287ad83ca85ea6f1b00 linux-3.0/arch/arm/mach-omap1/board-osk.c -65a534cb1f87041a523a246bf9c79b6a linux-3.0/arch/arm/mach-omap1/board-nokia770.c -b43480fb15a850854adb71e6a1e8e537 linux-3.0/arch/arm/mach-omap1/board-innovator.c -9fc1bac0283814245364d9d76fd45f07 linux-3.0/arch/arm/mach-omap1/board-htcherald.c -7ecbf30dc2292cad95828ca5bdf3c8ed linux-3.0/arch/arm/mach-omap1/board-h3.h -e5e3a6225f18efbcc94e07f8aaca64c9 linux-3.0/arch/arm/mach-omap1/board-h3.c -f1ad35143124bd4f1319f87eb7b4b619 linux-3.0/arch/arm/mach-omap1/board-h3-mmc.c -b87ae742ce2735d33023a895ad78cd30 linux-3.0/arch/arm/mach-omap1/board-h2.h -bf2ba27112b742d3fdf294466bf18c4e linux-3.0/arch/arm/mach-omap1/board-h2.c -56b720a46b8eb8dc48b5264f2825a6c4 linux-3.0/arch/arm/mach-omap1/board-h2-mmc.c -915dcb2ffb59e51d47ff8dbfa5e18274 linux-3.0/arch/arm/mach-omap1/board-generic.c -162c301283a38205409d762c77bbdad3 linux-3.0/arch/arm/mach-omap1/board-fsample.c -9e5808136629ec49854fc815a405c24c linux-3.0/arch/arm/mach-omap1/board-ams-delta.c -1f14a5196232d944900f664659d69177 linux-3.0/arch/arm/mach-omap1/ams-delta-fiq.c -10f85217833b42a0136afa4bf8476dc5 linux-3.0/arch/arm/mach-omap1/ams-delta-fiq-handler.S -4805417874f826f074a5a31fea700680 linux-3.0/arch/arm/mach-omap1/Makefile.boot -b4c8009d343b098721d0d11f8d8b2a47 linux-3.0/arch/arm/mach-omap1/Makefile -780aef8853731a460a6fede763caad15 linux-3.0/arch/arm/mach-omap1/Kconfig -4a6e9b91e388cd4de1d9f1fae0547df1 linux-3.0/arch/arm/mach-nuc93x/time.c -372ef6dd210498585b8e513c354244c1 linux-3.0/arch/arm/mach-nuc93x/nuc932.h -9df5731865dc52d639eaa096abd6fd69 linux-3.0/arch/arm/mach-nuc93x/nuc932.c -b3ca79b6926a9dc1102fbe66991b478f linux-3.0/arch/arm/mach-nuc93x/mach-nuc932evb.c -e2e52e79cf19d2e17ecb89f433198d32 linux-3.0/arch/arm/mach-nuc93x/irq.c -0fd60d2e56f361f1618ba17c99ce1a21 linux-3.0/arch/arm/mach-nuc93x/include/mach/vmalloc.h -90d34b60ac86dab8522cbf828dc78059 linux-3.0/arch/arm/mach-nuc93x/include/mach/uncompress.h -b3f2494de6bcf586b87e1e2953b5a74a linux-3.0/arch/arm/mach-nuc93x/include/mach/timex.h -31dfa7efa2d689e6ba05a9c4568f1385 linux-3.0/arch/arm/mach-nuc93x/include/mach/system.h -1d21ea293f7349abda7866d5e72c545f linux-3.0/arch/arm/mach-nuc93x/include/mach/regs-timer.h -25daee82684ace5c707595e778f85c45 linux-3.0/arch/arm/mach-nuc93x/include/mach/regs-serial.h -6bc58db0668e26653f41f651279541f1 linux-3.0/arch/arm/mach-nuc93x/include/mach/regs-irq.h -99c141891ba9ca1c66bec65a16245287 linux-3.0/arch/arm/mach-nuc93x/include/mach/regs-ebi.h -2ea0f1a9f00c07cd7b0a0d66d60be08b linux-3.0/arch/arm/mach-nuc93x/include/mach/regs-clock.h -0c2ed832dbfd0ea37a4ef299fb83581a linux-3.0/arch/arm/mach-nuc93x/include/mach/memory.h -5dfcf99f3ace737cc881b64bb7728bf7 linux-3.0/arch/arm/mach-nuc93x/include/mach/map.h -978cd769488a03781713ce4c2bee1f72 linux-3.0/arch/arm/mach-nuc93x/include/mach/irqs.h -3c0906dbe700433e71f8f8360ece2424 linux-3.0/arch/arm/mach-nuc93x/include/mach/io.h -1377af9e989225dad513e01096a0617a linux-3.0/arch/arm/mach-nuc93x/include/mach/hardware.h -55af87f6f088cd8b2aa5c2b4e3666a0b linux-3.0/arch/arm/mach-nuc93x/include/mach/entry-macro.S -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/mach-nuc93x/include/mach/clkdev.h -febb3e96083f45f5729ab726294070b4 linux-3.0/arch/arm/mach-nuc93x/dev.c -561ddc3aa87ec842dbf46e9cd86b7069 linux-3.0/arch/arm/mach-nuc93x/cpu.h -6852f0153541ba85e01b2b5c4148c503 linux-3.0/arch/arm/mach-nuc93x/cpu.c -bd8a26d24298279e6f403bdddbfc62d2 linux-3.0/arch/arm/mach-nuc93x/clock.h -7604e00af401e6261c68d7bfcce1eac2 linux-3.0/arch/arm/mach-nuc93x/clock.c -6148b2c85289e0172c60a6c97e839399 linux-3.0/arch/arm/mach-nuc93x/Makefile.boot -cff715c0fd49625d0da67ecc29adabeb linux-3.0/arch/arm/mach-nuc93x/Makefile -74cab352ea5b64bc2551f06702688ef3 linux-3.0/arch/arm/mach-nuc93x/Kconfig -0b5e1bc1bc99733ad62660fb31998457 linux-3.0/arch/arm/mach-nomadik/include/mach/vmalloc.h -9c3f44c24c0e54b086d0b7d19b9022a8 linux-3.0/arch/arm/mach-nomadik/include/mach/uncompress.h -6bc4ff946ca32b7b8e8f6315d480b4f4 linux-3.0/arch/arm/mach-nomadik/include/mach/timex.h -b3806aa7b4c35bf58fae57715f8d4c0b linux-3.0/arch/arm/mach-nomadik/include/mach/system.h -5d284d62b1a3471586db98fd0b1baf5f linux-3.0/arch/arm/mach-nomadik/include/mach/setup.h -2c48c9d463aa6d027b1fc4e67d97fecb linux-3.0/arch/arm/mach-nomadik/include/mach/nand.h -100d946f384d95607d621b94514c5d01 linux-3.0/arch/arm/mach-nomadik/include/mach/memory.h -0fd5c2cfd8e74f7f94f5c11e3f68c48a linux-3.0/arch/arm/mach-nomadik/include/mach/irqs.h -ec1d5aa0d8f8dd21e7e0bd2b0afdfc6f linux-3.0/arch/arm/mach-nomadik/include/mach/io.h -9b548c56a6d4547cab1cd6836d2d75ee linux-3.0/arch/arm/mach-nomadik/include/mach/hardware.h -309c4ab8f0f317a61bd969dcbef93cb5 linux-3.0/arch/arm/mach-nomadik/include/mach/gpio.h -ba081d5cf6411bce68a9871432c94e65 linux-3.0/arch/arm/mach-nomadik/include/mach/fsmc.h -f5c886ba73d6748a212ba44a304615c2 linux-3.0/arch/arm/mach-nomadik/include/mach/entry-macro.S -eeea4c159b7b26ee91b479991252226e linux-3.0/arch/arm/mach-nomadik/include/mach/debug-macro.S -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/mach-nomadik/include/mach/clkdev.h -d88b51e4bfac7b26446b0b371eeb7db4 linux-3.0/arch/arm/mach-nomadik/i2c-8815nhk.c -802a35ca434519cf9476836c43515749 linux-3.0/arch/arm/mach-nomadik/cpu-8815.c -99fd7a442cc30fbfae5373068bd24dc3 linux-3.0/arch/arm/mach-nomadik/clock.h -0a2d152a9019f71eda59438ab64af979 linux-3.0/arch/arm/mach-nomadik/clock.c -b7af00aa460b54466beb066be1f23a17 linux-3.0/arch/arm/mach-nomadik/board-nhk8815.c -1fd7c57a4f7d267776c24c8f4024ec14 linux-3.0/arch/arm/mach-nomadik/Makefile.boot -f9c4a59ab7ff1c8ccd24621085b2b10f linux-3.0/arch/arm/mach-nomadik/Makefile -11ab96a2d13aa0a17f3eddc9cf0201a4 linux-3.0/arch/arm/mach-nomadik/Kconfig -8d9b438341891dedd6c8063f441a71fe linux-3.0/arch/arm/mach-netx/xc.c -d158577218e762a6399206eb6715e760 linux-3.0/arch/arm/mach-netx/time.c -4389e5da947371c9add1575b62008e8f linux-3.0/arch/arm/mach-netx/pfifo.c -20af0dca3f4d4d376c4854b849a0f31c linux-3.0/arch/arm/mach-netx/nxeb500hmi.c -a0a51342472bdfb7d9f9bc482ac18741 linux-3.0/arch/arm/mach-netx/nxdkn.c -44f9401c8241dfcffe9ff8295f83e6bd linux-3.0/arch/arm/mach-netx/nxdb500.c -a506f8217c16ab592ee6a8b90ee7cea2 linux-3.0/arch/arm/mach-netx/include/mach/xc.h -0896a97b602a652edf6b5502aa71225b linux-3.0/arch/arm/mach-netx/include/mach/vmalloc.h -efe5c1cdd003525fd38bf1bcfe2cd45a linux-3.0/arch/arm/mach-netx/include/mach/uncompress.h -037f466aff6cbf7fe308265067dab7db linux-3.0/arch/arm/mach-netx/include/mach/timex.h -7fb30bab9c98279653a662852abb5103 linux-3.0/arch/arm/mach-netx/include/mach/system.h -165e76751cc30739b404718f7c4a0c3b linux-3.0/arch/arm/mach-netx/include/mach/pfifo.h -eef009c5a169d94eb1e3b3a9bbaf8249 linux-3.0/arch/arm/mach-netx/include/mach/param.h -1b7167c6174e41c84720acbf676366a3 linux-3.0/arch/arm/mach-netx/include/mach/netx-regs.h -650c48dcc1e72a4f549b74d056685cca linux-3.0/arch/arm/mach-netx/include/mach/memory.h -28ac18ddf5d01077b48a8f11ae0ac89c linux-3.0/arch/arm/mach-netx/include/mach/irqs.h -2eb9cd450da719359f058db5536027fa linux-3.0/arch/arm/mach-netx/include/mach/io.h -b2bf4d03a0544841f461b4fa2b4397d4 linux-3.0/arch/arm/mach-netx/include/mach/hardware.h -fc18e2ddc6f847704003b567903304c2 linux-3.0/arch/arm/mach-netx/include/mach/eth.h -30b233123a823bbc417cde20d738e793 linux-3.0/arch/arm/mach-netx/include/mach/entry-macro.S -ee47e3e8a9bccc1c070fdf1012be5567 linux-3.0/arch/arm/mach-netx/include/mach/debug-macro.S -539eb664e64a509cd30fb2edb0de3053 linux-3.0/arch/arm/mach-netx/generic.h -f8855629173e6df6c29e3bd3c64e1e61 linux-3.0/arch/arm/mach-netx/generic.c -5c3e906aefa76c02e1796466a3f9480e linux-3.0/arch/arm/mach-netx/fb.h -fc5793aafea1e83a2ee1f39d45a38599 linux-3.0/arch/arm/mach-netx/fb.c -60401b3445cf8d833f6a0aab5fce961f linux-3.0/arch/arm/mach-netx/Makefile.boot -50b843d9169a205e96818d2e083b496f linux-3.0/arch/arm/mach-netx/Makefile -a77d6fab0c1259cb3e4a93e861826f6a linux-3.0/arch/arm/mach-netx/Kconfig -3ea824b20b5e6b5d902a50b1f5e1e31c linux-3.0/arch/arm/mach-mxs/timer.c -1736276e51112dff239bb9da76e9591a linux-3.0/arch/arm/mach-mxs/system.c -5cbb3c85405b75f59a6ac87cc2e0a9e0 linux-3.0/arch/arm/mach-mxs/regs-clkctrl-mx28.h -822ec324b5d916d7a287545dc12b18a0 linux-3.0/arch/arm/mach-mxs/regs-clkctrl-mx23.h -a1a24ad6dce50468685311133091f926 linux-3.0/arch/arm/mach-mxs/pm.c -085767517d288ad24937160746f7589c linux-3.0/arch/arm/mach-mxs/ocotp.c -9c3b7a79c0e019e20084a6fb0dd357cf linux-3.0/arch/arm/mach-mxs/module-tx28.h -a7dbe0b628b9826f0d18c3b1952d28ef linux-3.0/arch/arm/mach-mxs/module-tx28.c -26fa29b0ae738fd1eb71b7fb8f9884f3 linux-3.0/arch/arm/mach-mxs/mm-mx28.c -caedafd8cf7c5bb7a1fe949d98f43787 linux-3.0/arch/arm/mach-mxs/mm-mx23.c -6c87abd668062a13ad516e25ba660595 linux-3.0/arch/arm/mach-mxs/mach-tx28.c -e1eb962700f06794b6ebc396a2d3cf19 linux-3.0/arch/arm/mach-mxs/mach-stmp378x_devb.c -f85e32f39024738ebc1acc35f461294a linux-3.0/arch/arm/mach-mxs/mach-mx28evk.c -f22a101e6a0b80de5ea24b59a46e4991 linux-3.0/arch/arm/mach-mxs/mach-mx23evk.c -00418568afeb48c8b5a89835ab2e658b linux-3.0/arch/arm/mach-mxs/iomux.c -5662c31b0dad9d4cee617fa05d65b243 linux-3.0/arch/arm/mach-mxs/include/mach/vmalloc.h -8c0b00626dab89307aded58c76d0de24 linux-3.0/arch/arm/mach-mxs/include/mach/uncompress.h -a82fbaadf5776bf4354aea3fdea489a3 linux-3.0/arch/arm/mach-mxs/include/mach/timex.h -40fb5bbb9ea92b0243b3b579e411d64b linux-3.0/arch/arm/mach-mxs/include/mach/system.h -a0a1bc93ab850aaab21f9da71132d899 linux-3.0/arch/arm/mach-mxs/include/mach/mxsfb.h -ed3c35cc0f3cc07a92d783b11d5fc290 linux-3.0/arch/arm/mach-mxs/include/mach/mxs.h -318050126f0e407fe6fbb6ea83754fa2 linux-3.0/arch/arm/mach-mxs/include/mach/mx28.h -ff4d43500a163ec3a8ebb3bef55fd55a linux-3.0/arch/arm/mach-mxs/include/mach/mx23.h -3ab3690ec5da7f13ca2adda4d9ca37a2 linux-3.0/arch/arm/mach-mxs/include/mach/mmc.h -8c82c5048eb0759c94919665872eb0fc linux-3.0/arch/arm/mach-mxs/include/mach/memory.h -8ca4b951a569258f4bda2a872e09509f linux-3.0/arch/arm/mach-mxs/include/mach/irqs.h -d462a530727f54e320a9ea0c58479b3d linux-3.0/arch/arm/mach-mxs/include/mach/iomux.h -24cd2f6877a35bde838650ace6e8db7f linux-3.0/arch/arm/mach-mxs/include/mach/iomux-mx28.h -62a46154022a93be48aea57625018ac8 linux-3.0/arch/arm/mach-mxs/include/mach/iomux-mx23.h -034ddbb4bd72804850e0d9d98ca4e501 linux-3.0/arch/arm/mach-mxs/include/mach/io.h -208edef7c3a2bc2860d1226ca810bda3 linux-3.0/arch/arm/mach-mxs/include/mach/hardware.h -1e521fb1d09f7388a11028dbaef6235a linux-3.0/arch/arm/mach-mxs/include/mach/gpio.h -7d7d3a202888520c81087cbe64208fdd linux-3.0/arch/arm/mach-mxs/include/mach/entry-macro.S -ee107514a8efef9c817743fbb3398866 linux-3.0/arch/arm/mach-mxs/include/mach/dma.h -5a21eabbc7768d54ddc3787247d2660e linux-3.0/arch/arm/mach-mxs/include/mach/devices-common.h -1ec4a1f10042228a76a0b69e0dbb4b93 linux-3.0/arch/arm/mach-mxs/include/mach/debug-macro.S -75d1ed0a3d8fd4cd8f97864f556ec23a linux-3.0/arch/arm/mach-mxs/include/mach/common.h -ad7c352b5842fb817513b43514065018 linux-3.0/arch/arm/mach-mxs/include/mach/clock.h -003f91fc22358404defe385ea8878fd9 linux-3.0/arch/arm/mach-mxs/include/mach/clkdev.h -21294c57c9df3b9234d8cc6f11c7c788 linux-3.0/arch/arm/mach-mxs/icoll.c -1176d6347f793114a3e65a8b6026e652 linux-3.0/arch/arm/mach-mxs/gpio.h -caba1bbbf9578a7d63e73f4a4f6190c4 linux-3.0/arch/arm/mach-mxs/gpio.c -09dcdb0178253da839eafa96ff320de1 linux-3.0/arch/arm/mach-mxs/devices/platform-mxsfb.c -cfdc2da60017c3d3ae89425f8ce1f717 linux-3.0/arch/arm/mach-mxs/devices/platform-mxs-pwm.c -37778269d7249fce0437fef130837795 linux-3.0/arch/arm/mach-mxs/devices/platform-mxs-mmc.c -abdbddc33e805db69b7a0cae614b951d linux-3.0/arch/arm/mach-mxs/devices/platform-mxs-i2c.c -2e58b6174c8731c5e010301dfd2fdc3e linux-3.0/arch/arm/mach-mxs/devices/platform-flexcan.c -6e42aa1332f95c67c7f01487a2f787c7 linux-3.0/arch/arm/mach-mxs/devices/platform-fec.c -44e1883dedbf22fa8e07444c0a3fb32e linux-3.0/arch/arm/mach-mxs/devices/platform-dma.c -c4823da3daf912b10f04dbe3a32e9be6 linux-3.0/arch/arm/mach-mxs/devices/platform-auart.c -5729f4322d05f0dc3a6359ff33eb3543 linux-3.0/arch/arm/mach-mxs/devices/amba-duart.c -e2505ca7413681694a765818e2f6d706 linux-3.0/arch/arm/mach-mxs/devices/Makefile -ab75f8440ab8eb26a2c69305eeebd11a linux-3.0/arch/arm/mach-mxs/devices/Kconfig -39cde2b7a12f52fcb1f07802bce721dc linux-3.0/arch/arm/mach-mxs/devices.c -26fa3a77cc64450c5d758aa93d93f414 linux-3.0/arch/arm/mach-mxs/devices-mx28.h -2277fa9f00f4a6da152ba11b9cd56a84 linux-3.0/arch/arm/mach-mxs/devices-mx23.h -22ce213b23a98f951df8306c5a2850f7 linux-3.0/arch/arm/mach-mxs/clock.c -86f175928d637cc64d8c51432beed7ba linux-3.0/arch/arm/mach-mxs/clock-mx28.c -76d47fe9d58137afb7aa141975c02d11 linux-3.0/arch/arm/mach-mxs/clock-mx23.c -2c0b2c37a8c84ea0c3199f0235c90692 linux-3.0/arch/arm/mach-mxs/Makefile.boot -dabfa2b1129d336445e6d83e336189a6 linux-3.0/arch/arm/mach-mxs/Makefile -d116ff372e7d468c61a6e32ffb7c6d8f linux-3.0/arch/arm/mach-mxs/Kconfig -0a09c40e40aab154ac3ba81f1277a8cc linux-3.0/arch/arm/mach-mx5/system.c -729817df918bbffc9fd9e2001762bfcb linux-3.0/arch/arm/mach-mx5/mx51_efika.c -4607a4686d5f6f8acfe1d003b78aac87 linux-3.0/arch/arm/mach-mx5/mm.c -d49b7bb5fe99b0c06516077f388e4ec2 linux-3.0/arch/arm/mach-mx5/mm-mx50.c -85e43d91051a0d146aeae72b754fd795 linux-3.0/arch/arm/mach-mx5/eukrea_mbimxsd-baseboard.c -8682217033b23e1ee343c58f203607e3 linux-3.0/arch/arm/mach-mx5/eukrea_mbimx51-baseboard.c -7b31af3c2851a8e8e06724f9205e4cbb linux-3.0/arch/arm/mach-mx5/ehci.c -c37d91e8523aac1dc6ec5fca7d59cd90 linux-3.0/arch/arm/mach-mx5/efika.h -b4cade358255f9a58ee6867f480e347f linux-3.0/arch/arm/mach-mx5/devices.h -1a4345bd77608bd96856e4c6375a7043 linux-3.0/arch/arm/mach-mx5/devices.c -7716816c732edc37b757d1635a26f846 linux-3.0/arch/arm/mach-mx5/devices-imx53.h -ab23f4c5a59aa9fc27ad50b10de4a6c8 linux-3.0/arch/arm/mach-mx5/devices-imx51.h -ee676c79b3536054000953a57b04ee9d linux-3.0/arch/arm/mach-mx5/devices-imx50.h -0ae8da33a370738764be802540365c46 linux-3.0/arch/arm/mach-mx5/crm_regs.h -9a88704dde34efd53d8000a136b014a6 linux-3.0/arch/arm/mach-mx5/cpu_op-mx51.h -dc691dfe1e8e06c5bda04b3912394d13 linux-3.0/arch/arm/mach-mx5/cpu_op-mx51.c -fcaad08c2d6cfd47c3159639c1179eb6 linux-3.0/arch/arm/mach-mx5/cpu.c -9278879be31594b2876cee73fcacdf1d linux-3.0/arch/arm/mach-mx5/clock-mx51-mx53.c -1e44b7c256815191edfe602526f2ec74 linux-3.0/arch/arm/mach-mx5/board-mx53_smd.c -a63ab175a203431f68964cf493798a49 linux-3.0/arch/arm/mach-mx5/board-mx53_loco.c -1ca230f2402c1a6c0902cc656c61763a linux-3.0/arch/arm/mach-mx5/board-mx53_evk.c -bcb5db034598fca55679119b148d6691 linux-3.0/arch/arm/mach-mx5/board-mx51_efikasb.c -f9640fe2d015a2e2c72d63502ba6a9f4 linux-3.0/arch/arm/mach-mx5/board-mx51_efikamx.c -c1b5407a6992ac21ee7032d52cf7e1ee linux-3.0/arch/arm/mach-mx5/board-mx51_babbage.c -c57c21aff479f03af56ffeef194347d1 linux-3.0/arch/arm/mach-mx5/board-mx51_3ds.c -024261f1ae23c05947ea71438ffd1876 linux-3.0/arch/arm/mach-mx5/board-mx50_rdp.c -99d746426effe8f4ba28c6cdea43ae82 linux-3.0/arch/arm/mach-mx5/board-cpuimx51sd.c -05ced7c42899cfe052dd1348f0459d34 linux-3.0/arch/arm/mach-mx5/board-cpuimx51.c -bcd516fcab2e47d32858b7996563b382 linux-3.0/arch/arm/mach-mx5/Makefile.boot -a16c2d260fc4101faf0b534b517eb25a linux-3.0/arch/arm/mach-mx5/Makefile -89bd9b74e8c20016947b97b0c8cbeee0 linux-3.0/arch/arm/mach-mx5/Kconfig -46fe2c31e823631ee68f6e75450d79b2 linux-3.0/arch/arm/mach-mv78xx0/rd78x00-masa-setup.c -818422d94b24151ff0d69fb1e21d8c9a linux-3.0/arch/arm/mach-mv78xx0/pcie.c -994837312ccd3e00633d6efcf9eef06d linux-3.0/arch/arm/mach-mv78xx0/mpp.h -98e7bb8cf5e123fa95534c51cdef7134 linux-3.0/arch/arm/mach-mv78xx0/mpp.c -81f01d205a3672502e43b64c0d72da16 linux-3.0/arch/arm/mach-mv78xx0/irq.c -a56488dd2b994486ad8135266ffc130a linux-3.0/arch/arm/mach-mv78xx0/include/mach/vmalloc.h -47f71cba98b2bb470b1c5c6540ebca9d linux-3.0/arch/arm/mach-mv78xx0/include/mach/uncompress.h -bb2c42644c626e7ca864c8c23a0b880b linux-3.0/arch/arm/mach-mv78xx0/include/mach/timex.h -54a5c7752d7abb454e49f12fdbcaeb64 linux-3.0/arch/arm/mach-mv78xx0/include/mach/system.h -9e0b0880618227e25887d2f7b2e73229 linux-3.0/arch/arm/mach-mv78xx0/include/mach/mv78xx0.h -baf13cddf76216ec43ea015bb0479db8 linux-3.0/arch/arm/mach-mv78xx0/include/mach/memory.h -1a873bb79dbac8a9051d9fdb5710f3f8 linux-3.0/arch/arm/mach-mv78xx0/include/mach/irqs.h -71a37af8ac994b11d0ed9ef216fb805f linux-3.0/arch/arm/mach-mv78xx0/include/mach/io.h -352f9c5b52be54709a1b012e0e025386 linux-3.0/arch/arm/mach-mv78xx0/include/mach/hardware.h -52f51694ac04fdea62669430b52fecde linux-3.0/arch/arm/mach-mv78xx0/include/mach/gpio.h -c04b897990ead39b857292a88f30eac7 linux-3.0/arch/arm/mach-mv78xx0/include/mach/entry-macro.S -6198b9177d8e9c345525230af6bcab03 linux-3.0/arch/arm/mach-mv78xx0/include/mach/debug-macro.S -41623054f87a46ad2253485fe884cfc9 linux-3.0/arch/arm/mach-mv78xx0/include/mach/bridge-regs.h -1cf498bfabf13f0acf0b6cb7d99e9843 linux-3.0/arch/arm/mach-mv78xx0/db78x00-bp-setup.c -e8ed1e212defa902302cd2a3021a1c65 linux-3.0/arch/arm/mach-mv78xx0/common.h -895dfad4891bdac2998aa040a7d7e267 linux-3.0/arch/arm/mach-mv78xx0/common.c -bde8b763a88d68c96a214ffd1040f09d linux-3.0/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c -add0f5ae97474ebe02a3a61dfeb8108c linux-3.0/arch/arm/mach-mv78xx0/addr-map.c -2d8e959feddb306bbe713874054300ba linux-3.0/arch/arm/mach-mv78xx0/Makefile.boot -735749c2f86cb980543aef84f31b35b9 linux-3.0/arch/arm/mach-mv78xx0/Makefile -8437add0f1d3f1c506018a2e73bfef1c linux-3.0/arch/arm/mach-mv78xx0/Kconfig -30c9396dfc8c385205dd03b6a4eb5087 linux-3.0/arch/arm/mach-msm/vreg.c -1c6539da65919a5bcf459e7dc691edfb linux-3.0/arch/arm/mach-msm/timer.c -9a189b2629c57dda37e5a60282db36ec linux-3.0/arch/arm/mach-msm/smd_private.h -405e04e55c1e83fecb1c0e9a5dfdf2f6 linux-3.0/arch/arm/mach-msm/smd_debug.c -8f4a8237500dd0dcdfca5413bd1ece8a linux-3.0/arch/arm/mach-msm/smd.c -4729edce632299fe6225b5b35c197842 linux-3.0/arch/arm/mach-msm/sirc.c -9a09816ef4213cada7edd22b66d08082 linux-3.0/arch/arm/mach-msm/scm.h -5621813ed1a2a4a27bf6abd9b9df1e64 linux-3.0/arch/arm/mach-msm/scm.c -c7591e5e566c9176834ce50417356cd7 linux-3.0/arch/arm/mach-msm/scm-boot.h -7cec4f866f9f460465ef10e6ad6c558e linux-3.0/arch/arm/mach-msm/scm-boot.c -f641bd64aee6b6659f9b85de4bc80c5e linux-3.0/arch/arm/mach-msm/proc_comm.h -14f07e29b14072509773b7ec26740839 linux-3.0/arch/arm/mach-msm/proc_comm.c -1a7723cb6d8d49ae5685cd498d26c05c linux-3.0/arch/arm/mach-msm/platsmp.c -d8e6c2d1e56c932c4105ab6b54fcc635 linux-3.0/arch/arm/mach-msm/last_radio_log.c -0421c08acb060f4881390a15a67c6a2a linux-3.0/arch/arm/mach-msm/irq.c -4c5d39155be1bb330bb0da262f82f7ad linux-3.0/arch/arm/mach-msm/irq-vic.c -225be2bf2662b1409e91a3445237fb31 linux-3.0/arch/arm/mach-msm/iommu_dev.c -e3ee897778aa6337f3dff3bfda19601e linux-3.0/arch/arm/mach-msm/iommu.c -e461ad8c37bc09ea795cff1f438a77a1 linux-3.0/arch/arm/mach-msm/io.c -a4af31f5717076ad0b4791a5d3474f55 linux-3.0/arch/arm/mach-msm/include/mach/vreg.h -dd0add42e6485408167dfea94debed53 linux-3.0/arch/arm/mach-msm/include/mach/vmalloc.h -75e54ee4dcc044269dafe8e28c9aee36 linux-3.0/arch/arm/mach-msm/include/mach/uncompress.h -32def53cc4d51f5afe5d4d64cc8af4db linux-3.0/arch/arm/mach-msm/include/mach/timex.h -09af2dfe42abbb1da2c61bd11f6fda25 linux-3.0/arch/arm/mach-msm/include/mach/system.h -6d1619416295e7dd47d7bffd85e3b3da linux-3.0/arch/arm/mach-msm/include/mach/sirc.h -bfb6a73cb0230be6b89a750b9b8676ea linux-3.0/arch/arm/mach-msm/include/mach/msm_smd.h -1a953cf772b098af41044aa994394915 linux-3.0/arch/arm/mach-msm/include/mach/msm_iomap.h -462d596b7fa2997df78158f61095c741 linux-3.0/arch/arm/mach-msm/include/mach/msm_iomap-8x60.h -95b08ae2cd9bd1f106da748248952569 linux-3.0/arch/arm/mach-msm/include/mach/msm_iomap-8x50.h -133a3fdcae741ca2e97feb48ddb6e3ae linux-3.0/arch/arm/mach-msm/include/mach/msm_iomap-8960.h -9ef3cc8cc0c9ebb52d4bb9dd0cc58dd3 linux-3.0/arch/arm/mach-msm/include/mach/msm_iomap-7x30.h -fcb7f2df2061d105d14137ec64ec8dde linux-3.0/arch/arm/mach-msm/include/mach/msm_iomap-7x00.h -8a2b602668cb4c9f103012afc2699dc0 linux-3.0/arch/arm/mach-msm/include/mach/msm_fb.h -dae64decdbb90bff9f680b39e546d23e linux-3.0/arch/arm/mach-msm/include/mach/mmc.h -5b35056cfbb4dca82fed274058773a0f linux-3.0/arch/arm/mach-msm/include/mach/memory.h -730b4f3368e528e1cd486dd2550b594b linux-3.0/arch/arm/mach-msm/include/mach/irqs.h -600ca55a41c84947f7aa8acbdea40f7b linux-3.0/arch/arm/mach-msm/include/mach/irqs-8x60.h -884c78f64d520ef2fe9adf3024da6f4f linux-3.0/arch/arm/mach-msm/include/mach/irqs-8x50.h -7144e737d898368eeb59d8b668381b6a linux-3.0/arch/arm/mach-msm/include/mach/irqs-8960.h -a0a9080219882fb82c5c06dc95ce8cdf linux-3.0/arch/arm/mach-msm/include/mach/irqs-7x30.h -ecce971dc35cd0267d3e5c105b0abd1c linux-3.0/arch/arm/mach-msm/include/mach/irqs-7x00.h -66d48d88908fd00a86ee6c537f8e30e8 linux-3.0/arch/arm/mach-msm/include/mach/iommu_hw-8xxx.h -cd636d427f2b4668a2ac5c7f15747fae linux-3.0/arch/arm/mach-msm/include/mach/iommu.h -0db637265b66b8ad98cb9332eb969957 linux-3.0/arch/arm/mach-msm/include/mach/io.h -9735c4a8208488b964aca7317bdaf084 linux-3.0/arch/arm/mach-msm/include/mach/hardware.h -238dc376bc841d29027bcc00b9dc4cdc linux-3.0/arch/arm/mach-msm/include/mach/gpio.h -1ccba5d2a447c9e70628fbf11d934c7a linux-3.0/arch/arm/mach-msm/include/mach/entry-macro.S -02157d7e27d23c6aa310f4cdd0848bd7 linux-3.0/arch/arm/mach-msm/include/mach/entry-macro-vic.S -59bbe8d01b6b348705e7dfb2d508caf9 linux-3.0/arch/arm/mach-msm/include/mach/entry-macro-qgic.S -9cc317661f36bf5fcd9bb48103264557 linux-3.0/arch/arm/mach-msm/include/mach/dma.h -bd018d1110cc319ec97bab7d073bcbf5 linux-3.0/arch/arm/mach-msm/include/mach/debug-macro.S -7ef2839ae79772648076c11bacbb7457 linux-3.0/arch/arm/mach-msm/include/mach/cpu.h -78b6c91ed4547288fc255680bdcdc400 linux-3.0/arch/arm/mach-msm/include/mach/clkdev.h -18f2ad4ddb108f4117340df0773ee62d linux-3.0/arch/arm/mach-msm/include/mach/clk.h -baf45113398ad38dd7499ded95454343 linux-3.0/arch/arm/mach-msm/include/mach/board.h -669f88c4fb794bb84dd1cd977a3d8173 linux-3.0/arch/arm/mach-msm/idle.S -bdeea1a4d100066e8259aa5791391d36 linux-3.0/arch/arm/mach-msm/hotplug.c -6bb300b90c94708f8401f1354c9310a6 linux-3.0/arch/arm/mach-msm/headsmp.S -9559d079465a5079a1bb7a5fd6378d5c linux-3.0/arch/arm/mach-msm/gpiomux.h -ffd022c949f507b54543f9994be7eacc linux-3.0/arch/arm/mach-msm/gpiomux.c -60bd5e66f008b8a2ef09b1a1d340484f linux-3.0/arch/arm/mach-msm/gpiomux-v2.h -2cc26020d2b1a5fb39e28efad63c9526 linux-3.0/arch/arm/mach-msm/gpiomux-v2.c -861735defab4c19d4eceb1f740548848 linux-3.0/arch/arm/mach-msm/gpiomux-v1.h -b3d8d5907464c6b247263d1a17c49c61 linux-3.0/arch/arm/mach-msm/gpiomux-v1.c -b52a7bce07950a5848194910fc9c67d1 linux-3.0/arch/arm/mach-msm/gpiomux-8x60.c -3b1bde5ab4608d68044ea26bf3bb082d linux-3.0/arch/arm/mach-msm/gpiomux-8x50.c -0f0dddc8892ad2daf437e5b50903352d linux-3.0/arch/arm/mach-msm/gpio_hw.h -4308f1b30b634f403150831387a8f1ba linux-3.0/arch/arm/mach-msm/gpio.c -5349757f7919f57dd0f886c90d10742c linux-3.0/arch/arm/mach-msm/gpio-v2.c -9692c89555844ce620d25df0d95515f6 linux-3.0/arch/arm/mach-msm/dma.c -f92044de32f5796794ef3cc549918c57 linux-3.0/arch/arm/mach-msm/devices.h -e1ba49b9c73132c7a17a1654b03e9f4e linux-3.0/arch/arm/mach-msm/devices-qsd8x50.c -43f3ec2915e7d9e7f1406bbe73de9e14 linux-3.0/arch/arm/mach-msm/devices-msm8960.c -f16cbc863eefd2f6273d7ae6324c12a8 linux-3.0/arch/arm/mach-msm/devices-msm7x30.c -9178f36a2bb45dad40d54c7b7acb78d4 linux-3.0/arch/arm/mach-msm/devices-msm7x00.c -c4492cb40a53a6311b4c86115ab44c02 linux-3.0/arch/arm/mach-msm/devices-iommu.c -a1e4e0c273479547a775d211535ffff4 linux-3.0/arch/arm/mach-msm/clock.h -3b38b04f9b3655d630db154985a30821 linux-3.0/arch/arm/mach-msm/clock.c -be5ab3e2acd2706c3e8d86a1d4379851 linux-3.0/arch/arm/mach-msm/clock-pcom.h -0ff099ae9a6cd8e212a5cac495f5b292 linux-3.0/arch/arm/mach-msm/clock-pcom.c -abc3017e07651cb1ec68720781ed7020 linux-3.0/arch/arm/mach-msm/clock-debug.c -282d27a0589dc4dfb0b5cc8f2dca715e linux-3.0/arch/arm/mach-msm/clock-7x30.h -2e39740eb19be248d8f394de642bd09f linux-3.0/arch/arm/mach-msm/board-trout.h -7b436c54f281a01a4e993ac301d7fe27 linux-3.0/arch/arm/mach-msm/board-trout.c -7b36e50f6c729673e4a5fb33aeca38e3 linux-3.0/arch/arm/mach-msm/board-trout-panel.c -edaaa8c6d9ed1bd1304e3f70673db59f linux-3.0/arch/arm/mach-msm/board-trout-mmc.c -975afa6b956c54b0b80066dfff3ec279 linux-3.0/arch/arm/mach-msm/board-trout-gpio.c -fbce139652d50bef39b0e52720868af1 linux-3.0/arch/arm/mach-msm/board-sapphire.c -82f5e09da21710ebc4d5feaaa6303dd1 linux-3.0/arch/arm/mach-msm/board-qsd8x50.c -d4b3a6689bb06c3850a40d97ba84bdb8 linux-3.0/arch/arm/mach-msm/board-msm8x60.c -c3ebcc3cb17f8dad179f15d568f801d8 linux-3.0/arch/arm/mach-msm/board-msm8960.c -b31c800979e82c5aee4234f6c7c51be1 linux-3.0/arch/arm/mach-msm/board-msm7x30.c -2dabcbcbd850ba1eecde8c16f3bd568a linux-3.0/arch/arm/mach-msm/board-msm7x27.c -55b867fcbef0bdd5b9fc72c3014232fb linux-3.0/arch/arm/mach-msm/board-mahimahi.c -820c819a1f063dfa74320b227a5578d2 linux-3.0/arch/arm/mach-msm/board-halibut.c -b717bf3a8810797f013713b55a035c89 linux-3.0/arch/arm/mach-msm/acpuclock.h -ab64999bc7d61fd29eee4e52128c8806 linux-3.0/arch/arm/mach-msm/acpuclock-arm11.c -3d16864aacabcac85cfa8ce6194b8b3b linux-3.0/arch/arm/mach-msm/Makefile.boot -6a4bcbe8bd4242064f1b9b864b460875 linux-3.0/arch/arm/mach-msm/Makefile -5eef115b6dc18a52e85ec27b4c30230f linux-3.0/arch/arm/mach-msm/Kconfig -ca3c113bedda7f5e17ecaccaa61f3801 linux-3.0/arch/arm/mach-mmp/ttc_dkb.c -7f4a2344a2a7740577cd0e0975b2b1ec linux-3.0/arch/arm/mach-mmp/time.c -5a6e169cb99caed6a13bbaf4f2b976d6 linux-3.0/arch/arm/mach-mmp/teton_bga.c -0c9e8c5ec933c190b0ffd30338075475 linux-3.0/arch/arm/mach-mmp/tavorevb.c -d6d1ed9b590abadc151878ecfc2a354b linux-3.0/arch/arm/mach-mmp/pxa910.c -bf5bf70e036d8a6b3d50dbb13a2d1c87 linux-3.0/arch/arm/mach-mmp/pxa168.c -cc35a2db708f6d2a698aa68ceef9c2a9 linux-3.0/arch/arm/mach-mmp/mmp2.c -1116af21d1601087141846cee09bfe69 linux-3.0/arch/arm/mach-mmp/jasper.c -d6408ac28d6fbfd0fea0995aff32fe58 linux-3.0/arch/arm/mach-mmp/irq-pxa168.c -2d81304ae60d358e56b7a80c2f635e39 linux-3.0/arch/arm/mach-mmp/irq-mmp2.c -0c3059ca10dd2560c8b070e890dea4d7 linux-3.0/arch/arm/mach-mmp/include/mach/vmalloc.h -113d5c025b225e1ef60dc51b021a7158 linux-3.0/arch/arm/mach-mmp/include/mach/uncompress.h -849716bce9125cd128115f40b56c3d30 linux-3.0/arch/arm/mach-mmp/include/mach/timex.h -108c641bbd0459ca192f73bd137e930f linux-3.0/arch/arm/mach-mmp/include/mach/teton_bga.h -7388a12e429d827fe58004ad91416bc4 linux-3.0/arch/arm/mach-mmp/include/mach/system.h -7559c55b377b96a259da4ac0c3b4bc56 linux-3.0/arch/arm/mach-mmp/include/mach/regs-timers.h -c680727be0f4901328923eb3e83a5b53 linux-3.0/arch/arm/mach-mmp/include/mach/regs-smc.h -b2a6298a34125e3adca4ad05b3824f12 linux-3.0/arch/arm/mach-mmp/include/mach/regs-icu.h -0578b7e199a223722a6f0acf90bff1ec linux-3.0/arch/arm/mach-mmp/include/mach/regs-apmu.h -440182edbf2402ff3b89bf62e6619121 linux-3.0/arch/arm/mach-mmp/include/mach/regs-apbc.h -3b23b6bdd69d4d1d0fb7dafc7322bb3d linux-3.0/arch/arm/mach-mmp/include/mach/pxa910.h -562ab56c896bdf514ad8650d4738f029 linux-3.0/arch/arm/mach-mmp/include/mach/pxa168.h -8c5b1f85128cac828ad49f1c11f0b832 linux-3.0/arch/arm/mach-mmp/include/mach/mmp2.h -1c4793682396a3e90a089c4cf967da74 linux-3.0/arch/arm/mach-mmp/include/mach/mfp.h -8f93b402d8c0fff08be0ff400c610752 linux-3.0/arch/arm/mach-mmp/include/mach/mfp-pxa910.h -7c7eab2cf62156082e0995ca130a4ef0 linux-3.0/arch/arm/mach-mmp/include/mach/mfp-pxa168.h -378179356398a135da5f6faa0ac35fa7 linux-3.0/arch/arm/mach-mmp/include/mach/mfp-mmp2.h -54561ea5c1fcd58a190acf60017c5105 linux-3.0/arch/arm/mach-mmp/include/mach/memory.h -0fd8ff21f8ec83e5355ee6075fd0da0a linux-3.0/arch/arm/mach-mmp/include/mach/irqs.h -f481749df2c902869df94f862eec0983 linux-3.0/arch/arm/mach-mmp/include/mach/io.h -fecd76cdccee65261cfd95e7f9f9a24e linux-3.0/arch/arm/mach-mmp/include/mach/hardware.h -fbcbc4b95de9922183c6a2a250ae85d2 linux-3.0/arch/arm/mach-mmp/include/mach/gpio.h -4ff5ccb26343137be3c3a591319c7503 linux-3.0/arch/arm/mach-mmp/include/mach/entry-macro.S -c25400c4db094919b4ae13288ba9c1d6 linux-3.0/arch/arm/mach-mmp/include/mach/dma.h -c176d221bf9b95df20126a9d2cb7dff6 linux-3.0/arch/arm/mach-mmp/include/mach/devices.h -6421cdae7c395a382b61899728c8f263 linux-3.0/arch/arm/mach-mmp/include/mach/debug-macro.S -9484d2da40e5184eafdb0a8ab7b2f2d4 linux-3.0/arch/arm/mach-mmp/include/mach/cputype.h -d5c5800c79b5509999509e7068eb9b1b linux-3.0/arch/arm/mach-mmp/include/mach/clkdev.h -3804043e46e3492782ed69dc3ff99eb1 linux-3.0/arch/arm/mach-mmp/include/mach/addr-map.h -525fa58d4218e18987bf37aae6ebb8c0 linux-3.0/arch/arm/mach-mmp/flint.c -ac59ac7c817b5daea0b8b4afd1d40bbe linux-3.0/arch/arm/mach-mmp/devices.c -bf4289094da7b023ed000984f97d3fbc linux-3.0/arch/arm/mach-mmp/common.h -048501c7bc0c36549bf67e4403d726f0 linux-3.0/arch/arm/mach-mmp/common.c -0180cbdb118c39773cdc9987a9b03ac8 linux-3.0/arch/arm/mach-mmp/clock.h -9e1e836b0347010439b7aabad7434465 linux-3.0/arch/arm/mach-mmp/clock.c -4c24a0241daa2ee3f33e705f0ccfaa35 linux-3.0/arch/arm/mach-mmp/brownstone.c -34524109b23ce0cfaa52aded23ad8569 linux-3.0/arch/arm/mach-mmp/avengers_lite.c -82e78e542097d08ac3506aa60ab56d32 linux-3.0/arch/arm/mach-mmp/aspenite.c -9aa297314c22cd4244310c0806661007 linux-3.0/arch/arm/mach-mmp/Makefile.boot -a0dd4725618fa0764feaa5df7e1c41c8 linux-3.0/arch/arm/mach-mmp/Makefile -b7b73241d02c4244dfdd35c512952dd0 linux-3.0/arch/arm/mach-mmp/Kconfig -a61aea92a14e2d821be059ed91021c1a linux-3.0/arch/arm/mach-lpc32xx/timer.c -3dc5b3f1b3c6e6451e2ad1eaa95aa849 linux-3.0/arch/arm/mach-lpc32xx/suspend.S -d80daff55ef2ee8feebbdf574f23a9a1 linux-3.0/arch/arm/mach-lpc32xx/serial.c -cd62e2fb8f12333c44e1db6d1312637d linux-3.0/arch/arm/mach-lpc32xx/pm.c -4912580019a182867458c6e3555a01f0 linux-3.0/arch/arm/mach-lpc32xx/phy3250.c -7bc537d77846feb10325f59a06b55204 linux-3.0/arch/arm/mach-lpc32xx/irq.c -f585b591712ae2d3ff92f7bdddcd7540 linux-3.0/arch/arm/mach-lpc32xx/include/mach/vmalloc.h -894d8a56d4c0c3b2f04501360c2363cf linux-3.0/arch/arm/mach-lpc32xx/include/mach/uncompress.h -362ece63e947f46ce7aac533810024cb linux-3.0/arch/arm/mach-lpc32xx/include/mach/timex.h -ff19e3dac9f767aeb456f2bc99ac5b4e linux-3.0/arch/arm/mach-lpc32xx/include/mach/system.h -4ff836ef53ef3408d2082b88ccad1656 linux-3.0/arch/arm/mach-lpc32xx/include/mach/platform.h -ff306f916abaae7ad7d63cc74b1eb73f linux-3.0/arch/arm/mach-lpc32xx/include/mach/memory.h -d3c5f21bbb935879bb817a4dc913afe7 linux-3.0/arch/arm/mach-lpc32xx/include/mach/irqs.h -3ee6ae3663418a483bd8ba425bcd579b linux-3.0/arch/arm/mach-lpc32xx/include/mach/io.h -4579e0684bb5ba998d44759a1dc33478 linux-3.0/arch/arm/mach-lpc32xx/include/mach/i2c.h -225e9bcc9273108bf419a20d295cb739 linux-3.0/arch/arm/mach-lpc32xx/include/mach/hardware.h -08875f92ecd99506d9be192d5885c1fd linux-3.0/arch/arm/mach-lpc32xx/include/mach/gpio.h -9be29d2a0fc7181150244b6bd3e5260c linux-3.0/arch/arm/mach-lpc32xx/include/mach/entry-macro.S -9c25ecc602ebbaa881ef11601dd39223 linux-3.0/arch/arm/mach-lpc32xx/include/mach/debug-macro.S -d724dad010b26c9289e2db60c17feea0 linux-3.0/arch/arm/mach-lpc32xx/include/mach/clkdev.h -040199cd363f08f56df134aff539adb7 linux-3.0/arch/arm/mach-lpc32xx/gpiolib.c -71f14ce5d94cec824f5feda8a723bca0 linux-3.0/arch/arm/mach-lpc32xx/common.h -3327d08f9f2a0614ecc355160ed2a13d linux-3.0/arch/arm/mach-lpc32xx/common.c -648d4beb85dcca5f02c4103c226deb51 linux-3.0/arch/arm/mach-lpc32xx/clock.h -7d1c01956ac79a3fd6f94e8e43543ad8 linux-3.0/arch/arm/mach-lpc32xx/clock.c -eb7b9c029e7095afa671ce038dcaf274 linux-3.0/arch/arm/mach-lpc32xx/Makefile.boot -19ebf4578e475c0c0f59218db8c549ca linux-3.0/arch/arm/mach-lpc32xx/Makefile -a1ab5cdf26b321fdce72d7318fe27baf linux-3.0/arch/arm/mach-lpc32xx/Kconfig -092147f4663ac639158a170dfa18d0e8 linux-3.0/arch/arm/mach-loki/lb88rc8480-setup.c -daa1f3d5ac2ce27b95d53c1b90f5d890 linux-3.0/arch/arm/mach-loki/irq.c -d9648bc70af5044152d2aeb84ff85a3d linux-3.0/arch/arm/mach-loki/include/mach/vmalloc.h -96232944812d609aea03bc97308fb07f linux-3.0/arch/arm/mach-loki/include/mach/uncompress.h -bd15ed96aedf918423ca84ce3e75e7d6 linux-3.0/arch/arm/mach-loki/include/mach/timex.h -d694046a6f7c04944d1557f2137e2bfc linux-3.0/arch/arm/mach-loki/include/mach/system.h -8dc6867fe609d4430e182a242dc9214e linux-3.0/arch/arm/mach-loki/include/mach/memory.h -db5967af5ff4a6048ef5426216b68d4a linux-3.0/arch/arm/mach-loki/include/mach/loki.h -f0bdd2e903e5d9004eca607e7d9a4dd3 linux-3.0/arch/arm/mach-loki/include/mach/irqs.h -a44a8c59fe1f94ab27e8ad6d19185729 linux-3.0/arch/arm/mach-loki/include/mach/io.h -e1c402f8151efed399f1df2b999961a4 linux-3.0/arch/arm/mach-loki/include/mach/hardware.h -fc23dfccc6849d7c9a43132a878d97db linux-3.0/arch/arm/mach-loki/include/mach/entry-macro.S -5422d3a2e6e4ae7ea1619b4fbbac1416 linux-3.0/arch/arm/mach-loki/include/mach/debug-macro.S -2253ff9ad6ccb5dee7faeeeb41bdf560 linux-3.0/arch/arm/mach-loki/include/mach/bridge-regs.h -69f6af1c9c8da116aff3aa279125d6c3 linux-3.0/arch/arm/mach-loki/common.h -01aec9dbd5a322bc682150e9a2c36b70 linux-3.0/arch/arm/mach-loki/common.c -417a76c96fc2ddacc27883d8012d53f5 linux-3.0/arch/arm/mach-loki/addr-map.c -2d8e959feddb306bbe713874054300ba linux-3.0/arch/arm/mach-loki/Makefile.boot -a0f77b385b6f291b8750582e4472611a linux-3.0/arch/arm/mach-loki/Makefile -282214df866d82cf69891ee812a1cb60 linux-3.0/arch/arm/mach-loki/Kconfig -a47d884a5ae2627bb3bafd223db22904 linux-3.0/arch/arm/mach-l7200/include/mach/debug-macro.S -4e8877bbdb82177a184ac99e0d212a52 linux-3.0/arch/arm/mach-ks8695/time.c -a86b759e2ba3ce6c3a1db76b44ecac6a linux-3.0/arch/arm/mach-ks8695/pci.c -8dfcc63c6cd63e1ff21091d5906581bd linux-3.0/arch/arm/mach-ks8695/leds.c -278c33741b6a40e36a88c3154ec9b95c linux-3.0/arch/arm/mach-ks8695/irq.c -30a845d71730d4b0a288538bf34a6777 linux-3.0/arch/arm/mach-ks8695/include/mach/vmalloc.h -7a014aa5bbb31d955b78af7e2312542f linux-3.0/arch/arm/mach-ks8695/include/mach/uncompress.h -bdc500601783ea83f3e168bac085a142 linux-3.0/arch/arm/mach-ks8695/include/mach/timex.h -177f7a8a7a25586322f0c7933d174a52 linux-3.0/arch/arm/mach-ks8695/include/mach/system.h -b3685890c6150394ea9cfd72e5a39b7c linux-3.0/arch/arm/mach-ks8695/include/mach/regs-wan.h -0094dee39bd15c71c0b57d7a41b81f5f linux-3.0/arch/arm/mach-ks8695/include/mach/regs-uart.h -c5a3858d2c4df4bb0034e536be3e4b68 linux-3.0/arch/arm/mach-ks8695/include/mach/regs-timer.h -42653ec136ad3211334fb91e8826d64a linux-3.0/arch/arm/mach-ks8695/include/mach/regs-sys.h -681da157855018b3ac41c4e89332e016 linux-3.0/arch/arm/mach-ks8695/include/mach/regs-switch.h -44443cdb235122b7eca8bc4a85336f3f linux-3.0/arch/arm/mach-ks8695/include/mach/regs-pci.h -cf9144fc46d52fa90a27f0258cc32ad4 linux-3.0/arch/arm/mach-ks8695/include/mach/regs-misc.h -970831fa057eecb4068909f17b79674f linux-3.0/arch/arm/mach-ks8695/include/mach/regs-mem.h -76b7a10dc1b87389926254df036d035f linux-3.0/arch/arm/mach-ks8695/include/mach/regs-lan.h -718fb4631a5dbda28913c1425a81e276 linux-3.0/arch/arm/mach-ks8695/include/mach/regs-irq.h -fac808c88b5bfabeb51e1e1f8d27c077 linux-3.0/arch/arm/mach-ks8695/include/mach/regs-hpna.h -4364bcd3b7196056f1e1579d7da7c30a linux-3.0/arch/arm/mach-ks8695/include/mach/regs-gpio.h -6d0b10e199521bc3249d66af803793b3 linux-3.0/arch/arm/mach-ks8695/include/mach/memory.h -ec541d331829891dbde58ac9ed5cc32e linux-3.0/arch/arm/mach-ks8695/include/mach/irqs.h -e84a89ff2613c2ed7dea0cb821c610b0 linux-3.0/arch/arm/mach-ks8695/include/mach/io.h -9e9dc041e1e99cd2ffde71a1a47dd481 linux-3.0/arch/arm/mach-ks8695/include/mach/hardware.h -82cd6735f495718d6adc7dd986912e20 linux-3.0/arch/arm/mach-ks8695/include/mach/gpio.h -d6145ff3da3d7236362b26af858c6529 linux-3.0/arch/arm/mach-ks8695/include/mach/entry-macro.S -d35e552cbd60b6fb0bdfb5e9e1e271fb linux-3.0/arch/arm/mach-ks8695/include/mach/devices.h -9c69016cc0bf034680b96421af983ad9 linux-3.0/arch/arm/mach-ks8695/include/mach/debug-macro.S -093299905469b0a16dc957ec320590da linux-3.0/arch/arm/mach-ks8695/gpio.c -0bc728e505f5042883d47f41829815a3 linux-3.0/arch/arm/mach-ks8695/generic.h -ae7f0f589725e521a3e705c8ff28be1f linux-3.0/arch/arm/mach-ks8695/devices.c -e7f52fb27d7464078ebb6faa6ec218d0 linux-3.0/arch/arm/mach-ks8695/cpu.c -17aef9048489dee6a9a3964b2204bd18 linux-3.0/arch/arm/mach-ks8695/board-micrel.c -c08aec17803dedcddbe1a68b0462a83b linux-3.0/arch/arm/mach-ks8695/board-dsm320.c -364fd0bfd690b9c814c56cd8309652e2 linux-3.0/arch/arm/mach-ks8695/board-acs5k.c -b76ca49f948f2426a1c023ddf35a0f16 linux-3.0/arch/arm/mach-ks8695/Makefile.boot -4f878de6b8f86731fb49affdd7e574c6 linux-3.0/arch/arm/mach-ks8695/Makefile -f6b9d279f87fbc9914a6fbc72b08a8b7 linux-3.0/arch/arm/mach-ks8695/Kconfig -6ad5f3a1562c886c94c8e0fb0b720a67 linux-3.0/arch/arm/mach-kirkwood/tsx1x-common.h -907a95f790ac5be2102c272557bf99fc linux-3.0/arch/arm/mach-kirkwood/tsx1x-common.c -5c9ca33dbce9363ff529d09dfd98f5ff linux-3.0/arch/arm/mach-kirkwood/ts41x-setup.c -a0cdf6c5412c18891e502ba518f26fbb linux-3.0/arch/arm/mach-kirkwood/ts219-setup.c -a48a66517f768ede06a64e379dcbad0f linux-3.0/arch/arm/mach-kirkwood/t5325-setup.c -22b213ebdc71e909cc4f5141ca2bb3f4 linux-3.0/arch/arm/mach-kirkwood/sheevaplug-setup.c -e3a430da74bb2c290953bd06e4d586a5 linux-3.0/arch/arm/mach-kirkwood/rd88f6281-setup.c -dae25e75e5729c8ea376ba2c07a7a835 linux-3.0/arch/arm/mach-kirkwood/rd88f6192-nas-setup.c -459fcf98598af520c6752862f198fa49 linux-3.0/arch/arm/mach-kirkwood/pcie.c -ca8a5ae540f2e03bc080e7136d80de3e linux-3.0/arch/arm/mach-kirkwood/openrd-setup.c -3e56affb4c677d109a32b5d61ed9040e linux-3.0/arch/arm/mach-kirkwood/netxbig_v2-setup.c -dcfeb8b28954f55a9b347ddac04b8445 linux-3.0/arch/arm/mach-kirkwood/netspace_v2-setup.c -ae2015fc6866b728999a4e06d674a0fc linux-3.0/arch/arm/mach-kirkwood/mv88f6281gtw_ge-setup.c -81c1914c677be22ae31b59dffe93e90e linux-3.0/arch/arm/mach-kirkwood/mpp.h -2c5dc835140bc09f6ffcb23fbfd76828 linux-3.0/arch/arm/mach-kirkwood/mpp.c -a767b748255c0254a3d10955335767b7 linux-3.0/arch/arm/mach-kirkwood/lacie_v2-common.h -1de731a10508fafd5ac45c5fd978ec21 linux-3.0/arch/arm/mach-kirkwood/lacie_v2-common.c -cf319cd28df162626f070f0e344a8aff linux-3.0/arch/arm/mach-kirkwood/irq.c -314064b23ba9630200a84341942ea69e linux-3.0/arch/arm/mach-kirkwood/include/mach/vmalloc.h -3bd0925fe0c34c179d7f798324cc02f8 linux-3.0/arch/arm/mach-kirkwood/include/mach/uncompress.h -3c0492cf9b527ecfec9c15369ea2a008 linux-3.0/arch/arm/mach-kirkwood/include/mach/timex.h -ccd00619f6fa4cdd72e61da090dc6a2e linux-3.0/arch/arm/mach-kirkwood/include/mach/system.h -6b9c636c3c76a872c6781961b653ce68 linux-3.0/arch/arm/mach-kirkwood/include/mach/memory.h -1ba93192f0eab938bd98490410736736 linux-3.0/arch/arm/mach-kirkwood/include/mach/leds-ns2.h -35ca13b447e1737ea17be4201a928739 linux-3.0/arch/arm/mach-kirkwood/include/mach/leds-netxbig.h -f1e20f79c4de355c21283fbbe4c9f239 linux-3.0/arch/arm/mach-kirkwood/include/mach/kirkwood.h -5d9192251910667f9d83075a59e7eba2 linux-3.0/arch/arm/mach-kirkwood/include/mach/irqs.h -1856ad803896152c5ca3c57d79a6b104 linux-3.0/arch/arm/mach-kirkwood/include/mach/io.h -aef0e6f3e54d02d13480172274224b10 linux-3.0/arch/arm/mach-kirkwood/include/mach/hardware.h -873f066ad620654c0b0fdffe121c6ba4 linux-3.0/arch/arm/mach-kirkwood/include/mach/gpio.h -20fe29c6ebd5256989cb51cd15242675 linux-3.0/arch/arm/mach-kirkwood/include/mach/entry-macro.S -f6fcd3a08a0074939828bb46d868efa6 linux-3.0/arch/arm/mach-kirkwood/include/mach/debug-macro.S -1d2e349e00584aa8931d2138e2500492 linux-3.0/arch/arm/mach-kirkwood/include/mach/bridge-regs.h -a93702dca3a0dfa0924b698ee6a714f3 linux-3.0/arch/arm/mach-kirkwood/guruplug-setup.c -770a4096e11e9c44e58ced4ee7d38b70 linux-3.0/arch/arm/mach-kirkwood/dockstar-setup.c -7d8107253674170858b88a6acb0d04a4 linux-3.0/arch/arm/mach-kirkwood/db88f6281-bp-setup.c -f2b596d60c9da75f745ae4ca048da41d linux-3.0/arch/arm/mach-kirkwood/d2net_v2-setup.c -6e8f32d419b132bae2064d5650c22a43 linux-3.0/arch/arm/mach-kirkwood/cpuidle.c -089471ffeade7eeb0437b6715082bf9d linux-3.0/arch/arm/mach-kirkwood/common.h -a893353b07187e7ea170bf2e5700776b linux-3.0/arch/arm/mach-kirkwood/common.c -326e352cf9aa71cd6c995be414394e2c linux-3.0/arch/arm/mach-kirkwood/addr-map.c -2d8e959feddb306bbe713874054300ba linux-3.0/arch/arm/mach-kirkwood/Makefile.boot -8a82bdc79a5db7b11ef066dd59c4b8c2 linux-3.0/arch/arm/mach-kirkwood/Makefile -3170df7334b9ce304031573b7cc6f87b linux-3.0/arch/arm/mach-kirkwood/Kconfig -d1030f601df496730db85b13b1d77657 linux-3.0/arch/arm/mach-ixp4xx/wg302v2-setup.c -d6ebc47347b1f31f575fe57bf1cadfda linux-3.0/arch/arm/mach-ixp4xx/wg302v2-pci.c -30b772dc3f8db5c3ab6d1f6b9bab097a linux-3.0/arch/arm/mach-ixp4xx/vulcan-setup.c -795dfb2cbdc459b490f4ec7b5d12caec linux-3.0/arch/arm/mach-ixp4xx/vulcan-pci.c -d322b54d70365e3998511cb2f9ffdbb2 linux-3.0/arch/arm/mach-ixp4xx/nslu2-setup.c -d2c44ae8f9db31376f7d88926a40df26 linux-3.0/arch/arm/mach-ixp4xx/nslu2-pci.c -61418c6f07a12e0b280d7ab87af38754 linux-3.0/arch/arm/mach-ixp4xx/nas100d-setup.c -b1901dd3b8741304c5a19c0854e73e0d linux-3.0/arch/arm/mach-ixp4xx/nas100d-pci.c -beeca028aa58688a25acce405d342408 linux-3.0/arch/arm/mach-ixp4xx/ixp4xx_qmgr.c -0a8254955cf353622ff761ab26c4d4a9 linux-3.0/arch/arm/mach-ixp4xx/ixp4xx_npe.c -22e7cb484e10a44ef36974d762958a9e linux-3.0/arch/arm/mach-ixp4xx/ixdpg425-pci.c -09ccc7eba6309e6193edb4f7a8f9f658 linux-3.0/arch/arm/mach-ixp4xx/ixdp425-setup.c -262ad64c64044d9487226d9d6a88aba5 linux-3.0/arch/arm/mach-ixp4xx/ixdp425-pci.c -427618703a3e247ecd71309ac9b9c43b linux-3.0/arch/arm/mach-ixp4xx/include/mach/vmalloc.h -f31a11590e07a576ea48848606fa768d linux-3.0/arch/arm/mach-ixp4xx/include/mach/uncompress.h -01b67dd223b72721f4bfef82f073fa75 linux-3.0/arch/arm/mach-ixp4xx/include/mach/udc.h -d88dfd6babfefc01b3b68e38908af71f linux-3.0/arch/arm/mach-ixp4xx/include/mach/timex.h -ee20f5c2588175d89cf71fc18e282807 linux-3.0/arch/arm/mach-ixp4xx/include/mach/system.h -1de8068d4103c66549e58f515c65b754 linux-3.0/arch/arm/mach-ixp4xx/include/mach/qmgr.h -41836bbeab4f7c6db39efdb908d9a754 linux-3.0/arch/arm/mach-ixp4xx/include/mach/platform.h -500a263c80d26a6dec20e722c74601d0 linux-3.0/arch/arm/mach-ixp4xx/include/mach/npe.h -f15769de841e13561a61212a25ad5fe0 linux-3.0/arch/arm/mach-ixp4xx/include/mach/memory.h -cea43808d0a783372abc3ed50fdd7f30 linux-3.0/arch/arm/mach-ixp4xx/include/mach/ixp4xx-regs.h -323ce256112cdab483adc09a9d828f0e linux-3.0/arch/arm/mach-ixp4xx/include/mach/ixp46x_ts.h -4fa066f1f029de66fd2e4f1d8253c7bd linux-3.0/arch/arm/mach-ixp4xx/include/mach/irqs.h -4d8d8a862be3c2a4723294ae3b4a5fd9 linux-3.0/arch/arm/mach-ixp4xx/include/mach/io.h -9d3c23d0d7a2c28a53859d139fd84eaf linux-3.0/arch/arm/mach-ixp4xx/include/mach/hardware.h -82251aa05f20136733b74aa69647454d linux-3.0/arch/arm/mach-ixp4xx/include/mach/gpio.h -6095da0307695bba9a70c0b52e2037e1 linux-3.0/arch/arm/mach-ixp4xx/include/mach/entry-macro.S -a652801750898c95216de2b505fac65a linux-3.0/arch/arm/mach-ixp4xx/include/mach/debug-macro.S -ee5b04f8df9369a47432a8260fa3704c linux-3.0/arch/arm/mach-ixp4xx/include/mach/cpu.h -dadd65670080719f4ef2f939aaaab291 linux-3.0/arch/arm/mach-ixp4xx/gtwx5715-setup.c -bf41402e06e72a4b14ce17ee9d5c7fab linux-3.0/arch/arm/mach-ixp4xx/gtwx5715-pci.c -dceba5a21ff862b4b70a711985af9a8d linux-3.0/arch/arm/mach-ixp4xx/goramo_mlr.c -4d9beadfe3bf78ea9144b80754a0c206 linux-3.0/arch/arm/mach-ixp4xx/gateway7001-setup.c -2196cf0bf816944e42f246162b5299d3 linux-3.0/arch/arm/mach-ixp4xx/gateway7001-pci.c -7b494de1042ed6f2db724a09c7a9af07 linux-3.0/arch/arm/mach-ixp4xx/fsg-setup.c -563911358f99b84bcd0673ad8cf5c0e0 linux-3.0/arch/arm/mach-ixp4xx/fsg-pci.c -ce82c6f95c69aadf6936724651f050e3 linux-3.0/arch/arm/mach-ixp4xx/dsmg600-setup.c -0adab01ce8eb2dc42fcbb3e151d078be linux-3.0/arch/arm/mach-ixp4xx/dsmg600-pci.c -a257310728d3cd7c8a98c5388bad9a8a linux-3.0/arch/arm/mach-ixp4xx/coyote-setup.c -ff64cd397667137733df559880443e7d linux-3.0/arch/arm/mach-ixp4xx/coyote-pci.c -381ad56546499d1265e001e6ea95e652 linux-3.0/arch/arm/mach-ixp4xx/common.c -fae49dd6a397825e570932fdb77d6584 linux-3.0/arch/arm/mach-ixp4xx/common-pci.c -50f05396c61b41fdafe1b7c308369cb0 linux-3.0/arch/arm/mach-ixp4xx/avila-setup.c -14f568aadbe9c78321d2e2c13f40cb02 linux-3.0/arch/arm/mach-ixp4xx/avila-pci.c -1e493f8003e94f08380b49cd3c5ad3c2 linux-3.0/arch/arm/mach-ixp4xx/Makefile.boot -b4690a6b098442b2b0b63113d061e1aa linux-3.0/arch/arm/mach-ixp4xx/Makefile -ce6bd5933e1c45b6fa9ee34f5d3cf06d linux-3.0/arch/arm/mach-ixp4xx/Kconfig -19cccf922a7cdc39ab125e4534e1104b linux-3.0/arch/arm/mach-ixp23xx/roadrunner.c -3681fd1446aace77928c5164ed6b9dae linux-3.0/arch/arm/mach-ixp23xx/pci.c -3d0e9cb58268d205eb27adada8694739 linux-3.0/arch/arm/mach-ixp23xx/ixdp2351.c -e8fb53637229b2d744b5cc88ea98efc7 linux-3.0/arch/arm/mach-ixp23xx/include/mach/vmalloc.h -07710c314dfae0a4a5fc1716e06e14c5 linux-3.0/arch/arm/mach-ixp23xx/include/mach/uncompress.h -99bb5e8fd8392c073a3ce6e6263c6b70 linux-3.0/arch/arm/mach-ixp23xx/include/mach/timex.h -d4efe772531959be3adf2e04c1dd2f91 linux-3.0/arch/arm/mach-ixp23xx/include/mach/time.h -6a87a825aef29cba80a6f1fc044396f9 linux-3.0/arch/arm/mach-ixp23xx/include/mach/system.h -0b85cbeeedf5e969fe71aee2da8dca8e linux-3.0/arch/arm/mach-ixp23xx/include/mach/platform.h -9111d6e3a14539a92382baecfbf99ee1 linux-3.0/arch/arm/mach-ixp23xx/include/mach/memory.h -8dbf01c1de5d845bfef5c49a588ed7fc linux-3.0/arch/arm/mach-ixp23xx/include/mach/ixp23xx.h -3a1217ff1d284ef4e7d9d11115bc9b2e linux-3.0/arch/arm/mach-ixp23xx/include/mach/ixdp2351.h -83b5a8c105848957dca48956da0752ed linux-3.0/arch/arm/mach-ixp23xx/include/mach/irqs.h -ff7694584e5848af711bad423f57dd13 linux-3.0/arch/arm/mach-ixp23xx/include/mach/io.h -07f2b0233f6799cb6ca9573bdc2bbd43 linux-3.0/arch/arm/mach-ixp23xx/include/mach/hardware.h -1fe867a6f214269cd13539927e06a7df linux-3.0/arch/arm/mach-ixp23xx/include/mach/entry-macro.S -140fc42546c25970ae02c29e3e83d1df linux-3.0/arch/arm/mach-ixp23xx/include/mach/debug-macro.S -d978d3568f3aedbc31e6f156cbbd6a82 linux-3.0/arch/arm/mach-ixp23xx/espresso.c -b6f6dcc5e81501bc5279c7a5254835f9 linux-3.0/arch/arm/mach-ixp23xx/core.c -b563360cf893bd48ea9d73a36da3958b linux-3.0/arch/arm/mach-ixp23xx/Makefile.boot -c40de47bd501b84a7e088ac9b0e78afc linux-3.0/arch/arm/mach-ixp23xx/Makefile -c30838a1ada9ff9caf37360646b9375f linux-3.0/arch/arm/mach-ixp23xx/Kconfig -fca96995897710a95ca12e586a170f14 linux-3.0/arch/arm/mach-ixp2000/pci.c -1086f205b76d85b15b92e3dd06f3f136 linux-3.0/arch/arm/mach-ixp2000/ixdp2x01.c -243f23bad88dc5d812f8dbbc9b0288f3 linux-3.0/arch/arm/mach-ixp2000/ixdp2x00.c -53ec30c2da82a1165626962c16f7466b linux-3.0/arch/arm/mach-ixp2000/ixdp2800.c -abff420f7f119bd8b63ef69c62d95149 linux-3.0/arch/arm/mach-ixp2000/ixdp2400.c -8acb2bddb572d4e665e9401459ecb4b1 linux-3.0/arch/arm/mach-ixp2000/include/mach/vmalloc.h -77e693013b36cfdb47db3db92493583f linux-3.0/arch/arm/mach-ixp2000/include/mach/uncompress.h -e54881b1404e2547398ce55cba71a479 linux-3.0/arch/arm/mach-ixp2000/include/mach/timex.h -e31fc3e4109be4f18a16e892a8f312df linux-3.0/arch/arm/mach-ixp2000/include/mach/system.h -727df65b46195ab56382348e43b4b198 linux-3.0/arch/arm/mach-ixp2000/include/mach/platform.h -de9376afe0359336434f2090c9c21998 linux-3.0/arch/arm/mach-ixp2000/include/mach/memory.h -567d41d2c762c1728f37a4f1b328e9d2 linux-3.0/arch/arm/mach-ixp2000/include/mach/ixp2000-regs.h -89c599eeaccf2ec12db34a2e39549429 linux-3.0/arch/arm/mach-ixp2000/include/mach/ixdp2x01.h -3047536db14a81646552f0976732049e linux-3.0/arch/arm/mach-ixp2000/include/mach/ixdp2x00.h -ea0500a198cbd4884d7ad5f575048285 linux-3.0/arch/arm/mach-ixp2000/include/mach/irqs.h -73a72ac65197341a6629c96c936708c7 linux-3.0/arch/arm/mach-ixp2000/include/mach/io.h -2677e741abf34a84176ce9e09aaa8124 linux-3.0/arch/arm/mach-ixp2000/include/mach/hardware.h -40f53f617b1dab427ccc1a7261184ffb linux-3.0/arch/arm/mach-ixp2000/include/mach/gpio.h -c2cf99c34d283a6609def38a0e50ae7e linux-3.0/arch/arm/mach-ixp2000/include/mach/entry-macro.S -429e07d780558bbca4bcb099f9ccd235 linux-3.0/arch/arm/mach-ixp2000/include/mach/enp2611.h -5641085197cf1727822fab3e132f4788 linux-3.0/arch/arm/mach-ixp2000/include/mach/debug-macro.S -a9a6486896a051a3c909c0417fa63e50 linux-3.0/arch/arm/mach-ixp2000/enp2611.c -afcbe5a2c0408d6da5c58f19da8b4e61 linux-3.0/arch/arm/mach-ixp2000/core.c -1e493f8003e94f08380b49cd3c5ad3c2 linux-3.0/arch/arm/mach-ixp2000/Makefile.boot -d28aa72f0f54765fab7a2fcfa9de4fad linux-3.0/arch/arm/mach-ixp2000/Makefile -f9a6917f7ea8f64c5f5055d84b781659 linux-3.0/arch/arm/mach-ixp2000/Kconfig -79d82f255caf9275a3cd3b46331df4f2 linux-3.0/arch/arm/mach-iop33x/uart.c -32276adf2269abf89505b17ce88ece61 linux-3.0/arch/arm/mach-iop33x/irq.c -3cec34614d4beee6b4fd8164d15a1329 linux-3.0/arch/arm/mach-iop33x/iq80332.c -1812bb0409a2df4da70ba563252d42a5 linux-3.0/arch/arm/mach-iop33x/iq80331.c -d1a1b084acc27442cb9467e20852558d linux-3.0/arch/arm/mach-iop33x/include/mach/vmalloc.h -dc48c52eff7e42766d5b4b4237b4215f linux-3.0/arch/arm/mach-iop33x/include/mach/uncompress.h -54116cfe2ec1065bccce32ba24c8340d linux-3.0/arch/arm/mach-iop33x/include/mach/timex.h -4f10a3010144c12737b67a7e2e35e1ce linux-3.0/arch/arm/mach-iop33x/include/mach/time.h -e6e6ec5d04ad3bd9d7b9a873aa7cc559 linux-3.0/arch/arm/mach-iop33x/include/mach/system.h -cdc24612681fea2a9011e948c73f64f3 linux-3.0/arch/arm/mach-iop33x/include/mach/memory.h -812a8c6c2834dc86d70451d033121b35 linux-3.0/arch/arm/mach-iop33x/include/mach/irqs.h -b4e4b6cfa635930e714ee90f80f79d13 linux-3.0/arch/arm/mach-iop33x/include/mach/iq80332.h -fddd858f28127adeffc3142bace292f5 linux-3.0/arch/arm/mach-iop33x/include/mach/iq80331.h -5ac1f08c54af7a4efbef1588e9c015f8 linux-3.0/arch/arm/mach-iop33x/include/mach/iop33x.h -25a84536cf2d16258300a9c433657e8d linux-3.0/arch/arm/mach-iop33x/include/mach/io.h -cf37508f68642467a361e28571798bd0 linux-3.0/arch/arm/mach-iop33x/include/mach/hardware.h -7cfc5196854d6185014de4c29de41ae7 linux-3.0/arch/arm/mach-iop33x/include/mach/gpio.h -e6c4ec0afa79e6e6403d62d444e33634 linux-3.0/arch/arm/mach-iop33x/include/mach/entry-macro.S -8dcfc9cfe24e29f9e7ecb581d3282d7c linux-3.0/arch/arm/mach-iop33x/include/mach/debug-macro.S -963ad28bc0715dc443a877ef998486a9 linux-3.0/arch/arm/mach-iop33x/include/mach/adma.h -2d8e959feddb306bbe713874054300ba linux-3.0/arch/arm/mach-iop33x/Makefile.boot -697ddef5a7a8dbdb67fcbe8f0741e1f3 linux-3.0/arch/arm/mach-iop33x/Makefile -5a65f04e4f44723d3e996e1371c765c3 linux-3.0/arch/arm/mach-iop33x/Kconfig -e701e248c30c565ad9ef1a4feb9fb0dd linux-3.0/arch/arm/mach-iop32x/n2100.c -0a0303e1c9dac151e7c1a992b3b6ef6e linux-3.0/arch/arm/mach-iop32x/irq.c -3aea3e687291370aa4bdec01d6d4a254 linux-3.0/arch/arm/mach-iop32x/iq80321.c -1342ed22e2acbe10a308852ad65e02af linux-3.0/arch/arm/mach-iop32x/iq31244.c -fb0df0a2b1820c029319f3d1c456fcbe linux-3.0/arch/arm/mach-iop32x/include/mach/vmalloc.h -0c08cd93c7965b47cf5a608b08208528 linux-3.0/arch/arm/mach-iop32x/include/mach/uncompress.h -1f841b7bff60aefc4830fde6a83c878c linux-3.0/arch/arm/mach-iop32x/include/mach/timex.h -816fbf8b90b07355af0c3b11aee306cf linux-3.0/arch/arm/mach-iop32x/include/mach/time.h -f09c7e0845233686a96dcf5a40be6d6a linux-3.0/arch/arm/mach-iop32x/include/mach/system.h -a35ad8889e5605a83f9959aec427783c linux-3.0/arch/arm/mach-iop32x/include/mach/n2100.h -51d7b2e1961a8a75ffe1e85f95091b6d linux-3.0/arch/arm/mach-iop32x/include/mach/memory.h -51f594e98d0a3c2b9c851a0c785074d6 linux-3.0/arch/arm/mach-iop32x/include/mach/irqs.h -f865563dbbf52eaf09f9c54927729a4b linux-3.0/arch/arm/mach-iop32x/include/mach/iq80321.h -94a197e35b6dda34345914422cb20c16 linux-3.0/arch/arm/mach-iop32x/include/mach/iq31244.h -729ca6fb05a6505218069d979081b5c9 linux-3.0/arch/arm/mach-iop32x/include/mach/iop32x.h -a2205fb9d6bb86552ce04afce0961c23 linux-3.0/arch/arm/mach-iop32x/include/mach/io.h -719926f5a6715f9c58f651e080924162 linux-3.0/arch/arm/mach-iop32x/include/mach/hardware.h -753377bafe6ef93c9435b09dd122c8fa linux-3.0/arch/arm/mach-iop32x/include/mach/gpio.h -d9577ea3d8874853b41c796f99c1ecc8 linux-3.0/arch/arm/mach-iop32x/include/mach/glantank.h -b773e4ff61ec61daf72befcc5f005202 linux-3.0/arch/arm/mach-iop32x/include/mach/entry-macro.S -c5b1681cea8af73ed71f0c3854c8e955 linux-3.0/arch/arm/mach-iop32x/include/mach/debug-macro.S -86d8398cbc3ca05cd1a5fa32479793ad linux-3.0/arch/arm/mach-iop32x/include/mach/adma.h -115b3edcd07b197ebccd0bee3bcfc4d7 linux-3.0/arch/arm/mach-iop32x/glantank.c -a1b74a1424d8274b19fb471b7a10709b linux-3.0/arch/arm/mach-iop32x/em7210.c -c93127a00055a458a7dcf9715e714f77 linux-3.0/arch/arm/mach-iop32x/Makefile.boot -144fd7ea46e1762cc3afdb9d8a4abd5a linux-3.0/arch/arm/mach-iop32x/Makefile -0e72551deff5c396fd1e00293fd009ac linux-3.0/arch/arm/mach-iop32x/Kconfig -b9caed7dbfb9e1e703c31e288a2e3b22 linux-3.0/arch/arm/mach-iop13xx/tpmi.c -69751cb830cc64875f29acb18178df93 linux-3.0/arch/arm/mach-iop13xx/setup.c -219a612f011843989ad9553bf399701e linux-3.0/arch/arm/mach-iop13xx/pci.c -2be26769ae9579a774d8d8a5ac8a0573 linux-3.0/arch/arm/mach-iop13xx/msi.c -edf3641a654103fb35dd0f887145e6f1 linux-3.0/arch/arm/mach-iop13xx/irq.c -52f776664906de316d4cbc1db7fb90ea linux-3.0/arch/arm/mach-iop13xx/iq81340sc.c -e7cadbf60ded5eae403971f5828d4a66 linux-3.0/arch/arm/mach-iop13xx/iq81340mc.c -227a66bdf6835bce63cd524701854bc6 linux-3.0/arch/arm/mach-iop13xx/io.c -0cca217e118e5c0bb7d4af30c9cd0797 linux-3.0/arch/arm/mach-iop13xx/include/mach/vmalloc.h -c7fd05ebabdd6c7e3674bef890b66520 linux-3.0/arch/arm/mach-iop13xx/include/mach/uncompress.h -565216dcf44dbdfa38e8c836ea6f1727 linux-3.0/arch/arm/mach-iop13xx/include/mach/timex.h -5a9a4d74b5b46720185fd6eec6bc2661 linux-3.0/arch/arm/mach-iop13xx/include/mach/time.h -9a5e2b39938340256b570474b4e66b95 linux-3.0/arch/arm/mach-iop13xx/include/mach/system.h -beca4d907475d630c23d95d9be0cbfe2 linux-3.0/arch/arm/mach-iop13xx/include/mach/pci.h -7f5dc79b7eb69f10f4161b465839c139 linux-3.0/arch/arm/mach-iop13xx/include/mach/msi.h -f6b8f333e90616b893333b38db0dd1d5 linux-3.0/arch/arm/mach-iop13xx/include/mach/memory.h -7ce09d00a86d39d350f62c6362b0a4e8 linux-3.0/arch/arm/mach-iop13xx/include/mach/irqs.h -0b75ce77b5ad36f0036df1801d1e01a2 linux-3.0/arch/arm/mach-iop13xx/include/mach/iq81340.h -bdc89d594872c437ead9f9e593d8dafe linux-3.0/arch/arm/mach-iop13xx/include/mach/iop13xx.h -5a4a03cd2a476d1ff3a6a549eeceee1c linux-3.0/arch/arm/mach-iop13xx/include/mach/io.h -d294c104d0cde00abf7cf8178df7e2b9 linux-3.0/arch/arm/mach-iop13xx/include/mach/hardware.h -a42f42f467b3e0e9f61b7a8670f647f6 linux-3.0/arch/arm/mach-iop13xx/include/mach/entry-macro.S -ed725e8a6f95f7d5c76dcb5b2fde1831 linux-3.0/arch/arm/mach-iop13xx/include/mach/debug-macro.S -2fa595491e71e4f899c3df1c623b6eeb linux-3.0/arch/arm/mach-iop13xx/include/mach/adma.h -a480db8bb5dcd1c926b77f452ef2ad95 linux-3.0/arch/arm/mach-iop13xx/Makefile.boot -9cdb569181f6a1e99d5e79a0f78ae5ed linux-3.0/arch/arm/mach-iop13xx/Makefile -33ec534827438452fa3dbc34c75c2775 linux-3.0/arch/arm/mach-iop13xx/Kconfig -3f7b010b2db4f1c4191cdd38027615a7 linux-3.0/arch/arm/mach-integrator/pci_v3.c -7b87167152cbf3fd9b7b80aa5c18b217 linux-3.0/arch/arm/mach-integrator/pci.c -a649025fa918fe7c8958acd532ba7cfb linux-3.0/arch/arm/mach-integrator/lm.c -bbd4446df5c2355d0d50b772c85c2a94 linux-3.0/arch/arm/mach-integrator/leds.c -d61d21081b90f3fe4665710a1156f94e linux-3.0/arch/arm/mach-integrator/integrator_cp.c -9716be552792333f674fe25eda16d891 linux-3.0/arch/arm/mach-integrator/integrator_ap.c -dcaf7905baca64ab1c9ca11245a421dc linux-3.0/arch/arm/mach-integrator/include/mach/vmalloc.h -972bd5182b5cf1dd5c52d0f6dea986e9 linux-3.0/arch/arm/mach-integrator/include/mach/uncompress.h -ca6ab08a0fd819c2ab518eb18338b830 linux-3.0/arch/arm/mach-integrator/include/mach/timex.h -7b49fda1192320ec20057e1306c58068 linux-3.0/arch/arm/mach-integrator/include/mach/system.h -8a56fcabf7c3e45db66f4dd25d92158f linux-3.0/arch/arm/mach-integrator/include/mach/platform.h -4b671eadca75b39deffc8027573cdd2a linux-3.0/arch/arm/mach-integrator/include/mach/memory.h -9b2fddef41dd8802457e55658df1d1d6 linux-3.0/arch/arm/mach-integrator/include/mach/lm.h -994264aa4227501cbcbb768be06e0ccd linux-3.0/arch/arm/mach-integrator/include/mach/irqs.h -61429e19ada183ee6d7f4df0b6aa6b4a linux-3.0/arch/arm/mach-integrator/include/mach/io.h -777e81717e9b9680791160f04c42a4df linux-3.0/arch/arm/mach-integrator/include/mach/impd1.h -2ee639516d5d0447e55e267137c621fc linux-3.0/arch/arm/mach-integrator/include/mach/hardware.h -12a9a0aad3c45b896793607eba25d2d2 linux-3.0/arch/arm/mach-integrator/include/mach/entry-macro.S -ce643b083e1fba0c22dde0655eb6b566 linux-3.0/arch/arm/mach-integrator/include/mach/debug-macro.S -6f674c97c29abd5aca36f22d0dc31947 linux-3.0/arch/arm/mach-integrator/include/mach/cm.h -4e878fd641289540e5698f22748ce0af linux-3.0/arch/arm/mach-integrator/include/mach/clkdev.h -a0b5b9b03b78f330da3891dfbaaf0767 linux-3.0/arch/arm/mach-integrator/include/mach/bits.h -93611c29b3488b55323ab0828feadfea linux-3.0/arch/arm/mach-integrator/impd1.c -8544d15e73d174d188b7838682eac8d5 linux-3.0/arch/arm/mach-integrator/cpu.c -220e1b6b4d637223081cd003b412ab12 linux-3.0/arch/arm/mach-integrator/core.c -bdf569d19616127eab205076dcbe2143 linux-3.0/arch/arm/mach-integrator/common.h -1fd7c57a4f7d267776c24c8f4024ec14 linux-3.0/arch/arm/mach-integrator/Makefile.boot -d7fc03832735990171cbb051177a0149 linux-3.0/arch/arm/mach-integrator/Makefile -fd91bb451996ebbbb9aa3bbccce534bf linux-3.0/arch/arm/mach-integrator/Kconfig -014e81f965e2bac654d266cd3cc58aff linux-3.0/arch/arm/mach-imx/pm-imx27.c -7649d1202707a22e9cd6c50a8432f36b linux-3.0/arch/arm/mach-imx/pcm970-baseboard.c -dd91b0a5fdc31a5d79f9f9b11b86b9ab linux-3.0/arch/arm/mach-imx/pcm037.h -e85f729950d3e99e28b4286206d568df linux-3.0/arch/arm/mach-imx/mx31moboard-smartbot.c -db4c86a6f64b506d3cc346695d8769e2 linux-3.0/arch/arm/mach-imx/mx31moboard-marxbot.c -b7a6e68c410e7e8c632d0a8f2335d5e5 linux-3.0/arch/arm/mach-imx/mx31moboard-devboard.c -d85306a2448c7cd503a1a161c5656d36 linux-3.0/arch/arm/mach-imx/mx31lite-db.c -644c3acd8c0b849ce5888d5acc207aba linux-3.0/arch/arm/mach-imx/mx31lilly-db.c -13a0b54bf96a256825930cec9b66f23b linux-3.0/arch/arm/mach-imx/mx1-camera-fiq.S -e768a4ee4a57f20db030ef5649a5aa89 linux-3.0/arch/arm/mach-imx/mx1-camera-fiq-ksym.c -f94a63cd2c68623e4466fa9df222b01d linux-3.0/arch/arm/mach-imx/mm-imx35.c -80769774a3b5ea0576ef48c9adaa2c02 linux-3.0/arch/arm/mach-imx/mm-imx31.c -90f6029ced65e323f7e0d6b890a298f0 linux-3.0/arch/arm/mach-imx/mm-imx27.c -a6dc5f8507fd5f57021066e545154de2 linux-3.0/arch/arm/mach-imx/mm-imx25.c -f6f94a2b09dc5adc93881ede3bc8830a linux-3.0/arch/arm/mach-imx/mm-imx21.c -7f3ef8c5c199682415d0ac1402b6560e linux-3.0/arch/arm/mach-imx/mm-imx1.c -bd343087b25841f1e6bf364ba155a6b7 linux-3.0/arch/arm/mach-imx/mach-vpr200.c -89a295b74ba49076bbbad6ead9f660ef linux-3.0/arch/arm/mach-imx/mach-scb9328.c -fb34378288f3d739b8b6f441177ce312 linux-3.0/arch/arm/mach-imx/mach-qong.c -7a2224c0ac59990a6111523c356e155a linux-3.0/arch/arm/mach-imx/mach-pcm043.c -2b730cc97a89a9502a79cfb2361dc0f9 linux-3.0/arch/arm/mach-imx/mach-pcm038.c -10ae7ba29d07c13b326ee7f3ac6da45d linux-3.0/arch/arm/mach-imx/mach-pcm037_eet.c -cc14e2eee560e9dbd0329b5bb6aca365 linux-3.0/arch/arm/mach-imx/mach-pcm037.c -9e7cb1e1825b18fbebb021d1da305457 linux-3.0/arch/arm/mach-imx/mach-pca100.c -379b266a25b47221a0df543748932078 linux-3.0/arch/arm/mach-imx/mach-mxt_td60.c -baaceaed3d8469bfe63fd5dd834e980f linux-3.0/arch/arm/mach-imx/mach-mx35_3ds.c -56e4386d20527a5d8124c5da67cfd81f linux-3.0/arch/arm/mach-imx/mach-mx31moboard.c -4a80107473e0c27779b6bbee2248f8c9 linux-3.0/arch/arm/mach-imx/mach-mx31lite.c -6805860a2669200c51787fa30a62cf05 linux-3.0/arch/arm/mach-imx/mach-mx31lilly.c -66b0f50bb464efed1fe8d9c5afc285e8 linux-3.0/arch/arm/mach-imx/mach-mx31ads.c -698b82d05362273a0ecff643bda6c494 linux-3.0/arch/arm/mach-imx/mach-mx31_3ds.c -049fbb2ac270f06dec6c9238ec4a7a3c linux-3.0/arch/arm/mach-imx/mach-mx27ads.c -181bdd3389f44b65a37457a48aac9e6b linux-3.0/arch/arm/mach-imx/mach-mx27_3ds.c -ff015d698414c11e43befdd5603c5fee linux-3.0/arch/arm/mach-imx/mach-mx25_3ds.c -b6f1916466700e90b2d32d4f72919fa3 linux-3.0/arch/arm/mach-imx/mach-mx21ads.c -15781aa86b91cabdc023d66285d67979 linux-3.0/arch/arm/mach-imx/mach-mx1ads.c -e72fc9276a4e272684fb91eb4c1c56de linux-3.0/arch/arm/mach-imx/mach-kzm_arm11_01.c -54b57ad2564a6633a9beb07c3735e62e linux-3.0/arch/arm/mach-imx/mach-imx27lite.c -42f6d3d4e3e2257c29a82a6322951fe0 linux-3.0/arch/arm/mach-imx/mach-imx27ipcam.c -d5e0c0aa8f546e0907266f582246801d linux-3.0/arch/arm/mach-imx/mach-imx27_visstrim_m10.c -ba3de03e4bf4216d685f328c4a632892 linux-3.0/arch/arm/mach-imx/mach-eukrea_cpuimx25.c -ef9b960c8c904685eca8c1a571c85ffd linux-3.0/arch/arm/mach-imx/mach-cpuimx35.c -fe1d74ea4c64761bb4404da38676cc5f linux-3.0/arch/arm/mach-imx/mach-cpuimx27.c -ea73dca2c6008e8d8c89b80083239e2f linux-3.0/arch/arm/mach-imx/mach-bug.c -6a33359c9dafeca6a1dc57b18d298c8e linux-3.0/arch/arm/mach-imx/mach-armadillo5x0.c -6f2f5ee691639ffd84f729bff6f9feee linux-3.0/arch/arm/mach-imx/mach-apf9328.c -880ea20d2af07abff8851c80ba80e874 linux-3.0/arch/arm/mach-imx/iomux-imx31.c -865bf3e3655fe4be112a9818b72c8bfe linux-3.0/arch/arm/mach-imx/include/mach/dma-v1.h -88898f157380250f5181b38e4acbbd70 linux-3.0/arch/arm/mach-imx/include/mach/dma-mx1-mx2.h -f759b3aca3f9c8d5903d708f453c707a linux-3.0/arch/arm/mach-imx/eukrea_mbimxsd35-baseboard.c -ad5c6ba044deeaabb8ca81487af20871 linux-3.0/arch/arm/mach-imx/eukrea_mbimxsd25-baseboard.c -9afeb8a74bf3f10beeebade88f83a3d7 linux-3.0/arch/arm/mach-imx/eukrea_mbimx27-baseboard.c -943d135f9928aaec8472a390b326a3de linux-3.0/arch/arm/mach-imx/ehci-imx35.c -9d631f324c10d5aec0209d991180afc3 linux-3.0/arch/arm/mach-imx/ehci-imx31.c -ca114c675cf16b81701f599a3542f667 linux-3.0/arch/arm/mach-imx/ehci-imx27.c -31af52d45effcc1e8345e31dd98eb494 linux-3.0/arch/arm/mach-imx/ehci-imx25.c -8a8a156aa37d56b07b14d1d24fc291dd linux-3.0/arch/arm/mach-imx/dma-v1.c -e2b778fc48880cd6858150e6d3659c2e linux-3.0/arch/arm/mach-imx/devices-imx35.h -685838211e78645453ba4a23c4da9c10 linux-3.0/arch/arm/mach-imx/devices-imx31.h -6852bacd7e86b7207045f926ecfc5aa9 linux-3.0/arch/arm/mach-imx/devices-imx27.h -b6ad7efd5631bd3d5c0d4919da9dd76d linux-3.0/arch/arm/mach-imx/devices-imx25.h -d57ae26e3b213b95c6f0b4112538b45c linux-3.0/arch/arm/mach-imx/devices-imx21.h -13a84530d0a6e522eefd9c66e24dba8f linux-3.0/arch/arm/mach-imx/devices-imx1.h -2d8f6088047ab0c077c6b9495e13e087 linux-3.0/arch/arm/mach-imx/crmregs-imx31.h -f26fc9dbbdfd6f0f569e839f8d64da57 linux-3.0/arch/arm/mach-imx/cpu-imx35.c -3eeb97268636b97bc62cc1be0d7bf2ec linux-3.0/arch/arm/mach-imx/cpu-imx31.c -e3de9f4ab76326b946a88e23f9d564b4 linux-3.0/arch/arm/mach-imx/cpu-imx27.c -013d6f23b8204a1d12f323eb2fa8bc1c linux-3.0/arch/arm/mach-imx/clock-imx35.c -15392c026d16e4ff774364f2c55870f4 linux-3.0/arch/arm/mach-imx/clock-imx31.c -132dd5d1eb34541562dd3fc324a4ef8c linux-3.0/arch/arm/mach-imx/clock-imx27.c -06c5178f6aa9a94d2be51996e71e9c1c linux-3.0/arch/arm/mach-imx/clock-imx25.c -962d74a5c4cd23786a0af892aecd7eab linux-3.0/arch/arm/mach-imx/clock-imx21.c -e9fb9214d0c3ebd3386b7e7523518be6 linux-3.0/arch/arm/mach-imx/clock-imx1.c -a0f89641cc5eef6b1b31f5dd7b35c091 linux-3.0/arch/arm/mach-imx/cache-l2x0.c -12025448730799b8a1179a6b3074e6ae linux-3.0/arch/arm/mach-imx/Makefile.boot -3971164f7904d6f3ca112ac0edc98b3b linux-3.0/arch/arm/mach-imx/Makefile -56b9756edc76b1e43d9688609a3eeb59 linux-3.0/arch/arm/mach-imx/Kconfig -bb1e2e5a6db40242115643eaf2001161 linux-3.0/arch/arm/mach-h720x/include/mach/vmalloc.h -2e4c298cec98114a2d23f44cdc8c2dc1 linux-3.0/arch/arm/mach-h720x/include/mach/uncompress.h -81390e36d73dfd1714a9f74036cad206 linux-3.0/arch/arm/mach-h720x/include/mach/timex.h -5c57d6d6026c0e510d238bac6a40976c linux-3.0/arch/arm/mach-h720x/include/mach/system.h -c7ba79ae64cfae53604f4ebb8551752b linux-3.0/arch/arm/mach-h720x/include/mach/memory.h -fce1d9e62d9a557ae11b90bf42c33db8 linux-3.0/arch/arm/mach-h720x/include/mach/isa-dma.h -6f3b98dd306b934eea04059c324f6242 linux-3.0/arch/arm/mach-h720x/include/mach/irqs.h -564621ee995d700d9c492441879d2438 linux-3.0/arch/arm/mach-h720x/include/mach/io.h -8346d33b99ba9f47ecccb931335ad704 linux-3.0/arch/arm/mach-h720x/include/mach/hardware.h -36bc650d491a1cac38d8bd9e108eb38e linux-3.0/arch/arm/mach-h720x/include/mach/h7202-regs.h -444a5b9db24fe5656bdd74cb3c20e6f8 linux-3.0/arch/arm/mach-h720x/include/mach/h7201-regs.h -a11e7edf9cde1e7b0ed393965aaa0095 linux-3.0/arch/arm/mach-h720x/include/mach/entry-macro.S -23a2a9dcf82931919fab421745cde9a1 linux-3.0/arch/arm/mach-h720x/include/mach/debug-macro.S -96b813dc04a94819a679741d276f1df9 linux-3.0/arch/arm/mach-h720x/include/mach/boards.h -c1d3f8af22b030ba1b411f1f93ebae09 linux-3.0/arch/arm/mach-h720x/h7202-eval.c -86f2b0b9f4d247ba35ba812d13486543 linux-3.0/arch/arm/mach-h720x/h7201-eval.c -c1346cbef72ad1ee2ddc7035b5be473e linux-3.0/arch/arm/mach-h720x/cpu-h7202.c -bc98bd2df0d19e6d744ffe32e916abb9 linux-3.0/arch/arm/mach-h720x/cpu-h7201.c -9d9403175bb026a545e3f4d007ca4872 linux-3.0/arch/arm/mach-h720x/common.h -32b265ed5354e2124b1e4d512e28ab84 linux-3.0/arch/arm/mach-h720x/common.c -995831d020fb5716920f925c4e34e320 linux-3.0/arch/arm/mach-h720x/Makefile.boot -e58a2a5170f36cae202d3a40cb7172df linux-3.0/arch/arm/mach-h720x/Makefile -2b9ae4744b9da12cfc811ad0778b688f linux-3.0/arch/arm/mach-h720x/Kconfig -ae7404914ca647c4fdeac4a164732e7b linux-3.0/arch/arm/mach-gemini/time.c -2d6ff54e6f607f1fc9e36f5636ee09cb linux-3.0/arch/arm/mach-gemini/mm.c -a5445dcbf90f6e00b50e4a44c1372c18 linux-3.0/arch/arm/mach-gemini/irq.c -70381118743fc743440ffd6d521a4c78 linux-3.0/arch/arm/mach-gemini/include/mach/vmalloc.h -4e0cfcb1e31f7aa95b07fda261b221aa linux-3.0/arch/arm/mach-gemini/include/mach/uncompress.h -4f0aca615ee9b642351ecbcf8587e5a2 linux-3.0/arch/arm/mach-gemini/include/mach/timex.h -8bcef8779e2ecfde935b50b1272abc38 linux-3.0/arch/arm/mach-gemini/include/mach/system.h -1926ca6dabb9057e6d03bc33fbc32280 linux-3.0/arch/arm/mach-gemini/include/mach/memory.h -b22bd6df5ee9e971d7f0a5b842a04887 linux-3.0/arch/arm/mach-gemini/include/mach/irqs.h -149a8c966680e7bcf01e1770849ebda6 linux-3.0/arch/arm/mach-gemini/include/mach/io.h -3c384605c324b5388bb267d08a532ccc linux-3.0/arch/arm/mach-gemini/include/mach/hardware.h -58758801d5d4554025a3f210b4d22645 linux-3.0/arch/arm/mach-gemini/include/mach/gpio.h -7d2c60fa257ee5d6b15b40eddeb4e758 linux-3.0/arch/arm/mach-gemini/include/mach/global_reg.h -530b8971f54c7b89391f86e4a15c1e73 linux-3.0/arch/arm/mach-gemini/include/mach/entry-macro.S -5268266cff8891403f51e359312393ae linux-3.0/arch/arm/mach-gemini/include/mach/debug-macro.S -79a3752a6cc5b8b40e24cfabd3227e90 linux-3.0/arch/arm/mach-gemini/gpio.c -664fff903eb771b9901c3fed46f2639b linux-3.0/arch/arm/mach-gemini/devices.c -6e22ae532703c0b0a71188d9f4f39569 linux-3.0/arch/arm/mach-gemini/common.h -0cc97e52afed622518e75925f85e03c7 linux-3.0/arch/arm/mach-gemini/board-wbd222.c -7d1c4c8ef28a2bc542bd1ca450422613 linux-3.0/arch/arm/mach-gemini/board-wbd111.c -96c35df56ea4a39662cd88b16e45a3b5 linux-3.0/arch/arm/mach-gemini/board-rut1xx.c -e4af49309392581a40bff1301092ac77 linux-3.0/arch/arm/mach-gemini/board-nas4220b.c -053925f2af3c4136020c087576a01498 linux-3.0/arch/arm/mach-gemini/Makefile.boot -bd7120b949900bb8b148cf6935d29b99 linux-3.0/arch/arm/mach-gemini/Makefile -3ad2ccd6ff0b8a518a7c796f893ffd51 linux-3.0/arch/arm/mach-gemini/Kconfig -0d154dc2221ef9c35e29278043482c45 linux-3.0/arch/arm/mach-footbridge/personal.c -e470a8ec51f22e063e0ab5612dcec5fc linux-3.0/arch/arm/mach-footbridge/personal-pci.c -a6f48647021ed97a085048b7a23093a6 linux-3.0/arch/arm/mach-footbridge/netwinder-pci.c -e6474f8ae0d214dabe9f34a392c304cb linux-3.0/arch/arm/mach-footbridge/netwinder-leds.c -1a2fc6331190b65a6e93feb8000712f4 linux-3.0/arch/arm/mach-footbridge/netwinder-hw.c -57018860b9d124820e96830a143fee08 linux-3.0/arch/arm/mach-footbridge/isa.c -3f6343149327451ca9cc37436ef9b5b8 linux-3.0/arch/arm/mach-footbridge/isa-timer.c -349134fb14276f6237eddfed92a0886c linux-3.0/arch/arm/mach-footbridge/isa-rtc.c -e31bda1e69a740855d378fe6e376f0bc linux-3.0/arch/arm/mach-footbridge/isa-irq.c -af015be2cee16ca5a9f70de30027ed7f linux-3.0/arch/arm/mach-footbridge/include/mach/vmalloc.h -5e90402a2e035cc28b38062592826d99 linux-3.0/arch/arm/mach-footbridge/include/mach/uncompress.h -5dfc4326b77ce2f99ecf6f326be1d653 linux-3.0/arch/arm/mach-footbridge/include/mach/timex.h -83da8a57d0d0e576906dfbf219c55961 linux-3.0/arch/arm/mach-footbridge/include/mach/system.h -f4f9c93c0f918ff969e22668c5d88165 linux-3.0/arch/arm/mach-footbridge/include/mach/memory.h -e4c120455dfe9104f4fe50a8a5665dbb linux-3.0/arch/arm/mach-footbridge/include/mach/isa-dma.h -019eeb4123961dd811c1eebd169b2ab3 linux-3.0/arch/arm/mach-footbridge/include/mach/irqs.h -f0c425aec7b584abac08c50aa9a247a5 linux-3.0/arch/arm/mach-footbridge/include/mach/io.h -b82607bbc3c60b27fb55de524052f581 linux-3.0/arch/arm/mach-footbridge/include/mach/hardware.h -49cb8c2415e52d877b9e2396234825b5 linux-3.0/arch/arm/mach-footbridge/include/mach/entry-macro.S -085b2c97216d99c720b53ec9dbd01f2b linux-3.0/arch/arm/mach-footbridge/include/mach/debug-macro.S -50b6509ba295e061fad3ba2f035c36ae linux-3.0/arch/arm/mach-footbridge/ebsa285.c -1e064bf7c173174ea699864cab94d24b linux-3.0/arch/arm/mach-footbridge/ebsa285-pci.c -c9b6cb86a84b635c634c39b60a37c0a3 linux-3.0/arch/arm/mach-footbridge/ebsa285-leds.c -bef32a9afea0e1853fb99a3fe9a05b41 linux-3.0/arch/arm/mach-footbridge/dma.c -16b1e4c2024c8f3228d0c34767a32c89 linux-3.0/arch/arm/mach-footbridge/dc21285.c -a630e141cc76d5086408ef1e857bfc42 linux-3.0/arch/arm/mach-footbridge/dc21285-timer.c -d5764cd6b58d0fe1262d92637cc38709 linux-3.0/arch/arm/mach-footbridge/common.h -7b46c2dab9db003a33689eaea6b43750 linux-3.0/arch/arm/mach-footbridge/common.c -0478b4e8928967c017f46ccd2e0f9f92 linux-3.0/arch/arm/mach-footbridge/cats-pci.c -a274e5e6b6e2eb8251057c6cd180ed73 linux-3.0/arch/arm/mach-footbridge/cats-hw.c -1fd7c57a4f7d267776c24c8f4024ec14 linux-3.0/arch/arm/mach-footbridge/Makefile.boot -21d023ff923be4b72682f47adeb2b55d linux-3.0/arch/arm/mach-footbridge/Makefile -87dd46485ed1c48ca9d72c5250930160 linux-3.0/arch/arm/mach-footbridge/Kconfig -6efd39904c290cbe59c3f56094e3fe2e linux-3.0/arch/arm/mach-exynos4/time.c -65c1d9757b37d6291c023ca5090325e5 linux-3.0/arch/arm/mach-exynos4/sleep.S -ada76db952cd38d2f7141aaed7923b50 linux-3.0/arch/arm/mach-exynos4/setup-usb-phy.c -9fae359adf49530c1841ce8640f70ab2 linux-3.0/arch/arm/mach-exynos4/setup-sdhci.c -189acbd184d5624aeb207b66155599f2 linux-3.0/arch/arm/mach-exynos4/setup-sdhci-gpio.c -a0326c86adb540ff011f219a9b93228d linux-3.0/arch/arm/mach-exynos4/setup-keypad.c -9efcf2f8dd5b5fa0f794d3409a1b05e1 linux-3.0/arch/arm/mach-exynos4/setup-i2c7.c -912fa748803fb5596b9c88e93f1e4f10 linux-3.0/arch/arm/mach-exynos4/setup-i2c6.c -db22dcebd3e72f492ee652a0acaa2e50 linux-3.0/arch/arm/mach-exynos4/setup-i2c5.c -a80741f6007b91d6026afb13979c5dc6 linux-3.0/arch/arm/mach-exynos4/setup-i2c4.c -d3b6cf903d48c138de4b5d0df909657e linux-3.0/arch/arm/mach-exynos4/setup-i2c3.c -c1c538a7f804a8997bc5d075ea7dc74f linux-3.0/arch/arm/mach-exynos4/setup-i2c2.c -5c692d58e70e012369b30027703245ef linux-3.0/arch/arm/mach-exynos4/setup-i2c1.c -4796784f880aa373ea5399e69901dd43 linux-3.0/arch/arm/mach-exynos4/setup-i2c0.c -772e4857a2531a9f061309f30128c77c linux-3.0/arch/arm/mach-exynos4/setup-fimc.c -db9d4b842318fc160598c06c1cdbac08 linux-3.0/arch/arm/mach-exynos4/pm.c -49d71bc1dddef061c969f3b088c4de5c linux-3.0/arch/arm/mach-exynos4/platsmp.c -6bae7930b85a0c6720c0f0b1c35da50f linux-3.0/arch/arm/mach-exynos4/mct.c -c38c0e1831e07dd9eba25387e5fab538 linux-3.0/arch/arm/mach-exynos4/mach-universal_c210.c -62f2780d67adc103e38988d553da8ca4 linux-3.0/arch/arm/mach-exynos4/mach-smdkv310.c -acb40ed2ac0ebb33eccd72dbab8edb87 linux-3.0/arch/arm/mach-exynos4/mach-smdkc210.c -27255588517235ae67a5532c02d11aab linux-3.0/arch/arm/mach-exynos4/mach-nuri.c -a26428a3513cad1460c87edb0b8c8ccd linux-3.0/arch/arm/mach-exynos4/mach-armlex4210.c -7435fbb7863ecdad0e207c0e5a6136bd linux-3.0/arch/arm/mach-exynos4/localtimer.c -f2deb6f6603d4923830b4fad18b71f42 linux-3.0/arch/arm/mach-exynos4/irq-eint.c -41a01a28a6efba667e7707f11043df31 linux-3.0/arch/arm/mach-exynos4/irq-combiner.c -574dd1d6acdaab0e9c126f3cef645ca3 linux-3.0/arch/arm/mach-exynos4/init.c -fda88e7b2b9bd07a00776442fd573f5c linux-3.0/arch/arm/mach-exynos4/include/mach/vmalloc.h -602446cfe860547a119ac83db03a0771 linux-3.0/arch/arm/mach-exynos4/include/mach/uncompress.h -e22da46cc48036d8f617fcaf8d3b1038 linux-3.0/arch/arm/mach-exynos4/include/mach/timex.h -9e118f559b2cdad8775385ab1550d972 linux-3.0/arch/arm/mach-exynos4/include/mach/system.h -3a3b05afe0640c0b72ce0676afc9a939 linux-3.0/arch/arm/mach-exynos4/include/mach/sysmmu.h -1000849ee0e451040705201c73441f1c linux-3.0/arch/arm/mach-exynos4/include/mach/regs-usb-phy.h -9206aed4241b5368312b85e56da9a114 linux-3.0/arch/arm/mach-exynos4/include/mach/regs-sysmmu.h -4eee8725b7de105c21e815c07c15092e linux-3.0/arch/arm/mach-exynos4/include/mach/regs-pmu.h -306cb1aea11b561b5a9474ce6979e67b linux-3.0/arch/arm/mach-exynos4/include/mach/regs-mem.h -22404096c349c3309ad0b079b565c750 linux-3.0/arch/arm/mach-exynos4/include/mach/regs-mct.h -57879fdcb336a2c1fddc3a00d6f4a61c linux-3.0/arch/arm/mach-exynos4/include/mach/regs-irq.h -6fb4ca458ece85f8e0374393597740eb linux-3.0/arch/arm/mach-exynos4/include/mach/regs-gpio.h -e13f52f17391820e0d66869d27bbdc03 linux-3.0/arch/arm/mach-exynos4/include/mach/regs-clock.h -34a737d41c3c2dee03468c543c51ac65 linux-3.0/arch/arm/mach-exynos4/include/mach/pwm-clock.h -a7f0a021a9be21f2a8ad4e5c1a3213a8 linux-3.0/arch/arm/mach-exynos4/include/mach/pm-core.h -bca08a97ec1d493e77a7ec892c39517a linux-3.0/arch/arm/mach-exynos4/include/mach/memory.h -e53f398c0187eb1c09e7c70c35601b01 linux-3.0/arch/arm/mach-exynos4/include/mach/map.h -e8b5f0106f20099d9225a2d2d8380813 linux-3.0/arch/arm/mach-exynos4/include/mach/irqs.h -5a6afdf8ca8d1e0357fde3a77c1d7818 linux-3.0/arch/arm/mach-exynos4/include/mach/io.h -6b9faf76b521c6e9e9d74a788e89b45d linux-3.0/arch/arm/mach-exynos4/include/mach/hardware.h -ca82e6d8d37cabcedbe773b683775849 linux-3.0/arch/arm/mach-exynos4/include/mach/gpio.h -d829cce72ec23bac24d8f5eb5aad658a linux-3.0/arch/arm/mach-exynos4/include/mach/entry-macro.S -6c51c6e9ce9e026c231d0c009faa25f7 linux-3.0/arch/arm/mach-exynos4/include/mach/dma.h -13e605cc8eef14f84743a9dd8e1c33ed linux-3.0/arch/arm/mach-exynos4/include/mach/debug-macro.S -0a109cfc41149a907b7f176a9ff24f9b linux-3.0/arch/arm/mach-exynos4/hotplug.c -5214589578e9f37c714b1870b0a85e8c linux-3.0/arch/arm/mach-exynos4/headsmp.S -fe9e853eb81f197647e78e155e21d28f linux-3.0/arch/arm/mach-exynos4/dma.c -da7d510bc41fbf179509bc7c2270f77d linux-3.0/arch/arm/mach-exynos4/dev-sysmmu.c -51f2c3b7d6f8744b7f058bb3e7714ffe linux-3.0/arch/arm/mach-exynos4/dev-pd.c -fb5b5595a62b375842668b9b4ddeadc9 linux-3.0/arch/arm/mach-exynos4/dev-audio.c -36e1b7feb901e06f468bb8d62f273b52 linux-3.0/arch/arm/mach-exynos4/dev-ahci.c -6f026756c3a5b0c1a53932c60acd43b6 linux-3.0/arch/arm/mach-exynos4/cpuidle.c -b3622068b9a1a17ee02be044242af242 linux-3.0/arch/arm/mach-exynos4/cpufreq.c -3b7f342e57a49695f868743b233cc2ee linux-3.0/arch/arm/mach-exynos4/cpu.c -4eae61114894d9cd8b6fe24d614feddf linux-3.0/arch/arm/mach-exynos4/clock.c -d82a4ad8b80f9a19cf1c8a633f259f74 linux-3.0/arch/arm/mach-exynos4/Makefile.boot -e047d080ebc2e9615d69d326576dc29b linux-3.0/arch/arm/mach-exynos4/Makefile -d6daca6a99bbe2e87005e7e29db7bf9d linux-3.0/arch/arm/mach-exynos4/Kconfig -bd59256652dc0f9a9679e20ecae1a8e3 linux-3.0/arch/arm/mach-ep93xx/ts72xx.c -98f601dda5d1a6a9f75897d5adfa7919 linux-3.0/arch/arm/mach-ep93xx/snappercl15.c -a41b21608d7d6de1c3f00387f3afb9ea linux-3.0/arch/arm/mach-ep93xx/simone.c -aec9673d34ec0854643233f4ee4e921a linux-3.0/arch/arm/mach-ep93xx/micro9.c -81a60956e3bdc2cb1262f58c066da852 linux-3.0/arch/arm/mach-ep93xx/include/mach/vmalloc.h -bb6cefcf65d93bd696c71532653b7254 linux-3.0/arch/arm/mach-ep93xx/include/mach/uncompress.h -d5a483d40ac6c078408b7d47f1b29ded linux-3.0/arch/arm/mach-ep93xx/include/mach/ts72xx.h -5631c09d30a7810d4ef3cc29ccd199d9 linux-3.0/arch/arm/mach-ep93xx/include/mach/timex.h -a6374d8b7b5b35b334a226f55f16df30 linux-3.0/arch/arm/mach-ep93xx/include/mach/system.h -c1f6e0dda49aca0a7bca44ea9804ccd0 linux-3.0/arch/arm/mach-ep93xx/include/mach/platform.h -20c12449fea895ed29c46ce875e8e27a linux-3.0/arch/arm/mach-ep93xx/include/mach/memory.h -5d0c918dde95c9c5944b3b1d63f21345 linux-3.0/arch/arm/mach-ep93xx/include/mach/irqs.h -6b402eaf1c0e2b6ee4ecbc7670c66a89 linux-3.0/arch/arm/mach-ep93xx/include/mach/io.h -7e6ac51d10cbf9bae9937e4b0f8f6323 linux-3.0/arch/arm/mach-ep93xx/include/mach/hardware.h -49fe268ddaf664c16a32db285e33307d linux-3.0/arch/arm/mach-ep93xx/include/mach/gpio.h -024e8e309931a423ed7dd29c235fd634 linux-3.0/arch/arm/mach-ep93xx/include/mach/fb.h -317182e49c14cb33d48f33632e48907e linux-3.0/arch/arm/mach-ep93xx/include/mach/ep93xx_spi.h -8e1b256c46520d438bebef77bb680de5 linux-3.0/arch/arm/mach-ep93xx/include/mach/ep93xx_keypad.h -33566c377ee1d470e1c6c170109e739f linux-3.0/arch/arm/mach-ep93xx/include/mach/ep93xx-regs.h -07d07e42026a2952f9f570c9a061760e linux-3.0/arch/arm/mach-ep93xx/include/mach/entry-macro.S -f2a5d240b9634ed055bdc0a3e351cc13 linux-3.0/arch/arm/mach-ep93xx/include/mach/dma.h -53f4b6fc791563a4641cc1a72377b113 linux-3.0/arch/arm/mach-ep93xx/include/mach/debug-macro.S -ed3e4feb5fa3db972d38820803cd0d1e linux-3.0/arch/arm/mach-ep93xx/include/mach/clkdev.h -3c997b183421adcd6d106df09dab4798 linux-3.0/arch/arm/mach-ep93xx/gpio.c -e6760e6fa410e36bc65c13651b3addb0 linux-3.0/arch/arm/mach-ep93xx/gesbc9312.c -f5aa27fbe5756893d686769ab35deed4 linux-3.0/arch/arm/mach-ep93xx/edb93xx.c -179670d36e7ae7fd67881facd89d85b2 linux-3.0/arch/arm/mach-ep93xx/dma-m2p.c -22a701146d6e969bc963b9b7f9262219 linux-3.0/arch/arm/mach-ep93xx/core.c -40946f21aca4e795e73620cfc56da9dc linux-3.0/arch/arm/mach-ep93xx/clock.c -5799883bfe25549a57d4bc3f9c120498 linux-3.0/arch/arm/mach-ep93xx/adssphere.c -6b5f94d24acdc8e88bc02f4415041313 linux-3.0/arch/arm/mach-ep93xx/Makefile.boot -94cc6cc503eb49cb650f54148874cca4 linux-3.0/arch/arm/mach-ep93xx/Makefile -264070ceb93a76d887d7bb637331cc6b linux-3.0/arch/arm/mach-ep93xx/Kconfig -1242ffa5fd496652727471315834481d linux-3.0/arch/arm/mach-ebsa110/leds.c -9cc95101ac110e6754b75b83595e154a linux-3.0/arch/arm/mach-ebsa110/io.c -936b69366c620d27368ecdf32e3b4789 linux-3.0/arch/arm/mach-ebsa110/include/mach/vmalloc.h -3dac0e6ebb0f388ec3078bd57f36fea1 linux-3.0/arch/arm/mach-ebsa110/include/mach/uncompress.h -ecae7ede8d27a397a3f23f33959eee94 linux-3.0/arch/arm/mach-ebsa110/include/mach/timex.h -86ba470c1f57970e86dca29fd6244fda linux-3.0/arch/arm/mach-ebsa110/include/mach/system.h -77161240483bbee626106f78301a0f9f linux-3.0/arch/arm/mach-ebsa110/include/mach/memory.h -6116469bfea223393e402f9673827d34 linux-3.0/arch/arm/mach-ebsa110/include/mach/irqs.h -1371494ae32a9e9d4bcdc5ff3582b317 linux-3.0/arch/arm/mach-ebsa110/include/mach/io.h -a61bbf038d4da8d31458d882a08510c3 linux-3.0/arch/arm/mach-ebsa110/include/mach/hardware.h -28e1799438462a471edb7dff9cba521b linux-3.0/arch/arm/mach-ebsa110/include/mach/entry-macro.S -635c7469ff9e5744e994a4398d431e5a linux-3.0/arch/arm/mach-ebsa110/include/mach/debug-macro.S -98d73a84d8aabd1fe8ef1b4e67f9f9ca linux-3.0/arch/arm/mach-ebsa110/core.c -eee6b0cb28d832d0f8a3f7a14fa9d36f linux-3.0/arch/arm/mach-ebsa110/Makefile.boot -b418e36bc727ade5488d69e245fbd5a4 linux-3.0/arch/arm/mach-ebsa110/Makefile -87ada57116b21948b3c6e7f2e1058547 linux-3.0/arch/arm/mach-dove/pcie.c -f9846a33f3a66fc30548ec2e8d4cb029 linux-3.0/arch/arm/mach-dove/mpp.h -e7177ff019f5a54fff32a4ba733a238d linux-3.0/arch/arm/mach-dove/mpp.c -7f77448dcc833b688dc35eab09349a97 linux-3.0/arch/arm/mach-dove/irq.c -150484a1cfed71f9ccf1bac7d39356cb linux-3.0/arch/arm/mach-dove/include/mach/vmalloc.h -c619a41fa8f10cdf020c537c8aff0441 linux-3.0/arch/arm/mach-dove/include/mach/uncompress.h -32921b671560ef7fd012c0fcbeb0da51 linux-3.0/arch/arm/mach-dove/include/mach/timex.h -4fc56f0e89cbab5c95520cfc72efa896 linux-3.0/arch/arm/mach-dove/include/mach/system.h -5f1cc4a6072d7904b80176f011880604 linux-3.0/arch/arm/mach-dove/include/mach/pm.h -570cd03ab67ef505ab08d1db2510b2d8 linux-3.0/arch/arm/mach-dove/include/mach/memory.h -0911ea517f5177453e063befcdbff382 linux-3.0/arch/arm/mach-dove/include/mach/irqs.h -15f5ea2a56725879c09fb503e207d627 linux-3.0/arch/arm/mach-dove/include/mach/io.h -73924550d1c714616e18f5c3c8cca380 linux-3.0/arch/arm/mach-dove/include/mach/hardware.h -e9d5ce601afaf0cf2c439c5f0b0fc7e1 linux-3.0/arch/arm/mach-dove/include/mach/gpio.h -23d2cf7a096c39c5ebc3358b39a8d641 linux-3.0/arch/arm/mach-dove/include/mach/entry-macro.S -3e17abfa41f48ef6be38d20d5f73f334 linux-3.0/arch/arm/mach-dove/include/mach/dove.h -6aa2c84b520e1f82b434d9d715f02e95 linux-3.0/arch/arm/mach-dove/include/mach/debug-macro.S -ddbd75bf00adb0cc4f5d449ac768ec16 linux-3.0/arch/arm/mach-dove/include/mach/bridge-regs.h -ccc2016e23337d4cb1a5b44b1055790d linux-3.0/arch/arm/mach-dove/dove-db-setup.c -1c5f38e38b90c83e4876b82f35ed7154 linux-3.0/arch/arm/mach-dove/common.h -db7241fbb27ff35118733fcba893f40e linux-3.0/arch/arm/mach-dove/common.c -f0499bc045652bdd536a5b2fbe6d0d5f linux-3.0/arch/arm/mach-dove/cm-a510.c -b9f1399c0db316b62979e0bfdac4ebb9 linux-3.0/arch/arm/mach-dove/addr-map.c -2d8e959feddb306bbe713874054300ba linux-3.0/arch/arm/mach-dove/Makefile.boot -d5899792a0eaea4753a62df019386832 linux-3.0/arch/arm/mach-dove/Makefile -1514f5b1a2070699f0a0754c4f0c473d linux-3.0/arch/arm/mach-dove/Kconfig -f5b096fe07e08b9bfc0218207577f22e linux-3.0/arch/arm/mach-davinci/usb.c -f0387b326af88dd322413a5c94debddf linux-3.0/arch/arm/mach-davinci/tnetv107x.c -0a5f630cc8cee642a26a25804c7fb0ff linux-3.0/arch/arm/mach-davinci/time.c -83c55df39afa9a6ca39120218b24a489 linux-3.0/arch/arm/mach-davinci/sram.c -c973e904c26c43666d8f83415a5c2438 linux-3.0/arch/arm/mach-davinci/sleep.S -6db3c98a65fefc61e5dab7e9c856bbbc linux-3.0/arch/arm/mach-davinci/serial.c -ebad4d70e1b43977c03d2821baf26413 linux-3.0/arch/arm/mach-davinci/psc.c -18c74f5b15f0b28c19a4c27cc13b33f2 linux-3.0/arch/arm/mach-davinci/pm.c -687bcbed6456e713181bcccb85458327 linux-3.0/arch/arm/mach-davinci/mux.h -ee0fb4f2ff0dca20ae4847a97356db21 linux-3.0/arch/arm/mach-davinci/mux.c -0d549713d1171f5b9d8c15ad95190816 linux-3.0/arch/arm/mach-davinci/irq.c -beb24fe39ed9bd2e4a9750912627258f linux-3.0/arch/arm/mach-davinci/io.c -f2c14069cee534e71f1d0bc536b2f2ee linux-3.0/arch/arm/mach-davinci/include/mach/vmalloc.h -3f0921b1e7c1f43ed15d20d83eb08df9 linux-3.0/arch/arm/mach-davinci/include/mach/usb.h -f80ace077a0025fab599492f48458613 linux-3.0/arch/arm/mach-davinci/include/mach/uncompress.h -9bf28e897e9c5216bbd924b1fa44b2d0 linux-3.0/arch/arm/mach-davinci/include/mach/tnetv107x.h -8bcfc0938740712bb6e011e222182ea9 linux-3.0/arch/arm/mach-davinci/include/mach/timex.h -216ffa6b581fe3d5e6bc32289d5a47f4 linux-3.0/arch/arm/mach-davinci/include/mach/time.h -a64d11e0dc317699ce5d85930de45004 linux-3.0/arch/arm/mach-davinci/include/mach/system.h -3e1156ea42e9e7c18f713124f4df3fdf linux-3.0/arch/arm/mach-davinci/include/mach/sram.h -965f89179dc5f300fd222e11e8cfc633 linux-3.0/arch/arm/mach-davinci/include/mach/spi.h -a72ae31928fa0362b0a0fe8effee4c73 linux-3.0/arch/arm/mach-davinci/include/mach/serial.h -e61e3cf3d3aa7f937a34ac55d9caf9c6 linux-3.0/arch/arm/mach-davinci/include/mach/psc.h -91f60b80067ce8cd9b99098935e763b3 linux-3.0/arch/arm/mach-davinci/include/mach/pm.h -de66233beebe02adf99e5891b02ff4ed linux-3.0/arch/arm/mach-davinci/include/mach/nand.h -4baea8718156bae06e003125e631ee1f linux-3.0/arch/arm/mach-davinci/include/mach/mux.h -1a6054bb5176a6561615e60ef818395b linux-3.0/arch/arm/mach-davinci/include/mach/mmc.h -288c55152d32d27a79b9c1853b0937fc linux-3.0/arch/arm/mach-davinci/include/mach/memory.h -d1a1c61ae90eaced53a3dae68d301b8d linux-3.0/arch/arm/mach-davinci/include/mach/keyscan.h -16a276053a26c56cdb0b384fea73042a linux-3.0/arch/arm/mach-davinci/include/mach/irqs.h -dbcb8c6065fae1dff2eebdba6afb0c43 linux-3.0/arch/arm/mach-davinci/include/mach/io.h -4c658a1df875e016d64e1d5253579bce linux-3.0/arch/arm/mach-davinci/include/mach/i2c.h -9392f107f5f190c7027783b45434e5d3 linux-3.0/arch/arm/mach-davinci/include/mach/hardware.h -1a49c8da82fc2b1277ad8baabda2915e linux-3.0/arch/arm/mach-davinci/include/mach/gpio.h -36039fff559307869284e0623514dd36 linux-3.0/arch/arm/mach-davinci/include/mach/entry-macro.S -c897b4a107d64d2b9447bfbebf0c4a46 linux-3.0/arch/arm/mach-davinci/include/mach/edma.h -9bdaf4dc631d5a0f3d24a9f17101d496 linux-3.0/arch/arm/mach-davinci/include/mach/dm646x.h -b0e15ce9d9cec768769e80d517c08d89 linux-3.0/arch/arm/mach-davinci/include/mach/dm644x.h -c1f064bcb71f00eded5507e6a4763853 linux-3.0/arch/arm/mach-davinci/include/mach/dm365.h -0c11bf3f89f6a151d55dff894d473b79 linux-3.0/arch/arm/mach-davinci/include/mach/dm355.h -a4909cfaeefa42813c8a5b85134d125d linux-3.0/arch/arm/mach-davinci/include/mach/debug-macro.S -eb4d909aa5cf377cfdc8751cec6a0ba1 linux-3.0/arch/arm/mach-davinci/include/mach/da8xx.h -e4564fea1b7f34849b05fbd0f8430d1d linux-3.0/arch/arm/mach-davinci/include/mach/cputype.h -fe7adea0a530d4068fef609b2eba9d2a linux-3.0/arch/arm/mach-davinci/include/mach/cpuidle.h -c684da781b91d1b92be9ffca92b36fd9 linux-3.0/arch/arm/mach-davinci/include/mach/cpufreq.h -09b466fd9d2066d9149f4a41a9b81774 linux-3.0/arch/arm/mach-davinci/include/mach/cp_intc.h -627148dc15696cc0d2829b137e6bae32 linux-3.0/arch/arm/mach-davinci/include/mach/common.h -8ce0984bb0510f21d7732d12a004d169 linux-3.0/arch/arm/mach-davinci/include/mach/clock.h -a9be6c040325ea432e0c89a6152ac86c linux-3.0/arch/arm/mach-davinci/include/mach/clkdev.h -a85a25c8906189bef7d6398daaef5dc3 linux-3.0/arch/arm/mach-davinci/include/mach/cdce949.h -e69c74d2a3a754abe7e64e67b071a1ad linux-3.0/arch/arm/mach-davinci/include/mach/asp.h -4439a27147c8517aafa8e098627bd192 linux-3.0/arch/arm/mach-davinci/include/mach/aemif.h -0fdce57ced6239b83122d35889dc81d9 linux-3.0/arch/arm/mach-davinci/gpio.c -be29518453d250743267bf5b9a61aee3 linux-3.0/arch/arm/mach-davinci/gpio-tnetv107x.c -0dc0390f868ed6ae57218a4b41fea988 linux-3.0/arch/arm/mach-davinci/dma.c -c1d4b2fca7bebf0fba2f5c7060d52938 linux-3.0/arch/arm/mach-davinci/dm646x.c -1ff98eb5080a1b65d15e29fbfe31c545 linux-3.0/arch/arm/mach-davinci/dm644x.c -c49880b87bb3af018b5c21cf9ae5af7c linux-3.0/arch/arm/mach-davinci/dm365.c -e265c0573f2f4ad8db2818df3b2a2215 linux-3.0/arch/arm/mach-davinci/dm355.c -3b37b765773bcdae8dbab98fbcaf0606 linux-3.0/arch/arm/mach-davinci/devices.c -4e3cbfd47c66976b0f3baec5179e5f8f linux-3.0/arch/arm/mach-davinci/devices-tnetv107x.c -53b436b18521daaa72ccd32c60655819 linux-3.0/arch/arm/mach-davinci/devices-da8xx.c -a269140a06cda969187a2041fa693362 linux-3.0/arch/arm/mach-davinci/da850.c -8a75495b07f7afbdac5b75b217d3d87e linux-3.0/arch/arm/mach-davinci/da830.c -a0dec12d4563d1eb8b21658516d22341 linux-3.0/arch/arm/mach-davinci/cpuidle.c -790887d320b71cf0f99a0247fd1954dc linux-3.0/arch/arm/mach-davinci/cpufreq.c -4681fc3132464d905002b4d7efcad773 linux-3.0/arch/arm/mach-davinci/cp_intc.c -e5a1b4cff2238e788607a829ca3e0e13 linux-3.0/arch/arm/mach-davinci/common.c -09ef61f7af91e24be2719cad5a6db0bf linux-3.0/arch/arm/mach-davinci/clock.h -a37c275be1b8db0ef9401d5669a6f288 linux-3.0/arch/arm/mach-davinci/clock.c -b6248adeed379377b59bd9950a9795f4 linux-3.0/arch/arm/mach-davinci/cdce949.c -a7bbc7a5a3d60bfa9f25060e4bc37b1d linux-3.0/arch/arm/mach-davinci/board-tnetv107x-evm.c -146e82248e69f4e77cfcc756538b9d19 linux-3.0/arch/arm/mach-davinci/board-sffsdr.c -1a8586cd6ae42f63df06a32fa133e2b0 linux-3.0/arch/arm/mach-davinci/board-omapl138-hawk.c -29e8baea1e77cf4aa298509131a0be14 linux-3.0/arch/arm/mach-davinci/board-neuros-osd2.c -368171bc7ad5b907083bbad464a3f7f5 linux-3.0/arch/arm/mach-davinci/board-mityomapl138.c -5a2b7ddc4ef0b4122d1097e14f973854 linux-3.0/arch/arm/mach-davinci/board-dm646x-evm.c -4fbc5a44f3ece3858e8d5118785128e3 linux-3.0/arch/arm/mach-davinci/board-dm644x-evm.c -c7a3e77d1583b8824e87bbc964c890be linux-3.0/arch/arm/mach-davinci/board-dm365-evm.c -c7b763eced0c29f78e3c119d4f2ac105 linux-3.0/arch/arm/mach-davinci/board-dm355-leopard.c -e23d5f37fd4449376b8af1021ad6001f linux-3.0/arch/arm/mach-davinci/board-dm355-evm.c -5edaed6c1356b10c39e057741ea20818 linux-3.0/arch/arm/mach-davinci/board-da850-evm.c -7bacbcf49951de34671fe7191d5fe542 linux-3.0/arch/arm/mach-davinci/board-da830-evm.c -dddf5939034edfddb6458b9f4c2303ba linux-3.0/arch/arm/mach-davinci/aemif.c -234edbf01e697c48bac7591aaa5c34d2 linux-3.0/arch/arm/mach-davinci/Makefile.boot -3d268c4278a6a872219fb5d82c0651b9 linux-3.0/arch/arm/mach-davinci/Makefile -f62d11239f59dac12ee704df50ef6149 linux-3.0/arch/arm/mach-davinci/Kconfig -d78e86e9915a65a1d7af5d201222db4b linux-3.0/arch/arm/mach-cns3xxx/pm.c -133c1f84a2241701dd46354172cee2dd linux-3.0/arch/arm/mach-cns3xxx/pcie.c -b3a56cad1847316f4a143c1a8c06eacd linux-3.0/arch/arm/mach-cns3xxx/include/mach/vmalloc.h -60cca9971dc14fa317b0bdaf7fb8cab4 linux-3.0/arch/arm/mach-cns3xxx/include/mach/uncompress.h -c90d29582958e9305d9b83a19475ec4f linux-3.0/arch/arm/mach-cns3xxx/include/mach/timex.h -83522b37776e24f14edda1f21769e75b linux-3.0/arch/arm/mach-cns3xxx/include/mach/system.h -bfebf12fb2fc5b92b3e306bce840028c linux-3.0/arch/arm/mach-cns3xxx/include/mach/pm.h -3c2766547f6f7cafebc46236614da6cd linux-3.0/arch/arm/mach-cns3xxx/include/mach/memory.h -57041bb019f7eb032236a4329195bf81 linux-3.0/arch/arm/mach-cns3xxx/include/mach/irqs.h -f54763b454ca05dc7517322cc95cb0c1 linux-3.0/arch/arm/mach-cns3xxx/include/mach/io.h -1f0c8b7984b868abb0acde37c34696a6 linux-3.0/arch/arm/mach-cns3xxx/include/mach/hardware.h -a64d474a25659d1359cda17ca7c8c749 linux-3.0/arch/arm/mach-cns3xxx/include/mach/entry-macro.S -968020970addab36fe5de8d4c618701a linux-3.0/arch/arm/mach-cns3xxx/include/mach/debug-macro.S -a779d062d914e35d0b9b040fb93eab01 linux-3.0/arch/arm/mach-cns3xxx/include/mach/cns3xxx.h -a2336f8112467fa81285c3a9790f6257 linux-3.0/arch/arm/mach-cns3xxx/devices.h -c3f1ef126299593d03caf4e394d2ed7a linux-3.0/arch/arm/mach-cns3xxx/devices.c -a410bd168d0753f1681becee8688696f linux-3.0/arch/arm/mach-cns3xxx/core.h -976d635fb6cbb05edae7c0e2a31a2e2a linux-3.0/arch/arm/mach-cns3xxx/core.c -216c12732adadbfc24858f5670e90e45 linux-3.0/arch/arm/mach-cns3xxx/cns3420vb.c -f77d9bb6aae33ac0b607d3a065bd24d9 linux-3.0/arch/arm/mach-cns3xxx/Makefile.boot -577199af66074ad124e36c1a3be56d4a linux-3.0/arch/arm/mach-cns3xxx/Makefile -d9bb36e601620886ec75e3aa148a400b linux-3.0/arch/arm/mach-cns3xxx/Kconfig -3f23b919f7401df0d02448ca063958d2 linux-3.0/arch/arm/mach-clps711x/time.c -f19413f11cba5258b85412189ddb7132 linux-3.0/arch/arm/mach-clps711x/p720t.c -e01b942b82a4769a8f2677294bf277b7 linux-3.0/arch/arm/mach-clps711x/p720t-leds.c -20cf596c7297d31f64fab8bb1eefafc7 linux-3.0/arch/arm/mach-clps711x/mm.c -2e98bbc8ef74a1bca281e72dee8ad990 linux-3.0/arch/arm/mach-clps711x/irq.c -f600e849b4dba75336d2f8749f9a3cc3 linux-3.0/arch/arm/mach-clps711x/include/mach/vmalloc.h -0870276c4c0ca88766f8618565dbf626 linux-3.0/arch/arm/mach-clps711x/include/mach/uncompress.h -61f877f6181bbe615aaf25ed6e4d178f linux-3.0/arch/arm/mach-clps711x/include/mach/timex.h -0d11479aa66d990eab1926f3d1a5c591 linux-3.0/arch/arm/mach-clps711x/include/mach/time.h -7726a7e92d67ad2663d6043c687d887f linux-3.0/arch/arm/mach-clps711x/include/mach/system.h -1c57f5ad5281d7e2689a5974372f7289 linux-3.0/arch/arm/mach-clps711x/include/mach/syspld.h -bac497dfa299dccd71a379adc10cca92 linux-3.0/arch/arm/mach-clps711x/include/mach/memory.h -e3eda759d72e895364e3d3461d938e0f linux-3.0/arch/arm/mach-clps711x/include/mach/irqs.h -77759b14c7722fc6052d66c5ad185b23 linux-3.0/arch/arm/mach-clps711x/include/mach/io.h -a0d9a821ed302ebd31cc4c18810e1a09 linux-3.0/arch/arm/mach-clps711x/include/mach/hardware.h -e4d9dc627c43bff9b8b00e3442b35af4 linux-3.0/arch/arm/mach-clps711x/include/mach/entry-macro.S -0badd9a6373a79e1e988624c438ac3a1 linux-3.0/arch/arm/mach-clps711x/include/mach/debug-macro.S -2d11cc751b80fd25baa3d07ef462bf84 linux-3.0/arch/arm/mach-clps711x/include/mach/autcpu12.h -99c1e8cf174567381148691ef42dc5f7 linux-3.0/arch/arm/mach-clps711x/fortunet.c -2b6f5bdf2b76b7c9c05d30ceb694a9eb linux-3.0/arch/arm/mach-clps711x/edb7211-mm.c -4021aee5209cbc227419a24bb97fd7dc linux-3.0/arch/arm/mach-clps711x/edb7211-arch.c -1033022ec9532b06ad0363e663d9fb91 linux-3.0/arch/arm/mach-clps711x/common.h -b94ae122c1446df4c9e8ed57556a2679 linux-3.0/arch/arm/mach-clps711x/clep7312.c -68e64d6a45e51e94f90fae0d8f1d201f linux-3.0/arch/arm/mach-clps711x/ceiva.c -b5f0a0f0a59abc4efe6e72603be7b482 linux-3.0/arch/arm/mach-clps711x/cdb89712.c -871ccbe0bc8b870fea801420e25459b7 linux-3.0/arch/arm/mach-clps711x/autcpu12.c -abfa1eceafa9d64f7b083bcc828fb823 linux-3.0/arch/arm/mach-clps711x/Makefile.boot -075f828807256194888e34514301efe2 linux-3.0/arch/arm/mach-clps711x/Makefile -da70aa5437d6514842dae44f616ded2f linux-3.0/arch/arm/mach-clps711x/Kconfig -5a07fb20e1b9eed16cad5cd3c08de188 linux-3.0/arch/arm/mach-bcmring/timer.c -f141107799d6372b1c52057d8b2327d0 linux-3.0/arch/arm/mach-bcmring/mm.c -306664ed04b79ccf2bee2832b57f9ba8 linux-3.0/arch/arm/mach-bcmring/irq.c -aae48e38128c13cd22a89c528c6f6b46 linux-3.0/arch/arm/mach-bcmring/include/mach/vmalloc.h -d0bbe46b98088d6f732f4dbeee45a98a linux-3.0/arch/arm/mach-bcmring/include/mach/uncompress.h -52f44adfa30e5367d7229615ce09bdd7 linux-3.0/arch/arm/mach-bcmring/include/mach/timex.h -1e1669ff49ebe494ecb2febd0f908641 linux-3.0/arch/arm/mach-bcmring/include/mach/timer.h -e3bcc714c86c02a8617e56a115d9003f linux-3.0/arch/arm/mach-bcmring/include/mach/system.h -38d2b5d092eba45ff3183496d70aa92b linux-3.0/arch/arm/mach-bcmring/include/mach/reg_umi.h -cb6eb68e77d89b0f978ed3f11f2fb5d6 linux-3.0/arch/arm/mach-bcmring/include/mach/reg_nand.h -63d5b2e0d9dec844a6d34aded89fadd4 linux-3.0/arch/arm/mach-bcmring/include/mach/memory_settings.h -cfd4304810eaaa33af5046e384538614 linux-3.0/arch/arm/mach-bcmring/include/mach/memory.h -ef945561b1bbacce063e598b1ef813ca linux-3.0/arch/arm/mach-bcmring/include/mach/irqs.h -9c79faf70bde0a66805ae61506b4dc71 linux-3.0/arch/arm/mach-bcmring/include/mach/io.h -1742269cc325b6e33dfd0831113cbc16 linux-3.0/arch/arm/mach-bcmring/include/mach/hardware.h -b3d11131954abbf201ebf9f9eb30ec16 linux-3.0/arch/arm/mach-bcmring/include/mach/entry-macro.S -3a1661f37c2087183bbb92aa317ae4da linux-3.0/arch/arm/mach-bcmring/include/mach/dma.h -1a8e1311553dab48b11e20413b861201 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/tmrHw_reg.h -75f026cc4b600fb9db127d7dee06f62f linux-3.0/arch/arm/mach-bcmring/include/mach/csp/secHw_inline.h -c4f8a7e1387ba7c5e788ac15ac56be8a linux-3.0/arch/arm/mach-bcmring/include/mach/csp/secHw_def.h -67dc1a357c9cd8fcd99c566f6737ef4c linux-3.0/arch/arm/mach-bcmring/include/mach/csp/mm_io.h -885d8745be77925103fa229c09188395 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/mm_addr.h -54a101a9194d9a1a274c1988ca43e2c4 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/intcHw_reg.h -2a70cbd004c24e05594f2817c1ad3b6d linux-3.0/arch/arm/mach-bcmring/include/mach/csp/hw_cfg.h -aff76e1e70e0eeb09e70a2f3f040f166 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/dmacHw_reg.h -0eb43b7c7c46fe827b1cd5d9e2ba36a3 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/dmacHw_priv.h -4606224e08b715cf69effa45da733e84 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/ddrcReg.h -94fe66e7b07f91c86bb4d88618985383 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/chipcHw_reg.h -9300d34136ed9e93258e363e1758b9f3 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/chipcHw_inline.h -204b18c771eb422fd191f71233fc76b2 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/chipcHw_def.h -c46a2b11f796d8c331d0ec7cada60360 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/cap_inline.h -dad223a080354f7c3fd3f8f452029037 linux-3.0/arch/arm/mach-bcmring/include/mach/csp/cap.h -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/mach-bcmring/include/mach/clkdev.h -304d713f09cea09d25d4fa4bc603cc64 linux-3.0/arch/arm/mach-bcmring/include/csp/tmrHw.h -21c907178a74b6d5e95cc2c91e367576 linux-3.0/arch/arm/mach-bcmring/include/csp/string.h -35912927a1d42621fe3d7917b65bfa87 linux-3.0/arch/arm/mach-bcmring/include/csp/stdint.h -a588e188db7d20453e9ab7f2e8e7f7a2 linux-3.0/arch/arm/mach-bcmring/include/csp/secHw.h -eddeee5742d005a8814586d8e33278d2 linux-3.0/arch/arm/mach-bcmring/include/csp/reg.h -314aa202045f88d79f62ac0b0e08b819 linux-3.0/arch/arm/mach-bcmring/include/csp/module.h -785024af544abce057b04ac9f58758da linux-3.0/arch/arm/mach-bcmring/include/csp/intcHw.h -df39097211e05ce59441c4ed7bd80331 linux-3.0/arch/arm/mach-bcmring/include/csp/errno.h -859371dabf20820c098827efd671baf3 linux-3.0/arch/arm/mach-bcmring/include/csp/dmacHw.h -ecb95dfed8e8706992d4effa4c508126 linux-3.0/arch/arm/mach-bcmring/include/csp/delay.h -2f8328884dfc50b2c7ec30a621601bae linux-3.0/arch/arm/mach-bcmring/include/csp/cache.h -3f7a04f2df2a56ff86574d134e31414d linux-3.0/arch/arm/mach-bcmring/include/cfg_global_defines.h -d7095cfb14e4043224f9eea3708ec152 linux-3.0/arch/arm/mach-bcmring/include/cfg_global.h -808630ebde24e3756f394103759e9662 linux-3.0/arch/arm/mach-bcmring/dma_device.c -15b905d6d0b87ce9d2805fb6cdd7bc5f linux-3.0/arch/arm/mach-bcmring/dma.c -d1ad6008ae965345e81a7fe23e4b0a47 linux-3.0/arch/arm/mach-bcmring/csp/tmr/tmrHw.c -25e711499dd5e83621a6f7c64b069d40 linux-3.0/arch/arm/mach-bcmring/csp/tmr/Makefile -f6766cf9ac69572884025efcc233a2b4 linux-3.0/arch/arm/mach-bcmring/csp/dmac/dmacHw_extra.c -66007ee3545f4d5fc0a92ba28b46db28 linux-3.0/arch/arm/mach-bcmring/csp/dmac/dmacHw.c -cf3b30498db68a7052e1f3a80a297b67 linux-3.0/arch/arm/mach-bcmring/csp/dmac/Makefile -5160d4c3abaa2ddd68739e42b63b5567 linux-3.0/arch/arm/mach-bcmring/csp/chipc/chipcHw_str.c -384fff4fb3fcb9aaece106871024cebc linux-3.0/arch/arm/mach-bcmring/csp/chipc/chipcHw_reset.c -f01fd8d8aa247aa4c8bfc932ee05e658 linux-3.0/arch/arm/mach-bcmring/csp/chipc/chipcHw_init.c -8faefd9c42725f309ecf0ada81bd951a linux-3.0/arch/arm/mach-bcmring/csp/chipc/chipcHw.c -7a014e23286dcf072b48e42f22ec92bc linux-3.0/arch/arm/mach-bcmring/csp/chipc/Makefile -a21b0ed4ebcaa5ee88249b38a4ef326c linux-3.0/arch/arm/mach-bcmring/csp/Makefile -d33a9974cb9f6578cf2a1a62d6e71069 linux-3.0/arch/arm/mach-bcmring/core.h -9230f1fbcc84825bdff794b1b5c8642b linux-3.0/arch/arm/mach-bcmring/core.c -a4fa52e38ef094a217010fd24d839f6a linux-3.0/arch/arm/mach-bcmring/clock.h -c5ed032ac38b136be25488b9f4f82d8c linux-3.0/arch/arm/mach-bcmring/clock.c -0456cf445f5c5a4642df575c8baf7bb3 linux-3.0/arch/arm/mach-bcmring/arch.c -46de6f7a38e0a7c7ce1aa66011158f0f linux-3.0/arch/arm/mach-bcmring/Makefile.boot -44d93f449dca44bfdfb1b86e181d590a linux-3.0/arch/arm/mach-bcmring/Makefile -60ea73907491a581ef0aaf7f1b83b810 linux-3.0/arch/arm/mach-bcmring/Kconfig -692e71562fad6c2100885d55bc0f94f7 linux-3.0/arch/arm/mach-at91/sam9_smc.h -32f1d06762a3abd6137e31e26c28e35f linux-3.0/arch/arm/mach-at91/sam9_smc.c -aac1edae0e04bbc80ac348be916c0894 linux-3.0/arch/arm/mach-at91/pm_slowclock.S -ef48b1f0f2dc9990b95971fd781dff21 linux-3.0/arch/arm/mach-at91/pm.h -52a1776478dfcb26d309684780c85f12 linux-3.0/arch/arm/mach-at91/pm.c -ebb3502f31d537ecb69e3a03658da637 linux-3.0/arch/arm/mach-at91/leds.c -a9dd37df5554ad958a671397357a5671 linux-3.0/arch/arm/mach-at91/irq.c -2d349054fe4af580409c48e4199e65cc linux-3.0/arch/arm/mach-at91/include/mach/vmalloc.h -af586ec67bfc7d326b0e2a92fa2684d5 linux-3.0/arch/arm/mach-at91/include/mach/uncompress.h -759cda3b397eb138ee3c920e7dea1980 linux-3.0/arch/arm/mach-at91/include/mach/timex.h -7537456a9e4007a5a128a432fd77acee linux-3.0/arch/arm/mach-at91/include/mach/system_rev.h -452ec487be1435c3d0d1e8487eca1cd9 linux-3.0/arch/arm/mach-at91/include/mach/system.h -771439fd3a39a1ddbaea0924c9cf3b86 linux-3.0/arch/arm/mach-at91/include/mach/stamp9g20.h -3ca6f3255fdd3b03cf98f6f8492d5ec2 linux-3.0/arch/arm/mach-at91/include/mach/memory.h -5154c14a392973a3089d27cb7080bc03 linux-3.0/arch/arm/mach-at91/include/mach/irqs.h -218c4d7f6e80eb2989f47d910e5bb077 linux-3.0/arch/arm/mach-at91/include/mach/io.h -7e1747137f66b53cd751a4ed142b7793 linux-3.0/arch/arm/mach-at91/include/mach/hardware.h -83524ac24643e55e80dc781afad07ba1 linux-3.0/arch/arm/mach-at91/include/mach/gsia18s.h -60a5248fec9d0da6530880cc860ee87e linux-3.0/arch/arm/mach-at91/include/mach/gpio.h -aad11acb9a4a189dac40060c2db0f2aa linux-3.0/arch/arm/mach-at91/include/mach/entry-macro.S -2114edf71a4ccbb2ba802ee4cdcc7501 linux-3.0/arch/arm/mach-at91/include/mach/debug-macro.S -5c8304ac95646c86eb22d5e3f85d9dcd linux-3.0/arch/arm/mach-at91/include/mach/cpu.h -eb751e7824688254f9d150a3351351c4 linux-3.0/arch/arm/mach-at91/include/mach/clkdev.h -ca610d1b92e579977e45ca218c8ea49d linux-3.0/arch/arm/mach-at91/include/mach/board.h -dc5a8326a85d95522e4d00072f680ebe linux-3.0/arch/arm/mach-at91/include/mach/atmel-mci.h -15fa698f86a9a4878a4cba444ca68bb3 linux-3.0/arch/arm/mach-at91/include/mach/at_hdmac.h -505a6441223778abf77944b0f9ce96bd linux-3.0/arch/arm/mach-at91/include/mach/at91x40.h -4008c91f73e7b51799fc7ff2b42aeb84 linux-3.0/arch/arm/mach-at91/include/mach/at91sam9rl_matrix.h -3d8b0f00c4c4b30529789ee48b7a8ffb linux-3.0/arch/arm/mach-at91/include/mach/at91sam9rl.h -d25e3d9f361a02e5dec61952de508c2b linux-3.0/arch/arm/mach-at91/include/mach/at91sam9g45_matrix.h -d0c5d47af8e78feeb5b4362bafb58842 linux-3.0/arch/arm/mach-at91/include/mach/at91sam9g45.h -ef68eeaf8d22455365995ff3e9329247 linux-3.0/arch/arm/mach-at91/include/mach/at91sam9_smc.h -035ebaebaf83e2582fe096c3c35dfc43 linux-3.0/arch/arm/mach-at91/include/mach/at91sam9_sdramc.h -f04ce9b6321bb264cfeb1ffe7379443c linux-3.0/arch/arm/mach-at91/include/mach/at91sam9_ddrsdr.h -00051a982844eba74e6b3e8b32cbd445 linux-3.0/arch/arm/mach-at91/include/mach/at91sam9263_matrix.h -49b3faa26f14222484b417c140c885ba linux-3.0/arch/arm/mach-at91/include/mach/at91sam9263.h -709514fefafcfbc3ebbb415d324d10f6 linux-3.0/arch/arm/mach-at91/include/mach/at91sam9261_matrix.h -25ce60b8660620a6f631b4d62518ecda linux-3.0/arch/arm/mach-at91/include/mach/at91sam9261.h -d6de66ee2f06ad83e4cccd2edb8ecd93 linux-3.0/arch/arm/mach-at91/include/mach/at91sam9260_matrix.h -c9b514f6939d7ab1dd580455241fc9f5 linux-3.0/arch/arm/mach-at91/include/mach/at91sam9260.h -7f069e51c42e4ffa96d1413ce1c2748b linux-3.0/arch/arm/mach-at91/include/mach/at91rm9200_mc.h -2cb6b518978a542a973c8623d40d5aa0 linux-3.0/arch/arm/mach-at91/include/mach/at91rm9200_emac.h -3528cf4efccf6639362be8d3be725437 linux-3.0/arch/arm/mach-at91/include/mach/at91rm9200.h -5a27741c245a22ae813bff599af1ad52 linux-3.0/arch/arm/mach-at91/include/mach/at91cap9_matrix.h -566324615795d07f6f5d79555680903f linux-3.0/arch/arm/mach-at91/include/mach/at91cap9_ddrsdr.h -5f08709b3b236579260816536c21b8a2 linux-3.0/arch/arm/mach-at91/include/mach/at91cap9.h -fa9895c3174f8432d4a9f3739c2c8840 linux-3.0/arch/arm/mach-at91/include/mach/at91_wdt.h -7cd45cabacf79dd6a34614435a9871bb linux-3.0/arch/arm/mach-at91/include/mach/at91_twi.h -3decc79880e7ae58e6823eb098151998 linux-3.0/arch/arm/mach-at91/include/mach/at91_tc.h -3a905139a52fd45de67277378cb1cf8b linux-3.0/arch/arm/mach-at91/include/mach/at91_st.h -54f7ac74039e07066db104a769fa731c linux-3.0/arch/arm/mach-at91/include/mach/at91_ssc.h -4b886e9c24f902df214041cd3020845f linux-3.0/arch/arm/mach-at91/include/mach/at91_spi.h -4161a2a373d13bbd18705b141ece4293 linux-3.0/arch/arm/mach-at91/include/mach/at91_shdwc.h -e4d41e17769fe104227d0a38e365f8d8 linux-3.0/arch/arm/mach-at91/include/mach/at91_rtt.h -8b85a696c7f60752422d89ea99d96451 linux-3.0/arch/arm/mach-at91/include/mach/at91_rtc.h -dfc33914dd6957ee89704048acf77714 linux-3.0/arch/arm/mach-at91/include/mach/at91_rstc.h -0acfe3399e7c3d0716741b02106f86e3 linux-3.0/arch/arm/mach-at91/include/mach/at91_pmc.h -5a0f1855c412a1e1d0cf7f8becc323d7 linux-3.0/arch/arm/mach-at91/include/mach/at91_pit.h -f599d6c7de5a70dfb76eee96da05705e linux-3.0/arch/arm/mach-at91/include/mach/at91_pio.h -7f708c8ff9ab4e5ddf6fab2b6019e2ff linux-3.0/arch/arm/mach-at91/include/mach/at91_mci.h -ecc0ec0406ff85f94c0d87b5f18dedae linux-3.0/arch/arm/mach-at91/include/mach/at91_dbgu.h -8836735abbff4943cbc177dd96fe5466 linux-3.0/arch/arm/mach-at91/include/mach/at91_aic.h -ef984b121a83350fd8935b129e343f62 linux-3.0/arch/arm/mach-at91/include/mach/at91_adc.h -d5c8a36825809592a6cc054f05948476 linux-3.0/arch/arm/mach-at91/gpio.c -e9cc0793778e709d24efe6bc19677816 linux-3.0/arch/arm/mach-at91/generic.h -c366a58929ffff0ad00f09f211f19619 linux-3.0/arch/arm/mach-at91/cpuidle.c -920934a2843a3f1b77a577ee0ca815fe linux-3.0/arch/arm/mach-at91/clock.h -6ffcc34893324f704a5166d1f53d9358 linux-3.0/arch/arm/mach-at91/clock.c -975d260001051bdaa7e28ed3ab84e0bc linux-3.0/arch/arm/mach-at91/board-yl-9200.c -11a5e029d3fb688541df1acaea550cdf linux-3.0/arch/arm/mach-at91/board-usb-a9263.c -878c029cb511c5697d3748f73306982d linux-3.0/arch/arm/mach-at91/board-usb-a9260.c -511ddb5b1f7b217b06fab6e5e5d9346b linux-3.0/arch/arm/mach-at91/board-stamp9g20.c -ab12d16107a36776d0c09317f3b8feb6 linux-3.0/arch/arm/mach-at91/board-snapper9260.c -55f62ef36e2f06fa3b28333ed03a7f85 linux-3.0/arch/arm/mach-at91/board-sam9rlek.c -e2ca438767e3eded9f4a64e1cb8b0505 linux-3.0/arch/arm/mach-at91/board-sam9m10g45ek.c -bab0ad7037d4804d3b409d3290868806 linux-3.0/arch/arm/mach-at91/board-sam9g20ek.c -005a4299eea22d8e4811603279938cc1 linux-3.0/arch/arm/mach-at91/board-sam9263ek.c -1da0815087755c9975522faeeefd173d linux-3.0/arch/arm/mach-at91/board-sam9261ek.c -6188db18ca28ad377c040d8859ca801d linux-3.0/arch/arm/mach-at91/board-sam9260ek.c -4855fb66c9306ad6819960b8ebae95e2 linux-3.0/arch/arm/mach-at91/board-sam9-l9260.c -a0dbd5c14dc3c5ba56b532ef1e8f46df linux-3.0/arch/arm/mach-at91/board-rm9200ek.c -30da3a6e29db3df20a8d572ac67c91b4 linux-3.0/arch/arm/mach-at91/board-rm9200dk.c -c6711c757bdb54938dbcdc20846d5fc0 linux-3.0/arch/arm/mach-at91/board-qil-a9260.c -c92560ac503b28ce96d2073b8bc1a89b linux-3.0/arch/arm/mach-at91/board-picotux200.c -50dc94f03399f23da0de787d51361a5d linux-3.0/arch/arm/mach-at91/board-pcontrol-g20.c -4b6d5c9d52c0fb1e2a6c6538132b62b4 linux-3.0/arch/arm/mach-at91/board-neocore926.c -2224434bc1fe1c497fcf6757f0f3873d linux-3.0/arch/arm/mach-at91/board-kb9202.c -f0248230c14dbb5de4d49ed834a49ecf linux-3.0/arch/arm/mach-at91/board-kafa.c -1e304822246786c56f2ca2446a30c308 linux-3.0/arch/arm/mach-at91/board-gsia18s.c -929a78368db9ff161352d7583a01c34d linux-3.0/arch/arm/mach-at91/board-foxg20.c -1a30de49c9db174d1a530b16caac9a3c linux-3.0/arch/arm/mach-at91/board-flexibity.c -aefad78d7efa8b5febdf4bbff5aefd5e linux-3.0/arch/arm/mach-at91/board-eco920.c -5dc964ea8df391981f9eb712ef670673 linux-3.0/arch/arm/mach-at91/board-ecbat91.c -cf085afe62af514cc53d389c8fbb19ee linux-3.0/arch/arm/mach-at91/board-eb9200.c -a6ae6a31c13155b14d956c1a91ee4b3d linux-3.0/arch/arm/mach-at91/board-eb01.c -7a53dcd5a7931858bebee442c46b20f7 linux-3.0/arch/arm/mach-at91/board-csb637.c -b166fbc4be6eed1434f0f256a9270038 linux-3.0/arch/arm/mach-at91/board-csb337.c -842acef66e54fd7d53f6a2bda619f5cc linux-3.0/arch/arm/mach-at91/board-cpuat91.c -bd5ff45ae63ca61e26ea9366b66afd36 linux-3.0/arch/arm/mach-at91/board-cpu9krea.c -fbd69a5d0987ba56b8ee20cc39e8cf17 linux-3.0/arch/arm/mach-at91/board-carmeva.c -121565edc8b03dc2fdc863ddd3ccec9a linux-3.0/arch/arm/mach-at91/board-cap9adk.c -e70ca4551aa62e885c217417e368f232 linux-3.0/arch/arm/mach-at91/board-cam60.c -17175ee3c2685ddc835b9f0de430e669 linux-3.0/arch/arm/mach-at91/board-afeb-9260v1.c -3c8bd89ba0f805ab5a46e167cedec4b9 linux-3.0/arch/arm/mach-at91/board-1arm.c -0ffabcbc50221425e7e538830862bdf7 linux-3.0/arch/arm/mach-at91/at91x40_time.c -e03a7e63dc0f7d6642699d912e590593 linux-3.0/arch/arm/mach-at91/at91x40.c -42416b118f64534be16db96e5bea4668 linux-3.0/arch/arm/mach-at91/at91sam9rl_devices.c -f2f33121be80b6794bfebe892af760ed linux-3.0/arch/arm/mach-at91/at91sam9rl.c -059dc890c045a2f6e3ec2f3cc39ca411 linux-3.0/arch/arm/mach-at91/at91sam9g45_devices.c -9d86de170a9594d6009aeb031bed7a1f linux-3.0/arch/arm/mach-at91/at91sam9g45.c -cf5a3114f6df72641b5565668f38812c linux-3.0/arch/arm/mach-at91/at91sam9_alt_reset.S -bab3acf7f5e95a79151e83e3ff7cefbb linux-3.0/arch/arm/mach-at91/at91sam926x_time.c -ead436f95d0815cb3c843cd03d37ebb6 linux-3.0/arch/arm/mach-at91/at91sam9263_devices.c -3220283365324f12855e38abae1c111c linux-3.0/arch/arm/mach-at91/at91sam9263.c -c9cd83366dbfff9338149ad7302c2c79 linux-3.0/arch/arm/mach-at91/at91sam9261_devices.c -70968881d023e287940d1006a0a6fd61 linux-3.0/arch/arm/mach-at91/at91sam9261.c -505bc58c441be17a00146b95a750548c linux-3.0/arch/arm/mach-at91/at91sam9260_devices.c -934e024b178f46ee65983f98e99265a2 linux-3.0/arch/arm/mach-at91/at91sam9260.c -be4aa5c7be3f45def4b09d4c743a8ecd linux-3.0/arch/arm/mach-at91/at91rm9200_time.c -589e8199bdaf05d89efe5682359b8dd4 linux-3.0/arch/arm/mach-at91/at91rm9200_devices.c -c112e341968981a9f24ab84099589d5f linux-3.0/arch/arm/mach-at91/at91rm9200.c -41e8cff2bf8e9e5b9d5b8d4d6fa3d6d2 linux-3.0/arch/arm/mach-at91/at91cap9_devices.c -ae8dca96bb7f7be19ce79f5714f6b5af linux-3.0/arch/arm/mach-at91/at91cap9.c -8b7d338c90699714db38e09bff2ac4fe linux-3.0/arch/arm/mach-at91/Makefile.boot -46b58e0651263d964efac851768017e8 linux-3.0/arch/arm/mach-at91/Makefile -24684ccd71918e775450bae1d9417bc6 linux-3.0/arch/arm/mach-at91/Kconfig -be1a7dff65f420b2a272f03a76dfaed0 linux-3.0/arch/arm/lib/ucmpdi2.S -8884b0271108e460555db8dbb34420ba linux-3.0/arch/arm/lib/uaccess_with_memcpy.c -bad0d6f363fc97460f40d5f3c0f0f6a9 linux-3.0/arch/arm/lib/uaccess.S -9928d77c272d662e0364b80a1a5405f0 linux-3.0/arch/arm/lib/testsetbit.S -3342f51c92fac3101ea1317c36aee661 linux-3.0/arch/arm/lib/testclearbit.S -578e1f59da5d5855d16c345b0f2e2313 linux-3.0/arch/arm/lib/testchangebit.S -d54b2a415c8897791c1b7a39d3e7a32b linux-3.0/arch/arm/lib/strrchr.S -af4e9059663b11a5deb2e1dec334da27 linux-3.0/arch/arm/lib/strnlen_user.S -fc121627705ded60a89b4e5f9864a3dd linux-3.0/arch/arm/lib/strncpy_from_user.S -7a93de9c09914f2e9e7af3cb4bb53a17 linux-3.0/arch/arm/lib/strchr.S -1ba93f8c9ce69accc568c40af00366e5 linux-3.0/arch/arm/lib/sha1.S -7a3c34334d494086c36486eb70e817ac linux-3.0/arch/arm/lib/setbit.S -cf4b78f03955a5315aa6ebec892eceaf linux-3.0/arch/arm/lib/putuser.S -8202b7b4d9335ddd6f2e952cf2d9ca7a linux-3.0/arch/arm/lib/muldi3.S -99e4e0242e8dd02ce0e58551215a7cbf linux-3.0/arch/arm/lib/memzero.S -c29abfe283a29b4fd2c098f87cc58663 linux-3.0/arch/arm/lib/memset.S -a63b4e68bad381c9a950888a710bb053 linux-3.0/arch/arm/lib/memmove.S -a2f95b5b177477948afa4bc4e55ae6a2 linux-3.0/arch/arm/lib/memcpy.S -4dfc61e6096ae217bd3ab80c71a1ac40 linux-3.0/arch/arm/lib/memchr.S -9887c02b1b4138b21cc0cacc859bf03c linux-3.0/arch/arm/lib/lshrdi3.S -a1ef9c8eaf74eafb0e8bb71d11212682 linux-3.0/arch/arm/lib/lib1funcs.S -74b20accb72012bf4a6cdc52590a58c7 linux-3.0/arch/arm/lib/io-writesw-armv4.S -2f296fe423f912fa9836da4753691cc5 linux-3.0/arch/arm/lib/io-writesw-armv3.S -fab6fbfdc92361db87ed8a1510756a41 linux-3.0/arch/arm/lib/io-writesl.S -9e25fc738b1f8b4ddc3ccbfa28f46e83 linux-3.0/arch/arm/lib/io-writesb.S -123ea0af0e52f52209f88eab292422cf linux-3.0/arch/arm/lib/io-shark.c -1e4eace7cba12ccf246f61d0cf917cac linux-3.0/arch/arm/lib/io-readsw-armv4.S -cd6db05950def4dcc2aec03c8d566a58 linux-3.0/arch/arm/lib/io-readsw-armv3.S -d432c15b7a5f9fbfa1d21d33ceba4f7f linux-3.0/arch/arm/lib/io-readsl.S -164bc4b0c52be86284edbe2f812430a1 linux-3.0/arch/arm/lib/io-readsb.S -f3c7db29963236593816eb6488b3c36d linux-3.0/arch/arm/lib/io-acorn.S -37297ed3a4d9d48804e2046d9762a4ea linux-3.0/arch/arm/lib/getuser.S -7e480c0c15f7ee8aaa8e99b98f2270ca linux-3.0/arch/arm/lib/floppydma.S -a216a44346e0387ec9d13bf8d7b36081 linux-3.0/arch/arm/lib/findbit.S -79144b78268b970f35f38d96291e6e75 linux-3.0/arch/arm/lib/ecard.S -563e897059241d1eca610dcf95417156 linux-3.0/arch/arm/lib/div64.S -cd594fa5d21373f70e248793b79a46e6 linux-3.0/arch/arm/lib/delay.S -533a935c83a9344af9be4e104f152733 linux-3.0/arch/arm/lib/csumpartialcopyuser.S -746107f6fa7178a6c954607e3dc876b9 linux-3.0/arch/arm/lib/csumpartialcopygeneric.S -0b580f6d5588e9eaeaf3721e2de07b17 linux-3.0/arch/arm/lib/csumpartialcopy.S -5785d4eeebfc9065b252238c8421d719 linux-3.0/arch/arm/lib/csumpartial.S -05d465d9c4bb409718f3eb53d1d52521 linux-3.0/arch/arm/lib/csumipv6.S -c1891c47d8f6a06c89709285cccb5074 linux-3.0/arch/arm/lib/copy_to_user.S -e00b36c92e51f2fe15b5aa4093c37b13 linux-3.0/arch/arm/lib/copy_template.S -463ae67bbeb838d1bf55b5d7b8ccefec linux-3.0/arch/arm/lib/copy_page.S -e02d8462e68f039091b595a4a0d91412 linux-3.0/arch/arm/lib/copy_from_user.S -8c76aa27a04c84c2f72bcaa902033cd7 linux-3.0/arch/arm/lib/clearbit.S -019593abddb957f797a224dca4a0afca linux-3.0/arch/arm/lib/clear_user.S -c63b1b88b1e1f39ea06e1998ff0336bf linux-3.0/arch/arm/lib/changebit.S -08fa0cb7a373778cfc1e8408ed3bb446 linux-3.0/arch/arm/lib/bitops.h -6dd10c6d9b07927e08ec69277b84427b linux-3.0/arch/arm/lib/backtrace.S -03252f45dd6a6b6aa7669213ef233c87 linux-3.0/arch/arm/lib/ashrdi3.S -7496ab3aa1adc19011fdb5fef230e2e5 linux-3.0/arch/arm/lib/ashldi3.S -88704ddc082015ea5adf1b187bc69e2f linux-3.0/arch/arm/lib/Makefile -1fa601aaded11c59fe051781f633559b linux-3.0/arch/arm/kernel/xscale-cp0.c -cef73bcbaa465b99e914653405249c24 linux-3.0/arch/arm/kernel/vmlinux.lds.S -84e1fbf80a997415eefb6b5f2be7b570 linux-3.0/arch/arm/kernel/unwind.c -d12b8872d90097e3f962842a5a92e87a linux-3.0/arch/arm/kernel/traps.c -1ca846644f8090e5b09e5b5eab5edd7b linux-3.0/arch/arm/kernel/time.c -c60338faa09caa814d4288aa59acbf8b linux-3.0/arch/arm/kernel/thumbee.c -9a4b6aaa1f5914669c607157f9d3613b linux-3.0/arch/arm/kernel/tcm.h -c1bf20baf119960f66e197ef78a61c1e linux-3.0/arch/arm/kernel/tcm.c -7d89238265200409fd38ebbd2a480236 linux-3.0/arch/arm/kernel/sys_oabi-compat.c -40e8c4a33dee55e7ef5efcd12c72984b linux-3.0/arch/arm/kernel/sys_arm.c -c112c3e211d6b9d91db4d4b0ca78faa3 linux-3.0/arch/arm/kernel/swp_emulate.c -888e30cbcb5db603021e6fd701853510 linux-3.0/arch/arm/kernel/stacktrace.c -cd51139cc7f51b65a2a8d7f5f86afa7d linux-3.0/arch/arm/kernel/smp_twd.c -ab342cb97267cf74a124fd6f928afca8 linux-3.0/arch/arm/kernel/smp_tlb.c -3051e478b4885b6ed4baa7e78ff2ae08 linux-3.0/arch/arm/kernel/smp_scu.c -e7db282882faa29e7ccbf7f0f09cad14 linux-3.0/arch/arm/kernel/smp.c -6e0cb53fb0d32cc8dc41d6511514702a linux-3.0/arch/arm/kernel/sleep.S -dd323d11bc5452132a21170efc2306ef linux-3.0/arch/arm/kernel/signal.h -e7bd73177abaa29e468b2c31df085746 linux-3.0/arch/arm/kernel/signal.c -0b0b320a1c2c642f839d5fe75e706d21 linux-3.0/arch/arm/kernel/setup.c -3a45a41168cbe542318aaab1d2093f95 linux-3.0/arch/arm/kernel/sched_clock.c -3def25c608df44023280985e6acbd7a0 linux-3.0/arch/arm/kernel/return_address.c -14b5be19aa2941c21eb6ee0bcfc190ea linux-3.0/arch/arm/kernel/relocate_kernel.S -748a22bf6456e7dc71dca0189f49791a linux-3.0/arch/arm/kernel/ptrace.c -eaba063b75b45fdb29e7b1c6074033a4 linux-3.0/arch/arm/kernel/process.c -777955cb31dc69628c8f370264b75ff5 linux-3.0/arch/arm/kernel/pmu.c -5b922ddfe6751c1f9e52d1ea10b8a273 linux-3.0/arch/arm/kernel/pj4-cp0.c -bbf900e53d925729331c140db8669d61 linux-3.0/arch/arm/kernel/perf_event_xscale.c -c6325802d6276057eaf9c4dcd6b6ef66 linux-3.0/arch/arm/kernel/perf_event_v7.c -6522343337e9b2956dfa574f4812fd3a linux-3.0/arch/arm/kernel/perf_event_v6.c -0ea76fa77d5f4b9f36feababae99a549 linux-3.0/arch/arm/kernel/perf_event.c -ae4fa46e4c8c662075353f08ecfe811e linux-3.0/arch/arm/kernel/module.c -360db1782fc22a03e5d12df92f2aed8c linux-3.0/arch/arm/kernel/machine_kexec.c -bafbf29a00081a3c8a0aed32d49213bf linux-3.0/arch/arm/kernel/leds.c -533756b5eefe8febdb4e3f135bc76158 linux-3.0/arch/arm/kernel/kprobes.c -6fcc902ecb91bb2f5498d74cfda2b051 linux-3.0/arch/arm/kernel/kprobes-decode.c -fe40f83243c81f0a75a20655f6e175cc linux-3.0/arch/arm/kernel/kgdb.c -8515c97fad86084b83c63418467f5bee linux-3.0/arch/arm/kernel/iwmmxt.S -16277f7bc7c1ec1dfb4d0327368db4d9 linux-3.0/arch/arm/kernel/isa.c -9f41b344fb5017519a2cc11a9e69d29b linux-3.0/arch/arm/kernel/irq.c -425f1882bcfa87186c8102981df0c7b9 linux-3.0/arch/arm/kernel/io.c -a0a8a73311b6b89f1fc803f70c620630 linux-3.0/arch/arm/kernel/init_task.c -352aa15825f54ed791ba8033b91999a3 linux-3.0/arch/arm/kernel/hw_breakpoint.c -6bb02f2d6adf011626789515e9c7cb07 linux-3.0/arch/arm/kernel/head.S -bf19511647580fd1246eb1394547bd44 linux-3.0/arch/arm/kernel/head-nommu.S -b51e6b04d52b7ebf4168e790c04a17ba linux-3.0/arch/arm/kernel/head-common.S -4ebd355a2a9acb158fadd45efdde6c53 linux-3.0/arch/arm/kernel/ftrace.c -a87636a8ec06cc7bc626b00806e3fd03 linux-3.0/arch/arm/kernel/fiqasm.S -b87189306bb96ccad509a0f7b0361eee linux-3.0/arch/arm/kernel/fiq.c -5420fb66bb74c8752534293d54d2d17e linux-3.0/arch/arm/kernel/etm.c -2c58eaed4cb92d9f2cc3893ce8c7dce9 linux-3.0/arch/arm/kernel/entry-header.S -b0e2f8a56bba0b6b971dc17312f7fd12 linux-3.0/arch/arm/kernel/entry-common.S -90d700077de59240286c9dde416db65a linux-3.0/arch/arm/kernel/entry-armv.S -6df8d057860e21a5462d5706262c2229 linux-3.0/arch/arm/kernel/elf.c -ee90bba53e246928936817a512ce0dd7 linux-3.0/arch/arm/kernel/ecard.h -24ac212abb4799eb32cd6f3613b640d6 linux-3.0/arch/arm/kernel/ecard.c -e9ef971ee6b110f81ae22356e70edd1a linux-3.0/arch/arm/kernel/early_printk.c -af682e5d2a2f6052312683d5fa505c28 linux-3.0/arch/arm/kernel/dma.c -13d1de8d14f3d66f05f98f7bfe7a2842 linux-3.0/arch/arm/kernel/dma-isa.c -04eba1445f9dbe81c927536384437b57 linux-3.0/arch/arm/kernel/devtree.c -0a1923b5d8c9827fbd18cb12da850e4e linux-3.0/arch/arm/kernel/debug.S -dd70d740070787f1b59b0758201ad44e linux-3.0/arch/arm/kernel/crunch.c -a2c84416cbf7817d9f99f3a5831405a2 linux-3.0/arch/arm/kernel/crunch-bits.S -77556408311032b9e8c688059dd6c0be linux-3.0/arch/arm/kernel/crash_dump.c -51a7c0407db40a7405831734a1e88f9f linux-3.0/arch/arm/kernel/compat.h -bf4909ad213310d66591c65bc68d2581 linux-3.0/arch/arm/kernel/compat.c -99688c8a5b4412a53c8049dbd7788121 linux-3.0/arch/arm/kernel/calls.S -e1fb547330f20f1e5f271adc12dbd1a4 linux-3.0/arch/arm/kernel/bios32.c -bec937be5ad78e37040ce105a5384952 linux-3.0/arch/arm/kernel/atags.h -d84eddcd939d7899715403a76f0ef7b3 linux-3.0/arch/arm/kernel/atags.c -c4e8c7500b3b8f1e0946364aef5943a6 linux-3.0/arch/arm/kernel/asm-offsets.c -4d724d5b794608ed1a1bb580e8e30848 linux-3.0/arch/arm/kernel/arthur.c -f9d7889b6eba958a6c81fbd81e64b153 linux-3.0/arch/arm/kernel/armksyms.c -5b9e130fb62b42e421d4effa816562e8 linux-3.0/arch/arm/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/arm/kernel/.gitignore -8e058ea8b08c95b29e9359c71873b82c linux-3.0/arch/arm/include/asm/xor.h -2c32a4dde8ff5ea244015cfd38b64235 linux-3.0/arch/arm/include/asm/vga.h -9814307e4198154867f92682be9de3ef linux-3.0/arch/arm/include/asm/vfpmacros.h -022d415bf81badd9e6f1b372c365dfe1 linux-3.0/arch/arm/include/asm/vfp.h -ce166bbab3b72918c5e208a27837c906 linux-3.0/arch/arm/include/asm/user.h -f576a2de90312b6471429c8d04229a11 linux-3.0/arch/arm/include/asm/unwind.h -96e489f6184bf1adc216422fcb358ecd linux-3.0/arch/arm/include/asm/unistd.h -e274eead2c6a986ca51ee81b292f34d3 linux-3.0/arch/arm/include/asm/unified.h -4b7ffe6a341fc827c443407af2bb8f0b linux-3.0/arch/arm/include/asm/unaligned.h -ecfc8fe9b14fae25326d099ee82454ee linux-3.0/arch/arm/include/asm/ucontext.h -24c3a104b75243c4fbac5d8de0ff49d6 linux-3.0/arch/arm/include/asm/uaccess.h -65698c9a71332264e31f1669e7b0717d linux-3.0/arch/arm/include/asm/types.h -4c22124d2bb1f1c971857a42ae2dcb39 linux-3.0/arch/arm/include/asm/traps.h -9d99373754218a4440f779c5ed6813bb linux-3.0/arch/arm/include/asm/topology.h -1ba9b514f9a622c58c2845c6f1bd1227 linux-3.0/arch/arm/include/asm/tls.h -1040bf69444835b2df8d43d10e09560b linux-3.0/arch/arm/include/asm/tlbflush.h -8287e623cce277bc79a0032b2a8e9527 linux-3.0/arch/arm/include/asm/tlb.h -197d96f4f26ee78d71771ee8e1d56cc9 linux-3.0/arch/arm/include/asm/timex.h -a3a683d88c33af30467e80f5608cc84d linux-3.0/arch/arm/include/asm/thread_notify.h -4630f08e1feef233b9ed5f3758c039f4 linux-3.0/arch/arm/include/asm/thread_info.h -990b52e939db051c79fb80beb7ac47ea linux-3.0/arch/arm/include/asm/therm.h -7516786fda81aa63e9647c39144cef3f linux-3.0/arch/arm/include/asm/termios.h -0f4d1d2f1afafa238092c1ce17085fa6 linux-3.0/arch/arm/include/asm/termbits.h -88fa84f44efd625790263080d818dade linux-3.0/arch/arm/include/asm/tcm.h -f267c0ec0756de2bf039bc0f65b4b7ec linux-3.0/arch/arm/include/asm/system.h -20d1f42012f9deb7a3e0a9782d17cabb linux-3.0/arch/arm/include/asm/swab.h -8b696d603e86f6413edc0041e68aa712 linux-3.0/arch/arm/include/asm/string.h -f09f1dd945136279017047ae340e33e0 linux-3.0/arch/arm/include/asm/statfs.h -1aa9a492a820855a17a325bf06976f7d linux-3.0/arch/arm/include/asm/stat.h -bc8ff933a261b209da9d525e183dcac6 linux-3.0/arch/arm/include/asm/stacktrace.h -c4fab12eb2cce2d070e3aa33655a77b2 linux-3.0/arch/arm/include/asm/stackprotector.h -5fdf30df71110361417349bfc3e4cdfb linux-3.0/arch/arm/include/asm/spinlock_types.h -6a2afea20a120c54c6c84fa231419bc5 linux-3.0/arch/arm/include/asm/spinlock.h -684886f8024e507f44ee7470e0ecb93e linux-3.0/arch/arm/include/asm/sparsemem.h -7d4f3e3e331276a468fb613cb609455b linux-3.0/arch/arm/include/asm/sockios.h -2bc281da0193cb766752d686bd0c5070 linux-3.0/arch/arm/include/asm/socket.h -0a7adfb03d5241a4a6d9558ebc52cafa linux-3.0/arch/arm/include/asm/smp_twd.h -832e1015fc1ad571c7c01890c00817cf linux-3.0/arch/arm/include/asm/smp_scu.h -caeafe48eee830fc4fe94b2bb8da35fb linux-3.0/arch/arm/include/asm/smp_plat.h -dbe3f0af28910c4450688e138014e1a3 linux-3.0/arch/arm/include/asm/smp.h -6ec7beab2d11637bd05fcc02206e14e2 linux-3.0/arch/arm/include/asm/sizes.h -a79c58aa5a368f6110d1477269e1494f linux-3.0/arch/arm/include/asm/signal.h -8bb0b1c01771512c8695fb2a7cd7c186 linux-3.0/arch/arm/include/asm/siginfo.h -0e4644ff650def340fb74ee3ea0424b4 linux-3.0/arch/arm/include/asm/sigcontext.h -e3d172fa5a265e5ef22e07055bcead79 linux-3.0/arch/arm/include/asm/shmparam.h -bf669c50c832ae58bf8c37a72caab283 linux-3.0/arch/arm/include/asm/shmbuf.h -25ce04ed279657ad6ed23a5ad9871604 linux-3.0/arch/arm/include/asm/setup.h -23b39cbeab9b6e20eeec977128e18a6e linux-3.0/arch/arm/include/asm/serial.h -152fcafa96554e5ecc5d502d767d1af2 linux-3.0/arch/arm/include/asm/sembuf.h -a8a7ae98bb2758e02f5f8810b681ff5a linux-3.0/arch/arm/include/asm/segment.h -b54e28489546e6c97063c2fc9eb080a0 linux-3.0/arch/arm/include/asm/sections.h -6405d745a3ac99d49e800181caa1fb74 linux-3.0/arch/arm/include/asm/seccomp.h -b654f6195d0afbb24031e1818aab0bff linux-3.0/arch/arm/include/asm/sched_clock.h -757fa28d991dded9c45118b5e26a3040 linux-3.0/arch/arm/include/asm/scatterlist.h -08f0e04c35408173dc71dbc9de8992dc linux-3.0/arch/arm/include/asm/resource.h -0d226fe7680148e247bea0aabddbe657 linux-3.0/arch/arm/include/asm/ptrace.h -5625f87a0d7517e7b6fc5ba169ba5d84 linux-3.0/arch/arm/include/asm/prom.h -3a09b5eb3af9a32c310d2902ee0d573c linux-3.0/arch/arm/include/asm/procinfo.h -cab67b54ea903713ee62b5a1c995c19d linux-3.0/arch/arm/include/asm/processor.h -26fdff27701154c270076112eb830db3 linux-3.0/arch/arm/include/asm/proc-fns.h -dde667b74460f3a92a8828f86ec5017f linux-3.0/arch/arm/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/arm/include/asm/poll.h -9227a1b3d1bc42fb36fe7ac04b667fc0 linux-3.0/arch/arm/include/asm/pmu.h -923592d128b2192e2cd852bfb87f498d linux-3.0/arch/arm/include/asm/pgtable.h -46c19e050a2a2239c676968484d46f13 linux-3.0/arch/arm/include/asm/pgtable-nommu.h -a078b6321c0702c326bebfc7f8c48b76 linux-3.0/arch/arm/include/asm/pgtable-hwdef.h -3f0e5153a546792c9cbc5aa7ff1d7ca2 linux-3.0/arch/arm/include/asm/pgalloc.h -291c2212f54d1ffb482a7a8d5b3a6e59 linux-3.0/arch/arm/include/asm/perf_event.h -54030b1ffdf1261fe60a7103dff912d6 linux-3.0/arch/arm/include/asm/percpu.h -1d18e8e9af7506234c2e2c69a707f5a8 linux-3.0/arch/arm/include/asm/pci.h -a2fed351dd3948a1acc20bd290b839c7 linux-3.0/arch/arm/include/asm/parport.h -17a9b2e61d7746bdeefbf02653a6b7e2 linux-3.0/arch/arm/include/asm/param.h -710d456d8d762327bcc113d900d12e91 linux-3.0/arch/arm/include/asm/page.h -407b14824761e856089244c934b4a95f linux-3.0/arch/arm/include/asm/page-nommu.h -d1a49c51303b7edab434b1dafc9950f3 linux-3.0/arch/arm/include/asm/outercache.h -276a36100859cf4ba8d68b0ca915852e linux-3.0/arch/arm/include/asm/nwflash.h -e32f332085181bdaeffe6484a4f7fa43 linux-3.0/arch/arm/include/asm/mutex.h -caa8500c1d3267deb746a1e433242cc4 linux-3.0/arch/arm/include/asm/mtd-xip.h -2c39fae17167037a5db6b35c60339f3f linux-3.0/arch/arm/include/asm/msgbuf.h -98ff69e330e2d4a06b9aa26c62c1365a linux-3.0/arch/arm/include/asm/module.h -f5cd11682c31f8201c73a32eaa0a49ad linux-3.0/arch/arm/include/asm/mmu_context.h -0fdf0d4b9ba90ca3e8e1d89ec9afd381 linux-3.0/arch/arm/include/asm/mmu.h -7376f6beffea79d70abf584a15f97930 linux-3.0/arch/arm/include/asm/mman.h -97276ab9eaf6a26aa96d823e6ed2df69 linux-3.0/arch/arm/include/asm/memory.h -5129c3b35f89169f0da817ae51ee110c linux-3.0/arch/arm/include/asm/memblock.h -7b4be6b0cb383db606f56055ff90a0a3 linux-3.0/arch/arm/include/asm/mc146818rtc.h -74042d4bb44021350248bd38c60c3a95 linux-3.0/arch/arm/include/asm/mach/udc_pxa2xx.h -aa181d82c6a67b227952f5c0bf08d32d linux-3.0/arch/arm/include/asm/mach/time.h -a1a934fbad65ead700af8ce866bd6388 linux-3.0/arch/arm/include/asm/mach/sharpsl_param.h -996d58761492c99ecdaa9c514cb60046 linux-3.0/arch/arm/include/asm/mach/serial_sa1100.h -079b15c7039958c2ba38324077d2acdf linux-3.0/arch/arm/include/asm/mach/serial_at91.h -fa213edfaac228c3dc97f777234fe22d linux-3.0/arch/arm/include/asm/mach/pci.h -c35247d705796143e390590b5a3577ce linux-3.0/arch/arm/include/asm/mach/map.h -a802d9ce03618dc93a29c5071ecd3a9c linux-3.0/arch/arm/include/asm/mach/irq.h -98e46aeafe98fb0b2f902308331a60f1 linux-3.0/arch/arm/include/asm/mach/irda.h -88cbcbc0388bf162d7f2c200f1a29394 linux-3.0/arch/arm/include/asm/mach/flash.h -8b112c538b06abcbfa18dc80977b8bf3 linux-3.0/arch/arm/include/asm/mach/dma.h -6c84bafe722c11005234bf8c0c7f7e96 linux-3.0/arch/arm/include/asm/mach/arch.h -17ced3c13bd33e12e3bf6fffbc233ef8 linux-3.0/arch/arm/include/asm/mach-types.h -d3a9b540f14d79f79c56f42c67b2db9f linux-3.0/arch/arm/include/asm/locks.h -addc555753e94fac5774e4f0ab286d63 linux-3.0/arch/arm/include/asm/localtimer.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/arm/include/asm/local64.h -dd5c2452f777c57e923e1b3de9ac2c14 linux-3.0/arch/arm/include/asm/local.h -b7d5d9ba6554ab2e6be07985fdcd342b linux-3.0/arch/arm/include/asm/linkage.h -825823157607eab9825e233a8489128e linux-3.0/arch/arm/include/asm/limits.h -b92757d87b55dfd5e6ee797e9074e3d3 linux-3.0/arch/arm/include/asm/leds.h -bad7c0f0a850c19174a79b9b5dd29926 linux-3.0/arch/arm/include/asm/kprobes.h -d6b50e2da8b4996a51120c654ba8c1bb linux-3.0/arch/arm/include/asm/kmap_types.h -1f61a2b0a357125307427e966cfa06ae linux-3.0/arch/arm/include/asm/kgdb.h -ebfbd44af6ce610390d515e830f13675 linux-3.0/arch/arm/include/asm/kexec.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/arm/include/asm/kdebug.h -c3688f44d10cfb5b66ee9b2e48ba589e linux-3.0/arch/arm/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/arm/include/asm/irq_regs.h -f3b39b5d527313f0384303c54db94f56 linux-3.0/arch/arm/include/asm/irq.h -642925dc75486c7d05a70abec346f064 linux-3.0/arch/arm/include/asm/ipcbuf.h -a9f06d7d8b6d8a180a16186cc8b8c44a linux-3.0/arch/arm/include/asm/ioctls.h -29111f5397c917c7d5e6fe8ec79693b9 linux-3.0/arch/arm/include/asm/ioctl.h -c34b69a8b29aa668b5512dd3d6579810 linux-3.0/arch/arm/include/asm/io.h -74e2b8270cf2a686a440bc512f517a56 linux-3.0/arch/arm/include/asm/ide.h -634c39cf4664f8c2e0c743c7138efd1d linux-3.0/arch/arm/include/asm/i8253.h -ccf1f273387b9b183fc35ee086e5b2cd linux-3.0/arch/arm/include/asm/hwcap.h -528ccb8a3782f97b990fed1fa22e2215 linux-3.0/arch/arm/include/asm/hw_irq.h -a1fe50103f02ad8c3b143f8feea5b4fd linux-3.0/arch/arm/include/asm/hw_breakpoint.h -fc25c8d68330dc3abd34408b703727e9 linux-3.0/arch/arm/include/asm/highmem.h -def4568999de54ffab8873ccfe6d6760 linux-3.0/arch/arm/include/asm/hardware/vic.h -2efa5b54150dd82b116b8a572affbe11 linux-3.0/arch/arm/include/asm/hardware/uengine.h -2333a8c3bff6fc219bf0c938701c8a09 linux-3.0/arch/arm/include/asm/hardware/timer-sp.h -650473f45f162569be7a732709caa66d linux-3.0/arch/arm/include/asm/hardware/ssp.h -b2b0c6262bfac7a5286a264f828518d3 linux-3.0/arch/arm/include/asm/hardware/sp810.h -430903bbe817df611ecec09b9e0229ac linux-3.0/arch/arm/include/asm/hardware/scoop.h -75b76d7647f3d076ef0f230328f1c3ee linux-3.0/arch/arm/include/asm/hardware/sa1111.h -5668fb556a2214655a53ae2b66649193 linux-3.0/arch/arm/include/asm/hardware/pl330.h -84f510eb1365f7000acd0cdfbdec744a linux-3.0/arch/arm/include/asm/hardware/pl080.h -dc1db3c5648d49d5252350abe07983f8 linux-3.0/arch/arm/include/asm/hardware/pci_v3.h -765ef8dfd5e5fb66dcde118ae24b9b4d linux-3.0/arch/arm/include/asm/hardware/memc.h -2c28e5899f8380be2ac984f7aef9c057 linux-3.0/arch/arm/include/asm/hardware/locomo.h -3a2ab641536f446fe28d2e4cdc7e2012 linux-3.0/arch/arm/include/asm/hardware/linkup-l1110.h -5bd5ae93c526d1c16f1b350784b526d5 linux-3.0/arch/arm/include/asm/hardware/it8152.h -d8668e9bba7c1f23b7b9f111b5af0871 linux-3.0/arch/arm/include/asm/hardware/iop_adma.h -05de5de9db2e29e5e8451d2a26c63eed linux-3.0/arch/arm/include/asm/hardware/iop3xx.h -0c76836dc1edd9189a6bf993d2913a88 linux-3.0/arch/arm/include/asm/hardware/iop3xx-gpio.h -e4b72e3ec538812abe96f73d8df26f5b linux-3.0/arch/arm/include/asm/hardware/iop3xx-adma.h -47715ca2f42be02b17e3156fdae68a62 linux-3.0/arch/arm/include/asm/hardware/iomd.h -8001b701cf26e9dcb23212a0e8ff4db0 linux-3.0/arch/arm/include/asm/hardware/ioc.h -a806dd9546c467c9941943e84e508c84 linux-3.0/arch/arm/include/asm/hardware/icst.h -cb5a54e9e557f37fea9193e4968e0ce8 linux-3.0/arch/arm/include/asm/hardware/gic.h -d7f49e611db244b77a4d9e4bd4080c30 linux-3.0/arch/arm/include/asm/hardware/ep7212.h -a7cedceb140cccafaba8fbf731d1dc13 linux-3.0/arch/arm/include/asm/hardware/ep7211.h -9538329bc74cf48a6224d062a949ce79 linux-3.0/arch/arm/include/asm/hardware/entry-macro-iomd.S -13af17219a95eec1121b7cbfc6b22936 linux-3.0/arch/arm/include/asm/hardware/entry-macro-gic.S -28f2df0087c579fbc4299ef32874a7f2 linux-3.0/arch/arm/include/asm/hardware/dec21285.h -7bef0714b8c41dbdad31582e65856fd6 linux-3.0/arch/arm/include/asm/hardware/debug-pl01x.S -17082d11fe5a7a7ec8877984f4041bad linux-3.0/arch/arm/include/asm/hardware/debug-8250.S -add2c2751fa72a8d3a3b8dcfd0f21d4a linux-3.0/arch/arm/include/asm/hardware/cs89712.h -fa6e2a05c6c82a17c81882d002acde04 linux-3.0/arch/arm/include/asm/hardware/coresight.h -162bb353670dd964b9aeb5ce5e7e0235 linux-3.0/arch/arm/include/asm/hardware/clps7111.h -6cad316465b9cc471eae89ccddd5f854 linux-3.0/arch/arm/include/asm/hardware/cache-tauros2.h -927edb9aee623f00d116cb25fb3fdee6 linux-3.0/arch/arm/include/asm/hardware/cache-l2x0.h -bc118c77a401853e82c85a732a634581 linux-3.0/arch/arm/include/asm/hardware/arm_timer.h -ef2b086e92bb4822990d268ca476b4b0 linux-3.0/arch/arm/include/asm/hardirq.h -db7cb9032b9daf1b9694ee5e3ee3ffcf linux-3.0/arch/arm/include/asm/gpio.h -88b242328d3a1b1a0fcea04f06a554ad linux-3.0/arch/arm/include/asm/glue.h -14189a9ca95ede7e70f5674b666df0fa linux-3.0/arch/arm/include/asm/glue-proc.h -c3b46b1908e4956f8e0ec19e56daa76a linux-3.0/arch/arm/include/asm/glue-pf.h -d4b54bbc192b49696ac0b7b2580c50fe linux-3.0/arch/arm/include/asm/glue-df.h -7892e4abc249ae75824e1f1bd7130f90 linux-3.0/arch/arm/include/asm/glue-cache.h -d317f6e38b4c9337a8fdbf7b0b933dcf linux-3.0/arch/arm/include/asm/futex.h -da69562a6303879fcda21164ab92e3bf linux-3.0/arch/arm/include/asm/ftrace.h -7b56f16cae07c885e12e7940fd385609 linux-3.0/arch/arm/include/asm/fpstate.h -2e7611eee7d92a618880abe0123d9fca linux-3.0/arch/arm/include/asm/fncpy.h -1e7bb955a6afeafbd5b80768fee0fd13 linux-3.0/arch/arm/include/asm/floppy.h -45169c2dd969793c08280e1efa3fd93e linux-3.0/arch/arm/include/asm/flat.h -3c81b9680d9882b059a99b98b5bfb484 linux-3.0/arch/arm/include/asm/fixmap.h -466cdfddf8310f8a0e8c1a5863c3884f linux-3.0/arch/arm/include/asm/fiq.h -c1df87d9b7eb18b46135d922ca606bd1 linux-3.0/arch/arm/include/asm/fcntl.h -e31d052cbba4f417ba2158a41b0d8709 linux-3.0/arch/arm/include/asm/fb.h -c63c79f9c4ea91191d173302b24779b7 linux-3.0/arch/arm/include/asm/errno.h -593db54c5f5fd03b95e0e63e09c660a5 linux-3.0/arch/arm/include/asm/entry-macro-vic2.S -d73fe437e15a1d93aeba6fdb58576e68 linux-3.0/arch/arm/include/asm/entry-macro-multi.S -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/arm/include/asm/emergency-restart.h -fd3e5d7e1838cdfe0cedbc4c293886bb linux-3.0/arch/arm/include/asm/elf.h -ba9c8dbfbc4f69dc65462e4e70001ad7 linux-3.0/arch/arm/include/asm/ecard.h -65f10b11e6dc8d7b9520bcbb916dd926 linux-3.0/arch/arm/include/asm/domain.h -1749308bb3780c7057755ad4bb1a7a22 linux-3.0/arch/arm/include/asm/dma.h -3f512665f77d14fdbfc087091a063b65 linux-3.0/arch/arm/include/asm/dma-mapping.h -fa703544c07cf7c67ee8aa409eaade76 linux-3.0/arch/arm/include/asm/div64.h -7a5680e02d9b3d10fa156710268d2151 linux-3.0/arch/arm/include/asm/device.h -551de73538c4435e26774a5c89c40347 linux-3.0/arch/arm/include/asm/delay.h -81d875e643d4a9e3b3fdc61c678e750c linux-3.0/arch/arm/include/asm/current.h -6dc1a0fbd92f475b6a99eb93d78c27c0 linux-3.0/arch/arm/include/asm/cputype.h -c86f623744a261c3587131fb9a1fd47b linux-3.0/arch/arm/include/asm/cputime.h -2293dc261431d41628d1ec657ab50363 linux-3.0/arch/arm/include/asm/cpu.h -54ce3d03084a6d7995ca2fd30d991510 linux-3.0/arch/arm/include/asm/clkdev.h -b12c64d820274ab48df41f39b054637a linux-3.0/arch/arm/include/asm/checksum.h -fd901167804277f053d1407774ce56be linux-3.0/arch/arm/include/asm/cachetype.h -a32d7ef865ada427e8d03613883235af linux-3.0/arch/arm/include/asm/cacheflush.h -e6a2f131f03fb5c4682390a0516ee4a4 linux-3.0/arch/arm/include/asm/cache.h -0079dd75f5a487a58bc9e31fac37ecc2 linux-3.0/arch/arm/include/asm/byteorder.h -5416f6857499be68e1f30bb05b88f71a linux-3.0/arch/arm/include/asm/bugs.h -a1f0d704fc96cd58751cd454fb484ac2 linux-3.0/arch/arm/include/asm/bug.h -73411561c669fde6ad663df5491195cc linux-3.0/arch/arm/include/asm/bitsperlong.h -8b5741b848e157bf8d609cee9b4b427d linux-3.0/arch/arm/include/asm/bitops.h -a510868decd9adc799f67368bdefe7d2 linux-3.0/arch/arm/include/asm/auxvec.h -8aea088339259874dd6f0aca71a9a0b6 linux-3.0/arch/arm/include/asm/atomic.h -c6f0915ebc9bbc146f95a035eb79013b linux-3.0/arch/arm/include/asm/assembler.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/arm/include/asm/asm-offsets.h -819832d9e10179b703802f356e5b63df linux-3.0/arch/arm/include/asm/a.out.h -fe6b5ae677852a1cc1a9c9e16e846c0a linux-3.0/arch/arm/include/asm/a.out-core.h -29e4785a5b6d185d14e0189bc6a33f8e linux-3.0/arch/arm/include/asm/Kbuild -91689c7b2d75c922e9a06f3db33c8c5f linux-3.0/arch/arm/configs/zeus_defconfig -ee67691f0fe37831524947960252ee34 linux-3.0/arch/arm/configs/xcep_defconfig -b3f2e26fb944e8b349359530067c5f8c linux-3.0/arch/arm/configs/viper_defconfig -1aa269f208ee1941e3dc9c150e8e7652 linux-3.0/arch/arm/configs/vexpress_defconfig -a61c459d07144bf98c6ddf33cc7da0b8 linux-3.0/arch/arm/configs/versatile_defconfig -161255dce4f337a37281386e30144c5c linux-3.0/arch/arm/configs/usb-a9260_defconfig -71f32f448f949fe1464830188740246a linux-3.0/arch/arm/configs/u8500_defconfig -aff23c25cb357a92a58335dd898da136 linux-3.0/arch/arm/configs/u300_defconfig -7dd9683ca32c4e79652789a403741024 linux-3.0/arch/arm/configs/trizeps4_defconfig -b22f6fde490e290d7d013322c5078ebb linux-3.0/arch/arm/configs/tegra_defconfig -5a134655820957fca6b529398674b5a9 linux-3.0/arch/arm/configs/tct_hammer_defconfig -5e8496a6cc3d9d37a4267dadabcabd1a linux-3.0/arch/arm/configs/stamp9g20_defconfig -49fc08a1635ac4ee3196acf3399f171e linux-3.0/arch/arm/configs/spitz_defconfig -f48e1dffd551668edc35a1739d630c65 linux-3.0/arch/arm/configs/spear6xx_defconfig -fbcb33997abbe2fb0632014a7c8d7db7 linux-3.0/arch/arm/configs/spear3xx_defconfig -51528a72eb4ed2d73217a0fc33e49e7e linux-3.0/arch/arm/configs/simpad_defconfig -a31d716c09391366715687de1d9d17aa linux-3.0/arch/arm/configs/shark_defconfig -c07f70eb1ff1c7a7f8c796924cdd9b49 linux-3.0/arch/arm/configs/shannon_defconfig -014fa9b371cd07d6a5f4b5115e11298f linux-3.0/arch/arm/configs/sam9_l9260_defconfig -176b2ddedde57ab0f72c9a8b5093a4f6 linux-3.0/arch/arm/configs/s5pv210_defconfig -c89f46923a5bb50efd8e20d4f6c8ea21 linux-3.0/arch/arm/configs/s5pc100_defconfig -5f00af64fd3605dfdb63ae611811d0f2 linux-3.0/arch/arm/configs/s5p64x0_defconfig -d2eaceb0b1991473ecbcf6505f296411 linux-3.0/arch/arm/configs/s3c6400_defconfig -36f3960b3ff19027533b9be56ca9d346 linux-3.0/arch/arm/configs/s3c2410_defconfig -cf172a4b3fe17ac12798b340223eaa61 linux-3.0/arch/arm/configs/rpc_defconfig -6ae7b3f023ee33ef32f149bc807dca7a linux-3.0/arch/arm/configs/realview_defconfig -89de17f20ed63c70124ec0a7663903ee linux-3.0/arch/arm/configs/realview-smp_defconfig -332ee5ea4e2448c445faf4a625ceebf5 linux-3.0/arch/arm/configs/raumfeld_defconfig -88a457831e3aafb94ba37d18bc7fbfef linux-3.0/arch/arm/configs/qil-a9260_defconfig -c8cf247447f3ead1e3cd52c226d305e2 linux-3.0/arch/arm/configs/pxa910_defconfig -48006e746def6400a65f2d1018dd7d71 linux-3.0/arch/arm/configs/pxa3xx_defconfig -ea33a9760894827fb8432422c4755258 linux-3.0/arch/arm/configs/pxa255-idp_defconfig -11959df90ed60638cb57290833897705 linux-3.0/arch/arm/configs/pxa168_defconfig -2ce767b7fd51cff8d4fc8f5a1886f394 linux-3.0/arch/arm/configs/pnx4008_defconfig -e82e254e10edf6606ac8fa98a3f3b66a linux-3.0/arch/arm/configs/pleb_defconfig -b19ec5a1ebdab407046f38f9dcf81326 linux-3.0/arch/arm/configs/pcontrol_g20_defconfig -545d3bc097cae34e10b54eebe4dac5e4 linux-3.0/arch/arm/configs/pcm027_defconfig -3d666a1de5fde198bcbc36ed515c371b linux-3.0/arch/arm/configs/palmz72_defconfig -4bbc5e21546a3bf561d4671cfaffea1e linux-3.0/arch/arm/configs/orion5x_defconfig -5596f602c5fbde50ad3cd0054c8a8b02 linux-3.0/arch/arm/configs/omap2plus_defconfig -d170307b112396d43cb180b860ce4b3b linux-3.0/arch/arm/configs/omap1_defconfig -cd66ef7209152f1119002efc768da56a linux-3.0/arch/arm/configs/nuc960_defconfig -05e9071bae71674b6f0efb075ab8e6e0 linux-3.0/arch/arm/configs/nuc950_defconfig -df373d9fcd087cd61d9b2ab5c8308545 linux-3.0/arch/arm/configs/nuc910_defconfig -95ad8610fe37a03886b2725e37a66129 linux-3.0/arch/arm/configs/nhk8815_defconfig -84367088b786a4985c1c5ad23cb6817f linux-3.0/arch/arm/configs/netx_defconfig -5ed9fe8dc5ef13dbe9943763166adc91 linux-3.0/arch/arm/configs/netwinder_defconfig -90cb0d3f4f97ab2f27d21764ff522f38 linux-3.0/arch/arm/configs/neponset_defconfig -4cfb3b99e88afbd3e08725d4bb0832ff linux-3.0/arch/arm/configs/mxs_defconfig -8b0e53f3725d6b68a62518fa4403f9a3 linux-3.0/arch/arm/configs/mx51_defconfig -7e9ae737f859f4738feb62af7be9200e linux-3.0/arch/arm/configs/mx3_defconfig -b6bd7111d7ad692b9d1988ee13eec2ab linux-3.0/arch/arm/configs/mx27_defconfig -1932c1f601e7ae0ea940e38e85c63a8f linux-3.0/arch/arm/configs/mx21_defconfig -ab6e441f4a5ff9674732531c9a567755 linux-3.0/arch/arm/configs/mx1_defconfig -a2cf47b8ba31e4fa9386e84ccb9acb6b linux-3.0/arch/arm/configs/mv78xx0_defconfig -24a438b3c10bc196a730b5199d4a99db linux-3.0/arch/arm/configs/msm_defconfig -335704a91d4afadd95d7466268c94856 linux-3.0/arch/arm/configs/mmp2_defconfig -c9206786ce2638f22f055dabbf13905f linux-3.0/arch/arm/configs/mini2440_defconfig -0e4876f05eee284c0bf782f4b8b2cd75 linux-3.0/arch/arm/configs/mainstone_defconfig -2c592bff6b21bdabdab67141497a05ba linux-3.0/arch/arm/configs/magician_defconfig -4d466dfa320b4b82aecb1fef4e5c4515 linux-3.0/arch/arm/configs/mackerel_defconfig -407615362d63065abfd6deb5e13a46a6 linux-3.0/arch/arm/configs/lubbock_defconfig -2a0890e897a2cf8f4da1a5ce21852f29 linux-3.0/arch/arm/configs/lpd270_defconfig -78eceaf7ba05961f1aeea0f16556c3dd linux-3.0/arch/arm/configs/loki_defconfig -e6da91a0d33d3d9405fe344d6789efb9 linux-3.0/arch/arm/configs/lart_defconfig -d27ab6295a50be854430e8efa7560b23 linux-3.0/arch/arm/configs/ks8695_defconfig -766c09073e0a6ca92cb0c682f07cb107 linux-3.0/arch/arm/configs/kirkwood_defconfig -b8124f41e63588b0d52c4428b35a1bf3 linux-3.0/arch/arm/configs/jornada720_defconfig -3dfc5c37f44fa696cee5db24a43d5f67 linux-3.0/arch/arm/configs/ixp4xx_defconfig -3186e8fa65c11124879f658660e73ce8 linux-3.0/arch/arm/configs/ixp23xx_defconfig -7a6461873eb82850094f9d7131d5838c linux-3.0/arch/arm/configs/ixp2000_defconfig -2f586d99e90b78c7fe397e49e3997ff2 linux-3.0/arch/arm/configs/iop33x_defconfig -b98ad5952c6fc53cdc9be9ae8aa425fd linux-3.0/arch/arm/configs/iop32x_defconfig -8fcb0c58dc7aac382d3cf137fca0b4ce linux-3.0/arch/arm/configs/iop13xx_defconfig -3c03b0398adf8a6a36f7f8deb0e68738 linux-3.0/arch/arm/configs/integrator_defconfig -e4453371780aa90f4a31f04e1739a5d5 linux-3.0/arch/arm/configs/imote2_defconfig -d9a076a007a517e3e2e22f23f142f313 linux-3.0/arch/arm/configs/hackkit_defconfig -6c79dfffaf4d872b3a89545aac013b17 linux-3.0/arch/arm/configs/h7202_defconfig -c9de484d14209d9ced2cf799fbd78c55 linux-3.0/arch/arm/configs/h7201_defconfig -dafeee78eaabdd43dab23355352f436c linux-3.0/arch/arm/configs/h5000_defconfig -fbe83aa0946e7af988e861541f0a5b7e linux-3.0/arch/arm/configs/h3600_defconfig -37e78f05682983f20043d0752c316b3f linux-3.0/arch/arm/configs/g4evm_defconfig -b2fdd1dce1d421d4e547fff4f9c24b69 linux-3.0/arch/arm/configs/g3evm_defconfig -4c84281d220f98e7d1fbdbb9d9a6dbf0 linux-3.0/arch/arm/configs/fortunet_defconfig -43e0052616f496b78ca1379ff17c827c linux-3.0/arch/arm/configs/footbridge_defconfig -ecf18d10c0a74efb255e758883bdc500 linux-3.0/arch/arm/configs/ezx_defconfig -a1e78c88f8c86fb1be010284d59649d6 linux-3.0/arch/arm/configs/exynos4_defconfig -ebe71f7bb0f597295efc753e700702e5 linux-3.0/arch/arm/configs/eseries_pxa_defconfig -837575f081eaa7973ce7a0cc4bb1d4e1 linux-3.0/arch/arm/configs/ep93xx_defconfig -0e832874ce76d4538f6e7fd77c738074 linux-3.0/arch/arm/configs/em_x270_defconfig -27bfab6545a74fef24aa12bb65c1294b linux-3.0/arch/arm/configs/edb7211_defconfig -78c8c17b13127fb5e486c45a4d648b10 linux-3.0/arch/arm/configs/ebsa110_defconfig -3079175dbd6a385e8314a2751d78f13e linux-3.0/arch/arm/configs/dove_defconfig -50ddaa0b74a6b98e7125a25aebbd4c82 linux-3.0/arch/arm/configs/davinci_all_defconfig -9f1feb4222ce18e05350f53e9a06a6f7 linux-3.0/arch/arm/configs/da8xx_omapl_defconfig -6dc86820f7f71450377ef56ab5730874 linux-3.0/arch/arm/configs/cpu9g20_defconfig -a61c229281618af94d5be1d1d61a9c5b linux-3.0/arch/arm/configs/cpu9260_defconfig -dc1a8e8ee163ea246f516171bd24d697 linux-3.0/arch/arm/configs/corgi_defconfig -bc0cf02394eed991ca8be1492e69a320 linux-3.0/arch/arm/configs/collie_defconfig -f29294a548423004e0830715fe510188 linux-3.0/arch/arm/configs/colibri_pxa300_defconfig -e86a041a33b06f7a414f2ed926857a08 linux-3.0/arch/arm/configs/colibri_pxa270_defconfig -947f6318bd2e67f61b7f00e5b36da04b linux-3.0/arch/arm/configs/cns3420vb_defconfig -e8bee25ec4902b11c540fe8320b99241 linux-3.0/arch/arm/configs/cm_x300_defconfig -f369d67a90760e296f67d0440cb511ff linux-3.0/arch/arm/configs/cm_x2xx_defconfig -73e46747fc178d13341db0c86254b3b0 linux-3.0/arch/arm/configs/cerfcube_defconfig -5bb014d2e07d27dcf774618a8271d5ae linux-3.0/arch/arm/configs/cam60_defconfig -6fe504bc3cde1b14c3533b7ea4f1ca64 linux-3.0/arch/arm/configs/bcmring_defconfig -40f186d9ac0a97fff90f001da52efc6d linux-3.0/arch/arm/configs/badge4_defconfig -240b6441888722fc0ec1dd545e0420d0 linux-3.0/arch/arm/configs/at91x40_defconfig -c5c8cead7a2bee00ecc33e41525d8b4a linux-3.0/arch/arm/configs/at91sam9rlek_defconfig -759dff3c8963b268e36cba0d04611f36 linux-3.0/arch/arm/configs/at91sam9g20ek_defconfig -2c02e0a018392f86e78dce4cc681567b linux-3.0/arch/arm/configs/at91sam9263_defconfig -6199ebd0ab99c89a389ccd2c770e860b linux-3.0/arch/arm/configs/at91sam9261_defconfig -8f57b48ff43f1e13d3fd94fc10516a2d linux-3.0/arch/arm/configs/at91sam9260ek_defconfig -98569bcfcf5f4dc2dccedee6d96b9d3e linux-3.0/arch/arm/configs/at91rm9200_defconfig -3dd845bea50c7eca68264dbfa933ecaa linux-3.0/arch/arm/configs/at91cap9adk_defconfig -26ba6934f2279e23b5160a5bb3b1fba9 linux-3.0/arch/arm/configs/assabet_defconfig -3d2eed323a9f280816854b09bd3af126 linux-3.0/arch/arm/configs/ap4evb_defconfig -a9986aa002248950483b53af46011fa5 linux-3.0/arch/arm/configs/am200epdkit_defconfig -184526e997d22a0c83031324073a663e linux-3.0/arch/arm/configs/ag5evm_defconfig -8e1c84bfeec35d20a67ef9661c1f3c69 linux-3.0/arch/arm/configs/afeb9260_defconfig -49e6ec92fb5063aff4f8c96387c0bbb7 linux-3.0/arch/arm/configs/acs5k_tiny_defconfig -226deb0047d321bbec65107319265194 linux-3.0/arch/arm/configs/acs5k_defconfig -23baef8ca079b2bb464886d32b7c94d7 linux-3.0/arch/arm/common/vic.c -d948f93773feffc3ad132d566755efed linux-3.0/arch/arm/common/via82c505.c -0f94dcabed960aaea6c65bff6d8a2256 linux-3.0/arch/arm/common/uengine.c -2be08336672dbd73c38287a7ce335863 linux-3.0/arch/arm/common/timer-sp.c -e1c8f7798981dd1ae9585d73762249ea linux-3.0/arch/arm/common/time-acorn.c -2bb3bff921e8f1000e959a2082abbabb linux-3.0/arch/arm/common/sharpsl_param.c -d331d1c7b33a5e7a4e032e957cf68263 linux-3.0/arch/arm/common/scoop.c -68f03f67c4208c32cfb1be80c3a03d7f linux-3.0/arch/arm/common/sa1111.c -c59fee0c2262a0845de5f976e75c015a linux-3.0/arch/arm/common/pl330.c -35c6ae30323242061ce5174c72a24220 linux-3.0/arch/arm/common/locomo.c -169696746ccd22f46aa15849e31daf32 linux-3.0/arch/arm/common/it8152.c -6f9528cb3208a548e1b0c253803dacdc linux-3.0/arch/arm/common/icst.c -69097b8d2b556187ca7541b8e4eb8372 linux-3.0/arch/arm/common/gic.c -0a7f1606d9291008075dc9a3a47e0eb7 linux-3.0/arch/arm/common/dmabounce.c -88f43a7fc8d56f0b516f66e25128bb60 linux-3.0/arch/arm/common/Makefile -0bc569ebe574f32006b2196db35a0099 linux-3.0/arch/arm/common/Kconfig -f7ff3c56b0a3c8594784f140d979d1dc linux-3.0/arch/arm/boot/install.sh -06e3218ef90c708c6ca1080cc3e918c2 linux-3.0/arch/arm/boot/compressed/vmlinux.lds.in -f0073fc6bb339ae9ce34e3de61e58398 linux-3.0/arch/arm/boot/compressed/piggy.lzo.S -41f112466f388131778d3a6c73a03e66 linux-3.0/arch/arm/boot/compressed/piggy.lzma.S -e405c80836b567d170cdc0b91f7512a9 linux-3.0/arch/arm/boot/compressed/piggy.gzip.S -d9d9779a75343d5733ee013a6813df00 linux-3.0/arch/arm/boot/compressed/ofw-shark.c -0e92e38d7f9e645a8c3912fa186d3c87 linux-3.0/arch/arm/boot/compressed/mmcif-sh7372.c -a0df826dcfa37bff759fc4db9f87611a linux-3.0/arch/arm/boot/compressed/misc.c -e3bb2104856d481d0371c6ed8c820efa linux-3.0/arch/arm/boot/compressed/ll_char_wr.S -a226d9f490337bf8d9d67bd0d10fd77e linux-3.0/arch/arm/boot/compressed/head.S -21079323c016b724f7e7284fc9afd01b linux-3.0/arch/arm/boot/compressed/head-xscale.S -17f96a2d469e78a4e4fa445331c65b36 linux-3.0/arch/arm/boot/compressed/head-vt8500.S -95ad6900587abaf2d95433749d6d2c1c linux-3.0/arch/arm/boot/compressed/head-shmobile.S -0d8cca892751ab64c74de85e140407a5 linux-3.0/arch/arm/boot/compressed/head-sharpsl.S -4c66bc63d86dd11696df643fbedf933e linux-3.0/arch/arm/boot/compressed/head-shark.S -2ed3576f290e5c57ca6fa0e9f680fa56 linux-3.0/arch/arm/boot/compressed/head-sa1100.S -f45219ed9a916fbcd136af44a8b3eb03 linux-3.0/arch/arm/boot/compressed/decompress.c -4d4861d3640e5242db11c30728996d19 linux-3.0/arch/arm/boot/compressed/big-endian.S -b32f4f80c542f75718059bec12157c3a linux-3.0/arch/arm/boot/compressed/Makefile -723929a4f893de46e2716d5061ae0473 linux-3.0/arch/arm/boot/compressed/.gitignore -159326469fd4165d93b607b91e7aaec0 linux-3.0/arch/arm/boot/bootp/kernel.S -84b8509971a49e08f7c032143c94c531 linux-3.0/arch/arm/boot/bootp/initrd.S -9bc27cce89be2f11e23f3a69a345db9e linux-3.0/arch/arm/boot/bootp/init.S -3cdcc5b9fdb8c0348d1aa854be06e383 linux-3.0/arch/arm/boot/bootp/bootp.lds -b1f3434bf4fe37795c033b960286616d linux-3.0/arch/arm/boot/bootp/Makefile -ea67be56c233fc8b823e496429222bad linux-3.0/arch/arm/boot/Makefile -d8f9830c6fe15acb9e0bdb163b418709 linux-3.0/arch/arm/boot/.gitignore -478714720358c40f08524323562159d5 linux-3.0/arch/arm/Makefile -cb67a34b2c145307f23e7dc2f5b7a351 linux-3.0/arch/arm/Kconfig.debug -addbce6b8a417dbad9fbf905c299f408 linux-3.0/arch/arm/Kconfig-nommu -3147b126be1450ecf324edcd8cca2c98 linux-3.0/arch/arm/Kconfig -dd3bd5c45730dbcb2eca1ed7a539490a linux-3.0/arch/alpha/oprofile/op_model_ev67.c -dc521031402d8d6b04e758c0b4b594db linux-3.0/arch/alpha/oprofile/op_model_ev6.c -bd173c2902c9c08e3f03a46115997b40 linux-3.0/arch/alpha/oprofile/op_model_ev5.c -966d7b9b08e34c140f460c1987aa3cad linux-3.0/arch/alpha/oprofile/op_model_ev4.c -f7aab227185181620999bae402e26257 linux-3.0/arch/alpha/oprofile/op_impl.h -95b375f3f76b7459ca4e7092d49c07ca linux-3.0/arch/alpha/oprofile/common.c -8c05961ed68b56a7b58e818a4f58d434 linux-3.0/arch/alpha/oprofile/Makefile -3961cbca6f6ee60f722580e844e59e6a linux-3.0/arch/alpha/mm/numa.c -c99c8906cc52aada7f71bc9c45632f67 linux-3.0/arch/alpha/mm/init.c -f4105e3e248fa0e97729e52d92286f82 linux-3.0/arch/alpha/mm/fault.c -1f38dea5868909c5a8b9605845b7fa5b linux-3.0/arch/alpha/mm/extable.c -94fddfc6d82cd632cbd1647c988c8bcf linux-3.0/arch/alpha/mm/Makefile -66d56352294ad044b92f6891fdaafad5 linux-3.0/arch/alpha/math-emu/sfp-util.h -b5ce5437f168b0ace61b7c8c89abfe3e linux-3.0/arch/alpha/math-emu/qrnnd.S -1c5639d312c7b6ef488637be12c295e6 linux-3.0/arch/alpha/math-emu/math.c -6561becdb66aefcf01b1cbb8ad733664 linux-3.0/arch/alpha/math-emu/Makefile -908389508f91a74a9672eddc5ff5dffd linux-3.0/arch/alpha/lib/udelay.c -240fc60a5b54b98c103bc08c47a4819c linux-3.0/arch/alpha/lib/stxncpy.S -048adc9141b4aef394d8d32a0c425665 linux-3.0/arch/alpha/lib/stxcpy.S -32a35970acf1f64c1d683aa02ea683fe linux-3.0/arch/alpha/lib/strrchr.S -1f7e6d6b9fb3d513cb923622c0653c98 linux-3.0/arch/alpha/lib/strncpy_from_user.S -dab873c2fb54a5475feadb85f7e638d7 linux-3.0/arch/alpha/lib/strncpy.S -1554b85489d39f6eaad163ef54c5f347 linux-3.0/arch/alpha/lib/strncat.S -98a0b133f096d968e26ade32dce6803d linux-3.0/arch/alpha/lib/strlen_user.S -6143adb6da2c7f44689bdec094cbfac6 linux-3.0/arch/alpha/lib/strlen.S -5cd1b921739e2577c62c0ba2730ebf8c linux-3.0/arch/alpha/lib/strcpy.S -a9479e43d82aa72259baa0c8e26650f1 linux-3.0/arch/alpha/lib/strchr.S -dc4bc95e0edc23ce6a1c199b8350f4c8 linux-3.0/arch/alpha/lib/strcat.S -fc817f424185690948c2a2843bdc1cab linux-3.0/arch/alpha/lib/stacktrace.c -8fb8743e1f372754ff616854c6644d63 linux-3.0/arch/alpha/lib/srm_puts.c -f3383ba5f3aa6b0dea885274cec1e40f linux-3.0/arch/alpha/lib/srm_printk.c -edb50d19f93d94f2523fc90e3d00ce58 linux-3.0/arch/alpha/lib/memset.S -8496d115937c94739dae2e0d5279d691 linux-3.0/arch/alpha/lib/memmove.S -75805abee9020af7672dcaeb9936bb41 linux-3.0/arch/alpha/lib/memcpy.c -6744f8af4b5e5dd51a3f053cead51c67 linux-3.0/arch/alpha/lib/memchr.S -f5e07086cfa7cd3dd9f8d739684f25b7 linux-3.0/arch/alpha/lib/fpreg.c -62ac0504a0f9e26a85ec0cc8a0a2b205 linux-3.0/arch/alpha/lib/fls.c -63d923e67d65af46e89e12276fe3dff4 linux-3.0/arch/alpha/lib/ev67-strrchr.S -f88514d5bbf5e4e77d4895d61c51382d linux-3.0/arch/alpha/lib/ev67-strncat.S -a0b2f4282ce05e824d25ca8992485b4e linux-3.0/arch/alpha/lib/ev67-strlen_user.S -2f0dad9def2aa0b51d55985357909e92 linux-3.0/arch/alpha/lib/ev67-strlen.S -a8f8f322c3d84bc6f310d69a624ea00f linux-3.0/arch/alpha/lib/ev67-strchr.S -aa3459e9d619554d93aeb14152743888 linux-3.0/arch/alpha/lib/ev67-strcat.S -d6c2b9bf20c18472d0a80dfdb295b4f4 linux-3.0/arch/alpha/lib/ev6-stxncpy.S -c204430059a01fa653024ce3dec33188 linux-3.0/arch/alpha/lib/ev6-stxcpy.S -5995b55d319442390c84ad13ff1a24f8 linux-3.0/arch/alpha/lib/ev6-strncpy_from_user.S -15e231d522af1fc24d763bdad5b20560 linux-3.0/arch/alpha/lib/ev6-memset.S -0d8b2e307c63c44db4fef0471be3586a linux-3.0/arch/alpha/lib/ev6-memcpy.S -c102f30ab94cf4c4b53ed9752caf31be linux-3.0/arch/alpha/lib/ev6-memchr.S -12e673c4c22432842057fbba6ffc9845 linux-3.0/arch/alpha/lib/ev6-divide.S -9e3431840a2651e5cb603ca891bb718f linux-3.0/arch/alpha/lib/ev6-csum_ipv6_magic.S -e2c1ce0be835378acc3d812d36427abe linux-3.0/arch/alpha/lib/ev6-copy_user.S -45f2fecc49cb608ccc323d91e6f9566b linux-3.0/arch/alpha/lib/ev6-copy_page.S -550c689f5a0bf4b237246e59d171b828 linux-3.0/arch/alpha/lib/ev6-clear_user.S -db3daa229276715060637645df67f26a linux-3.0/arch/alpha/lib/ev6-clear_page.S -d9f93b5a62ecc2ab2546683fa8b7b297 linux-3.0/arch/alpha/lib/divide.S -d85d9ff5405a056ee6dca44570e12a5e linux-3.0/arch/alpha/lib/dec_and_lock.c -1b1253ad6f798ff8f9af6cd3fe89dd50 linux-3.0/arch/alpha/lib/dbg_stackkill.S -9f523d9ccf4fc7aecc621bc9999fe616 linux-3.0/arch/alpha/lib/dbg_stackcheck.S -03aebfe06df493cf0a3171b74e68ddda linux-3.0/arch/alpha/lib/dbg_current.S -219eda162d879ea6320c63fb4403931c linux-3.0/arch/alpha/lib/csum_partial_copy.c -08b677f63f175c869ca73a5e72ce7c5c linux-3.0/arch/alpha/lib/csum_ipv6_magic.S -910ede93ba2df2218460c9257dcd6e6a linux-3.0/arch/alpha/lib/copy_user.S -bee6609bd515627b64cdb7b42f7e7193 linux-3.0/arch/alpha/lib/copy_page.S -f0a8ffce4c224b9b18a9b35a41a0ccef linux-3.0/arch/alpha/lib/clear_user.S -d44ceef98205cd0a6460d3a3f39d1f95 linux-3.0/arch/alpha/lib/clear_page.S -517041dc8dd77b179d2aa59fbbbb1646 linux-3.0/arch/alpha/lib/checksum.c -03932889d3c70755947d589c2636165b linux-3.0/arch/alpha/lib/callback_srm.S -f56b0dc2ba1f58080b59108c315abb59 linux-3.0/arch/alpha/lib/Makefile -ef376b82bfceeda201d0df0fa844796d linux-3.0/arch/alpha/kernel/vmlinux.lds.S -c3f7ed3235fec6b3a1518572e4718768 linux-3.0/arch/alpha/kernel/traps.c -88df73c668e34a7fe865c5e37ead3b34 linux-3.0/arch/alpha/kernel/time.c -8ef84754c4e97e457fd3a6149e682abf linux-3.0/arch/alpha/kernel/systbls.S -7bc0d5933f7ec3bb76d1ee30ff7b711f linux-3.0/arch/alpha/kernel/sys_wildfire.c -f95f4830f831aa6b3aa569a77af61673 linux-3.0/arch/alpha/kernel/sys_titan.c -afd7c11b7f1d344b8e40fe63d84d6805 linux-3.0/arch/alpha/kernel/sys_takara.c -5cc310688fec8c13b2ec81541975e9e9 linux-3.0/arch/alpha/kernel/sys_sx164.c -9f2b1ab64e7ce81ee8ccde03a61b5279 linux-3.0/arch/alpha/kernel/sys_sio.c -c93ddfbd250972fa8547f300f148a0de linux-3.0/arch/alpha/kernel/sys_sable.c -687c0f06a7ad0b3ade8085348c6121aa linux-3.0/arch/alpha/kernel/sys_rx164.c -5ead3a107d93eb56c53b468d07e855eb linux-3.0/arch/alpha/kernel/sys_ruffian.c -a7f573262263e987c7e93d25c3a1e8e1 linux-3.0/arch/alpha/kernel/sys_rawhide.c -3eb09a2ff0e2ab43a0ff71f9cede748f linux-3.0/arch/alpha/kernel/sys_noritake.c -8a68caaf5fa6e5c3c71ed5b9122285c5 linux-3.0/arch/alpha/kernel/sys_nautilus.c -61f8e17bd9aa0ecdfd8bd77477888cf5 linux-3.0/arch/alpha/kernel/sys_mikasa.c -d2c33d58cd246218fd606099a2b97520 linux-3.0/arch/alpha/kernel/sys_miata.c -a3c24ef13c8e57dfc13d91b641ae0e1e linux-3.0/arch/alpha/kernel/sys_marvel.c -cd8a8b71c5c445adab16a69f81ad27f1 linux-3.0/arch/alpha/kernel/sys_jensen.c -af1ca3d32d14de107f8f6805c087cd80 linux-3.0/arch/alpha/kernel/sys_eiger.c -77fcdaeeb4e664c44af3bc1e599e8802 linux-3.0/arch/alpha/kernel/sys_eb64p.c -7564a66a0411446ffe0b8c8f951a44f0 linux-3.0/arch/alpha/kernel/sys_dp264.c -53c237b0032b5cf888caf0c36bb7afc7 linux-3.0/arch/alpha/kernel/sys_cabriolet.c -320ecdd57d447492a9e6beb83c7cbc17 linux-3.0/arch/alpha/kernel/sys_alcor.c -3df303ac149118e053a23fbcd223cb3b linux-3.0/arch/alpha/kernel/srmcons.c -2f66b5f24e124d5216ced2dac72ffe27 linux-3.0/arch/alpha/kernel/srm_env.c -5aab4215652e60f4c75113a2435e20a6 linux-3.0/arch/alpha/kernel/smp.c -f430d4118de635f3218eb69286cd792b linux-3.0/arch/alpha/kernel/smc37c93x.c -73effa67c0a9ff96588cf11ed922efd4 linux-3.0/arch/alpha/kernel/smc37c669.c -d59b0b585a36785507a0ede53fd21b46 linux-3.0/arch/alpha/kernel/signal.c -3f37acace7b363df755b76a7fc720e74 linux-3.0/arch/alpha/kernel/setup.c -334849876fce73e0dae2e436170ec493 linux-3.0/arch/alpha/kernel/ptrace.c -56e3874fe61af22e73a029590a6ada2d linux-3.0/arch/alpha/kernel/proto.h -b2e8ceada59ba42f742d202de4f33a00 linux-3.0/arch/alpha/kernel/process.c -ff9974f26c1ea695ac21e0eb6742fd2c linux-3.0/arch/alpha/kernel/perf_event.c -9484884efd5d831c5479d99d410be221 linux-3.0/arch/alpha/kernel/pci_iommu.c -4a3ed1a153090bff9144a2401cf2b1a8 linux-3.0/arch/alpha/kernel/pci_impl.h -293c988e6ad746f727b7ec0f795b9318 linux-3.0/arch/alpha/kernel/pci.c -e1bf83e9cd855e02f4ab456de41598eb linux-3.0/arch/alpha/kernel/pci-sysfs.c -75c86e0e9a37645fdf18339aea18d765 linux-3.0/arch/alpha/kernel/pci-noop.c -32dcd4f4156145596e9edbf366186e29 linux-3.0/arch/alpha/kernel/pc873xx.h -294919ac5e8ff97971d0565d12922ddc linux-3.0/arch/alpha/kernel/pc873xx.c -6e21700a56983e0cc0ffc9b2562b5968 linux-3.0/arch/alpha/kernel/osf_sys.c -d6a3b0dc82700d0426325913f6d25d11 linux-3.0/arch/alpha/kernel/module.c -e101e3c8967795c2b1bac5c74f6768ca linux-3.0/arch/alpha/kernel/machvec_impl.h -3c045f5203aa98fba52ca861f8442af1 linux-3.0/arch/alpha/kernel/irq_srm.c -038cfadda7f5a7a7da329e6829bdbf89 linux-3.0/arch/alpha/kernel/irq_pyxis.c -9a132703b81363662108cde98aa1425e linux-3.0/arch/alpha/kernel/irq_impl.h -942c35914a668e20f4605c4804766ed7 linux-3.0/arch/alpha/kernel/irq_i8259.c -45ed33d39458f44ddbe8633936d723f2 linux-3.0/arch/alpha/kernel/irq_alpha.c -1a5d69b414a49b133ff6ad8f4ff4e2d9 linux-3.0/arch/alpha/kernel/irq.c -03a7ec975df3f5bf41dc2b8670ce2461 linux-3.0/arch/alpha/kernel/io.c -fa32fa8876530215a76acc74c4fc87ce linux-3.0/arch/alpha/kernel/init_task.c -f5e48546f271a0f114c0ab08164ccc1a linux-3.0/arch/alpha/kernel/head.S -0cd79ce35db4af4caad9a9bc4671cba0 linux-3.0/arch/alpha/kernel/gct.c -cb113d2cc1d96680734937e3a3bcea67 linux-3.0/arch/alpha/kernel/es1888.c -2a54d399b21c5cd68d0f17830f278dba linux-3.0/arch/alpha/kernel/err_titan.c -0612931b859d3383bfe39ead5b328249 linux-3.0/arch/alpha/kernel/err_marvel.c -999d2e8bfe2ff50c20222185b25e8b50 linux-3.0/arch/alpha/kernel/err_impl.h -afef1ec38a597c21e499dfab23c51226 linux-3.0/arch/alpha/kernel/err_ev7.c -21bfbac06b0fd509403b4cc9225e1d51 linux-3.0/arch/alpha/kernel/err_ev6.c -d06a4896c6eac6ad299c7528a66bb57d linux-3.0/arch/alpha/kernel/err_common.c -b39a5909c795a7e5a73ad6086c6f58ca linux-3.0/arch/alpha/kernel/entry.S -9f1dbbc34ca507dd80f3b25031772b3d linux-3.0/arch/alpha/kernel/core_wildfire.c -de01f8cfdef8afe2ee06a6295d6b762b linux-3.0/arch/alpha/kernel/core_tsunami.c -1d1dca9bef143b72625dcb61daef28aa linux-3.0/arch/alpha/kernel/core_titan.c -24a2141a7b870dead69dc9516fa494ff linux-3.0/arch/alpha/kernel/core_t2.c -76ba4da52559889190ee19e614cad9dd linux-3.0/arch/alpha/kernel/core_polaris.c -2a333a7e08ab31c2b7fb130254cf57c7 linux-3.0/arch/alpha/kernel/core_mcpcia.c -a34ab3c8b5965e21b7c8e54f2fce3ad3 linux-3.0/arch/alpha/kernel/core_marvel.c -831f4c86b0f92c1c02c9292bb1e845e3 linux-3.0/arch/alpha/kernel/core_lca.c -2758c9eb00d2609f73175a3504fb62be linux-3.0/arch/alpha/kernel/core_irongate.c -eab1527c706e8c0471e4093bddb6e509 linux-3.0/arch/alpha/kernel/core_cia.c -03b3c0b7071ad24084e8249d85e5339d linux-3.0/arch/alpha/kernel/core_apecs.c -94b1c7184aa4fe57e8cd3b4a8f9e37bc linux-3.0/arch/alpha/kernel/console.c -d9edf1e2c7695bfe29b37755f2f1cefb linux-3.0/arch/alpha/kernel/binfmt_loader.c -7a26e5b5997fdb528f0902ed2a338972 linux-3.0/arch/alpha/kernel/asm-offsets.c -06bb32822c523ef2c6614db06ef179f7 linux-3.0/arch/alpha/kernel/alpha_ksyms.c -371f401fe41590eae1156801bbbdc73d linux-3.0/arch/alpha/kernel/Makefile -66dd2a524c010b67509256c4a5494c6c linux-3.0/arch/alpha/kernel/.gitignore -3d82762d1429e4e2c7f6ba2309f12676 linux-3.0/arch/alpha/include/asm/xor.h -01f37cab54ced57bdcc278dcbd8a2466 linux-3.0/arch/alpha/include/asm/xchg.h -cc7bab55c66df67169e64dcf4b9e80e0 linux-3.0/arch/alpha/include/asm/wrperfmon.h -149b9791ba8c343096176084125b0315 linux-3.0/arch/alpha/include/asm/vga.h -55173435a2f44d80eb4047723a089841 linux-3.0/arch/alpha/include/asm/user.h -b28a4defbdd51b5092ef65f3a9a71d31 linux-3.0/arch/alpha/include/asm/unistd.h -fa9a35a7929562d1718d8777f0fa77cb linux-3.0/arch/alpha/include/asm/unaligned.h -243a370c7a592930313461856c475a6a linux-3.0/arch/alpha/include/asm/ucontext.h -5ab51629d8d28daa5186b4e97d2f5c21 linux-3.0/arch/alpha/include/asm/uaccess.h -76aaba704360172590a04ba2079dcaf4 linux-3.0/arch/alpha/include/asm/types.h -7cdeab394ceafc21e0ed157a5613fd05 linux-3.0/arch/alpha/include/asm/topology.h -c3e763c6fdf8047b47d9965742af6ae3 linux-3.0/arch/alpha/include/asm/tlbflush.h -a9b8180d33084f61b9b239e8acaa48c5 linux-3.0/arch/alpha/include/asm/tlb.h -d65333822c223015281bc63ca599d915 linux-3.0/arch/alpha/include/asm/timex.h -2bb2da2c3dbeffa7094134c8729eff26 linux-3.0/arch/alpha/include/asm/thread_info.h -8e108864ef432682ce7ac8f742b4d2b1 linux-3.0/arch/alpha/include/asm/termios.h -a339fb508db4e234693cbe234deded7a linux-3.0/arch/alpha/include/asm/termbits.h -59e3f1e761e1dd53af1f0f9b7daa84fb linux-3.0/arch/alpha/include/asm/system.h -a0c9547638852521008a8c6ee291c64b linux-3.0/arch/alpha/include/asm/sysinfo.h -26f1f62d3631d4fccf9550ee45b8b18c linux-3.0/arch/alpha/include/asm/swab.h -acc5417006e8861d0de7ee57b71624bc linux-3.0/arch/alpha/include/asm/string.h -20074f1abb8b8e8b26cc2751e7a8decb linux-3.0/arch/alpha/include/asm/statfs.h -b06cf63816b4085a1a11f46429024325 linux-3.0/arch/alpha/include/asm/stat.h -835f408cb64db759089a6bd454901375 linux-3.0/arch/alpha/include/asm/spinlock_types.h -0ddb68a9b98a7cb2f5c98f9f5822cff8 linux-3.0/arch/alpha/include/asm/spinlock.h -b46dc17ad997cfd00216b10d8b1b9481 linux-3.0/arch/alpha/include/asm/sockios.h -84edfe57c4c0ebbe3b113bb271a66e7b linux-3.0/arch/alpha/include/asm/socket.h -f738ed75a24bcac208c323a52dba1d2a linux-3.0/arch/alpha/include/asm/smp.h -2a657e0ba35b70e9d260351f4ba0a6eb linux-3.0/arch/alpha/include/asm/signal.h -7f1a1bbb82392efc6353be47b86a7f0e linux-3.0/arch/alpha/include/asm/siginfo.h -d8a8c7ec15d14acd73e3a97ac10f7496 linux-3.0/arch/alpha/include/asm/sigcontext.h -861fd6169a317b1304a8da41eae110d0 linux-3.0/arch/alpha/include/asm/shmparam.h -78808ed8897fd4c792129c5adf062a98 linux-3.0/arch/alpha/include/asm/shmbuf.h -8f463a547674f443239d173eb58ff805 linux-3.0/arch/alpha/include/asm/sfp-machine.h -d537d7df3135570c2ecb132cd9942c08 linux-3.0/arch/alpha/include/asm/setup.h -488ae5479e39573be464ded3c6381e6d linux-3.0/arch/alpha/include/asm/serial.h -334ffa70b3b679f9c80f32923ce84d99 linux-3.0/arch/alpha/include/asm/sembuf.h -46ac9ebf2a3ec574bf811303371b8de3 linux-3.0/arch/alpha/include/asm/segment.h -f061e237e764ed912d11f092e6422f13 linux-3.0/arch/alpha/include/asm/sections.h -a24631e30c2090b0a1a17a7cc96044e4 linux-3.0/arch/alpha/include/asm/scatterlist.h -20b02cb7e3cec3a7b4151f1af2bc717a linux-3.0/arch/alpha/include/asm/rwsem.h -aefa37dbb6ab73dc0a9464bdb870961e linux-3.0/arch/alpha/include/asm/rtc.h -8fdf19441ca4cff4004f0ccd12682039 linux-3.0/arch/alpha/include/asm/resource.h -4b02902fa2305d9601273bfbf9ca9701 linux-3.0/arch/alpha/include/asm/regdef.h -de97d8771e53464d979dbc405ff0933d linux-3.0/arch/alpha/include/asm/reg.h -46273e6e2aa00b9dcddb71b713121ded linux-3.0/arch/alpha/include/asm/ptrace.h -af22d3f77e82939a5bf02dfe1b71be7e linux-3.0/arch/alpha/include/asm/processor.h -fdb042a0112f2ead7fce4e4b94f7de2e linux-3.0/arch/alpha/include/asm/posix_types.h -9e32f7b088ada2f6cb725a9ddfaaef1a linux-3.0/arch/alpha/include/asm/poll.h -b92dab2cc5693d21dd3de48e7487694f linux-3.0/arch/alpha/include/asm/pgtable.h -8df9952871e59f253be9c193691e79d8 linux-3.0/arch/alpha/include/asm/pgalloc.h -3e9b094c6d647ec0e1b91c1ec205028f linux-3.0/arch/alpha/include/asm/perf_event.h -c879b4cdc6a2ed590942cec87fd18245 linux-3.0/arch/alpha/include/asm/percpu.h -00db9b900095537d897bde3336f1ca1d linux-3.0/arch/alpha/include/asm/pci.h -25a2f59d79d6e74fd6880d641a4271b0 linux-3.0/arch/alpha/include/asm/parport.h -84b90e77cb5eaeb37570d0baeee5c750 linux-3.0/arch/alpha/include/asm/param.h -7105de5653b7df2f02057ab4b1c6bd89 linux-3.0/arch/alpha/include/asm/pal.h -5b6703bccb85e19fdb83a638fb05cc2c linux-3.0/arch/alpha/include/asm/page.h -327711a461a30ba31b918dc30a08ccae linux-3.0/arch/alpha/include/asm/mutex.h -249040e713565c447b3a9cbc70bc5b52 linux-3.0/arch/alpha/include/asm/msgbuf.h -20f7a5fb2038890392f036685a669c6f linux-3.0/arch/alpha/include/asm/module.h -6deee0de619c11eda67b750a228a2287 linux-3.0/arch/alpha/include/asm/mmzone.h -0908a57e9c6d3239f6d5500b8f4eaa30 linux-3.0/arch/alpha/include/asm/mmu_context.h -9c587b4d3e2bca72f9a3e66f279ba1d5 linux-3.0/arch/alpha/include/asm/mmu.h -61c0cdf914303592c4fa1ab682987134 linux-3.0/arch/alpha/include/asm/mman.h -8fd57e3ebfe6b50fb7b3287d0ffad3cb linux-3.0/arch/alpha/include/asm/mc146818rtc.h -37b0b2881d498570834a262e5e46f150 linux-3.0/arch/alpha/include/asm/machvec.h -adcbee6fd2a5c7ddfa50ede6de124430 linux-3.0/arch/alpha/include/asm/local64.h -e8388d6f92c350d937e4196ac027524c linux-3.0/arch/alpha/include/asm/local.h -3443b0ccb592b373fb6ef22d665f9836 linux-3.0/arch/alpha/include/asm/linkage.h -e15e1ec5aa7d890361e71541a57691b3 linux-3.0/arch/alpha/include/asm/kmap_types.h -bbae6086f2db934d8486658ee8735d27 linux-3.0/arch/alpha/include/asm/kdebug.h -e2483cf77782448722ffe8a1ff01723f linux-3.0/arch/alpha/include/asm/jensen.h -904fb9b2384563f37c018c7d90acc4b7 linux-3.0/arch/alpha/include/asm/irqflags.h -7155a0a310e456b7c8c8251b5cec9f44 linux-3.0/arch/alpha/include/asm/irq_regs.h -b30065bece771a3e68bdf9c221b7e90d linux-3.0/arch/alpha/include/asm/irq.h -da8bcb6affbf45ca05eee8dc4edcac63 linux-3.0/arch/alpha/include/asm/ipcbuf.h -48aee5f11ec154a68966d6d6850c5e3b linux-3.0/arch/alpha/include/asm/ioctls.h -ca6531c8fe03bc8ff219f0844655c97b linux-3.0/arch/alpha/include/asm/ioctl.h -dfa3487fb0ce24f275c60602aed18534 linux-3.0/arch/alpha/include/asm/io_trivial.h -b0e7ed3718048b7ca418d79a1b7f1ccb linux-3.0/arch/alpha/include/asm/io.h -a65757ee69249e6885194e2dc995f8b8 linux-3.0/arch/alpha/include/asm/hwrpb.h -134fff877775ee41ab80bd365b964588 linux-3.0/arch/alpha/include/asm/hw_irq.h -77c34e4f9a8704068ad78568c0adf47f linux-3.0/arch/alpha/include/asm/hardirq.h -fb4e4f15d43455ddc3db54b2080a1326 linux-3.0/arch/alpha/include/asm/gpio.h -5eead67da17128f592dc36f0658f2a30 linux-3.0/arch/alpha/include/asm/gentrap.h -aa1f7a984cd54319ddb3a2da0df07ecc linux-3.0/arch/alpha/include/asm/gct.h -db41f2668bbaeeacbda9c72d7a8f8562 linux-3.0/arch/alpha/include/asm/futex.h -6bc56500657f8c3b71b20af4c69e967f linux-3.0/arch/alpha/include/asm/ftrace.h -342691b1a436953c9e85db6ae72bb73a linux-3.0/arch/alpha/include/asm/fpu.h -6b62002879f6fb857ff9f576f807f5b6 linux-3.0/arch/alpha/include/asm/floppy.h -00c98d541bce57ee9b1dea9debb35afe linux-3.0/arch/alpha/include/asm/fcntl.h -a19ff7da70425e50f6f37b627643b9e8 linux-3.0/arch/alpha/include/asm/fb.h -7211ede8b5c71f084150e17cc023e867 linux-3.0/arch/alpha/include/asm/errno.h -2cc4172929c07fd7d54e55746ed4f06d linux-3.0/arch/alpha/include/asm/err_ev7.h -64ef4a31bb52bb50aca5ba047883ae87 linux-3.0/arch/alpha/include/asm/err_ev6.h -ccf23ce88824ce0d9bdbb1807fdab026 linux-3.0/arch/alpha/include/asm/err_common.h -1137556e2220cbe97936bf2f5985b77d linux-3.0/arch/alpha/include/asm/emergency-restart.h -bfa3a2f8676687f1a5d57367a7938fd2 linux-3.0/arch/alpha/include/asm/elf.h -3ac4747576f12122f070df71296d8444 linux-3.0/arch/alpha/include/asm/dma.h -83b3918b52e46316082289cae1be431d linux-3.0/arch/alpha/include/asm/dma-mapping.h -2b7d56e3cc8280ee43fa5a8cbe58f374 linux-3.0/arch/alpha/include/asm/div64.h -09622ca3dff72acc4ac038a6081398cb linux-3.0/arch/alpha/include/asm/device.h -ee83242027cc24241eaf636d8159d4c5 linux-3.0/arch/alpha/include/asm/delay.h -e8c7fdc695040bd51835bca24165d056 linux-3.0/arch/alpha/include/asm/current.h -9f933800a00333dc577111cf0d925a27 linux-3.0/arch/alpha/include/asm/cputime.h -8571c1c04407b92d8f9383a31c6f17ea linux-3.0/arch/alpha/include/asm/core_wildfire.h -377c93353113ea8915ee0a75067e836b linux-3.0/arch/alpha/include/asm/core_tsunami.h -ae98b6e486e91249887331ec02406377 linux-3.0/arch/alpha/include/asm/core_titan.h -3667b3501208ef71299873afd1602963 linux-3.0/arch/alpha/include/asm/core_t2.h -c5b1a837400907f8ace17fb35dd4a093 linux-3.0/arch/alpha/include/asm/core_polaris.h -562af5c95a54e2507a4e2839086424aa linux-3.0/arch/alpha/include/asm/core_mcpcia.h -0ce188ddc68b20d70a79380e149b859b linux-3.0/arch/alpha/include/asm/core_marvel.h -2d9202a44fcf506137d0286719d05816 linux-3.0/arch/alpha/include/asm/core_lca.h -2d1447f155f517e71f96dd04923f0756 linux-3.0/arch/alpha/include/asm/core_irongate.h -889e7476a447694b2c57efabfca826f6 linux-3.0/arch/alpha/include/asm/core_cia.h -b824f26c773f32848cd6285175de4721 linux-3.0/arch/alpha/include/asm/core_apecs.h -a0b93f494485b58ef7efae8c4ac14d8e linux-3.0/arch/alpha/include/asm/console.h -b14d94d5a8d97bee14323c81c5c19126 linux-3.0/arch/alpha/include/asm/compiler.h -c7773880d3d88bf188d42b2f2a9d60f9 linux-3.0/arch/alpha/include/asm/checksum.h -f90578cf3e6f8e3c4f8d7c2816423ce1 linux-3.0/arch/alpha/include/asm/cacheflush.h -904f6b0246b45bd6266959b470a991de linux-3.0/arch/alpha/include/asm/cache.h -509d83a821c51fef1461cff4a82c5a7d linux-3.0/arch/alpha/include/asm/byteorder.h -9be35cc965b2bc3cb9f91999c0b1522f linux-3.0/arch/alpha/include/asm/bugs.h -8c7992ebdf9fa47603cdc6b956fd4ca6 linux-3.0/arch/alpha/include/asm/bug.h -5ebe130f8f3555dcf8fbea3eee04561e linux-3.0/arch/alpha/include/asm/bitsperlong.h -072f8f8ed7e8d8a5c49d573149fda7c3 linux-3.0/arch/alpha/include/asm/bitops.h -f37fb7e2e9b1c403bb867144ef6912eb linux-3.0/arch/alpha/include/asm/barrier.h -33a398a04e6491199ced60aabf09abef linux-3.0/arch/alpha/include/asm/auxvec.h -546770b0b6fd27e1b05cac5ad983846e linux-3.0/arch/alpha/include/asm/atomic.h -0d86e9169c772f0b194db9ce2eba4ba1 linux-3.0/arch/alpha/include/asm/asm-offsets.h -4655c02cb0c44d0768a938d7bfbc4126 linux-3.0/arch/alpha/include/asm/agp_backend.h -aab6616d98849f0856cce10bd26cc7a0 linux-3.0/arch/alpha/include/asm/agp.h -f1d3d716d81c71f073095ad8a9b6926f linux-3.0/arch/alpha/include/asm/a.out.h -748f10b0fe078e2b48f8badb145c6790 linux-3.0/arch/alpha/include/asm/a.out-core.h -d919ebbbd046d1a65e66fa3562249169 linux-3.0/arch/alpha/include/asm/Kbuild -d6354aff4d0e67f93b2441b779f747cf linux-3.0/arch/alpha/include/asm/8253pit.h -93734acce9868ae1aa6ec8944c76d3f2 linux-3.0/arch/alpha/defconfig -9eefb3cd42ef1bed3dda7a1dd10c59b3 linux-3.0/arch/alpha/boot/tools/objstrip.c -22bebe6a51d55d2b480243c371182025 linux-3.0/arch/alpha/boot/tools/mkbb.c -59f75f90ff5e70ca2607af2461e46b37 linux-3.0/arch/alpha/boot/misc.c -180e4b9c36553ae6efda33d35dfff45b linux-3.0/arch/alpha/boot/main.c -27d6ddd400ae89090a15217a553db85a linux-3.0/arch/alpha/boot/head.S -e507dbe010fca99f9024707525d5a566 linux-3.0/arch/alpha/boot/bootpz.c -85483bc1c3b11c281b7557f0979baebe linux-3.0/arch/alpha/boot/bootp.c -20af7a5b3a14adb1b11e2c841af00e6e linux-3.0/arch/alpha/boot/bootloader.lds -43162aeb69ed1c1f4df7de0499e70e6e linux-3.0/arch/alpha/boot/Makefile -560f0097fa779f91ef1ecc97379a84db linux-3.0/arch/alpha/Makefile -d95f38e1df0bca6a0e56e2d7728543e9 linux-3.0/arch/alpha/Kconfig.debug -8d3dda7a5133a36be468a0287114de9e linux-3.0/arch/alpha/Kconfig -45397ab09bba73408499323686ca3d73 linux-3.0/arch/Kconfig -4d5f5f5eaeacc397b3709b105de2977e linux-3.0/arch/.gitignore -a784b2d7f2a182cdf141da7352c73472 linux-3.0/REPORTING-BUGS -fd587f0bee9166e00254a53cc711af44 linux-3.0/README -d0ef2af760e355e5835989ff3c7a3085 linux-3.0/Makefile -99cc9f0dfd86e63231b94edd43a43e02 linux-3.0/MAINTAINERS -2370b55729048373f46fb6367e2e3dba linux-3.0/Kconfig -aca1835dcd07b652d213d5091791b763 linux-3.0/Kbuild -5afccd5699a870edbaeeb4842171e637 linux-3.0/Documentation/zorro.txt -45be408d3c9c2e0087391ea301d5e93d linux-3.0/Documentation/zh_CN/volatile-considered-harmful.txt -0a893619f452a0092d97e97cac22b0a2 linux-3.0/Documentation/zh_CN/stable_kernel_rules.txt -7f2606b697c18608e90beec6542f8d7c linux-3.0/Documentation/zh_CN/stable_api_nonsense.txt -479e690ecc6cd6f76ea7c30711f9c523 linux-3.0/Documentation/zh_CN/sparse.txt -0e6e101bf138475f0ad601e0cd8abe42 linux-3.0/Documentation/zh_CN/oops-tracing.txt -dcbd4efabf9960943213553ad80605fb linux-3.0/Documentation/zh_CN/magic-number.txt -48f7104538d3a6fa9f61a72cd3497f22 linux-3.0/Documentation/zh_CN/email-clients.txt -debe76c9451c75106ccf54d7e7bfde91 linux-3.0/Documentation/zh_CN/SubmittingPatches -b6f33c150f1bb808e8cb649d575ceb6a linux-3.0/Documentation/zh_CN/SubmittingDrivers -501cdc8051ceb11ba4c45ad374850224 linux-3.0/Documentation/zh_CN/SubmitChecklist -b25691c57c396ac600b4c83cc74ed39f linux-3.0/Documentation/zh_CN/SecurityBugs -8fba7140ce01c3188482317de63cb5e6 linux-3.0/Documentation/zh_CN/HOWTO -407cfb595cd5d308684159b35be3e6b5 linux-3.0/Documentation/zh_CN/CodingStyle -4c3cdd3cc9795936719f90c5998e444d linux-3.0/Documentation/xz.txt -84d0b24984191e5b790802ad80f957ee linux-3.0/Documentation/x86/zero-page.txt -287028ec841eb6563583d493b0041c82 linux-3.0/Documentation/x86/x86_64/uefi.txt -c5d9ab97467eefceb0054c25097c7022 linux-3.0/Documentation/x86/x86_64/mm.txt -f48281df39b108ff3682af92f2675000 linux-3.0/Documentation/x86/x86_64/machinecheck -0d88d1d03ee1eebb6392d22dbd5a25d9 linux-3.0/Documentation/x86/x86_64/kernel-stacks -ff40a41942a74d1095287f916b56e38b linux-3.0/Documentation/x86/x86_64/fake-numa-for-cpusets -00e25441b82bc10535670610d99ab1ef linux-3.0/Documentation/x86/x86_64/cpu-hotplug-spec -ce5c727612092f11ee98eeff20278999 linux-3.0/Documentation/x86/x86_64/boot-options.txt -fecbee7f3f8c4c7d64cce97d5cf12f32 linux-3.0/Documentation/x86/x86_64/00-INDEX -3175f70749b31dd19f5ad70e54ca6770 linux-3.0/Documentation/x86/usb-legacy-support.txt -49d39b36b40e1628f71de277bb856468 linux-3.0/Documentation/x86/pat.txt -ac946900de7e04dec49324a81ca11f5f linux-3.0/Documentation/x86/mtrr.txt -14e3cb2c15eae161cf0c22059f881b6d linux-3.0/Documentation/x86/i386/IO-APIC.txt -fc699871c2e638f0f6f0b18672de23f2 linux-3.0/Documentation/x86/exception-tables.txt -831a55c41a970b6271858648b671c547 linux-3.0/Documentation/x86/earlyprintk.txt -2b286a8992f6b0b8f9a553fc0d553a5b linux-3.0/Documentation/x86/boot.txt -d07013893610fc0ce880af04a5a19fd0 linux-3.0/Documentation/x86/00-INDEX -6fadee709d10fbbdc4ed587020dbb9b7 linux-3.0/Documentation/workqueue.txt -f5b5b4165f8035599d99242388b5c028 linux-3.0/Documentation/wimax/README.wimax -a21f3876f3a9344c55605d470a9b562e linux-3.0/Documentation/wimax/README.i2400m -e723f02615edc6a74e6d2103244c2b10 linux-3.0/Documentation/watchdog/wdt.txt -0de1d0b2ced8800dd17777c16c604aad linux-3.0/Documentation/watchdog/watchdog-parameters.txt -ff7fb781cc45cf922f51b937fc2d417a linux-3.0/Documentation/watchdog/watchdog-api.txt -f18126de83378e873a0ea305b8cc1b35 linux-3.0/Documentation/watchdog/src/watchdog-test.c -edd680602165559eabe6e791f37230e6 linux-3.0/Documentation/watchdog/src/watchdog-simple.c -312cae8e5b338a92f2fae2ff5aef6906 linux-3.0/Documentation/watchdog/src/Makefile -a0b10a29700f706fa5316d037fbdbee5 linux-3.0/Documentation/watchdog/src/.gitignore -510d8ed2cc600f164e1e0a6151beacb2 linux-3.0/Documentation/watchdog/pcwd-watchdog.txt -3d7abf502b25a6ee7964a5eb98f7d9a6 linux-3.0/Documentation/watchdog/hpwdt.txt -a1a94ec70384282a045ed91a5199c551 linux-3.0/Documentation/watchdog/00-INDEX -ba0431d56c0846c35192a7abaeebd435 linux-3.0/Documentation/w1/w1.netlink -6becc02012200975958d74d2862420e2 linux-3.0/Documentation/w1/w1.generic -d24d773f9614f2f1226ab241bb8817cd linux-3.0/Documentation/w1/slaves/w1_therm -6dd114fda95aeea0dc8433f6905f70fa linux-3.0/Documentation/w1/slaves/w1_ds2423 -3208aba2be7716dda8afd9395d958a94 linux-3.0/Documentation/w1/slaves/00-INDEX -0f4fe514922e2343fd493897f283a5e7 linux-3.0/Documentation/w1/masters/w1-gpio -d269a5da2de32021faa584653d45be22 linux-3.0/Documentation/w1/masters/omap-hdq -cf8e5f323a73ac505b915746864b6ae9 linux-3.0/Documentation/w1/masters/mxc-w1 -7c6d1fe8bb69a4ce443d4740b3c96e6b linux-3.0/Documentation/w1/masters/ds2490 -45b7152f62619cd26de324667c521162 linux-3.0/Documentation/w1/masters/ds2482 -d09304c3f062c8cc241b8d08383c1395 linux-3.0/Documentation/w1/masters/00-INDEX -e1c9baeaddfb8251ae8b79e1b949e707 linux-3.0/Documentation/w1/00-INDEX -8983aa37ffb5d56400e7f54ca9aa88d6 linux-3.0/Documentation/volatile-considered-harmful.txt -7e36bf56ac1fa543f351ce733622ece2 linux-3.0/Documentation/vm/unevictable-lru.txt -0563999c9dd98b8708ce112c69e1ded8 linux-3.0/Documentation/vm/transhuge.txt -8172ee2f92b3d43ba6c9f6ffe100654b linux-3.0/Documentation/vm/slub.txt -172c9b092c67d680fe8e62bf83f73f50 linux-3.0/Documentation/vm/pagemap.txt -4b42a7e17c61b56b5a72df10d9918dcc linux-3.0/Documentation/vm/page_migration -bcd43b9f2babab167bbc88abee19ef3a linux-3.0/Documentation/vm/page-types.c -856d2edc08aaa72adcc2900e4c584d80 linux-3.0/Documentation/vm/overcommit-accounting -09dad777dfcaf2b0c2ce7a08e556e119 linux-3.0/Documentation/vm/numa_memory_policy.txt -45dd47150abfec567f244edd62848125 linux-3.0/Documentation/vm/numa -29504b3c6d389d00b8e5be84a08a2f96 linux-3.0/Documentation/vm/map_hugetlb.c -ffb08e68da1d11b5cf5552f25f81f4d7 linux-3.0/Documentation/vm/locking -ad6d42e6a60d97394d6a0938d0022921 linux-3.0/Documentation/vm/ksm.txt -f4d4533cf8bc20304842c22f273dd8c0 linux-3.0/Documentation/vm/hwpoison.txt -f11e936b261e6c88f00f9e02e678833a linux-3.0/Documentation/vm/hugetlbpage.txt -aaca8e490f93c1c9b3f88723fd642515 linux-3.0/Documentation/vm/hugepage-shm.c -21f94156b22953d6f732e9baa28f21f2 linux-3.0/Documentation/vm/hugepage-mmap.c -6b48040c8508f1cefe560220cb4a29e7 linux-3.0/Documentation/vm/highmem.txt -3d4c8ba9c7abebff3449211a8f578d8a linux-3.0/Documentation/vm/cleancache.txt -877d4027fc351d45890c4cb9fe4622df linux-3.0/Documentation/vm/balance -315db1839d168a77236e1b1c5e3073ae linux-3.0/Documentation/vm/active_mm.txt -0f8249f9f0827ee3204b2c32c7d0f079 linux-3.0/Documentation/vm/Makefile -ce333c3c467312c8970b53f52c9ad344 linux-3.0/Documentation/vm/00-INDEX -979dc8ef8c692cb4c6eaaa84360e3931 linux-3.0/Documentation/vm/.gitignore -66578060f1a2a2a4e0e0a642b640b5a5 linux-3.0/Documentation/virtual/uml/UserModeLinux-HOWTO.txt -6ba030c0051e2549e0b71d660ba2c3c4 linux-3.0/Documentation/virtual/lguest/lguest.txt -f2619f9678f78018db205dece5d1f0f6 linux-3.0/Documentation/virtual/lguest/lguest.c -7bfede45cabb831865a90406661eab79 linux-3.0/Documentation/virtual/lguest/extract -5cf527d69b7ba69977eeb83cf93e6c7e linux-3.0/Documentation/virtual/lguest/Makefile -4596800f690e75e40eca192d04a38184 linux-3.0/Documentation/virtual/lguest/.gitignore -c7019c272235c47c0545bcd104c77e8a linux-3.0/Documentation/virtual/kvm/timekeeping.txt -e76c8fa6fd54f33d5c19ce5ab4a14239 linux-3.0/Documentation/virtual/kvm/review-checklist.txt -343b323dca70598766aec922638da45a linux-3.0/Documentation/virtual/kvm/ppc-pv.txt -14941feea7e5dbb976ef690b02134493 linux-3.0/Documentation/virtual/kvm/msr.txt -8b0de6458115b4107b0b71aa31506e11 linux-3.0/Documentation/virtual/kvm/mmu.txt -97e0fd9aea1b4e3255cd9682089a59dd linux-3.0/Documentation/virtual/kvm/locking.txt -cb7245394f6c23e1c03554b5405210b6 linux-3.0/Documentation/virtual/kvm/cpuid.txt -7c744f924703747688fd0c386ad676f3 linux-3.0/Documentation/virtual/kvm/api.txt -51b943b26fadcc75465137c1920cae08 linux-3.0/Documentation/virtual/00-INDEX -42dffd6446bbbc76790748973e91b8d4 linux-3.0/Documentation/video4linux/zr364xx.txt -b230daf62dc2e645ef0c3807e14024d5 linux-3.0/Documentation/video4linux/zc0301.txt -8debbe9b27fb37ead2278c5379cbfc55 linux-3.0/Documentation/video4linux/w9968cf.txt -ff29a1ec1550ed6e055a15d871c843ca linux-3.0/Documentation/video4linux/w9966.txt -0709d864423f0ed838b63bff8007837d linux-3.0/Documentation/video4linux/videobuf -900e1b0b7d754d7ef553fc15d7222cff linux-3.0/Documentation/video4linux/v4l2-framework.txt -52c801cd2514e70bc2c55a600a36940e linux-3.0/Documentation/video4linux/v4l2-controls.txt -4dc6bae2964260370ca5543a3a11610f linux-3.0/Documentation/video4linux/uvcvideo.txt -630e3546f47c5e3ee31a5a5ce8477731 linux-3.0/Documentation/video4linux/stv680.txt -51b686d69307b88b6ee86b126bdfebac linux-3.0/Documentation/video4linux/soc-camera.txt -648cd02ffd7a1831b887898d5175cb20 linux-3.0/Documentation/video4linux/sn9c102.txt -4bac37ad7f416598deebe07e58d2c5b3 linux-3.0/Documentation/video4linux/si4713.txt -b51a381a35aebe84a7bc9fc200ac290d linux-3.0/Documentation/video4linux/si470x.txt -a78fac7503532d26cd3f1b74e80dc630 linux-3.0/Documentation/video4linux/sh_mobile_ceu_camera.txt -84543e0677490e0bd94941f233aa99d4 linux-3.0/Documentation/video4linux/se401.txt -5b2a1f0021868bab26e6c75ceaa0481e linux-3.0/Documentation/video4linux/radiotrack.txt -2bdad11a8d166cae65e9f942c62807c3 linux-3.0/Documentation/video4linux/pxa_camera.txt -466de445865e9eee6daa725302fb9560 linux-3.0/Documentation/video4linux/ov511.txt -095737d719c86afa8e87c4af77d52039 linux-3.0/Documentation/video4linux/omap3isp.txt -471be716675bf89858b671bb850dcdf1 linux-3.0/Documentation/video4linux/not-in-cx2388x-datasheet.txt -30b12f65cc98e04906b8e83a5046f8c0 linux-3.0/Documentation/video4linux/meye.txt -f6437bd7c235af23ece3575c57de7fcc linux-3.0/Documentation/video4linux/m5602.txt -b38d7c9920c221f85356d48fb0cf8bf0 linux-3.0/Documentation/video4linux/lifeview.txt -608b16ff821ed1379db06318563df69d linux-3.0/Documentation/video4linux/ibmcam.txt -8225c9944d2041f120da6ad84d6f70a2 linux-3.0/Documentation/video4linux/hauppauge-wintv-cx88-ir.txt -0e50f970dde34feefbb010b0e73f2a89 linux-3.0/Documentation/video4linux/gspca.txt -0a2ebfb762bfd27c6c924e7c3f6a0ce3 linux-3.0/Documentation/video4linux/extract_xc3028.pl -b2949a906895634c8194f1ae6d0ec8e7 linux-3.0/Documentation/video4linux/et61x251.txt -33dac64c8b84ce7a40a14541da33dbd4 linux-3.0/Documentation/video4linux/cx88/hauppauge-wintv-cx88-ir.txt -2795cb3b2ab587f04347b3ee6b78a756 linux-3.0/Documentation/video4linux/cx2341x/fw-upload.txt -dbfc31206d4872dea5b74235f876388a linux-3.0/Documentation/video4linux/cx2341x/fw-osd-api.txt -2c743af00b04885a97ec99af8dc97011 linux-3.0/Documentation/video4linux/cx2341x/fw-memory.txt -d47e0f0d9d33762b0e85d7a712f7f3bd linux-3.0/Documentation/video4linux/cx2341x/fw-encoder-api.txt -30b4a3332196d3ea173124ebe5523227 linux-3.0/Documentation/video4linux/cx2341x/fw-dma.txt -05eaf4958c6cc940c1b27a2c64170b87 linux-3.0/Documentation/video4linux/cx2341x/fw-decoder-regs.txt -c7ca4ff2d7b4fec71fdc770f69a625a3 linux-3.0/Documentation/video4linux/cx2341x/fw-decoder-api.txt -ce72f51a6a423b7a9f7031310ec2f051 linux-3.0/Documentation/video4linux/cx2341x/fw-calling.txt -0911a02b2490a7d17d04a1692461a22d linux-3.0/Documentation/video4linux/cx2341x/README.vbi -fb7eed7a0949cd0ddaf8df3f4eee60b3 linux-3.0/Documentation/video4linux/cx2341x/README.hm12 -54232b3319f928eb79bb50d2ba912479 linux-3.0/Documentation/video4linux/cx18.txt -d7bb8b133263d706232ff1732318f5c8 linux-3.0/Documentation/video4linux/cpia2_overview.txt -925e144b371cfd3b8a643c7b87404867 linux-3.0/Documentation/video4linux/cafe_ccic -b2330544665b1f4dde619324cecfb917 linux-3.0/Documentation/video4linux/bttv/Tuners -bd2512fac689c0023927240ef0ce66ab linux-3.0/Documentation/video4linux/bttv/THANKS -ce8147bd4332fd007dbafd271128378f linux-3.0/Documentation/video4linux/bttv/Specs -44d899aa963f1d065359edd0b09f1923 linux-3.0/Documentation/video4linux/bttv/Sound-FAQ -c75d33344115e8f73ab55ad2b66887b4 linux-3.0/Documentation/video4linux/bttv/README.quirks -e50d75c3bc15579465725f859a29f9d6 linux-3.0/Documentation/video4linux/bttv/README.freeze -d501af8ba79cec5a835d479b92d85256 linux-3.0/Documentation/video4linux/bttv/README.WINVIEW -9f087d76da5e84ee3d013df898b1b986 linux-3.0/Documentation/video4linux/bttv/README -cb1a9c2ac365949f6265e6eb7fea6bcd linux-3.0/Documentation/video4linux/bttv/PROBLEMS -4670768f6001f17b9039b6046874b1b2 linux-3.0/Documentation/video4linux/bttv/Modules.conf -d4978989ce5dfbf1c3ca1ca4fa57d461 linux-3.0/Documentation/video4linux/bttv/Modprobe.conf -e6cfb2a0d81fd322010732b6e08cc786 linux-3.0/Documentation/video4linux/bttv/MAKEDEV -e1947defca3494377a40147b32674168 linux-3.0/Documentation/video4linux/bttv/Insmod-options -85571567aa2cd9c862efbef118d58765 linux-3.0/Documentation/video4linux/bttv/ICs -56eccf79ebbb339283bd01b69c969598 linux-3.0/Documentation/video4linux/bttv/Cards -929587b49719dd920fc8ea127e4f03d7 linux-3.0/Documentation/video4linux/bttv/CONTRIBUTORS -d1b249390cfdc49e985b4f3b30675188 linux-3.0/Documentation/video4linux/Zoran -51e23700adbd61a938ff61992b786782 linux-3.0/Documentation/video4linux/README.tlg2300 -1ad7f628b875b81f7ee33a8c1bbd779a linux-3.0/Documentation/video4linux/README.saa7134 -fe75344ccff87ff792b9f099ad3b473c linux-3.0/Documentation/video4linux/README.pvrusb2 -fab7f0fa882c672edee3f9a70676089b linux-3.0/Documentation/video4linux/README.ivtv -655efab3139a7e6790a6e03649607488 linux-3.0/Documentation/video4linux/README.ir -7810891c02a0809da907890e12dfa758 linux-3.0/Documentation/video4linux/README.cx88 -1e678646251d3bdab82245190907851f linux-3.0/Documentation/video4linux/README.cpia2 -988b155d9dab3477fa261bce257c20c7 linux-3.0/Documentation/video4linux/CQcam.txt -845ce716381ec78b6c47174c427a93fe linux-3.0/Documentation/video4linux/CARDLIST.usbvision -d7779446db455c9c94aa2e24ff477fea linux-3.0/Documentation/video4linux/CARDLIST.tuner -5f98568e8a7aac8e5c00a2ee13c9db3c linux-3.0/Documentation/video4linux/CARDLIST.saa7164 -b9ba87847b474f3bb4330b88fb010a23 linux-3.0/Documentation/video4linux/CARDLIST.saa7134 -aae2c84e82c776bc36e7de5a75b9ad66 linux-3.0/Documentation/video4linux/CARDLIST.ivtv -c4afc3dbf69d57a02997467c14dee62b linux-3.0/Documentation/video4linux/CARDLIST.em28xx -25ce83239aafa0d358dc64c04c283316 linux-3.0/Documentation/video4linux/CARDLIST.cx88 -45e1c6cc586e1d165076d7a56e50cb92 linux-3.0/Documentation/video4linux/CARDLIST.cx23885 -d840ea7de1ecc7456c465a9f6fadd2c2 linux-3.0/Documentation/video4linux/CARDLIST.bttv -34d411d6539cc4d4e8761372b86e706c linux-3.0/Documentation/video4linux/CARDLIST.au0828 -cc4a8f277e4818e336325ab6788d910e linux-3.0/Documentation/video4linux/API.html -08fc97bcb14837e972949d1be58515a5 linux-3.0/Documentation/video4linux/.gitignore -60ab68e5be73008948e8f1426db0941b linux-3.0/Documentation/video-output.txt -e3ca3bcc09ee08fba6eaa1528a2f7b12 linux-3.0/Documentation/vgaarbiter.txt -eb7fdc85522d5635ab7f3c29b0c6001c linux-3.0/Documentation/usb/wusb-cbaf -f138e393428a961eda5ee4a50be002a6 linux-3.0/Documentation/usb/usbmon.txt -7aade6746687873760996c4a054a6316 linux-3.0/Documentation/usb/usb-serial.txt -4c512ddc1b84af31fe4427a17d704d36 linux-3.0/Documentation/usb/usb-help.txt -261f643f807c863842ad746117e2e411 linux-3.0/Documentation/usb/rio.txt -6794954e5ec4d623ad5453c4bb6c053f linux-3.0/Documentation/usb/proc_usb_info.txt -947d0abac4645de2330b1d3344fcdaa9 linux-3.0/Documentation/usb/power-management.txt -395c921ed518dcaa53ce43acfae57186 linux-3.0/Documentation/usb/persist.txt -25e4c4fe0a816b63ecce2a185289bbc1 linux-3.0/Documentation/usb/ohci.txt -2f8372a9112cbda6aea1949dcc1272b6 linux-3.0/Documentation/usb/mtouchusb.txt -88e51e4d8eebff12e77dfbf0040604f4 linux-3.0/Documentation/usb/misc_usbsevseg.txt -b0095aa8dcfbd4afbcf119a2a78bcde5 linux-3.0/Documentation/usb/linux.inf -b368430102a86525b0df0d4d2fdda8cf linux-3.0/Documentation/usb/linux-cdc-acm.inf -dae0dd24c35ffa6e037c2d4e6f7ceecb linux-3.0/Documentation/usb/iuu_phoenix.txt -4b0ee5881d0d05f229cbeb2a846a6bd6 linux-3.0/Documentation/usb/hotplug.txt -c7276ca83842b9c827ab807503bf37ef linux-3.0/Documentation/usb/gadget_serial.txt -55bfcece1947f2db43cc3c5472bde2b1 linux-3.0/Documentation/usb/gadget_printer.txt -15c14f4b3f9dcd225e6f3cc1c7f1d437 linux-3.0/Documentation/usb/gadget_multi.txt -f3e3efafff0c5c339a0167c71a9705bf linux-3.0/Documentation/usb/gadget_hid.txt -a4698585bf07787f404bea150bf61c7e linux-3.0/Documentation/usb/error-codes.txt -7724d4f87392cab7162987f29dbd13d8 linux-3.0/Documentation/usb/ehci.txt -eafaf7a8bef37c5ba601aa4b0a528d61 linux-3.0/Documentation/usb/dma.txt -0c11e651ec47203a3fc6ada7fbdc0735 linux-3.0/Documentation/usb/callbacks.txt -afe7b283ebfe1175c8f1414d5337845f linux-3.0/Documentation/usb/bulk-streams.txt -a655e9d7bec49a6e8357f00756f61621 linux-3.0/Documentation/usb/authorization.txt -d561a7a527703a784df528bed026217d linux-3.0/Documentation/usb/anchors.txt -f621a1b796b62c62907fc42918aee02f linux-3.0/Documentation/usb/acm.txt -fca45413abfd204f0f3cb4aa3497b625 linux-3.0/Documentation/usb/WUSB-Design-overview.txt -35facb2ff044b9194f4e28c9d87fea0c linux-3.0/Documentation/usb/URB.txt -87d3d190c847aa4f3935c3eaaf610fd6 linux-3.0/Documentation/usb/CREDITS -a3ca54a1d655c512654510e56b4c8e53 linux-3.0/Documentation/unshare.txt -fd815b4b43d0cf5a85ca44d0db76dde7 linux-3.0/Documentation/unicode.txt -a5a387aeec918a0f528f85bcb76bc8c5 linux-3.0/Documentation/unaligned-memory-access.txt -0b642ab6d38101ea1a9d9d714fe21f27 linux-3.0/Documentation/trace/tracepoints.txt -b0ac0d0f759936f2c863ab776c0473d1 linux-3.0/Documentation/trace/tracepoint-analysis.txt -ac4ad4e3fc545b039deb3f5ef943ea26 linux-3.0/Documentation/trace/ring-buffer-design.txt -b88ea3b9fd063b20adf9bf510e0bd369 linux-3.0/Documentation/trace/postprocess/trace-vmscan-postprocess.pl -0d1290f598348f74d94baab23068e97d linux-3.0/Documentation/trace/postprocess/trace-pagealloc-postprocess.pl -3e46d3d041cec601cdbeb994728a4d88 linux-3.0/Documentation/trace/mmiotrace.txt -a7503be7339e031a40cfddcff64313fc linux-3.0/Documentation/trace/kprobetrace.txt -6d63525faff14221a19d86656046577f linux-3.0/Documentation/trace/function-graph-fold.vim -6ef05aa37ab770cd91659e982ba94ff6 linux-3.0/Documentation/trace/ftrace.txt -76b9ab43fb9388c5bc6d0a2970cb3586 linux-3.0/Documentation/trace/ftrace-design.txt -3146c48034f746e269df2d7713eec20b linux-3.0/Documentation/trace/events.txt -adcb4c98b6edea110cd972e688d4d5ff linux-3.0/Documentation/trace/events-power.txt -42d97c6c41a44ccdbdfe6fb96acf1e1a linux-3.0/Documentation/trace/events-kmem.txt -b88d6b69476d7d5f47dab25b265c047d linux-3.0/Documentation/timers/timers-howto.txt -c3031b69ad9d2664f6b224616ff26a37 linux-3.0/Documentation/timers/timer_stats.txt -e5586ec9f9cb31c6133ea6ebcaba750c linux-3.0/Documentation/timers/hrtimers.txt -bbcdf809003c38cb388ac2baa81bfeac linux-3.0/Documentation/timers/hpet_example.c -247871c428fe1b648be2f547db40f6eb linux-3.0/Documentation/timers/hpet.txt -c22b0d6ee15e2e6a0ba4540d6e6118c3 linux-3.0/Documentation/timers/highres.txt -d0e5139580ba81d7d11ef169c8b38cf4 linux-3.0/Documentation/timers/Makefile -6c17aeb7165efa86724eb5a3d13d8997 linux-3.0/Documentation/timers/00-INDEX -4a95a0417876be15e28d0ffc7c5e565f linux-3.0/Documentation/thermal/sysfs-api.txt -df004014cb5dc642845e157853404ab2 linux-3.0/Documentation/telephony/ixj.txt -cd1b51d26dcd4eda8cf87fe53c4245c2 linux-3.0/Documentation/telephony/00-INDEX -abbf50d4c055a79c6cac3b4ba1784104 linux-3.0/Documentation/target/tcm_mod_builder.txt -602a7048c25d97db123561f552fcc91d linux-3.0/Documentation/target/tcm_mod_builder.py -b3b2e497666271389da9c5d72bf5171e linux-3.0/Documentation/sysrq.txt -84cfa60b3ba436be5acd54034bc15c84 linux-3.0/Documentation/sysfs-rules.txt -df185359034d2dd1897f3e7d624eca0a linux-3.0/Documentation/sysctl/vm.txt -cba7dc58c78b52bf91b02e5dfc072202 linux-3.0/Documentation/sysctl/sunrpc.txt -329f83f616823c02f069eef2c2d24e84 linux-3.0/Documentation/sysctl/net.txt -7979f33ef78ab172e151b9c62cd0f0b8 linux-3.0/Documentation/sysctl/kernel.txt -4989e2091436d1d6439636d119b6192b linux-3.0/Documentation/sysctl/fs.txt -93c128b2ef0b5b10ea25f646bc8edecb linux-3.0/Documentation/sysctl/abi.txt -8483deb16f159d1d0367963dc6bb31f0 linux-3.0/Documentation/sysctl/README -9263e12117d48d72973ffb1c2d37f355 linux-3.0/Documentation/sysctl/00-INDEX -ffc4306708801c3489dc575998ecca43 linux-3.0/Documentation/svga.txt -3668bfa2519fcbe2b295c929e13982b7 linux-3.0/Documentation/stable_kernel_rules.txt -ca2acd6fd94048b5b03b213922d962b5 linux-3.0/Documentation/stable_api_nonsense.txt -d903caeac016182fd7bb349af658bb1a linux-3.0/Documentation/spinlocks.txt -5d1188f6d90e425ad7557cd14d35dfc9 linux-3.0/Documentation/spi/spidev_test.c -10018e4a8518e6ed2ea5dca742efbc8b linux-3.0/Documentation/spi/spidev_fdx.c -e3ca5fd8ca007c3935373ed159c26c3a linux-3.0/Documentation/spi/spidev -a4fe30eaaff342e5403d5731888300f1 linux-3.0/Documentation/spi/spi-summary -4fb1d2ca9a44b086302e735fcef9e357 linux-3.0/Documentation/spi/spi-lm70llp -acfb20dc16f72638aa4fd8f368a74e98 linux-3.0/Documentation/spi/pxa2xx -053859a9bb81ea4abfb1db82a86c9dd0 linux-3.0/Documentation/spi/ep93xx_spi -3ef825da35f6becd5dbae1fba51f7a39 linux-3.0/Documentation/spi/butterfly -1db913dadb2e1331a24b84f2a3a315b2 linux-3.0/Documentation/spi/Makefile -3b53365a221d0991ac05f0fae80c6465 linux-3.0/Documentation/spi/.gitignore -8bc3d0ada8ca01475d69431cd9cd4ec0 linux-3.0/Documentation/sparse.txt -0d675847d11eca8c030816be6d710aad linux-3.0/Documentation/sparc/README-2.5 -1f65d24b71d8a003ef66cb952eeea78e linux-3.0/Documentation/sound/oss/vwsnd -2a827b5b37fd4e151fc9349a69bc2fef linux-3.0/Documentation/sound/oss/ultrasound -62d4e4e31f36fbd2df6c8f8bc7c21dcf linux-3.0/Documentation/sound/oss/oss-parameters.txt -57b0658492bce58fa8c9f9ac9f5510f1 linux-3.0/Documentation/sound/oss/mwave -84031ef3f24a2dcf2f0ffbe29a1c3d2d linux-3.0/Documentation/sound/oss/btaudio -53023a90398d0d847e1bfd0d553270fc linux-3.0/Documentation/sound/oss/WaveArtist -0953c2a92edcf815766749a286b6330e linux-3.0/Documentation/sound/oss/VIBRA16 -4b6af9c8f7945cceeb5075ae32dab5fe linux-3.0/Documentation/sound/oss/Tropez+ -b8ca28b0efa9aff14e8a6d1166d8e7bf linux-3.0/Documentation/sound/oss/Soundblaster -2049c149fa2f0b647eeedc3e3eea1f3e linux-3.0/Documentation/sound/oss/SoundPro -e58a6e48a79683a361040a329e7836fe linux-3.0/Documentation/sound/oss/README.ymfsb -915ca94a24235509fb8656ab7ba3f6ae linux-3.0/Documentation/sound/oss/README.modules -c33490d41b31b4377718bd6093a12dd3 linux-3.0/Documentation/sound/oss/README.OSS -598332dbeaf3de5e1cb4a222bc240608 linux-3.0/Documentation/sound/oss/PSS-updates -19c8945594c241613089fe37124d02b7 linux-3.0/Documentation/sound/oss/PSS -4dd5fe02293d423780a57e944044ca11 linux-3.0/Documentation/sound/oss/PAS16 -9b67d4966a0a13c66216fb4d20a9b503 linux-3.0/Documentation/sound/oss/Opti -8a19abf2d27e1913166ab371f2466f0f linux-3.0/Documentation/sound/oss/OPL3 -e22fe4120248af00d7691349a6a6bfb2 linux-3.0/Documentation/sound/oss/MultiSound -6338c86443452cef46046476ad93fde8 linux-3.0/Documentation/sound/oss/Introduction -bcc5d3404b3d98d5aab5534519be8289 linux-3.0/Documentation/sound/oss/ESS1868 -350e3b80d54e0607f4f94a30ef72cd15 linux-3.0/Documentation/sound/oss/ESS -44938a06b9b85580d5f483b18f39d7a0 linux-3.0/Documentation/sound/oss/CMI8330 -1ed641de2491e5d029849df24b8062df linux-3.0/Documentation/sound/oss/AudioExcelDSP16 -496da82f0072b2d2aaedeac450ae9e5c linux-3.0/Documentation/sound/oss/ALS -abf9a8026cfb9e11af654f57d28bc179 linux-3.0/Documentation/sound/alsa/soc/pops_clicks.txt -f53b719955bad5d7221f1ac3bc7a01a9 linux-3.0/Documentation/sound/alsa/soc/platform.txt -1c84bfc40460e5f063ebb1813ceea998 linux-3.0/Documentation/sound/alsa/soc/overview.txt -a1739943450840b8a04f13ef6dda8786 linux-3.0/Documentation/sound/alsa/soc/machine.txt -958ce7aa2d150e13c81e9916c4339f1f linux-3.0/Documentation/sound/alsa/soc/jack.txt -02ade0d5fc25166ab98f75101b8c9b58 linux-3.0/Documentation/sound/alsa/soc/dapm.txt -d24e0434b3e2b4a13d89ddf4615fb2d8 linux-3.0/Documentation/sound/alsa/soc/codec.txt -e0b25fe88f1e3aabde4c338587816ba6 linux-3.0/Documentation/sound/alsa/soc/clocking.txt -911cc4b3fdb6d91634f9d75980ce9c41 linux-3.0/Documentation/sound/alsa/soc/DAI.txt -e7e885a220452cf5bfe17d7b3ac28d3f linux-3.0/Documentation/sound/alsa/serial-u16550.txt -02b86f45839c4948202d9c6d940bc70b linux-3.0/Documentation/sound/alsa/seq_oss.html -9e532ded71217912cd2979075d83807b linux-3.0/Documentation/sound/alsa/powersave.txt -f96c576e2604148e6a964e2c0e71c8fb linux-3.0/Documentation/sound/alsa/hdspm.txt -4693cee67fce618504af2935295af7de linux-3.0/Documentation/sound/alsa/hda_codec.txt -c9ad9dd0e246c9bcacd515af3dffbf69 linux-3.0/Documentation/sound/alsa/emu10k1-jack.txt -6234b219a861304126fa6d21a61edca7 linux-3.0/Documentation/sound/alsa/alsa-parameters.txt -87e0bb0e26c3fb9d4e67cea24461422e linux-3.0/Documentation/sound/alsa/VIA82xx-mixer.txt -d2dd8fe3c5408931293b19a50a5888b8 linux-3.0/Documentation/sound/alsa/SB-Live-mixer.txt -b00705f4d85333f8f82420b64242a712 linux-3.0/Documentation/sound/alsa/README.maya44 -d1edd06ab2faa03d63c5fa529e09f4bc linux-3.0/Documentation/sound/alsa/Procfile.txt -fc4f6c56b281d816dfb18459abd6e3af linux-3.0/Documentation/sound/alsa/OSS-Emulation.txt -3894a8d2bcd7156b23dbecc30328ec31 linux-3.0/Documentation/sound/alsa/MIXART.txt -be6e459ce06f261143ea3b26846288ea linux-3.0/Documentation/sound/alsa/Joystick.txt -db51c78006fbf974788f6eeff5a9b005 linux-3.0/Documentation/sound/alsa/HD-Audio.txt -2b0e7f070a75f7b544171e49db598b21 linux-3.0/Documentation/sound/alsa/HD-Audio-Models.txt -c35c8e608c641854ebbc64250641e7f6 linux-3.0/Documentation/sound/alsa/ControlNames.txt -8326611dda12335d7f4766027b09fff2 linux-3.0/Documentation/sound/alsa/CMIPCI.txt -e7fa47a88383d36fe4b0dada27250133 linux-3.0/Documentation/sound/alsa/Bt87x.txt -3f0dc1e4d752305dfca5c24aae09a37b linux-3.0/Documentation/sound/alsa/Audiophile-Usb.txt -e649b5358cf324ec56441a3424e444fd linux-3.0/Documentation/sound/alsa/Audigy-mixer.txt -757ba8d8a34c28f344836d0f0ea6c807 linux-3.0/Documentation/sound/alsa/ALSA-Configuration.txt -39b5e2dc3a674e53786b3e27fe60a1a0 linux-3.0/Documentation/sh/register-banks.txt -b15bcefd615a931ffeaafd89bf202f5e linux-3.0/Documentation/sh/new-machine.txt -0bb26ebbfc96a898f54126d5762cd3de linux-3.0/Documentation/sgi-visws.txt -f4e0584fa5b55907435c3374c6ae6601 linux-3.0/Documentation/sgi-ioc4.txt -5fdc5c2a90acf02426bb8d46ea5d3a87 linux-3.0/Documentation/serial/tty.txt -ea3062e994e54bf709f57f2706655d9b linux-3.0/Documentation/serial/sx.txt -f440c4bb589c7944189b338617434add linux-3.0/Documentation/serial/stallion.txt -d607f714656ce0a808b374ce6839cdb4 linux-3.0/Documentation/serial/specialix.txt -a2692acd48dbeef37afcc1ac40cc1a93 linux-3.0/Documentation/serial/serial-rs485.txt -c9faaaa0a4ee9440123acaf273f85ff5 linux-3.0/Documentation/serial/rocket.txt -2446c2aba10015f12df94bc837729e76 linux-3.0/Documentation/serial/riscom8.txt -f986efdf12c01d97978d286604ec33dc linux-3.0/Documentation/serial/n_gsm.txt -11cbdf26a234ddb47197c418c7e362b4 linux-3.0/Documentation/serial/moxa-smartio -9aa8780e000d10470b72e7a1e8ba5495 linux-3.0/Documentation/serial/driver -c24361f03f2d9c76f7ac7d316e5e7210 linux-3.0/Documentation/serial/digiepca.txt -b4f4f8d22f6a37325b57b493175ab264 linux-3.0/Documentation/serial/computone.txt -3579120f8ed5f9595d304e71ace2605d linux-3.0/Documentation/serial/README.cycladesZ -e32af2407d4894f10ea49109a8535981 linux-3.0/Documentation/serial/00-INDEX -814e90de90e893f56eb12cc536dc7d42 linux-3.0/Documentation/serial-console.txt -cf9211c94fbda7a533f8905e158240a4 linux-3.0/Documentation/security/tomoyo.txt -2eb3e08a94ea6d0219fdb61af6969915 linux-3.0/Documentation/security/keys.txt -62eb6ed98da7c59b1303eb109533a735 linux-3.0/Documentation/security/keys-trusted-encrypted.txt -6c7e1903d18afafb2ad68c05b08567eb linux-3.0/Documentation/security/keys-request-key.txt -52de45ad1b669b122dbcd80e1b1ad68a linux-3.0/Documentation/security/credentials.txt -f791cb2ca86e0a1a26f3e00f53c26ce6 linux-3.0/Documentation/security/apparmor.txt -ec0b0e4c5abc8b87d84bb09cba26936d linux-3.0/Documentation/security/Smack.txt -4a4f598ff478c4c9575d9e4575167ba8 linux-3.0/Documentation/security/SELinux.txt -2894ca12356edb3eb1561906bd64d67c linux-3.0/Documentation/security/00-INDEX -e9d98e6e2601b5f10679e5f5f9940a3f linux-3.0/Documentation/scsi/tmscsim.txt -3800fa24cfd2907dff8626260a565ce1 linux-3.0/Documentation/scsi/sym53c8xx_2.txt -f29b0580fb8e61925b0c797cf0e1206f linux-3.0/Documentation/scsi/sym53c500_cs.txt -90ce509a35fe22f88940a18702a62a31 linux-3.0/Documentation/scsi/st.txt -8bf1967ff9ec64d941bbf51e23dcaa9b linux-3.0/Documentation/scsi/scsi_mid_low_api.txt -b8ac1fa1ec06ba29b665a7ad0273a367 linux-3.0/Documentation/scsi/scsi_fc_transport.txt -865a0ff1989a59f73240bb8e2d52771b linux-3.0/Documentation/scsi/scsi_eh.txt -7a8bd7d9d926377b6fbd9a7114be136d linux-3.0/Documentation/scsi/scsi.txt -5ea70b40b8abf0c4338b5bf6dc6e5af8 linux-3.0/Documentation/scsi/scsi-parameters.txt -f64cf91194bc5aa53a83d144a8df08b5 linux-3.0/Documentation/scsi/scsi-generic.txt -f3d93baaa263135d04b2451fcd74e00b linux-3.0/Documentation/scsi/scsi-changer.txt -2aa07cf9e685f8551afed2e660a1ca67 linux-3.0/Documentation/scsi/qlogicfas.txt -84fb4b2aaecf5b9548a5a0ea8456db31 linux-3.0/Documentation/scsi/ppa.txt -4a62fd2381540401152edeace34ed316 linux-3.0/Documentation/scsi/osst.txt -b153d8f519816e3bd7ecd63dc5175576 linux-3.0/Documentation/scsi/osd.txt -25cfc6708d8a4c55fac3d824a1f574b1 linux-3.0/Documentation/scsi/ncr53c8xx.txt -9b157a8465a8d6e8e5cec54406b4b593 linux-3.0/Documentation/scsi/megaraid.txt -0d9a1857dc6b3944312ce2e130b581cb linux-3.0/Documentation/scsi/lpfc.txt -86182b4233a485097af82ac3626beaad linux-3.0/Documentation/scsi/link_power_management_policy.txt -43ca05e76770a8304ed1efc1c840a71d linux-3.0/Documentation/scsi/libsas.txt -b676ef8bb62eaaaa5fb9c4c5e52a8749 linux-3.0/Documentation/scsi/in2000.txt -e99c413901f84e42dbc2ee7b73ae90cd linux-3.0/Documentation/scsi/ibmmca.txt -26e141fbcfbc95b8406eae0ee5d7c520 linux-3.0/Documentation/scsi/hptiop.txt -0323d12ffe913979e889c5a57129f4a4 linux-3.0/Documentation/scsi/hpsa.txt -df60ad49f08bd8e34dd0f79fcd8dce31 linux-3.0/Documentation/scsi/g_NCR5380.txt -edeeb1489a493278136283351d4c5c3b linux-3.0/Documentation/scsi/dtc3x80.txt -c7af71e5d43f0a25ea94e7ffcc8b4123 linux-3.0/Documentation/scsi/dpti.txt -1feacdabb47698296f05223d2ecca671 linux-3.0/Documentation/scsi/dc395x.txt -d873670ea207455d8898db6bcb4848b1 linux-3.0/Documentation/scsi/cxgb3i.txt -3097e79c7216836e5761c2956feef448 linux-3.0/Documentation/scsi/arcmsr_spec.txt -8ce8bca43a70173c7ddb08053288bae5 linux-3.0/Documentation/scsi/aic7xxx_old.txt -f0af10c9eafd60d637711bfc8bd0bcc6 linux-3.0/Documentation/scsi/aic7xxx.txt -4173d2379f792ebb05849c894e74fac5 linux-3.0/Documentation/scsi/aic79xx.txt -39d981496fba90e9164087e4653604ee linux-3.0/Documentation/scsi/aha152x.txt -df15df3daaf8373e3287087a236c5d9c linux-3.0/Documentation/scsi/advansys.txt -8a59ad704d606bf5d687188c78ead028 linux-3.0/Documentation/scsi/aacraid.txt -e792f3b83e5100b1aa78e7199feee389 linux-3.0/Documentation/scsi/NinjaSCSI.txt -690acb94c2adc6f1b0b651cfde988b51 linux-3.0/Documentation/scsi/Mylex.txt -7fc7bfaafd53b82eb4648649ca56a3dc linux-3.0/Documentation/scsi/LICENSE.qla2xxx -ef7704635ba02fb27f5e524565d54c10 linux-3.0/Documentation/scsi/LICENSE.FlashPoint -073a7b1a703948f149f8869257bf3215 linux-3.0/Documentation/scsi/FlashPoint.txt -c20a59b90d92fb25aed678ebd4078607 linux-3.0/Documentation/scsi/ChangeLog.sym53c8xx_2 -f64f7f3cd530adb77cc483019ae10b8d linux-3.0/Documentation/scsi/ChangeLog.sym53c8xx -dd086cfeac15ce2d0d862da758026ffe linux-3.0/Documentation/scsi/ChangeLog.ncr53c8xx -0325dccdf443d40ff4257ce946c3407c linux-3.0/Documentation/scsi/ChangeLog.megaraid_sas -9d852d08cde6908a60ee81b339f1e7b9 linux-3.0/Documentation/scsi/ChangeLog.megaraid -7822e0a96464e47a70f84bccc489b0be linux-3.0/Documentation/scsi/ChangeLog.lpfc -9a67989ca5f5dd31e0d13a0a83a05493 linux-3.0/Documentation/scsi/ChangeLog.ips -9f54f4be18caa7038c9996b290b959d3 linux-3.0/Documentation/scsi/ChangeLog.arcmsr -9f06262d4d97bd1af0a3ab48964a5a6d linux-3.0/Documentation/scsi/ChangeLog.1992-1997 -d529982eac31793d2d304f80a71c00f8 linux-3.0/Documentation/scsi/BusLogic.txt -97b8898010b41a77a5b326c7498a464c linux-3.0/Documentation/scsi/53c700.txt -744f908d48afb790f9fed2d4e3694197 linux-3.0/Documentation/scsi/00-INDEX -f4e5f463d444186e557cd6c19ace7565 linux-3.0/Documentation/scheduler/sched-stats.txt -30467cf5791f58e721e7cb3bfd3662c6 linux-3.0/Documentation/scheduler/sched-rt-group.txt -927e397054de1977cf4b2252b441c548 linux-3.0/Documentation/scheduler/sched-nice-design.txt -32cc48e759ebbb68128ee433c759cbc1 linux-3.0/Documentation/scheduler/sched-domains.txt -073f3cef62a9fd35bfc7e4ee4b02e3ce linux-3.0/Documentation/scheduler/sched-design-CFS.txt -b3a61361db1cdde15049a670c669af23 linux-3.0/Documentation/scheduler/sched-arch.txt -00aa37ae46740c4b5a37c63622c1a162 linux-3.0/Documentation/scheduler/00-INDEX -06af6bd77564c31f8a70adbf07e2773a linux-3.0/Documentation/s390/zfcpdump.txt -42fa9cdac5e173d9e0c3063ed5a28f07 linux-3.0/Documentation/s390/s390dbf.txt -d49349bb92e3faf4c0fee2eb84e91da5 linux-3.0/Documentation/s390/monreader.txt -8d877fed45c05436b5c1290a2316bde6 linux-3.0/Documentation/s390/kvm.txt -2b47e8e9ad2991674d565fb401a94b6a linux-3.0/Documentation/s390/driver-model.txt -6e875b246aa2137cf84ea0005b5edae0 linux-3.0/Documentation/s390/config3270.sh -acdd36d5c22ac509db133fec4788b624 linux-3.0/Documentation/s390/cds.txt -8ee3ac277476248f0ea6203cc97097ff linux-3.0/Documentation/s390/TAPE -277396a8765d2e926d27c0da4a7cbf79 linux-3.0/Documentation/s390/Debugging390.txt -380c7f863e8ea2098413875c881870fd linux-3.0/Documentation/s390/DASD -42fbf19b0832597b007255ca5a2a5bf1 linux-3.0/Documentation/s390/CommonIO -78a7a9299bee74939e56361d372a4dba linux-3.0/Documentation/s390/3270.txt -d85b24835e5a7d6a960a4dec88016b98 linux-3.0/Documentation/s390/3270.ChangeLog -28f8b0df5ca39c5310424aeb7846682d linux-3.0/Documentation/s390/00-INDEX -51577c35a6c713e85bc4325dde78f1f9 linux-3.0/Documentation/rtc.txt -b449bdf78dad3a5ff62eb7a0853c0c99 linux-3.0/Documentation/rt-mutex.txt -25703f95e001b8ab0a92ec7e22f85527 linux-3.0/Documentation/rt-mutex-design.txt -1ac8f369bc00680aa40e8dfd3bc766c3 linux-3.0/Documentation/robust-futexes.txt -32be0a8a71053b3258c8dc13c8e3f981 linux-3.0/Documentation/robust-futex-ABI.txt -3248fd134ac49678b779cf602cb072bc linux-3.0/Documentation/rfkill.txt -0122f1b1ba43c69f71053acff3191ff8 linux-3.0/Documentation/rbtree.txt -0098e7070021f0e313e9b7402f89c6d2 linux-3.0/Documentation/rapidio/sysfs.txt -70466af2ad21bdfedf035d697c83bfa4 linux-3.0/Documentation/rapidio/rapidio.txt -518e0c6b8a87bdb39396eaaa1543281e linux-3.0/Documentation/ptp/testptp.mk -148ef639fb085676945183e851bbaa1f linux-3.0/Documentation/ptp/testptp.c -ca4e66c48186bdd563150a7dd7b2400c linux-3.0/Documentation/ptp/ptp.txt -6a5057832a7276d798409c6e1977bee1 linux-3.0/Documentation/pti/pti_intel_mid.txt -1b079f5eac72227ecee86a7693ae8f69 linux-3.0/Documentation/prio_tree.txt -8eaefbea3500e15cc155045b3d3ef39c linux-3.0/Documentation/printk-formats.txt -5b7ed3fd44bb218e897492667b316a56 linux-3.0/Documentation/preempt-locking.txt -1bfe0c8cdb619b009e7142dcd30a590d linux-3.0/Documentation/prctl/disable-tsc-test.c -6ebe95499b4b843884153fbc4c4e97e4 linux-3.0/Documentation/prctl/disable-tsc-on-off-stress-test.c -e50f78cb6afab487e3e03e5d1793e4d0 linux-3.0/Documentation/prctl/disable-tsc-ctxt-sw-stress-test.c -71a0dafa27b53268e0f0bb611cc5ac37 linux-3.0/Documentation/pps/pps.txt -28a491381e6e5ed65a10e646d86dd3a7 linux-3.0/Documentation/powerpc/zImage_layout.txt -a428bdd0823771ac25750363c437a589 linux-3.0/Documentation/powerpc/sound.txt -d3047bd7c95aabf68228bb084ec20581 linux-3.0/Documentation/powerpc/qe_firmware.txt -ef2336ce1d73545a9786f47aec3a9cf5 linux-3.0/Documentation/powerpc/ptrace.txt -d2231474595b32635c57f08e49c44ba6 linux-3.0/Documentation/powerpc/phyp-assisted-dump.txt -9c2fa37f9260f13e068eba787ae33f43 linux-3.0/Documentation/powerpc/mpc52xx.txt -956164e35d3471228d39dbcab83d9e6e linux-3.0/Documentation/powerpc/kvm_440.txt -2c67e8c3a08bc36b31816c831fc706c5 linux-3.0/Documentation/powerpc/hvcs.txt -7911c02dbfdbffbe764c7ec36b8953fe linux-3.0/Documentation/powerpc/eeh-pci-error-recovery.txt -fdba4976a4c796b4af9fd7150774e885 linux-3.0/Documentation/powerpc/cpu_features.txt -46c9adc3352f9e3de2a1f159b09eaa58 linux-3.0/Documentation/powerpc/bootwrapper.txt -ba56b9541c7d1677f377b32c4168513e linux-3.0/Documentation/powerpc/00-INDEX -da74db5522ac5f825e56984567e794c6 linux-3.0/Documentation/power/video_extension.txt -d9b6b6d1afb3a082ea650c7c0eb157da linux-3.0/Documentation/power/video.txt -6ffdcf3b9d9e40631767473e9f5997ba linux-3.0/Documentation/power/userland-swsusp.txt -fc8c1d7f4a3c727b0346802c1e6643e4 linux-3.0/Documentation/power/tricks.txt -95b9e977077da5a761848a509d573562 linux-3.0/Documentation/power/swsusp.txt -ea23eb910ae6371745cbbae6a3bd3a63 linux-3.0/Documentation/power/swsusp-dmcrypt.txt -6004ba194b782b94df4fb74a8d2e536f linux-3.0/Documentation/power/swsusp-and-swap-files.txt -157a013b67e52828d00fe9e3bf9db1ca linux-3.0/Documentation/power/states.txt -b2f9f484f305092b698b3140b7fa007f linux-3.0/Documentation/power/s2ram.txt -a933c5b3be7f645a0abfa2585fb27d26 linux-3.0/Documentation/power/runtime_pm.txt -c552121fce8fe2fe80c99da15cc56260 linux-3.0/Documentation/power/regulator/regulator.txt -1e2b89e3957803f59b107ead9a2792ec linux-3.0/Documentation/power/regulator/overview.txt -1d8f8437932fe7f2351f3111f125bea1 linux-3.0/Documentation/power/regulator/machine.txt -6d0e8ce710472710222e9e6411f2961a linux-3.0/Documentation/power/regulator/design.txt -aa665c004f7756c16e05f36eab5285c9 linux-3.0/Documentation/power/regulator/consumer.txt -0e597a757075d9aac06102cfe8938671 linux-3.0/Documentation/power/power_supply_class.txt -e8d5a931cb76d6516e1fd62570ccdf97 linux-3.0/Documentation/power/pm_qos_interface.txt -5c697416a3142250bff8c16eff56006b linux-3.0/Documentation/power/pci.txt -736b5e91fb481027260c8687e209866c linux-3.0/Documentation/power/opp.txt -f4495ef9c436a9cf46b9866f3d169d94 linux-3.0/Documentation/power/notifiers.txt -46d4358c4d24dac6b31935ca0a7c6636 linux-3.0/Documentation/power/interface.txt -4dcbe3fc818b9beb3c4b85c7fa6ce5f3 linux-3.0/Documentation/power/freezing-of-tasks.txt -4f9f56e565ab0ff447de033070b7755d linux-3.0/Documentation/power/drivers-testing.txt -71b1c9d8ffce5a5b2404cef163122e32 linux-3.0/Documentation/power/devices.txt -f598f883ed5f1a9edafdb13333fca30d linux-3.0/Documentation/power/basic-pm-debugging.txt -96df6940d11f51fc1db95e9498cc9fb6 linux-3.0/Documentation/power/apm-acpi.txt -a5cbabac3499eba3fd25ea1af8261c54 linux-3.0/Documentation/power/00-INDEX -a7338b790fd6b30b4071fcacbfcedc4e linux-3.0/Documentation/pnp.txt -492ac92f69716bfaa0c40a909c992ade linux-3.0/Documentation/pi-futex.txt -413407365d20e03127a114cc86d48929 linux-3.0/Documentation/pcmcia/locking.txt -5df59cf623fe7cf44eb61cea3fbfa2ef linux-3.0/Documentation/pcmcia/driver.txt -097c323abf376708d66d1c4fbe5765b8 linux-3.0/Documentation/pcmcia/driver-changes.txt -581d781d405270814bc491d4a4aa992f linux-3.0/Documentation/pcmcia/devicetable.txt -a4b4c5fe3b610905669a11b1b535e2a0 linux-3.0/Documentation/pcmcia/crc32hash.c -8961765280b46bfb4aa914441dcc2178 linux-3.0/Documentation/pcmcia/Makefile -4980136b401948e9f7bdefa58e8ddd9a linux-3.0/Documentation/pcmcia/.gitignore -3d8038d13850bd8e58e0f8fa3db16b39 linux-3.0/Documentation/parport.txt -a7d58201239229037269d4fd7ba720ac linux-3.0/Documentation/parport-lowlevel.txt -1ea6445d71f83e77c949eb59d94bd2ad linux-3.0/Documentation/parisc/registers -79592b31e7969a44035c8be92df17bbd linux-3.0/Documentation/parisc/debugging -524d6c58b9d223b2c2e24caebad5e7f0 linux-3.0/Documentation/parisc/00-INDEX -bd3486df46e488dd75d1e67b2bb52da9 linux-3.0/Documentation/padata.txt -7bc1d3b55c2d084b5e6acd1e4d4322f8 linux-3.0/Documentation/oops-tracing.txt -5acdbea3161f9a38a268fb0d6c768299 linux-3.0/Documentation/numastat.txt -9f4e01823e63aec8b42bf523389664fc linux-3.0/Documentation/nommu-mmap.txt -e97e95155db16c1131fe415f330ceea0 linux-3.0/Documentation/nmi_watchdog.txt -b7351f59846257985735225edc8f9a5e linux-3.0/Documentation/nfc/nfc-pn544.txt -f6eb061f3d1ea4e27dc3a55d624d42d0 linux-3.0/Documentation/networking/z8530drv.txt -ec2b234a2f5bedc4f3621a6d8b6da7b0 linux-3.0/Documentation/networking/xfrm_sysctl.txt -f058d6a2e43e5d2346e0697fcf59e199 linux-3.0/Documentation/networking/xfrm_sync.txt -30c623b289598a5e7e45f1ff70c21938 linux-3.0/Documentation/networking/xfrm_proc.txt -b33f5cd3783c2152444882df520775b8 linux-3.0/Documentation/networking/x25.txt -c9ec576d0a3ac06f7189f046de81ae46 linux-3.0/Documentation/networking/x25-iface.txt -65ddb01636dadf2d0a53ac2d29dcf2bf linux-3.0/Documentation/networking/vxge.txt -489dc949ead5d9ffc65d8e1e69b5ce91 linux-3.0/Documentation/networking/vortex.txt -4bde38ad9eb8900d2b35417a17ea9f2c linux-3.0/Documentation/networking/udplite.txt -6967a7a63be0acf7b2cc5c45ad647bf1 linux-3.0/Documentation/networking/tuntap.txt -36f7403325572b4e474ac23b17331c33 linux-3.0/Documentation/networking/tproxy.txt -b71c0a8d0a647705ebb661b70a0f93d2 linux-3.0/Documentation/networking/tms380tr.txt -88fb915a0e9ff4c803ae007c1cc3d970 linux-3.0/Documentation/networking/tlan.txt -e5e269e3ac2c0b91a2c10adffad955db linux-3.0/Documentation/networking/timestamping/timestamping.c -b2ee16fc307f87494a4a27f476711cf5 linux-3.0/Documentation/networking/timestamping/Makefile -33169393c5c3d380e80c05a097b7f2bd linux-3.0/Documentation/networking/timestamping/.gitignore -e8382ebb90659ad2c071e24e7d269a47 linux-3.0/Documentation/networking/timestamping.txt -da00a1c0fdc9eafc442143df2e6c528e linux-3.0/Documentation/networking/tcp.txt -6d0f47efc3335e4d198f60ede65e6c80 linux-3.0/Documentation/networking/tcp-thin.txt -77a6a256fdfbf3a15863cf3003164359 linux-3.0/Documentation/networking/tc-actions-env-rules.txt -61f7319faca59f672b45b519b171af3b linux-3.0/Documentation/networking/stmmac.txt -bfdcd0b24e68eb04807e7443d7293842 linux-3.0/Documentation/networking/spider_net.txt -79d850b12d87deef1658b9ce27af2194 linux-3.0/Documentation/networking/smctr.txt -9c1a6e52a6f23807da64db7b967ef825 linux-3.0/Documentation/networking/smc9.txt -4503038daba6c9c193b7de8d0f456ddf linux-3.0/Documentation/networking/skfp.txt -1f107fa406fe8088ca994408b12f6318 linux-3.0/Documentation/networking/secid.txt -e2bcb101fad5c5096a9c19b9c920056a linux-3.0/Documentation/networking/sctp.txt -424215bfe29bc8d2679963d45b996d7f linux-3.0/Documentation/networking/s2io.txt -43814f6793f80dde4a609696c08ea6a8 linux-3.0/Documentation/networking/rxrpc.txt -713d13a5a56d500fb05888d728967d48 linux-3.0/Documentation/networking/regulatory.txt -20d1403021a45fa40b86e98adf37fba2 linux-3.0/Documentation/networking/rds.txt -fd318c5468bc8e745f9d941561d22a75 linux-3.0/Documentation/networking/ray_cs.txt -8f9478b4d4713794233c84e43f122e1f linux-3.0/Documentation/networking/radiotap-headers.txt -535e972c5af33b59746559b86e49b1de linux-3.0/Documentation/networking/proc_net_tcp.txt -899d0d9d3fee82de55f7685f04070c15 linux-3.0/Documentation/networking/ppp_generic.txt -496bd1c2daedf13e7b1cfb68304f3832 linux-3.0/Documentation/networking/policy-routing.txt -c55a693d1b0b11d86d13985a43e5048d linux-3.0/Documentation/networking/pktgen.txt -96fc9c1b6588a587a2953fb6be699a3c linux-3.0/Documentation/networking/phy.txt -367e2f5c60147c84cad9092d17ec8765 linux-3.0/Documentation/networking/phonet.txt -5617e28c172db5ca4e8e74bf7d7007f6 linux-3.0/Documentation/networking/packet_mmap.txt -da768d4ea5548b79eaf56b90e1e8c7a9 linux-3.0/Documentation/networking/operstates.txt -a4f3f3d33d9368e7fc0049b4582563d8 linux-3.0/Documentation/networking/olympic.txt -8938fe6ba8f9e035842b470ec0921117 linux-3.0/Documentation/networking/netif-msg.txt -b889a01ea78a9c5598e1fd69365aa9e6 linux-3.0/Documentation/networking/netdevices.txt -98712ca5ba15aaf6df29e0eea0acd753 linux-3.0/Documentation/networking/netconsole.txt -3718aa840afa784cab836a0b42677b9f linux-3.0/Documentation/networking/multiqueue.txt -ba5df47594453769816e661d9d9f1fe8 linux-3.0/Documentation/networking/multicast.txt -bb93364162b20a7c3c21f729da8bb8ca linux-3.0/Documentation/networking/mac80211_hwsim/wpa_supplicant.conf -8590dc8fbc7b58e7ba31ed7a7f41988c linux-3.0/Documentation/networking/mac80211_hwsim/hostapd.conf -0e59884e77a8ab4c7df0af14615aebc3 linux-3.0/Documentation/networking/mac80211_hwsim/README -ff0a33d04e24bea08c62dae9c8871291 linux-3.0/Documentation/networking/mac80211-injection.txt -7262b80c01ac2a1b0078575a8442b966 linux-3.0/Documentation/networking/ltpc.txt -84360917712f3a8b647b2c946e29eab0 linux-3.0/Documentation/networking/lapb-module.txt -4e3cfa8691428e2e0775467b80df40ef linux-3.0/Documentation/networking/l2tp.txt -63ca14c6e37a0c96bda00bc6ffe6fda8 linux-3.0/Documentation/networking/ixgbevf.txt -d658fe148d0ce7276de8b3a4e1a2cc65 linux-3.0/Documentation/networking/ixgbe.txt -59dbc1b8641801f75097259913595e01 linux-3.0/Documentation/networking/ixgb.txt -cd3ba38a795dba9da447a91636911311 linux-3.0/Documentation/networking/irda.txt -6a25588416c373c138a12065ad769fbf linux-3.0/Documentation/networking/ipvs-sysctl.txt -4efd0f05fbf42b1e72f9eca536a13f9b linux-3.0/Documentation/networking/ipv6.txt -c4034a50a5b48f8104d86af24eff2bb3 linux-3.0/Documentation/networking/iphase.txt -ae527fc15b224fd7440001ff1081b53f linux-3.0/Documentation/networking/ipddp.txt -03f368fc5593629918b47776a0661d22 linux-3.0/Documentation/networking/ip_dynaddr.txt -d1aabfe21c12048595ebcc8c7603ff6a linux-3.0/Documentation/networking/ip-sysctl.txt -d481fec8c1690f5e3955723e0b93a07f linux-3.0/Documentation/networking/igbvf.txt -6e47ccce75d4bb8541fd3b6550cd0717 linux-3.0/Documentation/networking/igb.txt -41a23dc9ac3522ac2af23396ba70bcc4 linux-3.0/Documentation/networking/ifenslave.c -835210c4ce78003996389229177da6f9 linux-3.0/Documentation/networking/ieee802154.txt -92353b780a86d1a6f8e0789ea280e96e linux-3.0/Documentation/networking/gianfar.txt -de895a6851f65cb21a09b81576546bb1 linux-3.0/Documentation/networking/generic_netlink.txt -76d0703efb08b28082fb3b2bb9ad93a9 linux-3.0/Documentation/networking/generic-hdlc.txt -34b0b7068b7c935723a8ba541be50f49 linux-3.0/Documentation/networking/gen_stats.txt -0811d7a433d34f0d21090ae1a9ec0374 linux-3.0/Documentation/networking/framerelay.txt -ecedf1397ee30e80d1243530e048da08 linux-3.0/Documentation/networking/fore200e.txt -9a94c74f9241d6df18488337034c8873 linux-3.0/Documentation/networking/filter.txt -9c35f6fe935ed4175ee1e73ff6cda34c linux-3.0/Documentation/networking/fib_trie.txt -014e62df5659a2c160d467fd9bc4827d linux-3.0/Documentation/networking/ewrk3.txt -9e81f851fe9dc6d61c12d1ffe7ec9955 linux-3.0/Documentation/networking/eql.txt -2e84635f362add7202db2ad52bea28ce linux-3.0/Documentation/networking/e1000e.txt -9c4e31bc72b8fb02112f0b1e2fc3252e linux-3.0/Documentation/networking/e1000.txt -484291f6ea6c9396a4f005d91da58af3 linux-3.0/Documentation/networking/e100.txt -af5b2ec4224a5069743bf987ed5a684a linux-3.0/Documentation/networking/driver.txt -959bcc4ab79abe0f255ba5fbe92cbca0 linux-3.0/Documentation/networking/dns_resolver.txt -290a1e578098654494b44d3ee1f6c665 linux-3.0/Documentation/networking/dmfe.txt -ddd9c6da3aa1414bf8936e0d1eeab078 linux-3.0/Documentation/networking/dm9000.txt -7bc15e0786e7d190c49e3eb89f47b68a linux-3.0/Documentation/networking/dl2k.txt -c8bae20b88d3f748f940019c5b89be2a linux-3.0/Documentation/networking/depca.txt -57f57241fc6a8f6065bc7d8712eb7cc7 linux-3.0/Documentation/networking/decnet.txt -28f020e4efbaafe21a3a659b122c3ac2 linux-3.0/Documentation/networking/de4x5.txt -f60c36dfd69c147883b7ecab699035ad linux-3.0/Documentation/networking/dccp.txt -3d16720be6efa26241fa62320aeb1aea linux-3.0/Documentation/networking/cxgb.txt -24270d0d39a0916f07d0d22a3b12fb80 linux-3.0/Documentation/networking/cxacru.txt -a033409726d7605a3a384f57d16d2ef1 linux-3.0/Documentation/networking/cxacru-cf.py -69d26a6af71fbe09c76e3c7448a85623 linux-3.0/Documentation/networking/cs89x0.txt -c2fbdef3a2bbd91635de5f5ca355ac60 linux-3.0/Documentation/networking/cops.txt -e862996899d6f9d39fff8db41beca894 linux-3.0/Documentation/networking/can.txt -158a84b25f3cd3a24e29cc2c7600081f linux-3.0/Documentation/networking/caif/spi_porting.txt -08f2b487b2a213ce4178775d3bc13ada linux-3.0/Documentation/networking/caif/README -249ec85d3f0a0220ef2d5cc986b45ba3 linux-3.0/Documentation/networking/caif/Linux-CAIF.txt -057d62d005b371576a14e27992633974 linux-3.0/Documentation/networking/bridge.txt -cbefcfbe058e0307c6ec0e331e6ce36f linux-3.0/Documentation/networking/bonding.txt -49b9fc768e7c5bba88725f241f562436 linux-3.0/Documentation/networking/baycom.txt -276c7d3e961b3358082b7d8e10116bb4 linux-3.0/Documentation/networking/batman-adv.txt -8cef724fd6319d97ab1e06f12c85e131 linux-3.0/Documentation/networking/ax25.txt -f6f7900bfc890086a56684dcffbf8b2c linux-3.0/Documentation/networking/atm.txt -2ce2b187315c2ffbf1008fa9583f3614 linux-3.0/Documentation/networking/arcnet.txt -082514617daea5d293959c966cea7e75 linux-3.0/Documentation/networking/arcnet-hardware.txt -b80059c160385ffc5021de308b43b0fa linux-3.0/Documentation/networking/alias.txt -80aae87b85d8c33f1766380cec9059f5 linux-3.0/Documentation/networking/README.sb1000 -5505d327484c69a4b39cf2b9b790b59c linux-3.0/Documentation/networking/README.ipw2200 -a9492dbd8024858c933d5d16d50b41ea linux-3.0/Documentation/networking/README.ipw2100 -0ff26c2f2ae74061e61fe9748ea3abdc linux-3.0/Documentation/networking/PLIP.txt -18bd93bfbd446b1e0da69fb34b456afc linux-3.0/Documentation/networking/Makefile -177825ce564d0f104864a9659c3ebb2a linux-3.0/Documentation/networking/LICENSE.qlge -804975c001be2a02baa1c0cd504635d5 linux-3.0/Documentation/networking/LICENSE.qlcnic -ae5c998421760d17dd805a57f798a82b linux-3.0/Documentation/networking/LICENSE.qla3xxx -900cbc5a1aa000949516d79836396085 linux-3.0/Documentation/networking/DLINK.txt -90d5945918472667dcbfea3e7508fc07 linux-3.0/Documentation/networking/6pack.txt -a719901714790af57a9cb6b48e2a2218 linux-3.0/Documentation/networking/3c509.txt -2c34ce1ec87e78e89d4917ce4108ca89 linux-3.0/Documentation/networking/3c505.txt -78c9c4e25a0ad626ffb29e85d78cb683 linux-3.0/Documentation/networking/3c359.txt -4276c32305fbf23bba6e7d9715281299 linux-3.0/Documentation/networking/00-INDEX -21f74eac33b9558ae52cfb4b2033936c linux-3.0/Documentation/networking/.gitignore -3cec45974ee1ce98d347e0a908500838 linux-3.0/Documentation/netlabel/lsm_interface.txt -4c5eada44f601b002e56d077298f6009 linux-3.0/Documentation/netlabel/introduction.txt -af1a2f736032c81854a5bd6406a9382a linux-3.0/Documentation/netlabel/draft-ietf-cipso-ipsecurity-01.txt -d8d098d599e9875732dd0d6765ef0263 linux-3.0/Documentation/netlabel/cipso_ipv4.txt -537356177daab18efdc3f14d460c5147 linux-3.0/Documentation/netlabel/00-INDEX -9b7d2e5e9bf2b3b880c23024e7278a1e linux-3.0/Documentation/namespaces/compatibility-list.txt -278a8bef9b14c136939715738cc0f0e8 linux-3.0/Documentation/mutex-design.txt -2fc7a75dfb511c006dc98803864d383c linux-3.0/Documentation/mtd/nand_ecc.txt -ff254e1fb8c1094d411c330bed2827fc linux-3.0/Documentation/mono.txt -ec1ad0b2f2267b30b6fd38858dd9976a linux-3.0/Documentation/mn10300/compartmentalisation.txt -c512d3075cbc224cd0db8c3a8e5ad275 linux-3.0/Documentation/mn10300/ABI.txt -cd9270890ec17bcf8692d8479f789351 linux-3.0/Documentation/mmc/mmc-dev-parts.txt -f1bdd10a2786a14520d38ea68fe07b49 linux-3.0/Documentation/mmc/mmc-dev-attrs.txt -f368c52a26cec6a4d3f4051b12ca0d37 linux-3.0/Documentation/mmc/00-INDEX -22b32e406cfe354cc4157e122f57b7c9 linux-3.0/Documentation/misc-devices/spear-pcie-gadget.txt -fb3f360780ab0dad4cc8f3977a5c53b7 linux-3.0/Documentation/misc-devices/max6875 -63b2817f63661adafe9cd2a59fb05ed5 linux-3.0/Documentation/misc-devices/lis3lv02d -903222015c413072cf4ed1244f3251fe linux-3.0/Documentation/misc-devices/isl29003 -cb4799098672e04949a99fdd1f69f070 linux-3.0/Documentation/misc-devices/ics932s401 -586ed2b1a8d3739c95ed84b5a4d4a295 linux-3.0/Documentation/misc-devices/eeprom -79ce9474fe0837ff68524d9256c05737 linux-3.0/Documentation/misc-devices/c2port.txt -4a6faa36b8ab4091add041f04d64c47f linux-3.0/Documentation/misc-devices/bh1770glc.txt -1c1c179dcfb87c7275396fd87da400f9 linux-3.0/Documentation/misc-devices/apds990x.txt -d72f4d2620a151ba4b0b873e255f2294 linux-3.0/Documentation/misc-devices/ad525x_dpot.txt -f2e2ef72fd4fbf7d72de076e2c28ec96 linux-3.0/Documentation/mips/AU1xxx_IDE.README -3432fbab8ccf425f644520ee81af2253 linux-3.0/Documentation/mips/00-INDEX -c17ccb89201a46532f3b95fee4adc372 linux-3.0/Documentation/memory.txt -e9bc23bc43814ef7fbe2bcd89692c55b linux-3.0/Documentation/memory-hotplug.txt -edeb05aa1992589ed812344096a75653 linux-3.0/Documentation/memory-barriers.txt -2aa38801cd10ff8364a8b95ae0b5f1ff linux-3.0/Documentation/media-framework.txt -2c8f49559ecb4e88226f221843ec97b2 linux-3.0/Documentation/md.txt -f49e1e90036dffb20dfae0e91c899658 linux-3.0/Documentation/mca.txt -326c00fce70f16eb1379eecbc4560483 linux-3.0/Documentation/make/headers_install.txt -fe8481c7915c59899c1c8281254e3fe6 linux-3.0/Documentation/magic-number.txt -7b14d98516067b3362831f7a1eb9b0f5 linux-3.0/Documentation/m68k/kernel-options.txt -6e90c4a35a2a917abbb97710c6bf6b8e linux-3.0/Documentation/m68k/README.buddha -b2eedc11bb04f3ca18d0330f219fee08 linux-3.0/Documentation/m68k/00-INDEX -c12e6a02a126220ed420586143f96d7e linux-3.0/Documentation/logo.txt -ea45397265c364f0d98300d6df33576f linux-3.0/Documentation/logo.gif -c672433097ed3823b84bea98cafbb921 linux-3.0/Documentation/lockstat.txt -42bf10a99c201f46cefef5d88312b751 linux-3.0/Documentation/lockdep-design.txt -809dba9261b3704813557cccaeb3d83d linux-3.0/Documentation/local_ops.txt -7736357fd194cc5ea9a31b1936946f29 linux-3.0/Documentation/leds/leds-lp5523.txt -07c8f7b49cf3d448f238452b5a522bb6 linux-3.0/Documentation/leds/leds-lp5521.txt -4d65b032174d0585d58938f72f39966c linux-3.0/Documentation/leds/leds-lp3944.txt -b571212f90e00f6113c38ec6dd223a3b linux-3.0/Documentation/leds/leds-class.txt -cbae687e54ca691f2a1af41fa3405b4a linux-3.0/Documentation/leds/00-INDEX -3492835c4e3f2340ef0a0d5af464b962 linux-3.0/Documentation/ldm.txt -d0d7f987f9a4682ed191f0e1354a252a linux-3.0/Documentation/laptops/thinkpad-acpi.txt -2ba2353f2f443e663565d17a90979686 linux-3.0/Documentation/laptops/sonypi.txt -50208d664c0d64d44509e3ef4a826b56 linux-3.0/Documentation/laptops/sony-laptop.txt -498952d1fd1805f6110fd54715ddc471 linux-3.0/Documentation/laptops/laptop-mode.txt -3c545b8bfffa1c83d40a4edf3b6ff976 linux-3.0/Documentation/laptops/hpfall.c -7b55aa9deeb02800d62a7f6d6e188bad linux-3.0/Documentation/laptops/dslm.c -efbeabdc3001147c9a3d2f2d74315091 linux-3.0/Documentation/laptops/disk-shock-protection.txt -4fc0b186fd404f364fa93fa7664042ac linux-3.0/Documentation/laptops/asus-laptop.txt -05c5c31ed7be35cb8db94f8ee3761bd8 linux-3.0/Documentation/laptops/Makefile -27f27058510923e9e51f624b50975063 linux-3.0/Documentation/laptops/00-INDEX -e6ee109e7185aafc4efe67cad2576352 linux-3.0/Documentation/kref.txt -7a4c60ba6c646746ca64a311b24a7919 linux-3.0/Documentation/kprobes.txt -6acf7c5ae750097268f9539cf51dd776 linux-3.0/Documentation/kobject.txt -22398088bc4a867871c133fe6722d6f1 linux-3.0/Documentation/ko_KR/stable_api_nonsense.txt -e0cb679f0fd16daf284246b4d35f5421 linux-3.0/Documentation/ko_KR/HOWTO -4c48e3722511b38e689b8e6fed8f409d linux-3.0/Documentation/kmemleak.txt -b301c758aed537468e98183bd04dc15d linux-3.0/Documentation/kmemcheck.txt -d96acf570f2b44d5b92e695d3f372692 linux-3.0/Documentation/kernel-parameters.txt -3ea346479badfb4c6fcf056f35fc508c linux-3.0/Documentation/kernel-docs.txt -28579d296e40e460678d0587991e9d48 linux-3.0/Documentation/kernel-doc-nano-HOWTO.txt -c4def2bb90ef30ae6dc6aa52d782792a linux-3.0/Documentation/kdump/kdump.txt -33468124938fb4d2ff67b648377a276b linux-3.0/Documentation/kdump/gdbmacros.txt -f33baf953db2abb93fddb42c1faf2b41 linux-3.0/Documentation/kbuild/modules.txt -e1b475dea878b4a1a3a2b82e36857f1b linux-3.0/Documentation/kbuild/makefiles.txt -1d1f9ae959210a04487ad8fc4b4c0e5e linux-3.0/Documentation/kbuild/kconfig.txt -b4a344df48ea356bcd8268be11dfdaba linux-3.0/Documentation/kbuild/kconfig-language.txt -850b33a1c153590f9a3fc926eb452160 linux-3.0/Documentation/kbuild/kbuild.txt -f8bc932d63dcd023dc2f2a5dae8e882c linux-3.0/Documentation/kbuild/00-INDEX -fbe28a3d11651fd214ad1d897700fd4f linux-3.0/Documentation/java.txt -488d49bf26c8b61c7da15aac21fdc625 linux-3.0/Documentation/ja_JP/stable_kernel_rules.txt -84d9c6807bb8917932ab5e0da3e69086 linux-3.0/Documentation/ja_JP/stable_api_nonsense.txt -46dee354ff246a2f4418a3bbbe282a2a linux-3.0/Documentation/ja_JP/SubmittingPatches -6ea12d98d2d9d98186d71b9f92801521 linux-3.0/Documentation/ja_JP/SubmitChecklist -7837d7bf0eb1980a8723fb80ae01210c linux-3.0/Documentation/ja_JP/HOWTO -8da98ab5303f7b13698c69d31ec1098d linux-3.0/Documentation/isdn/syncPPP.FAQ -03c234d73c4dcbcea76cd9593000f347 linux-3.0/Documentation/isdn/README.x25 -edda4bec96e45c66b1cc833e24bbac46 linux-3.0/Documentation/isdn/README.syncppp -407acd27af3e2abc06de6fb7f3b0b9c6 linux-3.0/Documentation/isdn/README.sc -cc69c4e447a5be1e029a80262b9a495a linux-3.0/Documentation/isdn/README.pcbit -2ce90d844b2f58b613d6ca1ccd871581 linux-3.0/Documentation/isdn/README.mISDN -9190bede914ffbad4190ee8098f5a922 linux-3.0/Documentation/isdn/README.icn -deb66c3cb69430792232c1a7c841492e linux-3.0/Documentation/isdn/README.hysdn -dd61729ec65256fdaee39fc70867a488 linux-3.0/Documentation/isdn/README.hfc-pci -54647d11d8262731c2bd3b2cd87246c7 linux-3.0/Documentation/isdn/README.gigaset -68d5514d33b40f5c42b4efc6ca605b37 linux-3.0/Documentation/isdn/README.fax -0052c88330acf9b1bbd78c34cebcc445 linux-3.0/Documentation/isdn/README.diversion -7279584e5b2975b69495c26961835729 linux-3.0/Documentation/isdn/README.concap -fb117780fa25b50ddcd37ccd01534cd6 linux-3.0/Documentation/isdn/README.avmb1 -7646f35ee93c9a087b831189a0303969 linux-3.0/Documentation/isdn/README.audio -06833fae5aeeb55c7d0aff0caa46331e linux-3.0/Documentation/isdn/README.act2000 -da8c740e817d9b804552c4668d1035f7 linux-3.0/Documentation/isdn/README.HiSax -a05db7f532312c6e8788fe67aa4b522f linux-3.0/Documentation/isdn/README.FAQ -429976b58bfa7059bd0e8128c5ce6484 linux-3.0/Documentation/isdn/README -3f05d5681a54c55beb09fe9a49c5c7b3 linux-3.0/Documentation/isdn/INTERFACE.fax -6b19ec5c27094496da060dd9dc36839c linux-3.0/Documentation/isdn/INTERFACE.CAPI -378e54cbb6c4c72bf614e9ef6938faa6 linux-3.0/Documentation/isdn/INTERFACE -beac81ecbeb4865d9dc9648091f04332 linux-3.0/Documentation/isdn/HiSax.cert -f68716bb7c8c573e8281d103f02db8b8 linux-3.0/Documentation/isdn/CREDITS -56b0c022e4003e54ab1b2d1d4a454cb9 linux-3.0/Documentation/isdn/00-INDEX -ab111f0d42d1e748d9745c09e7ff935b linux-3.0/Documentation/isapnp.txt -b8ca946951177d2cb8099feb9c4587e2 linux-3.0/Documentation/irqflags-tracing.txt -4248f808a42956c73b79032686ae77bb linux-3.0/Documentation/iostats.txt -faf8f36f1a75b3b21dcc48fb09e56463 linux-3.0/Documentation/ioctl/ioctl-number.txt -aba3ce12c4a0c65fe3edd5d4558f40e7 linux-3.0/Documentation/ioctl/ioctl-decoding.txt -4d8085d3fd56b5f23d86e8b8f195c27d linux-3.0/Documentation/ioctl/hdio.txt -cfa84236f73227da61c3819b75535022 linux-3.0/Documentation/ioctl/cdrom.txt -8582ba703c02daaca9c4df3879fde83f linux-3.0/Documentation/ioctl/00-INDEX -f7a404c9794d133f9167ff1a7e2953bb linux-3.0/Documentation/io_ordering.txt -a7785b478117c65839749521fc020dc3 linux-3.0/Documentation/io-mapping.txt -9dd22fd4de8b9e718fefc96c15b994c8 linux-3.0/Documentation/intel_txt.txt -cc82738509b33f40bf0b7708fcaf852b linux-3.0/Documentation/input/yealink.txt -847fa7962a978028d9fc4164b856e92b linux-3.0/Documentation/input/xpad.txt -1987456867cd314848ac45c26e9aede7 linux-3.0/Documentation/input/walkera0701.txt -7eb33511c82408294d2fe46c73f5bef6 linux-3.0/Documentation/input/shape.fig -044b5c0e1fb2313ed55e4307b3145799 linux-3.0/Documentation/input/sentelic.txt -b0414f455e35462602b9761e3b70b704 linux-3.0/Documentation/input/rotary-encoder.txt -1d14683d3e2c262c5126f7515edf89a8 linux-3.0/Documentation/input/ntrig.txt -30039f58645293964b25ec0d9e3f7447 linux-3.0/Documentation/input/notifier.txt -1d2703f7fdee9baca4af3034ddcb136d linux-3.0/Documentation/input/multi-touch-protocol.txt -8c14c8853fcb73b565f583f394a35634 linux-3.0/Documentation/input/joystick.txt -175383e97a71545fb0484ec324fe4f52 linux-3.0/Documentation/input/joystick-parport.txt -c815eb7c54f8d91a4a4ee963bec2485e linux-3.0/Documentation/input/joystick-api.txt -85d388a49b8c2bb9976e412268f80ee4 linux-3.0/Documentation/input/interactive.fig -ebaeb08bc09fa2947f32ab92410c5bf4 linux-3.0/Documentation/input/input.txt -1c7375b4c96277e4cade1e0d2583c8fc linux-3.0/Documentation/input/input-programming.txt -ef800176d9586de3a19dcdbdc89f66e7 linux-3.0/Documentation/input/iforce-protocol.txt -87bb7058f0473b070c78ff19e2cce92b linux-3.0/Documentation/input/gameport-programming.txt -bac4b6fb794f4956dd0e4ed158d68142 linux-3.0/Documentation/input/ff.txt -2c533cca34245fbd2dd1834ad7e8595e linux-3.0/Documentation/input/event-codes.txt -c389bdcd53cf95652aa39bb164667496 linux-3.0/Documentation/input/elantech.txt -190ec94934acdc4ab0120c69a86e56bc linux-3.0/Documentation/input/cs461x.txt -2f3efb1438a72dad0ba31ede63d0ac01 linux-3.0/Documentation/input/cma3000_d0x.txt -1d27bb42a9a49ae14d3b319deb5aedf9 linux-3.0/Documentation/input/cd32.txt -2c8d16dd3c30d16db7de3bfa4a81639f linux-3.0/Documentation/input/bcm5974.txt -9af09a8f9d53381f9270b32b48084541 linux-3.0/Documentation/input/atarikbd.txt -102baa9535f4adc1bd9ebc1da08d6104 linux-3.0/Documentation/input/appletouch.txt -1c1014cadb98cbb8fca1afce6f801317 linux-3.0/Documentation/input/amijoy.txt -c889974503df36fc073c891e6d9b8b0a linux-3.0/Documentation/initrd.txt -bdbcc42bf6ae739157092a7fa64aaaac linux-3.0/Documentation/init.txt -32b3bf747f56e68911b28b6a35b192a9 linux-3.0/Documentation/infiniband/user_verbs.txt -fd044867e29b8e8e265a6c188fb969ab linux-3.0/Documentation/infiniband/user_mad.txt -7b90e828267340d7a08f072e6c62fd90 linux-3.0/Documentation/infiniband/sysfs.txt -daface9e4eae40a6698cf8cb9fe58850 linux-3.0/Documentation/infiniband/ipoib.txt -7bb391b9e7b0cc8c8be83c7c10951129 linux-3.0/Documentation/infiniband/core_locking.txt -df5a1c2f05bd1a1670e04915a6dc5e12 linux-3.0/Documentation/ide/warm-plug-howto.txt -1111f030b4c12aa92f50c3933e82238d linux-3.0/Documentation/ide/ide.txt -b5df2e3b5861a289992f0138064cff18 linux-3.0/Documentation/ide/ide-tape.txt -8149ab16879d3e547524812a0f600267 linux-3.0/Documentation/ide/ChangeLog.ide-tape.1995-2002 -1a814c4b8b740decfc38050a8297bf56 linux-3.0/Documentation/ide/ChangeLog.ide-floppy.1996-2002 -7f125251ace867fdf39192ec1fadb7b7 linux-3.0/Documentation/ide/ChangeLog.ide-cd.1994-2004 -35f76ca227fde08d73c6f5285548e1d3 linux-3.0/Documentation/ide/00-INDEX -c4e9a8b3fd7a8b5afffdb9fb4c6093a6 linux-3.0/Documentation/ia64/xen.txt -2b94fecbe1e17b41a7cd875cbb55f258 linux-3.0/Documentation/ia64/serial.txt -2c787c72201571fd2eb82acf3ff67297 linux-3.0/Documentation/ia64/paravirt_ops.txt -c3d221807899dcaf1f9f40c4d6d284bd linux-3.0/Documentation/ia64/mca.txt -be7094494de4a047f22c7a2e100894ec linux-3.0/Documentation/ia64/kvm.txt -b78861283df4fdfc55ca5a9eddbe5c95 linux-3.0/Documentation/ia64/fsys.txt -8326d02ed2fc62339ff91060c044d050 linux-3.0/Documentation/ia64/err_inject.txt -c57d954b766b6f0cc10fe744dde47ba3 linux-3.0/Documentation/ia64/efirtc.txt -9d9c62ad5752acba930b157287c82a51 linux-3.0/Documentation/ia64/aliasing.txt -7ad6aecb4453d7d0fd2cb7c0214b945b linux-3.0/Documentation/ia64/aliasing-test.c -80d1dd7188d12fdbd99aee9830a80b50 linux-3.0/Documentation/ia64/README -98a8e069ebea2a2566a3fdbb5d8b31d6 linux-3.0/Documentation/ia64/Makefile -26c48f18af0d8b7ec03c5df3521b8a90 linux-3.0/Documentation/ia64/IRQ-redir.txt -2f4a0428564c17f83757e5ddd936e6b7 linux-3.0/Documentation/ia64/.gitignore -7d1c5981b5833f7a8e86cc1d6e0dfcb6 linux-3.0/Documentation/i2o/ioctl -7d8e5419e37f4ed1124d7be8fcd63077 linux-3.0/Documentation/i2o/README -84ae82fa8a7a8568139baa06e3266df3 linux-3.0/Documentation/i2c/writing-clients -b0a07385d057bfc94e389d2c9c7e5086 linux-3.0/Documentation/i2c/upgrading-clients -020763f09457f13a08a657720c65d1c5 linux-3.0/Documentation/i2c/ten-bit-addresses -da1a535a6121b1e6cbbbe0a878257713 linux-3.0/Documentation/i2c/summary -a5eb185d3d76325c06ba86ddc2d42377 linux-3.0/Documentation/i2c/smbus-protocol -8f9e637651ca5c2beb4fd4646b6db571 linux-3.0/Documentation/i2c/old-module-parameters -574d83634afda4c5b993f4442d288a5e linux-3.0/Documentation/i2c/muxes/gpio-i2cmux -0a9655601fe638c3e77cb8a32ce2e8d6 linux-3.0/Documentation/i2c/instantiating-devices -3378b1e59617a72a9d8ff8dc91b40244 linux-3.0/Documentation/i2c/i2c-stub -0a0c95c87d9d12a3cd662a18126697d7 linux-3.0/Documentation/i2c/i2c-protocol -522bac52df45b81e0ab6936ee00d23ab linux-3.0/Documentation/i2c/functionality -124fc683833aaf482ac06ee8321dd4d6 linux-3.0/Documentation/i2c/fault-codes -8f15d661212bc14e54c10c0804a84843 linux-3.0/Documentation/i2c/dev-interface -43d5d465dfa343ac3295c6653dadff7a linux-3.0/Documentation/i2c/busses/scx200_acb -489616118ff6374b00f46c22fd2678f0 linux-3.0/Documentation/i2c/busses/i2c-viapro -7924303416175e63cd2e5dbc5f34ec81 linux-3.0/Documentation/i2c/busses/i2c-via -15d5ddfade61cfff00b732863c71ee5e linux-3.0/Documentation/i2c/busses/i2c-taos-evm -68846512bc9e9ce3bc697029716c3db0 linux-3.0/Documentation/i2c/busses/i2c-sis96x -6410f547e07e61ed46ca7b47105e20a7 linux-3.0/Documentation/i2c/busses/i2c-sis630 -814e17ea007215c92c5221c9196e1892 linux-3.0/Documentation/i2c/busses/i2c-sis5595 -36f56a47008785c38dd97dfa06ac4916 linux-3.0/Documentation/i2c/busses/i2c-piix4 -645393bc53e302c1dadb68b1b6efa903 linux-3.0/Documentation/i2c/busses/i2c-pca-isa -e199064f5904469e2da3528bc88665bb linux-3.0/Documentation/i2c/busses/i2c-parport-light -ca304f05d7b1dccabdc58e0d32f04b00 linux-3.0/Documentation/i2c/busses/i2c-parport -a88736dfd68a9003163454d03a902c39 linux-3.0/Documentation/i2c/busses/i2c-ocores -f18f2eaf43c088482af7cc622eaefc27 linux-3.0/Documentation/i2c/busses/i2c-nforce2 -a6d8cbfe0e53da68580f4e2c7dfa3d07 linux-3.0/Documentation/i2c/busses/i2c-i801 -d3f95da06fdb6ffd2aff05cee7e93c1b linux-3.0/Documentation/i2c/busses/i2c-diolan-u2c -db8151ddf5348df30b02b91f58ad1b6d linux-3.0/Documentation/i2c/busses/i2c-amd8111 -bbdf0360ff76046b1c214d43041eadc1 linux-3.0/Documentation/i2c/busses/i2c-amd756 -561ce224f2806d6e1c7bb4c564af866a linux-3.0/Documentation/i2c/busses/i2c-ali15x3 -ec684f59a0e0cb5e8b94d07b537e4473 linux-3.0/Documentation/i2c/busses/i2c-ali1563 -29855b1560dcdd1e056c3cdcecf646d8 linux-3.0/Documentation/i2c/busses/i2c-ali1535 -72b4aafc4cd34901b3e217a28abbdc41 linux-3.0/Documentation/hwspinlock.txt -9a528c2c23e0727d477f03e3ef66f49f linux-3.0/Documentation/hwmon/wm8350 -c45bfb9500e0dff7b283caa3d39c2ec3 linux-3.0/Documentation/hwmon/wm831x -3479f4bf7e00565c1b54d5dc8d969808 linux-3.0/Documentation/hwmon/w83l786ng -09c5da7702da0f63a5710c359276b7c4 linux-3.0/Documentation/hwmon/w83l785ts -c11af04aad2efe99cb6627945ba46ed1 linux-3.0/Documentation/hwmon/w83795 -dd3bfa52f0531c7dad07f7ce2b58543c linux-3.0/Documentation/hwmon/w83793 -3066ddaa1d8d3271127800fd2d5783de linux-3.0/Documentation/hwmon/w83792d -ae95e8944ef31c58c05efcac323bbf57 linux-3.0/Documentation/hwmon/w83791d -ce49dd8b810194ecf998b73ce16a0b8d linux-3.0/Documentation/hwmon/w83781d -0dee31f8ab319236f59a52158c349150 linux-3.0/Documentation/hwmon/w83627hf -1eaaf7f033f3a1899fb52bf137da2588 linux-3.0/Documentation/hwmon/w83627ehf -4f1710dfbba3a9f72b3b088fd3188fa9 linux-3.0/Documentation/hwmon/vt1211 -1185188ca4435ad88df08645566c7bcb linux-3.0/Documentation/hwmon/via686a -df3057df83ffb5601e7ae082dac128c3 linux-3.0/Documentation/hwmon/userspace-tools -44f071c4264cc5f3f4e47cf347945654 linux-3.0/Documentation/hwmon/ucd9200 -d73bdbcbbb6e52bc1405f18d62d20dba linux-3.0/Documentation/hwmon/ucd9000 -c2ff2e0b8636d5aa18030f14989917a2 linux-3.0/Documentation/hwmon/twl4030-madc-hwmon -9a32a47326b3c4925a69bd2afd85e799 linux-3.0/Documentation/hwmon/tmp421 -da924476146b4e8d8bf75feaf847a04a linux-3.0/Documentation/hwmon/tmp401 -55063135d1d9c861d9f2a14d9e772648 linux-3.0/Documentation/hwmon/tmp102 -4a70c85816003062a6cb48a3d83fa1a1 linux-3.0/Documentation/hwmon/thmc50 -520a74dbfd49c7d665f1f040d30e4c78 linux-3.0/Documentation/hwmon/sysfs-interface -bf58f13575ed58a253fae144d1042c03 linux-3.0/Documentation/hwmon/submitting-patches -20880316374410549609427a11a9d1d9 linux-3.0/Documentation/hwmon/smsc47m192 -aff186c361bfd214e27f98016ce0fca8 linux-3.0/Documentation/hwmon/smsc47m1 -4ad2884a6949171303144c37ad7dd18c linux-3.0/Documentation/hwmon/smsc47b397 -ec516164b9277adc30c14fc8a8f6c0fd linux-3.0/Documentation/hwmon/smm665 -f5bf341b25d6dc200c9d479daec03e17 linux-3.0/Documentation/hwmon/sis5595 -21e41a953854a9f7b2d683bf17cc02b4 linux-3.0/Documentation/hwmon/sht21 -cc55ad2b108af9765320ab18c185205c linux-3.0/Documentation/hwmon/sht15 -c101f9bb35e24efb4a6d88ae2ce58e7b linux-3.0/Documentation/hwmon/sch5627 -3fa25501a600835f01bad50ff34ba5ba linux-3.0/Documentation/hwmon/pmbus -2098566ac1a253d8990707316bbb8dd4 linux-3.0/Documentation/hwmon/pcf8591 -5b821a49313788992e327befdaf24bde linux-3.0/Documentation/hwmon/pc87427 -eece59c706e7be641023353acadae4b9 linux-3.0/Documentation/hwmon/pc87360 -8ecd87031cdbfeb03401ece7cfee47de linux-3.0/Documentation/hwmon/mc13783-adc -08649891b846f45170211ecc1e390e1a linux-3.0/Documentation/hwmon/max8688 -609aac6abaf97083223ba359232f700f linux-3.0/Documentation/hwmon/max6650 -6e8b50855bf0f227ded05c75bf99f040 linux-3.0/Documentation/hwmon/max6642 -d62d89bc68386b8cbb28ba8d6d92d2ec linux-3.0/Documentation/hwmon/max6639 -fae224750bb2ae461411da040f4b3109 linux-3.0/Documentation/hwmon/max34440 -72246a8c940e515f7cbfadf49c961927 linux-3.0/Documentation/hwmon/max1619 -edee217fc8074d9c6ac9dd03fa18c4e6 linux-3.0/Documentation/hwmon/max16065 -89f8bd43a228fae04aa3b9fec10858ec linux-3.0/Documentation/hwmon/max16064 -b6af49fe32c26d61a97371d2e1a23360 linux-3.0/Documentation/hwmon/ltc4261 -b0762a6efd0ed7bff65421a52164f602 linux-3.0/Documentation/hwmon/ltc4245 -b4e46ca82ca45a1fcced6703b19dec77 linux-3.0/Documentation/hwmon/ltc4215 -b5743d38115d32bfe0097a6c76581e56 linux-3.0/Documentation/hwmon/ltc4151 -3013511af68596df553b56794fa9034d linux-3.0/Documentation/hwmon/lm93 -f7d05be591bed29a76228ceb44c56b0d linux-3.0/Documentation/hwmon/lm92 -f653e6afb984359f47a9f9dc33a87328 linux-3.0/Documentation/hwmon/lm90 -5288b618ab8f5ad8e7c9ad5b1c56cfa3 linux-3.0/Documentation/hwmon/lm87 -8141886477c16e624337199d073b5d97 linux-3.0/Documentation/hwmon/lm85 -374c9f9d50699c9ce366af345b1021f0 linux-3.0/Documentation/hwmon/lm83 -af6154606b27575139ad232a0c026529 linux-3.0/Documentation/hwmon/lm80 -dfeae8dc3e7773ac9ae46149025f8fa9 linux-3.0/Documentation/hwmon/lm78 -6c94e03b5997fc6621c7def01e563c99 linux-3.0/Documentation/hwmon/lm77 -bce4ee4cc149046bfdff83c483f38711 linux-3.0/Documentation/hwmon/lm75 -fbad03290791404892b568d825d62ad0 linux-3.0/Documentation/hwmon/lm70 -ad44599cb2e6cf4481f9ce8c33f0f32b linux-3.0/Documentation/hwmon/lm63 -b6ec56a495c65c52b45094f5709cfb9f linux-3.0/Documentation/hwmon/lineage-pem -f0f157b31d8eaadf8e99c6134f29cea5 linux-3.0/Documentation/hwmon/k8temp -04d481414139534cf2f464a7dea2c683 linux-3.0/Documentation/hwmon/k10temp -8b7c7fe58baf8b0139490fe373245aa3 linux-3.0/Documentation/hwmon/jc42 -47f8d7c37340eea9f937089c5f6a113a linux-3.0/Documentation/hwmon/it87 -7d09a74e5bfb88bda0f273eff287d805 linux-3.0/Documentation/hwmon/ibmaem -707a3e64acee12d22d4f60ee808b3e28 linux-3.0/Documentation/hwmon/gl518sm -bbd7896a0f96b89064127c2f20e49176 linux-3.0/Documentation/hwmon/g760a -bd5832af94774665558e68ca3b1dc28c linux-3.0/Documentation/hwmon/fam15h_power -73774e1bef2b5d7954b533ea1b6b19fb linux-3.0/Documentation/hwmon/f71882fg -34dbbbb395ed253208e0a6a9cecafd1b linux-3.0/Documentation/hwmon/f71805f -f589952647c0fe22d1e13f4643e3ceff linux-3.0/Documentation/hwmon/emc6w201 -40d8705cf46f006c27091be911fe1149 linux-3.0/Documentation/hwmon/emc2103 -362dedf74d0a92b06075d61755b1e97d linux-3.0/Documentation/hwmon/ds620 -c044754807ea90cb5819104dfa13dde2 linux-3.0/Documentation/hwmon/ds1621 -99d642cafe819cfdd8f34478ae41bb28 linux-3.0/Documentation/hwmon/dme1737 -64726af085ab40c6852bb4d8047fb368 linux-3.0/Documentation/hwmon/coretemp -8951d1de29aa15ea7cbc5ddea3dcdaf0 linux-3.0/Documentation/hwmon/asc7621 -8a3b4febee2485e6c5641c8c8afda197 linux-3.0/Documentation/hwmon/asb100 -cd1491f85815c38055750c6e6583eaaa linux-3.0/Documentation/hwmon/amc6821 -b4096412dbc3e2c91bd2fbac1da6a114 linux-3.0/Documentation/hwmon/adt7475 -b25800d80146e010ed96ed70a0dc13e6 linux-3.0/Documentation/hwmon/adt7470 -46bc15d4a1a77047231e5bb56a9ad670 linux-3.0/Documentation/hwmon/adt7462 -9487036bee8b78f0b35b36ffe610d891 linux-3.0/Documentation/hwmon/adt7411 -97e39c1fc44f4919f2edc9a8008f8d5d linux-3.0/Documentation/hwmon/ads7828 -601cdb4d07bb0b6b2c53207a5c3ef427 linux-3.0/Documentation/hwmon/ads1015 -23bfcd026d8e0645f9c8d4dc840982b5 linux-3.0/Documentation/hwmon/adm9240 -40440061bbb6547e9311569120152ce5 linux-3.0/Documentation/hwmon/adm1275 -e5ae18785f9f8bb8bffba5c73ed68dd2 linux-3.0/Documentation/hwmon/adm1031 -f00022060af42beb2ced8193537eabf0 linux-3.0/Documentation/hwmon/adm1026 -cc8c4ddfb217ed3e1f05d4009dc30977 linux-3.0/Documentation/hwmon/adm1025 -e248759c40b1ee019a595eafc86bfbbb linux-3.0/Documentation/hwmon/adm1021 -077e491dd5802b43cc97333d69c0ed35 linux-3.0/Documentation/hwmon/acpi_power_meter -8b804c0c0bbe26f1dd60d991950248a7 linux-3.0/Documentation/hwmon/abituguru3 -0cc3b24cc6401190931beb2aa010bebb linux-3.0/Documentation/hwmon/abituguru-datasheet -8f00add865e42d5d9f37f17845aaa5f1 linux-3.0/Documentation/hwmon/abituguru -6c78af2ee2fab6ae30aca725c3970da1 linux-3.0/Documentation/hw_random.txt -1c3e14d700b302d76b1bca29325a4a8e linux-3.0/Documentation/highuid.txt -6b131f992e573a703b6cba7f9afef748 linux-3.0/Documentation/hid/hidraw.txt -3f2cd318695b1b06e1ee7594e6ed48d5 linux-3.0/Documentation/hid/hiddev.txt -7becf7ecae6a530e3bdf03f77f6add40 linux-3.0/Documentation/gpio.txt -fb711ca5323092e285f2e0b59a574009 linux-3.0/Documentation/gcov.txt -684984d4f7026c76533ad7f247136ef4 linux-3.0/Documentation/futex-requeue-pi.txt -e8f4bcd145774129b9ffba0aa477288e linux-3.0/Documentation/frv/mmu-layout.txt -5d73aa68700ca430e0e782b5035e6290 linux-3.0/Documentation/frv/kernel-ABI.txt -20cca159bf6abd26e0293f45b9a5b05e linux-3.0/Documentation/frv/gdbstub.txt -f5bd8d6f0239d25db5593637c67fce6d linux-3.0/Documentation/frv/gdbinit -0b13bc27b5089731513884e4b755cae1 linux-3.0/Documentation/frv/features.txt -1b48c5994c2f594aaa7e8a78dc053393 linux-3.0/Documentation/frv/configuring.txt -e97b19a68ca01bd530a925c7b969e511 linux-3.0/Documentation/frv/clock.txt -f655cc47f4ed8f17671ef478cb0e33b9 linux-3.0/Documentation/frv/booting.txt -43cf696405b14d1cdc679418c40c362b linux-3.0/Documentation/frv/atomic-ops.txt -9934f2e5a1f1f561e76a13a7328cfb5a linux-3.0/Documentation/frv/README.txt -03bfe3a8cb65aecdc96f710a140b8c27 linux-3.0/Documentation/flexible-arrays.txt -b9bdea3b343fe627e1507558d4794bbb linux-3.0/Documentation/firmware_class/hotplug-script -eeb2805d2ad73a29524e3eae64040d54 linux-3.0/Documentation/firmware_class/README -f1eadb731b51b56ac4343285ed3b89c5 linux-3.0/Documentation/filesystems/xip.txt -7a1b9a2a2371cb1f07e3bc014d4d07e6 linux-3.0/Documentation/filesystems/xfs.txt -d895d4b4b5d5d2a1843428f2923c9a7e linux-3.0/Documentation/filesystems/xfs-delayed-logging-design.txt -c3fdc34a17d1b79bcbb2b6b80ed3041d linux-3.0/Documentation/filesystems/vfs.txt -f13502fa6964e8f82a9696c7e24a8175 linux-3.0/Documentation/filesystems/vfat.txt -f764d657031baa1887cdbf1b8095540c linux-3.0/Documentation/filesystems/ufs.txt -8cf09e0e5d42ec40c73b1636a033b008 linux-3.0/Documentation/filesystems/udf.txt -987d9e67d638362b461728251073bfd2 linux-3.0/Documentation/filesystems/ubifs.txt -8214cd842d43a336adf96ea9805871a6 linux-3.0/Documentation/filesystems/tmpfs.txt -9abfcbea71d55d8588d820162dc33b30 linux-3.0/Documentation/filesystems/sysv-fs.txt -0b85e901890941699b6b362e14e7c186 linux-3.0/Documentation/filesystems/sysfs.txt -7ab83ade46c0d1d806658862878345e7 linux-3.0/Documentation/filesystems/sysfs-tagging.txt -530ef6f7ad3118c9d2e8c4a424f2e154 linux-3.0/Documentation/filesystems/sysfs-pci.txt -f5f053ffad3d3a6808fc730cadb6bb51 linux-3.0/Documentation/filesystems/squashfs.txt -63c28dada4292f4f6a8c664549b775a0 linux-3.0/Documentation/filesystems/spufs.txt -2db29cd54afaa77c0ca814f384b80646 linux-3.0/Documentation/filesystems/sharedsubtree.txt -966b0d86ef9beed1da88e15bd09f9d59 linux-3.0/Documentation/filesystems/seq_file.txt -3c3197abdba135e24d4cb746eb7ae1c8 linux-3.0/Documentation/filesystems/romfs.txt -5e33811d19cc86502c06837bfd77a383 linux-3.0/Documentation/filesystems/relay.txt -6da5e67334f87cfdd30d0888abf7ac4b linux-3.0/Documentation/filesystems/ramfs-rootfs-initramfs.txt -e829973c39bce395fc35a9462a102f71 linux-3.0/Documentation/filesystems/quota.txt -61bf06d4c0ad0d3fc14b4454526b7857 linux-3.0/Documentation/filesystems/proc.txt -01af0cfecf363e26d969a61034116ce3 linux-3.0/Documentation/filesystems/porting -4780a4a829947583df4bcf88fb93b264 linux-3.0/Documentation/filesystems/pohmelfs/network_protocol.txt -4243cb277c33d14532cc0906c71af4e2 linux-3.0/Documentation/filesystems/pohmelfs/info.txt -999fed3598a9a9309685a7d509fe2bea linux-3.0/Documentation/filesystems/pohmelfs/design_notes.txt -afa8b320a5b8631793ac1c6c8fa4ef81 linux-3.0/Documentation/filesystems/path-lookup.txt -7e81fb7a02b46eba85aa757ed539c7b6 linux-3.0/Documentation/filesystems/omfs.txt -742f84214b8404aa6c3dccc306661dbd linux-3.0/Documentation/filesystems/ocfs2.txt -4569bc6e88b94653e0df1249fb23eb1f linux-3.0/Documentation/filesystems/ntfs.txt -898b5b6daea0842f0b922b54e7a3cd0c linux-3.0/Documentation/filesystems/nilfs2.txt -f5ea0b302f6cb19629b8d754e8b891be linux-3.0/Documentation/filesystems/nfs/rpc-cache.txt -266eb58e4e7bda4fe8cd042f9e3fad20 linux-3.0/Documentation/filesystems/nfs/pnfs.txt -65d0c4afe3108e739685072a30c69678 linux-3.0/Documentation/filesystems/nfs/nfsroot.txt -9f1fa8f5b12d2a88f15ba103a058ac10 linux-3.0/Documentation/filesystems/nfs/nfs41-server.txt -b7ddeba3a621f00c189aa4b9e1ba770a linux-3.0/Documentation/filesystems/nfs/nfs.txt -6e042d23fcc5fea93386f3788ba247be linux-3.0/Documentation/filesystems/nfs/nfs-rdma.txt -3e701cf479f5b20495b46696c0b42dc0 linux-3.0/Documentation/filesystems/nfs/knfsd-stats.txt -cb929e8684f65790294da98eec6621b0 linux-3.0/Documentation/filesystems/nfs/idmapper.txt -969ebf23fda590e90658261927bcc018 linux-3.0/Documentation/filesystems/nfs/Exporting -d5d89995eb2d11db284e14c91f8e090a linux-3.0/Documentation/filesystems/nfs/00-INDEX -153f8ae68af4296f6af9a8de9aa967fe linux-3.0/Documentation/filesystems/ncpfs.txt -a3830664c1709ca0f9471b1e9841c073 linux-3.0/Documentation/filesystems/mandatory-locking.txt -286f18941363547cdaf2c96a148d782a linux-3.0/Documentation/filesystems/logfs.txt -270e486e91061c522622fb2e98261a1f linux-3.0/Documentation/filesystems/locks.txt -7fee0215f210dda4925f66d733acbe4d linux-3.0/Documentation/filesystems/jfs.txt -65692c012e1ea8c5de64a7826f6d4518 linux-3.0/Documentation/filesystems/isofs.txt -dbc4b55e289279b6c379c2ef8948433c linux-3.0/Documentation/filesystems/inotify.txt -8a58110addc5f716a6a0d36a85f09ba6 linux-3.0/Documentation/filesystems/hpfs.txt -b1d66ad848f9e6b706dd7c9505b485ca linux-3.0/Documentation/filesystems/hfsplus.txt -07a748683eca0cf6748874a654c7368d linux-3.0/Documentation/filesystems/hfs.txt -d1f5449cd93d5208ede43f115707e70a linux-3.0/Documentation/filesystems/gfs2.txt -85996b362ad623f141cf54bf87c1e6ce linux-3.0/Documentation/filesystems/gfs2-uevents.txt -9bcf7760fccf13e56b3d27e9cbef89e4 linux-3.0/Documentation/filesystems/gfs2-glocks.txt -f7e76606e39187764aa96d774ad933e8 linux-3.0/Documentation/filesystems/fuse.txt -9d3d73db44549a4c702233b19057e462 linux-3.0/Documentation/filesystems/files.txt -2cdb54625a9d3a79c4bdd93cad7c61e3 linux-3.0/Documentation/filesystems/fiemap.txt -dc2be7b7ddc30e9fe1ec6198b674a09b linux-3.0/Documentation/filesystems/ext4.txt -552a52976fd8956db00e120a8d294948 linux-3.0/Documentation/filesystems/ext3.txt -f9e0340cc34dd4cfb93d841831f09f96 linux-3.0/Documentation/filesystems/ext2.txt -aa6ab9223ed69c4aa3e9d72fe5bf1beb linux-3.0/Documentation/filesystems/exofs.txt -b101c51a865f12c01121c2d5acf0282d linux-3.0/Documentation/filesystems/ecryptfs.txt -2edf541ec00a7b7743859cb0b38059be linux-3.0/Documentation/filesystems/dnotify_test.c -b645b829781208e5ef04ee855e7e741e linux-3.0/Documentation/filesystems/dnotify.txt -8b3863a4cd0561ccd44fdfdf193d4e26 linux-3.0/Documentation/filesystems/dlmfs.txt -9dbf67e99c49c0262fdae937ae9523af linux-3.0/Documentation/filesystems/directory-locking -e93e89c25122061868a8aa3e021a3fca linux-3.0/Documentation/filesystems/devpts.txt -da3ea30b73e595a3e2b1fb313c314e48 linux-3.0/Documentation/filesystems/debugfs.txt -e20a4b8c85a1527c41b97932bf493189 linux-3.0/Documentation/filesystems/cramfs.txt -565abcc36acd7df426ca5c28bd9ccb96 linux-3.0/Documentation/filesystems/configfs/configfs_example_macros.c -0fb25d4e10a1201b98c5b88bf66318b4 linux-3.0/Documentation/filesystems/configfs/configfs_example_explicit.c -1d597e47f8d73fe67603f21889f1394b linux-3.0/Documentation/filesystems/configfs/configfs.txt -8f013420261c175ef070d3b12e73dbc9 linux-3.0/Documentation/filesystems/configfs/Makefile -901d896d1a320f50d666991c388ca30d linux-3.0/Documentation/filesystems/coda.txt -0e7e55477b2672ac2a63c121081542cf linux-3.0/Documentation/filesystems/cifs.txt -59cc1089808a119575a90ef6a54682f4 linux-3.0/Documentation/filesystems/ceph.txt -da0612990c7bd8f770eef77bef6784bb linux-3.0/Documentation/filesystems/caching/operations.txt -c2b175782a7f7fe63a470d0efe9b9451 linux-3.0/Documentation/filesystems/caching/object.txt -963626f216cbb6190b5cd6dc386aaa40 linux-3.0/Documentation/filesystems/caching/netfs-api.txt -4e4693dcfeab7a22ddfb549c999579e8 linux-3.0/Documentation/filesystems/caching/fscache.txt -9f76f27051c111ba32655d35a83a84b0 linux-3.0/Documentation/filesystems/caching/cachefiles.txt -7607be466a69549a4575670b93e02592 linux-3.0/Documentation/filesystems/caching/backend-api.txt -d724aecab00413d9d9c508b98a41ad4d linux-3.0/Documentation/filesystems/btrfs.txt -b995ce3323a4b0acaa73811cfacbd9e5 linux-3.0/Documentation/filesystems/bfs.txt -353df1299af816649f327a1455d8caa2 linux-3.0/Documentation/filesystems/befs.txt -0cdc125f667909e36fb350d2f490a73d linux-3.0/Documentation/filesystems/automount-support.txt -b58d4d415d744dd3426fe09287166e4e linux-3.0/Documentation/filesystems/autofs4-mount-control.txt -31a695da5e095c13f93fab1ff4163c84 linux-3.0/Documentation/filesystems/afs.txt -ffc7776583304f6ec7270dcc0914f6ac linux-3.0/Documentation/filesystems/affs.txt -5e26645bb7ee494dfe0c7f9e4196a1c6 linux-3.0/Documentation/filesystems/adfs.txt -0544ee5442c48a5e5186d07c89a2018d linux-3.0/Documentation/filesystems/Makefile -37a269f1f191045f1b96f13a2cfd1ae8 linux-3.0/Documentation/filesystems/Locking -5a628a3c7b2fd1b85f3044e948dae322 linux-3.0/Documentation/filesystems/9p.txt -80ddef59d30b70ac4a8b04aef49c90c5 linux-3.0/Documentation/filesystems/00-INDEX -fdfcb40c53b5db8d716527d45e831c37 linux-3.0/Documentation/feature-removal-schedule.txt -3cf6695f20f812d44c4d497e83ecb9a0 linux-3.0/Documentation/fb/vt8623fb.txt -10e4db2e12a4eb668f93ba4eebcf5df0 linux-3.0/Documentation/fb/viafb.txt -9846aec61107fd65d9f9249037bb1096 linux-3.0/Documentation/fb/viafb.modes -dd0855211d0735de34810e218963a957 linux-3.0/Documentation/fb/vesafb.txt -d3770617683eb9ccc155eaa97f3b3b93 linux-3.0/Documentation/fb/uvesafb.txt -97d8173653d9c6cd9c2a71dd4d49ee30 linux-3.0/Documentation/fb/udlfb.txt -f6dc8bd6df862f951261d88fb7a474e1 linux-3.0/Documentation/fb/tridentfb.txt -5fa39e03a83c27341f9f0ad27b239910 linux-3.0/Documentation/fb/tgafb.txt -d0ed713814bae95a5218d689d633e0e0 linux-3.0/Documentation/fb/sstfb.txt -d7b0e0b797a296448ae69d9424c20552 linux-3.0/Documentation/fb/sm501.txt -7f2b89371adf455ec7498cc8a0c2f8d0 linux-3.0/Documentation/fb/sisfb.txt -5b3cc5ba4d58131a88dc34621eb66e8f linux-3.0/Documentation/fb/sh7760fb.txt -121ab95c34406c061608415b50a4dfbd linux-3.0/Documentation/fb/sa1100fb.txt -aab342a9fe660598b4c77917b5bab48c linux-3.0/Documentation/fb/s3fb.txt -38794096a836c488ecc60a150c6541ea linux-3.0/Documentation/fb/pxafb.txt -416ab219aad49a5079956b100ca113ad linux-3.0/Documentation/fb/pvr2fb.txt -f26165eaeb6e1c637ef6e6df14e72a3a linux-3.0/Documentation/fb/modedb.txt -76a7deffd03a266ff17775f4c564c707 linux-3.0/Documentation/fb/metronomefb.txt -430edade6a38665f4e24bbd436669450 linux-3.0/Documentation/fb/matroxfb.txt -5cee12d7b3354267bfcd19016eaffb12 linux-3.0/Documentation/fb/lxfb.txt -97f52992a572c65e871df6c9dbbfa75a linux-3.0/Documentation/fb/internals.txt -0494d241df78828f5027b58e9a269f58 linux-3.0/Documentation/fb/intelfb.txt -65d272a5b82d14e362832c6c3c5687c8 linux-3.0/Documentation/fb/intel810.txt -7d5c80c70bf3f8cf8ccd2dc9ecd2748a linux-3.0/Documentation/fb/gxfb.txt -a6b98baddf72076ff5d92899c83d3b5d linux-3.0/Documentation/fb/framebuffer.txt -40f37b61334d15c8471d1a0713855450 linux-3.0/Documentation/fb/fbcon.txt -94fda745812dbb972461438c194314ca linux-3.0/Documentation/fb/ep93xx-fb.txt -4fa8b9a6fc93657953759c770a1ad616 linux-3.0/Documentation/fb/efifb.txt -69277143557d37b2c4e7e38b73f2cb25 linux-3.0/Documentation/fb/deferred_io.txt -ed0d05e6750f312bb9f7cced09eaab62 linux-3.0/Documentation/fb/cmap_xfbdev.txt -7a52ee2e0b42da153dc2806065458d7e linux-3.0/Documentation/fb/cirrusfb.txt -1872510491551d71aa10d72b42ef82a9 linux-3.0/Documentation/fb/aty128fb.txt -29fc5c72f654b569eee4f9716b3ef3d5 linux-3.0/Documentation/fb/arkfb.txt -df270384bd6e0b877531cd5b4ced6439 linux-3.0/Documentation/fb/00-INDEX -fc3922ae157f2590e3bb3b1858c80c0b linux-3.0/Documentation/fault-injection/provoke-crashes.txt -c6be081cb604fbccb97cec1eb1f4b9dc linux-3.0/Documentation/fault-injection/fault-injection.txt -c40ca0eb951885fe91c132cf048e247c linux-3.0/Documentation/email-clients.txt -cae33ca2a108401d9465a0589503b845 linux-3.0/Documentation/eisa.txt -15469430d6a2aba8d8c4bae3bd91e9b6 linux-3.0/Documentation/edac.txt -8609b7c611c0138a33c06923f9590799 linux-3.0/Documentation/early-userspace/buffer-format.txt -46bdae2427a3a1a73ab75207bc59f5a9 linux-3.0/Documentation/early-userspace/README -4447fa410426d3a1098c40d2fa18ab2e linux-3.0/Documentation/dynamic-debug-howto.txt -0ee1f96cf4c102f9bbcf37a402ab936a linux-3.0/Documentation/dvb/udev.txt -b9d67260d384382057a642a8b19c5b75 linux-3.0/Documentation/dvb/ttusb-dec.txt -cc1d1cb0d0c2cc94b20faaa1a62d4172 linux-3.0/Documentation/dvb/technisat.txt -4149b61202f4b6e0985e5ecdab0f5a67 linux-3.0/Documentation/dvb/readme.txt -0ed5c433cae3379a19bb2a0b4e6496cf linux-3.0/Documentation/dvb/opera-firmware.txt -3783da2c5de17992e5174a738fe1b13b linux-3.0/Documentation/dvb/lmedm04.txt -6161e210dd7a646283f1737f092e92b5 linux-3.0/Documentation/dvb/get_dvb_firmware -e01d4b03bd004e29813c79a78e8c0c6f linux-3.0/Documentation/dvb/faq.txt -b2cf69dc516a7de8e384678d2cd1341a linux-3.0/Documentation/dvb/contributors.txt -6c732e63757b7afd48e08d89cbaa8b42 linux-3.0/Documentation/dvb/ci.txt -db44954afad626fe5ba06673e9b338aa linux-3.0/Documentation/dvb/cards.txt -b9b6ecc73294929ce52a57bfee20b461 linux-3.0/Documentation/dvb/bt8xx.txt -c01dfa5fab68e7f8c3faf6dffcbbd66a linux-3.0/Documentation/dvb/avermedia.txt -d7b74dba9df44fdcb119c603039b65d5 linux-3.0/Documentation/dvb/README.dvb-usb -dd17f0b2ebd239b88d2d0be60ee4ce5d linux-3.0/Documentation/driver-model/porting.txt -268eebde9073cbf1dc25e0f0d867b8c5 linux-3.0/Documentation/driver-model/platform.txt -5958dd53a13948f8c16605b0d953645e linux-3.0/Documentation/driver-model/overview.txt -cd1329e76ce603010ada43699810050d linux-3.0/Documentation/driver-model/driver.txt -0e1f5264fd1437d94c2e4a099c685677 linux-3.0/Documentation/driver-model/devres.txt -a5a57a5b6f45f1d242ca2e4cbb5c9fa0 linux-3.0/Documentation/driver-model/device.txt -ddd619f96d4a818af17cdce8fc2a8812 linux-3.0/Documentation/driver-model/class.txt -3113da3cc74ebef46c405dce1f09ff89 linux-3.0/Documentation/driver-model/bus.txt -fc25404fa73193552d651c291981a103 linux-3.0/Documentation/driver-model/binding.txt -4ee6db15e4696e9333759d3ddba1d0b2 linux-3.0/Documentation/dontdiff -dde7e371be7c016c27710492716bee50 linux-3.0/Documentation/dmaengine.txt -9153f4aeb7b6e05375c315c24fc7a138 linux-3.0/Documentation/devicetree/booting-without-of.txt -217420a130f6af31134203275b4e938c linux-3.0/Documentation/devicetree/bindings/xilinx.txt -2a4cda3b6be78cb6133960831f9026ab linux-3.0/Documentation/devicetree/bindings/x86/timer.txt -ed49ffb8b9f7bc0026e3e436a91aa27e linux-3.0/Documentation/devicetree/bindings/x86/interrupt.txt -94726604d4a6eeadcd103912a8c551fe linux-3.0/Documentation/devicetree/bindings/x86/ce4100.txt -394e62942cc2d24d97c24b4130485434 linux-3.0/Documentation/devicetree/bindings/usb/usb-ehci.txt -90a3f6bb85999575db46f8b9c957b110 linux-3.0/Documentation/devicetree/bindings/usb/fsl-usb.txt -0295c446af94a0d78e71bc7cfc9e6d97 linux-3.0/Documentation/devicetree/bindings/spi/spi_oc_tiny.txt -8ba41fdb398e9fd1de31cbf62a7fd88d linux-3.0/Documentation/devicetree/bindings/spi/spi_altera.txt -9471930e433d6e23e5254c664c5ce212 linux-3.0/Documentation/devicetree/bindings/spi/spi-bus.txt -0689c473c24a70b4b507f1fe7b9aa90d linux-3.0/Documentation/devicetree/bindings/spi/fsl-spi.txt -1a4f0a5542d8031b98f8aac955c075d2 linux-3.0/Documentation/devicetree/bindings/serio/altera_ps2.txt -ac59f062cb77aadebc7739bb8fa19e40 linux-3.0/Documentation/devicetree/bindings/serial/altera_uart.txt -22e2685f095d80d7669f89d5584b405e linux-3.0/Documentation/devicetree/bindings/serial/altera_jtaguart.txt -7e39fcc7b3ce23629095f3396bb025e4 linux-3.0/Documentation/devicetree/bindings/rtc/rtc-cmos.txt -4b94d53efdb609bb4a4906a68fffcb21 linux-3.0/Documentation/devicetree/bindings/powerpc/nintendo/wii.txt -5d8c053f0483bcefe64225f1c4fb5c3e linux-3.0/Documentation/devicetree/bindings/powerpc/nintendo/gamecube.txt -9e140563d662940cf0282db3887a843f linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/ssi.txt -48aaf9369e4c618b081204cdc7778689 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/sec.txt -f965602d1e7c72c5bdeb32667d3e3ee2 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/pmc.txt -b8b437a9a948caa6f63c5e0dbd86e61b linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/msi-pic.txt -67ab6159155d33fdd7e219a1084c08dd linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/mpic.txt -bb289bd59b439cf9f4a798a79f3b9ea9 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/mpic-timer.txt -7b45a86eb274d006f61fc48f2d6f15b4 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/mpc5200.txt -f4b61c9b369b6081fe6d1cc73f1ef0b0 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/mpc5121-psc.txt -d59316505afe8150b497efefe64bef1e linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/mcu-mpc8349emitx.txt -84eae1861cc0abdd4209976f1598226b linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/mcm.txt -c4cb14f6d8523c904640b4f20b765dd3 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/lbc.txt -e66670bdbb05851ea91c833d0f421cac linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/ifc.txt -eccbcad3458dd51f2d5cd19ca110cde1 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/guts.txt -6aec352fb7d832b761f8ef03bb84b86d linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/gtm.txt -65303e2dfde394c886d0f7670205c166 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/ecm.txt -393b1a3c50b9934a0d737c48246736ed linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/dma.txt -17e2d2030dd1e1487f78088b3cb83a84 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/diu.txt -745ee3156d00654a4330c23e72a97b53 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/serial.txt -23f889b1c567d6e2ff2bdacb894a259c linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/qe/usb.txt -90b45bad2ca3c7d1d63d0d36187ce92f linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/qe/ucc.txt -0853fc8cca41edc93af850a3a92c656c linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/qe/pincfg.txt -27ee52a27e756d8913918a97fbf3aae0 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/qe/par_io.txt -a661f3ed11eb61c4bbef8247d0caab85 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/qe/firmware.txt -3ee0937ebc7d4e70447467b56bcee0eb linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/qe.txt -e5d9eaab1e9d6025ba7c0a18761dbf1e linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/network.txt -997998eec7b04e3337e7d1196cc0cbd5 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/gpio.txt -75615e7aee58d54301b6c22fecb6fa9f linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/cpm/usb.txt -62f6afd7c4d89832722c825ce156eee4 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/cpm/pic.txt -0dca364b897459a1ff177a7bfa49168f linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/cpm/i2c.txt -00d9c8bf8d061bc38ad36e77e0d812f5 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/cpm/brg.txt -422b73063a3741ad1bfdb3c8bf37dea6 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/cpm.txt -0387b4931f4c4cf7f021005fb918b7c3 linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/cache_sram.txt -1f78cba45c8f7fd446b8d82837c165da linux-3.0/Documentation/devicetree/bindings/powerpc/fsl/board.txt -4419fa3f3c6d48d0a5d2b2a231488507 linux-3.0/Documentation/devicetree/bindings/powerpc/4xx/reboot.txt -faff6a80dda3a9ffb901508d30963a2f linux-3.0/Documentation/devicetree/bindings/powerpc/4xx/ppc440spe-adma.txt -ba73bedf33274b02e651fda8940895a1 linux-3.0/Documentation/devicetree/bindings/powerpc/4xx/ndfc.txt -b0f26fa2460914d83b57b00105101503 linux-3.0/Documentation/devicetree/bindings/powerpc/4xx/emac.txt -108282b57003cb35a79452e6f27cf35c linux-3.0/Documentation/devicetree/bindings/powerpc/4xx/cpm.txt -e0223bff89b2e3d7a4bf019b6835ffe7 linux-3.0/Documentation/devicetree/bindings/pci/83xx-512x-pci.txt -c6fb05c091a104fd898c9bac4dc8abd6 linux-3.0/Documentation/devicetree/bindings/open-pic.txt -eb8c42c3f731852fba38dd38273b6015 linux-3.0/Documentation/devicetree/bindings/net/phy.txt -d393a13abd6b617ae10784457bae022f linux-3.0/Documentation/devicetree/bindings/net/mdio-gpio.txt -d44bb2e502798177799a15c0c1033f53 linux-3.0/Documentation/devicetree/bindings/net/fsl-tsec-phy.txt -cb46b7deb4d3322036f63e6b212c281a linux-3.0/Documentation/devicetree/bindings/net/can/sja1000.txt -e0e2f77d8c5cb253e8003a6ac6600088 linux-3.0/Documentation/devicetree/bindings/net/can/mpc5xxx-mscan.txt -f99905717351bc15f0a61a611ea69752 linux-3.0/Documentation/devicetree/bindings/net/can/fsl-flexcan.txt -174300b868eaaa5f0792bcee740bda81 linux-3.0/Documentation/devicetree/bindings/mtd/mtd-physmap.txt -b4a752dc60850bfda35b4a0dc409d5ea linux-3.0/Documentation/devicetree/bindings/mtd/fsl-upm-nand.txt -0871e4d2b0dc037202d7605de677531d linux-3.0/Documentation/devicetree/bindings/mmc/mmc-spi-slot.txt -ff9e4a079e7fb833889d35efff76ef42 linux-3.0/Documentation/devicetree/bindings/mmc/fsl-esdhc.txt -978dafc5a83549bc529c09959d17f942 linux-3.0/Documentation/devicetree/bindings/marvell.txt -4a72ab04c212fc8db9368fde781d3725 linux-3.0/Documentation/devicetree/bindings/i2c/fsl-i2c.txt -2bee836eed1915ff20e4e68ed8d7c7b9 linux-3.0/Documentation/devicetree/bindings/i2c/ce4100-i2c.txt -2ccaea9972020837839012d6c2143730 linux-3.0/Documentation/devicetree/bindings/hwmon/ads1015.txt -392f4a0d1efd2a0dfc5e2f4ce9844e0c linux-3.0/Documentation/devicetree/bindings/gpio/led.txt -3b233790fec8c80afb5c4189e5bee09e linux-3.0/Documentation/devicetree/bindings/gpio/gpio.txt -326d2346e51268ea45937bf6c8ff3221 linux-3.0/Documentation/devicetree/bindings/gpio/8xxx_gpio.txt -1a8391d606841ceb5d133767eae96ec7 linux-3.0/Documentation/devicetree/bindings/fb/sm501fb.txt -9853d1075ca6e1713f5e80d8d5888a94 linux-3.0/Documentation/devicetree/bindings/eeprom.txt -65c1d635da55d69dcde3099126a2a2b7 linux-3.0/Documentation/devicetree/bindings/crypto/fsl-sec4.txt -9a6ac0ab3746904b48a41d60649803c7 linux-3.0/Documentation/devicetree/bindings/ata/fsl-sata.txt -60631f1cff2b6dc81906235477ec2c4c linux-3.0/Documentation/devicetree/00-INDEX -ecc76fed5ef95315ecc0e1cfb6149d7a linux-3.0/Documentation/devices.txt -b1c12f259ec3e882481fb9b86c138089 linux-3.0/Documentation/device-mapper/zero.txt -a00b4c5acd53ea40df2d7eece610eceb linux-3.0/Documentation/device-mapper/striped.txt -3bf017470e568bb31489a2e03aac0b3e linux-3.0/Documentation/device-mapper/snapshot.txt -d07e41d82efb38be1e1da80ed7178f0b linux-3.0/Documentation/device-mapper/linear.txt -178248ec9308580124974c69558cdc8d linux-3.0/Documentation/device-mapper/kcopyd.txt -18c0f16dc7f160eab256d41a2a3220b6 linux-3.0/Documentation/device-mapper/dm-uevent.txt -c6e04dadf33284c7bd913002a4bb31eb linux-3.0/Documentation/device-mapper/dm-service-time.txt -d60868a99e191462ef260204d439bc31 linux-3.0/Documentation/device-mapper/dm-raid.txt -4d906470d2f76b65fd022539d5f12541 linux-3.0/Documentation/device-mapper/dm-queue-length.txt -f0a588a3e92b18b79851a5eae679f6ce linux-3.0/Documentation/device-mapper/dm-log.txt -a5f1fd6561c82279cf959ceb0af69a9f linux-3.0/Documentation/device-mapper/dm-io.txt -1b5af5c3ddb170ed09b90ff624c3f20c linux-3.0/Documentation/device-mapper/dm-flakey.txt -9143616efe72c1413df20066dc717d8c linux-3.0/Documentation/device-mapper/dm-crypt.txt -a0a41208fef1e5f787176c0014824f5e linux-3.0/Documentation/device-mapper/delay.txt -d7013aff126db327f74b4e185e1eeb30 linux-3.0/Documentation/development-process/8.Conclusion -d49c20222ea405265ae2b0a406d8d510 linux-3.0/Documentation/development-process/7.AdvancedTopics -d7b44c0120d9bd239c593df018faf091 linux-3.0/Documentation/development-process/6.Followthrough -ab7c1b58ad272a548395bc5691b5b5a4 linux-3.0/Documentation/development-process/5.Posting -0d25499dc43112233242dd475245a8ec linux-3.0/Documentation/development-process/4.Coding -269c8c883ca243226bb8cf33d31f7a4a linux-3.0/Documentation/development-process/3.Early-stage -2aa702652b02073d234eddb1ef185991 linux-3.0/Documentation/development-process/2.Process -7705ddfe95ee9cd7da53510cf95120c7 linux-3.0/Documentation/development-process/1.Intro -d5324f7ddcfbf19eb00e4c81bbb5cb7f linux-3.0/Documentation/dell_rbu.txt -a58d95e96be1ca24c5946c6636c4e041 linux-3.0/Documentation/debugging-via-ohci1394.txt -c3b0d7040e83f85b5593dac628b3ffa5 linux-3.0/Documentation/debugging-modules.txt -ad88b9a2d9b547a81ec3f28006a897bc linux-3.0/Documentation/dcdbas.txt -cea76759e24fb66610e29e9ac6f5ad9d linux-3.0/Documentation/crypto/descore-readme.txt -8b49ca6447765923a71c9f5f1973a710 linux-3.0/Documentation/crypto/async-tx-api.txt -08ba80d7d204943380296698a9cb99b9 linux-3.0/Documentation/crypto/api-intro.txt -605c3391d9fd96acce003c92cae65385 linux-3.0/Documentation/cris/README -4ead2141d532dfaf1057cd2964ced3f4 linux-3.0/Documentation/cputopology.txt -b2c2c06712b1dca156d08b74237038b3 linux-3.0/Documentation/cpuidle/sysfs.txt -ea22c4a56a15c6a93adb6e70a9e1e977 linux-3.0/Documentation/cpuidle/governor.txt -722b48a9092b5729cf1312121eab199d linux-3.0/Documentation/cpuidle/driver.txt -b22c2eec6278ae45770e1ec10612946e linux-3.0/Documentation/cpuidle/core.txt -d9d096434110f5c017ab27ea397cee1d linux-3.0/Documentation/cpu-load.txt -f3805a5085314a39bd045260e626740b linux-3.0/Documentation/cpu-hotplug.txt -ad07a939237de1005e2e20facd635d1e linux-3.0/Documentation/cpu-freq/user-guide.txt -b40d654dea60cc2a843d029e7cb64a78 linux-3.0/Documentation/cpu-freq/pcc-cpufreq.txt -b587f77fc2d125c1ce9bd9c3ae4588b1 linux-3.0/Documentation/cpu-freq/index.txt -34a790328435fb77f4f971373aadc1e7 linux-3.0/Documentation/cpu-freq/governors.txt -b86670c1dd7584e2bbd670dcec509553 linux-3.0/Documentation/cpu-freq/cpufreq-stats.txt -f3939cacd2ce8f8c55471aec8e2b16d0 linux-3.0/Documentation/cpu-freq/cpufreq-nforce2.txt -3a399b6f8ee4f20bf2aae2c30aa58dd8 linux-3.0/Documentation/cpu-freq/cpu-drivers.txt -35d14dcfa07912fb5f518120299feaf6 linux-3.0/Documentation/cpu-freq/core.txt -4c3c989f5d8f3e33060ee85f023c66a1 linux-3.0/Documentation/cpu-freq/amd-powernow.txt -23628a9962ebd3d5e1a2c51414445c9f linux-3.0/Documentation/console/console.txt -fa367c9362b9dd75ddc81f871e19be9f linux-3.0/Documentation/connector/ucon.c -2c535770db5a1fa47881388161acdd6a linux-3.0/Documentation/connector/connector.txt -cf8d4c06063ded9a9e66e3440b659950 linux-3.0/Documentation/connector/cn_test.c -a7d4f33b659498b4d36b621f774cb670 linux-3.0/Documentation/connector/Makefile -a3923b5ecd06290829f8719f3316576b linux-3.0/Documentation/connector/.gitignore -12319f75387caa6025b5c027a66b6ca0 linux-3.0/Documentation/coccinelle.txt -3be2b7f00c13b160d5dba390b2ee8a54 linux-3.0/Documentation/circular-buffers.txt -5625e72e38d28916d98380ea3f0f8862 linux-3.0/Documentation/cgroups/resource_counter.txt -47b541dbaa1aa7d30758281fdbeea5eb linux-3.0/Documentation/cgroups/memory.txt -d64c26d6dcb31fea8e4243dea6cd6886 linux-3.0/Documentation/cgroups/memcg_test.txt -02ff7adda7b2ece1c1ba62d46f6a0bde linux-3.0/Documentation/cgroups/freezer-subsystem.txt -ab6355dd21de5e3a1be5fe8d5f542c8c linux-3.0/Documentation/cgroups/devices.txt -e88c69a9d0a675608bfb9abd1df21aec linux-3.0/Documentation/cgroups/cpusets.txt -e1ad006a3f7caab4a235cf4f8f73f993 linux-3.0/Documentation/cgroups/cpuacct.txt -ca3d83f178ada5789b5371624019c827 linux-3.0/Documentation/cgroups/cgroups.txt -0f0fd858e37a28e1b7df5d921fcb5d17 linux-3.0/Documentation/cgroups/cgroup_event_listener.c -dc6b9da8f0e96c83331b389cee1e654f linux-3.0/Documentation/cgroups/blkio-controller.txt -5320f3bf4c4bf48c11dd4ef2886df85c linux-3.0/Documentation/cgroups/00-INDEX -2505f373388b87b582bd20ec27a0e76e linux-3.0/Documentation/cdrom/packet-writing.txt -9c4a1af21ed48209fa108db155c18ed9 linux-3.0/Documentation/cdrom/ide-cd -42333639ad8a0d0b53214b136f611432 linux-3.0/Documentation/cdrom/cdrom-standard.tex -9ec993902c3a21e3404479386a905d5f linux-3.0/Documentation/cdrom/Makefile -9746d5498dca4571ee7f464bafe4034d linux-3.0/Documentation/cdrom/00-INDEX -5db6b816869d89822759bca684024430 linux-3.0/Documentation/cachetlb.txt -e66a3e2b626a4dfcb4c0b1e8d67afef4 linux-3.0/Documentation/bus-virt-phys-mapping.txt -f5ce90fb4a0ef97d23914fef37fba39d linux-3.0/Documentation/btmrvl.txt -3a61d033e71cff3c75c778dad89ac565 linux-3.0/Documentation/bt8xxgpio.txt -4263bbce1595bdb3923bcb7885f866f5 linux-3.0/Documentation/braille-console.txt -49bf446c05cbc3acfe5904051bdd2488 linux-3.0/Documentation/blockdev/ramdisk.txt -84ec5b9fa951d526de8985f67fd76e2b linux-3.0/Documentation/blockdev/paride.txt -3663e25dec9642b46106cfc941b2ee25 linux-3.0/Documentation/blockdev/nbd.txt -5cb6f5d2ef4a259f8c3a62c3fadc9007 linux-3.0/Documentation/blockdev/mflash.txt -75a923866284fc3bf2d4f3347d25e2c5 linux-3.0/Documentation/blockdev/floppy.txt -377daa861acc5bdadae1eae328981f85 linux-3.0/Documentation/blockdev/drbd/node-states-8.dot -9c69dcb6b2eaa8aaa9d2fb698b57a54c linux-3.0/Documentation/blockdev/drbd/drbd-connection-state-overview.dot -cdbb4987af8332d6db8189c92bb7a5b7 linux-3.0/Documentation/blockdev/drbd/disk-states-8.dot -d88dbdad647cb461feafb356e2feb0ae linux-3.0/Documentation/blockdev/drbd/conn-states-8.dot -31c129e7fe7d6f2aa52f0501d03c35b2 linux-3.0/Documentation/blockdev/drbd/README.txt -84337814a0dfce6b2ff27d9de77fac13 linux-3.0/Documentation/blockdev/drbd/DRBD-data-packets.svg -48f746336c826a8b7eb94901147c99d4 linux-3.0/Documentation/blockdev/drbd/DRBD-8.3-data-packets.svg -abf54a58635a45a8a11844d17708a6c2 linux-3.0/Documentation/blockdev/cpqarray.txt -92a7dc36df17f8a78aa5287df3eabd00 linux-3.0/Documentation/blockdev/cciss.txt -ecca8bb69bcc7c4333fe3b369f30e81a linux-3.0/Documentation/blockdev/README.DAC960 -c6b2d48732c981e17fd5e302c5eda6af linux-3.0/Documentation/blockdev/00-INDEX -2bb8c94435fefe3e2fc411f08fe5174c linux-3.0/Documentation/block/writeback_cache_control.txt -f8fbfa12c9b807118f0e9f83aa32b8a0 linux-3.0/Documentation/block/switching-sched.txt -16d721ca18a8ad20c0379aa95df892e9 linux-3.0/Documentation/block/stat.txt -dcb08444bb481f5fb435276fc9510000 linux-3.0/Documentation/block/request.txt -697a2fa099d3af307971530124abe0d7 linux-3.0/Documentation/block/queue-sysfs.txt -7172374ed9bab50b0127349f56c8f18b linux-3.0/Documentation/block/ioprio.txt -547c8eea80c7f5bffbc3a5f73b18a2c5 linux-3.0/Documentation/block/deadline-iosched.txt -162d4eb5e2891f5e233079e1b444a46f linux-3.0/Documentation/block/data-integrity.txt -3e4780cbfb9d6dcfdd1349743aca6b8f linux-3.0/Documentation/block/cfq-iosched.txt -b0fc4321d9b53ee6f9f23005058e366f linux-3.0/Documentation/block/capability.txt -923e7d2c8b7b2937517f57fc4b0769eb linux-3.0/Documentation/block/biodoc.txt -caa6d6ffc861ed868f24d15af59d8f5e linux-3.0/Documentation/block/00-INDEX -53e4a502aa11d643a866997db339de5a linux-3.0/Documentation/blackfin/gptimers-example.c -c4a2e3de87ccacb2a9569f2f1cd78a90 linux-3.0/Documentation/blackfin/bfin-spi-notes.txt -d273d77737379fc74042d666cf5dc384 linux-3.0/Documentation/blackfin/bfin-gpio-notes.txt -f56bce65420e1aa4b5e52169683a84b8 linux-3.0/Documentation/blackfin/Makefile -f5eb0c5305f41629ffdde56548143360 linux-3.0/Documentation/blackfin/00-INDEX -8936b928d685bdf98f83f1b3e86562a4 linux-3.0/Documentation/binfmt_misc.txt -1c70596bd41eb49077af5e91e16d2967 linux-3.0/Documentation/basic_profiling.txt -e81b536c2095eb53f9209e26b914f426 linux-3.0/Documentation/bad_memory.txt -73a1f0a9ccdd29958f2c4c641013cce6 linux-3.0/Documentation/auxdisplay/ks0108 -27de1d5e7aa5759fa49650a1f20f0a39 linux-3.0/Documentation/auxdisplay/cfag12864b-example.c -e1ac4cf580dbf6c7fc87ecd3c86f4e27 linux-3.0/Documentation/auxdisplay/cfag12864b -98fa796553166e8dbecdd89065ef1b84 linux-3.0/Documentation/auxdisplay/Makefile -cb0453c88ccc8fe0de2cd6c8aea5faa2 linux-3.0/Documentation/auxdisplay/.gitignore -5f137031d46c73d1372c34afa6507f6c linux-3.0/Documentation/atomic_ops.txt -c103992ae7bed459c0e21dd7ac42cf10 linux-3.0/Documentation/arm/tcm.txt -b302925aef5273373299a5804e93e166 linux-3.0/Documentation/arm/swp_emulation -c884477389bf8211e291a0f9148619bc linux-3.0/Documentation/arm/pxa/mfp.txt -481496168a7cb47ea79cc803421f7b33 linux-3.0/Documentation/arm/nwfpe/TODO -fae706d01052029d798214c1a296e06f linux-3.0/Documentation/arm/nwfpe/README.FPE -290424785f145deb6c49916f833aeff0 linux-3.0/Documentation/arm/nwfpe/README -6e5490e3fd7ce73630b782c18e9322a9 linux-3.0/Documentation/arm/nwfpe/NOTES -bd7c5ebdb65aa8822477112b9340957d linux-3.0/Documentation/arm/msm/gpiomux.txt -0856e186bab163d066b626eb4d251a0b linux-3.0/Documentation/arm/memory.txt -1b9c8fe313f52208d23e7bc3cd6a5eba linux-3.0/Documentation/arm/mem_alignment -d754bd51d3b7022670808056ed645f2f linux-3.0/Documentation/arm/VFP/release-notes.txt -167c5852c3eb5155a33d9d2a7f3f4a9f linux-3.0/Documentation/arm/Setup -c976ff4bfb5ec280cb3eb55aa77a4a81 linux-3.0/Documentation/arm/Samsung/clksrc-change-registers.awk -58950305a0d329294029214495ed7735 linux-3.0/Documentation/arm/Samsung/Overview.txt -ffb5056b37988ab85f8d1d9a635ac0cd linux-3.0/Documentation/arm/Samsung/GPIO.txt -1aafcec81e7d830c23307c228c06283f linux-3.0/Documentation/arm/Samsung-S3C24XX/USB-Host.txt -8a82a97b678bbad0760ac8ffded6a2a5 linux-3.0/Documentation/arm/Samsung-S3C24XX/Suspend.txt -8bc6ca3aa22469beeda0724fe5504beb linux-3.0/Documentation/arm/Samsung-S3C24XX/SMDK2440.txt -770a6533e8187854a58c1edef6764194 linux-3.0/Documentation/arm/Samsung-S3C24XX/S3C2413.txt -02ef50def244ddeba7976095755e92af linux-3.0/Documentation/arm/Samsung-S3C24XX/S3C2412.txt -a7e69845c5f955581675d0466e886b93 linux-3.0/Documentation/arm/Samsung-S3C24XX/Overview.txt -17e20e6d9e253f805cafd80e8b918064 linux-3.0/Documentation/arm/Samsung-S3C24XX/NAND.txt -256c3f45d7849224bf7de5b38230548e linux-3.0/Documentation/arm/Samsung-S3C24XX/H1940.txt -355189ecae19c487dfde9ac7378b743b linux-3.0/Documentation/arm/Samsung-S3C24XX/GPIO.txt -9271853c7d30c98c0c99aae9aaaed048 linux-3.0/Documentation/arm/Samsung-S3C24XX/EB2410ITX.txt -467c616d1aa34060b3c3fb2b0a1e1cc5 linux-3.0/Documentation/arm/Samsung-S3C24XX/DMA.txt -6fc92d821626b75980b15a8592192f5d linux-3.0/Documentation/arm/Samsung-S3C24XX/CPUfreq.txt -d010029a1704b0b19e90d942b62d9fa8 linux-3.0/Documentation/arm/SPEAr/overview.txt -381afe5d020f383a705d6ae2ea5d3a22 linux-3.0/Documentation/arm/SH-Mobile/zboot-rom-mmcif.txt -79c1c5a2ca816dde54468ec52d27d407 linux-3.0/Documentation/arm/SH-Mobile/vrl4.c -9610fd39a333b8c5662df3d80ff3ad0d linux-3.0/Documentation/arm/SH-Mobile/Makefile -7018266d4f5eda5979376ac279c5c00d linux-3.0/Documentation/arm/SA1100/serial_UART -2abb528716b1fbc8757091fe91873696 linux-3.0/Documentation/arm/SA1100/nanoEngine -328606c9db99fa1e51028b617bd63f3d linux-3.0/Documentation/arm/SA1100/empeg -270e892bfe6aca94e522385433721766 linux-3.0/Documentation/arm/SA1100/Yopy -94c82ee466a0dead132a0e282ee64662 linux-3.0/Documentation/arm/SA1100/Victor -69abb0449901d39e68a7407a19291c01 linux-3.0/Documentation/arm/SA1100/Tifon -d07535e9dce2e3e8af0e276ba559d5d3 linux-3.0/Documentation/arm/SA1100/Pangolin -88af9f5b00c4b353db2f53438fa8dda9 linux-3.0/Documentation/arm/SA1100/PLEB -155a81f61b00cb5c822d72d344cc165a linux-3.0/Documentation/arm/SA1100/LART -97494c7b401aae9e4a8a0e0a684ccc8c linux-3.0/Documentation/arm/SA1100/Itsy -a71d5270aac5a91f67b3dbfbe78dce06 linux-3.0/Documentation/arm/SA1100/HUW_WEBPANEL -8936814df13e7a64465c699d4e6ba780 linux-3.0/Documentation/arm/SA1100/GraphicsMaster -f11bb4060a01799884dbc9202582f580 linux-3.0/Documentation/arm/SA1100/GraphicsClient -99dd855466674420c9273ec96e00cd68 linux-3.0/Documentation/arm/SA1100/FreeBird -c442a589bcb17af2e3ff4561cad92118 linux-3.0/Documentation/arm/SA1100/CERF -3791bab8fb0e5643eb469d920e9a68ec linux-3.0/Documentation/arm/SA1100/Brutus -f491cac9746b11047d7a20b14eedf137 linux-3.0/Documentation/arm/SA1100/Assabet -aec69fb0ef48e424451c28de1694806e linux-3.0/Documentation/arm/SA1100/ADSBitsy -f67e33fc662a15e0124da1b44e1372fe linux-3.0/Documentation/arm/README -29c3c00501d6e8dce9fc3416c8d67f05 linux-3.0/Documentation/arm/Porting -e95729acb35ad36a1f6042d154473668 linux-3.0/Documentation/arm/OMAP/omap_pm -a29392e55f64d65cea108154ae9b5650 linux-3.0/Documentation/arm/OMAP/DSS -ed1f7319203f0cf0799758da27433225 linux-3.0/Documentation/arm/Netwinder -2f77f9d93ab8e9f4d662490ddb4665cf linux-3.0/Documentation/arm/Interrupts -c14546155556c92b8dc982cf8252eccf linux-3.0/Documentation/arm/IXP4xx -1cbae5c33f1c3e8101e3e96e90527532 linux-3.0/Documentation/arm/IXP2000 -296b7e1e1e9dec97c71be14d2a78534c linux-3.0/Documentation/arm/Booting -6eb24fed6578c3bc2af4b0c624133954 linux-3.0/Documentation/arm/00-INDEX -8d65812b01d64c9df1529509083e189d linux-3.0/Documentation/applying-patches.txt -46ee912dc3a9304cf1588f44a9379c0e linux-3.0/Documentation/aoe/udev.txt -deac4be67c424f370b369545acd536ea linux-3.0/Documentation/aoe/udev-install.sh -8883f243748c9ee74bcb62680baec33d linux-3.0/Documentation/aoe/todo.txt -9d842b0e04548c9419c167d06a8e89f4 linux-3.0/Documentation/aoe/status.sh -9419631f2b68fd350ab071c1d35b11e7 linux-3.0/Documentation/aoe/mkshelf.sh -b5cc07df128bfd327a0bde2c65d8005c linux-3.0/Documentation/aoe/mkdevs.sh -58bfcce81388fd3afb13f73dd7990465 linux-3.0/Documentation/aoe/autoload.sh -6f628e9a997aa83230561f4d0863b595 linux-3.0/Documentation/aoe/aoe.txt -75eb886c142852172bdb88c453acf8db linux-3.0/Documentation/acpi/method-tracing.txt -fee0496706e5537feb2b8cb44880ca5a linux-3.0/Documentation/acpi/method-customizing.txt -6b3b13cd88e68f88ffe95218d1fb429c linux-3.0/Documentation/acpi/dsdt-override.txt -30dfc4abe0b374f7270fc34a4d4768a4 linux-3.0/Documentation/acpi/debug.txt -14653b0eb2dabf5c6dc5b413d5ac5760 linux-3.0/Documentation/acpi/apei/output_format.txt -7b3a1264d096c04e47a0b1f11a788b75 linux-3.0/Documentation/acpi/apei/einj.txt -feacb1c9e216d92ca8850d00e3995a79 linux-3.0/Documentation/accounting/taskstats.txt -fb66f44a6f8c6ad737ba57bdcb502d1e linux-3.0/Documentation/accounting/taskstats-struct.txt -6d4c2dc9cb71edc131eb10b4c53ed932 linux-3.0/Documentation/accounting/getdelays.c -d6feb5603ff21ebad35b18a6ca6d0c7e linux-3.0/Documentation/accounting/delay-accounting.txt -1bf33a4eaa49723994d9b868323a1a6d linux-3.0/Documentation/accounting/cgroupstats.txt -79e433280969098cf7da5d4187211ad5 linux-3.0/Documentation/accounting/Makefile -c9752adaced5d8fca3cfe03ec4b90b81 linux-3.0/Documentation/accounting/.gitignore -88c93a1b83277f3fc3fb07de148fd726 linux-3.0/Documentation/VGA-softcursor.txt -dc5fc047e34a91260fc87ea557303c1a linux-3.0/Documentation/SubmittingPatches -056f7ad765f10177cf150a4a983c4c1e linux-3.0/Documentation/SubmittingDrivers -f27e6f382a3ad6b6fc8bb1b48ab1f82b linux-3.0/Documentation/SubmitChecklist -3cc1e511d139bfd14ad6fbc785aae599 linux-3.0/Documentation/SecurityBugs -58ce960675582f8414019f33a27e1260 linux-3.0/Documentation/SM501.txt -bb81ce113927582c1513704f360129fd linux-3.0/Documentation/SAK.txt -c4e9f67f6cdea13c26645473355c7d14 linux-3.0/Documentation/RCU/whatisRCU.txt -70030108865d67eb1dbc9f9092788325 linux-3.0/Documentation/RCU/trace.txt -5104049e4a4d355aac8dfac799b8dd28 linux-3.0/Documentation/RCU/torture.txt -775ebda6d5978161d62b35d23123c8ac linux-3.0/Documentation/RCU/stallwarn.txt -237e74f6bdd4dd3888e4277a303b6093 linux-3.0/Documentation/RCU/rcuref.txt -02295317c47737ae4984287a7cbf189b linux-3.0/Documentation/RCU/rculist_nulls.txt -eb24c8e964a0a591a5f6ba03bf63a60b linux-3.0/Documentation/RCU/rcubarrier.txt -54089c1b1f6301566d150f9998847603 linux-3.0/Documentation/RCU/rcu.txt -0219f4c85c0be46a291f5a9674823e05 linux-3.0/Documentation/RCU/lockdep.txt -1ba34739e9fd27842c3778cf5546b261 linux-3.0/Documentation/RCU/listRCU.txt -7b881039b569b729fac1be81b94ff552 linux-3.0/Documentation/RCU/checklist.txt -d3d810c0935808ae6923c9affe2c70da linux-3.0/Documentation/RCU/arrayRCU.txt -dee503144f207ffe46bba8b51a065f47 linux-3.0/Documentation/RCU/UP.txt -149eaee41d226324f8a6e8fb628cbf9a linux-3.0/Documentation/RCU/RTFP.txt -62a4ee4991c24b3cf2bae8326a5dab02 linux-3.0/Documentation/RCU/NMI-RCU.txt -80d9564390fde3d7111d4955af9171c1 linux-3.0/Documentation/RCU/00-INDEX -4ad193d7b0f29fc678bd254b451ee6d6 linux-3.0/Documentation/PCI/pcieaer-howto.txt -29751b2e08bcc468ae0b7b5ce3a62829 linux-3.0/Documentation/PCI/pci.txt -d1deb47d3ac60e750f1b4b0a7f2d6078 linux-3.0/Documentation/PCI/pci-iov-howto.txt -b8efc9ce4b8b6b29355a90bdd8bcbd25 linux-3.0/Documentation/PCI/pci-error-recovery.txt -2d50cce5839190ed4c5174e392a4a7fb linux-3.0/Documentation/PCI/PCIEBUS-HOWTO.txt -612b963bb3d97cd12aa9fd012a77f173 linux-3.0/Documentation/PCI/MSI-HOWTO.txt -c8b8f2bea8a46a33ce33eb18482e3494 linux-3.0/Documentation/PCI/00-INDEX -8c13f89f4c0bf4788bbe5f42cace3e1a linux-3.0/Documentation/ManagementStyle -4074552ea4030204dc37ac3f50a26fc1 linux-3.0/Documentation/Makefile -e693ef88d3d7d42c7a65a23f3975aa97 linux-3.0/Documentation/Intel-IOMMU.txt -0ef9f8f98b9eac9336c0ffb95cfc1d65 linux-3.0/Documentation/IRQ.txt -d89c8d406a2618cc19db636ba81ce4ca linux-3.0/Documentation/IRQ-affinity.txt -8b8bc6bf4528e8d82017113c17d58a37 linux-3.0/Documentation/IPMI.txt -708dfeaff28e88f7644422b13e043ac9 linux-3.0/Documentation/HOWTO -2298f6d83e56df9fcb14242557399c7e linux-3.0/Documentation/DocBook/z8530book.tmpl -56fdf0054d7a36ac07991b4d05b4bf6f linux-3.0/Documentation/DocBook/writing_usb_driver.tmpl -d6c9ab9e7da0f23550ccad15b583b262 linux-3.0/Documentation/DocBook/writing-an-alsa-driver.tmpl -240684000da28e039a2f7539e2a6d45c linux-3.0/Documentation/DocBook/v4l/vidioc-subscribe-event.xml -586088c2910a55616edb132b2a1a888a linux-3.0/Documentation/DocBook/v4l/vidioc-subdev-g-frame-interval.xml -cd73413273efc1eabcaad009a653a9f6 linux-3.0/Documentation/DocBook/v4l/vidioc-subdev-g-fmt.xml -48803f14e317a2e023f3335f597a7ad8 linux-3.0/Documentation/DocBook/v4l/vidioc-subdev-g-crop.xml -f1ec895047b12dfdf1c7084503260c21 linux-3.0/Documentation/DocBook/v4l/vidioc-subdev-enum-mbus-code.xml -baf83ca36cbe460a892e499c81864c1b linux-3.0/Documentation/DocBook/v4l/vidioc-subdev-enum-frame-size.xml -647997471e52fb99402b1a501ff4dec3 linux-3.0/Documentation/DocBook/v4l/vidioc-subdev-enum-frame-interval.xml -d8e26ed3dc5634eb87c15a4caf963908 linux-3.0/Documentation/DocBook/v4l/vidioc-streamon.xml -2300b870ffe66bda7c3fcd2dc0957e9b linux-3.0/Documentation/DocBook/v4l/vidioc-s-hw-freq-seek.xml -d7b4d909c3dcb5d1a1b51b65ed5ac036 linux-3.0/Documentation/DocBook/v4l/vidioc-reqbufs.xml -ee937096d064c258210c242f247eab41 linux-3.0/Documentation/DocBook/v4l/vidioc-querystd.xml -94ec06f8f640a60db52681f6b86c1f05 linux-3.0/Documentation/DocBook/v4l/vidioc-queryctrl.xml -f459661b39c10a59dc3ae0dcd1d94621 linux-3.0/Documentation/DocBook/v4l/vidioc-querycap.xml -64ec647c19bd021001546dbfa01496b3 linux-3.0/Documentation/DocBook/v4l/vidioc-querybuf.xml -bb72a15f960c897032ed034d38652b57 linux-3.0/Documentation/DocBook/v4l/vidioc-query-dv-preset.xml -9b4e833533a51e2a11703c1c132be570 linux-3.0/Documentation/DocBook/v4l/vidioc-qbuf.xml -386258a5b8bbaf60fd5a646527ecd786 linux-3.0/Documentation/DocBook/v4l/vidioc-overlay.xml -a1844825cfde720c90c0a18e80112dec linux-3.0/Documentation/DocBook/v4l/vidioc-log-status.xml -84984f54803e9406b2611a5bc85a8131 linux-3.0/Documentation/DocBook/v4l/vidioc-g-tuner.xml -ffc93d4867c33416712a587d6247488b linux-3.0/Documentation/DocBook/v4l/vidioc-g-std.xml -b023befae29a3ba8b64939cf0248b667 linux-3.0/Documentation/DocBook/v4l/vidioc-g-sliced-vbi-cap.xml -28ac3035d0e0aae10635e7a2f0aed07a linux-3.0/Documentation/DocBook/v4l/vidioc-g-priority.xml -ce0184308920694db3853c98d4cb824b linux-3.0/Documentation/DocBook/v4l/vidioc-g-parm.xml -5d4aeb981187d6a7a85561089f05b637 linux-3.0/Documentation/DocBook/v4l/vidioc-g-output.xml -464e639169c917d19f437f29d3c5a7f2 linux-3.0/Documentation/DocBook/v4l/vidioc-g-modulator.xml -86e0279c0fcacf8b8070f57861eec19e linux-3.0/Documentation/DocBook/v4l/vidioc-g-jpegcomp.xml -5127ff08368ac5459652aecdd0bd3111 linux-3.0/Documentation/DocBook/v4l/vidioc-g-input.xml -bd30693eed9be094e5695d35e7fbba9f linux-3.0/Documentation/DocBook/v4l/vidioc-g-frequency.xml -4226dbca4327765f52128e47882f5b6a linux-3.0/Documentation/DocBook/v4l/vidioc-g-fmt.xml -87676694ba2f578900b12b0b81b10bea linux-3.0/Documentation/DocBook/v4l/vidioc-g-fbuf.xml -efccea0f1e6ce53d11915e239ed66c46 linux-3.0/Documentation/DocBook/v4l/vidioc-g-ext-ctrls.xml -4a9447e1080936201370d65878f9500e linux-3.0/Documentation/DocBook/v4l/vidioc-g-enc-index.xml -19cba514d165b017b05edd4ce0b16fe4 linux-3.0/Documentation/DocBook/v4l/vidioc-g-dv-timings.xml -318e0d0d0d2cbf96d84030a32b7c2027 linux-3.0/Documentation/DocBook/v4l/vidioc-g-dv-preset.xml -f0f3db9a6f4fd4422c6dde7c993b6a99 linux-3.0/Documentation/DocBook/v4l/vidioc-g-ctrl.xml -1f61342b9ef3cad61c49ee647b1c5855 linux-3.0/Documentation/DocBook/v4l/vidioc-g-crop.xml -42cabcca3aeefb773408db70fb8b66b0 linux-3.0/Documentation/DocBook/v4l/vidioc-g-audioout.xml -92d6f45f4d47cb70c334be25746e7117 linux-3.0/Documentation/DocBook/v4l/vidioc-g-audio.xml -7e55767f45db2057fcf50b0154cebda3 linux-3.0/Documentation/DocBook/v4l/vidioc-enumstd.xml -ea50cdc3f5118ed3e3a31fe4ccf91615 linux-3.0/Documentation/DocBook/v4l/vidioc-enumoutput.xml -131c30285a04d0748d96d1079121419f linux-3.0/Documentation/DocBook/v4l/vidioc-enuminput.xml -b2464b66d77822887ef3cfe95c0a26d0 linux-3.0/Documentation/DocBook/v4l/vidioc-enumaudioout.xml -4dfde281fc5873456bf82842529d500f linux-3.0/Documentation/DocBook/v4l/vidioc-enumaudio.xml -cb42d55f5e0220298b80af0df216efb8 linux-3.0/Documentation/DocBook/v4l/vidioc-enum-framesizes.xml -d10eb2bd22e441ea65e2550f754d4e24 linux-3.0/Documentation/DocBook/v4l/vidioc-enum-frameintervals.xml -ed2558a0ca08fa1156c6dd791d110ff9 linux-3.0/Documentation/DocBook/v4l/vidioc-enum-fmt.xml -3de0c1b5b67c033886690f3aa82eb159 linux-3.0/Documentation/DocBook/v4l/vidioc-enum-dv-presets.xml -9d3e3cb86697a622a214aba3e7973a71 linux-3.0/Documentation/DocBook/v4l/vidioc-encoder-cmd.xml -ddb8481998d813d0753ca80cfe90152b linux-3.0/Documentation/DocBook/v4l/vidioc-dqevent.xml -58a53f149fa7ef0a3aafca5d4bd0e5ec linux-3.0/Documentation/DocBook/v4l/vidioc-dbg-g-register.xml -52ae99a51f8d800a6e87447c8135aac5 linux-3.0/Documentation/DocBook/v4l/vidioc-dbg-g-chip-ident.xml -cbfb5ff90700d603dfb67deb898d28c4 linux-3.0/Documentation/DocBook/v4l/vidioc-cropcap.xml -6c35eb1149c48fb0ced2479d7d4de932 linux-3.0/Documentation/DocBook/v4l/videodev2.h.xml -744060c41abd975e52378a343fd89fc4 linux-3.0/Documentation/DocBook/v4l/vbi_hsync.pdf -fb72f4bdf51180877e941a222b47805b linux-3.0/Documentation/DocBook/v4l/vbi_hsync.gif -c3c93a5b781e77a02eb0d38125b13112 linux-3.0/Documentation/DocBook/v4l/vbi_625.pdf -f8e61db0c34eeafed821d977fcaa845d linux-3.0/Documentation/DocBook/v4l/vbi_625.gif -de6ee1402e0c9f011d4ff01892f561a8 linux-3.0/Documentation/DocBook/v4l/vbi_525.pdf -6c056132f7f05394b8efc9563d60de0c linux-3.0/Documentation/DocBook/v4l/vbi_525.gif -daaae9555570f2994ecb8212693c74b0 linux-3.0/Documentation/DocBook/v4l/v4l2grab.c.xml -c58be812a2f94ec5a521d66beedf53bc linux-3.0/Documentation/DocBook/v4l/v4l2.xml -d95c1b67af1225a5d4f7ffe2d17d00d6 linux-3.0/Documentation/DocBook/v4l/subdev-formats.xml -b3f423932923097d52fb399dac29aba5 linux-3.0/Documentation/DocBook/v4l/remote_controllers.xml -c9916540a06e1ea40d4fd764872f040e linux-3.0/Documentation/DocBook/v4l/planar-apis.xml -9192c12a5b72c88bcfd6effc3e0f65bc linux-3.0/Documentation/DocBook/v4l/pixfmt.xml -0ac44041d204808b79ca2ba7c169561e linux-3.0/Documentation/DocBook/v4l/pixfmt-yvyu.xml -45ecd2c8c72c182348ea1066edcaef8d linux-3.0/Documentation/DocBook/v4l/pixfmt-yuyv.xml -ddbd253a62d7d20720ba4d82fcb23351 linux-3.0/Documentation/DocBook/v4l/pixfmt-yuv422p.xml -7a1e1f19b790a74b9f9d78b2ab055799 linux-3.0/Documentation/DocBook/v4l/pixfmt-yuv420m.xml -c6c9772bd7324b7e95d8f85bd875ac1f linux-3.0/Documentation/DocBook/v4l/pixfmt-yuv420.xml -dbcdfb05a98caafbb93b6215c6aa42cc linux-3.0/Documentation/DocBook/v4l/pixfmt-yuv411p.xml -3fee478c1a034bdd374de49bf17741af linux-3.0/Documentation/DocBook/v4l/pixfmt-yuv410.xml -ed7ba840e9b5542d75ad556a16692d3b linux-3.0/Documentation/DocBook/v4l/pixfmt-y41p.xml -0851a83912161b3fc3875d40956d700b linux-3.0/Documentation/DocBook/v4l/pixfmt-y16.xml -0f5816a4f9deaf904d62d21dd823bd39 linux-3.0/Documentation/DocBook/v4l/pixfmt-y12.xml -66358b3c7766aa1bded2c81d9d7f7c32 linux-3.0/Documentation/DocBook/v4l/pixfmt-y10b.xml -08accaca08e51c7dc201fb7998bdc4ec linux-3.0/Documentation/DocBook/v4l/pixfmt-y10.xml -60c58c31cf42eb45d3648d4d8f0d0aff linux-3.0/Documentation/DocBook/v4l/pixfmt-vyuy.xml -a1c219fa0918b29bc48f227eef94645f linux-3.0/Documentation/DocBook/v4l/pixfmt-uyvy.xml -78b9c58ebc3e56e6f61905cc12cf236f linux-3.0/Documentation/DocBook/v4l/pixfmt-srggb8.xml -941a2d349b98e5aef0828ff50f7b5788 linux-3.0/Documentation/DocBook/v4l/pixfmt-srggb12.xml -47be76776238c34a35141198c178a5f3 linux-3.0/Documentation/DocBook/v4l/pixfmt-srggb10.xml -568dd92b88f62035e0fd50b0a542593b linux-3.0/Documentation/DocBook/v4l/pixfmt-sgrbg8.xml -4f51ea2b616b28cae49b04b93496f3bc linux-3.0/Documentation/DocBook/v4l/pixfmt-sgbrg8.xml -6d6b1a0e62f3611ade4df82e31246a1f linux-3.0/Documentation/DocBook/v4l/pixfmt-sbggr8.xml -8411cc5298e3266c732e2462d2cc961c linux-3.0/Documentation/DocBook/v4l/pixfmt-sbggr16.xml -3040041fd296cfd10551fc6b68fa4bb3 linux-3.0/Documentation/DocBook/v4l/pixfmt-packed-yuv.xml -7becf1eedb5f7f838fb51f03ea8f02fd linux-3.0/Documentation/DocBook/v4l/pixfmt-packed-rgb.xml -0dd3765ec1f5fef68cecd29c4d3b50e1 linux-3.0/Documentation/DocBook/v4l/pixfmt-nv16.xml -72d5b5918fba9db2e9ef69175d130c9c linux-3.0/Documentation/DocBook/v4l/pixfmt-nv12mt.xml -b3a4123250c23cb2de496d3a55aa73c6 linux-3.0/Documentation/DocBook/v4l/pixfmt-nv12m.xml -f9e083ed2c52e3cc5800a4044caf4d6b linux-3.0/Documentation/DocBook/v4l/pixfmt-nv12.xml -85e233b59eb69e1c1923332dbeb20d69 linux-3.0/Documentation/DocBook/v4l/pixfmt-m420.xml -e1948ef4dcbda686f710f56d3a30e7f5 linux-3.0/Documentation/DocBook/v4l/pixfmt-grey.xml -b2029c3a1e1a92f081853348cd69bc32 linux-3.0/Documentation/DocBook/v4l/pipeline.png -2f514e68c614983597f2ee13644cd03e linux-3.0/Documentation/DocBook/v4l/pipeline.pdf -87e88f99ec69e9c04ae8fed479efdbab linux-3.0/Documentation/DocBook/v4l/nv12mt_example.gif -3a0fd28c28638474e3e4d2be777a7e74 linux-3.0/Documentation/DocBook/v4l/nv12mt.gif -a73d83893f23a0afd2207e3e618ff4db linux-3.0/Documentation/DocBook/v4l/media-ioc-setup-link.xml -10b9ea310155fc9770daa63fe1ce0b0a linux-3.0/Documentation/DocBook/v4l/media-ioc-enum-links.xml -7981d3547faf9752ac0233ba639fddb5 linux-3.0/Documentation/DocBook/v4l/media-ioc-enum-entities.xml -dce46e300ed2ded1e5e3d6f6b3fe6d1b linux-3.0/Documentation/DocBook/v4l/media-ioc-device-info.xml -02c2588005152e340bd4f455730f3ced linux-3.0/Documentation/DocBook/v4l/media-func-open.xml -67382f1405e1fdbb5e13940374d86925 linux-3.0/Documentation/DocBook/v4l/media-func-ioctl.xml -1cc3f070d9343a5f5a02062fde32160e linux-3.0/Documentation/DocBook/v4l/media-func-close.xml -bf739fc7f6e78d387cbdec149669267b linux-3.0/Documentation/DocBook/v4l/media-controller.xml -0a5d5f32cbdbc121af81365e268b8287 linux-3.0/Documentation/DocBook/v4l/lirc_device_interface.xml -700efa2af34754cadf16571ec344d9ce linux-3.0/Documentation/DocBook/v4l/libv4l.xml -2bfecfa22078d1b47a2a333202e012b7 linux-3.0/Documentation/DocBook/v4l/keytable.c.xml -c4ffd230e3b7ad6413ef6ddf1a53f234 linux-3.0/Documentation/DocBook/v4l/io.xml -f12cc2df417fc71ed863b26488fd1613 linux-3.0/Documentation/DocBook/v4l/func-write.xml -afc51726bef0041f3039f3f8264d819f linux-3.0/Documentation/DocBook/v4l/func-select.xml -c63860297f897461d103e1defccc54b4 linux-3.0/Documentation/DocBook/v4l/func-read.xml -c567e57b6a11ce9e82acd8177f355966 linux-3.0/Documentation/DocBook/v4l/func-poll.xml -c64315379d8d6c16ecca0e36674c72df linux-3.0/Documentation/DocBook/v4l/func-open.xml -c4b1fc7e60b89574223978c3110c9118 linux-3.0/Documentation/DocBook/v4l/func-munmap.xml -f3dbf87711362d6b6d797e12a7839a15 linux-3.0/Documentation/DocBook/v4l/func-mmap.xml -3892cf733d00819df4586c23c1a522e9 linux-3.0/Documentation/DocBook/v4l/func-ioctl.xml -c363ff7239741936e344d9d9508f2f08 linux-3.0/Documentation/DocBook/v4l/func-close.xml -85d5d44a8f843592bb9b4399e12b3ab2 linux-3.0/Documentation/DocBook/v4l/fieldseq_tb.pdf -c4ecdc15142506764fd2b82b92e74f9e linux-3.0/Documentation/DocBook/v4l/fieldseq_tb.gif -f5a38eefcef8e29e27f2394ec9ab45b2 linux-3.0/Documentation/DocBook/v4l/fieldseq_bt.pdf -c9926e570e92e231f7137ef8c8eaf122 linux-3.0/Documentation/DocBook/v4l/fieldseq_bt.gif -bb10c4d517faa30d8c8e210e40a09733 linux-3.0/Documentation/DocBook/v4l/fdl-appendix.xml -fa05e5ef193666f152e8577fbae40970 linux-3.0/Documentation/DocBook/v4l/driver.xml -29969861551a11b55b056986d8001e72 linux-3.0/Documentation/DocBook/v4l/dev-teletext.xml -9e8afc034dec3f6f1f19315018e8dbd7 linux-3.0/Documentation/DocBook/v4l/dev-subdev.xml -a8932a71c11c36500c94aa7136873230 linux-3.0/Documentation/DocBook/v4l/dev-sliced-vbi.xml -101b50a6dc7e01046aa09cdca88efd19 linux-3.0/Documentation/DocBook/v4l/dev-rds.xml -4276a907b7fcccbbf2309e0382069de0 linux-3.0/Documentation/DocBook/v4l/dev-raw-vbi.xml -833df621bddfeec72e00bc7914594947 linux-3.0/Documentation/DocBook/v4l/dev-radio.xml -52cf6fdc4f10be473c7fd4d905697a54 linux-3.0/Documentation/DocBook/v4l/dev-overlay.xml -fd82dd365a777745889bce4ec71e4f45 linux-3.0/Documentation/DocBook/v4l/dev-output.xml -4c5f8e6c94c2c9a18bb3e208035055ae linux-3.0/Documentation/DocBook/v4l/dev-osd.xml -0b1c85e4d651a295d731f4432b8ae93a linux-3.0/Documentation/DocBook/v4l/dev-event.xml -3d963d0a43956c9c3f16a2a58d775840 linux-3.0/Documentation/DocBook/v4l/dev-effect.xml -35ac43f99f677e3b5dc2e573f79e3511 linux-3.0/Documentation/DocBook/v4l/dev-codec.xml -89209b388e30b2592e99c4e0d4e0d32f linux-3.0/Documentation/DocBook/v4l/dev-capture.xml -77aabb4e6b226474475b0f54b6954bf7 linux-3.0/Documentation/DocBook/v4l/crop.pdf -a3b09d71ee30c79fe3f6ac6f1f508e51 linux-3.0/Documentation/DocBook/v4l/crop.gif -924d2439e41cbf402557af13960d9419 linux-3.0/Documentation/DocBook/v4l/controls.xml -119c0c7d1727279774095ec23331b713 linux-3.0/Documentation/DocBook/v4l/compat.xml -04a9f9feb0a2f0012b9a518ccb1bd089 linux-3.0/Documentation/DocBook/v4l/common.xml -21f7ce881e74587b31f2798637c16258 linux-3.0/Documentation/DocBook/v4l/capture.c.xml -44faf990e3a2d85681ae9ec1b9707e09 linux-3.0/Documentation/DocBook/v4l/biblio.xml -fdcf8ed19b4b6c92ff9bef385e76a13c linux-3.0/Documentation/DocBook/v4l/bayer.png -a3dc611fa894e38cfcad4857c4d60dca linux-3.0/Documentation/DocBook/v4l/bayer.pdf -d1fa7dc0ce9c3491af40b6724803f96b linux-3.0/Documentation/DocBook/v4l/.gitignore -efbc642ffab3e93df6ae8541580d027e linux-3.0/Documentation/DocBook/usb.tmpl -aa8558cae4bb96fbedde0ff133e17a8c linux-3.0/Documentation/DocBook/uio-howto.tmpl -f258f52db20fd4d53a13ed76652e02b6 linux-3.0/Documentation/DocBook/tracepoint.tmpl -87f60e8a9640c1bfc2ee0e74dcf7c669 linux-3.0/Documentation/DocBook/stylesheet.xsl -600e087e0510fb9ce4c009f2a4b88624 linux-3.0/Documentation/DocBook/sh.tmpl -5ae159b2e0b8a91921b3f97a6501f2a7 linux-3.0/Documentation/DocBook/scsi.tmpl -2979410b4f6329aade71508e8d4971f5 linux-3.0/Documentation/DocBook/s390-drivers.tmpl -a7e261eb8d9e47e5ccbf8d6891bbff82 linux-3.0/Documentation/DocBook/regulator.tmpl -f97f9008ef3a8517de3c5cf5797b49f6 linux-3.0/Documentation/DocBook/rapidio.tmpl -129ed8a94e2446cc34895bbc473976d8 linux-3.0/Documentation/DocBook/networking.tmpl -0fe9547e366bb5d75863860d8537a6be linux-3.0/Documentation/DocBook/mtdnand.tmpl -2d510bc40dec67fe692c140e9d3d0b46 linux-3.0/Documentation/DocBook/media.tmpl -8cb599258f1a65210d00bb399172816a linux-3.0/Documentation/DocBook/media-indices.tmpl -b03a6f7cce04567d974551f3990c13b9 linux-3.0/Documentation/DocBook/media-entities.tmpl -83caf0e79027677161a4ff4c855d699a linux-3.0/Documentation/DocBook/mcabook.tmpl -99d5f14b5cf701cb7951683218e8210e linux-3.0/Documentation/DocBook/lsm.tmpl -54800f6ea2a254595b8f9a510c7e5d43 linux-3.0/Documentation/DocBook/librs.tmpl -5081a15704a259747ebcc07e5d019b66 linux-3.0/Documentation/DocBook/libata.tmpl -cdd50d36de60ac968eb00cbd42a9ae85 linux-3.0/Documentation/DocBook/kgdb.tmpl -a3ef6f36b98e03d577d179e76acde4b5 linux-3.0/Documentation/DocBook/kernel-locking.tmpl -e87986ce719a590420f9914c34099f5b linux-3.0/Documentation/DocBook/kernel-hacking.tmpl -7bdcbb1e002ee390e36445d83c4daaa1 linux-3.0/Documentation/DocBook/kernel-api.tmpl -33e83338cf71fe1ec1206c0a71f662f7 linux-3.0/Documentation/DocBook/genericirq.tmpl -b93211d193c90fe6e3b384d7fa17f4ee linux-3.0/Documentation/DocBook/gadget.tmpl -1d9b86981163fcd1be86dbe236c06864 linux-3.0/Documentation/DocBook/filesystems.tmpl -aca5aa6acb0d79df5f7946e8eeb0adf0 linux-3.0/Documentation/DocBook/dvb/video.xml -4bf74e7c399ada7d7bbf2b0790ea5e96 linux-3.0/Documentation/DocBook/dvb/net.xml -abface1b29db538009ffd99bc007cf4a linux-3.0/Documentation/DocBook/dvb/kdapi.xml -6f8db1eaa59cf3f0baf71ff924d08117 linux-3.0/Documentation/DocBook/dvb/intro.xml -3a520f5bdf186e1864a2cfc6b47c3e84 linux-3.0/Documentation/DocBook/dvb/frontend.xml -0eeca27199229956a5ea9f63203a4fe6 linux-3.0/Documentation/DocBook/dvb/frontend.h.xml -7d5c92c124a3e85427d684d1fd58333a linux-3.0/Documentation/DocBook/dvb/examples.xml -dcbb4b31e3701c7baba4a997c0b7f0ae linux-3.0/Documentation/DocBook/dvb/dvbstb.png -f359304f059494976cdaea81918c5ecd linux-3.0/Documentation/DocBook/dvb/dvbstb.pdf -286453d9e8cce919fdf9caa33256fc7d linux-3.0/Documentation/DocBook/dvb/dvbproperty.xml -8862e6ecf0008b34c0eb18637d71242a linux-3.0/Documentation/DocBook/dvb/dvbapi.xml -5b6136943ed27c4d6c15c67d7b0c7a7a linux-3.0/Documentation/DocBook/dvb/demux.xml -df65a2b2a928f2a0eae4ebc98cbf733d linux-3.0/Documentation/DocBook/dvb/ca.xml -5489c8475e59b931f4829176d26a2b04 linux-3.0/Documentation/DocBook/dvb/audio.xml -d1fa7dc0ce9c3491af40b6724803f96b linux-3.0/Documentation/DocBook/dvb/.gitignore -2e1ad1d7617b8eec8ca3f7e99d4ff985 linux-3.0/Documentation/DocBook/drm.tmpl -a7ab28e7a0a3507e182d97faa93b3076 linux-3.0/Documentation/DocBook/deviceiobook.tmpl -0e436e39d886a8e0c82b7b3b3ba7f44e linux-3.0/Documentation/DocBook/device-drivers.tmpl -beee59dc819850e2df49670a9c3c6223 linux-3.0/Documentation/DocBook/debugobjects.tmpl -203520f800a155dc35f2548c1803925a linux-3.0/Documentation/DocBook/alsa-driver-api.tmpl -5b4e9c41b0a590e1ace2fb0d727a27af linux-3.0/Documentation/DocBook/Makefile -6ae6c8c1b1b3990df3609c46e2adc93e linux-3.0/Documentation/DocBook/80211.tmpl -7bbc04bff7647ca77a43131856a2689c linux-3.0/Documentation/DocBook/.gitignore -d86ec7b531a442ef8a8d39bff2411fc2 linux-3.0/Documentation/DMA-attributes.txt -a0b20e82cadca3595c95a9b7909a2120 linux-3.0/Documentation/DMA-ISA-LPC.txt -707f0d3e9f72a6ceaa227720931d0e43 linux-3.0/Documentation/DMA-API.txt -6ff6064897e278b39569c2c845704d3c linux-3.0/Documentation/DMA-API-HOWTO.txt -b86137e7b2b929882d8248c4f34e11de linux-3.0/Documentation/CodingStyle -298fe8ded50cbf15462f8cf390fb8b58 linux-3.0/Documentation/Changes -c8c45b24b65c441c2a81acfdea7b2571 linux-3.0/Documentation/BUG-HUNTING -4398b6194932fa599da7a885293d80da linux-3.0/Documentation/ABI/testing/sysfs-wusb_cbaf -0cc89911ec7d87090b4307f1b69977c4 linux-3.0/Documentation/ABI/testing/sysfs-wacom -f3716370b2f48e07d36796ccff92f4ea linux-3.0/Documentation/ABI/testing/sysfs-tty -bdbfd97eefbae3cb37abadb10776692c linux-3.0/Documentation/ABI/testing/sysfs-ptp -9f055b9ab38cbf3378668c1025043fe4 linux-3.0/Documentation/ABI/testing/sysfs-profiling -a45b42870d5039e30702b5c218364762 linux-3.0/Documentation/ABI/testing/sysfs-pps -df0cf9d3b6f857f082dbd7a1b54676ce linux-3.0/Documentation/ABI/testing/sysfs-power -0546bac579470a00bd1876a30aa1fc79 linux-3.0/Documentation/ABI/testing/sysfs-platform-kim -8c49f1bd6943d05fadaa3c396a8badf6 linux-3.0/Documentation/ABI/testing/sysfs-platform-ideapad-laptop -cace125c36a58570fbb07105d2540a30 linux-3.0/Documentation/ABI/testing/sysfs-platform-eeepc-laptop -cd5e392b0451d681ac2043e49ad86f19 linux-3.0/Documentation/ABI/testing/sysfs-platform-at91 -b56c1c2e9543abd97ebeaca2495ce457 linux-3.0/Documentation/ABI/testing/sysfs-platform-asus-wmi -9f3e80fbb3e476168aebb242c2b2e38a linux-3.0/Documentation/ABI/testing/sysfs-platform-asus-laptop -88eb89de173743e68eae5422a9e61f11 linux-3.0/Documentation/ABI/testing/sysfs-ocfs2 -3ebb6e194596da8eef9b3f8ffed68f88 linux-3.0/Documentation/ABI/testing/sysfs-module -c46e0d840ec118e6ab0cb92d4f05df22 linux-3.0/Documentation/ABI/testing/sysfs-memory-page-offline -e7087cdbcb4b993f6f3e4f76c2c374f8 linux-3.0/Documentation/ABI/testing/sysfs-kernel-uids -469766325c73e050995c09350056a5b0 linux-3.0/Documentation/ABI/testing/sysfs-kernel-slab -2c21a2b21ac253934ae6fd517bf09816 linux-3.0/Documentation/ABI/testing/sysfs-kernel-mm-hugepages -c0eb74b0b69688ec50f79675a2802d6b linux-3.0/Documentation/ABI/testing/sysfs-kernel-mm-cleancache -c1553d4cc1c2c1382b59566202e69a58 linux-3.0/Documentation/ABI/testing/sysfs-kernel-mm -d1bff6040a5d82e348437ca272cb9086 linux-3.0/Documentation/ABI/testing/sysfs-kernel-fscaps -40d07edf149daaee8b76fe5a8f1fdcf1 linux-3.0/Documentation/ABI/testing/sysfs-ibft -894e3bbb8bc1ed865fce22d541422136 linux-3.0/Documentation/ABI/testing/sysfs-i2c-bmp085 -779613a1257083f57ea0adabebc9e17a linux-3.0/Documentation/ABI/testing/sysfs-gpio -7be72a47c4488fba09a331cb3fbbf4e1 linux-3.0/Documentation/ABI/testing/sysfs-fs-ext4 -f3af98ade33843fc5f8a2374e5294c35 linux-3.0/Documentation/ABI/testing/sysfs-firmware-sgi_uv -be1a6bcc2bb1db71467559ab2049ad69 linux-3.0/Documentation/ABI/testing/sysfs-firmware-sfi -60acb2d64c039067c37460c9d368994b linux-3.0/Documentation/ABI/testing/sysfs-firmware-memmap -e953512f042af8c5853d1932fc4e0716 linux-3.0/Documentation/ABI/testing/sysfs-firmware-log -3b1732ddf96e3f15cb3f86b7c055b3b5 linux-3.0/Documentation/ABI/testing/sysfs-firmware-gsmi -a64e0b21f88e7e9838c806689c754612 linux-3.0/Documentation/ABI/testing/sysfs-firmware-dmi -3c8bc5e5a567c47c526891512dbfa795 linux-3.0/Documentation/ABI/testing/sysfs-firmware-acpi -4efd9c14885bf7e6661990d9d131258f linux-3.0/Documentation/ABI/testing/sysfs-driver-samsung-laptop -68ff87347ba031e391bf6a02cca608db linux-3.0/Documentation/ABI/testing/sysfs-driver-hid-roccat-pyra -e45e36ddb9a377b8db928ae06b8eb0ab linux-3.0/Documentation/ABI/testing/sysfs-driver-hid-roccat-kovaplus -56ae63a9f1ecccde127b36c728ff6c06 linux-3.0/Documentation/ABI/testing/sysfs-driver-hid-roccat-koneplus -6e2da8db552a292c11f6a0b2a1113d39 linux-3.0/Documentation/ABI/testing/sysfs-driver-hid-roccat-kone -cc85c041bd252ebcbba2a6b749492f2f linux-3.0/Documentation/ABI/testing/sysfs-driver-hid-roccat-arvo -59b7d101d8ed831ef3bbda5253e9439d linux-3.0/Documentation/ABI/testing/sysfs-driver-hid-prodikeys -c312a3e1ea10b1123a18fe0158aed933 linux-3.0/Documentation/ABI/testing/sysfs-driver-hid-picolcd -598842e59488e896616801ffbf246066 linux-3.0/Documentation/ABI/testing/sysfs-driver-hid -6635b74bee048035a0ecea85f06a8e13 linux-3.0/Documentation/ABI/testing/sysfs-devices-system-ibm-rtl -299abaa226000da9ec9c7d6159d06681 linux-3.0/Documentation/ABI/testing/sysfs-devices-system-cpu -ee251d1e71fe27535601300317a844eb linux-3.0/Documentation/ABI/testing/sysfs-devices-power -ae9150c5266c2f36d98b21f0bbf9dc05 linux-3.0/Documentation/ABI/testing/sysfs-devices-platform-_UDC_-gadget -ed3356ad5111e494a014257c66e8bbdb linux-3.0/Documentation/ABI/testing/sysfs-devices-node -2e41b69b527764fc6ee32f36becaee53 linux-3.0/Documentation/ABI/testing/sysfs-devices-mmc -13460fc5469c4d06af7761e51b945565 linux-3.0/Documentation/ABI/testing/sysfs-devices-memory -bc166e112e1d85a2ee1bca34b9a0e68a linux-3.0/Documentation/ABI/testing/sysfs-devices -efa1fcddd25e0323fffdffca629553bd linux-3.0/Documentation/ABI/testing/sysfs-dev -611ea67f1c3515415588538d34c4c01e linux-3.0/Documentation/ABI/testing/sysfs-class-uwb_rc-wusbhc -3242806e923c109e9cfaeb0ef40a4b49 linux-3.0/Documentation/ABI/testing/sysfs-class-uwb_rc -b9331daa55316c4559af167a114f4830 linux-3.0/Documentation/ABI/testing/sysfs-class-regulator -c0e45c964573612d5aef42d388bea559 linux-3.0/Documentation/ABI/testing/sysfs-class-power -3978ebb98c15638f03d6c95ecab3602b linux-3.0/Documentation/ABI/testing/sysfs-class-pktcdvd -7ea095ce35dbd6bb98a0e411aa96e5ac linux-3.0/Documentation/ABI/testing/sysfs-class-net-mesh -de74f356fac3d350ebfc79fabbe2d3ba linux-3.0/Documentation/ABI/testing/sysfs-class-net-batman-adv -2247d5f17ee0074719fe583c9118e161 linux-3.0/Documentation/ABI/testing/sysfs-class-mtd -1e44d34694e88c363e457aae1dd19589 linux-3.0/Documentation/ABI/testing/sysfs-class-led -20fb92a539932db5aaf0f512d299a81e linux-3.0/Documentation/ABI/testing/sysfs-class-lcd -cd48a9634d03cf1a96a0b11ebdaddfaa linux-3.0/Documentation/ABI/testing/sysfs-class-bdi -ae9daa7510e7d4970604478d2f4fcbfa linux-3.0/Documentation/ABI/testing/sysfs-class-backlight-driver-adp8870 -8ae4e2810c136296f95ef1efca0d75ad linux-3.0/Documentation/ABI/testing/sysfs-class -d6a75ea6925be57173268986b952fafe linux-3.0/Documentation/ABI/testing/sysfs-c2port -ef6f68717ad17e6fb80e61049188c406 linux-3.0/Documentation/ABI/testing/sysfs-bus-usb-devices-usbsevseg -de555b264a0223786a47b18d59456eda linux-3.0/Documentation/ABI/testing/sysfs-bus-usb -43c93cc1b0dcfad3a602f6023dee7585 linux-3.0/Documentation/ABI/testing/sysfs-bus-umc -6c7c01fb9fe8651ffa2e9bae3c9f46da linux-3.0/Documentation/ABI/testing/sysfs-bus-rbd -2e8333e491ce3d0204af1cf238f13000 linux-3.0/Documentation/ABI/testing/sysfs-bus-pci-devices-cciss -e0f4f1bd2628e5dfb31855383a128b36 linux-3.0/Documentation/ABI/testing/sysfs-bus-pci -b67cf66da760dcdca6d9c02f50eb2804 linux-3.0/Documentation/ABI/testing/sysfs-bus-media -55c4f76a258bf065de9783077f8ac65e linux-3.0/Documentation/ABI/testing/sysfs-bus-i2c-devices-hm6352 -05aeee50dc22122b5388aae7d03b93eb linux-3.0/Documentation/ABI/testing/sysfs-bus-css -afefb0cfc7dd9980db6185ba966a4700 linux-3.0/Documentation/ABI/testing/sysfs-bus-bcma -878988fc4a5af062f6ab571c9fbb1c5e linux-3.0/Documentation/ABI/testing/sysfs-block-zram -840a0d937c04b0d8321a63420d47d207 linux-3.0/Documentation/ABI/testing/sysfs-block -e3066493a978269762d3ca54508b47cc linux-3.0/Documentation/ABI/testing/sysfs-ata -2907f5f402afe86fa83b3c3c147f219b linux-3.0/Documentation/ABI/testing/pstore -6498accd1adc16fa6af8d8389ec6ed9e linux-3.0/Documentation/ABI/testing/procfs-diskstats -71faa635b37c95c7ee25acbe29144761 linux-3.0/Documentation/ABI/testing/ima_policy -e6f8db4958432ff2ee29ce74e1e30b26 linux-3.0/Documentation/ABI/testing/debugfs-pktcdvd -dae7443fb7fb627f97b753281e93ae9f linux-3.0/Documentation/ABI/testing/debugfs-ec -e877ff1f44b57db411b87e9dd3ab24f1 linux-3.0/Documentation/ABI/testing/configfs-spear-pcie-gadget -0e223988455749105102758abddff3df linux-3.0/Documentation/ABI/stable/thermal-notification -2e0fd2d2365898374a236d278acd3bb1 linux-3.0/Documentation/ABI/stable/sysfs-module -4ed78523c8e299fa57c4b56e23890d77 linux-3.0/Documentation/ABI/stable/sysfs-firmware-efi-vars -8fdc47942af232c07efa356a01d8a4b4 linux-3.0/Documentation/ABI/stable/sysfs-driver-usb-usbtmc -d1357b306fd15a4da0ef65347b362913 linux-3.0/Documentation/ABI/stable/sysfs-driver-qla2xxx -1028a77ddec6e38031269760d2a518d8 linux-3.0/Documentation/ABI/stable/sysfs-devices-node -aec1b4515bdc33c5fed8dc1c8968d34b linux-3.0/Documentation/ABI/stable/sysfs-class-ubi -e1a9a3c1f0c9d30cf08326ce9fcdafe5 linux-3.0/Documentation/ABI/stable/sysfs-class-rfkill -31d517bdef78ad1d36e7d7ed94831cb4 linux-3.0/Documentation/ABI/stable/sysfs-class-backlight -165c900800be76ab07a5a47b75e66120 linux-3.0/Documentation/ABI/stable/syscalls -5c34ab34d6bc4f3a191960bb2fb07bd1 linux-3.0/Documentation/ABI/stable/o2cb -896dc21c16196a3b53064ee4635ffa2e linux-3.0/Documentation/ABI/removed/video1394 -0b703e5115ed14d92af841d0396e53ff linux-3.0/Documentation/ABI/removed/raw1394 -f3f3b76a5689439c35808221a8bff991 linux-3.0/Documentation/ABI/removed/o2cb -5245b42d4f2b21a77f29af9b10271e32 linux-3.0/Documentation/ABI/removed/dv1394 -e7518eacb961f8aee3f76ca26360287d linux-3.0/Documentation/ABI/removed/devfs -c0e5ea7afc9b62dbe48f8018727d6518 linux-3.0/Documentation/ABI/obsolete/sysfs-driver-hid-roccat-koneplus -648507c50e1665782110e7007f30a32d linux-3.0/Documentation/ABI/obsolete/sysfs-class-rfkill -4a7031fe9bf13ece48f95c1aa257d851 linux-3.0/Documentation/ABI/obsolete/sysfs-bus-usb -ef0340bb50c37f5a4e2fd94c64ee1f3e linux-3.0/Documentation/ABI/obsolete/proc-pid-oom_adj -1a93df61031bd8d7a2213fe15aa393e5 linux-3.0/Documentation/ABI/README -3067a620c3c6801fc1b61f28ed9e8cf8 linux-3.0/Documentation/00-INDEX -6f48d5fea98699dcf2d4e2896bcbcd5d linux-3.0/Documentation/.gitignore -6ba03156db3a5cf39d15b4ee1c65eaf3 linux-3.0/CREDITS -d7810fab7487fb0aad327b76f1be7cd7 linux-3.0/COPYING -872bed79db6fb647d72cc4bb5d71614a linux-3.0/.mailmap -4d62ff73b79b8ee8ffb65902bf403be4 linux-3.0/.gitignore diff --git a/tests/stress_tests/parallel_cp.sh b/tests/stress_tests/parallel_cp.sh deleted file mode 100755 index ad98e5e..0000000 --- a/tests/stress_tests/parallel_cp.sh +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/bash -# -# Simplified xfstests generic/273 -# -# Fails with -# -# cp: cannot create regular file 'sub_49/file_773': No such file or directory -# -# If you cannot reproduce, try running this in the background: -# -# while sleep 0.1 ; do echo 3 > /proc/sys/vm/drop_caches ; done" -# -# See https://github.com/rfjakob/gocryptfs/issues/322 for details. - -if [[ -z $TMPDIR ]]; then - TMPDIR=/var/tmp - export TMPDIR -fi - -cd "$(dirname "$0")" -MYNAME=$(basename $0) -source ../fuse-unmount.bash - -# Set the GOPATH variable to the default if it is empty -GOPATH=$(go env GOPATH) - -# Backing directory -DIR=$(mktemp -d $TMPDIR/$MYNAME.XXX) -$GOPATH/bin/gocryptfs -q -init -extpass "echo test" -scryptn=10 $DIR - -# Mountpoint -MNT="$DIR.mnt" -mkdir $MNT -$GOPATH/bin/gocryptfs -q -extpass "echo test" -nosyslog $DIR $MNT -echo "Mounted gocryptfs $DIR at $MNT" - -# Cleanup trap -trap "cd / ; fuse-unmount -z $MNT ; rm -rf $DIR $MNT" EXIT - -cd $MNT - -SECONDS=0 -echo "creating files with dd" -mkdir -p origin -for i in $(seq 1 778) ; do - dd if=/dev/zero of=origin/file_$i bs=8192 count=1 status=none -done -# Perform the shell expansion only once and store the list -ORIGIN_FILES=origin/* - -echo -n "cp starting: " -for i in $(seq 1 100) ; do - echo -n "$i " - (mkdir sub_$i && cp $ORIGIN_FILES sub_$i ; echo -n "$i ") & -done - -echo -echo -n "cp finished: " -wait -echo -echo "Runtime was $SECONDS seconds" diff --git a/tests/stress_tests/pingpong-rsync.bash b/tests/stress_tests/pingpong-rsync.bash deleted file mode 120000 index b8cf812..0000000 --- a/tests/stress_tests/pingpong-rsync.bash +++ /dev/null @@ -1 +0,0 @@ -pingpong.bash \ No newline at end of file diff --git a/tests/stress_tests/pingpong.bash b/tests/stress_tests/pingpong.bash deleted file mode 100755 index 218b6e8..0000000 --- a/tests/stress_tests/pingpong.bash +++ /dev/null @@ -1,69 +0,0 @@ -#!/bin/bash -# -# Mounts two gocryptfs filesystems, "ping" and "pong" and moves the -# linux-3.0 kernel tree back and forth between them. -# -# When called as "pingpong-rsync.bash" it uses "rsync --remove-source-files" -# for moving the files, otherwise plain "mv". - -set -eu - -# Run at low priority to not annoy the user too much -renice 19 $$ - -cd "$(dirname "$0")" -MD5="$PWD/linux-3.0.md5sums" -MYNAME=$(basename $0) -source ../fuse-unmount.bash - -# Setup -../dl-linux-tarball.bash -cd /tmp - -PING=$(mktemp -d ping.XXX) -PONG=$(mktemp -d pong.XXX) -mkdir $PING.mnt $PONG.mnt - -# Cleanup trap -# Note: gocryptfs may have already umounted itself because bash relays SIGINT -# Just ignore unmount errors. -trap "set +e ; cd /tmp; fuse-unmount -z $PING.mnt ; fuse-unmount -z $PONG.mnt ; rm -rf $PING $PONG $PING.mnt $PONG.mnt" EXIT - -gocryptfs -q -init -extpass="echo test" -scryptn=10 $PING -gocryptfs -q -init -extpass="echo test" -scryptn=10 $PONG - -gocryptfs -q -extpass="echo test" -nosyslog $PING $PING.mnt -gocryptfs -q -extpass="echo test" -nosyslog $PONG $PONG.mnt - -echo "Initial extract" -tar xf /tmp/linux-3.0.tar.gz -C $PING.mnt - -function move_and_md5 { - if [ $MYNAME = pingpong-rsync.bash ]; then - echo -n "rsync " - rsync -a --remove-source-files $1 $2 - find $1 -type d -delete - else - echo -n "mv " - mv $1 $2 - fi - if [ -e $1 ]; then - echo "error: source directory $1 was not removed" - exit 1 - fi - cd $2 - echo -n "md5 " - md5sum --status -c $MD5 - cd .. -} - -N=1 -while true; do - echo -n "$N: " - move_and_md5 $PING.mnt/linux-3.0 $PONG.mnt - move_and_md5 $PONG.mnt/linux-3.0 $PING.mnt - date +%H:%M:%S - let N=$N+1 -done - -wait diff --git a/tests/symlink_race/.gitignore b/tests/symlink_race/.gitignore deleted file mode 100644 index 45df5f8..0000000 --- a/tests/symlink_race/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -symlink_race.test_file.tmp -symlink_race.test_file -symlink_race diff --git a/tests/symlink_race/main.go b/tests/symlink_race/main.go deleted file mode 100644 index 6fb794f..0000000 --- a/tests/symlink_race/main.go +++ /dev/null @@ -1,91 +0,0 @@ -package main - -import ( - "fmt" - "os" - "syscall" - "time" -) - -const ( - testFile = "symlink_race.test_file" - testFileTmp = testFile + ".tmp" -) - -func renameLoop() { - // May be left behind from an earlier run - syscall.Unlink(testFileTmp) - - var err error - var fd *os.File - for { - err = syscall.Symlink("/root/chmod_me", testFileTmp) - if err != nil { - fmt.Printf("Symlink() failed: %v\n", err) - continue - } - err = syscall.Rename(testFileTmp, testFile) - if err != nil { - fmt.Printf("Rename() 1 failed: %v\n", err) - continue - } - fd, err = os.Create(testFileTmp) - if err != nil { - fmt.Printf("Create() failed: %v\n", err) - continue - } - fd.Close() - err = syscall.Rename(testFileTmp, testFile) - if err != nil { - fmt.Printf("Rename() 2 failed: %v\n", err) - continue - } - fmt.Printf(".") - } -} - -func chmodLoop() { - var err error - for { - err = syscall.Chmod(testFile, 0777) - if err != nil { - fmt.Printf("Chmod() failed: %v\n", err) - } else { - fmt.Printf("Chmod() ok\n") - } - time.Sleep(100 * time.Microsecond) - } -} - -func openLoop() { - var err error - var f *os.File - buf := make([]byte, 100) - owned := []byte("owned") - var n int - for { - f, err = os.OpenFile(testFile, os.O_RDWR, 0777) - if err != nil { - fmt.Printf("Open() failed: %v\n", err) - continue - } - _, err = f.Write(owned) - if err != nil { - fmt.Printf("Write() failed: %v\n", err) - } - n, err = f.Read(buf) - if err != nil { - fmt.Printf("Read() failed: %v\n", err) - continue - } - if n > 0 { - fmt.Printf("Content: %q\n", string(buf[:n])) - os.Exit(1) - } - } -} - -func main() { - go openLoop() - renameLoop() -} diff --git a/tests/test_helpers/helpers.go b/tests/test_helpers/helpers.go deleted file mode 100644 index b98c0f7..0000000 --- a/tests/test_helpers/helpers.go +++ /dev/null @@ -1,407 +0,0 @@ -package test_helpers - -import ( - "bytes" - "crypto/md5" - "encoding/hex" - "fmt" - "io/ioutil" - "log" - "os" - "os/exec" - "path/filepath" - "syscall" - "testing" - - "github.com/rfjakob/gocryptfs/ctlsock" - "github.com/rfjakob/gocryptfs/internal/nametransform" - "github.com/rfjakob/gocryptfs/internal/syscallcompat" -) - -// TmpDir will be created inside this directory, set in init() to -// $TMPDIR/gocryptfs-test-parent . -var testParentDir = "" - -// GocryptfsBinary is the assumed path to the gocryptfs build. -const GocryptfsBinary = "../../gocryptfs" - -// UnmountScript is the fusermount/umount compatibility wrapper script -const UnmountScript = "../../tests/fuse-unmount.bash" - -// X255 contains 255 uppercase "X". This can be used as a maximum-length filename. -var X255 string - -// TmpDir is a unique temporary directory. "go test" runs package tests in parallel. We create a -// unique TmpDir in init() so the tests do not interfere. -var TmpDir string - -// DefaultPlainDir is TmpDir + "/default-plain" -var DefaultPlainDir string - -// DefaultCipherDir is TmpDir + "/default-cipher" -var DefaultCipherDir string - -func init() { - doInit() -} - -func doInit() { - X255 = string(bytes.Repeat([]byte("X"), 255)) - MountInfo = make(map[string]mountInfo) - // Something like /tmp/gocryptfs-test-parent-1234 - testParentDir := fmt.Sprintf("%s/gocryptfs-test-parent-%d", os.TempDir(), os.Getuid()) - os.MkdirAll(testParentDir, 0755) - if !isExt4(testParentDir) { - fmt.Printf("test_helpers: warning: testParentDir %q does not reside on ext4, we will miss failures caused by ino reuse\n", testParentDir) - } - var err error - TmpDir, err = ioutil.TempDir(testParentDir, "") - if err != nil { - panic(err) - } - // Open permissions for the allow_other tests - os.Chmod(TmpDir, 0755) - DefaultPlainDir = TmpDir + "/default-plain" - DefaultCipherDir = TmpDir + "/default-cipher" -} - -// ResetTmpDir deletes TmpDir, create new dir tree: -// -// TmpDir -// |-- DefaultPlainDir -// *-- DefaultCipherDir -// *-- gocryptfs.diriv -func ResetTmpDir(createDirIV bool) { - // Try to unmount and delete everything - entries, err := ioutil.ReadDir(TmpDir) - if err == nil { - for _, e := range entries { - d := filepath.Join(TmpDir, e.Name()) - err = os.Remove(d) - if err != nil { - pe := err.(*os.PathError) - if pe.Err == syscall.EBUSY { - if testing.Verbose() { - fmt.Printf("Remove failed: %v. Maybe still mounted?\n", pe) - } - err = UnmountErr(d) - if err != nil { - panic(err) - } - } else if pe.Err != syscall.ENOTEMPTY { - panic("Unhandled error: " + pe.Err.Error()) - } - err = os.RemoveAll(d) - if err != nil { - panic(err) - } - } - } - } - err = os.Mkdir(DefaultPlainDir, 0755) - if err != nil { - panic(err) - } - err = os.Mkdir(DefaultCipherDir, 0755) - if err != nil { - panic(err) - } - if createDirIV { - // Open cipherdir (following symlinks) - dirfd, err := syscall.Open(DefaultCipherDir, syscall.O_DIRECTORY|syscallcompat.O_PATH, 0) - if err == nil { - err = nametransform.WriteDirIVAt(dirfd) - syscall.Close(dirfd) - } - if err != nil { - panic(err) - } - } -} - -// isExt4 finds out if `path` resides on an ext4 filesystem, as reported by -// statfs. -func isExt4(path string) bool { - // From man statfs - const EXT4_SUPER_MAGIC = 0xef53 - - var fs syscall.Statfs_t - err := syscall.Statfs(path, &fs) - if err != nil { - return false - } - if fs.Type == EXT4_SUPER_MAGIC { - return true - } - return false -} - -// InitFS creates a new empty cipherdir and calls -// -// gocryptfs -q -init -extpass "echo test" -scryptn=10 $extraArgs $cipherdir -// -// It returns cipherdir without a trailing slash. -func InitFS(t *testing.T, extraArgs ...string) string { - prefix := "x." - if t != nil { - prefix = t.Name() + "." - } - dir, err := ioutil.TempDir(TmpDir, prefix) - if err != nil { - if t != nil { - t.Fatal(err) - } else { - log.Panic(err) - } - } - args := []string{"-q", "-init", "-extpass", "echo test", "-scryptn=10"} - args = append(args, extraArgs...) - args = append(args, dir) - - cmd := exec.Command(GocryptfsBinary, args...) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - - err = cmd.Run() - if err != nil { - if t != nil { - t.Fatalf("InitFS with args %q failed: %v", args, err) - } else { - log.Panic(err) - } - } - - return dir -} - -// Md5fn returns an md5 string for file "filename" -func Md5fn(filename string) string { - buf, err := ioutil.ReadFile(filename) - if err != nil { - fmt.Printf("ReadFile: %v\n", err) - return "" - } - return Md5hex(buf) -} - -// Md5hex returns an md5 string for "buf" -func Md5hex(buf []byte) string { - rawHash := md5.Sum(buf) - hash := hex.EncodeToString(rawHash[:]) - return hash -} - -// VerifySize checks that the file size equals "want". This checks: -// 1) Number of bytes returned when reading the whole file -// 2) Size reported by Stat() -// 3) Size reported by Fstat() -func VerifySize(t *testing.T, path string, want int) { - // Read whole file - buf, err := ioutil.ReadFile(path) - if err != nil { - t.Errorf("ReadFile failed: %v", err) - } else if len(buf) != want { - t.Errorf("wrong read size: got=%d want=%d", len(buf), want) - } - // Stat() - var st syscall.Stat_t - err = syscall.Stat(path, &st) - if err != nil { - t.Errorf("Stat failed: %v", err) - } else if st.Size != int64(want) { - t.Errorf("wrong stat file size, got=%d want=%d", st.Size, want) - } - // Fstat() - fd, err := os.Open(path) - if err != nil { - t.Fatal(err) - } - defer fd.Close() - var st2 syscall.Stat_t - err = syscall.Fstat(int(fd.Fd()), &st2) - if err != nil { - t.Fatal(err) - } - if st2.Size != int64(want) { - t.Errorf("wrong fstat file size, got=%d want=%d", st2.Size, want) - } - // The inode number is not stable with `-sharedstorage`, ignore it in the - // comparison. - st.Ino = 0 - st2.Ino = 0 - if st != st2 { - t.Logf("Stat vs Fstat mismatch:\nst= %#v\nst2=%#v", st, st2) - } -} - -// TestMkdirRmdir creates and deletes a directory -func TestMkdirRmdir(t *testing.T, plainDir string) { - dir := plainDir + "/dir1" - err := os.Mkdir(dir, 0777) - if err != nil { - t.Error(err) - return - } - err = syscall.Rmdir(dir) - if err != nil { - t.Error(err) - return - } - // Create a directory and put a file in it - // Trying to rmdir it should fail with ENOTEMPTY - err = os.Mkdir(dir, 0777) - if err != nil { - t.Error(err) - return - } - f, err := os.Create(dir + "/file") - if err != nil { - t.Error(err) - return - } - f.Close() - err = syscall.Rmdir(dir) - errno := err.(syscall.Errno) - if errno != syscall.ENOTEMPTY { - t.Errorf("Should have gotten ENOTEMPTY, got %v", errno) - } - err = syscall.Unlink(dir + "/file") - if err != nil { - var st syscall.Stat_t - syscall.Stat(dir, &st) - t.Errorf("err=%v mode=%0o", err, st.Mode) - return - } - err = syscall.Rmdir(dir) - if err != nil { - t.Error(err) - return - } - // We should also be able to remove a directory we do not have permissions to - // read or write - err = os.Mkdir(dir, 0000) - if err != nil { - t.Error(err) - return - } - err = syscall.Rmdir(dir) - if err != nil { - // Make sure the directory can cleaned up by the next test run - os.Chmod(dir, 0700) - t.Error(err) - return - } -} - -// TestRename creates and renames a file -func TestRename(t *testing.T, plainDir string) { - file1 := plainDir + "/rename1" - file2 := plainDir + "/rename2" - err := ioutil.WriteFile(file1, []byte("content"), 0777) - if err != nil { - t.Error(err) - return - } - err = syscall.Rename(file1, file2) - if err != nil { - t.Errorf("Rename: %v", err) - return - } - syscall.Unlink(file2) -} - -// VerifyExistence checks in 3 ways that "path" exists: -// stat, open, readdir. Returns true if the path exists, false otherwise. -// Panics if the result is inconsistent. -func VerifyExistence(t *testing.T, path string) bool { - t.Helper() - // Check if file can be stat()ed - stat := true - fi, err := os.Stat(path) - if err != nil { - stat = false - } - // Check if file can be opened - open := true - fd, err := os.Open(path) - if err != nil { - open = false - } - fd.Close() - // Check if file shows up in directory listing - readdir := false - dir := filepath.Dir(path) - name := filepath.Base(path) - d, err := os.Open(dir) - if err != nil && open == true { - t.Errorf("VerifyExistence: we can open the file but not the parent dir!? err=%v", err) - } else if err == nil { - defer d.Close() - listing, err := d.Readdirnames(0) - if stat && fi.IsDir() && err != nil { - t.Errorf("VerifyExistence: It's a directory, but readdirnames failed: %v", err) - } - for _, entry := range listing { - if entry == name { - readdir = true - } - } - } - // If the result is consistent, return it. - if stat == open && open == readdir { - return stat - } - t.Errorf("VerifyExistence: inconsistent result on %q: stat=%v open=%v readdir=%v, path=%q", name, stat, open, readdir, path) - return false -} - -// Du returns the disk usage of the file "fd" points to, in bytes. -// Same as "du --block-size=1". -func Du(t *testing.T, fd int) (nBytes int64) { - var st syscall.Stat_t - err := syscall.Fstat(fd, &st) - if err != nil { - t.Fatal(err) - } - // st.Blocks = number of 512-byte blocks - return st.Blocks * 512 -} - -// QueryCtlSock sends a request to the control socket at "socketPath" and -// returns the response. -func QueryCtlSock(t *testing.T, socketPath string, req ctlsock.RequestStruct) ctlsock.ResponseStruct { - c, err := ctlsock.New(socketPath) - if err != nil { - // Connecting to the socket failed already. This is fatal. - t.Fatal(err) - } - defer c.Close() - resp, err := c.Query(&req) - if err != nil { - // If we got a response, try to extract it. This is not fatal here - // as the tests may expect error responses. - if resp2, ok := err.(*ctlsock.ResponseStruct); ok { - return *resp2 - } - // Another error means that we did not even get a response. This is fatal. - t.Fatal(err) - } - return *resp -} - -// ExtractCmdExitCode extracts the exit code from an error value that was -// returned from exec / cmd.Run() -func ExtractCmdExitCode(err error) int { - if err == nil { - return 0 - } - // OMG this is convoluted - if err2, ok := err.(*exec.ExitError); ok { - return err2.Sys().(syscall.WaitStatus).ExitStatus() - } - if err2, ok := err.(*os.PathError); ok { - return int(err2.Err.(syscall.Errno)) - } - log.Panicf("could not decode error %#v", err) - return 0 -} diff --git a/tests/test_helpers/mount_unmount.go b/tests/test_helpers/mount_unmount.go deleted file mode 100644 index 8ff2564..0000000 --- a/tests/test_helpers/mount_unmount.go +++ /dev/null @@ -1,258 +0,0 @@ -package test_helpers - -import ( - "fmt" - "io" - "log" - "os" - "os/exec" - "os/signal" - "runtime" - "strings" - "syscall" - "testing" - "time" -) - -// gocryptfs may hold up to maxCacheFds open for caching -// Keep in sync with fusefrontend.dirCacheSize -// TODO: How to share this constant without causing an import cycle?! -const maxCacheFds = 20 - -// Indexed by mountpoint. Initialized in doInit(). -var MountInfo map[string]mountInfo - -type mountInfo struct { - // PID of the running gocryptfs process. Set by Mount(). - Pid int - // List of open FDs of the running gocrypts process. Set by Mount(). - Fds []string -} - -// Mount CIPHERDIR "c" on PLAINDIR "p" -// Creates "p" if it does not exist. -// -// Contrary to InitFS(), you MUST passt "-extpass=echo test" (or another way for -// getting the master key) explicitly. -func Mount(c string, p string, showOutput bool, extraArgs ...string) error { - args := []string{"-q", "-wpanic", "-nosyslog", "-fg", fmt.Sprintf("-notifypid=%d", os.Getpid())} - args = append(args, extraArgs...) - //args = append(args, "-fusedebug") - //args = append(args, "-d") - args = append(args, c, p) - - if _, err := os.Stat(p); err != nil { - err = os.Mkdir(p, 0777) - if err != nil { - return err - } - } - - cmd := exec.Command(GocryptfsBinary, args...) - if showOutput { - // The Go test logic waits for our stdout to close, and when we share - // it with the subprocess, it will wait for it to close it as well. - // Use an intermediate pipe so the tests do not hang when unmouting - // fails. - pr, pw, err := os.Pipe() - if err != nil { - return err - } - // We can close the fd after cmd.Run() has executed - defer pw.Close() - cmd.Stderr = pw - cmd.Stdout = pw - go func() { - io.Copy(os.Stdout, pr) - pr.Close() - }() - } - - // Two things can happen: - // 1) The mount fails and the process exits - // 2) The mount succeeds and the process sends us USR1 - chanExit := make(chan error, 1) - chanUsr1 := make(chan os.Signal, 1) - signal.Notify(chanUsr1, syscall.SIGUSR1) - - // Start the process and save the PID - err := cmd.Start() - if err != nil { - return err - } - pid := cmd.Process.Pid - - // Wait for exit or usr1 - go func() { - chanExit <- cmd.Wait() - }() - select { - case err := <-chanExit: - return err - case <-chanUsr1: - // noop - case <-time.After(2 * time.Second): - log.Panicf("Timeout waiting for process %d", pid) - } - - // Save PID and open FDs - MountInfo[p] = mountInfo{pid, ListFds(pid, "")} - return nil -} - -// MountOrExit calls Mount() and exits on failure. -// -// Contrary to InitFS(), you MUST passt "-extpass=echo test" (or another way for -// getting the master key) explicitly. -func MountOrExit(c string, p string, extraArgs ...string) { - err := Mount(c, p, true, extraArgs...) - if err != nil { - fmt.Printf("mount failed: %v\n", err) - os.Exit(1) - } -} - -// MountOrFatal calls Mount() and calls t.Fatal() on failure. -// Creates plaindir `p` if it does not exist. -// -// Contrary to InitFS(), you MUST passt "-extpass=echo test" (or another way for -// getting the master key) explicitly. -func MountOrFatal(t *testing.T, c string, p string, extraArgs ...string) { - t.Helper() - - err := Mount(c, p, true, extraArgs...) - if err != nil { - t.Fatal(fmt.Errorf("mount failed: %v", err)) - } -} - -// UnmountPanic tries to umount "dir" and panics on error. -func UnmountPanic(dir string) { - err := UnmountErr(dir) - if err != nil { - fmt.Printf("UnmountPanic: %v. Running lsof %s\n", err, dir) - cmd := exec.Command("lsof", dir) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - cmd.Start() - timer := time.AfterFunc(1*time.Second, func() { - fmt.Printf("timeout!") - cmd.Process.Kill() - }) - cmd.Wait() - timer.Stop() - panic("UnmountPanic: unmount failed: " + err.Error()) - } -} - -// UnmountErr tries to unmount "dir", retrying 10 times, and returns the -// resulting error. -func UnmountErr(dir string) (err error) { - var fdsNow []string - pid := MountInfo[dir].Pid - fds := MountInfo[dir].Fds - if pid <= 0 && runtime.GOOS == "linux" { - // The FD leak check only works on Linux. - fmt.Printf("UnmountErr: %q was not found in MountInfo, cannot check for FD leaks\n", dir) - } - - max := 10 - // When a new filesystem is mounted, Gnome tries to read files like - // .xdg-volume-info, autorun.inf, .Trash. - // If we try to unmount before Gnome is done, the unmount fails with - // "Device or resource busy", causing spurious test failures. - // Retry a few times to hide that problem. - for i := 1; i <= max; i++ { - if pid > 0 { - for j := 1; j <= max; j++ { - // File close on FUSE is asynchronous, closing a socket - // when testing "-ctlsock" is as well. Wait a little and - // hope that all close commands get through to the gocryptfs - // process. - fdsNow = ListFds(pid, "") - if len(fdsNow) <= len(fds)+maxCacheFds { - break - } - fmt.Printf("UnmountErr: fdsOld=%d fdsNow=%d, retrying\n", len(fds), len(fdsNow)) - time.Sleep(10 * time.Millisecond) - fdsNow = ListFds(pid, "") - } - } - cmd := exec.Command(UnmountScript, "-u", dir) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - err = cmd.Run() - if err == nil { - if len(fdsNow) > len(fds)+maxCacheFds { - return fmt.Errorf("fd leak in gocryptfs process? pid=%d dir=%q, fds:\nold=%v \nnew=%v\n", pid, dir, fds, fdsNow) - } - return nil - } - code := ExtractCmdExitCode(err) - fmt.Printf("UnmountErr: got exit code %d, retrying (%d/%d)\n", code, i, max) - time.Sleep(100 * time.Millisecond) - } - return err -} - -// ListFds lists the open file descriptors for process "pid". Pass pid=0 for -// ourselves. Pass a prefix to ignore all paths that do not start with "prefix". -func ListFds(pid int, prefix string) []string { - // We need /proc to get the list of fds for other processes. Only exists - // on Linux. - if runtime.GOOS != "linux" && pid > 0 { - return nil - } - // Both Linux and MacOS have /dev/fd - dir := "/dev/fd" - if pid > 0 { - dir = fmt.Sprintf("/proc/%d/fd", pid) - } - f, err := os.Open(dir) - if err != nil { - fmt.Printf("ListFds: %v\n", err) - return nil - } - defer f.Close() - // Note: Readdirnames filters "." and ".." - names, err := f.Readdirnames(0) - if err != nil { - log.Panic(err) - } - var out []string - var filtered []string - for _, n := range names { - fdPath := dir + "/" + n - fi, err := os.Lstat(fdPath) - if err != nil { - // fd was closed in the meantime - continue - } - if fi.Mode()&0400 > 0 { - n += "r" - } - if fi.Mode()&0200 > 0 { - n += "w" - } - target, err := os.Readlink(fdPath) - if err != nil { - // fd was closed in the meantime - continue - } - if strings.HasPrefix(target, "pipe:") || strings.HasPrefix(target, "anon_inode:[eventpoll]") { - // The Go runtime creates pipes on demand for splice(), which - // creates spurious test failures. Ignore all pipes. - // Also get rid of the "eventpoll" fd that is always there and not - // interesting. - filtered = append(filtered, target) - continue - } - if prefix != "" && !strings.HasPrefix(target, prefix) { - filtered = append(filtered, target) - continue - } - out = append(out, n+"="+target) - } - out = append(out, fmt.Sprintf("(filtered: %s)", strings.Join(filtered, ", "))) - return out -} diff --git a/tests/xattr/xattr_fd_test.go b/tests/xattr/xattr_fd_test.go deleted file mode 100644 index d3f02c5..0000000 --- a/tests/xattr/xattr_fd_test.go +++ /dev/null @@ -1,70 +0,0 @@ -//+build linux - -// Darwin does not support Fgetxattr and friends! - -package xattr_tests - -import ( - "io/ioutil" - "syscall" - "testing" - - "golang.org/x/sys/unix" - - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func TestFdXattr(t *testing.T) { - attr := "user.foo" - fn := test_helpers.DefaultPlainDir + "/TestFdXattr" - err := ioutil.WriteFile(fn, nil, 0700) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - fd, err := syscall.Open(fn, syscall.O_RDONLY, 0) - if err != nil { - t.Fatal(err) - } - defer syscall.Close(fd) - buf := make([]byte, 1000) - sz, err := unix.Flistxattr(fd, buf) - if sz != 0 { - t.Errorf("expected zero size, got %d", sz) - } - val1 := []byte("123456789") - unix.Fsetxattr(fd, attr, val1, 0) - sz, err = unix.Flistxattr(fd, buf) - if err != nil { - t.Fatal(err) - } - // Length of "user.attr" + terminating null byte - expectedSz := len(attr) + 1 - if sz != expectedSz { - t.Errorf("expected size %d, got %d", expectedSz, sz) - } - str := "" - if sz > 0 { - str = string(buf[:sz-1]) - } - if str != attr { - t.Errorf("expected name %q, got %q", attr, str) - } - // Check content - sz, err = unix.Fgetxattr(fd, attr, buf) - if err != nil { - t.Fatal(err) - } - str = string(buf[:sz]) - if str != string(val1) { - t.Errorf("expected val %q, got %q", val1, str) - } - // Delete value - err = unix.Fremovexattr(fd, attr) - if err != nil { - t.Error(err) - } - sz, err = unix.Flistxattr(fd, buf) - if sz != 0 { - t.Errorf("expected zero size, got %d", sz) - } -} diff --git a/tests/xattr/xattr_integration_test.go b/tests/xattr/xattr_integration_test.go deleted file mode 100644 index be48fc0..0000000 --- a/tests/xattr/xattr_integration_test.go +++ /dev/null @@ -1,371 +0,0 @@ -package xattr_tests - -// xattr integration tests. -// -// These tests are not integrated into the "matrix" tests because of the need -// to switch TMPDIR to /var/tmp. -// TODO: check if it actually causes trouble in the "matrix" tests. - -import ( - "bytes" - "encoding/base64" - "fmt" - "io/ioutil" - "os" - "strings" - "syscall" - "testing" - - "github.com/pkg/xattr" - - "github.com/rfjakob/gocryptfs/internal/cryptocore" - "github.com/rfjakob/gocryptfs/tests/test_helpers" -) - -func TestMain(m *testing.M) { - if !xattrSupported(test_helpers.TmpDir) { - fmt.Printf("xattrs not supported on %q\n", test_helpers.TmpDir) - os.Exit(1) - } - test_helpers.ResetTmpDir(true) - // Write deterministic diriv so encrypted filenames are deterministic. - os.Remove(test_helpers.DefaultCipherDir + "/gocryptfs.diriv") - diriv := []byte("1234567890123456") - err := ioutil.WriteFile(test_helpers.DefaultCipherDir+"/gocryptfs.diriv", diriv, 0400) - if err != nil { - fmt.Println(err) - os.Exit(1) - } - test_helpers.MountOrExit(test_helpers.DefaultCipherDir, test_helpers.DefaultPlainDir, "-zerokey") - r := m.Run() - test_helpers.UnmountPanic(test_helpers.DefaultPlainDir) - os.RemoveAll(test_helpers.TmpDir) - os.Exit(r) -} - -func setGetRmList(fn string) error { - return setGetRmList3(fn, "user.foo", []byte("123456789")) -} - -func setGetRmList3(fn string, attr string, val []byte) error { - // List - list, err := xattr.LList(fn) - if err != nil { - return err - } - if len(list) > 0 { - return fmt.Errorf("Should have gotten empty result, got %v", list) - } - err = xattr.LSet(fn, attr, val) - if err != nil { - return err - } - // Read back - val2, err := xattr.LGet(fn, attr) - if err != nil { - return err - } - if !bytes.Equal(val, val2) { - return fmt.Errorf("wrong readback value: %v != %v", val, val2) - } - // Remove - err = xattr.LRemove(fn, attr) - if err != nil { - return err - } - // Read back - val3, err := xattr.LGet(fn, attr) - if err == nil { - return fmt.Errorf("attr is still there after deletion!? val3=%v", val3) - } - // List - list, err = xattr.LList(fn) - if err != nil { - return err - } - if len(list) > 0 { - return fmt.Errorf("Should have gotten empty result, got %v", list) - } - return nil -} - -// Test xattr set, get, rm on a regular file. -func TestSetGetRmRegularFile(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestSetGetRmRegularFile" - err := ioutil.WriteFile(fn, []byte("12345"), 0700) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - err = setGetRmList(fn) - if err != nil { - t.Error(err) - } - fi, _ := os.Lstat(fn) - if fi.Size() != 5 { - t.Errorf("file size has changed!? size=%d", fi.Size()) - } -} - -// Test xattr set, get, rm on a fifo. This should not hang. -func TestSetGetRmFifo(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestSetGetRmFifo" - err := syscall.Mkfifo(fn, 0700) - if err != nil { - t.Fatalf("creating fifo failed: %v", err) - } - // We expect to get EPERM, but we should not hang: - // $ setfattr -n user.foo -v XXXXX fifo - // setfattr: fifo: Operation not permitted - setGetRmList(fn) -} - -// Test xattr set, get, rm on a directory. This should not fail with EISDIR. -func TestSetGetRmDir(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestSetGetRmDir" - err := syscall.Mkdir(fn, 0700) - if err != nil { - t.Fatalf("creating directory failed: %v", err) - } - setGetRmList(fn) -} - -func TestXattrSetEmpty(t *testing.T) { - attr := "user.foo" - fn := test_helpers.DefaultPlainDir + "/TestXattrSetEmpty1" - err := ioutil.WriteFile(fn, nil, 0700) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - // Make sure it does not exist already - _, err = xattr.LGet(fn, attr) - if err == nil { - t.Fatal("we should have got an error here") - } - // Set empty value - err = xattr.LSet(fn, attr, nil) - if err != nil { - t.Fatal(err) - } - // Read back - val, err := xattr.LGet(fn, attr) - if err != nil { - t.Fatal(err) - } - if len(val) != 0 { - t.Errorf("wrong length: want=0 have=%d", len(val)) - } - // Overwrite empty value with something - val1 := []byte("xyz123") - err = xattr.LSet(fn, attr, val1) - if err != nil { - t.Fatal(err) - } - // Read back - val2, err := xattr.LGet(fn, attr) - if err != nil { - t.Fatal(err) - } - if !bytes.Equal(val1, val2) { - t.Fatalf("wrong readback value: %v != %v", val1, val2) - } - // Overwrite something with empty value - err = xattr.LSet(fn, attr, nil) - if err != nil { - t.Fatal(err) - } - // Read back - val, err = xattr.LGet(fn, attr) - if err != nil { - t.Fatal(err) - } - if len(val) != 0 { - t.Errorf("wrong length: want=0 have=%d", len(val2)) - } -} - -func TestXattrList(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestXattrList" - err := ioutil.WriteFile(fn, nil, 0700) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - val := []byte("xxxxxxxxyyyyyyyyyyyyyyyzzzzzzzzzzzzz") - num := 20 - for i := 1; i <= num; i++ { - attr := fmt.Sprintf("user.TestXattrList.%02d", i) - err = xattr.LSet(fn, attr, val) - if err != nil { - t.Fatal(err) - } - } - names, err := xattr.LList(fn) - if err != nil { - t.Fatal(err) - } - if len(names) != num { - t.Errorf("wrong number of names, want=%d have=%d", num, len(names)) - } - for _, n := range names { - if !strings.HasPrefix(n, "user.TestXattrList.") { - t.Errorf("unexpected attr name: %q", n) - } - } -} - -func xattrSupported(path string) bool { - _, err := xattr.LGet(path, "user.xattrSupported-dummy-value") - if err == nil { - return true - } - err2 := err.(*xattr.Error) - if err2.Err == syscall.EOPNOTSUPP { - return false - } - return true -} - -func TestBase64XattrRead(t *testing.T) { - attrName := "user.test" - attrName2 := "user.test2" - encryptedAttrName := "user.gocryptfs.LB1kHHVrX1OEBdLmj3LTKw" - encryptedAttrName2 := "user.gocryptfs.d2yn5l7-0zUVqviADw-Oyw" - attrValue := fmt.Sprintf("test.%d", cryptocore.RandUint64()) - - fileName := "TestBase64Xattr" - encryptedFileName := "BaGak7jIoqAZQMlP0N5uCw" - - plainFn := test_helpers.DefaultPlainDir + "/" + fileName - encryptedFn := test_helpers.DefaultCipherDir + "/" + encryptedFileName - err := ioutil.WriteFile(plainFn, nil, 0700) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - if _, err2 := os.Stat(encryptedFn); os.IsNotExist(err2) { - t.Fatalf("encrypted file does not exist: %v", err2) - } - xattr.LSet(plainFn, attrName, []byte(attrValue)) - - encryptedAttrValue, err1 := xattr.LGet(encryptedFn, encryptedAttrName) - if err1 != nil { - t.Fatal(err1) - } - - xattr.LSet(encryptedFn, encryptedAttrName2, encryptedAttrValue) - plainValue, err := xattr.LGet(plainFn, attrName2) - - if err != nil || string(plainValue) != attrValue { - t.Fatalf("Attribute binary value decryption error: have=%q want=%q err=%v", string(plainValue), attrValue, err) - } - - encryptedAttrValue64 := base64.RawURLEncoding.EncodeToString(encryptedAttrValue) - xattr.LSet(encryptedFn, encryptedAttrName2, []byte(encryptedAttrValue64)) - - plainValue, err = xattr.LGet(plainFn, attrName2) - if err != nil || string(plainValue) != attrValue { - t.Fatalf("Attribute base64-encoded value decryption error %s != %s %v", string(plainValue), attrValue, err) - } - - // Remount with -wpanic=false so gocryptfs does not panics when it sees - // the broken xattrs - test_helpers.UnmountPanic(test_helpers.DefaultPlainDir) - test_helpers.MountOrExit(test_helpers.DefaultCipherDir, test_helpers.DefaultPlainDir, "-zerokey", "-wpanic=false") - - brokenVals := []string{ - "111", - "raw-test-long-block123", - "raw-test-long-block123-xyz11111111111111111111111111111111111111", - "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$", - } - for _, val := range brokenVals { - xattr.LSet(encryptedFn, encryptedAttrName2, []byte(val)) - plainValue, err = xattr.LGet(plainFn, attrName2) - err2, _ := err.(*xattr.Error) - if err == nil || err2.Err != syscall.EIO { - t.Fatalf("Incorrect handling of broken data %s %v", string(plainValue), err) - } - } -} - -// Listing xattrs should work even when we don't have read access -func TestList0000File(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestList0000File" - err := ioutil.WriteFile(fn, nil, 0000) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - _, err = xattr.LList(fn) - if err != nil { - t.Error(err) - } -} - -// Setting xattrs should work even when we don't have read access -func TestSet0200File(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestSet0200File" - err := ioutil.WriteFile(fn, nil, 0200) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - err = xattr.LSet(fn, "user.foo", []byte("bar")) - if err != nil { - t.Error(err) - } -} - -// Listing xattrs should work even when we don't have read access -func TestList0000Dir(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestList0000Dir" - err := syscall.Mkdir(fn, 0000) - if err != nil { - t.Fatalf("creating directory failed: %v", err) - } - _, err = xattr.LList(fn) - os.Chmod(fn, 0700) - if err != nil { - t.Error(err) - } -} - -// Setting xattrs should work even when we don't have read access -func TestSet0200Dir(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestSet0200Dir" - err := syscall.Mkdir(fn, 0200) - if err != nil { - t.Fatalf("creating directory failed: %v", err) - } - err = xattr.LSet(fn, "user.foo", []byte("bar")) - os.Chmod(fn, 0700) - if err != nil { - t.Error(err) - } -} - -func TestAcl(t *testing.T) { - fn := test_helpers.DefaultPlainDir + "/TestAcl" - err := ioutil.WriteFile(fn, nil, 0600) - if err != nil { - t.Fatalf("creating empty file failed: %v", err) - } - // ACLs are blobs generated in userspace, let's steal a valid ACL from - // setfacl: - // - // $ setfacl -m u:root:r file - // $ getfattr -n system.posix_acl_access file - // # file: file - // system.posix_acl_access=0sAgAAAAEABgD/////AgAEAAAAAAAEAAQA/////xAABAD/////IAAEAP////8= - // - // The ACL gives user root additional read rights, in other words, it should - // have no effect at all. - - acl, err := base64.StdEncoding.DecodeString("AgAAAAEABgD/////AgAEAAAAAAAEAAQA/////xAABAD/////IAAEAP////8=") - if err != nil { - t.Fatal(err) - } - if len(acl) != 44 { - t.Fatal(len(acl)) - } - err = setGetRmList3(fn, "system.posix_acl_access", acl) - if err != nil { - t.Error(err) - } -} diff --git a/volume.go b/volume.go new file mode 100644 index 0000000..393f2df --- /dev/null +++ b/volume.go @@ -0,0 +1,172 @@ +// gocryptfs is an encrypted overlay filesystem written in Go. +// See README.md ( https://github.com/rfjakob/gocryptfs/blob/master/README.md ) +// and the official website ( https://nuetzlich.net/gocryptfs/ ) for details. +package main + +import ( + "C" + "os" + "path/filepath" + "strings" + "syscall" + + "./internal/configfile" + "./internal/contentenc" + "./internal/cryptocore" + "./internal/nametransform" + "./internal/stupidgcm" + "./internal/syscallcompat" +) + +type Directory struct { + fd int + iv []byte +} + +type File struct { + fd *os.File + path string +} + +type Volume struct { + volumeID int + rootCipherDir string + plainTextNames bool + nameTransform *nametransform.NameTransform + cryptoCore *cryptocore.CryptoCore + contentEnc *contentenc.ContentEnc + dirCache map[string]Directory + file_handles map[int]File + fileIDs map[int][]byte +} + +var OpenedVolumes map[int]Volume + +func wipe(d []byte) { + for i := range d { + d[i] = 0 + } + d = nil +} + +func clearDirCache(volumeID int) { + for k := range OpenedVolumes[volumeID].dirCache { + delete(OpenedVolumes[volumeID].dirCache, k) + } +} + +func errToBool(err error) bool { + return err == nil +} + +func registerNewVolume(rootCipherDir string, masterkey []byte, cf *configfile.ConfFile) int { + var newVolume Volume + + newVolume.plainTextNames = cf.IsFeatureFlagSet(configfile.FlagPlaintextNames) + + // Init crypto backend + cryptoBackend := cryptocore.BackendGoGCM + if cf.IsFeatureFlagSet(configfile.FlagAESSIV) { + cryptoBackend = cryptocore.BackendAESSIV + } else if stupidgcm.PreferOpenSSL() { + cryptoBackend = cryptocore.BackendOpenSSL + } + forcedecode := false + newVolume.cryptoCore = cryptocore.New(masterkey, cryptoBackend, contentenc.DefaultIVBits, true, forcedecode) + newVolume.contentEnc = contentenc.New(newVolume.cryptoCore, contentenc.DefaultBS, forcedecode) + newVolume.nameTransform = nametransform.New(newVolume.cryptoCore.EMECipher, true, true) + + //copying rootCipherDir + var grcd strings.Builder + grcd.WriteString(rootCipherDir) + newVolume.rootCipherDir = grcd.String() + + // New empty caches + newVolume.dirCache = make(map[string]Directory) + newVolume.file_handles = make(map[int]File) + newVolume.fileIDs = make(map[int][]byte) + + //find unused volumeID + volumeID := -1 + c := 0 + for volumeID == -1 { + _, ok := OpenedVolumes[c] + if !ok { + volumeID = c + } + c++ + } + if OpenedVolumes == nil { + OpenedVolumes = make(map[int]Volume) + } + OpenedVolumes[volumeID] = newVolume + return volumeID +} + +//export gcf_init +func gcf_init(rootCipherDir string, password, givenScryptHash, returnedScryptHashBuff []byte) int { + volumeID := -1 + cf, err := configfile.Load(filepath.Join(rootCipherDir, configfile.ConfDefaultName)) + if err == nil { + masterkey := cf.GetMasterkey(password, givenScryptHash, returnedScryptHashBuff) + if masterkey != nil { + volumeID = registerNewVolume(rootCipherDir, masterkey, cf) + wipe(masterkey) + } + } + return volumeID +} + +//export gcf_close +func gcf_close(volumeID int) { + OpenedVolumes[volumeID].cryptoCore.Wipe() + for handleID := range OpenedVolumes[volumeID].file_handles { + gcf_close_file(volumeID, handleID) + } + clearDirCache(volumeID) + delete(OpenedVolumes, volumeID) +} + +//export gcf_is_closed +func gcf_is_closed(volumeID int) bool { + _, ok := OpenedVolumes[volumeID] + return !ok +} + +//export gcf_change_password +func gcf_change_password(rootCipherDir string, oldPassword, givenScryptHash, new_password, returnedScryptHashBuff []byte) bool { + success := false + cf, err := configfile.Load(filepath.Join(rootCipherDir, configfile.ConfDefaultName)) + if err == nil { + masterkey := cf.GetMasterkey(oldPassword, givenScryptHash, nil) + if masterkey != nil { + logN := cf.ScryptObject.LogN() + scryptHash := cf.EncryptKey(masterkey, new_password, logN, len(returnedScryptHashBuff) > 0) + wipe(masterkey) + for i := range scryptHash { + returnedScryptHashBuff[i] = scryptHash[i] + scryptHash[i] = 0 + } + success = errToBool(cf.WriteFile()) + } + } + return success +} + +//export gcf_create_volume +func gcf_create_volume(rootCipherDir string, password []byte, plaintextNames bool, logN int, creator string) bool { + err := configfile.Create(filepath.Join(rootCipherDir, configfile.ConfDefaultName), password, plaintextNames, logN, creator, false, false, nil, nil) + if err == nil { + if plaintextNames { + return true + } else { + dirfd, err := syscall.Open(rootCipherDir, syscall.O_DIRECTORY|syscallcompat.O_PATH, 0) + if err == nil { + err = nametransform.WriteDirIVAt(dirfd) + syscall.Close(dirfd) + return errToBool(err) + } + } + } + return false +}