FreeBSD/src eca3c05sys/compat/linprocfs linprocfs.c

linprocfs: Correct sysfs /proc/<pid>/mountinfo entry

Technically mount source could be an arbitrary string (since it's
effectively ignored), but it's common to repeat fs type there.

(cherry picked from commit b9752d5d1cea30a39e89c83ea3aeb539581418cb)
DeltaFile
+1-5sys/compat/linprocfs/linprocfs.c
+1-51 files

FreeBSD/src b9752d5sys/compat/linprocfs linprocfs.c

linprocfs: Correct sysfs /proc/<pid>/mountinfo entry

Technically mount source could be an arbitrary string (since it's
effectively ignored), but it's common to repeat fs type there.
DeltaFile
+1-5sys/compat/linprocfs/linprocfs.c
+1-51 files

FreeBSD/src 3f00a06sys/compat/linprocfs linprocfs.c

linprocfs: Properly reset error variable for mtab generation

Both functions linprocfs_domtab() and linprocfs_doprocmountinfo() are
logically identical, but the former fails with ECANCELED because error
is not reset after the for loop.

Reviewed by:    jrm, fluffy
MFC after:      2 weeks
Differential Revision:  https://reviews.freebsd.org/D47865

(cherry picked from commit 58c7db14cd71c41f59d80d26d921782c0c27d523)
DeltaFile
+3-3sys/compat/linprocfs/linprocfs.c
+3-31 files

FreeBSD/src 7700d45sys/compat/linprocfs linprocfs.c

linprocfs: Properly reset error variable for mtab generation

Both functions linprocfs_domtab() and linprocfs_doprocmountinfo() are
logically identical, but the former fails with ECANCELED because error
is not reset after the for loop.

Reviewed by:    jrm, fluffy
MFC after:      2 weeks
Differential Revision:  https://reviews.freebsd.org/D47865

(cherry picked from commit 58c7db14cd71c41f59d80d26d921782c0c27d523)
DeltaFile
+3-3sys/compat/linprocfs/linprocfs.c
+3-31 files

FreeBSD/src 58c7db1sys/compat/linprocfs linprocfs.c

linprocfs: Properly reset error variable for mtab generation

Both functions linprocfs_domtab() and linprocfs_doprocmountinfo() are
logically identical, but the former fails with ECANCELED because error
is not reset after the for loop.

Reviewed by:    jrm, fluffy
MFC after:      2 weeks
Differential Revision:  https://reviews.freebsd.org/D47865
DeltaFile
+3-3sys/compat/linprocfs/linprocfs.c
+3-31 files

FreeBSD/src 04d3f8esys/compat/linprocfs linprocfs.c

