Showing preview only (1,940K chars total). Download the full file or copy to clipboard to get everything.
Repository: svenstaro/genact
Branch: master
Commit: 4dc48b059b93
Files: 66
Total size: 1.8 MB
Directory structure:
gitextract_c9h9pq36/
├── .editorconfig
├── .github/
│ ├── dependabot.yml
│ └── workflows/
│ ├── build-release.yml
│ └── ci.yml
├── .gitignore
├── CHANGELOG.md
├── CONTRIBUTING.md
├── Cargo.toml
├── Containerfile
├── LICENSE
├── Makefile
├── PULL_REQUEST_TEMPLATE.md
├── README.md
├── Trunk.toml
├── data/
│ ├── ansible_roles.txt
│ ├── ansible_tasks.txt
│ ├── boot_hooks.txt
│ ├── bootlog.txt
│ ├── cfiles.txt
│ ├── composer.txt
│ ├── css_properties.txt
│ ├── docker_packages.txt
│ ├── docker_tags.txt
│ ├── julia.csv
│ ├── os_releases.txt
│ ├── packages.txt
│ ├── rkhunter_checks.txt
│ ├── rkhunter_rootkits.txt
│ ├── rkhunter_tasks.txt
│ ├── simcity.txt
│ ├── terraform_aws_resources.txt
│ ├── terraform_azure_resources.txt
│ ├── terraform_gcp_resources.txt
│ ├── terraform_ids.txt
│ ├── web_apis.txt
│ └── wpt_categories.txt
├── index.html
├── release.toml
├── src/
│ ├── args.rs
│ ├── data.rs
│ ├── generators.rs
│ ├── io.rs
│ ├── lib.rs
│ ├── main.rs
│ └── modules/
│ ├── ansible.rs
│ ├── bootlog.rs
│ ├── botnet.rs
│ ├── bruteforce.rs
│ ├── cargo.rs
│ ├── cc.rs
│ ├── composer.rs
│ ├── cryptomining.rs
│ ├── docker_build.rs
│ ├── docker_image_rm.rs
│ ├── download.rs
│ ├── julia.rs
│ ├── kernel_compile.rs
│ ├── memdump.rs
│ ├── mkinitcpio.rs
│ ├── mod.rs
│ ├── rkhunter.rs
│ ├── simcity.rs
│ ├── terraform.rs
│ ├── weblog.rs
│ └── wpt.rs
└── static/
└── styles.css
================================================
FILE CONTENTS
================================================
================================================
FILE: .editorconfig
================================================
root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
indent_style = space
indent_size = 4
[Makefile]
indent_style = tab
[*.md]
trim_trailing_whitespace = false
================================================
FILE: .github/dependabot.yml
================================================
version: 2
updates:
- package-ecosystem: cargo
directory: "/"
schedule:
interval: monthly
groups:
all-dependencies:
patterns:
- "*"
================================================
FILE: .github/workflows/build-release.yml
================================================
name: Build/publish release
on: [push, pull_request]
jobs:
publish:
name: Binary ${{ matrix.target }} (on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
outputs:
version: ${{ steps.extract_version.outputs.version }}
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
cross: true
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
cross: true
- os: ubuntu-latest
target: aarch64-unknown-linux-musl
cross: true
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
cross: true
- os: ubuntu-latest
target: armv7-unknown-linux-musleabihf
cross: true
- os: ubuntu-latest
target: armv7-unknown-linux-gnueabihf
cross: true
- os: ubuntu-latest
target: arm-unknown-linux-musleabihf
cross: true
- os: windows-latest
target: x86_64-pc-windows-msvc
cross: false
- os: macos-latest
target: x86_64-apple-darwin
cross: false
- os: ubuntu-latest
target: x86_64-unknown-freebsd
cross: true
- os: ubuntu-latest
target: wasm32-unknown-unknown
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
- run: cargo install trunk wasm-bindgen-cli
if: matrix.target == 'wasm32-unknown-unknown'
- run: sudo apt install musl-tools
if: startsWith(matrix.os, 'ubuntu') && matrix.target != 'wasm32-unknown-unknown'
- name: Set exe extension for Windows
run: echo "RUSTFLAGS=--cfg getrandom_backend=\"wasm_js\"" >> "$GITHUB_ENV"
if: matrix.target == 'wasm32-unknown-unknown'
- name: cargo build
uses: houseabsolute/actions-rust-cross@v0
with:
command: build
args: --release --locked ${{ matrix.cargo_flags }}
target: ${{ matrix.target }}
- name: trunk build
run: trunk build --release
if: matrix.target == 'wasm32-unknown-unknown'
- name: Set exe extension for Windows
run: echo "EXE=.exe" >> $env:GITHUB_ENV
if: startsWith(matrix.os, 'windows')
- name: Compress binaries
uses: svenstaro/upx-action@v2
with:
files: target/${{ matrix.target }}/release/genact${{ env.EXE }}
args: --best --lzma
strip: false # We're stripping already in Cargo.toml
if: matrix.target != 'wasm32-unknown-unknown' && matrix.target != 'x86_64-unknown-freebsd' && matrix.target != 'x86_64-apple-darwin'
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target }}
path: target/${{ matrix.target }}/release/genact${{ env.EXE }}
if: matrix.target != 'wasm32-unknown-unknown'
- name: Get version from tag
id: extract_version
run: |
echo "version=${GITHUB_REF_NAME#v}" >> "$GITHUB_OUTPUT"
shell: bash
if: matrix.target != 'wasm32-unknown-unknown'
- name: Install CHANGELOG parser
uses: taiki-e/install-action@parse-changelog
- name: Get CHANGELOG entry
run: parse-changelog CHANGELOG.md ${{ steps.extract_version.outputs.version }} | tee changelog_entry
if: startsWith(github.ref_name, 'v') && github.ref_type == 'tag'
shell: bash
- name: Read changelog entry from file
id: changelog_entry
uses: juliangruber/read-file-action@v1
with:
path: ./changelog_entry
if: startsWith(github.ref_name, 'v') && github.ref_type == 'tag'
- name: Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target }}/release/genact${{ env.EXE }}
tag: ${{ github.ref_name }}
asset_name: genact-${{ steps.extract_version.outputs.version }}-${{ matrix.target }}${{ env.EXE }}
body: ${{ steps.changelog_entry.outputs.content }}
if: startsWith(github.ref_name, 'v') && github.ref_type == 'tag' && matrix.target != 'wasm32-unknown-unknown'
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
if: startsWith(github.ref_name, 'v') && github.ref_type == 'tag' && matrix.target == 'wasm32-unknown-unknown'
container-images:
name: Publish images
runs-on: ubuntu-latest
needs: publish
if: (startsWith(github.ref_name, 'v') && github.ref_type == 'tag') || github.event.repository.default_branch == github.ref_name
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Download artifact aarch64-unknown-linux-musl
uses: actions/download-artifact@v4
with:
name: aarch64-unknown-linux-musl
path: target/aarch64-unknown-linux-musl/release
- name: Download artifact x86_64-unknown-linux-musl
uses: actions/download-artifact@v4
with:
name: x86_64-unknown-linux-musl
path: target/x86_64-unknown-linux-musl/release
- name: Download artifact armv7-unknown-linux-musleabihf
uses: actions/download-artifact@v4
with:
name: armv7-unknown-linux-musleabihf
path: target/armv7-unknown-linux-musleabihf/release
- name: podman login
run: podman login --username ${{ secrets.DOCKERHUB_USERNAME }} --password ${{ secrets.DOCKERHUB_TOKEN }} docker.io
- name: podman build linux/arm64
run: podman build --format docker --platform linux/arm64/v8 --manifest genact -f Containerfile target/aarch64-unknown-linux-musl/release
- name: podman build linux/amd64
run: podman build --format docker --platform linux/amd64 --manifest genact -f Containerfile target/x86_64-unknown-linux-musl/release
- name: podman build linux/arm
run: podman build --format docker --platform linux/arm/v7 --manifest genact -f Containerfile target/armv7-unknown-linux-musleabihf/release
- name: podman manifest push latest
run: podman manifest push genact docker.io/svenstaro/genact:latest
- name: podman manifest push tag version
run: podman manifest push genact docker.io/svenstaro/genact:${{ needs.publish.outputs.version }}
if: startsWith(github.ref_name, 'v')
================================================
FILE: .github/workflows/ci.yml
================================================
name: CI
on: [push, pull_request]
jobs:
ci:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: cargo build
run: cargo build
- name: cargo test
run: cargo test
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy -- -D warnings
================================================
FILE: .gitignore
================================================
target/
dist/
**/*.rs.bk
================================================
FILE: CHANGELOG.md
================================================
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate
- Fix getting stuck in rkhunter module [#704](https://github.com/svenstaro/genact/issues/704)
## [1.5.1] - 2026-01-26
- Add idle inhibition feature via `--inhibit` [#698](https://github.com/svenstaro/genact/pull/698) (thanks @cyqsimon)
## [1.5.0] - 2026-01-08
- Add web-platform-tests module [#695](https://github.com/svenstaro/genact/pull/695) (thanks @alimpfard)
## [1.4.2] - 2024-02-17
- Use more realistic sleep distribution in Terraform module
- Make the number of processed resources finite in Terraform module - before it never actually quit
## [1.4.1] - 2024-02-17
- Fix hang in Terraform module on WASM [#624](https://github.com/svenstaro/genact/issues/624)
## [1.4.0] - 2024-02-16
- Add Terraform module [#622](https://github.com/svenstaro/genact/pull/622) (thanks @taskinen)
## [1.3.0] - 2023-12-10
- Fix undeterministically ordered module list [#528](https://github.com/svenstaro/genact/pull/528) (thanks @VergeDX)
- Implement `--instant-print-lines` argument [#583](https://github.com/svenstaro/genact/pull/583) (thanks @josherrickson)
## [1.2.2] - 2022-10-10
- Add manpage printing via `--print-manpage`
- Add completions printing via `--print-completions`
## [1.2.1] - 2022-10-10
- Enable multiple parallel decryptions to run in bruteforce [#414](https://github.com/svenstaro/genact/pull/414) (thanks @equal-l2)
## [1.2.0] - 2022-10-09
- Add bruteforce module [#408](https://github.com/svenstaro/genact/pull/408) (thanks @equal-l2)
## [1.1.1] - 2022-09-13
- Fixed julia module logo in web version [#400](https://github.com/svenstaro/genact/pull/392) (thanks @FedericoStra)
- Update deps
## [1.1.0] - 2022-09-13
- Use musl binaries inside container image
- Add julia module [#392](https://github.com/svenstaro/genact/pull/392) (thanks @FedericoStra)
- Fix wasm version
## [1.0.2] - 2022-09-10
- Use less CPU when printing large strings
- Improve release flow
## [1.0.1] - 2022-09-09
- Update deps
- Fix Docker Hub image publishing
## [1.0.0] - 2022-09-07
- Add a bunch more extensions and file formats
- Add rkhunter module [#381](https://github.com/svenstaro/genact/pull/381) (thanks @Kovah)
## [0.12.0] - 2022-02-21
- Add Ansible module [#301](https://github.com/svenstaro/genact/issues/301)
## [0.11.0] - 2021-03-19
- Add docker_build module [#103](https://github.com/svenstaro/genact/pull/103) (thanks @Kovah)
- Refactored modules to implement a common trait
## [0.10.0] - 2020-08-27
- Add `--exit-after-modules` options which can be used to make genact exit after running that many modules
## [0.9.0] - 2020-08-10
- Add global speed [#132](https://github.com/svenstaro/genact/issues/132)
## [0.8.1] - 2020-08-10
- Refactor entrypoint, modules, and file structure
- Use structopt instead of clap which should give better errors
- Improve wasm download size
## [0.8.0] - 2020-08-05
- Enhance download module
- Rewrite web version using wasm-bindgen
<!-- next-url -->
[Unreleased]: https://github.com/svenstaro/genact/compare/v1.5.1...HEAD
[1.5.1]: https://github.com/svenstaro/genact/compare/v1.5.0...v1.5.1
[1.5.0]: https://github.com/svenstaro/genact/compare/v1.4.2...v1.5.0
[1.4.2]: https://github.com/svenstaro/genact/compare/v1.4.1...v1.4.2
[1.4.1]: https://github.com/svenstaro/genact/compare/v1.4.0...v1.4.1
[1.4.0]: https://github.com/svenstaro/genact/compare/v1.3.0...v1.4.0
[1.3.0]: https://github.com/svenstaro/genact/compare/v1.2.2...v1.3.0
[1.2.2]: https://github.com/svenstaro/genact/compare/v1.2.1...v1.2.2
[1.2.1]: https://github.com/svenstaro/genact/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/svenstaro/genact/compare/v1.1.1...v1.2.0
[1.1.1]: https://github.com/svenstaro/genact/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/svenstaro/genact/compare/v1.0.2...v1.1.0
[1.0.2]: https://github.com/svenstaro/genact/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/svenstaro/genact/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/svenstaro/genact/compare/v0.12.0...v1.0.0
[0.12.0]: https://github.com/svenstaro/genact/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/svenstaro/genact/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/svenstaro/genact/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/svenstaro/genact/compare/v0.8.1...v0.9.0
[0.8.1]: https://github.com/svenstaro/genact/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/svenstaro/proby/compare/0.7.0...v0.8.0
================================================
FILE: CONTRIBUTING.md
================================================
# How to contribute
If you want to add a cool module just implement it, lint it with [clippy](https://github.com/rust-lang-nursery/rust-clippy)
and make a pull request with a screenshot. I will probably accept it.
## Building for the web
The `trunk` cli is required to build the web version. To add this, run `cargo install trunk`.
## Code details
- Make sure your runs on wasm32 as well as on other platforms. For instance, please don't use `println!()` but instead
prefer `io::dprint()`, `io::newline()`, or `io::print()`.
================================================
FILE: Cargo.toml
================================================
[package]
name = "genact"
description = "A nonsense activity generator"
version = "1.5.1"
repository = "https://github.com/svenstaro/genact"
authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["fake", "nonsense", "useless"]
categories = ["command-line-utilities", "command-line-interface"]
edition = "2024"
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1
# We can't set strip = true because of https://github.com/rust-lang/rust/issues/93294
strip = "debuginfo"
[patch.crates-io]
# TODO: Remove once we get a new fake-rs release
fake = { git = "https://github.com/cksac/fake-rs.git" }
[dependencies]
anyhow = "1"
async-std = { version = "1", features = ["attributes"] }
async-trait = "0.1"
chrono = { version = "0.4", features = ["clock", "wasmbind"], default-features = false }
fake = { version = "4.3", features = ["chrono"] }
colorgrad = { version = "0.8", features = ["preset"] }
humansize = "2"
humantime = "2"
instant = { version = "0.1", features = ["now", "wasm-bindgen"] }
progress_string = "0.2"
getrandom = { version = "0.4", features = ["wasm_js"] }
rand = "0.10"
rand_distr = "0.6"
regex = "1.12"
sha2 = "0.10.9"
yansi = "1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
clap = { version = "4.5", features = ["derive", "cargo", "wrap_help"] }
clap_complete = "4"
clap_mangen = "0.2"
ctrlc = { version = "3.5", features = ["termination"] }
terminal_size = "0.4"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1"
js-sys = "0.3"
url = "2.5"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = ["Window", "Location", "console"] }
# `keepawake` only supports these platforms
[target.'cfg(any(target_os = "linux", target_os = "macos", target_os = "windows"))'.dependencies]
keepawake = "0.6.0"
================================================
FILE: Containerfile
================================================
FROM scratch
COPY --chmod=755 genact /app/
ENTRYPOINT ["/app/genact"]
================================================
FILE: LICENSE
================================================
Copyright 2020 Sven-Hendrik Haase
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
================================================
FILE: Makefile
================================================
.PHONY: build-linux
build-linux:
cargo build --target x86_64-unknown-linux-musl --release
strip target/x86_64-unknown-linux-musl/release/genact
upx --lzma target/x86_64-unknown-linux-musl/release/genact
.PHONY: build-win
build-win:
RUSTFLAGS="-C linker=x86_64-w64-mingw32-gcc" cargo build --target x86_64-pc-windows-gnu --release
strip target/x86_64-pc-windows-gnu/release/genact.exe
upx --lzma target/x86_64-pc-windows-gnu/release/genact.exe
.PHONY: build-apple
build-apple:
cargo build --target x86_64-apple-darwin --release
strip target/x86_64-apple-darwin/release/genact
upx --lzma target/x86_64-apple-darwin/release/genact
.PHONY: build-web
build-web:
RUSTFLAGS='--cfg getrandom_backend="wasm_js"' trunk build --release
.PHONY: clean
clean:
cargo clean
trunk clean
================================================
FILE: PULL_REQUEST_TEMPLATE.md
================================================
<!-- If you're adding a new module, please consider posting a screenshot or a gif since it would be nice to see what it looks like. -->
================================================
FILE: README.md
================================================
# genact - a nonsense activity generator
[](https://github.com/svenstaro/genact/actions)
[](https://cloud.docker.com/repository/docker/svenstaro/genact/)
[](https://crates.io/crates/genact)
[](https://github.com/svenstaro/genact/blob/master/LICENSE)
[](https://github.com/svenstaro/genact/stargazers)
[](https://github.com/svenstaro/genact/releases)
**Pretend to be busy or waiting for your computer when you should actually be doing real work!** Impress people with your insane multitasking skills. Just open a few instances of `genact` and watch the show. `genact` has multiple scenes that pretend to be doing something exciting or useful when in reality nothing is happening at all.



## Installation
<a href="https://repology.org/project/genact/versions"><img align="right" src="https://repology.org/badge/vertical-allrepos/genact.svg" alt="Packaging status"></a>
You don't have to install anything! For your convenience, prebuilt binaries for Linux, OSX and Windows are provided [here](https://github.com/svenstaro/genact/releases) that should run without any dependencies. **Additionally, there is a web version at https://svenstaro.github.io/genact/**
It's compatible with FreeBSD, Linux, macOS, Windows, and most modern web browsers that support WebAssembly.
**On FreeBSD**: You don't have to do anything special here. Just run
pkg install genact
genact
**On Linux**: Download `genact-linux` from [the releases page](https://github.com/svenstaro/genact/releases) and run
chmod +x genact-linux
./genact-linux
**On macOS**: Download `genact-osx` from [the releases page](https://github.com/svenstaro/genact/releases) and run
chmod +x genact-osx
./genact-osx
A homebrew package is also available. To install it this way, run
brew install genact
On macOS, you can also install via MacPorts:
sudo port install genact
**On Windows**: Download `genact-win.exe` from [the releases page](https://github.com/svenstaro/genact/releases) and double click it.
It is also available on Scoop:
scoop install genact
**With Cargo**: If you have a somewhat recent version of Rust and Cargo installed, you can run
cargo install genact
genact
**With gah**: If you are using [gah](https://github.com/marverix/gah), you can run
gah install genact
## Running
To see a list of all available options, you can run
./genact -h
or
cargo run -- -h
or (on Docker)
docker run -it --rm svenstaro/genact -h
### Usage
A nonsense activity generator
Usage: genact [OPTIONS]
Options:
-l, --list-modules List available modules
-m, --modules <MODULES> Run only these modules [possible values: ansible, bootlog, botnet, bruteforce, cargo, cc,
composer, cryptomining, docker_build, docker_image_rm, download, julia, kernel_compile, memdump,
mkinitcpio, rkhunter, simcity, terraform, weblog]
-s, --speed-factor <SPEED_FACTOR> Global speed factor [default: 1]
-i, --instant-print-lines <INSTANT_PRINT_LINES> Instantly print this many lines [default: 0]
--exit-after-time <EXIT_AFTER_TIME> Exit after running for this long (format example: 2h10min)
--exit-after-modules <EXIT_AFTER_MODULES> Exit after running this many modules
--print-completions <shell> Generate completion file for a shell [possible values: bash, elvish, fish, powershell, zsh]
--print-manpage Generate man page
-h, --help Print help
-V, --version Print version
### Web usage
In the web version, you can run specific modules by providing them as `?module`
parameters like this: https://svenstaro.github.io/genact?module=cc&module=memdump
You can also provide a `?speed-factor` like this:
https://svenstaro.github.io/genact?speed-factor=5
## Building
You should have a recent version of rust and cargo installed.
Then, just clone it like usual and `cargo run` to get output:
git clone https://github.com/svenstaro/genact.git
cd genact
cargo run --release
## Releasing
This is mostly a note for me on how to release this thing:
- Make sure `CHANGELOG.md` is up to date.
- `cargo release <version>`
- `cargo release --execute <version>`
- Releases will automatically be deployed by GitHub Actions.
- Update Arch package.
================================================
FILE: Trunk.toml
================================================
[build]
public_url = "/genact/"
================================================
FILE: data/ansible_roles.txt
================================================
alertmanager
company_boxes_sync
lolbuild
archive
archive_web
companyusers
companyweb
companywiki
aurweb
borg_client
borg_server
bugbot
certbot
certificate
common
dbscripts
debuginfod
dovecot
fail2ban
fetchmail
firewalld
fluxbb
flyspray
gitlab
gitlab_runner
gluebuddy
grafana
hardening
hedgedoc
hetzner_storagebox
install_company
keycloak
loki
mailman
maintenance
mariadb
matrix
memcached
mta_sts
networking
nginx
patchwork
php7_fpm
php_fpm
phrik
ping
postfix
postfix_null
postfwd
postgres
prometheus
prometheus_exporters
promtail
public_html
quassel
rebuilderd
rebuilderd_worker
redirects
redis
root_ssh
rspamd
rsync_net
security_tracker
sources
sshd
sudo
syncarchive
syncdebug
syncrepo
terraform_state
tools
unbound
uwsgi
wireguard
================================================
FILE: data/ansible_tasks.txt
================================================
daemon reload
restart companyweb memcached
install debuginfod
create ssl cert
configure debuginfod systemd service
create http directory for debuginfod website files
install website files
install packagelist units
start and enable packagelist.timer
make nginx log dir
set up nginx
open debuginfod ipv4 port for monitoring.example.com
start and enable debuginfod
install promtail
install promtail configuration
open promtail ipv4 port for monitoring.example.com
create drop-in directory for promtail.service
install drop-in for promtail.service
start and enable promtail
install rsync
install syncdebug script
install syncdebug units
start and enable syncdebug units
reload rspamd
'default-receiver'
'rebuilderd'
install redis
start and enable redis
install rspamd
install config
install dkim_signing.conf
create rspamd dkim directory
install DKIM keys
start and enable rspamd
restart fetchmail
restart emperor.uwsgi
restart promtail
install wireguard-tools
install wireguard configuration
create wireguard zone
reload firewalld
add wg0 to the wireguard zone
open firewall holes
delete wg0
reload .network and .netdev files
reload debuginfod
create ssl cert
make nginx log dir
set up nginx
copy nginx map files
install required packages
configure rebuilderd-worker.conf
create company repro configuration dir
install smart-repro configuration
enable and start rebuilderd-worker@{{ item }}
install alertmanager server
install alertmanager configuration
enable alertmanager server service
create ssl cert
make nginx log dir
set up nginx
reload postfix
install postfix
install template configs
create user account on mail to relay with
start and enable postfix
install fetchmail
template fetchmail config
start and enable fetchmail
create ssl cert
make nginx log dir
set up nginx
configure network (static)
install 10-static-ethernet.network
create drop-in directory for 10-static-ethernet.network
configure static dns (static)
configure network (dhcp)
install 10-dhcp-ethernet.network
create drop-in directory for 10-dhcp-ethernet.network
configure static dns (dhcp)
create symlink to resolv.conf
install hcloud-init
install hcloud-init.service
enable hcloud-init inside chroot
start and enable hcloud-init
start and enable networkd
start and enable resolved
daemon reload
restart networkd
install php7-fpm
install php7-fpm units
configure default php.ini
reload alertmanager
install uwsgi
make uwsgi user
configure uwsgi
vassals directory
create default uwsgi log directory
enable and start emperor.uwsgi.service
restart loki
install sequoia
install systemd service/timer
enable timer
install conf file
install download script
download latest gluebuddy
daemon reload
create ssl cert
install loki and logcli
install loki configuration
make nginx log dir
set up nginx
open firewall hole
create drop-in directory for loki
install drop-in snippet for loki
start and enable loki
install misc utils
create ssl cert
install hedgedoc
add hedgedoc postgres db
add hedgedoc postgres user
make nginx log dir
set up nginx
add hedgedoc.service.d dir
install hedgedoc.service snippet for configuration
install hedgedoc config file
start and enable hedgedoc
create ssl cert
install required packages
make companymanweb user
fix home permissions
set companymanweb groups
set up nginx
make nginx log dir
clone companymanweb repo
build example-common-style
configure companymanweb
copy robots.txt
create companymanweb db user
create companymanweb db
add pg_trgm extension to the companymanweb db
run Django management tasks
configure UWSGI for companymanweb
deploy new release
install systemd units
start and enable companymanweb update timer
create ssl cert
set up nginx
make nginx log dir
make sources dir
make symlink to repo sources
make symlink to other sources
create ssl cert
set up nginx
make nginx log dir
fill tempfile
upload authorized_keys file to {{ backup_dir }}/{{ item.item }}
create the root backup directory at {{ backup_dir }}
create a home directory for each sub-account
fetch ssh keys from each borg client machine
create tempfile
fill tempfile
upload authorized_keys for Company
upload authorized_keys for each backup client
retrieve sub-account information
get list of sub-accounts
create missing sub-accounts
update list of sub-accounts
match usernames to backup clients
configure ssh on backup clients
create .ssh directory
add authorized keys for root
install prometheus server
install prometheus configuration
install prometheus cli configuration
install prometheus web-config configuration
install prometheus alert configuration
enable prometheus server service
open prometheus port for monitoring.example.com
create terraform state db
create terraform state db user
install quassel
add quassel postgres db
add quassel postgres user
initialize quassel
create ssl cert
install quassel cert renewal hook
install quassel units
add quassel.service.d dir
install quassel.service snippet
start and enable quassel
open firewall holes
restart mailman
reload mailman
reload postfix
Install unbound
Install unbound config file
Create remote-control keys
Active service
create ssl cert
install rsync
install syncrepo script
install syncrepo units
install rsyncd config
start and enable syncrepo units
set local mirror as cachedir
make nginx log dir
set up nginx
open firewall holes
create ssl cert
install mailman, uwsgi-plugin-cgi and postfx
install mailman configuration
install postfix configuration
install postfix maps
open firewall holes for postfix
create mailman list
configure mailman uwsgi service
make nginx log dir
set up nginx
start and enable postfix
create drop-in directory for mailman.service
install drop-in for mailman.service
start and enable mailman{.service,-*.timer}
reload prometheus
daemon reload
install super-boxes-sync.sh script dependencies
install super-boxes-sync.sh script
install super-boxes-sync.{service,timer}
start and enable super-boxes-sync.timer
restart unbound
install memcached
put memcached.conf into tmpfiles
use tmpfiles.d/memcached.conf
restart sshd
node_common
prometheus
pacman
btrfs
smart
borg
systemd_unit
gitlab
blackbox
rebuilderd
upgrade database
create the root backup directory at {{ backup_dir }}
fetch ssh keys from each borg client machine
create tempfile
fill tempfile
upload authorized_keys file
install required packages
create ssl cert
configure rebuilderd.conf
configure rebuilderd-sync.conf
make nginx log dir
set up nginx
enable and start rebuilderd
enable and start rebuilderd {{ item }} timer
install rsync
install syncarchive script
install syncarchive units
start and enable syncarchive units
run maintenance mode
install packages
make security user
fix home permissions
copy security-tracker units
disable security-tracker timer
receive valid signing keys
clone security-tracker repo
run initial setup
restrict database permissions
create ssl cert
set up nginx
make nginx log dir
configure security-tracker
deploy security-tracker
deploy new release
start and enable security-tracker timer
install openssh
configure sshd
set file permissions
install motd
Create the includes dir
start and enable sshd
open firewall holes
install sudo
remove all users from wheel group
add sudo users to wheel
allow wheel group to use sudo
secure path to protect against attacks
create ssl cert
copy webroot files
install public_html scripts
install public_html units
start and enable public_html units
make nginx log dir
set up nginx
create the maintenance logs dir
create the maintenance http dir
create the service http root dir
set up nginx maintenance mode
set up custom nginx maintenance mode
create the 503 html file
force reload nginx
restart postfix
reload postfix
postmap additional files
update aliases db
install postfix
install template configs
install additional files
create dhparam 2048
create ssl cert
install postfix cert renewal hook
install bouncehandler config
install packages for bounce handler
install bouncehandler script
make bouncehandler user
start and enable postfix
remove old files
open firewall holes
create postgres subvolume
install postgres
create nocow database directory
initialize postgres
configure postgres
install postgres certificate
install postgres private key
install postgres ca
start and enable postgres
set postgres user password
install postgres cert renewal hook
open firewall holes to known postgresql ipv4 clients
open firewall holes to known postgresql ipv6 clients
copy postgresql upgrade script
restart postgres
install postfwd
install postfwd.cf
start and enable postfwd
install prometheus-node-exporter
install prometheus-blackbox-exporter
install smartmontools for dedicated servers
install prometheus-memcached-exporter
add node_exporter to rebuilderd group
install prometheus-mysqld-exporter
create prometheus mysqld database user
copy prometheus mysqld exporter configuration
enable prometheus-mysqld-exporter service
copy prometheus memcached exporter configuration
install node exporter configuration
create textcollector directory
install node exporter textcollector scripts
install super textcollector service
install super textcollector timer
enable and start prometheus super textcollector timer
install borg textcollector services
enable borg textcollector services
install smart textcollector service
install smart textcollector timer
enable and start prometheus smart textcollector timer
install hetzner textcollector service
install hetzner textcollector timer
enable and start prometheus hetzner textcollector timer
install fail2ban textcollector service
install fail2ban textcollector timer
enable and start prometheus fail2ban textcollector timer
install blackbox exporter configuration
install rebuilderd textcollector service
install rebuilderd textcollector timer
enable and start prometheus rebuilderd textcollector timer
install rebuilderd textcollector service
install rebuilderd textcollector service
install rebuilderd textcollector timer
enable and start prometheus archive textcollector timer
install rebuilderd textcollector timer
enable and start prometheus repository textcollector timer
install sudoers for btrfs
install btrfs textcollector service
install btrfs textcollector timer
enable and start prometheus btrfs textcollector timer
install aur textcollector service
install aur textcollector timer
enable and start prometheus aur textcollector timer
enable prometheus-node-exporter service
enable prometheus-blackbox-exporter service
enable prometheus-memcached-exporter service
open prometheus-node-exporter ipv4 port for monitoring.example.com
open gitlab exporter ipv4 port for monitoring.example.com
open prometheus mysqld exporter ipv4 port for monitoring.example.com
open prometheus memcached exporter ipv4 port for monitoring.example.com
reload postfwd
read /etc/motd
check whether we're running in Hetzner or Packet.net rescue environment
make sure all required packages are installed in the rescue system for installation
create GRUB embed partitions
create root partitions
partition and format the disks (btrfs RAID)
partition and format the disks (btrfs single)
mount the filesystem (btrfs)
touch LOCK file on mountpoint
download bootstrap image
extract boostrap image # noqa 208
copy resolv.conf to bootstrap chroot
mount /proc to bootstrap chroot
mount /sys to bootstrap chroot
mount /dev to bootstrap chroot
mount /mnt to bootstrap chroot
configure pacman mirror
initialize pacman keyring inside bootstrap chroot
populate pacman keyring inside bootstrap chroot
install ucode update for Intel
install ucode update for AMD
install company base from bootstrap chroot
mount /proc to new chroot
mount /sys to new chroot
mount /dev to new chroot
configure locale.gen
run locale-gen inside chroot
run systemd-firstboot
run mkinitcpio
configure networking
provide default mount options (btrfs)
install grub
configure grub
enable services inside chroot
add authorized key for root
configure sshd
clean pacman cache
remove LOCK file on mountpoint
install phrik utilities
add phrik group
add phrik user
adding users to phrik group
adding users to systemd-journal group for monitoring
install phrik sudoers config
install polkit rule for restarting phrik
install phrik systemd service
start and enable pkgfile and phrikservice
install nginx
install nginx.service snippet
configure nginx
snippets directories
copy snippets
install cert renewal hook
create nginx.d directory
create auth directory
create maps directory
create default nginx log directory
create unique DH group
create directory to store validation stuff in
install logrotate config
install inventory_hostname vhost
enable nginx
open firewall holes
daemon reload
restart synapse
restart pantalaimon
restart mjolnir
restart matrix-appservice-irc
restart turnserver
create ssl cert
install packages
add synapse group
add synapse user
create synapse home
make virtualenvs
update virtualenvs
install synapse
install pantalaimon
download mjolnir
install mjolnir
build mjolnir
install mjolnir antispam module
download matrix-appservice-irc
install matrix-appservice-irc
install pg_hba.conf
add synapse postgres db
add synapse postgres user
add irc postgres db
create synapse config dir
install homeserver config
install static config
install pantalaimon config
install mjolnir config
install irc-bridge config
install irc-bridge registration
install signing key
install ircpass key
make nginx log dir
set up nginx
install turnserver.conf
install turnserver cert renewal hook
install synapse units
install pantalaimon units
install mjolnir units
install matrix-appservice-irc units
enable synapse units
enable pantalaimon units
enable mjolnir units
enable matrix-appservice-irc units
enable turnserver units
open firewall holes
install php-fpm
install php-fpm units
configure default php.ini
daemon reload
reload nginx
mjolnir
federation_reader
media_repository
homeserver
synapse.homeserver
synapse.appservice
synapse.federation_reader
synapse.federation_writer
synapse.media_repository
irc-bridge
daemon reload
restart patchwork memcached
run maintenance mode
install packages
make patchwork user
fix home permissions
set patchwork groups
create ssl cert
set up nginx
make nginx log dir
clone patchwork repo
make virtualenv
install from requirements into virtualenv
fix home permissions
configure patchwork
create patchwork db users
create patchwork db
django migrate
db privileges for patchwork users
table privileges for patchwork users
sequence privileges for patchwork users
django collectstatic
install patchwork parsemail script
install sudoer rights for fetchmail to call patchwork
install patchwork memcached service
install patchwork notification service
install patchwork notification timer
deploy patchwork
deploy new release
start and enable patchwork memcached service and notification timer
restart mariadb
install keycloak
template keycloak config
copy custom theme
request a bearer token
create an admin user
start and enable keycloak
open firewall hole
create postgres keycloak user
create keycloak db
create htpasswd for nginx prometheus endpoint
create ssl cert
make nginx log dir
set up nginx
install mariadb
initialize mariadb
configure mariadb
start and enable the service
delete anonymous users
disallow remote root login
drop test database
set root password
create client configuration for root
restart keycloak
restart php-fpm@fluxbb
create user
clone fluxbb
fix home permissions
create uploads directory
create mariadb database
create mariadb user
create ssl cert
create nginx log directory
configure nginx
install python-passlib
create auth file
install forum config
install php-apcu
configure php-fpm
start and enable systemd socket
install lolbuild
install lolbuild scripts
install lolbuild config files
install lolbuild units
install lolbuild unit
install lolbuild user units
start and enable lolbuild mounts
start and enable lolbuilddest mount
create lolbuilddest
set acl on lolbuilddest
start and enable lolbuild units
install makepkg.conf
install lolbuild sudoers config
Prometheus
Prometheus
Loki
Alertmanager
'default'
set restricted access to kernel logs
set ptrace scope, restrict ptrace to CAP_SYS_PTRACE
set restricted access to kernel pointers in proc fs
enable JIT hardening for all users
disable unprivileged bpf
disable unprivileged userns
disable kexec load
set kernel lockdown to restricted
apply sysctl settings
install docker dependencies
start docker
copy sshd_config into place to change the port to 222
start docker gitlab image
open firewall holes
copy gitlab-cleanup timer and service
activate systemd timers for gitlab-cleanup
install grafana
create ssl cert
set up nginx
make nginx log dir
create grafana config directory
create grafana provisioning directory
install grafana datasources provisioning
install grafana dashboard provisioning
copy grafana dashboards
copy (public) grafana dashboards
install grafana config
fix /var/lib/grafana permissions
start and enable service
install dependencies
install docker.slice
start docker
configure Docker daemon for IPv6
add IPv6 NAT for docker
install runner configuration
install gitlab-runner-docker-cleanup.{service,timer}
enable and start gitlab-runner-docker-cleanup.timer
enable and start gitlab runner service
restart grafana
run maintenance mode
install required packages
make amazingweb user
fix home permissions
set amazingweb groups
create ssl cert
set up nginx
make nginx log dir
make rsync iso dir
clone amazingweb repo
make virtualenv
install stuff into virtualenv
create media dir
fix home permissions
make example.com dir
configure robots.txt
configure amazingweb
create amazingweb db users
create amazingweb db
django migrate
db privileges for amazingweb users
table privileges for amazingweb users
sequence privileges for amazingweb users
django collectstatic
install reporead service
install readlinks service
install mirrorcheck service and timer
install mirrorresolv service and timer
install populate_signoffs service and timer
install planet service and timer
install rebuilderd status service and timer
install pgp_import service
create pacman.d hooks dir
install pgp_import hook
install amazingweb memcached service
install amazingweb rsync iso service and timer
deploy amazingweb
deploy new release
start and enable amazingweb memcached service and amazingweb-rsync_iso timer
start and enable amazingweb reporead service
restart amazingweb reporead service
start and enable amazingweb readlinks service
restart amazingweb readlinks service
start and enable amazingweb mirrorcheck timer
start and enable amazingweb mirrorresolv timer
start and enable amazingweb populate_signoffs timer
start and enable amazingweb planet timer
start and enable amazingweb rebulderd update timer
install donation import wrapper script
install sudoer rights for fetchmail to call amazingweb django scripts
create retro dir
clone amazingweb-retro repo
systemd daemon-reload
restart gitlab-runner
restart gitlab-runner-docker-cleanup.timer
restart docker
install archivetools package
make archive dir
setup archive configuration
setup archive timer
setup archive-hardlink timer
install internet archive packages
create archive user
configure archive.org client
clone archive uploader code
install system service
start uploader timer
create Company-specific groups
filter company_users for users with non-matching hosts
create Company-specific users
create .ssh directory
configure ssh keys
remove ssh keys if undefined
get list of remote users
disable ssh keys of disabled users
run maintenance mode
install git
make flyspray user
fix home permissions
create ssl cert
set up nginx
install nginx migrated-tasks.map
make nginx log dir
create setup dir with write permissions
clone flyspray repo
take away setup dir write permissions
configure flyspray
create flyspray db
create flyspray db user
configure php-fpm
install fail2ban register ban filter
install fail2ban register ban jail
start and enable systemd socket
restart php-fpm7@flyspray
install firewalld
install firewalld config
start and enable firewalld
disable default dhcpv6-client rule
restart firewalld
stop firewalld
start firewalld
restart fail2ban
reload fail2ban jails
install fail2ban
create systemd unit override path
install systemd unit override file
install local config files
install firewallcmd-allports.local
install sshd jail
install postfix jail
install dovecot jail
install nginx-limit-req jail
start and enable service
restart journald
systemd daemon-reload
restart systemd-zram-setup@zram0
install essential tools
start and enable vnstatd
install inetutils for hostname
set hostname
install pacman config
configure pacman mirror
update package cache
start and enable auditd
start and enable systemd-timesyncd
install smart
configure smartd to do periodic health checks
start and enable smart
start and enable btrfs scrub timer
install mlocate
activate regular updatedb for mlocate
generate locales
configure locales
generate ssh key for root
configure networking
configure tcp receive window limits
configure tcp send window limits
configure journald
install system.conf
install zram-generator
install zram-generator config for zram
disable zswap to prevent conflict with zram
use tmpfiles.d/zram.conf
create drop-in directories for oomd
install drop-in snippets for oomd
start systemd-oomd
install logrotate
configure logrotate
enable logrotate timer
create zsh directory
install root shell config
install pacman-contrib,hacker-contrib
install custom paccache.service
enable paccache timer
install svn, git, rsync and some perl stuff
install sourceballs requirements (makepkg download dependencies)
install binutils for createlinks script
create dbscripts users
add cleanup user
add sourceballs user
set up sudoers.d for special users
create ssl cert
make nginx log dir
set up nginx
put dbscripts.htpasswd in place
create Company-specific users
create .ssh directory
configure ssh keys for devs
create .ssh directory
configure ssh keys for TUs
create staging directories in user homes
create dbscripts paths
create svn-community/package-cleanup directory
add acl user:cleanup:rwx to /srv/repos/svn-community/package-cleanup
add acl default:user::rwx to /srv/repos/svn-community/package-cleanup
add acl default:user:cleanup:rwx to /srv/repos/svn-community/package-cleanup
add acl default:group::rwx to /srv/repos/svn-community/package-cleanup
add acl default:other::r-x to /srv/repos/svn-community/package-cleanup
create svn-packages/package-cleanup directory
add acl user:cleanup:rwx to /srv/repos/svn-packages/package-cleanup
add acl default:user::rwx to /srv/repos/svn-packages/package-cleanup
add acl default:user:cleanup:rwx to /srv/repos/svn-packages/package-cleanup
add acl default:group::rwx to /srv/repos/svn-packages/package-cleanup
add acl default:other::r-x to /srv/repos/svn-packages/package-cleanup
create svn-community/source-cleanup directory
create svn-packages/source-cleanup directory
create svn-community/svn directory
add acl default:user::rwx to /srv/repos/svn-community/svn
add acl default:group::r-x to /srv/repos/svn-community/svn
add acl default:other::r-x to /srv/repos/svn-community/svn
create svn-packages/svn directory
add acl default:user::rwx to /srv/repos/svn-packages/svn
add acl default:group::r-x to /srv/repos/svn-packages/svn
add acl default:other::r-x to /srv/repos/svn-packages/svn
create svn-community/tmp directory
add acl user:sourceballs:rwx to /srv/repos/svn-community/tmp
create svn-packages/tmp directory
add acl user:sourceballs:rwx to /srv/repos/svn-packages/tmp
touch /srv/ftp/lastsync file
touch /srv/ftp/lastupdate file
add acl group:tu:rw- to /srv/ftp/lastupdate
add acl group:dev:rw- to /srv/ftp/lastupdate
fetch dbscripts PGP key
clone dbscripts git repo
make /srv/svn
symlink /srv/svn/community to /srv/repos/svn-community/svn
symlink /srv/svn/packages to /srv/repos/svn-packages/svn
symlink /community to /srv/repos/svn-community/dbscripts
symlink /packages to /srv/repos/svn-packages/dbscripts
make debug packages-debug pool
make debug community-debug pool
make package root debug repos
make community root debug repos
make package debug repos
make community debug repos
put rsyncd.conf into tmpfiles
use tmpfiles.d/rsyncd.conf
create rsyncd-conf-genscripts
install rsync.conf.proto
configure gen_rsyncd.conf.pl
generate mirror config
install svnlog
add company-svntogit user
configure svntogit git user name
configure svntogit git user email
template company-svntogit
create svntogit repos subdir
clone git-svn repos
add svntogit public remotes
configure svntogit pull upstream branch
fix svntogit home permissions
install repo helpers
install createlinks script
start and enable rsync
open firewall holes for rsync
configure svnserve
start and enable svnserve
open firewall holes for svnserve
install systemd timers
activate systemd timers
install dovecot
create dovecot configuration directory
create dhparam
install dovecot.conf
add vmail group
add vmail user
install PAM config
create dovecot sieve dir
install spam-to-folder.sieve
create ssl cert
install dovecot cert renewal hook
start and enable dovecot
open firewall holes
install systemd timers
activate systemd timers
install certbot
install letsencrypt hook
create letsencrypt hook dir
install letsencrypt renewal service
activate letsencrypt renewal service
open firewall holes for certbot standalone authenticator
reload dovecot
run sievec
install borg
create borg user
create borg user home
create the root backup directory at {{ backup_dir }}
fetch ssh keys from each borg client machine
allow certain clients to connect
install borg and tools
check if borg repository already exists
init borg repository
install convenience scripts
install borg backup scripts
install postgres backup script
check whether postgres user exists
make postgres backup directory
install mysql backup script
install mysql backup config
create mysql backup directory
install systemd services for backup
install systemd timer for backup
activate systemd timer for backup
restart php-fpm@companywiki
run wiki updatescript
purge nginx cache
invalidate MediaWiki file cache
install bugbot utilities
receive valid signing keys
clone bugbot source
install env file
install bugbot systemd service
start and enable bugbot service
run maintenance mode
create ssl cert
install packages
make companywiki user
fix home permissions
fix cache permissions
fix sessions permissions
fix uploads permissions
set up nginx
configure robots.txt
make nginx log dir
make debug log dir
clone companywiki repo
configure companywiki
create companywiki db
create companywiki db user
configure php-fpm
install companywiki memcached service
start and enable systemd socket
install systemd services/timers
start and enable companywiki timers and services
create question answer file
ensure question answer file exists and set permissions
create pacman.d hooks dir
install companywiki question updater hook
install required packages
install the cgit package
install the git package
make aur user
Create directory
receive valid signing keys
clone aurweb repo
create necessary directories
create aurweb conf dir
copy aurweb configuration file
install custom aurweb configuration
create aur db
create aur db user
initialize the database
run migrations
Check python module availability
Install python module
install custom aurweb-git-auth wrapper script
install custom aurweb-git-serve wrapper script
install custom aurweb-git-update wrapper script
link custom aurweb-git-update wrapper to hooks/update
Generate HTML documentation
Generate Translations
create ssl cert
set up nginx
make nginx log dir
install cgit configuration
configure cgit uwsgi service
deploy new cgit release
configure smartgit uwsgi service
deploy new smartgit release
create git repo dir
init git directory
save hideRefs setting on var
configure git tranfser.hideRefs
configure git transfer.hideRefs second
configure git transfer.hideRefs third
install AUR systemd service and timers
configure sshd
start and enable AUR systemd services and timers
daemon reload
restart php-fpm@{{ aurweb_user }}
restart sshd
setup Keycloak server
basic setup for all hosts
common playbook for archive-mirrors
"prepare postgres ssl hosts list"
assign ipv4 addresses to fact postgres_hosts4
run maintenance mode
set up nginx
setup man.example.com
setup matrix
install_company
common playbook for mirrors
upgrade and reboot all hetzner servers
upgrade each host in this batch
upgrade and reboot all kape and packet.net servers
upgrade each host in this batch
setup mailman server
setup redirect.example.com
fetch ssh hostkeys
fetch hostkey checksums
fetch known_hosts
store hostkeys
store hostkeys
store known_hosts
manually append rsync.net host keys
manually append Hetzner Storageboxes host keys
upload known_hosts to all nodes
upload known_hosts
setup hedgedoc server
ensure latest keyring
upgrade all packages
check for running builds
list build-related processes
abort reboot with running builds
check for active borg backup jobs
check if /backup exists
abort reboot when borg backup is running
gemini pre-reboot checks
list logged on users
abort reboot with logged on users
stop company-svntogit.timer
wait for svntogit to finish
reboot
setup security.example.com
setup prometheus server
setup quassel server
setup aur-dev.example.com
setup reproducible builds rebuilder
common playbook for rebuilderd_workers
setup state.example.com (terraform state store)
setup wiki.example.com
setup mail.example.com
setup patchwork.example.com
setup rsync.net account
reencrypt vault key
check if moreutils is installed
reencrypt vault key
setup aur.example.com
setup homedir.example.com
prepare local storage directory
create borg-keys directory
fetch borg keys
fetch borg key
fetch borg offsite key
save borg key
save borg offsite key
setup phrik bot server
Update pacman website
Create temp dir
fetch pacman tarball
unpack tarball
build website
create website directory
upload website
setup gitlab-runners
================================================
FILE: data/boot_hooks.txt
================================================
base
udev
usr
resume
autodetect
modconf
block
net
mdadm
mdadm_udev
keyboard
keymap
consolefont
encrypt
lvm2
fsck
filesystems
================================================
FILE: data/bootlog.txt
================================================
PMAP: PCID enabled
Hacknet Kernel Version 1.0.0: Tue Oct 11 20:56:35 PDT 2011; root:xnu-1699.22.73~1/RELEASE_X86_64
vm_page_bootstrap: 987323 free pages and 53061 wired pages
kext submap [0xffffff7f8072e000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff800072e000]
zone leak detection enabled
standard timeslicing quantum is 10000 us
mig_table_max_displ = 72
TSC Deadline Timer supported and enabled
HackNetACPICPU: ProcessorId=1 LocalApicId=0 Enabled
HackNetACPICPU: ProcessorId=2 LocalApicId=2 Enabled
HackNetACPICPU: ProcessorId=3 LocalApicId=1 Enabled
HackNetACPICPU: ProcessorId=4 LocalApicId=3 Enabled
HackNetACPICPU: ProcessorId=5 LocalApicId=255 Disabled
HackNetACPICPU: ProcessorId=6 LocalApicId=255 Disabled
HackNetACPICPU: ProcessorId=7 LocalApicId=255 Disabled
HackNetACPICPU: ProcessorId=8 LocalApicId=255 Disabled
calling mpo_policy_init for TMSafetyNet
Security policy loaded: Safety net for Time Machine (TMSafetyNet)
calling mpo_policy_init for Sandbox
Security policy loaded: Seatbelt sandbox policy (Sandbox)
calling mpo_policy_init for Quarantine
Security policy loaded: Quarantine policy (Quarantine)
MAC Framework successfully initialized
using 16384 buffer headers and 10240 cluster IO buffer headers
IOAPIC: Version 0x20 Vectors 64:87
ACPI: System State [S0 S3 S4 S5] (S3)
PFM64 0xf10000000, 0xf0000000
[ PCI configuration begin ]
HackNetIntelCPUPowerManagement: Turbo Ratios 0046
HackNetIntelCPUPowerManagement: (built 13:08:12 Jun 18 2011) initialization complete
console relocated to 0xf10000000
PCI configuration changed (bridge=16 device=4 cardbus=0)
[ PCI configuration end, bridges 12 devices 16 ]
mbinit: done [64 MB total pool size, (42/21) split]
Pthread support ABORTS when sync kernel primitives misused
com.HackNet.HackNetFSCompressionTypeZlib kmod start
com.HackNet.HackNetTrololoBootScreen kmod start
com.HackNet.HackNetFSCompressionTypeZlib load succeeded
com.HackNet.HackNetFSCompressionTypeDataless load succeeded
HackNetIntelCPUPowerManagementClient: ready
BTCOEXIST off
wl0: Broadcom BCM4331 802.11 Wireless Controller
5.100.98.75
FireWire (OHCI) Lucent ID 5901 built-in now active, GUID c82a14fffee4a086; max speed s800.
rooting via boot-uuid from /chosen: F5670083-AC74-33D3-8361-AC1977EE4AA2
Waiting on <dict ID='0'><key>IOProviderClass</key><string ID='1'>
IOResources</string><key>IOResourceMatch</key><string ID='2'>boot-uuid-media</string></dict>
Got boot device = IOService:/HackNetACPIPlatformExpert/PCI0@0/HackNetACPIPCI/SATA@1F,2/
HackNetIntelPchSeriesAHCI/PRT0@0/IOAHCIDevice@0/HackNetAHCIDiskDriver/SarahI@sTheBestDriverIOAHCIBlockStorageDevice/IOBlockStorageDriver/
HackNet SSD TS128C Media/IOGUIDPartitionScheme/Customer@2
BSD root: disk0s2, major 14, minor 2
Kernel is LP64
IOThunderboltSwitch::i2cWriteDWord - status = 0xe00002ed
IOThunderboltSwitch::i2cWriteDWord - status = 0x00000000
IOThunderboltSwitch::i2cWriteDWord - status = 0xe00002ed
IOThunderboltSwitch::i2cWriteDWord - status = 0xe00002ed
HackNetUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
MottIsAScrub::checkstatus - true, Mott::Scrub
[IOBluetoothHCIController::setConfigState] calling registerService
AirPort_Brcm4331: Ethernet address e4:ce:8f:46:18:d2
IO80211Controller::dataLinkLayerAttachComplete(): adding HackNetEFINVRAM notification
IO80211Interface::efiNVRAMPublished():
Created virtif 0xffffff800c32ee00 p2p0
BCM5701Enet: Ethernet address c8:2a:14:57:a4:7a
Previous Shutdown Cause: 3
NTFS driver 3.8 [Flags: R/W].
NTFS volume name BOOTCAMP, version 3.1.
DSMOS has arrived
en1: 802.11d country code set to 'US'.
en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
MacAuthEvent en1 Auth result for: 00:60:64:1e:e9:e4 MAC AUTH succeeded
MacAuthEvent en1 Auth result for: 00:60:64:1e:e9:e4 Unsolicited Auth
wlEvent: en1 en1 Link UP
AirPort: Link Up on en1
en1: BSSID changed to 00:60:64:1e:e9:e4
virtual bool IOHIDEventSystemUserClient::initWithTask(task*, void*, UInt32):
Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
ACPI: Preparing to enter system sleep state S3
ACPI: EC: event blocked
ACPI: EC: EC stopped
PM: Saving platform NVS memory
Disabling non-boot CPUs ...
smpboot: CPU 1 is now offline
smpboot: CPU 2 is now offline
smpboot: CPU 3 is now offline
ACPI: Low-level resume complete
ACPI: EC: EC started
PM: Restoring platform NVS memory
Enabling non-boot CPUs ...
x86: Booting SMP configuration:
smpboot: Booting Node 0 Processor 1 APIC 0x1
cache: parent cpu1 should not be sleeping
CPU1 is up
smpboot: Booting Node 0 Processor 2 APIC 0x2
cache: parent cpu2 should not be sleeping
CPU2 is up
smpboot: Booting Node 0 Processor 3 APIC 0x3
cache: parent cpu3 should not be sleeping
CPU3 is up
ACPI: Waking up from system sleep state S3
ACPI: EC: event unblocked
x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
e820: BIOS-provided physical RAM map:
BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
BIOS-e820: [mem 0x0000000000059000-0x000000000008bfff] usable
BIOS-e820: [mem 0x000000000008c000-0x000000000009ffff] reserved
BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
BIOS-e820: [mem 0x0000000000100000-0x00000000aa248fff] usable
BIOS-e820: [mem 0x00000000aa249000-0x00000000acbfefff] reserved
BIOS-e820: [mem 0x00000000acbff000-0x00000000acd7efff] ACPI NVS
BIOS-e820: [mem 0x00000000acd7f000-0x00000000acdfefff] ACPI data
BIOS-e820: [mem 0x00000000acdff000-0x00000000acdfffff] usable
BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
BIOS-e820: [mem 0x0000000100000000-0x000000044dffffff] usable
NX (Execute Disable) protection: active
e820: update [mem 0xa2034018-0xa2044057] usable ==> usable
e820: update [mem 0xa2034018-0xa2044057] usable ==> usable
extended physical RAM map:
reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
reserve setup_data: [mem 0x0000000000059000-0x000000000008bfff] usable
reserve setup_data: [mem 0x000000000008c000-0x000000000009ffff] reserved
reserve setup_data: [mem 0x00000000000e0000-0x00000000000fffff] reserved
reserve setup_data: [mem 0x0000000000100000-0x00000000a2034017] usable
reserve setup_data: [mem 0x00000000a2034018-0x00000000a2044057] usable
reserve setup_data: [mem 0x00000000a2044058-0x00000000aa248fff] usable
reserve setup_data: [mem 0x00000000aa249000-0x00000000acbfefff] reserved
reserve setup_data: [mem 0x00000000acbff000-0x00000000acd7efff] ACPI NVS
reserve setup_data: [mem 0x00000000acd7f000-0x00000000acdfefff] ACPI data
reserve setup_data: [mem 0x00000000acdff000-0x00000000acdfffff] usable
reserve setup_data: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
reserve setup_data: [mem 0x0000000100000000-0x000000044dffffff] usable
efi: ACPI=0xacdfe000 ACPI 2.0=0xacdfe014 SMBIOS=0xacbfe000 ESRT=0xaa67e000
random: fast init done
SMBIOS 2.7 present.
tsc: Fast TSC calibration using PIT
e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
e820: remove [mem 0x000a0000-0x000fffff] usable
e820: last_pfn = 0x44e000 max_arch_pfn = 0x400000000
MTRR default type: write-back
MTRR fixed ranges enabled:
00000-9FFFF write-back
A0000-BFFFF uncachable
C0000-FFFFF write-protect
MTRR variable ranges enabled:
0 base 00C0000000 mask 7FE0000000 uncachable
1 base 00B0000000 mask 7FF0000000 uncachable
2 base 00AE000000 mask 7FFE000000 uncachable
3 base 00AD000000 mask 7FFF000000 uncachable
4 base 00ACE00000 mask 7FFFE00000 uncachable
5 base 00E0000000 mask 7FE0000000 uncachable
6 disabled
7 disabled
8 disabled
9 disabled
x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
e820: last_pfn = 0xace00 max_arch_pfn = 0x400000000
esrt: Reserving ESRT space from 0x00000000aa67e000 to 0x00000000aa67e060.
Scanning 1 areas for low memory corruption
Base memory trampoline at [ffff979680063000] 63000 size 24576
Using GB pages for direct mapping
BRK [0x44a212000, 0x44a212fff] PGTABLE
BRK [0x44a213000, 0x44a213fff] PGTABLE
BRK [0x44a214000, 0x44a214fff] PGTABLE
BRK [0x44a215000, 0x44a215fff] PGTABLE
BRK [0x44a216000, 0x44a216fff] PGTABLE
BRK [0x44a217000, 0x44a217fff] PGTABLE
Secure boot disabled
RAMDISK: [mem 0x7f896000-0x7fffefff]
ACPI: Early table checksum verification disabled
ACPI: RSDP 0x00000000ACDFE014 000024 (v02 SuperCRA)
ACPI: XSDT 0x00000000ACDFE1C0 0000EC (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: FACP 0x00000000ACDF9000 00010C (v05 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: DSDT 0x00000000ACDE3000 011204 (v02 SuperCRA TP-N11 00001140 INTL 20120711)
ACPI: FACS 0x00000000ACD68000 000040
ACPI: ASF! 0x00000000ACDFD000 0000A5 (v32 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: HPET 0x00000000ACDFC000 000038 (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: ECDT 0x00000000ACDFB000 000052 (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: APIC 0x00000000ACDF8000 000098 (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: MCFG 0x00000000ACDF7000 00003C (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: SSDT 0x00000000ACDF6000 000033 (v01 SuperCRA TP-SSDT1 00000100 INTL 20120711)
ACPI: SSDT 0x00000000ACDF5000 000486 (v01 SuperCRA TP-SSDT2 00000200 INTL 20120711)
ACPI: SSDT 0x00000000ACDE2000 0009CB (v01 SuperCRA SataAhci 00001000 INTL 20120711)
ACPI: SSDT 0x00000000ACDE1000 000152 (v01 SuperCRA Rmv_Batt 00001000 INTL 20120711)
ACPI: SSDT 0x00000000ACDE0000 0006C5 (v01 SuperCRA Cpu0Ist 00003000 INTL 20120711)
ACPI: SSDT 0x00000000ACDDF000 000B74 (v02 SuperCRA CpuSsdt 00003000 INTL 20120711)
ACPI: SSDT 0x00000000ACDDE000 000369 (v02 SuperCRA CtdpB 00001000 INTL 20120711)
ACPI: SSDT 0x00000000ACDDC000 001475 (v01 SuperCRA SaSsdt 00003000 INTL 20120711)
ACPI: SSDT 0x00000000ACDDB000 000394 (v02 SuperCRA CppcTabl 00001000 INTL 20120711)
ACPI: PCCT 0x00000000ACDDA000 00006E (v05 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: SSDT 0x00000000ACDD9000 000AC4 (v02 SuperCRA Cpc_Tabl 00001000 INTL 20120711)
ACPI: TCPA 0x00000000ACDD8000 000032 (v02 PTL SuperCRA 06040000 LNVO 00000001)
ACPI: SSDT 0x00000000ACDD7000 0006B0 (v02 Intel_ TpmTable 00001000 INTL 20120711)
ACPI: UEFI 0x00000000ACDD6000 000042 (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: POAT 0x00000000ACCB0000 000055 (v03 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: BATB 0x00000000ACDD5000 000046 (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: FPDT 0x00000000ACDD4000 000064 (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: UEFI 0x00000000ACDD3000 0002F6 (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: DMAR 0x00000000ACDD2000 0000B0 (v01 SuperCRA TP-N11 00001140 PTEC 00000002)
ACPI: Local APIC address 0xfee00000
No NUMA configuration found
Faking a node at [mem 0x0000000000000000-0x000000044dffffff]
NODE_DATA(0) allocated [mem 0x44dffc000-0x44dffffff]
Zone ranges:
DMA [mem 0x0000000000001000-0x0000000000ffffff]
DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
Normal [mem 0x0000000100000000-0x000000044dffffff]
Device empty
Movable zone start for each node
Early memory node ranges
node 0: [mem 0x0000000000001000-0x0000000000057fff]
node 0: [mem 0x0000000000059000-0x000000000008bfff]
node 0: [mem 0x0000000000100000-0x00000000aa248fff]
node 0: [mem 0x00000000acdff000-0x00000000acdfffff]
node 0: [mem 0x0000000100000000-0x000000044dffffff]
Initmem setup node 0 [mem 0x0000000000001000-0x000000044dffffff]
On node 0 totalpages: 4162004
DMA zone: 64 pages used for memmap
DMA zone: 72 pages reserved
DMA zone: 3978 pages, LIFO batch:0
DMA32 zone: 10826 pages used for memmap
DMA32 zone: 692810 pages, LIFO batch:31
Normal zone: 54144 pages used for memmap
Normal zone: 3465216 pages, LIFO batch:31
Reserving Intel graphics memory at 0x00000000ae000000-0x00000000afffffff
ACPI: PM-Timer IO Port: 0x1808
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ9 used by override.
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8086a301 base: 0xfed00000
smpboot: Allowing 8 CPUs, 4 hotplug CPUs
e820: [mem 0xb0000000-0xf80f7fff] available for PCI devices
Booting paravirtualized kernel on bare hardware
clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
percpu: Embedded 36 pages/cpu @ffff979acdc00000 s107032 r8192 d32232 u262144
pcpu-alloc: s107032 r8192 d32232 u262144 alloc=1*2097152
pcpu-alloc: [0] 0 1 2 3 4 5 6 7
Built 1 zonelists, mobility grouping on. Total pages: 4096898
Policy zone: Normal
PID hash table entries: 4096 (order: 3, 32768 bytes)
Calgary: detecting Calgary via BIOS EBDA area
Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Memory: 16215128K/16648016K available (6641K kernel code, 1146K rwdata, 2784K rodata, 1312K init, 1008K bss, 432888K reserved, 0K cma-reserved)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
ftrace: allocating 29043 entries in 114 pages
Preemptible hierarchical RCU implementation.
RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
Tasks RCU enabled.
RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
NR_IRQS: 8448, nr_irqs: 760, preallocated irqs: 16
Console: colour dummy device 80x25
console [tty0] enabled
clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
hpet clockevent registered
tsc: Fast TSC calibration using PIT
tsc: Detected 2194.919 MHz processor
Calibrating delay loop (skipped), value calculated using timer frequency.. 4391.74 BogoMIPS (lpj=7316396)
pid_max: default: 32768 minimum: 301
ACPI: Core revision 20170728
ACPI: 12 ACPI AML tables successfully acquired and loaded
Security Framework initialized
Yama: becoming mindful.
Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
mce: CPU supports 7 MCE banks
CPU0: Thermal monitoring enabled (TM1)
process: using mwait in idle threads
Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Freeing SMP alternatives memory: 24K
smpboot: Max logical packages: 4
DMAR: Host address width 39
DMAR: DRHD base: 0x000000fed90000 flags: 0x0
DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 7e1ff0505e
DMAR: DRHD base: 0x000000fed91000 flags: 0x1
DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c20660462 ecap f010da
DMAR: RMRR base: 0x000000aaf45000 end: 0x000000aaf5bfff
DMAR: RMRR base: 0x000000ad800000 end: 0x000000afffffff
DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
DMAR-IR: HPET id 0 under DRHD base 0xfed91000
DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
DMAR-IR: Enabled IRQ remapping in xapic mode
x2apic: IRQ remapping doesn't support X2APIC mode
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
TSC deadline timer enabled
Performance Events: PEBS fmt2+, Broadwell events, 16-deep LBR, full-width counters, Intel PMU driver.
... version: 3
... bit width: 48
... generic registers: 4
... value mask: 0000ffffffffffff
... max period: 00007fffffffffff
... fixed-purpose events: 3
... event mask: 000000070000000f
Hierarchical SRCU implementation.
NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
smp: Bringing up secondary CPUs ...
x86: Booting SMP configuration:
.... node #0, CPUs: #1 #2 #3
smp: Brought up 1 node, 4 CPUs
================================================
FILE: data/cfiles.txt
================================================
security/lsm_audit.c
security/inode.c
sound/last.c
security/commoncap.c
security/security.c
sound/sound_core.c
security/device_cgroup.c
sound/ac97_bus.c
security/min_addr.c
crypto/cast5_generic.c
crypto/twofish_generic.c
crypto/dh_helper.c
crypto/compress.c
crypto/twofish_common.c
crypto/af_alg.c
crypto/cipher.c
net/compat.c
crypto/khazad.c
crypto/blkcipher.c
lib/test_kasan.c
crypto/crc32_generic.c
lib/test_module.c
crypto/vmac.c
crypto/authencesn.c
lib/earlycpio.c
crypto/cts.c
lib/textsearch.c
crypto/blowfish_common.c
crypto/aes_ti.c
crypto/shash.c
lib/notifier-error-inject.c
crypto/des_generic.c
lib/cmdline.c
crypto/crypto_null.c
lib/is_single_threaded.c
lib/timerqueue.c
lib/test_list_sort.c
crypto/poly1305_generic.c
lib/decompress_inflate.c
lib/iomap.c
crypto/rsa.c
lib/muldi3.c
crypto/proc.c
lib/div64.c
crypto/crypto_engine.c
lib/test_printf.c
crypto/xts.c
lib/dma-debug.c
crypto/blowfish_generic.c
scripts/extract-cert.c
lib/string.c
crypto/rmd160.c
lib/atomic64.c
crypto/keywrap.c
lib/stmp_device.c
crypto/rmd320.c
lib/dump_stack.c
lib/crc-ccitt.c
crypto/algif_rng.c
lib/ioremap.c
crypto/fcrypt.c
net/socket.c
lib/random32.c
lib/list_debug.c
lib/interval_tree.c
crypto/lzo.c
lib/decompress_unlzma.c
crypto/sha1_generic.c
scripts/recordmcount.c
crypto/cbc.c
lib/of-reconfig-notifier-error-inject.c
lib/fault-inject.c
net/sysctl_net.c
crypto/algboss.c
lib/prime_numbers.c
crypto/wp512.c
lib/atomic64_test.c
crypto/aes_generic.c
crypto/aead.c
crypto/akcipher.c
lib/glob.c
crypto/api.c
scripts/unifdef.c
lib/bcd.c
lib/reciprocal_div.c
crypto/jitterentropy-kcapi.c
lib/test_kmod.c
crypto/jitterentropy.c
lib/klist.c
crypto/crc32c_generic.c
crypto/algif_aead.c
lib/ucmpdi2.c
crypto/authenc.c
lib/test_sort.c
crypto/algif_hash.c
lib/check_signature.c
crypto/rmd256.c
lib/ashldi3.c
lib/bitrev.c
crypto/anubis.c
crypto/pcbc.c
lib/percpu_ida.c
crypto/crypto_user.c
lib/test-string_helpers.c
crypto/sha256_generic.c
crypto/842.c
lib/test_bitmap.c
scripts/insert-sys-cert.c
lib/vsprintf.c
crypto/ecb.c
lib/ubsan.c
crypto/rsa_helper.c
lib/irq_poll.c
lib/once.c
scripts/sign-file.c
crypto/arc4.c
lib/assoc_array.c
crypto/md5.c
lib/fdt_sw.c
crypto/tgr192.c
lib/crc32.c
crypto/cryptd.c
crypto/tcrypt.c
lib/crc16.c
lib/crc32test.c
crypto/memneq.c
lib/genalloc.c
crypto/gf128mul.c
lib/debug_locks.c
crypto/algapi.c
lib/oid_registry.c
crypto/ecc.c
crypto/ablkcipher.c
lib/show_mem.c
crypto/sha3_generic.c
lib/fdt_wip.c
crypto/deflate.c
lib/bug.c
lib/ucs2_string.c
crypto/ctr.c
crypto/tea.c
lib/test_siphash.c
lib/cordic.c
scripts/conmakehash.c
crypto/ghash-generic.c
lib/seq_buf.c
crypto/algif_skcipher.c
lib/memory-notifier-error-inject.c
lib/test_firmware.c
crypto/rsa-pkcs1pad.c
lib/usercopy.c
crypto/cast6_generic.c
lib/strnlen_user.c
crypto/ansi_cprng.c
lib/test_find_bit.c
crypto/chacha20poly1305.c
lib/test_rhashtable.c
crypto/gcm.c
lib/test_parman.c
crypto/seed.c
lib/bch.c
crypto/drbg.c
crypto/scatterwalk.c
crypto/ccm.c
lib/decompress_unlz4.c
crypto/lz4hc.c
lib/fdt_empty_tree.c
lib/test_hash.c
crypto/cmac.c
lib/debugobjects.c
crypto/skcipher.c
lib/test_static_key_base.c
crypto/mcryptd.c
crypto/crypto_wq.c
lib/xxhash.c
crypto/ablk_helper.c
lib/btree.c
lib/iommu-helper.c
lib/kasprintf.c
lib/compat_audit.c
lib/iov_iter.c
lib/ts_bm.c
lib/lockref.c
lib/dma-virt.c
crypto/crct10dif_generic.c
scripts/pnmtologo.c
lib/flex_proportions.c
crypto/crct10dif_common.c
lib/crc-itu-t.c
crypto/xor.c
lib/smp_processor_id.c
crypto/michael_mic.c
lib/dynamic_debug.c
crypto/lz4.c
lib/bsearch.c
crypto/simd.c
lib/nmi_backtrace.c
crypto/salsa20_generic.c
crypto/ecdh.c
lib/inflate.c
crypto/scompress.c
lib/asn1_decoder.c
crypto/serpent_generic.c
lib/ashrdi3.c
crypto/md4.c
lib/fdt_rw.c
crypto/sha512_generic.c
lib/test_static_keys.c
lib/string_helpers.c
crypto/hash_info.c
lib/locking-selftest.c
crypto/ahash.c
lib/siphash.c
crypto/chacha20_generic.c
lib/crc7.c
crypto/fips.c
lib/checksum.c
lib/decompress_unlzo.c
crypto/acompress.c
ipc/ipc_sysctl.c
crypto/testmgr.c
lib/cmpdi2.c
ipc/msgutil.c
crypto/rng.c
lib/kfifo.c
ipc/mq_sysctl.c
crypto/echainiv.c
lib/kobject.c
ipc/mqueue.c
crypto/seqiv.c
ipc/msg.c
lib/rbtree.c
ipc/shm.c
crypto/lrw.c
lib/lshrdi3.c
scripts/kallsyms.c
crypto/cast_common.c
lib/test_string.c
crypto/rmd128.c
lib/test_debug_virtual.c
crypto/ecdh_helper.c
lib/percpu_test.c
ipc/compat.c
crypto/sm3_generic.c
ipc/namespace.c
lib/rhashtable.c
ipc/syscall.c
scripts/asn1_compiler.c
ipc/sem.c
crypto/xcbc.c
lib/bust_spinlocks.c
ipc/util.c
crypto/kpp.c
lib/globtest.c
lib/win_minmax.c
crypto/hmac.c
crypto/camellia_generic.c
crypto/dh.c
lib/lcm.c
lib/memweight.c
crypto/pcrypt.c
lib/decompress_bunzip2.c
lib/scatterlist.c
lib/fdt_strerror.c
lib/fdt_ro.c
lib/kobject_uevent.c
lib/cpumask.c
lib/fdt.c
scripts/sortextable.c
lib/ctype.c
lib/dynamic_queue_limits.c
lib/test_sysctl.c
lib/int_sqrt.c
lib/hexdump.c
lib/sort.c
lib/test_bpf.c
lib/lru_cache.c
certs/system_keyring.c
lib/sg_split.c
lib/test_uuid.c
certs/blacklist_nohashes.c
lib/debug_info.c
certs/blacklist_hashes.c
lib/strncpy_from_user.c
lib/pm-notifier-error-inject.c
lib/test_user_copy.c
certs/blacklist.c
lib/dma-noop.c
lib/bitmap.c
lib/llist.c
lib/crc4.c
lib/list_sort.c
lib/rbtree_test.c
lib/refcount.c
lib/pci_iomap.c
lib/iommu-common.c
lib/syscall.c
lib/decompress_unxz.c
lib/uuid.c
lib/cpu_rmap.c
lib/kstrtox.c
lib/test-kstrtox.c
lib/dec_and_lock.c
lib/net_utils.c
lib/clz_ctz.c
lib/crc-t10dif.c
lib/percpu-refcount.c
lib/chacha20.c
lib/interval_tree_test.c
lib/errseq.c
lib/digsig.c
lib/audit.c
lib/sbitmap.c
lib/flex_array.c
lib/sha1.c
lib/crc8.c
lib/gen_crc32table.c
lib/percpu_counter.c
lib/argv_split.c
lib/jedec_ddr_data.c
lib/ts_fsm.c
lib/find_bit.c
lib/swiotlb.c
lib/clz_tab.c
lib/extable.c
lib/rational.c
lib/radix-tree.c
lib/test_hexdump.c
lib/gcd.c
lib/sg_pool.c
lib/idr.c
lib/decompress.c
usr/gen_init_cpio.c
lib/iomap_copy.c
lib/ratelimit.c
lib/irq_regs.c
lib/hweight.c
lib/nlattr.c
lib/parser.c
lib/plist.c
lib/devres.c
lib/nodemask.c
lib/ts_kmp.c
lib/libcrc32c.c
lib/stackdepot.c
lib/netdev-notifier-error-inject.c
lib/parman.c
sound/arm/pxa2xx-pcm-lib.c
sound/arm/pxa2xx-ac97.c
sound/arm/aaci.c
sound/arm/pxa2xx-pcm.c
sound/arm/pxa2xx-ac97-lib.c
init/noinitramfs.c
init/calibrate.c
init/do_mounts.c
init/do_mounts_initrd.c
init/do_mounts_md.c
init/initramfs.c
init/do_mounts_rd.c
mm/slob.c
mm/msync.c
init/init_task.c
mm/rodata_test.c
init/version.c
init/main.c
mm/page_poison.c
mm/early_ioremap.c
mm/userfaultfd.c
mm/workingset.c
mm/mmzone.c
mm/page_vma_mapped.c
mm/zpool.c
mm/zsmalloc.c
mm/interval_tree.c
mm/mremap.c
mm/oom_kill.c
sound/sparc/dbri.c
mm/sparse.c
mm/swap_state.c
sound/sparc/cs4231.c
mm/gup.c
sound/sparc/amd7930.c
mm/mmap.c
mm/page_owner.c
mm/khugepaged.c
mm/readahead.c
mm/hugetlb_cgroup.c
mm/percpu-vm.c
mm/frame_vector.c
mm/usercopy.c
mm/ksm.c
mm/kmemleak.c
mm/process_vm_access.c
mm/swapfile.c
mm/gup_benchmark.c
mm/mempool.c
mm/cma.c
mm/hmm.c
mm/swap.c
mm/kmemleak-test.c
mm/memory-failure.c
mm/mincore.c
mm/filemap.c
mm/rmap.c
mm/cleancache.c
mm/maccess.c
mm/memtest.c
mm/page_idle.c
mm/page_ext.c
mm/hugetlb.c
mm/mlock.c
mm/mmu_notifier.c
mm/compaction.c
mm/fadvise.c
mm/init-mm.c
mm/vmpressure.c
mm/vmscan.c
mm/zswap.c
mm/debug_page_ref.c
mm/mmu_context.c
mm/bootmem.c
mm/vmalloc.c
mm/memory_hotplug.c
mm/page_isolation.c
mm/migrate.c
mm/slub.c
mm/pgtable-generic.c
mm/shmem.c
mm/frontswap.c
mm/balloon_compaction.c
security/integrity/integrity_audit.c
mm/vmacache.c
mm/pagewalk.c
mm/percpu-stats.c
security/integrity/iint.c
security/integrity/digsig.c
mm/zbud.c
sound/parisc/harmony.c
security/integrity/digsig_asymmetric.c
mm/highmem.c
mm/debug.c
mm/backing-dev.c
mm/page_alloc.c
mm/mm_init.c
mm/cma_debug.c
mm/memblock.c
mm/vmstat.c
mm/slab_common.c
mm/util.c
mm/nobootmem.c
mm/z3fold.c
security/smack/smack_access.c
mm/nommu.c
security/smack/smack_netfilter.c
mm/quicklist.c
mm/madvise.c
mm/hwpoison-inject.c
security/smack/smack_lsm.c
sound/firewire/cmp.c
mm/dmapool.c
sound/firewire/amdtp-stream.c
mm/mprotect.c
security/smack/smackfs.c
mm/truncate.c
mm/huge_memory.c
mm/percpu.c
mm/mempolicy.c
mm/slab.c
mm/swap_cgroup.c
sound/firewire/packets-buffer.c
mm/page-writeback.c
mm/list_lru.c
mm/swap_slots.c
sound/firewire/amdtp-am824.c
mm/page_io.c
sound/firewire/isight.c
mm/sparse-vmemmap.c
mm/memory.c
mm/page_counter.c
mm/percpu-km.c
sound/firewire/iso-resources.c
mm/failslab.c
sound/firewire/lib.c
mm/memcontrol.c
sound/firewire/fcp.c
security/loadpin/loadpin.c
block/compat_ioctl.c
block/blk-flush.c
block/deadline-iosched.c
block/bsg-lib.c
block/blk-ioc.c
block/partition-generic.c
block/blk-lib.c
block/blk-settings.c
fs/compat_ioctl.c
block/blk-mq-rdma.c
block/blk-mq-tag.c
fs/iomap.c
security/tomoyo/mount.c
block/blk-zoned.c
security/tomoyo/securityfs_if.c
fs/userfaultfd.c
block/scsi_ioctl.c
fs/eventfd.c
security/tomoyo/condition.c
block/blk-merge.c
fs/fs_pin.c
block/blk-stat.c
fs/char_dev.c
security/tomoyo/common.c
block/bio.c
security/tomoyo/gc.c
block/blk-mq-sched.c
security/tomoyo/group.c
fs/binfmt_aout.c
block/bfq-cgroup.c
security/tomoyo/domain.c
block/blk-mq-pci.c
block/blk-mq.c
security/tomoyo/file.c
security/tomoyo/tomoyo.c
block/blk-exec.c
security/tomoyo/network.c
block/blk-softirq.c
security/tomoyo/load_policy.c
block/blk-core.c
block/t10-pi.c
block/elevator.c
block/ioprio.c
security/tomoyo/realpath.c
fs/drop_caches.c
block/noop-iosched.c
security/tomoyo/util.c
security/tomoyo/audit.c
fs/inode.c
security/tomoyo/environ.c
block/sed-opal.c
fs/statfs.c
block/blk-map.c
fs/anon_inodes.c
security/tomoyo/memory.c
block/blk-mq-cpumap.c
fs/namei.c
block/blk-wbt.c
fs/splice.c
block/blk-mq-sysfs.c
fs/binfmt_em86.c
block/bounce.c
block/blk-cgroup.c
block/cmdline-parser.c
block/kyber-iosched.c
fs/dcookies.c
block/bio-integrity.c
fs/dax.c
block/blk-tag.c
fs/open.c
security/keys/keyctl.c
block/bfq-iosched.c
fs/seq_file.c
sound/spi/at73c213.c
block/mq-deadline.c
security/keys/proc.c
block/cfq-iosched.c
block/ioctl.c
block/genhd.c
security/keys/gc.c
block/blk-mq-debugfs.c
security/keys/compat_dh.c
block/blk-throttle.c
fs/attr.c
fs/pnode.c
security/keys/user_defined.c
security/keys/compat.c
block/bsg.c
fs/sync.c
security/keys/request_key_auth.c
block/blk-sysfs.c
block/badblocks.c
security/keys/sysctl.c
security/yama/yama_lsm.c
fs/stat.c
security/keys/key.c
block/blk-mq-virtio.c
security/keys/permission.c
block/blk-timeout.c
fs/dcache.c
security/keys/keyring.c
security/keys/persistent.c
block/blk-integrity.c
fs/posix_acl.c
security/keys/big_key.c
block/bfq-wf2q.c
fs/timerfd.c
security/keys/request_key.c
fs/direct-io.c
fs/proc_namespace.c
security/keys/process_keys.c
fs/binfmt_elf_fdpic.c
security/keys/dh.c
security/keys/trusted.c
sound/isa/azt2320.c
fs/compat.c
fs/fs-writeback.c
fs/compat_binfmt_elf.c
fs/select.c
fs/aio.c
fs/block_dev.c
sound/isa/als100.c
sound/isa/es18xx.c
sound/isa/sc6000.c
fs/super.c
sound/isa/cmi8330.c
fs/readdir.c
sound/isa/sscape.c
sound/isa/opl3sa2.c
security/selinux/hooks.c
fs/no-block.c
sound/isa/adlib.c
security/selinux/netnode.c
fs/pipe.c
security/selinux/exports.c
fs/binfmt_misc.c
sound/isa/cmi8328.c
security/selinux/selinuxfs.c
fs/file.c
security/selinux/netif.c
security/selinux/netlink.c
fs/nsfs.c
security/selinux/netport.c
fs/binfmt_elf.c
security/selinux/ibpkey.c
sound/ac97/codec.c
security/selinux/avc.c
fs/bad_inode.c
sound/ac97/snd_ac97_compat.c
security/selinux/xfrm.c
fs/mbcache.c
security/selinux/netlabel.c
sound/ac97/bus.c
fs/eventpoll.c
security/selinux/nlmsgtab.c
fs/mpage.c
fs/namespace.c
kernel/resource.c
fs/binfmt_flat.c
fs/binfmt_script.c
kernel/kexec_file.c
kernel/tracepoint.c
sound/hda/array.c
sound/hda/hdac_i915.c
sound/hda/hdmi_chmap.c
kernel/capability.c
sound/hda/hdac_sysfs.c
kernel/padata.c
sound/hda/hda_bus_type.c
fs/xattr.c
kernel/test_kprobes.c
kernel/audit_tree.c
fs/fhandle.c
sound/hda/hdac_bus.c
fs/coredump.c
kernel/params.c
sound/hda/trace.c
kernel/seccomp.c
sound/hda/hdac_stream.c
sound/hda/hdac_controller.c
kernel/kexec.c
kernel/delayacct.c
fs/read_write.c
sound/hda/hdac_regmap.c
kernel/module_signing.c
kernel/pid.c
sound/hda/hdac_device.c
fs/filesystems.c
kernel/auditfilter.c
kernel/futex_compat.c
fs/exec.c
kernel/reboot.c
fs/file_table.c
kernel/context_tracking.c
kernel/notifier.c
kernel/exit.c
fs/signalfd.c
fs/ioctl.c
kernel/sysctl_binary.c
fs/stack.c
sound/drivers/mts64.c
sound/drivers/ml403-ac97cr.c
kernel/futex.c
sound/drivers/mtpav.c
kernel/range.c
fs/locks.c
kernel/hung_task.c
sound/drivers/portman2x4.c
kernel/ksysfs.c
fs/fcntl.c
sound/drivers/aloop.c
kernel/backtracetest.c
kernel/latencytop.c
fs/buffer.c
kernel/exec_domain.c
sound/drivers/virmidi.c
kernel/kprobes.c
fs/fs_struct.c
kernel/compat.c
sound/drivers/pcm-indirect2.c
kernel/dma.c
sound/drivers/dummy.c
kernel/elfcore.c
kernel/panic.c
sound/drivers/serial-u16550.c
kernel/softirq.c
kernel/user.c
fs/utimes.c
kernel/tsacct.c
kernel/stop_machine.c
fs/libfs.c
kernel/sysctl.c
kernel/kthread.c
kernel/fork.c
kernel/kcmp.c
kernel/irq_work.c
kernel/stacktrace.c
kernel/ucount.c
kernel/smpboot.c
kernel/torture.c
kernel/user-return-notifier.c
kernel/crash_core.c
kernel/async.c
kernel/watchdog.c
kernel/module.c
sound/x86/intel_hdmi_audio.c
kernel/ptrace.c
kernel/auditsc.c
kernel/audit_watch.c
kernel/signal.c
kernel/memremap.c
kernel/watchdog_hld.c
security/apparmor/mount.c
kernel/utsname.c
security/apparmor/resource.c
security/apparmor/capability.c
security/apparmor/apparmorfs.c
kernel/cred.c
security/apparmor/crypto.c
security/apparmor/lsm.c
kernel/sys_ni.c
sound/core/pcm_timer.c
security/apparmor/context.c
kernel/audit_fsnotify.c
sound/core/jack.c
sound/core/rawmidi.c
sound/core/timer_compat.c
kernel/nsproxy.c
sound/core/sound_oss.c
sound/core/pcm_dmaengine.c
kernel/kallsyms.c
security/apparmor/path.c
sound/core/compress_offload.c
kernel/crash_dump.c
security/apparmor/domain.c
sound/soc/soc-io.c
security/apparmor/policy_unpack.c
sound/core/ctljack.c
sound/core/pcm_lib.c
kernel/taskstats.c
security/apparmor/policy.c
sound/core/isadma.c
kernel/audit.c
security/apparmor/label.c
sound/core/pcm_memory.c
kernel/profile.c
security/apparmor/file.c
sound/core/hrtimer.c
kernel/acct.c
security/apparmor/secid.c
sound/soc/soc-core.c
security/apparmor/procattr.c
sound/soc/soc-ac97.c
sound/core/pcm_compat.c
sound/core/timer.c
kernel/umh.c
security/apparmor/lib.c
kernel/relay.c
security/apparmor/ipc.c
sound/soc/soc-pcm.c
sound/core/pcm_drm_eld.c
kernel/utsname_sysctl.c
security/apparmor/match.c
sound/core/info.c
kernel/uid16.c
sound/soc/soc-utils.c
sound/core/control_compat.c
sound/soc/soc-topology.c
security/apparmor/audit.c
sound/core/info_oss.c
kernel/extable.c
sound/core/hwdep_compat.c
sound/core/pcm_native.c
security/apparmor/policy_ns.c
kernel/kexec_core.c
sound/core/sound.c
kernel/cpu.c
sound/core/rawmidi_compat.c
kernel/up.c
sound/core/seq_device.c
kernel/pid_namespace.c
sound/core/pcm_misc.c
sound/core/vmaster.c
kernel/cpu_pm.c
sound/core/memalloc.c
sound/mips/sgio2audio.c
sound/core/init.c
kernel/kcov.c
sound/core/misc.c
sound/soc/soc-compress.c
sound/core/sgbuf.c
kernel/jump_label.c
sound/mips/hal2.c
sound/core/pcm_iec958.c
sound/mips/ad1843.c
sound/core/hwdep.c
kernel/user_namespace.c
sound/core/device.c
sound/soc/soc-cache.c
kernel/kmod.c
sound/core/control.c
sound/core/pcm.c
kernel/bounds.c
sound/core/memory.c
sound/soc/soc-generic-dmaengine-pcm.c
sound/soc/soc-acpi.c
kernel/freezer.c
kernel/smp.c
kernel/configs.c
kernel/groups.c
kernel/sys.c
sound/i2c/tea6330t.c
sound/soc/soc-dapm.c
sound/usb/helper.c
kernel/workqueue.c
sound/i2c/cs8427.c
kernel/task_work.c
sound/usb/quirks.c
sound/soc/soc-devres.c
sound/soc/soc-jack.c
sound/i2c/i2c.c
sound/usb/card.c
sound/usb/endpoint.c
sound/usb/proc.c
sound/usb/mixer_us16x08.c
sound/usb/mixer.c
sound/soc/soc-ops.c
sound/usb/stream.c
sound/usb/mixer_quirks.c
sound/usb/mixer_maps.c
sound/pci/via82xx_modem.c
sound/usb/midi.c
sound/sh/sh_dac_audio.c
sound/pci/maestro3.c
sound/sh/aica.c
sound/pci/rme32.c
sound/usb/format.c
sound/synth/util_mem.c
sound/pci/cs4281.c
sound/usb/pcm.c
sound/pci/ens1371.c
sound/pci/es1938.c
sound/atmel/ac97c.c
sound/pci/intel8x0m.c
sound/pci/sis7019.c
sound/usb/mixer_scarlett.c
sound/usb/clock.c
sound/pci/atiixp_modem.c
sound/ppc/awacs.c
sound/pci/rme96.c
sound/pci/cmipci.c
sound/pci/azt3328.c
sound/ppc/daca.c
sound/pci/ak4531_codec.c
sound/ppc/tumbler.c
net/sctp/primitive.c
net/sctp/output.c
sound/pci/als300.c
sound/ppc/beep.c
net/sctp/protocol.c
net/sctp/transport.c
sound/ppc/keywest.c
sound/pci/via82xx.c
net/sctp/sm_make_chunk.c
sound/ppc/powermac.c
sound/pci/als4000.c
net/sctp/offload.c
net/wireless/debugfs.c
sound/ppc/snd_ps3.c
net/sctp/proc.c
net/wireless/ibss.c
net/sctp/stream_sched_rr.c
sound/pci/bt87x.c
sound/ppc/pmac.c
net/wireless/wext-core.c
net/sctp/sctp_diag.c
sound/pci/cs5530.c
net/sctp/associola.c
net/wireless/lib80211.c
sound/pci/intel8x0.c
sound/ppc/burgundy.c
net/sctp/sm_statefuns.c
net/wireless/ethtool.c
sound/pci/sonicvibes.c
net/sctp/stream_sched.c
sound/pci/es1968.c
net/wireless/ocb.c
sound/pci/atiixp.c
net/wireless/core.c
net/sctp/auth.c
net/wireless/lib80211_crypt_ccmp.c
net/sctp/ulpevent.c
net/wireless/sysfs.c
sound/pci/ad1889.c
net/sctp/outqueue.c
sound/pci/fm801.c
net/sctp/stream.c
net/wireless/sme.c
net/sctp/probe.c
net/sctp/sysctl.c
sound/pci/ens1370.c
net/sctp/ulpqueue.c
net/sctp/chunk.c
net/wireless/of.c
net/sctp/sm_sideeffect.c
net/sctp/objcnt.c
net/wireless/mlme.c
net/sctp/endpointola.c
net/sctp/debug.c
net/sctp/input.c
net/tipc/eth_media.c
net/wireless/chan.c
net/wireless/trace.c
net/tipc/core.c
net/sctp/socket.c
net/wireless/nl80211.c
net/tipc/netlink_compat.c
net/sctp/ipv6.c
net/wireless/lib80211_crypt_tkip.c
net/sctp/sm_statetable.c
net/tipc/net.c
net/caif/caif_usb.c
net/sctp/stream_sched_prio.c
net/caif/cfmuxl.c
net/tipc/msg.c
net/sctp/bind_addr.c
net/caif/cfdbgl.c
net/wireless/wext-spy.c
net/sctp/tsnmap.c
net/caif/cffrml.c
net/wireless/wext-compat.c
net/sctp/inqueue.c
net/caif/caif_socket.c
net/wireless/wext-priv.c
net/caif/cfrfml.c
net/tipc/name_table.c
net/caif/cfcnfg.c
net/tipc/server.c
net/wireless/ap.c
net/caif/caif_dev.c
net/wireless/radiotap.c
net/caif/cfserl.c
net/wireless/mesh.c
net/tipc/group.c
net/tipc/name_distr.c
net/wireless/reg.c
net/caif/chnl_net.c
net/caif/cfdgml.c
net/tipc/monitor.c
net/dsa/master.c
net/caif/cfutill.c
net/caif/cfsrvl.c
net/dsa/port.c
net/caif/cfctrl.c
net/tipc/sysctl.c
net/dsa/tag_edsa.c
net/tipc/udp_media.c
net/wireless/util.c
net/caif/cfvidl.c
net/dsa/slave.c
net/tipc/ib_media.c
net/dsa/tag_ksz.c
net/tipc/netlink.c
net/caif/cfveil.c
net/dsa/legacy.c
net/wireless/scan.c
net/dsa/tag_mtk.c
net/tipc/bcast.c
net/wireless/wext-proc.c
net/caif/cfpkt_skbuff.c
net/dsa/dsa.c
net/dsa/switch.c
net/wireless/lib80211_crypt_wep.c
net/tipc/node.c
net/wireless/wext-sme.c
net/dsa/tag_dsa.c
net/dsa/tag_brcm.c
net/tipc/discover.c
net/dsa/tag_qca.c
net/tipc/link.c
net/dsa/tag_lan9303.c
net/psample/psample.c
net/tipc/subscr.c
net/dsa/dsa2.c
net/tipc/addr.c
net/dsa/tag_trailer.c
net/ipx/af_ipx.c
net/ipx/sysctl_net_ipx.c
net/ipx/ipx_route.c
net/tipc/bearer.c
net/ipx/pe2.c
net/ipx/ipx_proc.c
net/x25/x25_route.c
net/x25/x25_facilities.c
net/dcb/dcbevent.c
net/x25/x25_out.c
net/dcb/dcbnl.c
net/x25/sysctl_net_x25.c
net/x25/x25_subr.c
net/x25/x25_timer.c
net/x25/x25_proc.c
net/ife/ife.c
net/x25/x25_dev.c
net/nfc/digital_technology.c
net/x25/x25_link.c
net/nfc/llcp_sock.c
net/x25/x25_in.c
net/nfc/core.c
net/x25/x25_forward.c
net/ncsi/ncsi-rsp.c
net/nfc/llcp_core.c
net/nfc/digital_core.c
net/x25/af_x25.c
net/ncsi/ncsi-cmd.c
net/ncsi/ncsi-aen.c
net/ncsi/ncsi-manage.c
net/nfc/rawsock.c
net/packet/af_packet.c
net/packet/diag.c
net/nfc/netlink.c
net/nfc/llcp_commands.c
net/nfc/af_nfc.c
net/bluetooth/leds.c
net/nfc/digital_dep.c
net/bluetooth/6lowpan.c
net/key/af_key.c
net/bluetooth/mgmt.c
net/bluetooth/amp.c
net/bluetooth/hci_sock.c
net/ax25/ax25_ip.c
net/bluetooth/hci_conn.c
net/ax25/ax25_std_timer.c
net/ax25/ax25_iface.c
net/ax25/ax25_timer.c
net/bluetooth/l2cap_sock.c
net/ax25/ax25_ds_subr.c
net/ax25/ax25_route.c
net/bluetooth/hci_core.c
net/ax25/af_ax25.c
net/bluetooth/hci_sysfs.c
net/bluetooth/selftest.c
net/ax25/ax25_std_subr.c
net/bluetooth/mgmt_util.c
net/ax25/ax25_subr.c
net/ax25/ax25_ds_in.c
net/batman-adv/debugfs.c
net/bluetooth/sco.c
net/ax25/ax25_in.c
net/batman-adv/network-coding.c
net/bluetooth/l2cap_core.c
net/ax25/ax25_uid.c
net/bluetooth/hci_request.c
net/batman-adv/send.c
net/ax25/sysctl_net_ax25.c
net/bluetooth/lib.c
net/ax25/ax25_std_in.c
net/batman-adv/bat_v_ogm.c
net/ax25/ax25_addr.c
net/batman-adv/tvlv.c
net/ax25/ax25_ds_timer.c
net/batman-adv/log.c
net/bluetooth/a2mp.c
net/ax25/ax25_dev.c
net/ax25/ax25_out.c
net/bluetooth/hci_debugfs.c
net/batman-adv/icmp_socket.c
net/bluetooth/af_bluetooth.c
net/batman-adv/sysfs.c
net/bluetooth/hci_event.c
net/batman-adv/fragmentation.c
net/batman-adv/bat_v_elp.c
net/bluetooth/ecdh_helper.c
net/bluetooth/smp.c
net/netfilter/xt_length.c
net/netfilter/nft_masq.c
net/netlabel/netlabel_mgmt.c
net/netfilter/nft_fib_netdev.c
net/netlabel/netlabel_calipso.c
net/netfilter/nf_conntrack_proto_dccp.c
net/netfilter/xt_HL.c
net/batman-adv/bat_v.c
net/netlabel/netlabel_user.c
net/netfilter/xt_rateest.c
net/batman-adv/bat_algo.c
net/netlabel/netlabel_cipso_v4.c
net/netfilter/nf_conntrack_timestamp.c
net/netfilter/xt_TCPMSS.c
net/netlabel/netlabel_kapi.c
net/netfilter/nft_dup_netdev.c
net/batman-adv/bitarray.c
net/netfilter/nft_bitwise.c
net/batman-adv/gateway_client.c
net/netfilter/nf_synproxy_core.c
net/netlabel/netlabel_addrlist.c
net/netfilter/xt_ipcomp.c
net/rxrpc/output.c
net/netlabel/netlabel_domainhash.c
net/netfilter/nf_nat_amanda.c
net/rxrpc/sendmsg.c
net/batman-adv/bat_iv_ogm.c
net/netfilter/xt_connbytes.c
net/rxrpc/conn_object.c
net/batman-adv/netlink.c
net/netfilter/xt_hashlimit.c
net/rxrpc/security.c
net/netfilter/nft_meta.c
net/rxrpc/proc.c
net/batman-adv/multicast.c
net/netfilter/nf_conntrack_proto_udp.c
net/rxrpc/peer_object.c
net/netfilter/nf_conntrack_seqadj.c
net/batman-adv/hash.c
net/netlabel/netlabel_unlabeled.c
net/rxrpc/local_object.c
net/netfilter/nf_conntrack_ecache.c
net/batman-adv/hard-interface.c
net/netfilter/xt_cpu.c
net/batman-adv/distributed-arp-table.c
net/rxrpc/peer_event.c
net/netfilter/nf_queue.c
net/rxrpc/recvmsg.c
net/netfilter/nf_conntrack_h323_asn1.c
net/rxrpc/net_ns.c
net/netfilter/nf_conntrack_netbios_ns.c
net/rxrpc/utils.c
net/netfilter/xt_NETMAP.c
net/batman-adv/gateway_common.c
net/rxrpc/sysctl.c
net/netfilter/xt_mark.c
net/netfilter/xt_owner.c
net/rxrpc/skbuff.c
net/netfilter/nf_nat_sip.c
net/rxrpc/rxkad.c
net/netfilter/nf_dup_netdev.c
net/rxrpc/call_accept.c
net/batman-adv/originator.c
net/netfilter/nf_conntrack_l3proto_generic.c
net/rxrpc/conn_event.c
net/netfilter/core.c
net/batman-adv/routing.c
net/rxrpc/insecure.c
net/netfilter/nfnetlink_cthelper.c
net/rxrpc/conn_service.c
net/rxrpc/conn_client.c
net/netfilter/xt_time.c
net/batman-adv/translation-table.c
net/rxrpc/key.c
net/batman-adv/main.c
net/netfilter/xt_helper.c
net/rxrpc/misc.c
net/netfilter/xt_TPROXY.c
net/ipv6/netfilter.c
net/rxrpc/local_event.c
net/netfilter/nf_conntrack_h323_main.c
net/ipv6/addrconf.c
net/rxrpc/input.c
net/netfilter/xt_connlabel.c
net/ipv6/af_inet6.c
net/rxrpc/call_object.c
net/netfilter/nft_set_hash.c
net/batman-adv/tp_meter.c
net/ipv6/protocol.c
net/rxrpc/af_rxrpc.c
net/netfilter/xt_dscp.c
net/batman-adv/bridge_loop_avoidance.c
net/ipv6/output_core.c
net/netfilter/nft_fib.c
net/ipv6/tcpv6_offload.c
net/netfilter/xt_NFQUEUE.c
net/ipv6/xfrm6_input.c
net/netfilter/xt_bpf.c
net/rxrpc/call_event.c
net/ipv6/ipcomp6.c
net/netfilter/nf_conntrack_sane.c
net/ipv6/udp.c
net/netfilter/nf_nat_redirect.c
net/batman-adv/soft-interface.c
net/netfilter/nf_conntrack_standalone.c
net/ipv6/ip6_input.c
net/netfilter/nft_limit.c
net/ipv6/ping.c
net/ipv6/exthdrs_offload.c
net/netfilter/nf_conntrack_sip.c
net/ipv6/fou6.c
net/netfilter/nf_log_netdev.c
net/ipv6/xfrm6_output.c
net/netfilter/xt_set.c
net/ipv6/proc.c
net/netfilter/xt_tcpmss.c
net/ipv6/ip6_output.c
net/netfilter/xt_mac.c
net/dccp/output.c
net/ipv6/inet6_hashtables.c
net/netfilter/nft_counter.c
net/netfilter/xt_NFLOG.c
net/ipv6/udp_offload.c
net/netfilter/nfnetlink_cttimeout.c
net/ipv6/exthdrs_core.c
net/ipv6/ip6_checksum.c
net/netfilter/nft_nat.c
net/ipv6/xfrm6_policy.c
net/dccp/proto.c
net/netfilter/nfnetlink_queue.c
net/dccp/ipv4.c
net/netfilter/xt_comment.c
net/ipv6/ndisc.c
net/netfilter/nf_conntrack_broadcast.c
net/dccp/timer.c
net/ipv6/mcast_snoop.c
net/ipv6/calipso.c
net/netfilter/nft_fwd_netdev.c
net/dccp/probe.c
net/netfilter/nft_hash.c
net/ipv6/seg6_hmac.c
net/dccp/sysctl.c
net/netfilter/nft_exthdr.c
net/dccp/feat.c
net/netfilter/xt_DSCP.c
net/ipv6/ip6_icmp.c
net/netfilter/nf_conntrack_amanda.c
net/dccp/minisocks.c
net/ipv6/inet6_connection_sock.c
net/netfilter/xt_nat.c
net/ipv6/esp6.c
net/netfilter/nft_set_bitmap.c
net/dccp/options.c
net/ipv6/xfrm6_mode_tunnel.c
net/netfilter/nft_byteorder.c
net/dccp/input.c
net/netfilter/nf_conntrack_netlink.c
net/dccp/diag.c
net/netfilter/xt_ipvs.c
net/dccp/ackvec.c
net/ipv6/exthdrs.c
net/netfilter/xt_esp.c
net/dccp/ipv6.c
net/ipv6/mcast.c
net/netfilter/nf_nat_proto_common.c
net/ipv6/ip6_udp_tunnel.c
net/netfilter/xt_CONNSECMARK.c
net/dccp/qpolicy.c
net/ipv6/esp6_offload.c
net/dccp/ccid.c
net/netfilter/nf_nat_proto_tcp.c
net/ipv6/xfrm6_protocol.c
net/netfilter/nf_conntrack_snmp.c
net/ipv6/xfrm6_state.c
net/netfilter/nf_nat_proto_dccp.c
net/ipv6/ipv6_sockglue.c
net/netfilter/xt_sctp.c
net/ipv6/addrconf_core.c
net/ipv6/sit.c
net/netfilter/nft_cmp.c
net/ipv6/ip6_vti.c
net/netfilter/nfnetlink.c
net/ipv6/tunnel6.c
net/netfilter/nf_tables_trace.c
net/ipv6/ip6_fib.c
net/bpf/test_run.c
net/netfilter/xt_realm.c
net/netfilter/xt_devgroup.c
net/ipv6/datagram.c
net/ipv6/ip6_offload.c
net/netfilter/nf_conntrack_expect.c
net/ipv6/udplite.c
net/ipv6/tcp_ipv6.c
net/netfilter/nf_conntrack_acct.c
net/ipv6/ip6mr.c
net/netfilter/nf_conntrack_proto_tcp.c
net/ipv6/xfrm6_mode_beet.c
net/netfilter/xt_TEE.c
net/ipv6/seg6.c
net/netfilter/nf_nat_proto_udp.c
net/ipv6/mip6.c
net/netfilter/nft_quota.c
net/ipv6/ah6.c
net/netfilter/nf_conntrack_timeout.c
net/ipv6/addrlabel.c
net/netfilter/nft_reject_inet.c
net/ipv6/sysctl_net_ipv6.c
net/netfilter/nft_ct.c
net/802/fc.c
net/ipv6/xfrm6_tunnel.c
net/netfilter/nf_nat_ftp.c
net/802/stp.c
net/ipv6/ip6_flowlabel.c
net/netfilter/nft_compat.c
net/802/mrp.c
net/ipv6/seg6_iptunnel.c
net/netfilter/xt_hl.c
net/802/fddi.c
net/ipv6/fib6_notifier.c
net/netfilter/xt_connlimit.c
crypto/asymmetric_keys/x509_public_key.c
net/802/psnap.c
net/802/garp.c
net/ipv6/xfrm6_mode_transport.c
net/netfilter/xt_REDIRECT.c
net/802/hippi.c
net/ipv6/fib6_rules.c
net/netfilter/nft_range.c
net/ipv6/anycast.c
net/netfilter/nft_lookup.c
net/802/p8023.c
net/ipv6/xfrm6_mode_ro.c
net/netfilter/nft_immediate.c
net/netfilter/nf_nat_core.c
crypto/asymmetric_keys/restrict.c
net/ipv6/raw.c
net/802/p8022.c
net/netfilter/nft_dynset.c
crypto/asymmetric_keys/pkcs7_verify.c
net/ipv6/ip6_tunnel.c
net/netfilter/nft_fib_inet.c
net/ipv6/ip6_gre.c
net/netfilter/xt_connmark.c
net/ipv6/seg6_local.c
net/netfilter/nf_conntrack_proto_sctp.c
net/netfilter/xt_recent.c
net/ipv6/reassembly.c
net/ipv6/route.c
net/netfilter/xt_HMARK.c
crypto/asymmetric_keys/pkcs7_key_type.c
net/ipv6/syncookies.c
net/netfilter/xt_TRACE.c
net/ipv6/icmp.c
net/netfilter/xt_cgroup.c
net/lapb/lapb_subr.c
net/lapb/lapb_iface.c
net/netfilter/xt_policy.c
crypto/asymmetric_keys/signature.c
net/netfilter/nft_reject.c
net/lapb/lapb_in.c
net/netfilter/nf_conntrack_tftp.c
crypto/asymmetric_keys/x509_cert_parser.c
net/lapb/lapb_timer.c
net/netfilter/xt_cluster.c
crypto/asymmetric_keys/pkcs7_parser.c
net/netfilter/nf_tables_api.c
net/lapb/lapb_out.c
crypto/asymmetric_keys/verify_pefile.c
net/netfilter/xt_tcpudp.c
net/netfilter/nf_nat_proto_unknown.c
crypto/asymmetric_keys/public_key.c
net/netfilter/xt_u32.c
net/netfilter/xt_ecn.c
crypto/asymmetric_keys/mscode_parser.c
net/netfilter/xt_AUDIT.c
net/ieee802154/core.c
crypto/asymmetric_keys/pkcs7_trust.c
net/netfilter/nft_set_rbtree.c
net/ieee802154/sysfs.c
net/netfilter/xt_RATEEST.c
net/netfilter/nfnetlink_log.c
net/netfilter/nf_conntrack_helper.c
net/ieee802154/trace.c
net/ieee802154/netlink.c
net/netfilter/xt_socket.c
net/ieee802154/nl802154.c
net/hsr/hsr_forward.c
net/hsr/hsr_framereg.c
net/netfilter/xt_l2tp.c
net/ieee802154/nl-mac.c
net/netfilter/nf_tables_inet.c
net/netfilter/xt_SECMARK.c
net/hsr/hsr_slave.c
net/netfilter/nft_objref.c
net/ieee802154/socket.c
net/netfilter/nf_conntrack_extend.c
crypto/asymmetric_keys/asymmetric_type.c
net/netfilter/xt_quota.c
net/hsr/hsr_netlink.c
net/ieee802154/nl-phy.c
net/netfilter/xt_CHECKSUM.c
net/hsr/hsr_main.c
net/netfilter/xt_iprange.c
net/ieee802154/nl_policy.c
net/netfilter/nft_redir.c
net/hsr/hsr_device.c
net/netfilter/nf_conntrack_labels.c
net/netfilter/nf_conntrack_pptp.c
net/ieee802154/header_ops.c
net/netfilter/nft_numgen.c
net/netfilter/xt_conntrack.c
net/netfilter/nf_log_common.c
net/netfilter/nf_nat_proto_sctp.c
net/netfilter/nf_nat_irc.c
net/netfilter/xt_CT.c
net/netfilter/nf_conntrack_ftp.c
net/bridge/br_stp_bpdu.c
net/netfilter/nft_rt.c
net/bridge/br_stp_if.c
net/nsh/nsh.c
net/netfilter/nf_tables_core.c
net/bridge/br_switchdev.c
net/tls/tls_sw.c
net/netfilter/nf_conntrack_proto_generic.c
net/netfilter/nf_conntrack_h323_types.c
net/tls/tls_main.c
net/bridge/br.c
net/netfilter/xt_statistic.c
net/bridge/br_netfilter_ipv6.c
net/netfilter/xt_pkttype.c
net/bridge/br_mdb.c
net/netfilter/xt_CLASSIFY.c
net/bridge/br_stp_timer.c
net/netfilter/nf_log.c
net/netfilter/x_tables.c
net/bridge/br_nf_core.c
net/netfilter/nfnetlink_acct.c
net/bridge/br_forward.c
net/netfilter/xt_dccp.c
net/llc/llc_pdu.c
net/netfilter/nf_nat_tftp.c
net/bridge/br_input.c
net/llc/llc_station.c
net/netfilter/nf_sockopt.c
net/llc/llc_proc.c
net/netfilter/xt_IDLETIMER.c
net/bridge/br_sysfs_br.c
net/netfilter/xt_limit.c
net/smc/af_smc.c
net/llc/llc_s_st.c
net/bridge/br_multicast.c
net/netfilter/nft_payload.c
net/smc/smc_pnet.c
net/llc/llc_c_ac.c
net/bridge/br_vlan_tunnel.c
net/netfilter/xt_multiport.c
net/llc/sysctl_net_llc.c
net/bridge/br_stp.c
net/netfilter/nf_conntrack_core.c
net/llc/llc_s_ev.c
net/bridge/br_fdb.c
net/llc/llc_output.c
net/bridge/br_device.c
net/netfilter/xt_physdev.c
net/llc/af_llc.c
net/bridge/br_sysfs_if.c
net/netfilter/xt_LOG.c
net/llc/llc_s_ac.c
net/smc/smc_diag.c
net/bridge/br_ioctl.c
net/netfilter/xt_string.c
net/llc/llc_if.c
net/bridge/br_vlan.c
net/netfilter/xt_TCPOPTSTRIP.c
net/llc/llc_c_ev.c
net/smc/smc_tx.c
net/bridge/br_netlink.c
net/netfilter/nft_log.c
net/llc/llc_c_st.c
net/smc/smc_llc.c
net/bridge/br_netlink_tunnel.c
net/netfilter/xt_state.c
net/llc/llc_core.c
net/smc/smc_ib.c
net/bridge/br_arp_nd_proxy.c
net/netfilter/xt_LED.c
net/netfilter/xt_addrtype.c
net/smc/smc_wr.c
net/bridge/br_netfilter_hooks.c
net/llc/llc_sap.c
net/netfilter/nf_nat_helper.c
net/smc/smc_cdc.c
net/llc/llc_input.c
net/smc/smc_core.c
net/bridge/br_if.c
net/llc/llc_conn.c
net/netfilter/nf_tables_netdev.c
net/netfilter/nf_conntrack_proto_gre.c
net/smc/smc_close.c
net/netfilter/xt_osf.c
net/smc/smc_clc.c
net/netfilter/nf_conntrack_irc.c
net/smc/smc_rx.c
net/netfilter/nf_conntrack_proto.c
net/netfilter/nft_queue.c
net/netfilter/xt_nfacct.c
net/ethernet/eth.c
lib/reed_solomon/reed_solomon.c
lib/reed_solomon/decode_rs.c
lib/reed_solomon/encode_rs.c
net/qrtr/smd.c
net/phonet/af_phonet.c
net/qrtr/qrtr.c
net/phonet/pep.c
net/sunrpc/debugfs.c
net/phonet/pep-gprs.c
net/sunrpc/xdr.c
net/phonet/pn_dev.c
net/can/gw.c
net/sunrpc/socklib.c
net/can/proc.c
net/sunrpc/xprt.c
net/phonet/sysctl.c
net/phonet/datagram.c
net/sunrpc/sched.c
net/phonet/pn_netlink.c
net/can/bcm.c
net/phonet/socket.c
net/can/af_can.c
net/sunrpc/auth.c
net/sunrpc/rpcb_clnt.c
net/can/raw.c
net/sunrpc/backchannel_rqst.c
net/sunrpc/timer.c
net/sunrpc/svcauth_unix.c
net/sunrpc/clnt.c
net/sunrpc/cache.c
net/sunrpc/sysctl.c
net/sunrpc/svc.c
net/atm/common.c
net/sunrpc/svcauth.c
net/sunrpc/stats.c
net/atm/br2684.c
net/sunrpc/xprtsock.c
net/rose/rose_link.c
net/openvswitch/datapath.c
net/atm/signaling.c
net/openvswitch/flow_table.c
net/rose/sysctl_net_rose.c
net/atm/proc.c
net/rose/rose_timer.c
net/sunrpc/svcsock.c
net/atm/atm_sysfs.c
net/openvswitch/actions.c
net/rose/rose_loopback.c
net/sunrpc/xprtmultipath.c
net/atm/atm_misc.c
net/openvswitch/dp_notify.c
net/rose/rose_out.c
net/sunrpc/auth_null.c
net/atm/lec.c
net/rose/rose_in.c
net/sunrpc/auth_unix.c
net/atm/clip.c
net/rose/rose_dev.c
net/sunrpc/addr.c
net/rose/af_rose.c
net/sunrpc/sunrpc_syms.c
net/openvswitch/vport-gre.c
net/atm/resources.c
net/rose/rose_subr.c
net/atm/svc.c
net/rose/rose_route.c
net/openvswitch/flow_netlink.c
net/sunrpc/svc_xprt.c
net/openvswitch/vport-vxlan.c
net/sunrpc/auth_generic.c
net/atm/mpoa_proc.c
net/openvswitch/vport-netdev.c
net/sunrpc/rpc_pipe.c
net/atm/pppoatm.c
net/openvswitch/vport.c
net/atm/pvc.c
net/atm/mpc.c
net/openvswitch/vport-geneve.c
net/openvswitch/flow.c
net/atm/ioctl.c
net/atm/addr.c
net/rfkill/core.c
net/openvswitch/vport-internal_dev.c
net/atm/mpoa_caches.c
net/openvswitch/conntrack.c
net/atm/raw.c
net/rfkill/input.c
net/6lowpan/debugfs.c
net/rfkill/rfkill-gpio.c
net/openvswitch/meter.c
net/6lowpan/nhc_ghc_ext_frag.c
net/6lowpan/nhc_ghc_icmpv6.c
net/6lowpan/nhc_udp.c
net/6lowpan/nhc_ghc_ext_dest.c
net/6lowpan/core.c
net/6lowpan/nhc_hop.c
net/iucv/af_iucv.c
net/6lowpan/nhc_routing.c
net/appletalk/atalk_proc.c
net/iucv/iucv.c
net/6lowpan/ndisc.c
net/8021q/vlanproc.c
net/appletalk/sysctl_net_atalk.c
net/6lowpan/nhc_ghc_ext_hop.c
net/8021q/vlan_dev.c
net/appletalk/dev.c
net/appletalk/aarp.c
net/6lowpan/nhc_ghc_udp.c
net/8021q/vlan_mvrp.c
net/appletalk/ddp.c
net/6lowpan/iphc.c
net/8021q/vlan_netlink.c
net/6lowpan/nhc_fragment.c
net/6lowpan/nhc_mobility.c
net/8021q/vlan.c
net/6lowpan/nhc_ghc_ext_route.c
net/8021q/vlan_core.c
net/6lowpan/nhc_dest.c
net/8021q/vlan_gvrp.c
net/6lowpan/nhc_ipv6.c
net/6lowpan/nhc.c
net/unix/sysctl_net_unix.c
net/core/gen_estimator.c
net/unix/af_unix.c
net/core/tso.c
net/unix/garbage.c
net/core/ethtool.c
net/unix/diag.c
net/core/drop_monitor.c
net/core/gen_stats.c
net/core/net-procfs.c
net/core/devlink.c
net/rds/send.c
net/core/sock.c
net/core/pktgen.c
net/rds/ib_ring.c
net/core/net-sysfs.c
net/rds/rdma_transport.c
net/core/link_watch.c
net/core/lwtunnel.c
net/rds/transport.c
net/core/dev_addr_lists.c
net/core/secure_seq.c
net/core/stream.c
net/rds/ib_rdma.c
net/core/gro_cells.c
net/rds/threads.c
net/ceph/debugfs.c
net/core/net_namespace.c
net/rds/ib_recv.c
net/core/utils.c
net/ceph/ceph_strings.c
net/core/sysctl_net_core.c
net/ipv4/tcp_cubic.c
net/rds/message.c
net/core/filter.c
net/ipv4/netfilter.c
net/rds/ib_cm.c
net/ceph/auth_none.c
net/ipv4/ip_input.c
net/core/dev.c
net/ceph/mon_client.c
net/ipv4/xfrm4_mode_beet.c
net/rds/bind.c
net/core/skbuff.c
net/ipv4/tcp_fastopen.c
net/core/neighbour.c
net/ceph/ceph_hash.c
net/rds/tcp_listen.c
net/ipv4/gre_demux.c
net/core/netpoll.c
net/ceph/crypto.c
net/rds/ib_frmr.c
net/ipv4/esp4.c
net/core/lwt_bpf.c
net/ceph/ceph_fs.c
net/rds/ib_sysctl.c
net/ipv4/xfrm4_input.c
net/core/ptp_classifier.c
net/ceph/snapshot.c
net/rds/info.c
net/ipv4/tcp_rate.c
net/core/hwbm.c
net/ceph/ceph_common.c
net/rds/ib_send.c
net/core/rtnetlink.c
net/ipv4/inet_connection_sock.c
net/rds/ib.c
net/core/fib_notifier.c
net/ipv4/protocol.c
net/ceph/auth.c
net/rds/rdma.c
net/ipv4/fib_trie.c
net/core/sock_reuseport.c
net/ceph/osd_client.c
net/rds/sysctl.c
net/ipv4/tunnel4.c
net/core/datagram.c
net/ceph/messenger.c
net/rds/tcp.c
net/core/dev_ioctl.c
net/ipv4/tcp_minisocks.c
net/rds/af_rds.c
net/ceph/msgpool.c
net/core/fib_rules.c
net/ipv4/udp.c
net/rds/ib_stats.c
net/ceph/armor.c
net/core/netevent.c
net/core/netprio_cgroup.c
net/ipv4/ipmr.c
net/rds/ib_fmr.c
net/ceph/pagelist.c
net/ipv4/ping.c
net/core/request_sock.c
net/rds/stats.c
net/ceph/string_table.c
net/core/scm.c
net/ipv4/tcp_ipv4.c
net/rds/recv.c
net/core/net-traces.c
net/ipv4/proc.c
net/ceph/auth_x.c
net/core/timestamping.c
net/ipv4/tcp_timer.c
net/rds/loop.c
net/ceph/osdmap.c
net/core/netclassid_cgroup.c
net/ceph/cls_lock_client.c
net/ipv4/udp_offload.c
net/rds/connection.c
net/core/dst.c
net/ipv4/ipconfig.c
net/rds/tcp_send.c
net/ceph/pagevec.c
net/ipv4/xfrm4_state.c
net/core/flow_dissector.c
net/rds/tcp_stats.c
net/core/sock_diag.c
net/ceph/buffer.c
net/ipv4/ip_forward.c
net/core/dst_cache.c
net/rds/page.c
net/ipv4/tcp_metrics.c
net/rds/cong.c
net/ipv4/tcp_bic.c
net/rds/tcp_recv.c
net/ipv4/gre_offload.c
net/rds/tcp_connect.c
net/ipv4/raw_diag.c
net/ipv4/tcp_bbr.c
net/ipv4/tcp_cong.c
net/ipv4/ip_sockglue.c
net/vmw_vsock/af_vsock_tap.c
net/9p/protocol.c
net/ipv4/tcp_ulp.c
net/vmw_vsock/af_vsock.c
net/ipv4/xfrm4_mode_transport.c
net/9p/trans_fd.c
net/ipv4/fib_semantics.c
net/vmw_vsock/vsock_addr.c
net/ipv4/igmp.c
net/9p/trans_virtio.c
net/ipv4/tcp_nv.c
net/9p/trans_common.c
net/vmw_vsock/hyperv_transport.c
net/ipv4/arp.c
net/netlink/af_netlink.c
net/vmw_vsock/vmci_transport_notify.c
net/ipv4/tcp_htcp.c
net/vmw_vsock/virtio_transport.c
net/ipv4/ip_tunnel.c
net/9p/trans_rdma.c
net/netlink/genetlink.c
net/ipv4/ipip.c
net/9p/trans_xen.c
net/netlink/diag.c
net/vmw_vsock/diag.c
net/ipv4/tcp.c
net/9p/error.c
net/vmw_vsock/vmci_transport.c
net/9p/util.c
net/ipv4/xfrm4_output.c
net/vmw_vsock/vmci_transport_notify_qstate.c
net/9p/client.c
net/ipv4/tcp_scalable.c
net/9p/mod.c
net/ipv4/tcp_dctcp.c
net/vmw_vsock/virtio_transport_common.c
net/ipv4/ip_fragment.c
net/ipv4/ipcomp.c
net/ipv4/ip_output.c
net/ipv4/inet_diag.c
net/ipv4/tcp_highspeed.c
net/ipv4/tcp_vegas.c
net/ipv4/ah4.c
net/xfrm/xfrm_algo.c
net/ipv4/tcp_output.c
net/xfrm/xfrm_input.c
net/ipv4/tcp_diag.c
net/xfrm/xfrm_state.c
net/ipv4/cipso_ipv4.c
net/ipv4/sysctl_net_ipv4.c
net/strparser/strparser.c
net/xfrm/xfrm_policy.c
net/ipv4/tcp_recovery.c
net/ipv4/fib_notifier.c
net/xfrm/xfrm_sysctl.c
net/ipv4/tcp_input.c
net/xfrm/xfrm_hash.c
net/ipv4/tcp_westwood.c
net/xfrm/xfrm_output.c
net/ipv4/datagram.c
net/xfrm/xfrm_user.c
net/ipv4/xfrm4_protocol.c
net/mac80211/debugfs_netdev.c
net/xfrm/xfrm_replay.c
net/ipv4/udplite.c
net/xfrm/xfrm_proc.c
net/ipv4/fou.c
net/ipv4/fib_frontend.c
net/mac80211/debugfs.c
net/xfrm/xfrm_ipcomp.c
net/ipv4/devinet.c
net/mac80211/ibss.c
net/ipv4/udp_tunnel.c
net/mac80211/debugfs_sta.c
net/xfrm/xfrm_device.c
net/ipv4/xfrm4_mode_tunnel.c
net/mac80211/vht.c
net/ipv4/tcp_offload.c
net/ipv4/inetpeer.c
net/ipv4/inet_timewait_sock.c
net/mac80211/agg-tx.c
net/ipv4/fib_rules.c
net/ipv4/tcp_probe.c
net/mac80211/ht.c
net/ipv4/ip_options.c
net/mac80211/rc80211_minstrel.c
net/ipv4/ip_tunnel_core.c
net/ipv4/af_inet.c
net/ipv4/tcp_cdg.c
net/mac80211/tx.c
net/ipv4/tcp_veno.c
net/ipv4/inet_hashtables.c
net/mac80211/ethtool.c
net/ipv4/inet_fragment.c
net/mac80211/ocb.c
net/l3mdev/l3mdev.c
net/ipv4/ip_vti.c
net/mac80211/offchannel.c
net/mac80211/aes_gmac.c
net/ipv4/xfrm4_policy.c
net/ipv4/tcp_lp.c
net/mac80211/mesh_hwmp.c
net/ipv4/tcp_hybla.c
net/mac80211/rc80211_minstrel_ht_debugfs.c
net/ipv4/ip_gre.c
net/mac80211/wep.c
net/ipv4/tcp_yeah.c
net/mac80211/rx.c
net/ipv4/tcp_illinois.c
net/kcm/kcmsock.c
net/mac80211/fils_aead.c
net/ipv4/esp4_offload.c
net/kcm/kcmproc.c
net/ipv4/raw.c
net/ipv4/xfrm4_tunnel.c
net/ipv4/route.c
net/mpls/mpls_iptunnel.c
net/ipv4/syncookies.c
net/mac80211/mesh_ps.c
net/mpls/mpls_gso.c
net/ipv4/icmp.c
net/mac80211/status.c
net/mpls/af_mpls.c
net/ipv4/udp_diag.c
net/mac80211/mlme.c
net/mac80211/sta_info.c
net/netrom/nr_out.c
net/netrom/nr_route.c
net/netrom/nr_dev.c
net/mac80211/debugfs_key.c
net/netrom/af_netrom.c
net/mac80211/rc80211_minstrel_ht.c
net/netrom/nr_in.c
net/decnet/sysctl_net_decnet.c
net/netrom/nr_timer.c
net/mac80211/chan.c
net/netrom/nr_subr.c
net/mac80211/mesh_pathtbl.c
net/decnet/dn_fib.c
net/netrom/sysctl_net_netrom.c
net/decnet/dn_dev.c
net/mac80211/trace.c
net/mac80211/spectmgmt.c
net/netrom/nr_loopback.c
net/decnet/dn_table.c
net/decnet/dn_rules.c
net/mac80211/wpa.c
net/sched/cls_fw.c
net/decnet/dn_nsp_in.c
net/mac80211/driver-ops.c
net/sched/cls_matchall.c
net/decnet/dn_nsp_out.c
net/mac80211/tkip.c
net/sched/sch_netem.c
net/decnet/af_decnet.c
net/decnet/dn_timer.c
net/sched/act_meta_skbprio.c
net/mac80211/led.c
net/sched/act_pedit.c
net/mac80211/mesh_sync.c
net/sched/cls_api.c
net/decnet/dn_route.c
net/sched/act_nat.c
net/mac80211/aes_cmac.c
net/decnet/dn_neigh.c
net/sched/sch_red.c
net/mac80211/michael.c
net/l2tp/l2tp_ip.c
net/mac80211/rate.c
net/sched/sch_cbq.c
net/sched/act_skbmod.c
net/mac80211/aead_api.c
net/l2tp/l2tp_eth.c
net/sched/sch_htb.c
net/mac80211/mesh.c
net/l2tp/l2tp_debugfs.c
net/sched/cls_u32.c
net/mac80211/iface.c
net/l2tp/l2tp_ppp.c
net/sched/cls_bpf.c
net/l2tp/l2tp_ip6.c
net/sched/act_sample.c
net/mac80211/pm.c
net/sched/act_connmark.c
net/mac80211/wme.c
net/l2tp/l2tp_netlink.c
net/sched/act_meta_mark.c
net/l2tp/l2tp_core.c
net/mac80211/key.c
net/sched/em_u32.c
net/mac80211/util.c
net/sched/sch_teql.c
net/mac80211/tdls.c
net/sched/sch_multiq.c
net/mac80211/mesh_plink.c
net/sched/sch_ingress.c
net/mac80211/cfg.c
net/sched/sch_sfb.c
net/sched/cls_cgroup.c
net/mac80211/scan.c
net/sched/act_api.c
net/mac80211/main.c
net/sched/ematch.c
net/mac802154/mac_cmd.c
net/sched/sch_atm.c
net/mac802154/tx.c
net/sched/sch_tbf.c
net/mac802154/rx.c
net/sched/cls_flower.c
net/sched/act_meta_skbtcindex.c
net/mac80211/agg-rx.c
net/mac802154/mib.c
net/sched/cls_flow.c
net/sched/sch_generic.c
net/mac80211/rc80211_minstrel_debugfs.c
net/mac802154/llsec.c
net/sched/act_ipt.c
net/mac802154/trace.c
net/sched/sch_codel.c
net/sched/sch_api.c
net/sched/sch_fq.c
net/mac802154/iface.c
net/sched/act_bpf.c
net/sched/em_text.c
net/mac802154/util.c
net/sched/em_nbyte.c
scripts/mod/sumversion.c
net/mac802154/cfg.c
net/sched/act_csum.c
net/mac802154/main.c
net/sched/sch_fifo.c
scripts/mod/file2alias.c
scripts/mod/modpost.c
net/wimax/debugfs.c
net/sched/cls_tcindex.c
net/sched/cls_rsvp6.c
net/sched/sch_mqprio.c
net/sched/sch_prio.c
scripts/mod/mk_elfconfig.c
net/sched/sch_drr.c
net/wimax/op-msg.c
scripts/mod/empty.c
net/sched/cls_rsvp.c
net/wimax/op-rfkill.c
scripts/mod/devicetable-offsets.c
net/sched/act_simple.c
net/wimax/id-table.c
net/sched/sch_plug.c
net/wimax/op-reset.c
net/sched/sch_qfq.c
net/wimax/stack.c
net/sched/sch_blackhole.c
net/dns_resolver/dns_query.c
net/sched/sch_hfsc.c
net/wimax/op-state-get.c
net/sched/act_gact.c
net/dns_resolver/dns_key.c
net/sched/sch_pie.c
net/sched/cls_route.c
net/sched/sch_choke.c
net/sched/act_vlan.c
net/sched/act_skbedit.c
net/sched/sch_hhf.c
net/sched/act_mirred.c
net/sched/act_police.c
net/switchdev/switchdev.c
net/sched/em_cmp.c
net/sched/sch_sfq.c
net/sched/act_ife.c
net/sched/sch_dsmark.c
net/sched/em_canid.c
net/sched/sch_mq.c
net/sched/em_ipset.c
net/sched/act_tunnel_key.c
lib/zstd/compress.c
net/sched/em_meta.c
lib/zstd/fse_compress.c
lib/zstd/huf_compress.c
net/sched/sch_cbs.c
net/sched/sch_fq_codel.c
net/sched/sch_gred.c
net/sched/cls_basic.c
crypto/async_tx/async_memcpy.c
lib/zstd/entropy_common.c
crypto/async_tx/async_tx.c
lib/zstd/huf_decompress.c
crypto/async_tx/async_raid6_recov.c
crypto/async_tx/raid6test.c
crypto/async_tx/async_pq.c
lib/zstd/fse_decompress.c
lib/zstd/decompress.c
scripts/gcc-plugins/randomize_layout_plugin.c
crypto/async_tx/async_xor.c
lib/zstd/zstd_common.c
scripts/gcc-plugins/latent_entropy_plugin.c
scripts/gcc-plugins/structleak_plugin.c
scripts/gcc-plugins/cyc_complexity_plugin.c
lib/mpi/mpiutil.c
lib/mpi/generic_mpih-mul2.c
scripts/gcc-plugins/sancov_plugin.c
lib/mpi/generic_mpih-rshift.c
lib/mpi/generic_mpih-mul3.c
lib/mpi/mpi-bit.c
lib/mpi/generic_mpih-add1.c
lib/mpi/mpi-cmp.c
lib/mpi/mpih-div.c
lib/mpi/mpicoder.c
lib/mpi/generic_mpih-mul1.c
lib/mpi/mpih-cmp.c
lib/mpi/mpih-mul.c
lib/mpi/mpi-pow.c
lib/mpi/generic_mpih-lshift.c
lib/mpi/generic_mpih-sub1.c
scripts/dtc/fdtget.c
scripts/dtc/livetree.c
scripts/dtc/checks.c
scripts/dtc/treesource.c
scripts/dtc/fstree.c
scripts/dtc/dtc.c
scripts/dtc/fdtdump.c
scripts/dtc/fdtput.c
scripts/dtc/util.c
scripts/dtc/flattree.c
scripts/dtc/srcpos.c
scripts/dtc/data.c
net/tipc/socket.c
lib/raid6/avx2.c
lib/raid6/sse2.c
lib/raid6/neon.c
lib/raid6/mktables.c
lib/raid6/sse1.c
lib/raid6/recov_avx512.c
lib/raid6/recov.c
lib/raid6/algos.c
lib/raid6/recov_avx2.c
lib/raid6/mmx.c
lib/raid6/avx512.c
lib/raid6/recov_s390xc.c
lib/raid6/recov_neon_inner.c
lib/raid6/recov_neon.c
lib/raid6/recov_ssse3.c
scripts/kconfig/images.c
scripts/kconfig/mconf.c
scripts/kconfig/kconf_id.c
scripts/kconfig/expr.c
scripts/kconfig/gconf.c
scripts/kconfig/nconf.c
scripts/kconfig/kxgettext.c
scripts/kconfig/symbol.c
scripts/kconfig/menu.c
scripts/kconfig/util.c
scripts/kconfig/conf.c
lib/lz4/lz4_compress.c
lib/lz4/lz4hc_compress.c
lib/lz4/lz4_decompress.c
scripts/kconfig/nconf.gui.c
scripts/kconfig/confdata.c
scripts/basic/bin2c.c
scripts/basic/fixdep.c
lib/xz/xz_crc32.c
lib/xz/xz_dec_test.c
lib/xz/xz_dec_lzma2.c
lib/xz/xz_dec_bcj.c
lib/xz/xz_dec_syms.c
lib/xz/xz_dec_stream.c
lib/zlib_inflate/inffast.c
lib/zlib_deflate/deflate_syms.c
lib/zlib_deflate/deflate.c
lib/zlib_deflate/deftree.c
lib/zlib_inflate/inflate.c
lib/zlib_inflate/infutil.c
lib/zlib_inflate/inflate_syms.c
lib/zlib_inflate/inftrees.c
drivers/crypto/omap-des.c
drivers/crypto/s5p-sss.c
drivers/ipack/ipack.c
drivers/crypto/padlock-aes.c
drivers/crypto/atmel-ecc.c
drivers/crypto/omap-aes-gcm.c
drivers/crypto/mxc-scc.c
drivers/crypto/atmel-sha.c
drivers/crypto/geode-aes.c
drivers/crypto/omap-sham.c
drivers/crypto/omap-aes.c
drivers/crypto/atmel-aes.c
drivers/tc/tc.c
scripts/genksyms/keywords.c
drivers/tc/tc-driver.c
drivers/crypto/omap-crypto.c
scripts/genksyms/genksyms.c
drivers/crypto/atmel-tdes.c
drivers/crypto/exynos-rng.c
drivers/crypto/hifn_795x.c
drivers/crypto/sahara.c
drivers/crypto/bfin_crc.c
drivers/crypto/mxs-dcp.c
drivers/crypto/padlock-sha.c
drivers/crypto/n2_core.c
drivers/spmi/spmi.c
drivers/crypto/picoxcell_crypto.c
drivers/spmi/spmi-pmic-arb.c
drivers/crypto/ixp4xx_crypto.c
drivers/crypto/talitos.c
drivers/input/input-compat.c
drivers/watchdog/machzwd.c
drivers/crypto/img-hash.c
drivers/watchdog/pcwd.c
drivers/input/input-mt.c
drivers/watchdog/sbsa_gwdt.c
drivers/input/ff-core.c
drivers/watchdog/pnx4008_wdt.c
drivers/input/input-polldev.c
drivers/watchdog/bcm47xx_wdt.c
drivers/watchdog/shwdt.c
drivers/watchdog/pretimeout_noop.c
drivers/watchdog/renesas_wdt.c
drivers/input/evdev.c
drivers/watchdog/advantechwdt.c
drivers/input/matrix-keymap.c
drivers/watchdog/i6300esb.c
drivers/input/input-leds.c
drivers/watchdog/menf21bmc_wdt.c
drivers/watchdog/pnx833x_wdt.c
drivers/watchdog/sbc60xxwdt.c
drivers/watchdog/m54xx_wdt.c
drivers/parport/parport_atari.c
drivers/watchdog/aspeed_wdt.c
drivers/parport/parport_ax88796.c
drivers/watchdog/w83977f_wdt.c
drivers/watchdog/wdt_pci.c
drivers/input/apm-power.c
drivers/watchdog/qcom-wdt.c
drivers/input/input.c
drivers/parport/probe.c
drivers/watchdog/lantiq_wdt.c
drivers/input/mousedev.c
drivers/parport/ieee1284.c
drivers/rpmsg/qcom_glink_native.c
drivers/watchdog/sc1200wdt.c
drivers/parport/parport_pc.c
drivers/watchdog/kempld_wdt.c
drivers/input/ff-memless.c
drivers/parport/parport_mfc3.c
drivers/rpmsg/qcom_glink_rpm.c
drivers/input/joydev.c
drivers/watchdog/sbc_fitpc2_wdt.c
drivers/parport/parport_ip32.c
drivers/watchdog/intel-mid_wdt.c
drivers/parport/procfs.c
drivers/rpmsg/rpmsg_char.c
drivers/input/evbug.c
drivers/watchdog/mpc8xxx_wdt.c
drivers/parport/parport_gsc.c
drivers/rpmsg/qcom_glink_smem.c
drivers/watchdog/sa1100_wdt.c
drivers/input/sparse-keymap.c
drivers/parport/share.c
drivers/rpmsg/virtio_rpmsg_bus.c
drivers/watchdog/da9052_wdt.c
drivers/parport/daisy.c
drivers/rpmsg/rpmsg_core.c
drivers/watchdog/orion_wdt.c
drivers/rpmsg/qcom_smd.c
drivers/watchdog/twl4030_wdt.c
drivers/parport/ieee1284_ops.c
drivers/watchdog/meson_wdt.c
drivers/parport/parport_sunbpp.c
drivers/watchdog/wdt.c
drivers/parport/parport_serial.c
drivers/watchdog/ks8695_wdt.c
drivers/watchdog/pic32-dmt.c
drivers/parport/parport_amiga.c
drivers/watchdog/txx9wdt.c
drivers/watchdog/indydog.c
drivers/parport/parport_cs.c
drivers/watchdog/tegra_wdt.c
drivers/watchdog/pcwd_usb.c
drivers/watchdog/sama5d4_wdt.c
drivers/watchdog/meson_gxbb_wdt.c
drivers/watchdog/ath79_wdt.c
Documentation/scheduler/sched-pelt.c
drivers/watchdog/sbc_epx_c3.c
drivers/watchdog/jz4740_wdt.c
drivers/watchdog/dw_wdt.c
drivers/watchdog/da9062_wdt.c
drivers/watchdog/f71808e_wdt.c
drivers/watchdog/ziirave_wdt.c
drivers/watchdog/ie6xx_wdt.c
drivers/watchdog/ep93xx_wdt.c
drivers/watchdog/ibmasr.c
drivers/watchdog/watchdog_pretimeout.c
drivers/watchdog/iop_wdt.c
drivers/watchdog/pc87413_wdt.c
drivers/watchdog/iTCO_wdt.c
drivers/watchdog/max77620_wdt.c
drivers/watchdog/hpwdt.c
drivers/watchdog/davinci_wdt.c
drivers/watchdog/sb_wdog.c
drivers/watchdog/wdrtas.c
drivers/watchdog/ux500_wdt.c
drivers/watchdog/ts4800_wdt.c
drivers/watchdog/riowd.c
drivers/watchdog/bcm2835_wdt.c
drivers/watchdog/loongson1_wdt.c
drivers/watchdog/sbc8360.c
drivers/watchdog/st_lpc_wdt.c
drivers/ata/sata_svw.c
drivers/watchdog/it8712f_wdt.c
drivers/watchdog/digicolor_wdt.c
drivers/ata/pata_sch.c
drivers/watchdog/at32ap700x_wdt.c
drivers/ata/sata_highbank.c
drivers/watchdog/uniphier_wdt.c
drivers/ata/pata_triflex.c
drivers/watchdog/retu_wdt.c
drivers/ata/libata-pmp.c
drivers/watchdog/rt2880_wdt.c
drivers/ata/ahci_xgene.c
drivers/watchdog/pretimeout_panic.c
drivers/ata/ahci_mvebu.c
drivers/watchdog/stmp3xxx_rtc_wdt.c
drivers/watchdog/ts72xx_wdt.c
drivers/ata/pata_acpi.c
drivers/watchdog/pcwd_pci.c
drivers/ata/ahci.c
drivers/ata/pata_mpc52xx.c
drivers/watchdog/rdc321x_wdt.c
drivers/ata/pata_imx.c
drivers/watchdog/wdat_wdt.c
drivers/ata/pata_netcell.c
drivers/ata/sata_promise.c
drivers/watchdog/watchdog_core.c
drivers/ata/ahci_seattle.c
drivers/watchdog/stm32_iwdg.c
drivers/watchdog/pika_wdt.c
drivers/ata/pata_cs5520.c
drivers/watchdog/w83627hf_wdt.c
drivers/ata/ahci_imx.c
drivers/watchdog/sp5100_tco.c
drivers/ata/ahci_dm816.c
drivers/watchdog/softdog.c
drivers/ata/pata_sil680.c
drivers/watchdog/gemini_wdt.c
drivers/ata/pata_via.c
drivers/ata/pata_jmicron.c
drivers/watchdog/mt7621_wdt.c
drivers/ata/libata-zpodd.c
drivers/watchdog/alim1535_wdt.c
drivers/ata/pata_marvell.c
drivers/watchdog/scx200_wdt.c
drivers/watchdog/at91rm9200_wdt.c
drivers/watchdog/mixcomwd.c
drivers/ata/sata_nv.c
drivers/watchdog/sc520_wdt.c
drivers/ata/sata_qstor.c
drivers/watchdog/cpu5wdt.c
drivers/ata/libahci.c
drivers/watchdog/moxart_wdt.c
drivers/ata/pata_cs5536.c
drivers/watchdog/diag288_wdt.c
drivers/ata/pata_of_platform.c
drivers/rapidio/rio-sysfs.c
drivers/ata/pata_platform.c
drivers/watchdog/ebc-c384_wdt.c
drivers/watchdog/watchdog_dev.c
drivers/ata/libata-scsi.c
drivers/watchdog/tangox_wdt.c
drivers/ata/libata-sff.c
drivers/rapidio/rio_cm.c
drivers/watchdog/coh901327_wdt.c
drivers/ata/libata-core.c
drivers/watchdog/bcm7038_wdt.c
drivers/ata/libata-eh.c
drivers/rapidio/rio-access.c
drivers/watchdog/imgpdc_wdt.c
drivers/ata/pata_rz1000.c
drivers/watchdog/ib700wdt.c
drivers/ata/pata_atiixp.c
drivers/rapidio/rio-driver.c
drivers/watchdog/nic7018_wdt.c
drivers/ata/pata_sis.c
drivers/rapidio/rio.c
drivers/watchdog/ar7_wdt.c
drivers/ata/sata_vsc.c
drivers/rapidio/rio-scan.c
drivers/watchdog/gpio_wdt.c
drivers/ata/pata_hpt37x.c
drivers/watchdog/geodewdt.c
drivers/ata/pata_ftide010.c
drivers/watchdog/bcm_kona_wdt.c
drivers/ata/ahci_platform.c
drivers/watchdog/rza_wdt.c
drivers/ata/pata_piccolo.c
drivers/watchdog/da9055_wdt.c
drivers/ata/sata_mv.c
drivers/watchdog/alim7101_wdt.c
drivers/ata/sata_sil24.c
drivers/watchdog/mv64x60_wdt.c
drivers/ata/pata_samsung_cf.c
drivers/ata/sata_rcar.c
drivers/watchdog/booke_wdt.c
drivers/ata/pata_pcmcia.c
drivers/watchdog/gef_wdt.c
drivers/ata/sata_via.c
drivers/watchdog/of_xilinx_wdt.c
drivers/ata/ahci_mtk.c
drivers/ata/pata_serverworks.c
drivers/watchdog/iTCO_vendor_support.c
drivers/hsi/hsi_boardinfo.c
drivers/watchdog/cadence_wdt.c
drivers/ata/pata_bk3710.c
drivers/watchdog/nv_tco.c
drivers/ata/pata_ixp4xx_cf.c
drivers/watchdog/omap_wdt.c
drivers/nfc/port100.c
drivers/ata/pata_hpt366.c
drivers/watchdog/wm8350_wdt.c
drivers/hsi/hsi_core.c
drivers/nfc/nfcsim.c
drivers/ata/pata_bf54x.c
drivers/watchdog/octeon-wdt-main.c
drivers/nfc/mei_phy.c
drivers/ata/libata-trace.c
drivers/watchdog/acquirewdt.c
drivers/ata/pata_hpt3x3.c
drivers/watchdog/imx2_wdt.c
drivers/ata/pata_ns87410.c
drivers/ata/pata_rb532_cf.c
drivers/watchdog/eurotechwdt.c
drivers/nfc/trf7970a.c
drivers/watchdog/ixp4xx_wdt.c
drivers/ata/ahci_brcm.c
drivers/watchdog/smsc37b787_wdt.c
drivers/ata/libata-transport.c
drivers/watchdog/ni903x_wdt.c
drivers/ata/ahci_da850.c
drivers/watchdog/sunxi_wdt.c
drivers/ata/pata_artop.c
drivers/watchdog/wafer5823wdt.c
drivers/ata/pata_mpiix.c
drivers/watchdog/lpc18xx_wdt.c
drivers/ata/sata_inic162x.c
drivers/watchdog/at91sam9_wdt.c
drivers/watchdog/pic32-wdt.c
drivers/ata/pata_opti.c
drivers/watchdog/wdt285.c
drivers/watchdog/zx2967_wdt.c
drivers/ata/pata_sc1200.c
drivers/watchdog/sch311x_wdt.c
drivers/watchdog/wm831x_wdt.c
drivers/ata/pata_octeon_cf.c
drivers/watchdog/via_wdt.c
drivers/ata/pata_ali.c
drivers/watchdog/sp805_wdt.c
drivers/ata/pata_cs5535.c
drivers/watchdog/mtk_wdt.c
drivers/ata/libahci_platform.c
drivers/watchdog/bcm63xx_wdt.c
drivers/extcon/extcon-axp288.c
drivers/ata/pata_radisys.c
drivers/watchdog/cpwd.c
drivers/extcon/extcon-max77693.c
drivers/ata/sata_sil.c
drivers/watchdog/intel_scu_watchdog.c
drivers/ata/sata_dwc_460ex.c
drivers/watchdog/xen_wdt.c
drivers/extcon/extcon-max14577.c
drivers/ata/pata_legacy.c
drivers/watchdog/asm9260_wdt.c
drivers/extcon/extcon-sm5502.c
drivers/watchdog/s3c2410_wdt.c
drivers/ata/ahci_st.c
drivers/extcon/extcon-gpio.c
drivers/watchdog/nuc900_wdt.c
drivers/ata/pata_cmd640.c
drivers/extcon/extcon-usb-gpio.c
drivers/watchdog/rn5t618_wdt.c
drivers/ata/pata_ns87415.c
drivers/extcon/extcon-palmas.c
drivers/watchdog/mtx-1_wdt.c
drivers/ata/sata_uli.c
drivers/watchdog/w83877f_wdt.c
drivers/ata/ahci_octeon.c
drivers/extcon/extcon-rt8973a.c
drivers/ata/ata_generic.c
drivers/extcon/extcon-max8997.c
drivers/watchdog/it87_wdt.c
drivers/ata/pata_cs5530.c
drivers/extcon/extcon-arizona.c
drivers/watchdog/mena21_wdt.c
drivers/ata/pata_cmd64x.c
drivers/extcon/extcon.c
drivers/watchdog/wdt977.c
drivers/ata/pata_cypress.c
drivers/extcon/extcon-intel-cht-wc.c
drivers/watchdog/bfin_wdt.c
drivers/extcon/extcon-max77843.c
drivers/watchdog/da9063_wdt.c
drivers/ata/sata_fsl.c
drivers/bluetooth/hci_ldisc.c
drivers/watchdog/sun4v_wdt.c
drivers/ata/pata_ep93xx.c
drivers/bluetooth/btuart_cs.c
drivers/watchdog/atlas7_wdt.c
drivers/ata/pata_ninja32.c
drivers/bluetooth/btmrvl_debugfs.c
drivers/extcon/extcon-adc-jack.c
drivers/watchdog/sbc7240_wdt.c
drivers/extcon/extcon-intel-int3496.c
drivers/ata/acard-ahci.c
drivers/watchdog/rc32434_wdt.c
drivers/extcon/extcon-usbc-cros-ec.c
drivers/bluetooth/ath3k.c
drivers/ata/libata-acpi.c
drivers/watchdog/sirfsoc_wdt.c
drivers/bluetooth/btmrvl_sdio.c
drivers/extcon/extcon-qcom-spmi-misc.c
drivers/ata/pata_icside.c
drivers/extcon/extcon-max3355.c
drivers/watchdog/max63xx_wdt.c
drivers/ata/pata_rdc.c
drivers/bluetooth/hci_bcsp.c
drivers/watchdog/mei_wdt.c
drivers/ata/pata_it8213.c
drivers/extcon/devres.c
drivers/ata/sata_sx4.c
drivers/bluetooth/btusb.c
drivers/ata/pata_it821x.c
drivers/bluetooth/btqca.c
drivers/ata/pata_palmld.c
drivers/bluetooth/hci_bcm.c
drivers/ata/pata_at32.c
drivers/bluetooth/btsdio.c
drivers/bluetooth/hci_serdev.c
drivers/ata/pdc_adma.c
drivers/bluetooth/bluecard_cs.c
drivers/ata/pata_pxa.c
drivers/ata/ata_piix.c
drivers/bluetooth/bt3c_cs.c
drivers/connector/connector.c
drivers/ata/pata_arasan_cf.c
drivers/ata/ahci_tegra.c
drivers/connector/cn_proc.c
drivers/bluetooth/bcm203x.c
drivers/ata/pata_amd.c
drivers/ata/pata_hpt3x2n.c
drivers/connector/cn_queue.c
drivers/bluetooth/dtl1_cs.c
drivers/ata/ahci_sunxi.c
drivers/virtio/virtio_balloon.c
drivers/bluetooth/btintel.c
drivers/ata/pata_atp867x.c
drivers/virtio/virtio_pci_common.c
drivers/ata/pata_falcon.c
drivers/virtio/virtio_pci_modern.c
drivers/bluetooth/hci_nokia.c
drivers/ata/pata_efar.c
drivers/bluetooth/hci_h5.c
drivers/virtio/virtio_mmio.c
drivers/bluetooth/btbcm.c
drivers/ata/sata_sis.c
drivers/bluetooth/hci_ath.c
drivers/virtio/virtio_pci_legacy.c
drivers/ata/sata_gemini.c
drivers/bluetooth/btmrvl_main.c
drivers/virtio/virtio_input.c
drivers/bluetooth/hci_ag6xx.c
drivers/bluetooth/bpa10x.c
drivers/ata/pata_pdc2027x.c
drivers/virtio/virtio_ring.c
drivers/bluetooth/hci_mrvl.c
drivers/ata/ahci_ceva.c
drivers/virtio/virtio.c
drivers/ata/ahci_qoriq.c
drivers/bluetooth/btwilink.c
drivers/ata/pata_isapnp.c
drivers/bluetooth/hci_qca.c
drivers/ata/pata_sl82c105.c
drivers/bluetooth/btqcomsmd.c
drivers/bluetooth/hci_ll.c
drivers/ata/pata_optidma.c
drivers/ata/pata_macio.c
drivers/bluetooth/btrtl.c
drivers/ata/pata_oldpiix.c
drivers/bluetooth/hci_intel.c
drivers/ata/pata_pdc202xx_old.c
drivers/bluetooth/bfusb.c
drivers/bluetooth/hci_h4.c
drivers/bluetooth/hci_vhci.c
drivers/pinctrl/pinctrl-adi2-bf54x.c
drivers/pinctrl/pinctrl-palmas.c
drivers/pinctrl/core.c
drivers/pinctrl/pinctrl-adi2-bf60x.c
drivers/pinctrl/pinctrl-falcon.c
drivers/pinctrl/pinctrl-at91-pio4.c
drivers/pinctrl/pinmux.c
drivers/lightnvm/pblk-init.c
drivers/mtd/mtdpart.c
drivers/lightnvm/core.c
drivers/mtd/ftl.c
drivers/lightnvm/pblk-write.c
drivers/pinctrl/pinctrl-ingenic.c
drivers/lightnvm/pblk-read.c
drivers/pinctrl/pinctrl-digicolor.c
drivers/lightnvm/pblk-recovery.c
drivers/mtd/bcm63xxpart.c
drivers/pinctrl/pinctrl-st.c
drivers/mtd/mtdblock_ro.c
drivers/mtd/afs.c
drivers/lightnvm/pblk-core.c
drivers/pinctrl/pinctrl-tb10x.c
drivers/lightnvm/pblk-rl.c
drivers/pinctrl/pinctrl-rockchip.c
drivers/mtd/mtdconcat.c
drivers/lightnvm/pblk-rb.c
drivers/pinctrl/pinctrl-gemini.c
drivers/mtd/inftlcore.c
drivers/lightnvm/pblk-gc.c
drivers/pinctrl/pinctrl-tz1090.c
drivers/lightnvm/rrpc.c
drivers/mtd/ofpart.c
drivers/lightnvm/pblk-cache.c
drivers/lightnvm/pblk-map.c
drivers/mtd/nftlcore.c
drivers/mtd/redboot.c
drivers/mtd/mtdsuper.c
drivers/lightnvm/pblk-sysfs.c
drivers/mtd/cmdlinepart.c
drivers/pinctrl/pinctrl-at91.c
drivers/pinctrl/pinctrl-max77620.c
drivers/mtd/mtdcore.c
drivers/pinctrl/pinctrl-as3722.c
drivers/pinctrl/pinctrl-sx150x.c
drivers/mtd/sm_ftl.c
drivers/pinctrl/pinctrl-rk805.c
drivers/mtd/ar7part.c
drivers/mtd/nftlmount.c
drivers/mtd/mtdchar.c
drivers/pinctrl/pinctrl-pic32.c
drivers/pinctrl/devicetree.c
drivers/pinctrl/pinctrl-single.c
drivers/mtd/mtdoops.c
drivers/pinctrl/pinctrl-utils.c
drivers/hid/hid-wiimote-modules.c
drivers/mtd/mtdswap.c
drivers/hid/hid-picolcd_backlight.c
drivers/pinctrl/pinctrl-u300.c
drivers/hid/hid-cherry.c
drivers/mtd/rfd_ftl.c
drivers/hid/hid-gt683r.c
drivers/pinctrl/pinctrl-amd.c
drivers/mtd/mtdblock.c
drivers/hid/hid-lg.c
drivers/mtd/inftlmount.c
drivers/pinctrl/pinctrl-oxnas.c
drivers/mtd/mtd_blkdevs.c
drivers/pinctrl/pinctrl-coh901.c
drivers/hid/hid-sensor-hub.c
drivers/mtd/bcm47xxpart.c
drivers/hid/hid-betopff.c
drivers/pinctrl/pinconf.c
drivers/hid/hid-belkin.c
drivers/mtd/ssfdc.c
drivers/hid/hid-picolcd_fb.c
drivers/pinctrl/pinconf-generic.c
drivers/hid/hid-debug.c
drivers/hid/hid-asus.c
drivers/pinctrl/pinctrl-rza1.c
drivers/hid/hid-accutouch.c
drivers/hid/hid-kye.c
drivers/pinctrl/pinctrl-xway.c
drivers/hid/hid-hyperv.c
drivers/iio/industrialio-configfs.c
drivers/pinctrl/pinctrl-lpc18xx.c
drivers/hid/hid-chicony.c
drivers/pinctrl/pinctrl-zynq.c
drivers/hid/hid-corsair.c
drivers/pinctrl/pinctrl-da850-pupd.c
drivers/hid/hid-picolcd_lcd.c
drivers/pinctrl/pinctrl-adi2.c
drivers/hid/hid-tivo.c
drivers/hid/hid-saitek.c
drivers/hid/hid-icade.c
drivers/pinctrl/pinctrl-lantiq.c
drivers/pinctrl/pinctrl-artpec6.c
drivers/hid/hid-sensor-custom.c
drivers/hid/hid-twinhan.c
drivers/cpuidle/cpuidle-mvebu-v7.c
drivers/hid/hid-holtek-mouse.c
drivers/pinctrl/pinctrl-mcp23s08.c
drivers/cpuidle/poll_state.c
drivers/hid/hid-appleir.c
drivers/cpuidle/cpuidle-cps.c
drivers/hid/hid-primax.c
drivers/iio/industrialio-trigger.c
drivers/cpuidle/cpuidle-kirkwood.c
drivers/hid/hid-cypress.c
drivers/cpuidle/sysfs.c
drivers/hid/hid-udraw-ps3.c
drivers/pinctrl/pinctrl-tz1090-pdc.c
drivers/hid/hid-elecom.c
drivers/cpuidle/driver.c
drivers/pinctrl/pinctrl-pistachio.c
drivers/hid/hid-picolcd_leds.c
drivers/iio/industrialio-sw-trigger.c
drivers/hid/hid-cmedia.c
drivers/iio/inkern.c
drivers/hid/hid-wiimote-core.c
drivers/hid/hid-gyration.c
drivers/cpuidle/cpuidle-at91.c
drivers/hid/hid-input.c
drivers/hid/hid-waltop.c
drivers/cpuidle/cpuidle-exynos.c
drivers/cpuidle/cpuidle-arm.c
drivers/hid/hid-ite.c
drivers/iio/industrialio-core.c
drivers/cpuidle/cpuidle-powernv.c
drivers/hid/hid-samsung.c
drivers/iio/industrialio-sw-device.c
drivers/cpuidle/cpuidle-zynq.c
drivers/hid/hid-sjoy.c
drivers/cpuidle/cpuidle-calxeda.c
drivers/cpuidle/cpuidle.c
drivers/hid/wacom_wac.c
drivers/hid/hid-tmff.c
drivers/cpuidle/coupled.c
drivers/hid/hid-roccat-lua.c
drivers/iio/industrialio-triggered-event.c
drivers/hid/hid-roccat-isku.c
drivers/cpuidle/cpuidle-clps711x.c
drivers/cpuidle/governor.c
drivers/hid/hid-nti.c
drivers/cpuidle/cpuidle-pseries.c
drivers/iio/industrialio-event.c
drivers/hid/hid-cp2112.c
drivers/cpuidle/cpuidle-big_little.c
drivers/iio/industrialio-buffer.c
drivers/hid/hid-lg2ff.c
drivers/cpuidle/dt_idle_states.c
drivers/hid/hid-axff.c
drivers/cpuidle/cpuidle-ux500.c
drivers/hid/hid-multitouch.c
drivers/hid/hid-roccat-savu.c
drivers/hid/hid-lcpower.c
drivers/hid/wacom_sys.c
drivers/hid/hid-roccat-konepure.c
drivers/hid/hid-roccat-kone.c
drivers/hid/hid-wiimote-debug.c
drivers/md/dm-cache-background-tracker.c
drivers/hid/hid-magicmouse.c
drivers/md/dm-queue-length.c
drivers/vhost/net.c
drivers/hid/hid-apple.c
drivers/vhost/scsi.c
drivers/ssb/driver_gpio.c
drivers/md/dm-zero.c
drivers/ssb/driver_pcicore.c
drivers/hid/hid-ezkey.c
drivers/vhost/vsock.c
drivers/md/dm-raid1.c
drivers/ssb/sdio.c
drivers/hid/hid-roccat.c
drivers/md/raid0.c
drivers/ssb/sprom.c
drivers/hid/hid-aureal.c
drivers/ssb/driver_extif.c
drivers/hid/hid-roccat-common.c
drivers/vhost/test.c
drivers/md/dm-stripe.c
drivers/hid/hid-steelseries.c
drivers/ssb/driver_chipcommon.c
drivers/md/dm-zoned-target.c
drivers/hid/hid-rmi.c
drivers/vhost/vhost.c
drivers/md/dm-linear.c
drivers/hid/hid-emsff.c
drivers/vhost/vringh.c
drivers/ssb/pcihost_wrapper.c
drivers/md/dm-snap.c
drivers/hid/hid-topseed.c
drivers/ssb/bridge_pcmcia_80211.c
drivers/hid/hid-ortek.c
drivers/ssb/pcmcia.c
drivers/hid/hid-lgff.c
drivers/ssb/b43_pci_bridge.c
drivers/hid/hid-prodikeys.c
drivers/ssb/driver_gige.c
drivers/md/dm-snap-persistent.c
drivers/hid/hid-microsoft.c
drivers/md/dm-flakey.c
drivers/ssb/embedded.c
drivers/md/dm-log-userspace-transfer.c
drivers/hid/hid-roccat-arvo.c
drivers/ssb/driver_chipcommon_pmu.c
drivers/ssb/driver_mipscore.c
drivers/md/dm-ioctl.c
drivers/hid/hid-logitech-hidpp.c
drivers/hid/hid-elo.c
drivers/ssb/host_soc.c
drivers/hid/hid-zpff.c
drivers/md/md-multipath.c
drivers/ssb/scan.c
drivers/hid/hid-roccat-pyra.c
drivers/md/dm-bio-prison-v2.c
drivers/ssb/main.c
drivers/hid/hid-lg3ff.c
drivers/md/dm-uevent.c
drivers/ssb/driver_chipcommon_sflash.c
drivers/hid/hid-plantronics.c
drivers/hid/hidraw.c
drivers/ssb/pci.c
drivers/hid/hid-roccat-koneplus.c
drivers/hid/hid-ntrig.c
drivers/md/md.c
drivers/hid/hid-dr.c
drivers/md/raid1.c
drivers/hid/hid-retrode.c
drivers/hid/hid-gembird.c
drivers/md/dm-snap-transient.c
drivers/hid/hid-picolcd_debugfs.c
drivers/hid/hid-penmount.c
drivers/md/dm-integrity.c
drivers/hid/hid-xinmo.c
drivers/md/raid5-cache.c
drivers/md/dm-mpath.c
drivers/hid/hid-kensington.c
drivers/md/dm-kcopyd.c
drivers/hid/hid-lenovo.c
drivers/md/dm-zoned-reclaim.c
drivers/thunderbolt/property.c
drivers/md/dm-delay.c
drivers/hid/hid-holtekff.c
drivers/hid/hid-led.c
drivers/md/dm-thin.c
drivers/md/dm-sysfs.c
drivers/hid/hid-picolcd_cir.c
drivers/thunderbolt/eeprom.c
drivers/md/raid5-ppl.c
drivers/hid/hid-holtek-kbd.c
drivers/thunderbolt/cap.c
drivers/md/dm-log.c
drivers/hid/hid-petalynx.c
drivers/oprofile/oprofile_perf.c
drivers/md/dm-target.c
drivers/hid/hid-gaff.c
drivers/oprofile/event_buffer.c
drivers/md/dm-log-writes.c
drivers/hid/hid-sunplus.c
drivers/thunderbolt/switch.c
drivers/md/dm-exception-store.c
drivers/thunderbolt/tb.c
drivers/hid/hid-roccat-kovaplus.c
drivers/oprofile/buffer_sync.c
drivers/md/dm-region-hash.c
drivers/hid/hid-alps.c
drivers/oprofile/cpu_buffer.c
drivers/thunderbolt/path.c
drivers/hid/hid-generic.c
drivers/oprofile/oprofile_files.c
drivers/thunderbolt/nhi.c
drivers/thunderbolt/domain.c
drivers/md/dm-table.c
drivers/hid/hid-roccat-ryos.c
drivers/oprofile/oprofilefs.c
drivers/md/md-bitmap.c
drivers/hid/uhid.c
drivers/oprofile/oprofile_stats.c
drivers/thunderbolt/ctl.c
drivers/md/dm-service-time.c
drivers/hid/hid-zydacron.c
drivers/oprofile/timer_int.c
drivers/hid/hid-keytouch.c
drivers/thunderbolt/xdomain.c
drivers/md/md-faulty.c
drivers/hid/hid-picolcd_core.c
drivers/md/dm-rq.c
drivers/oprofile/nmi_timer_int.c
drivers/oprofile/oprof.c
drivers/md/md-linear.c
drivers/hid/hid-monterey.c
drivers/thunderbolt/dma_port.c
drivers/hid/hid-pl.c
drivers/thunderbolt/icm.c
drivers/md/dm-path-selector.c
drivers/hid/hid-gfrm.c
drivers/md/dm-cache-policy-smq.c
drivers/hid/hid-core.c
drivers/md/dm-round-robin.c
drivers/hid/hid-lg4ff.c
drivers/md/md-cluster.c
drivers/thunderbolt/tunnel_pci.c
drivers/hid/hid-mf.c
drivers/hid/hid-sony.c
drivers/hid/hid-a4tech.c
drivers/hid/hid-uclogic.c
drivers/dma-buf/dma-buf.c
drivers/md/dm-stats.c
drivers/hid/hid-speedlink.c
drivers/dma-buf/sw_sync.c
drivers/md/dm-crypt.c
drivers/hid/hid-logitech-dj.c
drivers/md/dm-cache-policy.c
drivers/dma-buf/seqno-fence.c
drivers/md/dm-builtin.c
drivers/dma-buf/reservation.c
drivers/md/dm-switch.c
drivers/dma-buf/dma-fence-array.c
drivers/md/dm-cache-target.c
drivers/md/dm-zoned-metadata.c
drivers/dma-buf/sync_debug.c
drivers/md/dm-verity-target.c
drivers/dma-buf/dma-fence.c
drivers/md/dm-log-userspace-base.c
drivers/android/binder_alloc.c
drivers/dma-buf/sync_file.c
drivers/md/dm-io.c
drivers/md/dm-era-target.c
drivers/android/binder_alloc_selftest.c
drivers/md/dm-bio-prison-v1.c
drivers/android/binder.c
drivers/md/raid1-10.c
drivers/md/dm-raid.c
drivers/md/dm-cache-metadata.c
drivers/md/dm.c
drivers/md/raid5.c
drivers/md/raid10.c
drivers/md/dm-verity-fec.c
drivers/md/dm-thin-metadata.c
drivers/regulator/mc13783-regulator.c
drivers/md/dm-bufio.c
drivers/regulator/hi6421v530-regulator.c
drivers/regulator/qcom_spmi-regulator.c
drivers/regulator/max8952.c
drivers/regulator/as3711-regulator.c
drivers/cpufreq/tegra124-cpufreq.c
drivers/regulator/wm831x-dcdc.c
drivers/regulator/fixed.c
drivers/regulator/da9211-regulator.c
drivers/cpufreq/freq_table.c
drivers/regulator/da903x.c
drivers/regulator/stw481x-vmmc.c
drivers/cpufreq/cpufreq-dt.c
drivers/regulator/twl6030-regulator.c
drivers/cpufreq/pmac32-cpufreq.c
drivers/regulator/lp3971.c
drivers/cpufreq/cris-artpec3-cpufreq.c
drivers/regulator/mt6323-regulator.c
drivers/regulator/lp873x-regulator.c
drivers/cpufreq/spear-cpufreq.c
drivers/regulator/ab8500.c
drivers/cpufreq/cpufreq-dt-platdev.c
drivers/cpufreq/tegra20-cpufreq.c
drivers/regulator/max8973-regulator.c
drivers/cpufreq/s3c64xx-cpufreq.c
drivers/regulator/lp872x.c
drivers/cpufreq/s3c2412-cpufreq.c
drivers/regulator/pfuze100-regulator.c
drivers/cpufreq/ti-cpufreq.c
drivers/cpufreq/e_powersaver.c
drivers/regulator/helpers.c
drivers/regulator/rn5t618-regulator.c
drivers/regulator/core.c
drivers/cpufreq/sti-cpufreq.c
drivers/cpufreq/imx6q-cpufreq.c
drivers/regulator/da9210-regulator.c
drivers/cpufreq/sparc-us2e-cpufreq.c
drivers/regulator/tps80031-regulator.c
drivers/cpufreq/speedstep-centrino.c
drivers/cpufreq/s5pv210-cpufreq.c
drivers/regulator/tps65132-regulator.c
drivers/cpufreq/amd_freq_sensitivity.c
drivers/regulator/gpio-regulator.c
drivers/regulator/tps65218-regulator.c
drivers/cpufreq/elanfreq.c
drivers/regulator/tps6586x-regulator.c
drivers/parisc/ccio-rm-dma.c
drivers/regulator/wm8350-regulator.c
drivers/cpufreq/powernv-cpufreq.c
drivers/parisc/lasi.c
drivers/regulator/lp8755.c
drivers/cpufreq/tango-cpufreq.c
drivers/regulator/tps65086-regulator.c
drivers/cpufreq/sh-cpufreq.c
drivers/parisc/wax.c
drivers/regulator/tps65910-regulator.c
drivers/cpufreq/s3c2440-cpufreq.c
drivers/parisc/eisa.c
drivers/regulator/wm831x-ldo.c
drivers/cpufreq/speedstep-lib.c
drivers/parisc/hppb.c
drivers/regulator/twl-regulator.c
drivers/parisc/superio.c
drivers/regulator/of_regulator.c
drivers/cpufreq/cpufreq_ondemand.c
drivers/regulator/tps65090-regulator.c
drivers/parisc/power.c
drivers/regulator/lp87565-regulator.c
drivers/cpufreq/cpufreq_performance.c
drivers/regulator/pbias-regulator.c
drivers/cpufreq/loongson2_cpufreq.c
drivers/regulator/max8998.c
drivers/parisc/eisa_eeprom.c
drivers/cpufreq/cpufreq-nforce2.c
drivers/regulator/max77686-regulator.c
drivers/parisc/sba_iommu.c
drivers/cpufreq/cris-etraxfs-cpufreq.c
drivers/cpufreq/maple-cpufreq.c
drivers/regulator/88pm8607.c
drivers/parisc/dino.c
drivers/cpufreq/pcc-cpufreq.c
drivers/parisc/led.c
drivers/ide/tx4939ide.c
drivers/cpufreq/intel_pstate.c
drivers/regulator/mt6380-regulator.c
drivers/parisc/ccio-dma.c
drivers/cpufreq/cpufreq_stats.c
drivers/ide/ide-gd.c
drivers/regulator/pcap-regulator.c
drivers/parisc/lba_pci.c
drivers/cpufreq/davinci-cpufreq.c
drivers/ide/ide-atapi.c
drivers/ide/ide-eh.c
drivers/regulator/pcf50633-regulator.c
drivers/cpufreq/exynos5440-cpufreq.c
drivers/parisc/pdc_stable.c
drivers/regulator/lp8788-ldo.c
drivers/parisc/iosapic.c
drivers/regulator/pv88080-regulator.c
drivers/ide/aec62xx.c
drivers/cpufreq/s3c2416-cpufreq.c
drivers/regulator/max8660.c
drivers/parisc/eisa_enumerator.c
drivers/ide/jmicron.c
drivers/cpufreq/cpufreq_powersave.c
drivers/regulator/max8907-regulator.c
drivers/ide/opti621.c
drivers/parisc/asp.c
drivers/cpufreq/cpufreq_governor_attr_set.c
drivers/regulator/max8925-regulator.c
drivers/parisc/gsc.c
drivers/ide/pdc202xx_new.c
drivers/cpufreq/speedstep-ich.c
drivers/regulator/s2mpa01.c
drivers/ide/ide-legacy.c
drivers/cpufreq/blackfin-cpufreq.c
drivers/regulator/max14577-regulator.c
drivers/ide/delkin_cb.c
drivers/cpufreq/bmips-cpufreq.c
drivers/regulator/tps6105x-regulator.c
drivers/ide/ide.c
drivers/cpufreq/cpufreq_userspace.c
drivers/regulator/ad5398.c
drivers/ide/cmd640.c
drivers/cpufreq/at32ap-cpufreq.c
drivers/regulator/axp20x-regulator.c
drivers/ide/ide-park.c
drivers/cpufreq/powernow-k7.c
drivers/regulator/lm363x-regulator.c
drivers/ide/cs5536.c
drivers/cpufreq/sa1100-cpufreq.c
drivers/ide/ide-probe.c
drivers/cpufreq/ppc_cbe_cpufreq.c
drivers/ide/ide-timings.c
drivers/cpufreq/ppc_cbe_cpufreq_pmi.c
drivers/regulator/vctrl-regulator.c
drivers/ide/ide-floppy.c
drivers/cpufreq/p4-clockmod.c
drivers/regulator/mt6311-regulator.c
drivers/ide/ide-generic.c
drivers/regulator/tps65217-regulator.c
drivers/cpufreq/s3c24xx-cpufreq-debugfs.c
drivers/ide/ali14xx.c
drivers/regulator/ab8500-ext.c
drivers/ide/serverworks.c
drivers/regulator/da9052-regulator.c
drivers/ide/palm_bk3710.c
drivers/regulator/tps62360-regulator.c
drivers/ide/cmd64x.c
drivers/cpufreq/cpufreq_conservative.c
drivers/regulator/as3722-regulator.c
drivers/ide/au1xxx-ide.c
drivers/cpufreq/mvebu-cpufreq.c
drivers/regulator/hi6421-regulator.c
drivers/ide/ide-cd_ioctl.c
drivers/cpufreq/qoriq-cpufreq.c
drivers/regulator/qcom_smd-regulator.c
drivers/ide/it8213.c
drivers/cpufreq/arm_big_little.c
drivers/regulator/stm32-vrefbuf.c
drivers/ide/setup-pci.c
drivers/regulator/userspace-consumer.c
drivers/ide/umc8672.c
drivers/cpufreq/unicore2-cpufreq.c
drivers/regulator/88pm800.c
drivers/ide/ns87415.c
drivers/cpufreq/sc520_freq.c
drivers/regulator/pv88090-regulator.c
drivers/firewire/net.c
drivers/regulator/sky81452-regulator.c
drivers/cpufreq/loongson1-cpufreq.c
drivers/ide/sl82c105.c
drivers/firewire/init_ohci1394_dma.c
drivers/cpufreq/vexpress-spc-cpufreq.c
drivers/regulator/da9062-regulator.c
drivers/firewire/core-cdev.c
drivers/cpufreq/pxa2xx-cpufreq.c
drivers/regulator/max8649.c
drivers/firewire/core-iso.c
drivers/ide/ide-disk_ioctl.c
drivers/regulator/dummy.c
drivers/cpufreq/kirkwood-cpufreq.c
drivers/ide/rz1000.c
drivers/firewire/core-transaction.c
drivers/cpufreq/sparc-us3-cpufreq.c
drivers/ide/alim15x3.c
drivers/regulator/arizona-micsupp.c
drivers/ide/ide-ioctls.c
drivers/regulator/mt6397-regulator.c
drivers/cpufreq/mediatek-cpufreq.c
drivers/firewire/nosy.c
drivers/ide/pdc202xx_old.c
drivers/cpufreq/gx-suspmod.c
drivers/regulator/palmas-regulator.c
drivers/firewire/core-topology.c
drivers/ide/ide-disk.c
drivers/cpufreq/s3c2410-cpufreq.c
drivers/regulator/tps65912-regulator.c
drivers/firewire/ohci.c
drivers/ide/ide-sysfs.c
drivers/cpufreq/sa1110-cpufreq.c
drivers/regulator/lp3972.c
drivers/ide/ide-acpi.c
drivers/regulator/ab3100.c
drivers/firewire/core-card.c
drivers/ide/tx4938ide.c
drivers/cpufreq/scpi-cpufreq.c
drivers/regulator/max8997-regulator.c
drivers/ide/ide_platform.c
drivers/cpufreq/longrun.c
drivers/firewire/sbp2.c
drivers/cpufreq/pxa3xx-cpufreq.c
drivers/ide/macide.c
drivers/firewire/core-device.c
drivers/regulator/wm8994-regulator.c
drivers/ide/ht6560b.c
drivers/cpufreq/pasemi-cpufreq.c
drivers/regulator/isl6271a-regulator.c
drivers/ide/ide-cs.c
drivers/cpufreq/cpufreq.c
drivers/regulator/tps65023-regulator.c
drivers/ide/ide-4drives.c
drivers/cpufreq/omap-cpufreq.c
drivers/regulator/s2mps11.c
drivers/ide/ide-cd.c
drivers/regulator/tps6507x-regulator.c
drivers/cpufreq/tegra186-cpufreq.c
drivers/ide/gayle.c
drivers/regulator/isl9305.c
drivers/cpufreq/s3c24xx-cpufreq.c
drivers/ide/ide-disk_proc.c
drivers/regulator/dbx500-prcmu.c
drivers/cpufreq/speedstep-smi.c
drivers/ide/ide-tape.c
drivers/regulator/act8865-regulator.c
drivers/cpufreq/acpi-cpufreq.c
drivers/ide/ide-lib.c
drivers/regulator/bcm590xx-regulator.c
drivers/cpufreq/ppc_cbe_cpufreq_pervasive.c
drivers/ide/via82cxxx.c
drivers/regulator/max77693-regulator.c
drivers/vfio/vfio.c
drivers/regulator/tps51632-regulator.c
drivers/ide/ide-dma-sff.c
drivers/cpufreq/longhaul.c
drivers/ide/ide-io.c
drivers/regulator/wm831x-isink.c
drivers/cpufreq/cppc_cpufreq.c
drivers/ide/rapide.c
drivers/cpufreq/powernow-k8.c
drivers/regulator/max1586.c
drivers/vfio/vfio_spapr_eeh.c
drivers/ide/ide-io-std.c
drivers/regulator/da9063-regulator.c
drivers/vfio/vfio_iommu_spapr_tce.c
drivers/ide/ide-devsets.c
drivers/cpufreq/pmac64-cpufreq.c
drivers/regulator/aat2870-regulator.c
drivers/ide/q40ide.c
drivers/regulator/rk808-regulator.c
drivers/ide/hpt366.c
drivers/cpufreq/arm_big_little_dt.c
drivers/ide/sis5513.c
drivers/vfio/vfio_iommu_type1.c
drivers/cpufreq/ia64-acpi-cpufreq.c
drivers/regulator/rc5t583-regulator.c
drivers/ide/tc86c001.c
drivers/vfio/virqfd.c
drivers/cpufreq/highbank-cpufreq.c
drivers/regulator/cpcap-regulator.c
drivers/cpufreq/sfi-cpufreq.c
drivers/ide/ide-pci-generic.c
drivers/regulator/ltc3589.c
drivers/cpufreq/powernow-k6.c
drivers/ide/it8172.c
drivers/regulator/max77620-regulator.c
drivers/cpufreq/brcmstb-avs-cpufreq.c
drivers/ide/icside.c
drivers/regulator/qcom_rpm-regulator.c
drivers/cpufreq/cpufreq_governor.c
drivers/ide/siimage.c
drivers/regulator/tps6524x-regulator.c
drivers/ide/cy82c693.c
drivers/regulator/fan53555.c
drivers/ide/ide-pio-blacklist.c
drivers/regulator/wm8400-regulator.c
drivers/regulator/lp8788-buck.c
drivers/ide/ide-xfer-mode.c
drivers/regulator/ltc3676.c
drivers/regulator/bd9571mwv-regulator.c
drivers/ide/ide-floppy_ioctl.c
drivers/regulator/anatop-regulator.c
drivers/regulator/max77802-regulator.c
drivers/ide/ide-dma.c
drivers/ide/trm290.c
drivers/regulator/vexpress-regulator.c
drivers/ide/dtc2278.c
drivers/regulator/ti-abb-regulator.c
drivers/ide/sgiioc4.c
drivers/regulator/da9055-regulator.c
drivers/ide/falconide.c
drivers/ide/ide-taskfile.c
drivers/regulator/rt5033-regulator.c
drivers/ide/ide-pnp.c
drivers/ide/it821x.c
drivers/ide/sc1200.c
drivers/regulator/virtual.c
drivers/bus/tegra-aconnect.c
drivers/ide/pmac.c
drivers/bus/mips_cdmm.c
drivers/ide/slc90e66.c
drivers/bus/arm-ccn.c
drivers/regulator/hi655x-regulator.c
drivers/ide/cs5530.c
drivers/bus/uniphier-system-bus.c
drivers/ide/buddha.c
drivers/bus/omap_l3_smx.c
drivers/ide/ide-scan-pci.c
drivers/regulator/s5m8767.c
drivers/bus/mvebu-mbus.c
drivers/ide/ide-proc.c
drivers/bus/ti-sysc.c
drivers/regulator/mc13892-regulator.c
drivers/ide/cs5520.c
drivers/ide/piix.c
drivers/regulator/db8500-prcmu.c
drivers/bus/omap-ocp2scp.c
drivers/ide/atiixp.c
drivers/regulator/act8945a-regulator.c
drivers/bus/sunxi-rsb.c
drivers/ide/ide-iops.c
drivers/regulator/devres.c
drivers/bus/vexpress-config.c
drivers/ide/amd74xx.c
drivers/regulator/pwm-regulator.c
drivers/bus/tegra-gmi.c
drivers/ide/qd65xx.c
drivers/regulator/fixed-helper.c
drivers/bus/arm-cci.c
drivers/ide/ide-pm.c
drivers/regulator/pv88060-regulator.c
drivers/regulator/mc13xxx-regulator-core.c
drivers/bus/ts-nbus.c
drivers/regulator/arizona-ldo1.c
drivers/bus/da8xx-mstpri.c
drivers/ide/ide-cd_verbose.c
drivers/bus/omap_l3_noc.c
drivers/ide/triflex.c
drivers/bus/qcom-ebi2.c
drivers/ide/cs5535.c
drivers/bus/simple-pm-bus.c
drivers/ide/ide-floppy_proc.c
drivers/bus/brcmstb_gisb.c
drivers/bus/imx-weim.c
drivers/zorro/proc.c
drivers/zorro/zorro-driver.c
drivers/zorro/names.c
drivers/zorro/zorro.c
drivers/zorro/gen-devlist.c
drivers/zorro/zorro-sysfs.c
drivers/tee/tee_shm_pool.c
drivers/tee/tee_shm.c
drivers/tee/tee_core.c
drivers/gpio/gpio-pcf857x.c
drivers/gpio/gpio-bcm-kona.c
drivers/gpio/gpio-ingenic.c
drivers/gpio/gpio-tps65910.c
drivers/gpio/gpio-max77620.c
drivers/gpio/gpio-rcar.c
drivers/gpio/gpio-rc5t583.c
drivers/gpio/gpio-max732x.c
drivers/gpio/gpio-wcove.c
drivers/gpio/gpio-axp209.c
drivers/gpio/gpio-adnp.c
drivers/gpio/gpiolib-devprop.c
drivers/gpio/gpio-xgene.c
drivers/clk/clk-axm5516.c
drivers/gpio/gpio-pci-idio-16.c
drivers/clk/clk.c
drivers/gpio/gpio-tz1090-pdc.c
drivers/clk/clk-u300.c
drivers/gpio/gpio-amd8111.c
drivers/gpio/gpio-syscon.c
drivers/clk/clk-pwm.c
drivers/clk/clk-twl6040.c
drivers/gpio/gpio-max7301.c
drivers/clk/clk-efm32gg.c
drivers/gpio/gpio-clps711x.c
drivers/gpio/gpio-mm-lantiq.c
drivers/gpio/gpio-mc9s08dz60.c
drivers/gpio/gpio-menz127.c
drivers/clk/clk-moxart.c
drivers/gpio/gpio-msic.c
drivers/clk/clk-clps711x.c
drivers/gpio/gpio-omap.c
drivers/clk/clk-gpio.c
drivers/gpio/gpio-lp873x.c
drivers/gpio/gpio-ucb1400.c
drivers/gpio/gpio-lp87565.c
drivers/clk/clk-nspire.c
drivers/gpio/gpio-grgpio.c
drivers/mcb/mcb-pci.c
drivers/clk/clk-versaclock5.c
drivers/gpio/gpio-tegra186.c
drivers/clk/clk-s2mps11.c
drivers/gpio/gpio-pisosr.c
drivers/mcb/mcb-parse.c
drivers/clk/clk-highbank.c
drivers/mcb/mcb-lpc.c
drivers/gpio/gpio-mockup.c
drivers/gpio/gpio-tb10x.c
drivers/clk/clk-nomadik.c
drivers/gpio/gpio-74xx-mmio.c
drivers/clk/clk-devres.c
drivers/gpio/gpio-merrifield.c
drivers/clk/clk-fixed-rate.c
drivers/mcb/mcb-core.c
drivers/gpio/gpio-octeon.c
drivers/gpio/gpio-xlp.c
drivers/clk/clk-axi-clkgen.c
drivers/gpio/gpiolib.c
drivers/gpio/gpio-xilinx.c
drivers/clk/clk-rk808.c
drivers/gpio/gpio-sa1100.c
drivers/clk/clk-composite.c
drivers/gpio/gpio-zx.c
drivers/clk/clk-vt8500.c
drivers/gpio/gpio-tps65218.c
drivers/gpio/gpio-mb86s7x.c
drivers/gpio/gpio-104-dio-48e.c
lib/842/842_decompress.c
drivers/gpio/gpio-74x164.c
lib/842/842_compress.c
drivers/clk/clk-conf.c
drivers/gpio/gpio-sch311x.c
drivers/clk/clk-fixed-factor.c
drivers/gpio/gpio-tegra.c
drivers/clk/clk-wm831x.c
drivers/net/netconsole.c
drivers/gpio/gpio-xtensa.c
drivers/gpio/gpio-dln2.c
drivers/gpio/gpio-ws16c48.c
drivers/net/vrf.c
drivers/gpio/gpio-vx855.c
drivers/net/macsec.c
drivers/gpio/gpio-ath79.c
drivers/clk/clkdev.c
drivers/net/macvlan.c
drivers/gpio/gpio-palmas.c
drivers/clk/clk-gate.c
drivers/clk/clk-gemini.c
drivers/gpio/gpio-wm8994.c
drivers/clk/clk-palmas.c
drivers/gpio/gpiolib-legacy.c
drivers/clk/clk-oxnas.c
drivers/gpio/gpio-stmpe.c
drivers/net/thunderbolt.c
drivers/gpio/gpio-mc33880.c
drivers/net/gtp.c
drivers/of/property.c
drivers/clk/clk-si514.c
drivers/gpio/gpio-mpc5200.c
drivers/net/vsockmon.c
drivers/of/of_numa.c
drivers/gpio/gpio-loongson.c
drivers/of/kobj.c
drivers/gpio/gpio-mpc8xxx.c
drivers/of/dynamic.c
drivers/clk/clk-stm32h7.c
drivers/gpio/gpio-104-idio-16.c
drivers/of/of_reserved_mem.c
drivers/clk/clk-multiplier.c
drivers/net/ntb_netdev.c
drivers/gpio/gpio-iop.c
drivers/of/address.c
drivers/clk/clk-divider.c
drivers/gpio/gpio-sta2x11.c
drivers/of/irq.c
drivers/gpio/gpio-mvebu.c
drivers/of/of_mdio.c
drivers/net/vxlan.c
drivers/of/of_net.c
drivers/clk/clk-scpi.c
drivers/gpio/gpio-timberdale.c
drivers/clk/clk-cdce706.c
drivers/gpio/gpio-thunderx.c
drivers/net/sungem_phy.c
drivers/of/of_pci.c
drivers/gpio/gpio-ge.c
drivers/of/resolver.c
drivers/gpio/gpio-it87.c
drivers/clk/clk-hsdk-pll.c
drivers/net/sb1000.c
drivers/gpio/gpio-mxs.c
drivers/of/of_pci_irq.c
drivers/gpio/gpio-mmio.c
drivers/of/overlay.c
drivers/of/fdt.c
drivers/gpio/gpio-f7188x.c
drivers/clk/clk-max77686.c
drivers/of/unittest.c
drivers/gpio/gpio-rdc321x.c
drivers/net/eql.c
drivers/gpio/gpio-max730x.c
drivers/of/pdt.c
drivers/gpio/gpio-ts5500.c
drivers/clk/clk-asm9260.c
drivers/net/tun.c
drivers/of/device.c
drivers/gpio/gpio-lpc18xx.c
drivers/net/dummy.c
drivers/gpio/gpio-dwapb.c
drivers/of/fdt_address.c
drivers/clk/clk-fractional-divider.c
drivers/gpio/gpio-ts4800.c
drivers/net/macvtap.c
drivers/of/platform.c
drivers/gpio/gpio-intel-mid.c
drivers/clk/clk-si5351.c
drivers/of/base.c
drivers/gpio/gpio-lp3943.c
drivers/gpio/gpio-zynq.c
drivers/net/mii.c
drivers/clk/clk-mux.c
drivers/gpio/gpiolib-of.c
drivers/net/tap.c
drivers/clk/clk-bulk.c
drivers/gpio/gpio-etraxfs.c
drivers/net/mdio.c
drivers/gpio/gpio-104-idi-48.c
drivers/clk/clk-tango4.c
drivers/gpio/gpio-loongson1.c
drivers/clk/clk-xgene.c
drivers/gpio/gpio-ts4900.c
drivers/net/rionet.c
drivers/gpio/gpio-tps6586x.c
drivers/net/nlmon.c
drivers/clk/clk-cdce925.c
drivers/gpio/gpio-crystalcove.c
drivers/gpio/gpio-cs5535.c
drivers/net/loopback.c
drivers/gpio/gpio-da9052.c
drivers/gpio/gpio-bt8xx.c
drivers/clk/clk-si570.c
drivers/gpio/gpio-twl4030.c
drivers/net/xen-netfront.c
drivers/clk/clk-hi655x.c
drivers/gpio/gpio-stp-xway.c
drivers/gpio/gpio-reg.c
drivers/net/Space.c
drivers/gpio/gpio-vf610.c
drivers/gpio/gpio-pca953x.c
drivers/net/veth.c
drivers/gpio/gpio-altera-a10sr.c
drivers/net/ifb.c
drivers/gpio/gpio-arizona.c
drivers/net/geneve.c
drivers/gpio/gpio-xra1403.c
drivers/gpio/gpio-zevio.c
drivers/net/virtio_net.c
drivers/gpio/gpio-max7300.c
drivers/clk/clk-cs2000-cp.c
drivers/gpio/gpio-brcmstb.c
drivers/gpio/gpio-lpc32xx.c
drivers/clk/clk-stm32f4.c
drivers/gpio/gpio-exar.c
drivers/clk/clk-qoriq.c
drivers/gpio/gpio-pxa.c
drivers/gpio/gpio-tps65086.c
drivers/gpio/gpio-htc-egpio.c
drivers/gpio/gpio-sch.c
drivers/gpio/gpio-tps68470.c
drivers/gpio/gpio-max3191x.c
drivers/gpio/gpio-tps65912.c
drivers/gpio/gpio-mxc.c
drivers/media/media-devnode.c
drivers/gpio/gpio-janz-ttl.c
drivers/gpio/gpio-em.c
drivers/gpio/gpio-vr41xx.c
drivers/gpio/gpio-ep93xx.c
drivers/gpio/gpio-amdpt.c
drivers/gpio/gpio-adp5520.c
drivers/target/target_core_spc.c
drivers/gpio/gpio-tz1090.c
drivers/media/media-device.c
drivers/gpio/gpiolib-sysfs.c
lib/lzo/lzo1x_decompress_safe.c
drivers/gpio/gpio-pch.c
lib/lzo/lzo1x_compress.c
drivers/target/target_core_ua.c
drivers/gpio/gpio-wm8350.c
drivers/target/target_core_file.c
drivers/gpio/gpio-davinci.c
drivers/gpio/gpio-pl061.c
drivers/target/target_core_hba.c
drivers/gpio/gpio-altera.c
drivers/target/target_core_tpg.c
drivers/gpio/gpio-tpic2810.c
drivers/gpio/gpio-viperboard.c
drivers/target/target_core_pr.c
drivers/gpio/gpio-ml-ioh.c
drivers/target/target_core_user.c
drivers/media/media-entity.c
drivers/gpio/gpio-ks8695.c
drivers/gpio/gpio-ftgpio010.c
drivers/gpio/gpio-da9055.c
drivers/gpio/gpio-uniphier.c
drivers/target/target_core_transport.c
drivers/gpio/gpiolib-acpi.c
drivers/gpio/gpio-kempld.c
drivers/target/target_core_tmr.c
drivers/gpio/gpio-bd9571mwv.c
drivers/gpio/gpio-sodaville.c
drivers/target/target_core_rd.c
drivers/gpio/gpio-twl6040.c
drivers/target/target_core_sbc.c
drivers/gpio/devres.c
drivers/target/target_core_device.c
drivers/gpio/gpio-lynxpoint.c
drivers/gpio/gpio-wm831x.c
drivers/bcma/driver_gmac_cmn.c
drivers/target/target_core_pscsi.c
drivers/gpio/gpio-adp5588.c
drivers/gpio/gpio-aspeed.c
drivers/target/target_core_fabric_lib.c
drivers/bcma/driver_pci.c
drivers/gpio/gpio-gpio-mm.c
drivers/target/target_core_alua.c
drivers/bcma/driver_gpio.c
drivers/gpio/gpio-ich.c
drivers/bcma/core.c
drivers/gpio/gpio-tc3589x.c
drivers/target/target_core_xcopy.c
drivers/gpio/gpio-xgene-sb.c
drivers/target/target_core_iblock.c
drivers/bcma/sprom.c
drivers/target/target_core_configfs.c
drivers/gpio/gpio-spear-spics.c
drivers/bcma/driver_chipcommon.c
drivers/target/target_core_fabric_configfs.c
drivers/target/target_core_stat.c
drivers/bcma/host_pci.c
drivers/bcma/driver_mips.c
drivers/bcma/driver_pcie2.c
drivers/bcma/driver_chipcommon_pmu.c
drivers/bcma/driver_pci_host.c
drivers/bcma/host_soc.c
drivers/bcma/driver_chipcommon_b.c
drivers/fpga/altera-ps-spi.c
drivers/devfreq/rk3399_dmc.c
drivers/bcma/scan.c
drivers/fpga/altera-cvp.c
drivers/devfreq/governor_userspace.c
drivers/bcma/driver_chipcommon_pflash.c
drivers/fpga/zynq-fpga.c
drivers/devfreq/governor_simpleondemand.c
drivers/bcma/main.c
drivers/fpga/altera-pr-ip-core-plat.c
drivers/devfreq/tegra-devfreq.c
drivers/bcma/driver_chipcommon_sflash.c
drivers/fpga/altera-fpga2sdram.c
drivers/devfreq/exynos-bus.c
drivers/fpga/altera-pr-ip-core.c
drivers/bcma/driver_chipcommon_nflash.c
drivers/devfreq/governor_performance.c
drivers/fpga/xilinx-spi.c
drivers/devfreq/governor_passive.c
drivers/fpga/socfpga.c
drivers/devfreq/governor_powersave.c
drivers/fpga/socfpga-a10.c
drivers/devfreq/devfreq-event.c
drivers/fpga/fpga-region.c
drivers/fpga/xilinx-pr-decoupler.c
drivers/devfreq/devfreq.c
drivers/fpga/altera-freeze-bridge.c
drivers/fpga/ice40-spi.c
drivers/fpga/fpga-bridge.c
drivers/fpga/altera-hps2fpga.c
drivers/fpga/ts73xx-fpga.c
drivers/fpga/fpga-mgr.c
drivers/nvmem/meson-efuse.c
drivers/nvmem/mtk-efuse.c
drivers/nvmem/core.c
drivers/nvmem/snvs_lpgpr.c
drivers/nvmem/lpc18xx_otp.c
drivers/spi/spidev.c
drivers/nvmem/qfprom.c
drivers/spi/spi-xlp.c
drivers/dio/dio.c
drivers/nvmem/uniphier-efuse.c
drivers/spi/spi-mpc52xx.c
drivers/dio/dio-driver.c
drivers/nvmem/mxs-ocotp.c
drivers/nvmem/lpc18xx_eeprom.c
drivers/spi/spi-tle62x0.c
drivers/dio/dio-sysfs.c
drivers/nvmem/meson-mx-efuse.c
drivers/spi/spi-xilinx.c
drivers/nvmem/rockchip-efuse.c
drivers/spi/spi-bfin5xx.c
drivers/nvmem/vf610-ocotp.c
drivers/spi/spi-ti-qspi.c
drivers/nvmem/bcm-ocotp.c
drivers/spi/spi-cavium-thunderx.c
drivers/nvmem/sunxi_sid.c
drivers/spi/spi-mpc52xx-psc.c
drivers/nvmem/imx-ocotp.c
drivers/spi/spi-rockchip.c
drivers/nvmem/imx-iim.c
drivers/spi/spi-pic32.c
drivers/spi/spi-mt65xx.c
drivers/spi/spi-rb4xx.c
drivers/spi/spi-slave-system-control.c
drivers/spi/spi-bcm-qspi.c
drivers/spi/spi-zynqmp-gqspi.c
drivers/spi/spi-dw-mid.c
drivers/spi/spi-xcomm.c
drivers/hwspinlock/u8500_hsem.c
drivers/spi/spi-qup.c
drivers/hwspinlock/sirf_hwspinlock.c
drivers/spi/spi-pic32-sqi.c
drivers/spi/spi-cadence.c
drivers/hwspinlock/omap_hwspinlock.c
drivers/spi/spi-stm32.c
drivers/hwspinlock/qcom_hwspinlock.c
drivers/spi/spi-sun6i.c
drivers/hwspinlock/sprd_hwspinlock.c
drivers/spi/spi-mxs.c
drivers/hwspinlock/hwspinlock_core.c
drivers/spi/spi-oc-tiny.c
drivers/spi/spi-tegra20-slink.c
drivers/spi/spi-slave-time.c
drivers/spi/spi-tegra20-sflash.c
drivers/spi/spi-jcore.c
drivers/spi/spi-fsl-lib.c
drivers/spi/spi-omap-uwire.c
drivers/spi/spi-fsl-espi.c
drivers/spi/spi-lantiq-ssc.c
drivers/acpi/resource.c
drivers/spi/spi-sh-hspi.c
drivers/acpi/debugfs.c
drivers/spi/spi-atmel.c
drivers/acpi/property.c
drivers/acpi/device_sysfs.c
drivers/spi/spi-dw-mmio.c
drivers/acpi/acpi_memhotplug.c
drivers/spi/spi-bcm53xx.c
drivers/acpi/acpi_apd.c
drivers/spi/spi-fsl-lpspi.c
drivers/acpi/acpi_processor.c
drivers/spi/spi-st-ssc4.c
drivers/acpi/irq.c
drivers/spi/spi-sprd-adi.c
drivers/acpi/fan.c
drivers/spi/spi-bfin-sport.c
drivers/acpi/ec.c
drivers/spi/spi-ppc4xx.c
drivers/remoteproc/qcom_q6v5_pil.c
drivers/acpi/sysfs.c
drivers/spi/spi-pl022.c
drivers/remoteproc/remoteproc_core.c
drivers/acpi/proc.c
drivers/spi/spi-bcm2835aux.c
drivers/spi/spi-pxa2xx-pci.c
drivers/remoteproc/qcom_adsp_pil.c
drivers/acpi/battery.c
drivers/spi/spi-altera.c
drivers/remoteproc/omap_remoteproc.c
drivers/spi/spi-pxa2xx.c
drivers/remoteproc/qcom_wcnss_iris.c
drivers/acpi/acpi_ipmi.c
drivers/spi/spi-bcm63xx-hsspi.c
drivers/remoteproc/remoteproc_sysfs.c
drivers/spi/spi-lp8841-rtc.c
drivers/acpi/reboot.c
drivers/acpi/event.c
drivers/remoteproc/qcom_wcnss.c
drivers/spi/spi-meson-spifc.c
drivers/acpi/power.c
drivers/remoteproc/qcom_common.c
drivers/spi/spi-sun4i.c
drivers/clocksource/sh_cmt.c
drivers/spi/spi-s3c24xx.c
drivers/acpi/ioapic.c
drivers/clocksource/time-efm32.c
drivers/spi/spi-dln2.c
drivers/acpi/acpi_dbg.c
drivers/remoteproc/wkup_m3_rproc.c
drivers/acpi/osl.c
drivers/spi/spi-iproc-qspi.c
drivers/clocksource/vf_pit_timer.c
drivers/remoteproc/remoteproc_debugfs.c
drivers/spi/spi-butterfly.c
drivers/clocksource/samsung_pwm_timer.c
drivers/acpi/pci_link.c
drivers/remoteproc/imx_rproc.c
drivers/spi/spi-dw.c
drivers/clocksource/dw_apb_timer_of.c
drivers/acpi/acpi_platform.c
drivers/spi/spi-orion.c
drivers/remoteproc/st_remoteproc.c
drivers/clocksource/versatile.c
drivers/spi/spi-txx9.c
drivers/clocksource/renesas-ostm.c
drivers/acpi/pci_slot.c
drivers/remoteproc/remoteproc_elf_loader.c
drivers/acpi/bgrt.c
drivers/spi/spi-omap2-mcspi.c
drivers/clocksource/arc_timer.c
drivers/acpi/utils.c
drivers/remoteproc/remoteproc_virtio.c
drivers/clocksource/h8300_timer16.c
drivers/remoteproc/keystone_remoteproc.c
drivers/acpi/processor_thermal.c
drivers/clocksource/timer-atmel-st.c
drivers/remoteproc/st_slim_rproc.c
drivers/spi/spi-bcm63xx.c
drivers/acpi/sleep.c
drivers/clocksource/h8300_timer8.c
drivers/spi/spi-sh.c
drivers/remoteproc/da8xx_remoteproc.c
drivers/acpi/acpi_lpat.c
drivers/clocksource/metag_generic.c
drivers/spi/spi-cavium.c
drivers/acpi/acpi_watchdog.c
drivers/clocksource/tcb_clksrc.c
drivers/spi/spi-imx.c
drivers/acpi/acpi_cmos_rtc.c
drivers/clocksource/timer-nps.c
drivers/spi/spi-pxa2xx-dma.c
drivers/acpi/thermal.c
drivers/clocksource/exynos_mct.c
drivers/spi/spi-adi-v3.c
drivers/acpi/button.c
drivers/clocksource/bcm2835_timer.c
drivers/acpi/device_pm.c
drivers/spi/spi-topcliff-pch.c
drivers/clocksource/mps2-timer.c
drivers/acpi/pci_root.c
drivers/spi/spi-gpio.c
drivers/clocksource/asm9260_timer.c
drivers/acpi/nvs.c
drivers/clocksource/timer-integrator-ap.c
drivers/acpi/ec_sys.c
drivers/spi/spi-s3c64xx.c
drivers/clocksource/timer-probe.c
drivers/spi/spi-ath79.c
drivers/acpi/container.c
drivers/spi/spi-mpc512x-psc.c
drivers/clocksource/timer-stm32.c
drivers/spi/spi-fsl-dspi.c
drivers/acpi/processor_core.c
drivers/clocksource/sun4i_timer.c
drivers/acpi/acpi_lpit.c
drivers/clocksource/timer-prima2.c
drivers/spi/spi-fsl-cpm.c
drivers/acpi/dock.c
drivers/spi/spi-dw-pci.c
drivers/clocksource/timer-digicolor.c
drivers/acpi/pci_mcfg.c
drivers/spi/spi-falcon.c
drivers/clocksource/armv7m_systick.c
drivers/acpi/evged.c
drivers/spi/spi-sc18is602.c
drivers/clocksource/timer-ti-32k.c
drivers/acpi/spcr.c
drivers/clocksource/mxs_timer.c
drivers/clocksource/dw_apb_timer.c
drivers/acpi/video_detect.c
drivers/spi/spi-sh-msiof.c
drivers/acpi/osi.c
drivers/clocksource/arm_global_timer.c
drivers/clocksource/timer-u300.c
drivers/spi/spi.c
drivers/acpi/acpi_amba.c
drivers/clocksource/timer-atmel-pit.c
drivers/spi/spi-xtensa-xtfpga.c
drivers/acpi/cppc_acpi.c
drivers/clocksource/fsl_ftm_timer.c
drivers/spi/spi-nuc900.c
drivers/acpi/acpi_pad.c
drivers/clocksource/dummy_timer.c
drivers/spi/spi-meson-spicc.c
drivers/acpi/numa.c
drivers/clocksource/em_sti.c
drivers/spi/spi-tegra114.c
drivers/clocksource/timer-of.c
drivers/acpi/processor_driver.c
drivers/clocksource/jcore-pit.c
drivers/spi/spi-bcm2835.c
drivers/acpi/custom_method.c
drivers/spi/spi-lm70llp.c
drivers/acpi/acpi_configfs.c
drivers/clocksource/timer-sun5i.c
drivers/acpi/ac.c
drivers/clocksource/time-lpc32xx.c
drivers/spi/spi-efm32.c
drivers/acpi/processor_throttling.c
drivers/clocksource/timer-keystone.c
drivers/spi/spi-omap-100k.c
drivers/acpi/pci_irq.c
drivers/clocksource/numachip.c
drivers/spi/spi-bitbang.c
drivers/acpi/tables.c
drivers/clocksource/arm_arch_timer.c
drivers/spi/spi-fsl-spi.c
drivers/acpi/sbs.c
drivers/clocksource/mmio.c
drivers/spi/spi-axi-spi-engine.c
drivers/acpi/acpi_pnp.c
drivers/clocksource/mips-gic-timer.c
drivers/spi/spi-coldfire-qspi.c
drivers/clocksource/h8300_tpu.c
drivers/acpi/acpi_lpss.c
drivers/acpi/sbshc.c
drivers/spi/spi-sh-sci.c
drivers/clocksource/timer-sp804.c
drivers/acpi/acpi_extlog.c
drivers/spi/spi-loopback-test.c
drivers/acpi/processor_idle.c
drivers/clocksource/sh_mtu2.c
drivers/base/firmware.c
drivers/spi/spi-davinci.c
drivers/acpi/scan.c
drivers/clocksource/sh_tmu.c
drivers/base/dma-coherent.c
drivers/spi/spi-sirf.c
drivers/acpi/blacklist.c
drivers/clocksource/vt8500_timer.c
drivers/base/property.c
drivers/spi/spi-au1550.c
drivers/acpi/acpi_video.c
drivers/clocksource/time-pistachio.c
drivers/base/isa.c
drivers/clocksource/timer-imx-tpm.c
drivers/spi/spi-rspi.c
drivers/clocksource/i8253.c
drivers/base/topology.c
drivers/spi/spi-clps711x.c
drivers/acpi/cm_sbs.c
drivers/clocksource/tango_xtal.c
drivers/base/core.c
drivers/spi/spi-ep93xx.c
drivers/clocksource/timer-oxnas-rps.c
drivers/base/dma-contiguous.c
drivers/spi/spi-cavium-octeon.c
drivers/acpi/wakeup.c
drivers/base/firmware_class.c
drivers/clocksource/time-orion.c
drivers/spi/spi-armada-3700.c
drivers/base/dma-mapping.c
drivers/clocksource/owl-timer.c
drivers/spi/spi-img-spfi.c
drivers/base/devcoredump.c
drivers/clocksource/time-armada-370-xp.c
drivers/acpi/processor_perflib.c
drivers/spi/spi-brcmstb-qspi.c
drivers/base/driver.c
drivers/clocksource/meson6_timer.c
drivers/acpi/processor_pdc.c
drivers/acpi/bus.c
drivers/clocksource/zevio-timer.c
drivers/clocksource/clksrc-dbx500-prcmu.c
drivers/acpi/hed.c
drivers/clocksource/tegra20_timer.c
drivers/acpi/glue.c
drivers/base/class.c
drivers/clocksource/qcom-timer.c
drivers/clocksource/timer-imx-gpt.c
drivers/base/container.c
drivers/clocksource/pxa_timer.c
drivers/base/attribute_container.c
drivers/base/pinctrl.c
drivers/dca/dca-sysfs.c
drivers/clocksource/nomadik-mtu.c
drivers/base/module.c
drivers/clocksource/timer-fttmr010.c
drivers/base/dd.c
drivers/dca/dca-core.c
drivers/clocksource/bcm_kona_timer.c
drivers/base/soc.c
drivers/clocksource/clksrc_st_lpc.c
drivers/base/transport_class.c
drivers/clocksource/clps711x-timer.c
drivers/base/init.c
drivers/cdrom/gdrom.c
drivers/clocksource/rockchip_timer.c
drivers/cdrom/cdrom.c
drivers/base/hypervisor.c
drivers/base/platform-msi.c
drivers/clocksource/timer-atlas7.c
drivers/base/node.c
drivers/clocksource/acpi_pm.c
drivers/base/arch_topology.c
drivers/clocksource/cadence_ttc_timer.c
drivers/base/syscore.c
drivers/clocksource/mtk_timer.c
drivers/base/cpu.c
drivers/clocksource/scx200_hrt.c
drivers/base/cacheinfo.c
drivers/base/map.c
drivers/clocksource/cs5535-clockevt.c
drivers/base/memory.c
drivers/base/bus.c
drivers/uio/uio_pdrv_genirq.c
drivers/base/platform.c
drivers/base/devres.c
drivers/uio/uio_fsl_elbc_gpcm.c
drivers/base/devtmpfs.c
drivers/uio/uio_sercos3.c
drivers/base/component.c
drivers/uio/uio_mf624.c
drivers/uio/uio_dmem_genirq.c
drivers/uio/uio_netx.c
drivers/uio/uio.c
drivers/uio/uio_hv_generic.c
drivers/uio/uio_pruss.c
drivers/sn/ioc3.c
drivers/uio/uio_aec.c
drivers/uio/uio_cif.c
drivers/uio/uio_pci_generic.c
drivers/idle/intel_idle.c
lib/fonts/font_sun12x22.c
lib/fonts/font_6x11.c
lib/fonts/font_8x8.c
lib/fonts/font_pearl_8x8.c
lib/fonts/font_8x16.c
lib/fonts/font_sun8x16.c
lib/fonts/font_7x14.c
lib/fonts/font_mini_4x6.c
lib/fonts/font_6x10.c
lib/fonts/font_acorn_8x8.c
lib/fonts/font_10x18.c
lib/fonts/fonts.c
drivers/firmware/qcom_scm-32.c
drivers/firmware/iscsi_ibft_find.c
drivers/firmware/edd.c
drivers/firmware/memmap.c
drivers/firmware/dmi-sysfs.c
drivers/firmware/qcom_scm-64.c
drivers/mfd/atmel-hlcdc.c
drivers/firmware/dmi_scan.c
drivers/mfd/ab8500-core.c
drivers/firmware/psci_checker.c
drivers/mfd/rc5t583-irq.c
drivers/firmware/dcdbas.c
drivers/firmware/scpi_pm_domain.c
drivers/mfd/arizona-i2c.c
drivers/mfd/wl1273-core.c
drivers/firmware/dell_rbu.c
drivers/firmware/qcom_scm.c
drivers/mfd/rn5t618.c
drivers/mfd/ac100.c
drivers/mfd/mc13xxx-core.c
drivers/firmware/qemu_fw_cfg.c
drivers/mfd/wm8994-core.c
drivers/mfd/mc13xxx-spi.c
drivers/mfd/da9150-core.c
drivers/firmware/raspberrypi.c
drivers/firmware/ti_sci.c
drivers/mfd/da903x.c
drivers/firmware/dmi-id.c
drivers/mfd/wm831x-irq.c
drivers/mfd/max8907.c
drivers/mfd/max77620.c
drivers/firmware/pcdp.c
drivers/mfd/aat2870-core.c
drivers/firmware/psci.c
drivers/mfd/lpc_ich.c
drivers/mfd/tps65912-i2c.c
drivers/firmware/iscsi_ibft.c
drivers/mfd/lp87565.c
drivers/firmware/arm_scpi.c
drivers/mfd/davinci_voicecodec.c
drivers/mfd/mc13xxx-i2c.c
drivers/mfd/axp20x-i2c.c
drivers/mfd/mcp-sa11x0.c
drivers/mfd/88pm80x.c
drivers/mfd/wm831x-auxadc.c
drivers/powercap/intel_rapl.c
drivers/mfd/wm8350-core.c
drivers/powercap/powercap_sys.c
drivers/mfd/timberdale.c
drivers/mfd/da9052-i2c.c
drivers/mfd/cros_ec_acpi_gpe.c
drivers/mfd/tps65217.c
drivers/sfi/sfi_core.c
drivers/mfd/stm32-timers.c
drivers/sfi/sfi_acpi.c
drivers/mfd/tmio_core.c
drivers/mfd/wm97xx-core.c
drivers/mfd/abx500-core.c
drivers/mfd/intel_soc_pmic_chtwc.c
drivers/pnp/system.c
drivers/mfd/sec-irq.c
drivers/pnp/resource.c
drivers/mfd/88pm805.c
drivers/mfd/rts5249.c
drivers/pnp/quirks.c
drivers/mfd/altera-a10sr.c
drivers/mfd/si476x-i2c.c
drivers/mfd/axp20x.c
drivers/pnp/card.c
drivers/mfd/tc6387xb.c
drivers/pnp/support.c
drivers/mfd/lp8788-irq.c
drivers/pnp/core.c
drivers/mfd/intel_quark_i2c_gpio.c
drivers/pnp/driver.c
drivers/mfd/lp8788.c
drivers/mfd/twl4030-power.c
drivers/pnp/manager.c
drivers/mfd/palmas.c
drivers/mfd/tps65010.c
drivers/mfd/wm8997-tables.c
drivers/pnp/interface.c
drivers/mfd/retu-mfd.c
drivers/mfd/ipaq-micro.c
drivers/mfd/sun6i-prcm.c
drivers/mfd/tc3589x.c
drivers/mfd/dm355evm_msp.c
drivers/phy/phy-core.c
drivers/mfd/twl4030-irq.c
drivers/phy/phy-lpc18xx-usb-otg.c
drivers/mfd/sec-core.c
drivers/mfd/hi6421-pmic-core.c
drivers/mfd/max8998.c
drivers/mfd/si476x-cmd.c
drivers/phy/phy-xgene.c
drivers/mfd/tps65912-spi.c
drivers/mfd/cs47l24-tables.c
drivers/phy/phy-pistachio-usb.c
drivers/mfd/max8925-core.c
drivers/macintosh/therm_adt746x.c
drivers/mfd/wm8350-i2c.c
drivers/macintosh/windfarm_pm72.c
drivers/mfd/ab3100-core.c
drivers/macintosh/via-pmu.c
drivers/macintosh/windfarm_ad7417_sensor.c
drivers/mfd/tc6393xb.c
drivers/mfd/omap-usb-host.c
drivers/mfd/da9063-irq.c
drivers/macintosh/adb-iop.c
drivers/mfd/adp5520.c
drivers/mfd/wm8350-gpio.c
drivers/macintosh/windfarm_pid.c
drivers/mfd/as3711.c
drivers/macintosh/via-pmu68k.c
drivers/mfd/lpc_sch.c
drivers/macintosh/windfarm_core.c
drivers/mfd/rts5227.c
drivers/macintosh/via-cuda.c
drivers/mfd/ab8500-debugfs.c
drivers/macintosh/macio_asic.c
drivers/mfd/da9062-core.c
drivers/macintosh/macio-adb.c
drivers/mfd/max8925-i2c.c
drivers/macintosh/windfarm_fcu_controls.c
drivers/macintosh/therm_windtunnel.c
drivers/mfd/wm8998-tables.c
drivers/macintosh/via-pmu-led.c
drivers/mfd/88pm860x-core.c
drivers/macintosh/via-macii.c
drivers/mfd/rt5033.c
drivers/macintosh/macio_sysfs.c
drivers/mfd/wm831x-otp.c
drivers/mfd/act8945a.c
drivers/macintosh/windfarm_max6690_sensor.c
drivers/mfd/atmel-flexcom.c
drivers/macintosh/windfarm_smu_sensors.c
drivers/mfd/exynos-lpass.c
drivers/macintosh/windfarm_lm75_sensor.c
drivers/mfd/arizona-core.c
drivers/macintosh/windfarm_pm81.c
drivers/mfd/lm3533-core.c
drivers/macintosh/via-pmu-event.c
drivers/mfd/lp873x.c
drivers/macintosh/smu.c
drivers/mfd/sm501.c
drivers/macintosh/via-pmu-backlight.c
drivers/mfd/ti-lmu.c
drivers/mfd/lp3943.c
drivers/macintosh/rack-meter.c
drivers/atm/suni.c
drivers/mfd/rts5209.c
drivers/macintosh/windfarm_lm87_sensor.c
drivers/mfd/qcom-spmi-pmic.c
drivers/macintosh/adb.c
drivers/atm/idt77105.c
drivers/macintosh/windfarm_pm121.c
drivers/mfd/pcf50633-gpio.c
drivers/atm/nicstarmac.c
drivers/macintosh/windfarm_pm112.c
drivers/mfd/twl4030-audio.c
drivers/atm/horizon.c
drivers/macintosh/windfarm_cpufreq_clamp.c
drivers/mfd/rc5t583.c
drivers/atm/lanai.c
drivers/macintosh/mac_hid.c
drivers/mfd/da9063-core.c
drivers/macintosh/windfarm_rm31.c
drivers/atm/solos-pci.c
drivers/mfd/mxs-lradc.c
drivers/atm/nicstar.c
drivers/mfd/twl6030-irq.c
drivers/macintosh/windfarm_pm91.c
drivers/atm/ambassador.c
drivers/mfd/htc-i2cpld.c
drivers/macintosh/windfarm_smu_controls.c
drivers/thermal/thermal_helpers.c
drivers/mfd/wm5110-tables.c
drivers/thermal/imx_thermal.c
drivers/mfd/intel_msic.c
drivers/macintosh/apm_emu.c
drivers/thermal/thermal-generic-adc.c
drivers/mfd/ab8500-gpadc.c
drivers/macintosh/ans-lcd.c
drivers/mfd/qcom-pm8xxx.c
drivers/thermal/intel_pch_thermal.c
drivers/macintosh/mediabay.c
drivers/thermal/intel_soc_dts_iosf.c
drivers/macintosh/windfarm_smu_sat.c
drivers/thermal/gov_bang_bang.c
drivers/mfd/tps65912-core.c
drivers/mfd/intel_soc_pmic_chtdc_ti.c
drivers/mfd/kempld-core.c
drivers/thermal/kirkwood_thermal.c
drivers/macintosh/adbhid.c
drivers/atm/atmtcp.c
drivers/mfd/intel-lpss.c
drivers/thermal/max77620_thermal.c
drivers/mfd/da9055-i2c.c
drivers/thermal/clock_cooling.c
drivers/mfd/88pm800.c
drivers/thermal/da9062-thermal.c
drivers/atm/he.c
drivers/mfd/asic3.c
drivers/mfd/max14577.c
drivers/thermal/intel_bxt_pmic_thermal.c
drivers/mfd/tps65086.c
drivers/atm/adummy.c
drivers/mfd/syscon.c
drivers/thermal/rcar_gen3_thermal.c
drivers/atm/solos-attrlist.c
drivers/mfd/rdc321x-southbridge.c
drivers/mfd/stmpe-i2c.c
drivers/thermal/user_space.c
drivers/atm/iphase.c
drivers/mfd/ab8500-sysctrl.c
drivers/thermal/step_wise.c
drivers/thermal/rcar_thermal.c
drivers/thermal/cpu_cooling.c
drivers/mfd/intel_soc_pmic_core.c
drivers/thermal/tango_thermal.c
drivers/mfd/menf21bmc.c
drivers/mfd/max8997-irq.c
drivers/thermal/rockchip_thermal.c
drivers/mfd/intel-lpss-pci.c
drivers/mfd/viperboard.c
drivers/atm/zatm.c
drivers/mfd/ssbi.c
drivers/atm/uPD98402.c
drivers/mfd/wm8400-core.c
drivers/mfd/max77693.c
drivers/atm/fore200e.c
drivers/thermal/thermal_core.c
drivers/mfd/rtsx_usb.c
drivers/thermal/of-thermal.c
drivers/atm/eni.c
drivers/mfd/htc-pasic3.c
drivers/atm/firestream.c
drivers/mfd/cros_ec_spi.c
drivers/thermal/qoriq_thermal.c
drivers/mfd/wm5102-tables.c
drivers/thermal/intel_soc_dts_thermal.c
drivers/mfd/tps6586x.c
drivers/thermal/spear_thermal.c
drivers/mfd/smsc-ece1099.c
drivers/thermal/thermal_hwmon.c
drivers/mfd/vx855.c
drivers/atm/idt77252.c
drivers/thermal/intel_quark_dts_thermal.c
drivers/mfd/sky81452.c
drivers/mfd/sprd-sc27xx-spi.c
drivers/thermal/uniphier_thermal.c
drivers/mfd/twl6040.c
drivers/thermal/db8500_thermal.c
drivers/mfd/wm831x-i2c.c
drivers/thermal/zx2967_thermal.c
drivers/char/tlclk.c
drivers/mfd/rtl8411.c
drivers/thermal/power_allocator.c
drivers/char/snsc.c
drivers/thermal/fair_share.c
drivers/mfd/tps65911-comparator.c
drivers/mfd/bd9571mwv.c
drivers/mfd/omap-usb-tll.c
drivers/char/pc8736x_gpio.c
drivers/mfd/motorola-cpcap.c
drivers/char/ds1302.c
drivers/thermal/qcom-spmi-temp-alarm.c
drivers/char/nwflash.c
drivers/mfd/si476x-prop.c
drivers/thermal/hisi_thermal.c
drivers/mfd/88pm860x-i2c.c
drivers/char/hpet.c
drivers/thermal/dove_thermal.c
drivers/mfd/max8997.c
drivers/char/ppdev.c
drivers/thermal/devfreq_cooling.c
drivers/mfd/tps6105x.c
drivers/char/rtc.c
drivers/thermal/mtk_thermal.c
drivers/mfd/jz4740-adc.c
drivers/char/efirtc.c
drivers/thermal/armada_thermal.c
drivers/mfd/pcf50633-irq.c
drivers/thermal/thermal_sysfs.c
drivers/mfd/cros_ec_i2c.c
drivers/char/tile-srom.c
drivers/mfd/rk808.c
drivers/thermal/x86_pkg_temp_thermal.c
drivers/char/tb0219.c
drivers/mfd/mt6397-core.c
drivers/thermal/intel_powerclamp.c
drivers/mfd/wm831x-core.c
drivers/char/nsc_gpio.c
drivers/mfd/wm8350-regmap.c
drivers/char/dsp56k.c
drivers/mfd/intel_soc_pmic_crc.c
drivers/mfd/da9052-spi.c
drivers/char/virtio_console.c
drivers/mfd/tps6507x.c
drivers/char/applicom.c
drivers/char/mspec.c
drivers/mfd/max77686.c
drivers/char/random.c
drivers/mfd/tps65090.c
drivers/char/hangcheck-timer.c
drivers/mfd/vexpress-sysreg.c
drivers/char/snsc_event.c
drivers/mfd/wm8350-irq.c
drivers/char/lp.c
drivers/mfd/max8998-irq.c
drivers/char/sonypi.c
drivers/mfd/tps65910.c
drivers/mfd/stmpe.c
drivers/xen/gntdev.c
drivers/mfd/stw481x.c
drivers/xen/evtchn.c
drivers/mfd/mfd-core.c
drivers/xen/tmem.c
drivers/char/powernv-op-panel.c
drivers/mfd/cs5535-mfd.c
drivers/xen/features.c
drivers/char/uv_mmtimer.c
drivers/mfd/pcf50633-core.c
drivers/xen/pvcalls-front.c
drivers/char/dtlk.c
drivers/xen/balloon.c
drivers/mfd/tps80031.c
drivers/xen/xen-stub.c
drivers/mfd/atmel-smc.c
drivers/char/generic_nvram.c
drivers/xen/manage.c
drivers/mfd/dln2.c
drivers/char/nwbutton.c
drivers/xen/efi.c
drivers/mfd/twl-core.c
drivers/char/ds1620.c
drivers/xen/sys-hypervisor.c
drivers/mfd/ucb1400_core.c
drivers/xen/time.c
drivers/mfd/da9052-irq.c
drivers/xen/xen-scsiback.c
drivers/char/scx200_gpio.c
drivers/mfd/da9052-core.c
drivers/char/misc.c
drivers/mfd/qcom_rpm.c
drivers/xen/xlate_mmu.c
drivers/mfd/cros_ec.c
drivers/xen/pcpu.c
drivers/mfd/sun4i-gpadc.c
drivers/xen/swiotlb-xen.c
drivers/char/nvram.c
drivers/mfd/pcf50633-adc.c
drivers/char/mbcs.c
drivers/mfd/arizona-irq.c
drivers/xen/platform-pci.c
drivers/char/apm-emulation.c
drivers/mfd/ti_am335x_tscadc.c
drivers/char/bfin-otp.c
drivers/mfd/stmpe-spi.c
drivers/xen/xen-balloon.c
drivers/char/mem.c
drivers/mfd/wm831x-spi.c
drivers/eisa/virtual_root.c
drivers/xen/cpu_hotplug.c
drivers/mfd/bcm590xx.c
drivers/xen/grant-table.c
drivers/mfd/ezx-pcap.c
drivers/char/ttyprintk.c
drivers/mfd/fsl-imx25-tsadc.c
drivers/char/toshiba.c
drivers/eisa/pci_eisa.c
drivers/xen/fallback.c
drivers/mfd/ucb1x00-core.c
drivers/char/bsr.c
drivers/xen/mcelog.c
drivers/mfd/rtsx_pcr.c
drivers/eisa/eisa-bus.c
drivers/xen/preempt.c
drivers/mfd/ucb1x00-assabet.c
drivers/char/ps3flash.c
drivers/xen/arm-device.c
drivers/mfd/axp20x-rsb.c
drivers/char/raw.c
drivers/xen/xen-selfballoon.c
drivers/mfd/wm8994-irq.c
drivers/xen/xen-acpi-processor.c
drivers/mfd/as3722.c
drivers/xen/acpi.c
drivers/mfd/menelaus.c
drivers/xen/pvcalls-back.c
drivers/xen/gntalloc.c
drivers/mfd/lm3533-ctrlbank.c
drivers/xen/biomerge.c
drivers/mfd/da9055-core.c
drivers/xen/dbgp.c
drivers/mfd/max77843.c
drivers/mfd/intel_soc_pmic_bxtwc.c
drivers/xen/xen-acpi-cpuhotplug.c
drivers/mfd/wm8994-regmap.c
drivers/xen/privcmd.c
drivers/mfd/stm32-lptimer.c
drivers/mfd/sta2x11-mfd.c
drivers/mfd/tps68470.c
drivers/xen/xen-acpi-memhotplug.c
drivers/mfd/arizona-spi.c
drivers/xen/xen-acpi-pad.c
drivers/mfd/tps65218.c
drivers/xen/pci.c
drivers/mux/core.c
drivers/mfd/mcp-core.c
drivers/mfd/t7l66xb.c
drivers/mux/mmio.c
drivers/mfd/db8500-prcmu.c
drivers/mux/gpio.c
drivers/mfd/ucb1x00-ts.c
drivers/mux/adg792a.c
drivers/mfd/hi655x-pmic.c
drivers/mfd/intel-lpss-acpi.c
drivers/mfd/rts5229.c
drivers/mfd/ab3100-otp.c
drivers/mfd/da9063-i2c.c
drivers/mfd/janz-cmodio.c
drivers/hwmon/dme1737.c
drivers/hwmon/scpi-hwmon.c
drivers/mailbox/platform_mhu.c
drivers/hwmon/k10temp.c
drivers/mailbox/hi6220-mailbox.c
drivers/hwmon/adm1021.c
drivers/mailbox/mailbox.c
drivers/hwmon/nct6683.c
drivers/mailbox/bcm-pdc-mailbox.c
drivers/hwmon/hwmon-vid.c
drivers/hwmon/ad7418.c
drivers/hwmon/ina209.c
drivers/mailbox/arm_mhu.c
drivers/hwmon/smsc47m1.c
drivers/mailbox/tegra-hsp.c
drivers/hwmon/ltc2990.c
drivers/mailbox/mailbox-altera.c
drivers/hwmon/max6650.c
drivers/mailbox/bcm-flexrm-mailbox.c
drivers/hwmon/tc74.c
drivers/mailbox/omap-mailbox.c
drivers/mailbox/bcm2835-mailbox.c
drivers/hwmon/max1111.c
drivers/ptp/ptp_dte.c
drivers/hwmon/ftsteutates.c
drivers/mailbox/qcom-apcs-ipc-mailbox.c
drivers/ptp/ptp_sysfs.c
drivers/hwmon/tc654.c
drivers/mailbox/pcc.c
drivers/hwmon/max1668.c
drivers/mailbox/ti-msgmgr.c
drivers/ptp/ptp_chardev.c
drivers/hwmon/lm93.c
drivers/mailbox/rockchip-mailbox.c
drivers/ptp/ptp_ixp46x.c
drivers/hwmon/sch56xx-common.c
drivers/ptp/ptp_kvm.c
drivers/mailbox/mailbox-test.c
drivers/hwmon/ab8500.c
drivers/ptp/ptp_pch.c
drivers/mailbox/mailbox-sti.c
drivers/hwmon/lm95245.c
drivers/mailbox/pl320-ipc.c
drivers/hwmon/max197.c
drivers/ptp/ptp_clock.c
drivers/mailbox/mailbox-xgene-slimpro.c
drivers/hwmon/pc87360.c
drivers/hwmon/smm665.c
drivers/hwmon/tmp108.c
drivers/hwmon/adm1025.c
drivers/hwmon/ads7828.c
drivers/hwmon/lm77.c
drivers/hwmon/nct7802.c
drivers/hwmon/hwmon.c
drivers/hwmon/pcf8591.c
drivers/hwmon/ibmaem.c
drivers/hwmon/adm1026.c
drivers/hwmon/adt7411.c
drivers/hwmon/abx500.c
drivers/hwmon/i5500_temp.c
drivers/hwmon/w83l786ng.c
drivers/hwmon/sch5627.c
drivers/hwmon/mc13783-adc.c
drivers/hwmon/asc7621.c
drivers/hwmon/via686a.c
drivers/hwmon/lineage-pem.c
drivers/hwmon/sht15.c
drivers/hwmon/gpio-fan.c
drivers/hwmon/ads1015.c
drivers/hwmon/ltc4222.c
drivers/ps3/ps3-sys-manager.c
drivers/hwmon/pc87427.c
drivers/ps3/ps3-vuart.c
drivers/hwmon/xgene-hwmon.c
drivers/ps3/ps3av_cmd.c
drivers/hwmon/w83795.c
drivers/hwmon/tmp421.c
drivers/ps3/sys-manager-core.c
drivers/hwmon/ds620.c
drivers/ps3/ps3-lpm.c
drivers/hwmon/ds1621.c
drivers/ps3/ps3av.c
drivers/hwmon/adm9240.c
drivers/hwmon/max6639.c
drivers/hwmon/lm73.c
drivers/ps3/ps3stor_lib.c
drivers/hwmon/ltc4151.c
drivers/hwmon/mcp3021.c
drivers/hwmon/ibmpex.c
drivers/hwmon/ad7314.c
drivers/hwmon/w83792d.c
drivers/hwmon/dell-smm-hwmon.c
drivers/hwmon/atxp1.c
drivers/hwmon/ltc4260.c
drivers/pps/sysfs.c
drivers/hwmon/shtc1.c
drivers/hwmon/applesmc.c
drivers/hwmon/g762.c
drivers/pps/kapi.c
drivers/hwmon/abituguru3.c
drivers/pps/pps.c
drivers/hwmon/max16065.c
drivers/hwmon/w83791d.c
drivers/pps/kc.c
drivers/hwmon/nct6775.c
drivers/hwmon/jc42.c
drivers/hwmon/adt7475.c
drivers/hwmon/lm63.c
drivers/hwmon/gl518sm.c
drivers/hwmon/vexpress-hwmon.c
drivers/hwmon/gl520sm.c
drivers/hwmon/w83627ehf.c
drivers/hwmon/lm92.c
drivers/hwmon/i5k_amb.c
drivers/hwmon/adt7470.c
drivers/hwmon/wm8350-hwmon.c
drivers/hwmon/asb100.c
drivers/hwmon/thmc50.c
drivers/hwmon/acpi_power_meter.c
drivers/hwmon/vt8231.c
drivers/hwmon/ltc4215.c
drivers/hwmon/jz4740-hwmon.c
drivers/hwmon/ltq-cputemp.c
drivers/hwmon/emc2103.c
drivers/hwmon/w83781d.c
drivers/hwmon/via-cputemp.c
drivers/hwmon/adcxx.c
drivers/hwmon/tmp102.c
drivers/hwmon/it87.c
drivers/hwmon/f71882fg.c
drivers/hwmon/ina3221.c
drivers/hwmon/stts751.c
drivers/hwmon/da9052-hwmon.c
drivers/hwmon/menf21bmc_hwmon.c
drivers/hwmon/ads7871.c
drivers/hwmon/fam15h_power.c
drivers/hwmon/max6642.c
drivers/hwmon/iio_hwmon.c
drivers/hwmon/lm85.c
drivers/hwmon/s3c-hwmon.c
drivers/hwmon/aspeed-pwm-tacho.c
drivers/hwmon/ultra45_env.c
drivers/hwmon/adt7x10.c
drivers/hwmon/ad7414.c
drivers/hwmon/amc6821.c
drivers/hwmon/lm70.c
drivers/hwmon/adm1031.c
drivers/hwmon/smsc47m192.c
drivers/hwmon/sis5595.c
drivers/hwmon/f71805f.c
drivers/hwmon/adt7410.c
drivers/hwmon/abituguru.c
drivers/hwmon/ntc_thermistor.c
drivers/hwmon/k8temp.c
drivers/hwmon/tmp401.c
drivers/hwmon/ltc4261.c
drivers/hwmon/sht21.c
drivers/hwmon/lm87.c
drivers/hwmon/lm95241.c
drivers/hwmon/w83l785ts.c
drivers/hwmon/f75375s.c
drivers/hwmon/ltc2945.c
drivers/hwmon/sht3x.c
drivers/hwmon/adm1029.c
drivers/hwmon/max6621.c
drivers/hwmon/hih6130.c
drivers/hwmon/max1619.c
drivers/hwmon/coretemp.c
drivers/hwmon/asus_atk0110.c
drivers/hwmon/sch5636.c
drivers/hwmon/ina2xx.c
drivers/hwmon/g760a.c
drivers/hwmon/max6697.c
drivers/hwmon/nct7904.c
drivers/hwmon/w83793.c
drivers/pwm/pwm-hibvt.c
drivers/hwmon/emc1403.c
drivers/pwm/pwm-imx.c
drivers/pwm/pwm-lp3943.c
drivers/hwmon/lm95234.c
drivers/pwm/pwm-mediatek.c
drivers/hwmon/adc128d818.c
drivers/pwm/pwm-omap-dmtimer.c
drivers/hwmon/pwm-fan.c
drivers/pwm/pwm-mxs.c
drivers/hwmon/max31790.c
drivers/hwmon/lm83.c
drivers/pwm/pwm-rockchip.c
drivers/pwm/pwm-bfin.c
drivers/hwmon/fschmd.c
drivers/pwm/pwm-atmel.c
drivers/hwmon/adt7462.c
drivers/pwm/pwm-pca9685.c
drivers/hwmon/w83627hf.c
drivers/pwm/core.c
drivers/hwmon/wm831x-hwmon.c
drivers/pwm/sysfs.c
drivers/hwmon/max31722.c
drivers/hwmon/ibmpowernv.c
drivers/pwm/pwm-lpc32xx.c
drivers/pwm/pwm-bcm-kona.c
drivers/hwmon/nsa320-hwmon.c
drivers/pwm/pwm-renesas-tpu.c
drivers/hwmon/adt7310.c
drivers/pwm/pwm-puv3.c
drivers/pwm/pwm-stmpe.c
drivers/hwmon/ltc4245.c
drivers/hwmon/vt1211.c
drivers/pwm/pwm-tipwmss.c
drivers/pwm/pwm-ab8500.c
drivers/hv/hv_snapshot.c
drivers/hwmon/da9055-hwmon.c
drivers/pwm/pwm-stm32-lp.c
drivers/hwmon/tmp103.c
drivers/hwmon/emc6w201.c
drivers/hwmon/lm80.c
drivers/pwm/pwm-vt8500.c
drivers/hwmon/smsc47b397.c
drivers/pwm/pwm-lpss.c
drivers/hv/hv_util.c
drivers/hwmon/lm75.c
drivers/pwm/pwm-crc.c
drivers/hwmon/lm90.c
drivers/hv/hv_fcopy.c
drivers/pwm/pwm-twl.c
drivers/hv/hv_trace.c
drivers/hwmon/powr1220.c
drivers/pwm/pwm-atmel-tcb.c
drivers/hv/ring_buffer.c
drivers/hwmon/lm78.c
drivers/pwm/pwm-tiehrpwm.c
drivers/hv/channel.c
drivers/pwm/pwm-fsl-ftm.c
drivers/hv/hv_utils_transport.c
drivers/pwm/pwm-berlin.c
drivers/hv/vmbus_drv.c
drivers/pwm/pwm-img.c
drivers/hv/channel_mgmt.c
drivers/pwm/pwm-meson.c
drivers/hv/hv_kvp.c
drivers/pwm/pwm-bcm-iproc.c
drivers/pwm/pwm-lpc18xx-sct.c
drivers/pwm/pwm-ep93xx.c
drivers/hv/connection.c
drivers/pwm/pwm-spear.c
drivers/hv/hv_balloon.c
drivers/pwm/pwm-tiecap.c
drivers/hv/hv.c
drivers/pwm/pwm-stm32.c
drivers/pwm/pwm-clps711x.c
drivers/pwm/pwm-sun4i.c
drivers/pwm/pwm-cros-ec.c
drivers/pwm/pwm-bcm2835.c
drivers/pwm/pwm-pxa.c
drivers/pwm/pwm-lpss-pci.c
drivers/pwm/pwm-mtk-disp.c
drivers/pwm/pwm-atmel-hlcdc.c
drivers/pwm/pwm-twl-led.c
drivers/pwm/pwm-jz4740.c
drivers/pwm/pwm-brcmstb.c
drivers/pwm/pwm-tegra.c
drivers/misc/apds990x.c
drivers/scsi/iscsi_tcp.c
drivers/pwm/pwm-samsung.c
drivers/misc/aspeed-lpc-ctrl.c
drivers/pwm/pwm-lpss-platform.c
drivers/misc/aspeed-lpc-snoop.c
drivers/misc/fsa9480.c
drivers/scsi/3w-9xxx.c
drivers/pwm/pwm-rcar.c
drivers/misc/atmel_tclib.c
drivers/scsi/scsi_debug.c
drivers/pwm/pwm-zx.c
drivers/misc/ad525x_dpot-spi.c
drivers/scsi/3w-sas.c
drivers/pwm/pwm-sti.c
drivers/misc/vexpress-syscfg.c
drivers/misc/isl29003.c
drivers/scsi/scsi_sysfs.c
drivers/misc/tsl2550.c
drivers/scsi/qlogicfas408.c
drivers/misc/lkdtm_rodata.c
drivers/misc/lattice-ecp3-config.c
drivers/misc/apds9802als.c
drivers/scsi/osst.c
drivers/misc/ad525x_dpot.c
drivers/scsi/libiscsi.c
drivers/misc/tifm_core.c
drivers/fsi/fsi-master-hub.c
drivers/scsi/sd.c
drivers/misc/phantom.c
drivers/fsi/fsi-master-gpio.c
drivers/misc/lkdtm_heap.c
drivers/fsi/fsi-scom.c
drivers/scsi/scsi_netlink.c
drivers/misc/atmel-ssc.c
drivers/misc/lkdtm_refcount.c
drivers/fsi/fsi-core.c
drivers/misc/cs5535-mfgpt.c
drivers/misc/spear13xx_pcie_gadget.c
drivers/misc/ds1682.c
drivers/scsi/raid_class.c
drivers/misc/hpilo.c
drivers/misc/sram-exec.c
drivers/misc/enclosure.c
drivers/scsi/atari_scsi.c
drivers/ras/debugfs.c
drivers/misc/pch_phub.c
drivers/scsi/53c700.c
drivers/misc/ad525x_dpot-i2c.c
drivers/misc/qcom-coincell.c
drivers/ras/cec.c
drivers/misc/lkdtm_usercopy.c
drivers/scsi/sun3_scsi_vme.c
drivers/ras/ras.c
drivers/misc/lkdtm_perms.c
drivers/scsi/hptiop.c
drivers/misc/dummy-irq.c
drivers/scsi/initio.c
drivers/misc/pci_endpoint_test.c
drivers/scsi/libiscsi_tcp.c
drivers/usb/usb-skeleton.c
drivers/misc/lkdtm_core.c
drivers/misc/lkdtm_bugs.c
drivers/virt/fsl_hypervisor.c
drivers/misc/vmw_balloon.c
drivers/misc/pti.c
drivers/misc/kgdbts.c
drivers/misc/tifm_7xx1.c
drivers/scsi/atp870u.c
drivers/misc/isl29020.c
drivers/misc/bh1770glc.c
drivers/scsi/sni_53c710.c
drivers/scsi/aha1542.c
drivers/misc/ioc4.c
drivers/scsi/iscsi_boot_sysfs.c
drivers/misc/ics932s401.c
drivers/scsi/ipr.c
drivers/misc/sram.c
drivers/misc/hmc6352.c
drivers/scsi/sgiwd93.c
drivers/scsi/am53c974.c
drivers/dma/mic_x100_dma.c
drivers/scsi/sun_esp.c
drivers/dma/tegra20-apb-dma.c
drivers/scsi/wd719x.c
drivers/i2c/i2c-boardinfo.c
drivers/dma/xgene-dma.c
drivers/scsi/scsi.c
drivers/i2c/i2c-core-acpi.c
drivers/i2c/i2c-mux.c
drivers/dma/stm32-dma.c
drivers/i2c/i2c-dev.c
drivers/dma/dmatest.c
drivers/scsi/sg.c
drivers/dma/s3c24xx-dma.c
drivers/i2c/i2c-core-smbus.c
drivers/scsi/scsi_trace.c
drivers/dma/st_fdma.c
drivers/i2c/i2c-core-of.c
drivers/scsi/scsi_scan.c
drivers/dma/dma-jz4780.c
drivers/i2c/i2c-core-base.c
drivers/iommu/tegra-gart.c
drivers/dma/ste_dma40.c
drivers/i2c/i2c-core-slave.c
drivers/dma/mv_xor.c
drivers/i2c/i2c-slave-eeprom.c
drivers/dma/pch_dma.c
drivers/iommu/mtk_iommu_v1.c
drivers/i2c/i2c-stub.c
drivers/scsi/ch.c
drivers/dma/dma-axi-dmac.c
drivers/i2c/i2c-smbus.c
drivers/dma/fsl_raid.c
drivers/iommu/amd_iommu_v2.c
drivers/dma/coh901318_lli.c
drivers/iommu/iommu-sysfs.c
drivers/dma/pxa_dma.c
drivers/scsi/gdth_proc.c
drivers/iommu/intel-svm.c
drivers/dma/coh901318.c
drivers/iommu/exynos-iommu.c
drivers/dma/iop-adma.c
drivers/iommu/intel-iommu.c
drivers/scsi/scsi_lib_dma.c
drivers/iommu/intel_irq_remapping.c
drivers/dma/mv_xor_v2.c
drivers/dma/omap-dma.c
drivers/dma/fsldma.c
drivers/scsi/scsi_transport_sas.c
drivers/iommu/amd_iommu_init.c
drivers/dma/altera-msgdma.c
drivers/iommu/io-pgtable-arm-v7s.c
drivers/dma/sun4i-dma.c
drivers/iommu/of_iommu.c
drivers/dma/k3dma.c
drivers/vlynq/vlynq.c
drivers/iommu/omap-iommu.c
drivers/scsi/scsi_lib.c
drivers/dma/dmaengine.c
drivers/iommu/arm-smmu-v3.c
drivers/dma/mxs-dma.c
drivers/iommu/dmar.c
drivers/dma/amba-pl08x.c
drivers/dma/imx-dma.c
drivers/scsi/scsi_ioctl.c
drivers/iommu/iommu.c
drivers/scsi/mac53c94.c
drivers/iommu/amd_iommu.c
drivers/dma/bcm-sba-raid.c
drivers/dma/imx-sdma.c
drivers/iommu/tegra-smmu.c
drivers/iommu/irq_remapping.c
drivers/dma/bcm2835-dma.c
drivers/iommu/fsl_pamu.c
drivers/dma/zx_dma.c
drivers/iommu/iommu-traces.c
drivers/dma/sun6i-dma.c
drivers/iommu/ipmmu-vmsa.c
drivers/iommu/arm-smmu.c
drivers/dma/mmp_tdma.c
drivers/scsi/NCR5380.c
drivers/dma/timb_dma.c
drivers/iommu/iova.c
drivers/scsi/3w-xxxx.c
drivers/dma/lpc18xx-dmamux.c
drivers/block/sx8.c
drivers/dma/acpi-dma.c
drivers/scsi/ips.c
drivers/iommu/rockchip-iommu.c
drivers/dma/at_xdmac.c
drivers/scsi/stex.c
drivers/block/brd.c
drivers/dma/sa11x0-dma.c
drivers/scsi/gvp11.c
drivers/block/amiflop.c
drivers/iommu/fsl_pamu_domain.c
drivers/iommu/mtk_iommu.c
drivers/dma/mpc512x_dma.c
drivers/block/swim3.c
drivers/iommu/io-pgtable-arm.c
drivers/dma/mmp_pdma.c
drivers/block/ataflop.c
drivers/iommu/qcom_iommu.c
drivers/block/cryptoloop.c
drivers/scsi/scsi_sysctl.c
drivers/dma/stm32-mdma.c
drivers/iommu/dma-iommu.c
drivers/block/pktcdvd.c
drivers/scsi/sr_vendor.c
drivers/block/virtio_blk.c
drivers/dma/sprd-dma.c
drivers/iommu/s390-iommu.c
drivers/block/ps3disk.c
drivers/scsi/sun3x_esp.c
drivers/dma/idma64.c
drivers/scsi/lasi700.c
drivers/iommu/omap-iommu-debug.c
drivers/block/nbd.c
drivers/iommu/msm_iommu.c
drivers/scsi/mvme16x_scsi.c
drivers/dma/of-dma.c
drivers/dma/txx9dmac.c
drivers/scsi/sim710.c
drivers/block/floppy.c
drivers/iommu/io-pgtable.c
drivers/dma/cppi41.c
drivers/scsi/hosts.c
drivers/block/xen-blkfront.c
drivers/dma/fsl-edma.c
drivers/scsi/sd_zbc.c
drivers/block/ps3vram.c
drivers/dma/at_hdmac.c
drivers/block/umem.c
drivers/dma/dma-jz4740.c
drivers/dma/img-mdc-dma.c
drivers/block/swim.c
drivers/scsi/eata.c
drivers/dma/sirf-dma.c
drivers/dma/virt-dma.c
drivers/dma/moxart-dma.c
drivers/block/null_blk.c
drivers/dma/ti-dma-crossbar.c
drivers/scsi/sr_ioctl.c
drivers/scsi/wd33c93.c
drivers/block/sunvdc.c
drivers/block/loop.c
drivers/dma/edma.c
drivers/block/DAC960.c
drivers/scsi/advansys.c
drivers/block/skd_main.c
drivers/dma/stm32-dmamux.c
drivers/block/xsysace.c
drivers/dma/ep93xx_dma.c
drivers/dma/ste_dma40_ll.c
drivers/scsi/gdth.c
drivers/dma/tegra210-adma.c
drivers/block/rbd.c
drivers/dma/nbpfaxi.c
drivers/block/z2ram.c
drivers/scsi/sym53c416.c
drivers/dma/pl330.c
drivers/scsi/pmcraid.c
drivers/scsi/fdomain.c
drivers/scsi/ppa.c
drivers/scsi/ps3rom.c
drivers/scsi/sr.c
drivers/scsi/zorro7xx.c
drivers/scsi/g_NCR5380.c
drivers/perf/qcom_l3_pmu.c
drivers/scsi/sd_dif.c
drivers/perf/qcom_l2_pmu.c
drivers/scsi/hpsa.c
drivers/perf/arm_pmu_platform.c
drivers/perf/arm_spe_pmu.c
drivers/perf/xgene_pmu.c
drivers/perf/arm_pmu_acpi.c
drivers/scsi/xen-scsifront.c
drivers/perf/arm_pmu.c
drivers/scsi/mvumi.c
drivers/scsi/imm.c
drivers/scsi/mesh.c
drivers/leds/leds-gpio-register.c
drivers/scsi/scsi_error.c
drivers/leds/leds-fsg.c
drivers/leds/leds-ss4200.c
drivers/scsi/scsi_logging.c
drivers/leds/leds-max8997.c
drivers/scsi/jazz_esp.c
drivers/leds/led-core.c
drivers/opp/debugfs.c
drivers/leds/leds-cobalt-raq.c
drivers/opp/core.c
drivers/leds/leds-max77693.c
drivers/scsi/BusLogic.c
drivers/leds/leds-clevo-mail.c
drivers/scsi/a3000.c
drivers/opp/of.c
drivers/leds/led-triggers.c
drivers/opp/cpu.c
drivers/leds/leds-bcm6328.c
drivers/scsi/mac_esp.c
drivers/leds/leds-is31fl32xx.c
drivers/scsi/scsi_transport_srp.c
drivers/leds/leds-s3c24xx.c
drivers/scsi/nsp32_debug.c
drivers/leds/led-class.c
drivers/leds/leds-ktd2692.c
drivers/scsi/NCR53c406a.c
drivers/leds/leds-lm3642.c
drivers/leds/leds-wm8350.c
drivers/leds/leds-lm355x.c
drivers/scsi/nsp32.c
drivers/leds/leds-lm3533.c
drivers/scsi/scsi_transport_fc.c
drivers/leds/leds-da9052.c
drivers/fmc/fmc-dump.c
drivers/leds/leds-mlxcpld.c
drivers/leds/leds-syscon.c
drivers/amba/tegra-ahb.c
drivers/scsi/dpt_i2o.c
drivers/fmc/fmc-debug.c
drivers/leds/uleds.c
drivers/fmc/fmc-trivial.c
drivers/scsi/scsi_transport_spi.c
drivers/amba/bus.c
drivers/leds/leds-netxbig.c
drivers/fmc/fmc-fakedev.c
drivers/scsi/NCR_D700.c
drivers/leds/leds-adp5520.c
drivers/fmc/fmc-write-eeprom.c
drivers/fmc/fmc-match.c
drivers/leds/leds-dac124s085.c
drivers/fmc/fmc-chardev.c
drivers/leds/leds-cpcap.c
drivers/fmc/fmc-sdb.c
drivers/leds/leds-ot200.c
drivers/leds/leds-bcm6358.c
drivers/fmc/fru-parse.c
drivers/leds/leds-lp8501.c
drivers/scsi/storvsc_drv.c
drivers/fmc/fmc-core.c
drivers/leds/leds-blinkm.c
drivers/scsi/esp_scsi.c
drivers/leds/leds-mt6323.c
drivers/leds/leds-is31fl319x.c
drivers/scsi/ncr53c8xx.c
drivers/leds/leds-88pm860x.c
mm/kasan/report.c
drivers/leds/leds-lp3944.c
drivers/leds/leds-hp6xx.c
drivers/leds/leds-tlc591xx.c
mm/kasan/kasan_init.c
drivers/leds/leds-lp5521.c
drivers/scsi/scsi_devinfo.c
mm/kasan/quarantine.c
drivers/leds/leds-wm831x-status.c
drivers/leds/leds-locomo.c
mm/kasan/kasan.c
drivers/leds/leds-ipaq-micro.c
drivers/scsi/FlashPoint.c
drivers/leds/leds-pwm.c
drivers/leds/leds-cobalt-qube.c
drivers/leds/leds-asic3.c
drivers/leds/leds-mc13783.c
drivers/leds/leds-gpio.c
drivers/scsi/scsi_debugfs.c
drivers/leds/leds-nic78bx.c
drivers/leds/leds-sunfire.c
drivers/leds/leds-pca955x.c
drivers/pcmcia/pxa2xx_cm_x255.c
drivers/scsi/qla1280.c
drivers/nvdimm/region_devs.c
drivers/leds/leds-lp3952.c
drivers/nvdimm/btt_devs.c
drivers/pcmcia/cardbus.c
drivers/leds/leds-net48xx.c
drivers/nvdimm/e820.c
drivers/leds/leds-ns2.c
drivers/nvdimm/dimm.c
drivers/scsi/megaraid.c
drivers/leds/leds-aat1290.c
drivers/leds/leds-pm8058.c
drivers/pcmcia/pxa2xx_viper.c
drivers/nvdimm/core.c
drivers/scsi/mvme147.c
drivers/leds/leds-lp5562.c
drivers/nvdimm/dimm_devs.c
drivers/pcmcia/pcmcia_cis.c
drivers/leds/leds-lp8860.c
drivers/nvdimm/pmem.c
drivers/scsi/bvme6000_scsi.c
drivers/pcmcia/rsrc_mgr.c
drivers/leds/leds-wrap.c
drivers/scsi/scsi_pm.c
drivers/pcmcia/pcmcia_resource.c
drivers/leds/leds-lp8788.c
drivers/nvdimm/namespace_devs.c
drivers/pcmcia/electra_cf.c
drivers/leds/leds-da903x.c
drivers/nvdimm/region.c
drivers/pcmcia/sa1111_lubbock.c
drivers/leds/leds-lp55xx-common.c
drivers/pcmcia/yenta_socket.c
drivers/nvdimm/badrange.c
drivers/leds/leds-apu.c
drivers/scsi/scsi_dh.c
drivers/pcmcia/sa1111_badge4.c
drivers/nvdimm/label.c
drivers/leds/leds-menf21bmc.c
drivers/scsi/ses.c
drivers/nvdimm/claim.c
drivers/pcmcia/bfin_cf_pcmcia.c
drivers/leds/leds-as3645a.c
drivers/scsi/qlogicfas.c
drivers/pcmcia/vrc4173_cardu.c
drivers/leds/leds-rb532.c
drivers/scsi/dc395x.c
drivers/pcmcia/sa1100_h3600.c
drivers/scsi/scsi_module.c
drivers/pcmcia/sa1100_generic.c
drivers/leds/leds-lp5523.c
drivers/nvdimm/btt.c
drivers/pcmcia/pxa2xx_palmtc.c
drivers/scsi/qlogicpti.c
drivers/leds/leds-tca6507.c
drivers/nvdimm/dax_devs.c
drivers/leds/led-class-flash.c
drivers/scsi/aha152x.c
drivers/pcmcia/pxa2xx_colibri.c
drivers/leds/leds-lm3530.c
drivers/scsi/a4000t.c
drivers/pcmcia/sa1100_cerf.c
drivers/leds/leds-powernv.c
drivers/leds/leds-lt3593.c
drivers/scsi/virtio_scsi.c
drivers/nvdimm/blk.c
drivers/scsi/scsi_proc.c
drivers/leds/leds-pca9532.c
drivers/scsi/constants.c
drivers/nvdimm/bus.c
drivers/pcmcia/soc_common.c
drivers/leds/leds-bd2802.c
drivers/nvdimm/pfn_devs.c
drivers/pcmcia/i82092.c
drivers/leds/leds-regulator.c
drivers/scsi/NCR_Q720.c
drivers/leds/leds-pca963x.c
drivers/pcmcia/sa1111_generic.c
drivers/scsi/dmx3191d.c
drivers/pcmcia/pxa2xx_balloon3.c
drivers/pcmcia/vrc4171_card.c
drivers/scsi/aha1740.c
drivers/pcmcia/db1xxx_ss.c
drivers/scsi/sun3_scsi.c
drivers/pcmcia/m32r_pcc.c
drivers/scsi/vmw_pvscsi.c
drivers/pcmcia/sa1111_jornada720.c
drivers/scsi/zalon.c
drivers/scsi/st.c
drivers/pcmcia/m32r_cfc.c
drivers/scsi/mac_scsi.c
drivers/pcmcia/pxa2xx_cm_x270.c
drivers/scsi/scsicam.c
drivers/scsi/scsi_transport_iscsi.c
drivers/pcmcia/xxs1500_ss.c
drivers/pcmcia/pd6729.c
drivers/scsi/scsi_common.c
drivers/pcmcia/pxa2xx_vpac270.c
drivers/pcmcia/sa1100_simpad.c
drivers/scsi/a2091.c
drivers/pcmcia/omap_cf.c
drivers/scsi/eata_pio.c
drivers/pcmcia/bcm63xx_pcmcia.c
drivers/pcmcia/pxa2xx_cm_x2xx.c
drivers/scsi/a100u2w.c
drivers/pcmcia/tcic.c
drivers/pcmcia/sa11xx_base.c
drivers/pcmcia/at91_cf.c
drivers/pcmcia/sa1111_neponset.c
drivers/pcmcia/pxa2xx_palmld.c
drivers/pcmcia/pxa2xx_stargate2.c
drivers/pcmcia/pxa2xx_base.c
drivers/pcmcia/pxa2xx_trizeps4.c
drivers/ntb/ntb_transport.c
drivers/pcmcia/sa1100_assabet.c
drivers/pcmcia/rsrc_iodyn.c
drivers/pcmcia/pxa2xx_palmtx.c
drivers/pcmcia/pxa2xx_sharpsl.c
drivers/ntb/ntb.c
drivers/pcmcia/pxa2xx_mainstone.c
drivers/pcmcia/sa1100_nanoengine.c
drivers/pcmcia/cistpl.c
drivers/pcmcia/rsrc_nonstatic.c
drivers/pcmcia/ds.c
drivers/pcmcia/pxa2xx_e740.c
drivers/pcmcia/sa1100_shannon.c
drivers/pcmcia/socket_sysfs.c
drivers/pcmcia/i82365.c
drivers/tty/mips_ejtag_fdc.c
drivers/pcmcia/pxa2xx_hx4700.c
drivers/tty/n_gsm.c
drivers/pcmcia/cs.c
drivers/tty/sysrq.c
drivers/tty/tty_jobctrl.c
drivers/tty/synclink_gt.c
drivers/tty/ehv_bytechan.c
drivers/tty/pty.c
drivers/tty/n_tracesink.c
drivers/tty/n_tty.c
drivers/tty/tty_ldisc.c
drivers/tty/isicom.c
drivers/tty/tty_audit.c
drivers/tty/tty_ldsem.c
drivers/tty/tty_io.c
drivers/tty/n_tracerouter.c
drivers/tty/tty_buffer.c
drivers/tty/moxa.c
drivers/tty/rocket.c
drivers/tty/n_hdlc.c
drivers/tty/tty_baudrate.c
drivers/auxdisplay/ks0108.c
drivers/tty/bfin_jtag_comm.c
drivers/auxdisplay/arm-charlcd.c
drivers/tty/n_null.c
drivers/tty/tty_port.c
drivers/auxdisplay/panel.c
drivers/auxdisplay/hd44780.c
drivers/tty/tty_mutex.c
drivers/auxdisplay/ht16k33.c
drivers/tty/metag_da.c
drivers/auxdisplay/cfag12864bfb.c
drivers/tty/mxser.c
drivers/auxdisplay/img-ascii-lcd.c
drivers/tty/n_r3964.c
drivers/auxdisplay/cfag12864b.c
drivers/tty/synclink.c
drivers/auxdisplay/charlcd.c
drivers/tty/cyclades.c
drivers/tty/synclinkmp.c
drivers/tty/nozomi.c
drivers/rtc/rtc-davinci.c
drivers/tty/amiserial.c
drivers/rtc/rtc-rx4581.c
drivers/tty/tty_ioctl.c
drivers/rtc/rtc-starfire.c
drivers/rtc/rtc-max6916.c
drivers/rtc/rtc-puv3.c
drivers/tty/vcc.c
drivers/rtc/rtc-wm831x.c
drivers/dax/pmem.c
drivers/tty/goldfish.c
drivers/rtc/rtc-armada38x.c
drivers/rtc/rtc-lpc24xx.c
drivers/dax/super.c
drivers/rtc/rtc-ds1390.c
drivers/rtc/rtc-opal.c
drivers/dax/device.c
drivers/rtc/hctosys.c
drivers/rtc/rtc-ds1302.c
drivers/rtc/rtc-pcf85063.c
drivers/rtc/rtc-ftrtc010.c
drivers/rtc/rtc-ds1553.c
drivers/rtc/rtc-mv.c
drivers/rtc/rtc-sun6i.c
drivers/rtc/rtc-abx80x.c
drivers/rtc/rtc-mxc.c
drivers/w1/w1_io.c
drivers/rtc/rtc-rx8010.c
drivers/sh/pm_runtime.c
drivers/pci/pci-label.c
drivers/rtc/rtc-snvs.c
drivers/pci/iov.c
drivers/rtc/rtc-xgene.c
drivers/pci/setup-res.c
drivers/rtc/rtc-coh901331.c
drivers/pci/host-bridge.c
drivers/rtc/rtc-vr41xx.c
drivers/w1/w1.c
drivers/rtc/rtc-sh.c
drivers/pci/quirks.c
drivers/pci/irq.c
drivers/rtc/rtc-mc146818-lib.c
drivers/w1/w1_int.c
drivers/rtc/rtc-jz4740.c
drivers/pci/mmap.c
drivers/rtc/rtc-max8997.c
drivers/pci/proc.c
drivers/rtc/rtc-tile.c
drivers/w1/w1_family.c
drivers/pci/pci-stub.c
drivers/rtc/rtc-tegra.c
drivers/w1/w1_netlink.c
drivers/rtc/rtc-pic32.c
drivers/pci/pci-mid.c
drivers/rtc/rtc-bq4802.c
drivers/pci/setup-bus.c
drivers/rtc/rtc-tx4939.c
drivers/pci/ats.c
drivers/rtc/rtc-rtd119x.c
drivers/pci/xen-pcifront.c
drivers/pci/search.c
drivers/rtc/rtc-rx8025.c
drivers/rtc/rtc-max8998.c
drivers/pci/of.c
drivers/rtc/rtc-efi.c
drivers/pci/ecam.c
drivers/rtc/rtc-cpcap.c
drivers/pci/probe.c
drivers/vme/vme.c
drivers/rtc/rtc-imxdi.c
drivers/pci/pci-driver.c
drivers/rtc/rtc-ds1685.c
drivers/rtc/rtc-sun4v.c
drivers/rtc/rtc-pm8xxx.c
drivers/rtc/rtc-rk808.c
drivers/rtc/rtc-pcap.c
drivers/rtc/rtc-da9063.c
drivers/pci/slot.c
drivers/rtc/rtc-ab-b5ze-s3.c
drivers/pci/msi.c
drivers/rtc/rtc-m41t80.c
drivers/pci/pci-sysfs.c
drivers/rtc/rtc-ds1742.c
drivers/pci/rom.c
drivers/rtc/rtc-max6902.c
drivers/video/videomode.c
drivers/rtc/rtc-ds1672.c
drivers/pci/syscall.c
drivers/rtc/rtc-pcf2127.c
drivers/p
gitextract_c9h9pq36/
├── .editorconfig
├── .github/
│ ├── dependabot.yml
│ └── workflows/
│ ├── build-release.yml
│ └── ci.yml
├── .gitignore
├── CHANGELOG.md
├── CONTRIBUTING.md
├── Cargo.toml
├── Containerfile
├── LICENSE
├── Makefile
├── PULL_REQUEST_TEMPLATE.md
├── README.md
├── Trunk.toml
├── data/
│ ├── ansible_roles.txt
│ ├── ansible_tasks.txt
│ ├── boot_hooks.txt
│ ├── bootlog.txt
│ ├── cfiles.txt
│ ├── composer.txt
│ ├── css_properties.txt
│ ├── docker_packages.txt
│ ├── docker_tags.txt
│ ├── julia.csv
│ ├── os_releases.txt
│ ├── packages.txt
│ ├── rkhunter_checks.txt
│ ├── rkhunter_rootkits.txt
│ ├── rkhunter_tasks.txt
│ ├── simcity.txt
│ ├── terraform_aws_resources.txt
│ ├── terraform_azure_resources.txt
│ ├── terraform_gcp_resources.txt
│ ├── terraform_ids.txt
│ ├── web_apis.txt
│ └── wpt_categories.txt
├── index.html
├── release.toml
├── src/
│ ├── args.rs
│ ├── data.rs
│ ├── generators.rs
│ ├── io.rs
│ ├── lib.rs
│ ├── main.rs
│ └── modules/
│ ├── ansible.rs
│ ├── bootlog.rs
│ ├── botnet.rs
│ ├── bruteforce.rs
│ ├── cargo.rs
│ ├── cc.rs
│ ├── composer.rs
│ ├── cryptomining.rs
│ ├── docker_build.rs
│ ├── docker_image_rm.rs
│ ├── download.rs
│ ├── julia.rs
│ ├── kernel_compile.rs
│ ├── memdump.rs
│ ├── mkinitcpio.rs
│ ├── mod.rs
│ ├── rkhunter.rs
│ ├── simcity.rs
│ ├── terraform.rs
│ ├── weblog.rs
│ └── wpt.rs
└── static/
└── styles.css
SYMBOL INDEX (154 symbols across 26 files)
FILE: src/args.rs
function parse_speed_factor (line 7) | fn parse_speed_factor(s: &str) -> Result<f32, String> {
function parse_min_1 (line 16) | fn parse_min_1(s: &str) -> Result<u32, String> {
type AppConfig (line 27) | pub struct AppConfig {
method should_exit (line 81) | pub fn should_exit(&self) -> bool {
type AppConfig (line 68) | pub struct AppConfig {
method should_exit (line 81) | pub fn should_exit(&self) -> bool {
function parse_args (line 108) | pub fn parse_args() -> AppConfig {
function parse_args (line 118) | pub fn parse_args() -> AppConfig {
FILE: src/generators.rs
function gen_string_with_chars (line 14) | pub fn gen_string_with_chars(rng: &mut ThreadRng, char_set: &str, length...
function gen_hex_string (line 22) | pub fn gen_hex_string(rng: &mut ThreadRng, length: u64) -> String {
function gen_random_n_from_list_into_string (line 29) | pub fn gen_random_n_from_list_into_string(rng: &mut ThreadRng, list: &[&...
function gen_file_name_with_ext (line 35) | pub fn gen_file_name_with_ext(rng: &mut ThreadRng, files: &[&str], exten...
function gen_file_name (line 41) | pub fn gen_file_name(rng: &mut ThreadRng, files: &[&str], extensions: &[...
function gen_file_path (line 48) | pub fn gen_file_path<T: std::clone::Clone + AsRef<str> + std::convert::A...
function gen_package_version (line 64) | pub fn gen_package_version(rng: &mut ThreadRng) -> String {
FILE: src/io.rs
function csleep (line 15) | pub async fn csleep(length: u64) {
function csleep (line 31) | pub async fn csleep(length: u64) {
function write_to_xterm (line 55) | pub fn write_to_xterm(s: &str);
function dprint (line 59) | pub async fn dprint<S: Into<String>>(s: S, delay: u64) {
function print (line 86) | pub async fn print<S: Into<String>>(s: S) {
function newline (line 100) | pub async fn newline() {
function is_printable_ascii (line 105) | pub fn is_printable_ascii(a: u64) -> bool {
function cursor_up (line 109) | pub async fn cursor_up(n: u64) {
function erase_line (line 117) | pub async fn erase_line() {
function get_terminal_width (line 122) | pub fn get_terminal_width() -> usize {
function get_terminal_width (line 133) | pub fn get_terminal_width() -> usize;
FILE: src/lib.rs
function run (line 24) | pub async fn run(appconfig: AppConfig) {
function exit_handler (line 68) | pub fn exit_handler() {
FILE: src/main.rs
function main (line 14) | async fn main() -> Result<()> {
function main (line 55) | async fn main() {
FILE: src/modules/ansible.rs
type Ansible (line 16) | pub struct Ansible;
function do_for_all_hosts (line 18) | async fn do_for_all_hosts(hosts: &[String], is_gather: bool) {
method name (line 54) | fn name(&self) -> &'static str {
method signature (line 58) | fn signature(&self) -> String {
method run (line 62) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/bootlog.rs
type Bootlog (line 12) | pub struct Bootlog;
method name (line 16) | fn name(&self) -> &'static str {
method signature (line 20) | fn signature(&self) -> String {
method run (line 24) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/botnet.rs
type Botnet (line 10) | pub struct Botnet;
method name (line 14) | fn name(&self) -> &'static str {
method signature (line 18) | fn signature(&self) -> String {
method run (line 22) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/bruteforce.rs
type Bruteforce (line 17) | pub struct Bruteforce;
method name (line 21) | fn name(&self) -> &'static str {
method signature (line 25) | fn signature(&self) -> String {
method run (line 29) | async fn run(&self, app_config: &AppConfig) {
function sha256 (line 128) | fn sha256(s: &str) -> String {
function rainbow (line 136) | fn rainbow(s: &str) -> String {
function approx_color (line 153) | fn approx_color(c: colorgrad::Color) -> yansi::Color {
function gen_pass_and_hash (line 163) | fn gen_pass_and_hash<T: Rng>(rng: &mut T) -> (String, String) {
type HashGuesser (line 173) | struct HashGuesser {
method new (line 182) | fn new(hash: &str) -> Self {
method tick_guess (line 194) | fn tick_guess(&mut self) {
method completed (line 206) | fn completed(&self) -> bool {
method fmt (line 212) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
FILE: src/modules/cargo.rs
type Cargo (line 14) | pub struct Cargo;
method name (line 18) | fn name(&self) -> &'static str {
method signature (line 22) | fn signature(&self) -> String {
method run (line 26) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/cc.rs
function generate_includes (line 16) | fn generate_includes(file_list: &[&str], max: u32, rng: &mut ThreadRng) ...
function generate_linker_flags (line 32) | fn generate_linker_flags(candidates: &[&str], n: usize, rng: &mut Thread...
type Cc (line 37) | pub struct Cc;
method name (line 41) | fn name(&self) -> &'static str {
method signature (line 45) | fn signature(&self) -> String {
method run (line 49) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/composer.rs
function gen_package_version (line 14) | fn gen_package_version(rng: &mut ThreadRng) -> String {
type Composer (line 24) | pub struct Composer;
method name (line 28) | fn name(&self) -> &'static str {
method signature (line 32) | fn signature(&self) -> String {
method run (line 36) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/cryptomining.rs
type Crytomining (line 16) | pub struct Crytomining;
method name (line 21) | fn name(&self) -> &'static str {
method signature (line 25) | fn signature(&self) -> String {
method run (line 29) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/docker_build.rs
type DockerBuild (line 16) | pub struct DockerBuild;
method name (line 20) | fn name(&self) -> &'static str {
method signature (line 24) | fn signature(&self) -> String {
method run (line 28) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/docker_image_rm.rs
type DockerImageRm (line 12) | pub struct DockerImageRm;
method name (line 16) | fn name(&self) -> &'static str {
method signature (line 20) | fn signature(&self) -> String {
method run (line 24) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/download.rs
type Download (line 18) | pub struct Download;
method name (line 22) | fn name(&self) -> &'static str {
method signature (line 26) | fn signature(&self) -> String {
method run (line 30) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/julia.rs
type Package (line 17) | pub struct Package<'a> {
type Julia (line 23) | pub struct Julia;
method name (line 27) | fn name(&self) -> &'static str {
method signature (line 31) | fn signature(&self) -> String {
method run (line 35) | async fn run(&self, appconfig: &AppConfig) {
function print_banner (line 131) | async fn print_banner() {
function print_julia_prompt (line 155) | async fn print_julia_prompt() {
function print_pkg_prompt (line 159) | async fn print_pkg_prompt(project: &str) {
function log_action (line 163) | async fn log_action(action: impl Display, message: impl Display) {
function log_progress (line 168) | async fn log_progress(bar: &progress_string::Bar) {
function install_packages (line 173) | async fn install_packages(packages: &[&Package<'_>]) {
function download_artifacts (line 201) | async fn download_artifacts(artifacts: &[&Package<'_>]) {
function update_project_and_manifest (line 242) | async fn update_project_and_manifest(project: &str) {
function print_old_manifest_format_before (line 277) | async fn print_old_manifest_format_before(manifest_path: &str) {
function print_old_manifest_format_after (line 300) | async fn print_old_manifest_format_after(manifest_path: &str) {
function report_packages (line 316) | async fn report_packages(packages: &[&Package<'_>]) {
function build_artifacts (line 366) | async fn build_artifacts(artifacts: &[&Package<'_>]) {
function precompile (line 412) | async fn precompile(packages: &[&Package<'_>]) {
function gc (line 453) | async fn gc() {
FILE: src/modules/kernel_compile.rs
function gen_header (line 14) | fn gen_header(arch: &str, rng: &mut ThreadRng) -> String {
function gen_object (line 39) | fn gen_object(arch: &str, rng: &mut ThreadRng) -> String {
function gen_special (line 64) | fn gen_special(arch: &str, rng: &mut ThreadRng) -> String {
function gen_line (line 100) | fn gen_line(arch: &str, rng: &mut ThreadRng) -> String {
type KernelCompile (line 110) | pub struct KernelCompile;
method name (line 114) | fn name(&self) -> &'static str {
method signature (line 118) | fn signature(&self) -> String {
method run (line 122) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/memdump.rs
type Memdump (line 12) | pub struct Memdump;
method name (line 16) | fn name(&self) -> &'static str {
method signature (line 20) | fn signature(&self) -> String {
method run (line 24) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/mkinitcpio.rs
constant REQUIRED_HOOKS (line 13) | const REQUIRED_HOOKS: &[&str] = &[
function warn (line 23) | async fn warn(msg: &str) {
function msg1 (line 33) | async fn msg1(msg: &str) {
function msg2 (line 43) | async fn msg2(msg: &str) {
function build (line 53) | async fn build(
type Mkinitcpio (line 107) | pub struct Mkinitcpio;
method name (line 111) | fn name(&self) -> &'static str {
method signature (line 115) | fn signature(&self) -> String {
method run (line 119) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/mod.rs
type Module (line 30) | pub trait Module: Sync + Send {
method name (line 31) | fn name(&self) -> &'static str;
method signature (line 32) | fn signature(&self) -> String;
method run (line 33) | async fn run(&self, app_config: &AppConfig);
FILE: src/modules/rkhunter.rs
type RkHunter (line 14) | pub struct RkHunter;
method name (line 18) | fn name(&self) -> &'static str {
method signature (line 22) | fn signature(&self) -> String {
method run (line 26) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/simcity.rs
type Simcity (line 12) | pub struct Simcity;
method name (line 16) | fn name(&self) -> &'static str {
method signature (line 20) | fn signature(&self) -> String {
method run (line 24) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/terraform.rs
type Terraform (line 19) | pub struct Terraform;
function bold (line 21) | async fn bold(msg: &str) {
method name (line 28) | fn name(&self) -> &'static str {
method signature (line 32) | fn signature(&self) -> String {
method run (line 36) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/weblog.rs
type Weblog (line 18) | pub struct Weblog;
method name (line 22) | fn name(&self) -> &'static str {
method signature (line 26) | fn signature(&self) -> String {
method run (line 30) | async fn run(&self, appconfig: &AppConfig) {
FILE: src/modules/wpt.rs
constant ENCODING_TYPES (line 11) | const ENCODING_TYPES: &[&str] = &[
type WPT (line 18) | pub struct WPT;
method name (line 22) | fn name(&self) -> &'static str {
method signature (line 26) | fn signature(&self) -> String {
method run (line 30) | async fn run(&self, _appconfig: &AppConfig) {
function generate_wpt_test_path (line 181) | fn generate_wpt_test_path(rng: &mut rand::rngs::ThreadRng) -> String {
function generate_stack_trace (line 235) | fn generate_stack_trace(
Condensed preview — 66 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,992K chars).
[
{
"path": ".editorconfig",
"chars": 219,
"preview": "root = true\n\n[*]\nend_of_line = lf\ninsert_final_newline = true\ntrim_trailing_whitespace = true\ncharset = utf-8\nindent_sty"
},
{
"path": ".github/dependabot.yml",
"chars": 176,
"preview": "version: 2\nupdates:\n - package-ecosystem: cargo\n directory: \"/\"\n schedule:\n interval: monthly\n groups:\n "
},
{
"path": ".github/workflows/build-release.yml",
"chars": 6626,
"preview": "name: Build/publish release\n\non: [push, pull_request]\n\njobs:\n publish:\n name: Binary ${{ matrix.target }} (on ${{ ma"
},
{
"path": ".github/workflows/ci.yml",
"chars": 633,
"preview": "name: CI\n\non: [push, pull_request]\n\njobs:\n ci:\n name: ${{ matrix.os }}\n runs-on: ${{ matrix.os }}\n strategy:\n "
},
{
"path": ".gitignore",
"chars": 26,
"preview": "target/\ndist/\n\n**/*.rs.bk\n"
},
{
"path": "CHANGELOG.md",
"chars": 4641,
"preview": "# Changelog\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Change"
},
{
"path": "CONTRIBUTING.md",
"chars": 532,
"preview": "# How to contribute\n\nIf you want to add a cool module just implement it, lint it with [clippy](https://github.com/rust-l"
},
{
"path": "Cargo.toml",
"chars": 1858,
"preview": "[package]\nname = \"genact\"\ndescription = \"A nonsense activity generator\"\nversion = \"1.5.1\"\nrepository = \"https://github.c"
},
{
"path": "Containerfile",
"chars": 70,
"preview": "FROM scratch\nCOPY --chmod=755 genact /app/\nENTRYPOINT [\"/app/genact\"]\n"
},
{
"path": "LICENSE",
"chars": 1058,
"preview": "Copyright 2020 Sven-Hendrik Haase\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this "
},
{
"path": "Makefile",
"chars": 786,
"preview": ".PHONY: build-linux\nbuild-linux:\n\tcargo build --target x86_64-unknown-linux-musl --release\n\tstrip target/x86_64-unknown-"
},
{
"path": "PULL_REQUEST_TEMPLATE.md",
"chars": 136,
"preview": "<!-- If you're adding a new module, please consider posting a screenshot or a gif since it would be nice to see what it "
},
{
"path": "README.md",
"chars": 5018,
"preview": "# genact - a nonsense activity generator\n\n[](https://gi"
},
{
"path": "Trunk.toml",
"chars": 32,
"preview": "[build]\npublic_url = \"/genact/\"\n"
},
{
"path": "data/ansible_roles.txt",
"chars": 733,
"preview": "alertmanager\ncompany_boxes_sync\nlolbuild\narchive\narchive_web\ncompanyusers\ncompanyweb\ncompanywiki\naurweb\nborg_client\nborg"
},
{
"path": "data/ansible_tasks.txt",
"chars": 29810,
"preview": "daemon reload\nrestart companyweb memcached\ninstall debuginfod\ncreate ssl cert\nconfigure debuginfod systemd service\ncreat"
},
{
"path": "data/boot_hooks.txt",
"chars": 125,
"preview": "base\nudev\nusr\nresume\nautodetect\nmodconf\nblock\nnet\nmdadm\nmdadm_udev\nkeyboard\nkeymap\nconsolefont\nencrypt\nlvm2\nfsck\nfilesys"
},
{
"path": "data/bootlog.txt",
"chars": 16722,
"preview": "PMAP: PCID enabled\nHacknet Kernel Version 1.0.0: Tue Oct 11 20:56:35 PDT 2011; root:xnu-1699.22.73~1/RELEASE_X86_64\nvm_p"
},
{
"path": "data/cfiles.txt",
"chars": 850221,
"preview": "security/lsm_audit.c\nsecurity/inode.c\nsound/last.c\nsecurity/commoncap.c\nsecurity/security.c\nsound/sound_core.c\nsecurity/"
},
{
"path": "data/composer.txt",
"chars": 2700,
"preview": "2amigos/yii2-date-picker-widget\naws/aws-sdk-php\nbeberlei/composer-monorepo-plugin\nbehat/gherkin\nbower-asset/ace-builds\nb"
},
{
"path": "data/css_properties.txt",
"chars": 690,
"preview": "align\nanchor-position\nanimations\nbackgrounds\nborders\nbox\nbreak\ncascade\ncolor\ncolor-adjust\ncolor-hdr\nconditional\ncontain\n"
},
{
"path": "data/docker_packages.txt",
"chars": 1521,
"preview": "couchbase\nredis\nmongo\nnginx\nubuntu\nbusybox\nnode\nmysql\nhttpd\nhello-world\npostgres\nalpine\nmemcached\ntraefik\nmariadb\nconsul"
},
{
"path": "data/docker_tags.txt",
"chars": 1040,
"preview": "0.1.4.4148\n0.2.26.Final\n0.11.14\n0.34.2-ls29\n1.1.2-centos\n1.1.7\n1.4\n1.4.2\n1.5\n1.5.6\n1.5.14-alpine\n1.6\n1.6.14-alpine\n1.7.3"
},
{
"path": "data/julia.csv",
"chars": 628973,
"preview": "AAindex,1cd36ffe,0.1.0,0.2.0\nABBAj,6b41afa3,0.1.1\nABC_jll,73717f16,1.1.0+0\nACME,ca8b7239,0.7.4,0.7.5,0.8.0,0.9.0,0.9.1,0"
},
{
"path": "data/os_releases.txt",
"chars": 298,
"preview": "5.0.7-arch1-1-ARCH\n5.2\n2.6.32-431.el6.i686\n9.0.2.2\n1.5.19(0.150/4/2)\n2.2.1(0.289/5/3)\n3.1.9+\n3.6.11+\n8.0.1-amd64\n2.13-DE"
},
{
"path": "data/packages.txt",
"chars": 134502,
"preview": "ktmw32-sys\nktensor\nktrace\nktm5e-dice\nktmpl\nzhash\nejdb-sys\nejdb\nafterparty\nafio\nafi_docf\naf_unix\nafsort\nafl-sys\nafl-plugi"
},
{
"path": "data/rkhunter_checks.txt",
"chars": 10618,
"preview": "Checking for directory '/dev/ptyas'\nChecking for directory '/dev/ptyxx'\nChecking for directory '/lib/backup'\nChecking fo"
},
{
"path": "data/rkhunter_rootkits.txt",
"chars": 419,
"preview": "AjaKit Rootkit\nApache Worm\nAmbient (ark) Rootkit\nbeX2 Rootkit\ncb Rootkit\nDanny-Boy's Abuse Kit\nDiamorphine LKM\nDreams Ro"
},
{
"path": "data/rkhunter_tasks.txt",
"chars": 577,
"preview": "Performing 'shared libraries' checks\nPerforming 'strings' command checks\nPerforming additional rootkit checks\nPerforming"
},
{
"path": "data/simcity.txt",
"chars": 3011,
"preview": "Adding Hidden Agendas\nAdjusting Bell Curves\nAesthesizing Industrial Areas\nAligning Covariance Matrices\nApplying Feng Shu"
},
{
"path": "data/terraform_aws_resources.txt",
"chars": 37751,
"preview": "aws_accessanalyzer_analyzer\naws_accessanalyzer_archive_rule\naws_account_alternate_contact\naws_account_primary_contact\naw"
},
{
"path": "data/terraform_azure_resources.txt",
"chars": 38940,
"preview": "azurerm_aadb2c_directory\nazurerm_active_directory_domain_service\nazurerm_active_directory_domain_service_replica_set\nazu"
},
{
"path": "data/terraform_gcp_resources.txt",
"chars": 21406,
"preview": "google_access_context_manager_access_level\ngoogle_access_context_manager_access_level_condition\ngoogle_access_context_ma"
},
{
"path": "data/terraform_ids.txt",
"chars": 2087,
"preview": "accessor\nactivator\nadjuster\nadmin\nagent\nallocator\nanalyzer\nannotator\narchiver\narranger\nassembler\nassessor\nassigner\naudit"
},
{
"path": "data/web_apis.txt",
"chars": 1232,
"preview": "FileAPI\nIndexedDB\nWebCryptoAPI\nWebGL\nWebRTC\nWebSocket\nWebAssembly\nWebDriver\nWebCodecs\nWebNN\naudio\nbattery\nbeacon\nblob\ncl"
},
{
"path": "data/wpt_categories.txt",
"chars": 1749,
"preview": "/CSS2\n/CSS2/floats\n/CSS2/linebox\n/CSS2/normal-flow\n/CSS2/text\n/CSS2/visudet\n/accessibility/crashtests\n/canvas/drawing-im"
},
{
"path": "index.html",
"chars": 1189,
"preview": "<!DOCTYPE html>\n<html>\n\n<head>\n <title>genact 1.5.1</title>\n <meta charset=\"utf-8\" />\n <meta http-equiv=\"X-UA-C"
},
{
"path": "release.toml",
"chars": 671,
"preview": "sign-commit = true\nsign-tag = true\npre-release-replacements = [\n {file=\"index.html\", search=\"genact [0-9][a-z0-9\\\\.-]+\""
},
{
"path": "src/args.rs",
"chars": 4710,
"preview": "#[cfg(not(target_arch = \"wasm32\"))]\nuse clap::{Parser, builder::PossibleValuesParser};\n\nuse crate::modules::ALL_MODULES;"
},
{
"path": "src/data.rs",
"chars": 4897,
"preview": "use std::sync::LazyLock;\n\nstatic BOOTLOG: &str = include_str!(\"../data/bootlog.txt\");\nstatic CFILES: &str = include_str!"
},
{
"path": "src/generators.rs",
"chars": 2687,
"preview": "//! Module containing random utilities.\nuse std::cmp;\nuse std::path::{Path, PathBuf};\nuse std::str;\n\nuse rand::RngExt;\nu"
},
{
"path": "src/io.rs",
"chars": 3770,
"preview": "//! Module containing functionality for I/O operations.\n\n#[cfg(target_arch = \"wasm32\")]\nuse wasm_bindgen::prelude::*;\n\n#"
},
{
"path": "src/lib.rs",
"chars": 2255,
"preview": "pub mod args;\nmod data;\nmod generators;\nmod io;\npub mod modules;\n\nuse std::sync::LazyLock;\nuse std::sync::atomic::{Atomi"
},
{
"path": "src/main.rs",
"chars": 1751,
"preview": "#[cfg(not(target_arch = \"wasm32\"))]\nuse anyhow::Result;\n\nuse genact::args::parse_args;\nuse genact::{INSTANT_PRINT_LINES,"
},
{
"path": "src/modules/ansible.rs",
"chars": 3921,
"preview": "//! Pretend to run Ansible to set up some systems\nuse async_trait::async_trait;\nuse fake::Fake;\nuse fake::faker::interne"
},
{
"path": "src/modules/bootlog.rs",
"chars": 2313,
"preview": "//! Pretend to boot a system\nuse async_trait::async_trait;\nuse rand::seq::IndexedRandom;\nuse rand::{RngExt, rng};\nuse ya"
},
{
"path": "src/modules/botnet.rs",
"chars": 3180,
"preview": "//! Pretend to run and orchestrate a botnet\nuse async_trait::async_trait;\nuse rand::{RngExt, rng};\nuse yansi::Paint;\n\nus"
},
{
"path": "src/modules/bruteforce.rs",
"chars": 6386,
"preview": "//! Choose a password, hash it, and pretend to decrypt that hash\nuse std::str::from_utf8;\n\nuse async_trait::async_trait;"
},
{
"path": "src/modules/cargo.rs",
"chars": 2037,
"preview": "//! Pretend to run cargo to install rust packages\nuse async_trait::async_trait;\nuse instant::Instant;\nuse rand::seq::Ind"
},
{
"path": "src/modules/cc.rs",
"chars": 5567,
"preview": "//! Pretend to run a C compiler\nuse std::path::Path;\n\nuse async_trait::async_trait;\nuse rand::rngs::ThreadRng;\nuse rand:"
},
{
"path": "src/modules/composer.rs",
"chars": 2652,
"preview": "//! Pretend to install composer packages\nuse async_trait::async_trait;\nuse rand::rngs::ThreadRng;\nuse rand::seq::Indexed"
},
{
"path": "src/modules/cryptomining.rs",
"chars": 5531,
"preview": "//! Pretend to mine a cryptocurrency\nuse async_trait::async_trait;\nuse chrono::Duration;\nuse chrono::prelude::*;\nuse ins"
},
{
"path": "src/modules/docker_build.rs",
"chars": 3363,
"preview": "//! Module that pretends to build Docker images\nuse async_trait::async_trait;\nuse rand::RngExt;\nuse rand::rng;\nuse rand:"
},
{
"path": "src/modules/docker_image_rm.rs",
"chars": 1928,
"preview": "//! Pretend to delete Docker images\nuse async_trait::async_trait;\nuse rand::seq::IndexedRandom;\nuse rand::{RngExt, rng};"
},
{
"path": "src/modules/download.rs",
"chars": 4721,
"preview": "//! Pretend to do some downloading\nuse std::cmp::max;\nuse std::time::Duration;\n\nuse async_trait::async_trait;\nuse humans"
},
{
"path": "src/modules/julia.rs",
"chars": 14734,
"preview": "//! Pretend to update julia packages\nuse std::fmt::Display;\n\nuse async_trait::async_trait;\nuse instant::Instant;\nuse ran"
},
{
"path": "src/modules/kernel_compile.rs",
"chars": 5763,
"preview": "//! Pretend to build a Linux kernel\nuse async_trait::async_trait;\nuse rand::rngs::ThreadRng;\nuse rand::seq::IndexedRando"
},
{
"path": "src/modules/memdump.rs",
"chars": 2061,
"preview": "//! Pretend to dump some random memory locations\nuse std::io::{Write, stdout};\n\nuse async_trait::async_trait;\nuse rand::"
},
{
"path": "src/modules/mkinitcpio.rs",
"chars": 4497,
"preview": "//! Pretend to run mkinitcpio\nuse async_trait::async_trait;\nuse rand::seq::IndexedRandom;\nuse rand::{RngExt, rng};\nuse r"
},
{
"path": "src/modules/mod.rs",
"chars": 2316,
"preview": "pub mod ansible;\npub mod bootlog;\npub mod botnet;\npub mod bruteforce;\npub mod cargo;\npub mod cc;\npub mod composer;\npub m"
},
{
"path": "src/modules/rkhunter.rs",
"chars": 5160,
"preview": "//! Pretend to detect rootkits using rkhunter\nuse async_trait::async_trait;\nuse chrono::Utc;\nuse rand::seq::{IndexedRand"
},
{
"path": "src/modules/simcity.rs",
"chars": 4013,
"preview": "//! Print some Sim City loading screen status quips\nuse async_trait::async_trait;\nuse rand::seq::IndexedRandom;\nuse rand"
},
{
"path": "src/modules/terraform.rs",
"chars": 5067,
"preview": "//! Pretend to run Terraform\nuse async_trait::async_trait;\nuse instant::Instant;\nuse rand::RngExt;\nuse rand::rng;\nuse ra"
},
{
"path": "src/modules/weblog.rs",
"chars": 2534,
"preview": "//! Pretend to tail a web server log\nuse async_trait::async_trait;\nuse chrono::prelude::*;\nuse fake::Fake;\nuse fake::fak"
},
{
"path": "src/modules/wpt.rs",
"chars": 12964,
"preview": "//! Pretend to do a full WPT run\nuse async_trait::async_trait;\nuse rand::prelude::IndexedRandom;\nuse rand::{RngExt, rng}"
},
{
"path": "static/styles.css",
"chars": 170,
"preview": "html, body {\n background-color: black;\n height: 100%;\n}\n\n#terminal {\n height: 100%;\n overflow: hidden\n}\n\n.xt"
}
]
About this extraction
This page contains the full source code of the svenstaro/genact GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 66 files (1.8 MB), approximately 954.3k tokens, and a symbol index with 154 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.