![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /opt/rh/gcc-toolset-11/root/usr/share/systemtap/runtime/linux/ |
#include <linux/bio.h> /* * Handle the following kernel commit: * * commit 1eff9d322a444245c67515edb52bc0eb68374aa8 * Author: Jens Axboe <[email protected]> * Date: Fri Aug 5 15:35:16 2016 -0600 * * block: rename bio bi_rw to bi_opf * * Since commit 63a4cc24867d, bio->bi_rw contains flags in the lower * portion and the op code in the higher portions. This means that * old code that relies on manually setting bi_rw is most likely * going to be broken. Instead of letting that brokeness linger, * rename the member, to force old and out-of-tree code to break * at compile time instead of at runtime. * * No intended functional changes in this commit. */ void bar (void) { struct bio foo; foo.bi_opf = 0; (void) foo; }