linprocfs: Add support for proc/sys/fs/mqueue/*

Reviewed by: imp, kib
Pull Request: https://github.com/freebsd/freebsd-src/pull/1248
DeltaFile
+107-0sys/compat/linprocfs/linprocfs.c
+107-01 files

FreeBSD/src 208f11esys/compat/linprocfs linprocfs.c

linprocfs: use %z for size_t arguments

64-bit doesn't care or give a warning, but i386 compile complains
(rightly) that these are size_t and need a %z modifier.

Fixes: 25a04527b706
Sponsored by:           Netflix
DeltaFile
+3-3sys/compat/linprocfs/linprocfs.c
+3-31 files

FreeBSD/src 25a0452sys/compat/linprocfs linprocfs.c

linprocfs: Add support for proc/sysvipc/{msg,sem,shm}

Reviewed by: imp,kib
Pull Request: https://github.com/freebsd/freebsd-src/pull/1232
DeltaFile
+137-0sys/compat/linprocfs/linprocfs.c
+137-01 files

FreeBSD/src 71ffda4sys/compat/linprocfs linprocfs.c

Revert linprocfs commits

There's a race in these that I missed in my review that needs
to be resolved.

This reverts commit ee2e36686e846d412deac23344185f4b8a8c0285.
This reverts commit 02f481a30b8269c7cad24ec2920ca09751708a1e.
This reverts commit 099a81a4173bc5b121e50d4e27ea5fafdda8475b.
DeltaFile
+0-182sys/compat/linprocfs/linprocfs.c
+0-1821 files

FreeBSD/src ee2e366sys/compat/linprocfs linprocfs.c

linprocfs: Really fix time_t type issue

The cast to (long) is wrong on all the other 32-bit platforms. (long
long) is the correct type on all platforms. Also, use a z modifier for
size_t which also fails on 32-bit platforms.

Fixes: 02f481a30b82
Sponsored by: Netflix
DeltaFile
+11-11sys/compat/linprocfs/linprocfs.c
+11-111 files

FreeBSD/src 02f481asys/compat/linprocfs linprocfs.c

linprocfs: Fix i386 time type

Cast the time type to (long). This is correct on all architectures. On
i386, this promotes the int time_t to a long (which is also 32-bit). On
64-bit architectures, this promotes the 64-bit signed time_t to a 64-bit
signed int type.

Sponsored by:           Netflix
DeltaFile
+8-8sys/compat/linprocfs/linprocfs.c
+8-81 files

FreeBSD/src 099a81asys/compat/linprocfs linprocfs.c

linprocfs: Add support for proc/sysvipc/{msg,sem,shm}

Signed-off-by: Ricardo Branco <rbranco at suse.de>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/1218
DeltaFile
+182-0sys/compat/linprocfs/linprocfs.c
+182-01 files

FreeBSD/src e3212b7sys/compat/linprocfs linprocfs.c

linprocfs: Avoid using a sysctl to get the CPU model string

This will fail if the reading process is in capability mode.  Just copy
the string directly.

PR:             276043
Reviewed by:    emaste, imp, kib
Reported and tested by: Ricardo Branco <rbranco at suse.com>
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D43281

(cherry picked from commit d74a742704eb81f0c6f4aa83e4cb0de26a81c400)
DeltaFile
+1-10sys/compat/linprocfs/linprocfs.c
+1-101 files

FreeBSD/src b2dfbd7sys/compat/linprocfs linprocfs.c

linprocfs: Avoid using a sysctl to get the CPU model string

This will fail if the reading process is in capability mode.  Just copy
the string directly.

PR:             276043
Reviewed by:    emaste, imp, kib
Reported and tested by: Ricardo Branco <rbranco at suse.com>
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D43281

(cherry picked from commit d74a742704eb81f0c6f4aa83e4cb0de26a81c400)
DeltaFile
+1-10sys/compat/linprocfs/linprocfs.c
+1-101 files

FreeBSD/src d74a742sys/compat/linprocfs linprocfs.c

linprocfs: Avoid using a sysctl to get the CPU model string

This will fail if the reading process is in capability mode.  Just copy
the string directly.

PR:             276043
Reviewed by:    emaste, imp, kib
Reported and tested by: Ricardo Branco <rbranco at suse.com>
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D43281
DeltaFile
+1-10sys/compat/linprocfs/linprocfs.c
+1-101 files

FreeBSD/src 29363fbsys/libkern bcopy.c, sys/rpc rpcb_clnt.c rpcb_prot.c

sys: Remove ancient SCCS tags.

Remove ancient SCCS tags from the tree, automated scripting, with two
minor fixup to keep things compiling. All the common forms in the tree
were removed with a perl script.

Sponsored by:           Netflix
DeltaFile
+0-6sys/libkern/bcopy.c
+0-6sys/rpc/rpcb_clnt.c
+0-5sys/rpc/rpcb_prot.c
+0-5sys/rpc/clnt_vc.c
+0-5sys/rpc/clnt_bck.c
+0-4sys/rpc/rpc_callmsg.c
+0-31622 files not shown
+0-1,332628 files

FreeBSD/src 3bc8099sys/arm64/qoriq qoriq_dw_pci.c, sys/dev/cfe cfe_env.c

sys: Remove $FreeBSD$: one-line .c pattern

Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/

Similar commit in current:
(cherry picked from commit 685dc743dc3b)
DeltaFile
+0-3sys/dev/cfe/cfe_env.c
+0-3sys/dev/extres/clk/clk_gate.c
+0-3sys/dev/ioat/ioat_test.h
+0-3sys/dev/cxgb/common/cxgb_t3_hw.c
+0-3sys/arm64/qoriq/qoriq_dw_pci.c
+0-3sys/kern/subr_syscall.c
+0-184,033 files not shown
+0-7,9144,039 files

FreeBSD/src cb1fab0sys/compat/linprocfs linprocfs.c

linprocfs(5): Remove sys/cdefs.h inclusion where it's not needed due to 685dc743
DeltaFile
+0-1sys/compat/linprocfs/linprocfs.c
+0-11 files

FreeBSD/src 7bbdcdcsys/compat/linprocfs linprocfs.c

linprocfs(5): Follow style(9), sort includes
DeltaFile
+2-2sys/compat/linprocfs/linprocfs.c
+2-21 files

FreeBSD/src e738085sys/dev/syscons/rain rain_saver.c, sys/dev/syscons/warp warp_saver.c

Remove my middle name.
DeltaFile
+1-1sys/dev/syscons/rain/rain_saver.c
+1-1sys/dev/syscons/warp/warp_saver.c
+1-1sys/dev/usb/serial/ucycom.c
+1-1sys/fs/pseudofs/pseudofs.c
+1-1sys/fs/pseudofs/pseudofs.h
+1-1sys/fs/pseudofs/pseudofs_fileno.c
+6-644 files not shown
+50-5050 files

FreeBSD/src 685dc74sys/arm/arm swtch.S, sys/arm/mv/armadaxp mptramp.S

sys: Remove $FreeBSD$: one-line .c pattern

Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
DeltaFile
+0-3sys/arm/arm/swtch.S
+0-3sys/dev/extres/clk/clk_gate.c
+0-3sys/arm/mv/armadaxp/mptramp.S
+0-3sys/dev/extres/clk/clk_div.c
+0-3sys/dev/cxgb/common/cxgb_t3_hw.c
+0-3sys/dev/cfe/cfe_env.c
+0-183,795 files not shown
+0-7,4523,801 files

FreeBSD/src a482fffsys/compat/linprocfs linprocfs.c

linprocfs: Rework according to the new ABI altroot facility

By 3d2fec7d the ABI prefix path added to the struct pwd.
Use it in the mounts, mountinfo filler functions.

Differential revision:  https://reviews.freebsd.org/D39438
MFC after:              2 month
DeltaFile
+23-29sys/compat/linprocfs/linprocfs.c
+23-291 files

FreeBSD/src 6c5786fsys/compat/linprocfs linprocfs.c, sys/compat/linux linux.c linux_ioctl.c

linux(4): Migrate to IfAPI

Migrate linux and linprocfs to use the IfAPI interfaces instead of
direct ifnet accesses.
The code initially writed by jhibbits@, and adapted by me to 3ab3c9c2.

Reviewed by:            jhibbits
Differential Revision:  https://reviews.freebsd.org/D38735
DeltaFile
+102-56sys/compat/linux/linux.c
+72-52sys/compat/linux/linux_ioctl.c
+40-32sys/compat/linprocfs/linprocfs.c
+2-2sys/compat/linux/linux.h
+216-1424 files

FreeBSD/src 3c4af6fsys/compat/linprocfs linprocfs.c

linprocfs(4): Fixup process size in the /proc/pid/stat file

According to the Linux sources the kernel exposes a proces virtual
memory size via proc filesystem into the three files - stat, status
and statm. This is the struct mm->total_vm value adjusted to the
corresponding units - bytes, kilobytes and pages.

The fix is based on a fernape@ analysis.

PR:             265937
Reported by:    Ray Bellis
MFC after:      3 days

(cherry picked from commit a55b5a9aed3981fcec205e246436991d138c78a2)
DeltaFile
+1-1sys/compat/linprocfs/linprocfs.c
+1-11 files

FreeBSD/src 413a08asys/compat/linprocfs linprocfs.c

linprocfs(4): Fixup process size in the /proc/pid/stat file

According to the Linux sources the kernel exposes a proces virtual
memory size via proc filesystem into the three files - stat, status
and statm. This is the struct mm->total_vm value adjusted to the
corresponding units - bytes, kilobytes and pages.

The fix is based on a fernape@ analysis.

Approved by:    re (delphij)
PR:             265937
Reported by:    Ray Bellis
MFC after:      3 days

(cherry picked from commit a55b5a9aed3981fcec205e246436991d138c78a2)
(cherry picked from commit 867e8404efed7a33553646b89588831db1a2102b)
DeltaFile
+1-1sys/compat/linprocfs/linprocfs.c
+1-11 files

FreeBSD/src 867e840sys/compat/linprocfs linprocfs.c

linprocfs(4): Fixup process size in the /proc/pid/stat file

According to the Linux sources the kernel exposes a proces virtual
memory size via proc filesystem into the three files - stat, status
and statm. This is the struct mm->total_vm value adjusted to the
corresponding units - bytes, kilobytes and pages.

The fix is based on a fernape@ analysis.

PR:             265937
Reported by:    Ray Bellis
MFC after:      3 days

(cherry picked from commit a55b5a9aed3981fcec205e246436991d138c78a2)
DeltaFile
+1-1sys/compat/linprocfs/linprocfs.c
+1-11 files

FreeBSD/src aeed04asys/compat/linprocfs linprocfs.c, sys/compat/linux linux.c linux_ioctl.c

linux(4): Consolidate a FreeBSD interface names translation code

We have some amount of interface names translation functions which are
differs by bugs implementation. Consolidates it in a one place.

Fixup loopback interface names translation and use ifnet methods and
accessors, where possible.

Approved by:            re (cperciva)
Reviewed by:            melifaro
Differential Revision:  https://reviews.freebsd.org/D38714
MFC after:              3 days
X-MFC with:             32fdc75fe7

(cherry picked from commit 3ab3c9c29cf0e5df8dbbaaf2003456445534bad8)
(cherry picked from commit a83551a52d1cfa8a756ef8dd298cab8042e27437)
DeltaFile
+84-3sys/compat/linux/linux.c
+15-41sys/compat/linux/linux_ioctl.c
+10-30sys/compat/linprocfs/linprocfs.c
+4-0sys/compat/linux/linux_common.h
+113-744 files

FreeBSD/src a55b5a9sys/compat/linprocfs linprocfs.c

linprocfs(4): Fixup process size in the /proc/pid/stat file

According to the Linux sources the kernel exposes a proces virtual
memory size via proc filesystem into the three files - stat, status
and statm. This is the struct mm->total_vm value adjusted to the
corresponding units - bytes, kilobytes and pages.

The fix is based on a fernape@ analysis.

PR:             265937
Reported by:    Ray Bellis
MFC after:      3 days
DeltaFile
+1-1sys/compat/linprocfs/linprocfs.c
+1-11 files

FreeBSD/src a83551asys/compat/linprocfs linprocfs.c, sys/compat/linux linux.c linux_ioctl.c

linux(4): Consolidate a FreeBSD interface names translation code

We have some amount of interface names translation functions which are
differs by bugs implementation. Consolidates it in a one place.

Fixup loopback interface names translation and use ifnet methods and
accessors, where possible.

Reviewed by:            melifaro
Differential Revision:  https://reviews.freebsd.org/D38714
MFC after:              3 days
X-MFC with:             32fdc75fe7

(cherry picked from commit 3ab3c9c29cf0e5df8dbbaaf2003456445534bad8)
DeltaFile
+84-3sys/compat/linux/linux.c
+15-41sys/compat/linux/linux_ioctl.c
+10-30sys/compat/linprocfs/linprocfs.c
+4-0sys/compat/linux/linux_common.h
+113-744 files

FreeBSD/src 3ab3c9csys/compat/linprocfs linprocfs.c, sys/compat/linux linux.c linux_ioctl.c

linux(4): Consolidate a FreeBSD interface names translation code

We have some amount of interface names translation functions which are
differs by bugs implementation. Consolidates it in a one place.

Fixup loopback interface names translation and use ifnet methods and
accessors, where possible.

Reviewed by:            melifaro
Differential Revision:  https://reviews.freebsd.org/D38714
MFC after:              3 days
X-MFC with:             32fdc75fe7
DeltaFile
+84-3sys/compat/linux/linux.c
+15-41sys/compat/linux/linux_ioctl.c
+10-30sys/compat/linprocfs/linprocfs.c
+4-0sys/compat/linux/linux_common.h
+113-744 files