Skip to content

Commit b07d761

Browse files
gameromana-nogikh
authored andcommitted
all: fix typos
1 parent e7dd99b commit b07d761

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/linux/external_fuzzing_usb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ External USB fuzzing for Linux kernel
22
=====================================
33

44
syzkaller supports fuzzing the Linux kernel USB subsystem from the external side.
5-
Instead of relying on external hardware (like [Facedancer](https://github.com/usb-tools/Facedancer)-based boards) or VM management software features (like QEMU [usbredir](https://www.spice-space.org/usbredir.html)), syzkaller fuzzes USB fully within a (potentially-virtualized) enviroment that runs the Linux kernel.
5+
Instead of relying on external hardware (like [Facedancer](https://github.com/usb-tools/Facedancer)-based boards) or VM management software features (like QEMU [usbredir](https://www.spice-space.org/usbredir.html)), syzkaller fuzzes USB fully within a (potentially-virtualized) environment that runs the Linux kernel.
66

77
The USB fuzzing support in syzkaller is based on:
88

docs/linux/setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ Make sure that your GCC meets this requirement, or get a GCC that [syzbot](/docs
6767
Besides coverage support in GCC, you also need support for it on the kernel side.
6868
KCOV was added into mainline Linux kernel in version 4.6 and is be enabled by `CONFIG_KCOV=y` kernel configation option.
6969
For older kernels you need to at least backport commit [kernel: add kcov code coverage](https://github.com/torvalds/linux/commit/5c9a8750a6409c63a0f01d51a9024861022f6593).
70-
Besides that, it's recomended to backport all kernel patches that touch `kernel/kcov.c`.
70+
Besides that, it's recommended to backport all kernel patches that touch `kernel/kcov.c`.
7171

7272
To enable more syzkaller features and improve bug detection abilities, it's recommended to use additional config options.
7373
See [this page](kernel_configs.md) for details.
7474

7575
### VM Setup
7676

7777
Syzkaller performs kernel fuzzing on worker virtual machines or physical devices.
78-
These worker enviroments are referred to as VMs.
78+
These worker environments are referred to as VMs.
7979
Out-of-the-box syzkaller supports QEMU, kvmtool and GCE virtual machines, Android devices and Odroid C2 boards.
8080

8181
These are the generic requirements for a syzkaller VM:

sys/linux/io_uring.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ type io_uring_timeout_completion_event_count int64[0:10]
445445
# openat and openat2 returns a useful resource (fd) that we can use for other
446446
# systemcalls. The resulting fds are returned within io_uring_cqe.res. The only way
447447
# to identify cqes for those operations is to keep track of their user data. Thus,
448-
# use a seperate set of sqe_user_data range for openat and openat2.
448+
# use a separate set of sqe_user_data range for openat and openat2.
449449
sqe_user_data_not_openat = 0, 1
450450
sqe_user_data_openat = 0x12345, 0x23456
451451
sqe_user_data = 0, 1, 0x12345, 0x23456

tools/syz-headerparser/headerlib/container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def get_syzkaller_field_body(self):
4646
Returns the metadata description for a struct field in syzkaller format.
4747
eg: "len intptr".
4848
In cases where more than one syzkaller type maps to a native type, return
49-
a string with possible syzkaller types seperated by '|'.
49+
a string with possible syzkaller types separated by '|'.
5050
'''
5151

5252
def _get_syzkaller_type(native_type):

0 commit comments

Comments
 (0)